lucent-ui 0.19.1 → 0.20.0

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.ts CHANGED
@@ -1014,6 +1014,33 @@ export declare const rosePalette: ColorPalette;
1014
1014
 
1015
1015
  export declare const roundedShape: ShapePreset;
1016
1016
 
1017
+ export declare function Row({ gap, align, justify, as, wrap, children, style, ...rest }: RowProps): JSX_2.Element;
1018
+
1019
+ export declare type RowAlign = 'start' | 'center' | 'end' | 'stretch' | 'baseline';
1020
+
1021
+ export declare type RowAs = 'div' | 'section' | 'nav' | 'form' | 'fieldset' | 'ul' | 'ol';
1022
+
1023
+ export declare type RowGap = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16' | '20' | '24';
1024
+
1025
+ export declare type RowJustify = 'start' | 'center' | 'end' | 'between' | 'around';
1026
+
1027
+ export declare const RowManifest: ComponentManifest;
1028
+
1029
+ export declare interface RowProps {
1030
+ gap?: RowGap;
1031
+ align?: RowAlign;
1032
+ justify?: RowJustify;
1033
+ as?: RowAs;
1034
+ wrap?: boolean;
1035
+ children: ReactNode;
1036
+ style?: CSSProperties;
1037
+ className?: string;
1038
+ id?: string;
1039
+ role?: string;
1040
+ 'aria-label'?: string;
1041
+ 'aria-labelledby'?: string;
1042
+ }
1043
+
1017
1044
  export declare function SearchInput({ value, onChange, placeholder, size, label, helperText, errorText, results, onResultSelect, isLoading, disabled, id, style, }: SearchInputProps): JSX_2.Element;
1018
1045
 
1019
1046
  export declare const SearchInputManifest: ComponentManifest;
@@ -1220,6 +1247,33 @@ export declare interface SpinnerProps {
1220
1247
 
1221
1248
  export declare type SpinnerSize = 'xs' | 'sm' | 'md' | 'lg';
1222
1249
 
1250
+ export declare function Stack({ gap, align, justify, as, wrap, children, style, ...rest }: StackProps): JSX_2.Element;
1251
+
1252
+ export declare type StackAlign = 'start' | 'center' | 'end' | 'stretch' | 'baseline';
1253
+
1254
+ export declare type StackAs = 'div' | 'section' | 'nav' | 'form' | 'fieldset' | 'ul' | 'ol';
1255
+
1256
+ export declare type StackGap = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16' | '20' | '24';
1257
+
1258
+ export declare type StackJustify = 'start' | 'center' | 'end' | 'between' | 'around';
1259
+
1260
+ export declare const StackManifest: ComponentManifest;
1261
+
1262
+ export declare interface StackProps {
1263
+ gap?: StackGap;
1264
+ align?: StackAlign;
1265
+ justify?: StackJustify;
1266
+ as?: StackAs;
1267
+ wrap?: boolean;
1268
+ children: ReactNode;
1269
+ style?: CSSProperties;
1270
+ className?: string;
1271
+ id?: string;
1272
+ role?: string;
1273
+ 'aria-label'?: string;
1274
+ 'aria-labelledby'?: string;
1275
+ }
1276
+
1223
1277
  export declare const subtleShadow: ShadowPreset;
1224
1278
 
1225
1279
  export declare interface TabItem {