@nextui-org/react 1.0.2-beta.5-dbg2 → 1.0.2-beta.5

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.
Files changed (63) hide show
  1. package/cjs/button/button.js +1 -1
  2. package/cjs/checkbox/checkbox.js +1 -1
  3. package/cjs/collapse/collapse.js +1 -1
  4. package/cjs/collapse/collapse.styles.js +1 -1
  5. package/cjs/grid/grid-container.js +1 -1
  6. package/cjs/grid/grid-item.js +1 -1
  7. package/cjs/grid/grid.js +1 -1
  8. package/cjs/image/image.js +1 -1
  9. package/cjs/image/image.styles.js +1 -1
  10. package/cjs/snippet/snippet.js +1 -1
  11. package/cjs/spacer/spacer.js +1 -1
  12. package/cjs/table/table.js +1 -1
  13. package/cjs/table/table.styles.js +1 -1
  14. package/cjs/theme/theme-provider.js +1 -1
  15. package/cjs/user/user.js +1 -1
  16. package/esm/button/button.js +1 -1
  17. package/esm/checkbox/checkbox.js +1 -1
  18. package/esm/collapse/collapse.js +1 -1
  19. package/esm/collapse/collapse.styles.js +1 -1
  20. package/esm/grid/grid-container.js +1 -1
  21. package/esm/grid/grid-item.js +1 -1
  22. package/esm/grid/grid.js +1 -1
  23. package/esm/image/image.js +1 -1
  24. package/esm/image/image.styles.js +1 -1
  25. package/esm/snippet/snippet.js +1 -1
  26. package/esm/spacer/spacer.js +1 -1
  27. package/esm/table/table.js +1 -1
  28. package/esm/table/table.styles.js +1 -1
  29. package/esm/theme/theme-provider.js +1 -1
  30. package/esm/user/user.js +1 -1
  31. package/package.json +1 -1
  32. package/types/backdrop/backdrop.styles.d.ts +1 -1
  33. package/types/button/button-group.styles.d.ts +1 -1
  34. package/types/button/button.d.ts +1 -0
  35. package/types/button/button.styles.d.ts +1 -1
  36. package/types/card/card.styles.d.ts +3 -3
  37. package/types/checkbox/checkbox.styles.d.ts +3 -3
  38. package/types/collapse/collapse.styles.d.ts +954 -4
  39. package/types/grid/grid-container.d.ts +7 -10
  40. package/types/grid/grid-item.d.ts +3 -9
  41. package/types/grid/grid.d.ts +3 -3
  42. package/types/image/image.styles.d.ts +1 -1
  43. package/types/input/input-props.d.ts +1 -1
  44. package/types/input/input.styles.d.ts +5 -5
  45. package/types/modal/modal.styles.d.ts +1 -1
  46. package/types/pagination/pagination.styles.d.ts +5 -5
  47. package/types/radio/radio.styles.d.ts +3 -3
  48. package/types/snippet/snippet.styles.d.ts +1 -1
  49. package/types/spacer/spacer.d.ts +1 -1
  50. package/types/spacer/spacer.styles.d.ts +1 -1
  51. package/types/switch/switch.styles.d.ts +1 -1
  52. package/types/table/table-column-header.d.ts +12 -1
  53. package/types/table/table.d.ts +3 -2
  54. package/types/table/table.styles.d.ts +966 -12
  55. package/types/theme/stitches.config.d.ts +1 -1
  56. package/types/tooltip/tooltip.styles.d.ts +1 -1
  57. package/umd/nextui.js +13264 -11734
  58. package/umd/nextui.min.js +1 -1
  59. package/types/table/table-cell-old.d.ts +0 -22
  60. package/types/table/table-column.d.ts +0 -17
  61. package/types/table/table-old.d.ts +0 -49
  62. package/types/table/table-types.d.ts +0 -30
  63. package/types/theme/ssr-provider.d.ts +0 -7
@@ -969,7 +969,11 @@ export declare const StyledTableColumnHeader: import("@stitches/react/types/styl
969
969
  };
970
970
  allowsSorting: {
971
971
  true: {
972
+ transition: string;
972
973
  cursor: string;
974
+ '@motion': {
975
+ transition: string;
976
+ };
973
977
  '&:hover': {
974
978
  color: string;
975
979
  bg: string;
@@ -981,9 +985,16 @@ export declare const StyledTableColumnHeader: import("@stitches/react/types/styl
981
985
  align: "left";
982
986
  animated: true;
983
987
  };
988
+ compoundVariants: {
989
+ animated: false;
990
+ allowsSorting: true;
991
+ css: {
992
+ transition: string;
993
+ };
994
+ }[];
984
995
  }, import("@stitches/react/types/styled-component").CssComponent<never, {
985
996
  animated?: boolean | "false" | undefined;
986
- isFocusVisible?: boolean | "false" | "true" | undefined;
997
+ isFocusVisible?: boolean | "true" | "false" | undefined;
987
998
  }, {
988
999
  xs: string;
989
1000
  sm: string;
@@ -2884,7 +2895,11 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
2884
2895
  };
2885
2896
  allowsSorting: {
2886
2897
  true: {
2898
+ transition: string;
2887
2899
  cursor: string;
2900
+ '@motion': {
2901
+ transition: string;
2902
+ };
2888
2903
  '&:hover': {
2889
2904
  color: string;
2890
2905
  bg: string;
@@ -2896,9 +2911,16 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
2896
2911
  align: "left";
2897
2912
  animated: true;
2898
2913
  };
2914
+ compoundVariants: {
2915
+ animated: false;
2916
+ allowsSorting: true;
2917
+ css: {
2918
+ transition: string;
2919
+ };
2920
+ }[];
2899
2921
  }, import("@stitches/react/types/styled-component").CssComponent<never, {
2900
2922
  animated?: boolean | "false" | undefined;
2901
- isFocusVisible?: boolean | "false" | "true" | undefined;
2923
+ isFocusVisible?: boolean | "true" | "false" | undefined;
2902
2924
  }, {
2903
2925
  xs: string;
2904
2926
  sm: string;
@@ -4761,7 +4783,7 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
4761
4783
  };
4762
4784
  }>>, {
4763
4785
  animated?: boolean | "false" | undefined;
4764
- isFocusVisible?: boolean | "false" | "true" | undefined;
4786
+ isFocusVisible?: boolean | "true" | "false" | undefined;
4765
4787
  }, {
4766
4788
  xs: string;
4767
4789
  sm: string;
@@ -8512,9 +8534,6 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
8512
8534
  left: number;
8513
8535
  opacity: number;
8514
8536
  };
8515
- '@xsMax': {
8516
- fontSize: string;
8517
- };
8518
8537
  variants: {
8519
8538
  align: {
8520
8539
  start: {
@@ -8530,7 +8549,7 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
8530
8549
  };
8531
8550
  }, import("@stitches/react/types/styled-component").CssComponent<never, {
8532
8551
  animated?: boolean | "false" | undefined;
8533
- isFocusVisible?: boolean | "false" | "true" | undefined;
8552
+ isFocusVisible?: boolean | "true" | "false" | undefined;
8534
8553
  }, {
8535
8554
  xs: string;
8536
8555
  sm: string;
@@ -10394,6 +10413,7 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
10394
10413
  }>>;
10395
10414
  export declare const StyledTableRow: import("@stitches/react/types/styled-component").StyledComponent<"tr", import("@stitches/react/types/styled-component").StyledComponentProps<[{
10396
10415
  ov: string;
10416
+ color: string;
10397
10417
  variants: {
10398
10418
  isDisabled: {
10399
10419
  true: {
@@ -10414,7 +10434,7 @@ export declare const StyledTableRow: import("@stitches/react/types/styled-compon
10414
10434
  };
10415
10435
  }, import("@stitches/react/types/styled-component").CssComponent<never, {
10416
10436
  animated?: boolean | "false" | undefined;
10417
- isFocusVisible?: boolean | "false" | "true" | undefined;
10437
+ isFocusVisible?: boolean | "true" | "false" | undefined;
10418
10438
  }, {
10419
10439
  xs: string;
10420
10440
  sm: string;
@@ -14149,16 +14169,14 @@ export declare const StyledTable: import("@stitches/react/types/styled-component
14149
14169
  color?: "primary" | "secondary" | "success" | "warning" | "error" | undefined;
14150
14170
  striped?: boolean | "true" | undefined;
14151
14171
  sticked?: boolean | "true" | undefined;
14152
- bordered?: boolean | "false" | "true" | undefined;
14153
- borderWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
14154
14172
  lineWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
14155
14173
  headerLined?: boolean | "true" | undefined;
14156
14174
  lined?: boolean | "true" | undefined;
14157
14175
  fixed?: boolean | "true" | undefined;
14158
- shadow?: boolean | "true" | undefined;
14159
- hoverable?: boolean | "false" | "true" | undefined;
14176
+ hoverable?: boolean | "true" | "false" | undefined;
14160
14177
  isMultiple?: boolean | "true" | undefined;
14161
14178
  hasPagination?: boolean | "true" | undefined;
14179
+ shadow?: boolean | "true" | undefined;
14162
14180
  compact?: boolean | "true" | undefined;
14163
14181
  }, {
14164
14182
  xs: string;
@@ -15091,7 +15109,943 @@ export declare const StyledTable: import("@stitches/react/types/styled-component
15091
15109
  };
15092
15110
  };
15093
15111
  }>>;
15112
+ export declare const StyledTableContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {
15113
+ shadow?: boolean | "true" | undefined;
15114
+ bordered?: boolean | "true" | "false" | undefined;
15115
+ borderWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
15116
+ }, {
15117
+ xs: string;
15118
+ sm: string;
15119
+ md: string;
15120
+ lg: string;
15121
+ xl: string;
15122
+ xsMax: string;
15123
+ smMax: string;
15124
+ mdMax: string;
15125
+ lgMax: string;
15126
+ xlMax: string;
15127
+ motion: string;
15128
+ safari: string;
15129
+ hover: string;
15130
+ dark: string;
15131
+ light: string;
15132
+ }, import("@stitches/react/types/css-util").CSS<{
15133
+ xs: string;
15134
+ sm: string;
15135
+ md: string;
15136
+ lg: string;
15137
+ xl: string;
15138
+ xsMax: string;
15139
+ smMax: string;
15140
+ mdMax: string;
15141
+ lgMax: string;
15142
+ xlMax: string;
15143
+ motion: string;
15144
+ safari: string;
15145
+ hover: string;
15146
+ dark: string;
15147
+ light: string;
15148
+ }, {
15149
+ shadows: {
15150
+ xs: string;
15151
+ sm: string;
15152
+ md: string;
15153
+ lg: string;
15154
+ xl: string;
15155
+ };
15156
+ colors: {
15157
+ accents1: string;
15158
+ accents2: string;
15159
+ accents3: string;
15160
+ accents4: string;
15161
+ accents5: string;
15162
+ accents6: string;
15163
+ accents7: string;
15164
+ accents8: string;
15165
+ accents9: string;
15166
+ text: string;
15167
+ background: string;
15168
+ foreground: string;
15169
+ codeLight: string;
15170
+ code: string;
15171
+ border: string;
15172
+ selection: string;
15173
+ white: string;
15174
+ black: string;
15175
+ blue100: string;
15176
+ blue200: string;
15177
+ blue300: string;
15178
+ blue400: string;
15179
+ blue500: string;
15180
+ blue600: string;
15181
+ blue700: string;
15182
+ blue800: string;
15183
+ blue900: string;
15184
+ purple100: string;
15185
+ purple200: string;
15186
+ purple300: string;
15187
+ purple400: string;
15188
+ purple500: string;
15189
+ purple600: string;
15190
+ purple700: string;
15191
+ purple800: string;
15192
+ purple900: string;
15193
+ green100: string;
15194
+ green200: string;
15195
+ green300: string;
15196
+ green400: string;
15197
+ green500: string;
15198
+ green600: string;
15199
+ green700: string;
15200
+ green800: string;
15201
+ green900: string;
15202
+ yellow100: string;
15203
+ yellow200: string;
15204
+ yellow300: string;
15205
+ yellow400: string;
15206
+ yellow500: string;
15207
+ yellow600: string;
15208
+ yellow700: string;
15209
+ yellow800: string;
15210
+ yellow900: string;
15211
+ red100: string;
15212
+ red200: string;
15213
+ red300: string;
15214
+ red400: string;
15215
+ red500: string;
15216
+ red600: string;
15217
+ red700: string;
15218
+ red800: string;
15219
+ red900: string;
15220
+ cyan100: string;
15221
+ cyan200: string;
15222
+ cyan300: string;
15223
+ cyan400: string;
15224
+ cyan500: string;
15225
+ cyan600: string;
15226
+ cyan700: string;
15227
+ cyan800: string;
15228
+ cyan900: string;
15229
+ pink100: string;
15230
+ pink200: string;
15231
+ pink300: string;
15232
+ pink400: string;
15233
+ pink500: string;
15234
+ pink600: string;
15235
+ pink700: string;
15236
+ pink800: string;
15237
+ pink900: string;
15238
+ gray100: string;
15239
+ gray200: string;
15240
+ gray300: string;
15241
+ gray400: string;
15242
+ gray500: string;
15243
+ gray600: string;
15244
+ gray700: string;
15245
+ gray800: string;
15246
+ gray900: string;
15247
+ primaryLight: string;
15248
+ primary: string;
15249
+ primaryDark: string;
15250
+ primaryShadow: string;
15251
+ secondaryLight: string;
15252
+ secondary: string;
15253
+ secondaryDark: string;
15254
+ secondaryShadow: string;
15255
+ successLight: string;
15256
+ success: string;
15257
+ successDark: string;
15258
+ successShadow: string;
15259
+ warningLight: string;
15260
+ warning: string;
15261
+ warningDark: string;
15262
+ warningShadow: string;
15263
+ errorLight: string;
15264
+ error: string;
15265
+ errorDark: string;
15266
+ errorShadow: string;
15267
+ gradient: string;
15268
+ link: string;
15269
+ };
15270
+ fonts: {
15271
+ sans: string;
15272
+ mono: string;
15273
+ };
15274
+ fontSizes: {
15275
+ tiny: string;
15276
+ xs: string;
15277
+ base: string;
15278
+ sm: string;
15279
+ md: string;
15280
+ lg: string;
15281
+ xl: string;
15282
+ };
15283
+ fontWeights: {
15284
+ hairline: number;
15285
+ thin: number;
15286
+ light: number;
15287
+ normal: number;
15288
+ medium: number;
15289
+ semibold: number;
15290
+ bold: number;
15291
+ extrabold: number;
15292
+ black: number;
15293
+ };
15294
+ lineHeights: {
15295
+ xs: number;
15296
+ sm: number;
15297
+ md: number;
15298
+ lg: number;
15299
+ xl: number;
15300
+ };
15301
+ letterSpacings: {
15302
+ tighter: string;
15303
+ tight: string;
15304
+ normal: string;
15305
+ wide: string;
15306
+ wider: string;
15307
+ widest: string;
15308
+ };
15309
+ space: {
15310
+ 0: string;
15311
+ xs: string;
15312
+ sm: string;
15313
+ md: string;
15314
+ lg: string;
15315
+ xl: string;
15316
+ px: string;
15317
+ 1: string;
15318
+ 2: string;
15319
+ 3: string;
15320
+ 4: string;
15321
+ 5: string;
15322
+ 6: string;
15323
+ 7: string;
15324
+ 8: string;
15325
+ 9: string;
15326
+ 10: string;
15327
+ 11: string;
15328
+ 12: string;
15329
+ 13: string;
15330
+ 14: string;
15331
+ 15: string;
15332
+ 16: string;
15333
+ 17: string;
15334
+ 18: string;
15335
+ 20: string;
15336
+ 24: string;
15337
+ 28: string;
15338
+ 32: string;
15339
+ 36: string;
15340
+ 40: string;
15341
+ 44: string;
15342
+ 48: string;
15343
+ 52: string;
15344
+ 56: string;
15345
+ 60: string;
15346
+ 64: string;
15347
+ 72: string;
15348
+ 80: string;
15349
+ 96: string;
15350
+ };
15351
+ radii: {
15352
+ xs: string;
15353
+ sm: string;
15354
+ md: string;
15355
+ base: string;
15356
+ lg: string;
15357
+ xl: string;
15358
+ squared: string;
15359
+ rounded: string;
15360
+ pill: string;
15361
+ };
15362
+ zIndices: {
15363
+ 1: string;
15364
+ 2: string;
15365
+ 3: string;
15366
+ 4: string;
15367
+ 5: string;
15368
+ 10: string;
15369
+ max: string;
15370
+ };
15371
+ borderWeights: {
15372
+ light: string;
15373
+ normal: string;
15374
+ bold: string;
15375
+ extrabold: string;
15376
+ black: string;
15377
+ };
15378
+ transitions: {
15379
+ default: string;
15380
+ };
15381
+ breakpoints: {
15382
+ xs: string;
15383
+ sm: string;
15384
+ md: string;
15385
+ lg: string;
15386
+ xl: string;
15387
+ };
15388
+ }, {
15389
+ width: string;
15390
+ height: string;
15391
+ minWidth: string;
15392
+ maxWidth: string;
15393
+ minHeight: string;
15394
+ maxHeight: string;
15395
+ flexBasis: string;
15396
+ gridTemplateColumns: string;
15397
+ gridTemplateRows: string;
15398
+ blockSize: string;
15399
+ minBlockSize: string;
15400
+ maxBlockSize: string;
15401
+ inlineSize: string;
15402
+ minInlineSize: string;
15403
+ maxInlineSize: string;
15404
+ borderWidth: string;
15405
+ gap: "space";
15406
+ gridGap: "space";
15407
+ columnGap: "space";
15408
+ gridColumnGap: "space";
15409
+ rowGap: "space";
15410
+ gridRowGap: "space";
15411
+ inset: "space";
15412
+ insetBlock: "space";
15413
+ insetBlockEnd: "space";
15414
+ insetBlockStart: "space";
15415
+ insetInline: "space";
15416
+ insetInlineEnd: "space";
15417
+ insetInlineStart: "space";
15418
+ margin: "space";
15419
+ marginTop: "space";
15420
+ marginRight: "space";
15421
+ marginBottom: "space";
15422
+ marginLeft: "space";
15423
+ marginBlock: "space";
15424
+ marginBlockEnd: "space";
15425
+ marginBlockStart: "space";
15426
+ marginInline: "space";
15427
+ marginInlineEnd: "space";
15428
+ marginInlineStart: "space";
15429
+ padding: "space";
15430
+ paddingTop: "space";
15431
+ paddingRight: "space";
15432
+ paddingBottom: "space";
15433
+ paddingLeft: "space";
15434
+ paddingBlock: "space";
15435
+ paddingBlockEnd: "space";
15436
+ paddingBlockStart: "space";
15437
+ paddingInline: "space";
15438
+ paddingInlineEnd: "space";
15439
+ paddingInlineStart: "space";
15440
+ scrollMargin: "space";
15441
+ scrollMarginTop: "space";
15442
+ scrollMarginRight: "space";
15443
+ scrollMarginBottom: "space";
15444
+ scrollMarginLeft: "space";
15445
+ scrollMarginBlock: "space";
15446
+ scrollMarginBlockEnd: "space";
15447
+ scrollMarginBlockStart: "space";
15448
+ scrollMarginInline: "space";
15449
+ scrollMarginInlineEnd: "space";
15450
+ scrollMarginInlineStart: "space";
15451
+ scrollPadding: "space";
15452
+ scrollPaddingTop: "space";
15453
+ scrollPaddingRight: "space";
15454
+ scrollPaddingBottom: "space";
15455
+ scrollPaddingLeft: "space";
15456
+ scrollPaddingBlock: "space";
15457
+ scrollPaddingBlockEnd: "space";
15458
+ scrollPaddingBlockStart: "space";
15459
+ scrollPaddingInline: "space";
15460
+ scrollPaddingInlineEnd: "space";
15461
+ scrollPaddingInlineStart: "space";
15462
+ top: "space";
15463
+ right: "space";
15464
+ bottom: "space";
15465
+ left: "space";
15466
+ fontSize: "fontSizes";
15467
+ background: "colors";
15468
+ backgroundColor: "colors";
15469
+ backgroundImage: "colors";
15470
+ borderImage: "colors";
15471
+ border: "colors";
15472
+ borderBlock: "colors";
15473
+ borderBlockEnd: "colors";
15474
+ borderBlockStart: "colors";
15475
+ borderBottom: "colors";
15476
+ borderBottomColor: "colors";
15477
+ borderColor: "colors";
15478
+ borderInline: "colors";
15479
+ borderInlineEnd: "colors";
15480
+ borderInlineStart: "colors";
15481
+ borderLeft: "colors";
15482
+ borderLeftColor: "colors";
15483
+ borderRight: "colors";
15484
+ borderRightColor: "colors";
15485
+ borderTop: "colors";
15486
+ borderTopColor: "colors";
15487
+ caretColor: "colors";
15488
+ color: "colors";
15489
+ columnRuleColor: "colors";
15490
+ outline: "colors";
15491
+ outlineColor: "colors";
15492
+ fill: "colors";
15493
+ stroke: "colors";
15494
+ textDecorationColor: "colors";
15495
+ fontFamily: "fonts";
15496
+ fontWeight: "fontWeights";
15497
+ lineHeight: "lineHeights";
15498
+ letterSpacing: "letterSpacings";
15499
+ borderTopWidth: "borderWidths";
15500
+ borderLeftWidth: "borderWidths";
15501
+ borderRightWidth: "borderWidths";
15502
+ borderBottomWidth: "borderWidths";
15503
+ borderStyle: "borderStyles";
15504
+ borderTopStyle: "borderStyles";
15505
+ borderLeftStyle: "borderStyles";
15506
+ borderRightStyle: "borderStyles";
15507
+ borderBottomStyle: "borderStyles";
15508
+ borderRadius: "radii";
15509
+ borderTopLeftRadius: "radii";
15510
+ borderTopRightRadius: "radii";
15511
+ borderBottomRightRadius: "radii";
15512
+ borderBottomLeftRadius: "radii";
15513
+ boxShadow: "shadows";
15514
+ textShadow: "shadows";
15515
+ transition: "transitions";
15516
+ zIndex: "zIndices";
15517
+ }, {
15518
+ p: (value: {
15519
+ readonly [$$PropertyValue]: "padding";
15520
+ }) => {
15521
+ padding: {
15522
+ readonly [$$PropertyValue]: "padding";
15523
+ };
15524
+ };
15525
+ pt: (value: {
15526
+ readonly [$$PropertyValue]: "paddingTop";
15527
+ }) => {
15528
+ paddingTop: {
15529
+ readonly [$$PropertyValue]: "paddingTop";
15530
+ };
15531
+ };
15532
+ pr: (value: {
15533
+ readonly [$$PropertyValue]: "paddingRight";
15534
+ }) => {
15535
+ paddingRight: {
15536
+ readonly [$$PropertyValue]: "paddingRight";
15537
+ };
15538
+ };
15539
+ pb: (value: {
15540
+ readonly [$$PropertyValue]: "paddingBottom";
15541
+ }) => {
15542
+ paddingBottom: {
15543
+ readonly [$$PropertyValue]: "paddingBottom";
15544
+ };
15545
+ };
15546
+ pl: (value: {
15547
+ readonly [$$PropertyValue]: "paddingLeft";
15548
+ }) => {
15549
+ paddingLeft: {
15550
+ readonly [$$PropertyValue]: "paddingLeft";
15551
+ };
15552
+ };
15553
+ px: (value: {
15554
+ readonly [$$PropertyValue]: "paddingLeft";
15555
+ }) => {
15556
+ paddingLeft: {
15557
+ readonly [$$PropertyValue]: "paddingLeft";
15558
+ };
15559
+ paddingRight: {
15560
+ readonly [$$PropertyValue]: "paddingLeft";
15561
+ };
15562
+ };
15563
+ py: (value: {
15564
+ readonly [$$PropertyValue]: "paddingTop";
15565
+ }) => {
15566
+ paddingTop: {
15567
+ readonly [$$PropertyValue]: "paddingTop";
15568
+ };
15569
+ paddingBottom: {
15570
+ readonly [$$PropertyValue]: "paddingTop";
15571
+ };
15572
+ };
15573
+ m: (value: {
15574
+ readonly [$$PropertyValue]: "margin";
15575
+ }) => {
15576
+ margin: {
15577
+ readonly [$$PropertyValue]: "margin";
15578
+ };
15579
+ };
15580
+ mt: (value: {
15581
+ readonly [$$PropertyValue]: "marginTop";
15582
+ }) => {
15583
+ marginTop: {
15584
+ readonly [$$PropertyValue]: "marginTop";
15585
+ };
15586
+ };
15587
+ mr: (value: {
15588
+ readonly [$$PropertyValue]: "marginRight";
15589
+ }) => {
15590
+ marginRight: {
15591
+ readonly [$$PropertyValue]: "marginRight";
15592
+ };
15593
+ };
15594
+ mb: (value: {
15595
+ readonly [$$PropertyValue]: "marginBottom";
15596
+ }) => {
15597
+ marginBottom: {
15598
+ readonly [$$PropertyValue]: "marginBottom";
15599
+ };
15600
+ };
15601
+ ml: (value: {
15602
+ readonly [$$PropertyValue]: "marginLeft";
15603
+ }) => {
15604
+ marginLeft: {
15605
+ readonly [$$PropertyValue]: "marginLeft";
15606
+ };
15607
+ };
15608
+ mx: (value: {
15609
+ readonly [$$PropertyValue]: "marginLeft";
15610
+ }) => {
15611
+ marginLeft: {
15612
+ readonly [$$PropertyValue]: "marginLeft";
15613
+ };
15614
+ marginRight: {
15615
+ readonly [$$PropertyValue]: "marginLeft";
15616
+ };
15617
+ };
15618
+ my: (value: {
15619
+ readonly [$$PropertyValue]: "marginTop";
15620
+ }) => {
15621
+ marginTop: {
15622
+ readonly [$$PropertyValue]: "marginTop";
15623
+ };
15624
+ marginBottom: {
15625
+ readonly [$$PropertyValue]: "marginTop";
15626
+ };
15627
+ };
15628
+ ta: (value: {
15629
+ readonly [$$PropertyValue]: "textAlign";
15630
+ }) => {
15631
+ textAlign: {
15632
+ readonly [$$PropertyValue]: "textAlign";
15633
+ };
15634
+ };
15635
+ tt: (value: {
15636
+ readonly [$$PropertyValue]: "textTransform";
15637
+ }) => {
15638
+ textTransform: {
15639
+ readonly [$$PropertyValue]: "textTransform";
15640
+ };
15641
+ };
15642
+ to: (value: {
15643
+ readonly [$$PropertyValue]: "textOverflow";
15644
+ }) => {
15645
+ textOverflow: {
15646
+ readonly [$$PropertyValue]: "textOverflow";
15647
+ };
15648
+ };
15649
+ d: (value: {
15650
+ readonly [$$PropertyValue]: "display";
15651
+ }) => {
15652
+ display: {
15653
+ readonly [$$PropertyValue]: "display";
15654
+ };
15655
+ };
15656
+ dflex: (value: {
15657
+ readonly [$$PropertyValue]: "alignItems";
15658
+ }) => {
15659
+ display: string;
15660
+ alignItems: {
15661
+ readonly [$$PropertyValue]: "alignItems";
15662
+ };
15663
+ justifyContent: {
15664
+ readonly [$$PropertyValue]: "alignItems";
15665
+ };
15666
+ };
15667
+ fd: (value: {
15668
+ readonly [$$PropertyValue]: "flexDirection";
15669
+ }) => {
15670
+ flexDirection: {
15671
+ readonly [$$PropertyValue]: "flexDirection";
15672
+ };
15673
+ };
15674
+ fw: (value: {
15675
+ readonly [$$PropertyValue]: "flexWrap";
15676
+ }) => {
15677
+ flexWrap: {
15678
+ readonly [$$PropertyValue]: "flexWrap";
15679
+ };
15680
+ };
15681
+ ai: (value: {
15682
+ readonly [$$PropertyValue]: "alignItems";
15683
+ }) => {
15684
+ alignItems: {
15685
+ readonly [$$PropertyValue]: "alignItems";
15686
+ };
15687
+ };
15688
+ ac: (value: {
15689
+ readonly [$$PropertyValue]: "alignContent";
15690
+ }) => {
15691
+ alignContent: {
15692
+ readonly [$$PropertyValue]: "alignContent";
15693
+ };
15694
+ };
15695
+ jc: (value: {
15696
+ readonly [$$PropertyValue]: "justifyContent";
15697
+ }) => {
15698
+ justifyContent: {
15699
+ readonly [$$PropertyValue]: "justifyContent";
15700
+ };
15701
+ };
15702
+ as: (value: {
15703
+ readonly [$$PropertyValue]: "alignSelf";
15704
+ }) => {
15705
+ alignSelf: {
15706
+ readonly [$$PropertyValue]: "alignSelf";
15707
+ };
15708
+ };
15709
+ fg: (value: {
15710
+ readonly [$$PropertyValue]: "flexGrow";
15711
+ }) => {
15712
+ flexGrow: {
15713
+ readonly [$$PropertyValue]: "flexGrow";
15714
+ };
15715
+ };
15716
+ fs: (value: {
15717
+ readonly [$$PropertyValue]: "fontSize";
15718
+ }) => {
15719
+ fontSize: {
15720
+ readonly [$$PropertyValue]: "fontSize";
15721
+ };
15722
+ };
15723
+ fb: (value: {
15724
+ readonly [$$PropertyValue]: "flexBasis";
15725
+ }) => {
15726
+ flexBasis: {
15727
+ readonly [$$PropertyValue]: "flexBasis";
15728
+ };
15729
+ };
15730
+ bc: (value: {
15731
+ readonly [$$PropertyValue]: "backgroundColor";
15732
+ }) => {
15733
+ backgroundColor: {
15734
+ readonly [$$PropertyValue]: "backgroundColor";
15735
+ };
15736
+ };
15737
+ bf: (value: {
15738
+ readonly [$$PropertyValue]: "backdropFilter";
15739
+ }) => {
15740
+ backdropFilter: {
15741
+ readonly [$$PropertyValue]: "backdropFilter";
15742
+ };
15743
+ };
15744
+ bg: (value: {
15745
+ readonly [$$PropertyValue]: "backgroundColor";
15746
+ }) => {
15747
+ background: {
15748
+ readonly [$$PropertyValue]: "backgroundColor";
15749
+ };
15750
+ };
15751
+ bgBlur: (value: {
15752
+ readonly [$$PropertyValue]: "backgroundColor";
15753
+ }) => {
15754
+ bf: string;
15755
+ bg: string;
15756
+ };
15757
+ bgColor: (value: {
15758
+ readonly [$$PropertyValue]: "backgroundColor";
15759
+ }) => {
15760
+ backgroundColor: {
15761
+ readonly [$$PropertyValue]: "backgroundColor";
15762
+ };
15763
+ };
15764
+ backgroundClip: (value: {
15765
+ readonly [$$PropertyValue]: "backgroundClip";
15766
+ }) => {
15767
+ WebkitBackgroundClip: {
15768
+ readonly [$$PropertyValue]: "backgroundClip";
15769
+ };
15770
+ backgroundClip: {
15771
+ readonly [$$PropertyValue]: "backgroundClip";
15772
+ };
15773
+ };
15774
+ bgClip: (value: {
15775
+ readonly [$$PropertyValue]: "backgroundClip";
15776
+ }) => {
15777
+ WebkitBackgroundClip: {
15778
+ readonly [$$PropertyValue]: "backgroundClip";
15779
+ };
15780
+ backgroundClip: {
15781
+ readonly [$$PropertyValue]: "backgroundClip";
15782
+ };
15783
+ };
15784
+ br: (value: {
15785
+ readonly [$$PropertyValue]: "borderRadius";
15786
+ }) => {
15787
+ borderRadius: {
15788
+ readonly [$$PropertyValue]: "borderRadius";
15789
+ };
15790
+ };
15791
+ bw: (value: {
15792
+ readonly [$$PropertyValue]: "borderWidth";
15793
+ }) => {
15794
+ borderWidth: {
15795
+ readonly [$$PropertyValue]: "borderWidth";
15796
+ };
15797
+ };
15798
+ btrr: (value: {
15799
+ readonly [$$PropertyValue]: "borderTopRightRadius";
15800
+ }) => {
15801
+ borderTopRightRadius: {
15802
+ readonly [$$PropertyValue]: "borderTopRightRadius";
15803
+ };
15804
+ };
15805
+ bbrr: (value: {
15806
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
15807
+ }) => {
15808
+ borderBottomRightRadius: {
15809
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
15810
+ };
15811
+ };
15812
+ bblr: (value: {
15813
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
15814
+ }) => {
15815
+ borderBottomLeftRadius: {
15816
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
15817
+ };
15818
+ };
15819
+ btlr: (value: {
15820
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
15821
+ }) => {
15822
+ borderTopLeftRadius: {
15823
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
15824
+ };
15825
+ };
15826
+ bs: (value: {
15827
+ readonly [$$PropertyValue]: "boxShadow";
15828
+ }) => {
15829
+ boxShadow: {
15830
+ readonly [$$PropertyValue]: "boxShadow";
15831
+ };
15832
+ };
15833
+ normalShadow: (value: {
15834
+ readonly [$$PropertyValue]: "backgroundColor";
15835
+ }) => {
15836
+ boxShadow: string;
15837
+ };
15838
+ normalShadowVar: (value: {
15839
+ readonly [$$PropertyValue]: "backgroundColor";
15840
+ }) => {
15841
+ boxShadow: string;
15842
+ };
15843
+ lh: (value: {
15844
+ readonly [$$PropertyValue]: "lineHeight";
15845
+ }) => {
15846
+ lineHeight: {
15847
+ readonly [$$PropertyValue]: "lineHeight";
15848
+ };
15849
+ };
15850
+ ov: (value: {
15851
+ readonly [$$PropertyValue]: "overflow";
15852
+ }) => {
15853
+ overflow: {
15854
+ readonly [$$PropertyValue]: "overflow";
15855
+ };
15856
+ };
15857
+ ox: (value: {
15858
+ readonly [$$PropertyValue]: "overflowX";
15859
+ }) => {
15860
+ overflowX: {
15861
+ readonly [$$PropertyValue]: "overflowX";
15862
+ };
15863
+ };
15864
+ oy: (value: {
15865
+ readonly [$$PropertyValue]: "overflowY";
15866
+ }) => {
15867
+ overflowY: {
15868
+ readonly [$$PropertyValue]: "overflowY";
15869
+ };
15870
+ };
15871
+ pe: (value: {
15872
+ readonly [$$PropertyValue]: "pointerEvents";
15873
+ }) => {
15874
+ pointerEvents: {
15875
+ readonly [$$PropertyValue]: "pointerEvents";
15876
+ };
15877
+ };
15878
+ events: (value: {
15879
+ readonly [$$PropertyValue]: "pointerEvents";
15880
+ }) => {
15881
+ pointerEvents: {
15882
+ readonly [$$PropertyValue]: "pointerEvents";
15883
+ };
15884
+ };
15885
+ us: (value: {
15886
+ readonly [$$PropertyValue]: "userSelect";
15887
+ }) => {
15888
+ WebkitUserSelect: {
15889
+ readonly [$$PropertyValue]: "userSelect";
15890
+ };
15891
+ userSelect: {
15892
+ readonly [$$PropertyValue]: "userSelect";
15893
+ };
15894
+ };
15895
+ userSelect: (value: {
15896
+ readonly [$$PropertyValue]: "userSelect";
15897
+ }) => {
15898
+ WebkitUserSelect: {
15899
+ readonly [$$PropertyValue]: "userSelect";
15900
+ };
15901
+ userSelect: {
15902
+ readonly [$$PropertyValue]: "userSelect";
15903
+ };
15904
+ };
15905
+ w: (value: {
15906
+ readonly [$$PropertyValue]: "width";
15907
+ }) => {
15908
+ width: {
15909
+ readonly [$$PropertyValue]: "width";
15910
+ };
15911
+ };
15912
+ h: (value: {
15913
+ readonly [$$PropertyValue]: "height";
15914
+ }) => {
15915
+ height: {
15916
+ readonly [$$PropertyValue]: "height";
15917
+ };
15918
+ };
15919
+ mw: (value: {
15920
+ readonly [$$PropertyValue]: "maxWidth";
15921
+ }) => {
15922
+ maxWidth: {
15923
+ readonly [$$PropertyValue]: "maxWidth";
15924
+ };
15925
+ };
15926
+ maxW: (value: {
15927
+ readonly [$$PropertyValue]: "maxWidth";
15928
+ }) => {
15929
+ maxWidth: {
15930
+ readonly [$$PropertyValue]: "maxWidth";
15931
+ };
15932
+ };
15933
+ mh: (value: {
15934
+ readonly [$$PropertyValue]: "maxHeight";
15935
+ }) => {
15936
+ maxHeight: {
15937
+ readonly [$$PropertyValue]: "maxHeight";
15938
+ };
15939
+ };
15940
+ maxH: (value: {
15941
+ readonly [$$PropertyValue]: "maxHeight";
15942
+ }) => {
15943
+ maxHeight: {
15944
+ readonly [$$PropertyValue]: "maxHeight";
15945
+ };
15946
+ };
15947
+ size: (value: {
15948
+ readonly [$$PropertyValue]: "width";
15949
+ }) => {
15950
+ width: {
15951
+ readonly [$$PropertyValue]: "width";
15952
+ };
15953
+ height: {
15954
+ readonly [$$PropertyValue]: "width";
15955
+ };
15956
+ };
15957
+ minSize: (value: {
15958
+ readonly [$$PropertyValue]: "width";
15959
+ }) => {
15960
+ minWidth: {
15961
+ readonly [$$PropertyValue]: "width";
15962
+ };
15963
+ minHeight: {
15964
+ readonly [$$PropertyValue]: "width";
15965
+ };
15966
+ width: {
15967
+ readonly [$$PropertyValue]: "width";
15968
+ };
15969
+ height: {
15970
+ readonly [$$PropertyValue]: "width";
15971
+ };
15972
+ };
15973
+ sizeMin: (value: {
15974
+ readonly [$$PropertyValue]: "width";
15975
+ }) => {
15976
+ minWidth: {
15977
+ readonly [$$PropertyValue]: "width";
15978
+ };
15979
+ minHeight: {
15980
+ readonly [$$PropertyValue]: "width";
15981
+ };
15982
+ width: {
15983
+ readonly [$$PropertyValue]: "width";
15984
+ };
15985
+ height: {
15986
+ readonly [$$PropertyValue]: "width";
15987
+ };
15988
+ };
15989
+ maxSize: (value: {
15990
+ readonly [$$PropertyValue]: "width";
15991
+ }) => {
15992
+ maxWidth: {
15993
+ readonly [$$PropertyValue]: "width";
15994
+ };
15995
+ maxHeight: {
15996
+ readonly [$$PropertyValue]: "width";
15997
+ };
15998
+ };
15999
+ sizeMax: (value: {
16000
+ readonly [$$PropertyValue]: "width";
16001
+ }) => {
16002
+ maxWidth: {
16003
+ readonly [$$PropertyValue]: "width";
16004
+ };
16005
+ maxHeight: {
16006
+ readonly [$$PropertyValue]: "width";
16007
+ };
16008
+ };
16009
+ appearance: (value: {
16010
+ readonly [$$PropertyValue]: "appearance";
16011
+ }) => {
16012
+ WebkitAppearance: {
16013
+ readonly [$$PropertyValue]: "appearance";
16014
+ };
16015
+ appearance: {
16016
+ readonly [$$PropertyValue]: "appearance";
16017
+ };
16018
+ };
16019
+ scale: (value: {
16020
+ readonly [$$PropertyValue]: "scale";
16021
+ }) => {
16022
+ transform: string;
16023
+ };
16024
+ linearGradient: (value: {
16025
+ readonly [$$PropertyValue]: "backgroundImage";
16026
+ }) => {
16027
+ backgroundImage: string;
16028
+ };
16029
+ tdl: (value: {
16030
+ readonly [$$PropertyValue]: "textDecorationLine";
16031
+ }) => {
16032
+ textDecorationLine: {
16033
+ readonly [$$PropertyValue]: "textDecorationLine";
16034
+ };
16035
+ };
16036
+ textGradient: (value: {
16037
+ readonly [$$PropertyValue]: "backgroundImage";
16038
+ }) => {
16039
+ backgroundImage: string;
16040
+ WebkitBackgroundClip: string;
16041
+ WebkitTextFillColor: string;
16042
+ '&::selection': {
16043
+ WebkitTextFillColor: string;
16044
+ };
16045
+ };
16046
+ }>>;
15094
16047
  export declare type TableVariantsProps = VariantProps<typeof StyledTable>;
16048
+ export declare type TableContainerVariantsProps = VariantProps<typeof StyledTableContainer>;
15095
16049
  export declare type TableCellVariantsProps = VariantProps<typeof StyledTableCell>;
15096
16050
  export declare type TableColumnHeaderVariantsProps = VariantProps<typeof StyledTableColumnHeader>;
15097
16051
  export declare type TableFooterVatiantsProps = VariantProps<typeof StyledTableFooter>;