@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/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>;