@cronocode/react-box 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/box.d.ts +284 -1069
- package/box.js +22 -8144
- package/box.module.css.js +10869 -0
- package/components/buttonCore.d.ts +7 -3
- package/components/buttonCore.js +14 -14
- package/components/flex.js +8 -23
- package/components/uncontrolledTextboxCore.d.ts +6 -3
- package/components/uncontrolledTextboxCore.js +17 -18
- package/css.variables.d.ts +12 -2
- package/package.json +2 -1
- package/style.css +1 -1
- package/types.d.ts +3 -0
- package/components/flex.d.ts +0 -14
package/types.d.ts
ADDED
package/components/flex.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import Box from '../box';
|
|
2
|
-
declare type BoxProps = React.ComponentProps<typeof Box>;
|
|
3
|
-
interface Props extends BoxProps {
|
|
4
|
-
wrap?: BoxProps['flexWrap'];
|
|
5
|
-
jc?: BoxProps['justifyContent'];
|
|
6
|
-
ai?: BoxProps['alignItems'];
|
|
7
|
-
ac?: BoxProps['alignContent'];
|
|
8
|
-
d?: BoxProps['direction'];
|
|
9
|
-
grow?: BoxProps['flexGrow'];
|
|
10
|
-
shrink?: BoxProps['flexShrink'];
|
|
11
|
-
as?: BoxProps['alignSelf'];
|
|
12
|
-
}
|
|
13
|
-
export default function Flex(props: Props): JSX.Element;
|
|
14
|
-
export {};
|