@zuzjs/ui 1.0.43 → 1.0.44
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/dist/bin.cjs +4 -4
- package/dist/bin.js +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +4 -4
- package/package.json +3 -3
- /package/dist/{chunk-EE2AFTFK.cjs → chunk-ABY4WJNX.cjs} +0 -0
- /package/dist/{chunk-ZVKCHOOS.js → chunk-AQS4AW4P.js} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -917,9 +917,17 @@ type FlexProps = BoxProps & {
|
|
|
917
917
|
/** Shortcut for gap */
|
|
918
918
|
gap?: number | string;
|
|
919
919
|
/** Shortcut for align-items: center */
|
|
920
|
+
ais?: boolean;
|
|
921
|
+
/** Shortcut for align-items: flex-start */
|
|
920
922
|
aic?: boolean;
|
|
923
|
+
/** Shortcut for align-items: flex-end */
|
|
924
|
+
aie?: boolean;
|
|
921
925
|
/** Shortcut for justify-content: center */
|
|
922
926
|
jcc?: boolean;
|
|
927
|
+
/** Shortcut for justify-content: end */
|
|
928
|
+
jce?: boolean;
|
|
929
|
+
/** Shortcut for justify-content: start */
|
|
930
|
+
jcs?: boolean;
|
|
923
931
|
};
|
|
924
932
|
|
|
925
933
|
declare const Flex: FC<FlexProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -917,9 +917,17 @@ type FlexProps = BoxProps & {
|
|
|
917
917
|
/** Shortcut for gap */
|
|
918
918
|
gap?: number | string;
|
|
919
919
|
/** Shortcut for align-items: center */
|
|
920
|
+
ais?: boolean;
|
|
921
|
+
/** Shortcut for align-items: flex-start */
|
|
920
922
|
aic?: boolean;
|
|
923
|
+
/** Shortcut for align-items: flex-end */
|
|
924
|
+
aie?: boolean;
|
|
921
925
|
/** Shortcut for justify-content: center */
|
|
922
926
|
jcc?: boolean;
|
|
927
|
+
/** Shortcut for justify-content: end */
|
|
928
|
+
jce?: boolean;
|
|
929
|
+
/** Shortcut for justify-content: start */
|
|
930
|
+
jcs?: boolean;
|
|
923
931
|
};
|
|
924
932
|
|
|
925
933
|
declare const Flex: FC<FlexProps>;
|