@lets-events/react 6.1.0 → 7.0.1
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +376 -5
- package/dist/index.d.ts +376 -5
- package/dist/index.js +516 -487
- package/dist/index.mjs +502 -474
- package/package.json +1 -1
- package/src/components/Button/styledComponents.ts +177 -286
- package/src/components/Calendar/index.tsx +45 -43
- package/src/components/Calendar/styledComponents.ts +3 -1
- package/src/components/Flex.tsx +1 -0
- package/src/components/TextField.tsx +47 -21
- package/src/components/TimePicker.tsx +150 -84
package/dist/index.d.ts
CHANGED
|
@@ -407,7 +407,7 @@ type TextProps = ComponentProps<typeof TextStyle> & {
|
|
|
407
407
|
declare function Text({ ...props }: TextProps): react_jsx_runtime.JSX.Element;
|
|
408
408
|
|
|
409
409
|
declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
410
|
-
color?: "purple" | "brand" | "neutral" | undefined;
|
|
410
|
+
color?: "info" | "warning" | "purple" | "white" | "brand" | "error" | "success" | "neutral" | undefined;
|
|
411
411
|
variant?: "text" | "contained" | "outlined" | undefined;
|
|
412
412
|
typography?: "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | undefined;
|
|
413
413
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
@@ -2674,6 +2674,7 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
|
|
|
2674
2674
|
zIndex: "zIndices";
|
|
2675
2675
|
}, {}>>;
|
|
2676
2676
|
type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
2677
|
+
addon?: string;
|
|
2677
2678
|
placeholder?: string;
|
|
2678
2679
|
children?: React.ReactNode;
|
|
2679
2680
|
isValid?: boolean;
|
|
@@ -2692,7 +2693,7 @@ type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'>
|
|
|
2692
2693
|
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
2693
2694
|
textAlign?: 'left' | 'right' | 'center';
|
|
2694
2695
|
};
|
|
2695
|
-
declare function TextField({ children, isValid, name, color, typography, fontWeight, textAlign, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
2696
|
+
declare function TextField({ children, isValid, name, color, typography, fontWeight, addon, textAlign, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
2696
2697
|
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
2697
2698
|
|
|
2698
2699
|
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
|
|
@@ -6134,6 +6135,376 @@ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
6134
6135
|
transition: "transitions";
|
|
6135
6136
|
zIndex: "zIndices";
|
|
6136
6137
|
}, {}>>;
|
|
6138
|
+
declare const TimePickerTitleStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<Dialog.TitleProps & react__default.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6139
|
+
colors: {
|
|
6140
|
+
brand50: string;
|
|
6141
|
+
brand100: string;
|
|
6142
|
+
brand200: string;
|
|
6143
|
+
brand300: string;
|
|
6144
|
+
brand400: string;
|
|
6145
|
+
brand500: string;
|
|
6146
|
+
brand600: string;
|
|
6147
|
+
brand700: string;
|
|
6148
|
+
brand800: string;
|
|
6149
|
+
brand900: string;
|
|
6150
|
+
brand950: string;
|
|
6151
|
+
blue50: string;
|
|
6152
|
+
blue100: string;
|
|
6153
|
+
blue200: string;
|
|
6154
|
+
blue300: string;
|
|
6155
|
+
blue400: string;
|
|
6156
|
+
blue500: string;
|
|
6157
|
+
blue600: string;
|
|
6158
|
+
blue700: string;
|
|
6159
|
+
blue800: string;
|
|
6160
|
+
blue900: string;
|
|
6161
|
+
blue950: string;
|
|
6162
|
+
red50: string;
|
|
6163
|
+
red100: string;
|
|
6164
|
+
red200: string;
|
|
6165
|
+
red300: string;
|
|
6166
|
+
red400: string;
|
|
6167
|
+
red500: string;
|
|
6168
|
+
red600: string;
|
|
6169
|
+
red700: string;
|
|
6170
|
+
red800: string;
|
|
6171
|
+
red900: string;
|
|
6172
|
+
red950: string;
|
|
6173
|
+
purple50: string;
|
|
6174
|
+
purple100: string;
|
|
6175
|
+
purple200: string;
|
|
6176
|
+
purple300: string;
|
|
6177
|
+
purple400: string;
|
|
6178
|
+
purple500: string;
|
|
6179
|
+
purple600: string;
|
|
6180
|
+
purple700: string;
|
|
6181
|
+
purple800: string;
|
|
6182
|
+
purple900: string;
|
|
6183
|
+
purple950: string;
|
|
6184
|
+
yellow50: string;
|
|
6185
|
+
yellow100: string;
|
|
6186
|
+
yellow200: string;
|
|
6187
|
+
yellow300: string;
|
|
6188
|
+
yellow400: string;
|
|
6189
|
+
yellow500: string;
|
|
6190
|
+
yellow600: string;
|
|
6191
|
+
yellow700: string;
|
|
6192
|
+
yellow800: string;
|
|
6193
|
+
yellow900: string;
|
|
6194
|
+
yellow950: string;
|
|
6195
|
+
dark50: string;
|
|
6196
|
+
dark100: string;
|
|
6197
|
+
dark200: string;
|
|
6198
|
+
dark300: string;
|
|
6199
|
+
dark400: string;
|
|
6200
|
+
dark500: string;
|
|
6201
|
+
dark600: string;
|
|
6202
|
+
dark700: string;
|
|
6203
|
+
dark800: string;
|
|
6204
|
+
dark900: string;
|
|
6205
|
+
dark950: string;
|
|
6206
|
+
neutral50: string;
|
|
6207
|
+
neutral100: string;
|
|
6208
|
+
neutral200: string;
|
|
6209
|
+
neutral300: string;
|
|
6210
|
+
neutral400: string;
|
|
6211
|
+
neutral500: string;
|
|
6212
|
+
neutral600: string;
|
|
6213
|
+
neutral700: string;
|
|
6214
|
+
neutral800: string;
|
|
6215
|
+
neutral900: string;
|
|
6216
|
+
neutral950: string;
|
|
6217
|
+
green50: string;
|
|
6218
|
+
green100: string;
|
|
6219
|
+
green200: string;
|
|
6220
|
+
green300: string;
|
|
6221
|
+
green400: string;
|
|
6222
|
+
green500: string;
|
|
6223
|
+
green600: string;
|
|
6224
|
+
green700: string;
|
|
6225
|
+
green800: string;
|
|
6226
|
+
green900: string;
|
|
6227
|
+
green950: string;
|
|
6228
|
+
grey50: string;
|
|
6229
|
+
grey100: string;
|
|
6230
|
+
grey200: string;
|
|
6231
|
+
grey300: string;
|
|
6232
|
+
grey400: string;
|
|
6233
|
+
grey500: string;
|
|
6234
|
+
grey600: string;
|
|
6235
|
+
grey700: string;
|
|
6236
|
+
grey800: string;
|
|
6237
|
+
grey900: string;
|
|
6238
|
+
grey950: string;
|
|
6239
|
+
error50: string;
|
|
6240
|
+
error100: string;
|
|
6241
|
+
error200: string;
|
|
6242
|
+
error300: string;
|
|
6243
|
+
error400: string;
|
|
6244
|
+
error500: string;
|
|
6245
|
+
error600: string;
|
|
6246
|
+
error700: string;
|
|
6247
|
+
error800: string;
|
|
6248
|
+
error900: string;
|
|
6249
|
+
error950: string;
|
|
6250
|
+
success50: string;
|
|
6251
|
+
success100: string;
|
|
6252
|
+
success200: string;
|
|
6253
|
+
success300: string;
|
|
6254
|
+
success400: string;
|
|
6255
|
+
success500: string;
|
|
6256
|
+
success600: string;
|
|
6257
|
+
success700: string;
|
|
6258
|
+
success800: string;
|
|
6259
|
+
success900: string;
|
|
6260
|
+
success950: string;
|
|
6261
|
+
warning50: string;
|
|
6262
|
+
warning100: string;
|
|
6263
|
+
warning200: string;
|
|
6264
|
+
warning300: string;
|
|
6265
|
+
warning400: string;
|
|
6266
|
+
warning500: string;
|
|
6267
|
+
warning600: string;
|
|
6268
|
+
warning700: string;
|
|
6269
|
+
warning800: string;
|
|
6270
|
+
warning900: string;
|
|
6271
|
+
warning950: string;
|
|
6272
|
+
info50: string;
|
|
6273
|
+
info100: string;
|
|
6274
|
+
info200: string;
|
|
6275
|
+
info300: string;
|
|
6276
|
+
info400: string;
|
|
6277
|
+
info500: string;
|
|
6278
|
+
info600: string;
|
|
6279
|
+
info700: string;
|
|
6280
|
+
info800: string;
|
|
6281
|
+
info900: string;
|
|
6282
|
+
info950: string;
|
|
6283
|
+
};
|
|
6284
|
+
fontSizes: {
|
|
6285
|
+
2: string;
|
|
6286
|
+
4: string;
|
|
6287
|
+
6: string;
|
|
6288
|
+
8: string;
|
|
6289
|
+
10: string;
|
|
6290
|
+
12: string;
|
|
6291
|
+
13: string;
|
|
6292
|
+
14: string;
|
|
6293
|
+
16: string;
|
|
6294
|
+
18: string;
|
|
6295
|
+
20: string;
|
|
6296
|
+
22: string;
|
|
6297
|
+
24: string;
|
|
6298
|
+
32: string;
|
|
6299
|
+
36: string;
|
|
6300
|
+
40: string;
|
|
6301
|
+
48: string;
|
|
6302
|
+
56: string;
|
|
6303
|
+
64: string;
|
|
6304
|
+
72: string;
|
|
6305
|
+
80: string;
|
|
6306
|
+
xs: string;
|
|
6307
|
+
sm: string;
|
|
6308
|
+
md: string;
|
|
6309
|
+
lg: string;
|
|
6310
|
+
'2xl': string;
|
|
6311
|
+
'3xl': string;
|
|
6312
|
+
'4xl': string;
|
|
6313
|
+
full: string;
|
|
6314
|
+
};
|
|
6315
|
+
fonts: {
|
|
6316
|
+
default: string;
|
|
6317
|
+
};
|
|
6318
|
+
fontWeights: {
|
|
6319
|
+
regular: string;
|
|
6320
|
+
medium: string;
|
|
6321
|
+
semibold: string;
|
|
6322
|
+
bold: string;
|
|
6323
|
+
};
|
|
6324
|
+
lineHeights: {
|
|
6325
|
+
smaller: string;
|
|
6326
|
+
shorter: string;
|
|
6327
|
+
short: string;
|
|
6328
|
+
base: string;
|
|
6329
|
+
tall: string;
|
|
6330
|
+
};
|
|
6331
|
+
radii: {
|
|
6332
|
+
'3xs': string;
|
|
6333
|
+
'2xs': string;
|
|
6334
|
+
xs: string;
|
|
6335
|
+
sm: string;
|
|
6336
|
+
md: string;
|
|
6337
|
+
lg: string;
|
|
6338
|
+
xl: string;
|
|
6339
|
+
'2xl': string;
|
|
6340
|
+
'3xl': string;
|
|
6341
|
+
'4xl': string;
|
|
6342
|
+
'5xl': string;
|
|
6343
|
+
'6xl': string;
|
|
6344
|
+
'7xl': string;
|
|
6345
|
+
'8xl': string;
|
|
6346
|
+
'9xl': string;
|
|
6347
|
+
'10xl': string;
|
|
6348
|
+
'11xl': string;
|
|
6349
|
+
'12xl': string;
|
|
6350
|
+
'13xl': string;
|
|
6351
|
+
'14xl': string;
|
|
6352
|
+
full: string;
|
|
6353
|
+
};
|
|
6354
|
+
space: {
|
|
6355
|
+
2: string;
|
|
6356
|
+
4: string;
|
|
6357
|
+
6: string;
|
|
6358
|
+
8: string;
|
|
6359
|
+
10: string;
|
|
6360
|
+
12: string;
|
|
6361
|
+
13: string;
|
|
6362
|
+
14: string;
|
|
6363
|
+
16: string;
|
|
6364
|
+
18: string;
|
|
6365
|
+
20: string;
|
|
6366
|
+
22: string;
|
|
6367
|
+
24: string;
|
|
6368
|
+
32: string;
|
|
6369
|
+
36: string;
|
|
6370
|
+
40: string;
|
|
6371
|
+
48: string;
|
|
6372
|
+
56: string;
|
|
6373
|
+
64: string;
|
|
6374
|
+
72: string;
|
|
6375
|
+
80: string;
|
|
6376
|
+
full: string;
|
|
6377
|
+
};
|
|
6378
|
+
}, {
|
|
6379
|
+
height: "space";
|
|
6380
|
+
width: "space";
|
|
6381
|
+
gap: "space";
|
|
6382
|
+
gridGap: "space";
|
|
6383
|
+
columnGap: "space";
|
|
6384
|
+
gridColumnGap: "space";
|
|
6385
|
+
rowGap: "space";
|
|
6386
|
+
gridRowGap: "space";
|
|
6387
|
+
inset: "space";
|
|
6388
|
+
insetBlock: "space";
|
|
6389
|
+
insetBlockEnd: "space";
|
|
6390
|
+
insetBlockStart: "space";
|
|
6391
|
+
insetInline: "space";
|
|
6392
|
+
insetInlineEnd: "space";
|
|
6393
|
+
insetInlineStart: "space";
|
|
6394
|
+
margin: "space";
|
|
6395
|
+
marginTop: "space";
|
|
6396
|
+
marginRight: "space";
|
|
6397
|
+
marginBottom: "space";
|
|
6398
|
+
marginLeft: "space";
|
|
6399
|
+
marginBlock: "space";
|
|
6400
|
+
marginBlockEnd: "space";
|
|
6401
|
+
marginBlockStart: "space";
|
|
6402
|
+
marginInline: "space";
|
|
6403
|
+
marginInlineEnd: "space";
|
|
6404
|
+
marginInlineStart: "space";
|
|
6405
|
+
padding: "space";
|
|
6406
|
+
paddingTop: "space";
|
|
6407
|
+
paddingRight: "space";
|
|
6408
|
+
paddingBottom: "space";
|
|
6409
|
+
paddingLeft: "space";
|
|
6410
|
+
paddingBlock: "space";
|
|
6411
|
+
paddingBlockEnd: "space";
|
|
6412
|
+
paddingBlockStart: "space";
|
|
6413
|
+
paddingInline: "space";
|
|
6414
|
+
paddingInlineEnd: "space";
|
|
6415
|
+
paddingInlineStart: "space";
|
|
6416
|
+
scrollMargin: "space";
|
|
6417
|
+
scrollMarginTop: "space";
|
|
6418
|
+
scrollMarginRight: "space";
|
|
6419
|
+
scrollMarginBottom: "space";
|
|
6420
|
+
scrollMarginLeft: "space";
|
|
6421
|
+
scrollMarginBlock: "space";
|
|
6422
|
+
scrollMarginBlockEnd: "space";
|
|
6423
|
+
scrollMarginBlockStart: "space";
|
|
6424
|
+
scrollMarginInline: "space";
|
|
6425
|
+
scrollMarginInlineEnd: "space";
|
|
6426
|
+
scrollMarginInlineStart: "space";
|
|
6427
|
+
scrollPadding: "space";
|
|
6428
|
+
scrollPaddingTop: "space";
|
|
6429
|
+
scrollPaddingRight: "space";
|
|
6430
|
+
scrollPaddingBottom: "space";
|
|
6431
|
+
scrollPaddingLeft: "space";
|
|
6432
|
+
scrollPaddingBlock: "space";
|
|
6433
|
+
scrollPaddingBlockEnd: "space";
|
|
6434
|
+
scrollPaddingBlockStart: "space";
|
|
6435
|
+
scrollPaddingInline: "space";
|
|
6436
|
+
scrollPaddingInlineEnd: "space";
|
|
6437
|
+
scrollPaddingInlineStart: "space";
|
|
6438
|
+
top: "space";
|
|
6439
|
+
right: "space";
|
|
6440
|
+
bottom: "space";
|
|
6441
|
+
left: "space";
|
|
6442
|
+
fontSize: "fontSizes";
|
|
6443
|
+
background: "colors";
|
|
6444
|
+
backgroundColor: "colors";
|
|
6445
|
+
backgroundImage: "colors";
|
|
6446
|
+
borderImage: "colors";
|
|
6447
|
+
border: "colors";
|
|
6448
|
+
borderBlock: "colors";
|
|
6449
|
+
borderBlockEnd: "colors";
|
|
6450
|
+
borderBlockStart: "colors";
|
|
6451
|
+
borderBottom: "colors";
|
|
6452
|
+
borderBottomColor: "colors";
|
|
6453
|
+
borderColor: "colors";
|
|
6454
|
+
borderInline: "colors";
|
|
6455
|
+
borderInlineEnd: "colors";
|
|
6456
|
+
borderInlineStart: "colors";
|
|
6457
|
+
borderLeft: "colors";
|
|
6458
|
+
borderLeftColor: "colors";
|
|
6459
|
+
borderRight: "colors";
|
|
6460
|
+
borderRightColor: "colors";
|
|
6461
|
+
borderTop: "colors";
|
|
6462
|
+
borderTopColor: "colors";
|
|
6463
|
+
caretColor: "colors";
|
|
6464
|
+
color: "colors";
|
|
6465
|
+
columnRuleColor: "colors";
|
|
6466
|
+
outline: "colors";
|
|
6467
|
+
outlineColor: "colors";
|
|
6468
|
+
fill: "colors";
|
|
6469
|
+
stroke: "colors";
|
|
6470
|
+
textDecorationColor: "colors";
|
|
6471
|
+
fontFamily: "fonts";
|
|
6472
|
+
fontWeight: "fontWeights";
|
|
6473
|
+
lineHeight: "lineHeights";
|
|
6474
|
+
letterSpacing: "letterSpacings";
|
|
6475
|
+
blockSize: "sizes";
|
|
6476
|
+
minBlockSize: "sizes";
|
|
6477
|
+
maxBlockSize: "sizes";
|
|
6478
|
+
inlineSize: "sizes";
|
|
6479
|
+
minInlineSize: "sizes";
|
|
6480
|
+
maxInlineSize: "sizes";
|
|
6481
|
+
minWidth: "sizes";
|
|
6482
|
+
maxWidth: "sizes";
|
|
6483
|
+
minHeight: "sizes";
|
|
6484
|
+
maxHeight: "sizes";
|
|
6485
|
+
flexBasis: "sizes";
|
|
6486
|
+
gridTemplateColumns: "sizes";
|
|
6487
|
+
gridTemplateRows: "sizes";
|
|
6488
|
+
borderWidth: "borderWidths";
|
|
6489
|
+
borderTopWidth: "borderWidths";
|
|
6490
|
+
borderLeftWidth: "borderWidths";
|
|
6491
|
+
borderRightWidth: "borderWidths";
|
|
6492
|
+
borderBottomWidth: "borderWidths";
|
|
6493
|
+
borderStyle: "borderStyles";
|
|
6494
|
+
borderTopStyle: "borderStyles";
|
|
6495
|
+
borderLeftStyle: "borderStyles";
|
|
6496
|
+
borderRightStyle: "borderStyles";
|
|
6497
|
+
borderBottomStyle: "borderStyles";
|
|
6498
|
+
borderRadius: "radii";
|
|
6499
|
+
borderTopLeftRadius: "radii";
|
|
6500
|
+
borderTopRightRadius: "radii";
|
|
6501
|
+
borderBottomRightRadius: "radii";
|
|
6502
|
+
borderBottomLeftRadius: "radii";
|
|
6503
|
+
boxShadow: "shadows";
|
|
6504
|
+
textShadow: "shadows";
|
|
6505
|
+
transition: "transitions";
|
|
6506
|
+
zIndex: "zIndices";
|
|
6507
|
+
}, {}>>;
|
|
6137
6508
|
declare const TimePickerDialogStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<Dialog.ContentProps & react__default.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6138
6509
|
colors: {
|
|
6139
6510
|
brand50: string;
|
|
@@ -10640,7 +11011,7 @@ declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
10640
11011
|
align?: "end" | "stretch" | "center" | "start" | "baseline" | undefined;
|
|
10641
11012
|
justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | undefined;
|
|
10642
11013
|
direction?: "column" | "column-reverse" | "row" | "row-reverse" | undefined;
|
|
10643
|
-
gap?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
11014
|
+
gap?: 0 | 2 | "0" | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
10644
11015
|
gapY?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
10645
11016
|
gapX?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
10646
11017
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -11027,7 +11398,7 @@ declare const GridStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
11027
11398
|
justify?: "end" | "center" | "start" | "between" | undefined;
|
|
11028
11399
|
flow?: "column" | "row" | "row-dense" | "column-dense" | undefined;
|
|
11029
11400
|
columns?: 1 | 2 | "1" | "2" | "3" | "4" | "6" | 4 | 6 | 12 | "12" | 3 | undefined;
|
|
11030
|
-
rows?: 1 | 2 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | 4 | 6 | 8 | 10 | 12 | "10" | "12" | 9 | 3 | "11" |
|
|
11401
|
+
rows?: 1 | 2 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | 4 | 6 | 8 | 10 | 12 | "10" | "12" | 9 | 3 | 5 | "11" | 7 | 11 | undefined;
|
|
11031
11402
|
gap?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
11032
11403
|
gapX?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
11033
11404
|
gapY?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
|
|
@@ -12167,4 +12538,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
|
|
|
12167
12538
|
};
|
|
12168
12539
|
declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
12169
12540
|
|
|
12170
|
-
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDialogStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled };
|
|
12541
|
+
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDialogStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimePickerTitleStyled, TimerPickerContentStyled };
|