mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-27 19:25:05 +08:00
* feat(scaleable): add scaleable props to each component * chore(scaleable): update the exported type * feat: apply scaleable to components chore: remove with-default test: improve testcase for scaleable chore: resolve test warning ci: upgrade nodejs to latest lts docs: fix type error in document site * docs: update documents to be compatible with scaleable chore: fix build errors * chore: remove all size-related attributes docs: improve guide document * docs: add scaleable documentation test: update snapshots chore: remove unused * feat: add scaleable to grid components * docs: improve docs * test: update snapshots * fix(grid): fix basic component props
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import React from 'react'
|
|
import useScaleable, { withScaleable } from '../use-scaleable'
|
|
|
|
interface Props {
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type FieldsetContentProps = Props & NativeAttrs
|
|
|
|
const FieldsetContentComponent: React.FC<
|
|
React.PropsWithChildren<FieldsetContentProps>
|
|
> = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: React.PropsWithChildren<FieldsetContentProps> & typeof defaultProps) => {
|
|
const { SCALES } = useScaleable()
|
|
|
|
return (
|
|
<div className={`content ${className}`} {...props}>
|
|
{children}
|
|
<style jsx>{`
|
|
.content {
|
|
width: ${SCALES.width(1, '100%')};
|
|
height: ${SCALES.height(1, 'auto')};
|
|
padding: ${SCALES.pt(1.3)} ${SCALES.pr(1.3)} ${SCALES.pb(1.3)} ${SCALES.pl(1.3)};
|
|
margin: ${SCALES.mt(0)} ${SCALES.mr(0)} ${SCALES.mb(0)} ${SCALES.ml(0)};
|
|
}
|
|
|
|
.content :global(> *:first-child) {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.content :global(> *:last-child) {
|
|
margin-bottom: 0;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
FieldsetContentComponent.defaultProps = defaultProps
|
|
FieldsetContentComponent.displayName = 'GeistFieldsetContent'
|
|
const FieldsetContent = withScaleable(FieldsetContentComponent)
|
|
export default FieldsetContent
|