@vygruppen/spor-react 8.2.1 → 9.0.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.
Files changed (67) hide show
  1. package/.turbo/turbo-build.log +10 -12
  2. package/CHANGELOG.md +34 -0
  3. package/dist/{CountryCodeSelect-NEASN3EC.mjs → CountryCodeSelect-LFDBAHV7.mjs} +1 -1
  4. package/dist/{chunk-AKOJGLTQ.mjs → chunk-BWLVKMWU.mjs} +1262 -1785
  5. package/dist/index.d.mts +1664 -813
  6. package/dist/index.d.ts +1664 -813
  7. package/dist/index.js +1551 -2011
  8. package/dist/index.mjs +1 -1
  9. package/package.json +1 -1
  10. package/src/accordion/Expandable.tsx +22 -2
  11. package/src/breadcrumb/Breadcrumb.tsx +4 -2
  12. package/src/datepicker/DateRangePicker.tsx +1 -0
  13. package/src/input/ChoiceChip.tsx +3 -3
  14. package/src/input/NumericStepper.tsx +7 -49
  15. package/src/input/PasswordInput.tsx +2 -0
  16. package/src/input/PhoneNumberInput.tsx +1 -1
  17. package/src/input/Switch.tsx +4 -7
  18. package/src/loader/ProgressBar.tsx +7 -24
  19. package/src/tab/Tabs.tsx +4 -5
  20. package/src/theme/components/accordion.ts +12 -16
  21. package/src/theme/components/alert-expandable.ts +10 -21
  22. package/src/theme/components/breadcrumb.ts +60 -5
  23. package/src/theme/components/button.ts +40 -75
  24. package/src/theme/components/card-select.ts +14 -56
  25. package/src/theme/components/card.ts +56 -63
  26. package/src/theme/components/checkbox.ts +20 -20
  27. package/src/theme/components/choice-chip.ts +28 -43
  28. package/src/theme/components/close-button.ts +1 -1
  29. package/src/theme/components/datepicker.ts +48 -166
  30. package/src/theme/components/drawer.ts +6 -4
  31. package/src/theme/components/fab.ts +35 -62
  32. package/src/theme/components/index.ts +3 -1
  33. package/src/theme/components/info-select.ts +5 -9
  34. package/src/theme/components/input.ts +17 -32
  35. package/src/theme/components/link.ts +8 -8
  36. package/src/theme/components/listbox.ts +5 -7
  37. package/src/theme/components/media-controller-button.ts +20 -25
  38. package/src/theme/components/modal.ts +8 -6
  39. package/src/theme/components/numeric-stepper.ts +65 -0
  40. package/src/theme/components/popover.ts +7 -8
  41. package/src/theme/components/progress-bar.ts +43 -0
  42. package/src/theme/components/progress-indicator.ts +5 -2
  43. package/src/theme/components/radio.ts +15 -12
  44. package/src/theme/components/select.ts +2 -2
  45. package/src/theme/components/stepper.ts +10 -7
  46. package/src/theme/components/switch.ts +35 -82
  47. package/src/theme/components/table.ts +10 -12
  48. package/src/theme/components/tabs.ts +55 -261
  49. package/src/theme/components/travel-tag.ts +3 -6
  50. package/src/theme/foundations/colors.ts +3 -1
  51. package/src/theme/foundations/fonts.ts +2 -2
  52. package/src/theme/index.ts +9 -6
  53. package/src/theme/utils/accent-utils.ts +54 -0
  54. package/src/theme/utils/base-utils.ts +94 -0
  55. package/src/theme/utils/bg-utils.ts +19 -0
  56. package/src/theme/utils/brand-utils.ts +42 -0
  57. package/src/theme/utils/floating-utils.ts +64 -0
  58. package/src/theme/utils/{focus-util.ts → focus-utils.ts} +1 -1
  59. package/src/theme/utils/ghost-utils.ts +40 -0
  60. package/src/theme/utils/surface-utils.ts +35 -0
  61. package/src/tooltip/Tooltip.tsx +17 -20
  62. package/src/typography/Heading.tsx +7 -2
  63. package/src/util/externals.tsx +0 -1
  64. package/src/theme/utils/background-utils.ts +0 -179
  65. package/src/theme/utils/border-utils.ts +0 -176
  66. package/src/theme/utils/box-shadow-utils.ts +0 -44
  67. package/src/theme/utils/text-utils.ts +0 -60
package/dist/index.d.ts CHANGED
@@ -81,7 +81,7 @@ type AccordionProps = Omit<AccordionProps$1, "variant" | "size"> & {
81
81
  declare const Accordion: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", AccordionProps>;
82
82
 
83
83
  type HeadingLevel = "h2" | "h3" | "h4" | "h5" | "h6";
84
- type ExpandableProps = Omit<AccordionProps, "title"> & {
84
+ type ExpandableProps = Omit<AccordionProps, "title" | "index" | "defaultIndex" | "onChange"> & {
85
85
  /** The hidden content */
86
86
  children: React.ReactNode;
87
87
  /** The title that's shown inside the toggle button */
@@ -97,6 +97,12 @@ type ExpandableProps = Omit<AccordionProps, "title"> & {
97
97
  * If the size is set to `lg`, the icon should be 30px.
98
98
  */
99
99
  leftIcon?: React.ReactNode;
100
+ /** Controlled value of whether the accordion is open or not */
101
+ isOpen?: boolean;
102
+ /** Default value of when the accordion is open or not */
103
+ defaultOpen?: boolean;
104
+ /** Callback for when the expandable opens or closes */
105
+ onChange?: (isOpen: boolean) => void;
100
106
  };
101
107
  /**
102
108
  * A standalone expandable component.
@@ -110,7 +116,7 @@ type ExpandableProps = Omit<AccordionProps, "title"> & {
110
116
  * </Expandable>
111
117
  * ```
112
118
  */
113
- declare const Expandable: ({ children, headingLevel, title, leftIcon, size, ...rest }: ExpandableProps) => React.JSX.Element;
119
+ declare const Expandable: ({ children, headingLevel, title, leftIcon, size, defaultOpen, isOpen, onChange, ...rest }: ExpandableProps) => React.JSX.Element;
114
120
  type ExpandableItemProps = Omit<AccordionItemProps, "title"> & {
115
121
  /** The hidden content */
116
122
  children: React.ReactNode;
@@ -218,7 +224,9 @@ type StaticAlertProps = BaseAlertProps;
218
224
  */
219
225
  declare const StaticAlert: ({ children, ...props }: StaticAlertProps) => React.JSX.Element;
220
226
 
221
- type BreadcrumbProps = BreadcrumbProps$1;
227
+ type BreadcrumbProps = Omit<BreadcrumbProps$1, "variant"> & {
228
+ variant?: "base" | "ghost";
229
+ };
222
230
  /**
223
231
  * A breadcrumb component.
224
232
  *
@@ -730,14 +738,14 @@ type ChoiceChipProps = {
730
738
  default: React.ReactNode;
731
739
  checked: React.ReactNode;
732
740
  };
733
- size?: "sm" | "md" | "lg" | "xl";
741
+ size?: "xs" | "sm" | "md" | "lg";
734
742
  chipType?: "icon" | "choice" | "filter";
735
743
  variant?: "base" | "accent" | "floating";
736
744
  };
737
745
  /**
738
746
  * Choice chips are checkboxes that look like selectable buttons.
739
747
  *
740
- * Choice chips are available in four different sizes - `sm`, `md`, `lg` and `xl`.
748
+ * Choice chips are available in four different sizes - `xs`, `sm`, `md` and `lg`.
741
749
  *
742
750
  * ```tsx
743
751
  * <Stack flexDirection="row">
@@ -1266,7 +1274,7 @@ type SearchInputProps = Exclude<InputProps$1, "variant" | "size" | "leftIcon" |
1266
1274
  */
1267
1275
  declare const SearchInput: _chakra_ui_system_dist_system_types.ComponentWithAs<"input", SearchInputProps>;
1268
1276
 
1269
- type SwitchProps = Exclude<SwitchProps$1, "colorScheme" | "variant"> & {
1277
+ type SwitchProps = Omit<SwitchProps$1, "colorScheme" | "variant"> & {
1270
1278
  size?: "sm" | "md" | "lg";
1271
1279
  };
1272
1280
  /**
@@ -1281,12 +1289,12 @@ type SwitchProps = Exclude<SwitchProps$1, "colorScheme" | "variant"> & {
1281
1289
  * </FormControl>
1282
1290
  * ```
1283
1291
  *
1284
- * Switches are available in three different sizes - `sm`, `md` and `lg`. There are also two variants - `solid` and `outline`.
1292
+ * Switches are available in three different sizes - `sm`, `md` and `lg`.
1285
1293
  *
1286
1294
  * ```tsx
1287
1295
  * <FormControl>
1288
1296
  * <FormLabel>Enable alerts?</FormLabel>
1289
- * <Switch variant="outline" size="lg" />
1297
+ * <Switch size="sm" />
1290
1298
  * </FormControl>
1291
1299
  * ```
1292
1300
  */
@@ -2041,11 +2049,10 @@ type StepperStepProps = {
2041
2049
  declare const StepperStep: ({ children, stepNumber, variant, isDisabled: isDisabledOverride, }: StepperStepProps) => React.JSX.Element;
2042
2050
 
2043
2051
  type TabsProps = Exclude<TabsProps$1, "colorScheme" | "variant" | "orientation" | "size"> & {
2044
- colorScheme: "base" | "accent";
2045
- /** Defaults to `md` */
2046
- size?: "sm" | "md" | "lg" | "xl";
2047
- /** Defaults to `round` */
2048
- variant?: "square" | "round";
2052
+ /** Defaults to `base` */
2053
+ variant: "base" | "accent";
2054
+ /** Defaults to `sm` */
2055
+ size?: "xs" | "sm" | "md" | "lg";
2049
2056
  };
2050
2057
  declare const Tabs: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", TabsProps>;
2051
2058
 
@@ -2073,7 +2080,7 @@ type TableProps = Omit<TableProps$1, "variant" | "colorScheme"> & {
2073
2080
  */
2074
2081
  declare const Table: _chakra_ui_system_dist_system_types.ComponentWithAs<"table", TableProps>;
2075
2082
 
2076
- type ColorsType = typeof tokens__default.color.alias & typeof tokens__default.color.palette & {
2083
+ type ColorsType = typeof tokens__default.color.alias & typeof tokens__default.color.palette & typeof tokens__default.color.vyDigital & {
2077
2084
  linjetag: typeof tokens__default.color.linjetag;
2078
2085
  };
2079
2086
 
@@ -2127,13 +2134,12 @@ declare const theme: {
2127
2134
  Accordion: {
2128
2135
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
2129
2136
  container: {
2130
- border: string;
2131
2137
  borderRadius: string;
2132
2138
  };
2133
2139
  button: {
2134
2140
  _disabled: {
2141
+ pointerEvents: string;
2135
2142
  opacity: number;
2136
- cursor: string;
2137
2143
  };
2138
2144
  _focusVisible: {
2139
2145
  outlineWidth: string;
@@ -2144,12 +2150,11 @@ declare const theme: {
2144
2150
  textAlign: string;
2145
2151
  fontFamily: string;
2146
2152
  fontWeight: string;
2153
+ outlineOffset: string;
2147
2154
  color: string;
2148
2155
  transitionProperty: string;
2149
2156
  transitionDuration: string;
2150
- border: string;
2151
2157
  borderRadius: string;
2152
- borderColor: string;
2153
2158
  display: string;
2154
2159
  justifyContent: string;
2155
2160
  };
@@ -2202,7 +2207,6 @@ declare const theme: {
2202
2207
  variants?: {
2203
2208
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2204
2209
  button: {
2205
- boxShadow: string;
2206
2210
  _hover: {
2207
2211
  backgroundColor: string;
2208
2212
  };
@@ -2213,17 +2217,37 @@ declare const theme: {
2213
2217
  };
2214
2218
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2215
2219
  container: {
2216
- boxShadow: string;
2220
+ outlineWidth: string;
2221
+ outlineColor: string;
2222
+ outlineStyle: string;
2223
+ outlineOffset: string;
2224
+ } | {
2225
+ outline: string;
2226
+ outlineColor: string;
2217
2227
  };
2218
2228
  button: {
2219
2229
  _expanded: {
2220
2230
  borderBottomRadius: string;
2221
2231
  };
2222
2232
  _hover: {
2223
- boxShadow: string;
2233
+ outlineOffset: number;
2234
+ outlineWidth: string;
2235
+ outlineColor: string;
2236
+ outlineStyle: string;
2237
+ } | {
2238
+ outlineOffset: number;
2239
+ outline: string;
2240
+ outlineColor: string;
2224
2241
  };
2225
2242
  _active: {
2226
- boxShadow: string;
2243
+ outlineWidth: string;
2244
+ outlineColor: string;
2245
+ outlineStyle: string;
2246
+ outlineOffset: string;
2247
+ backgroundColor: string;
2248
+ } | {
2249
+ outline: string;
2250
+ outlineColor: string;
2227
2251
  backgroundColor: string;
2228
2252
  };
2229
2253
  };
@@ -2231,6 +2255,8 @@ declare const theme: {
2231
2255
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2232
2256
  container: {
2233
2257
  boxShadow: string;
2258
+ outline: string;
2259
+ outlineColor: string;
2234
2260
  backgroundColor: string;
2235
2261
  };
2236
2262
  button: {
@@ -2238,11 +2264,14 @@ declare const theme: {
2238
2264
  borderBottomRadius: string;
2239
2265
  };
2240
2266
  _hover: {
2241
- boxShadow: string;
2267
+ outlineOffset: number;
2268
+ outline: string;
2269
+ outlineColor: string;
2242
2270
  backgroundColor: string;
2243
2271
  };
2244
2272
  _active: {
2245
- boxShadow: string;
2273
+ outline: string;
2274
+ outlineColor: string;
2246
2275
  backgroundColor: string;
2247
2276
  };
2248
2277
  };
@@ -2314,6 +2343,86 @@ declare const theme: {
2314
2343
  } | undefined;
2315
2344
  parts: ("container" | "icon" | "closeButton")[];
2316
2345
  };
2346
+ AlertExpandable: {
2347
+ baseStyle?: {
2348
+ container: {
2349
+ paddingX: number;
2350
+ paddingY: number;
2351
+ fontSize: string;
2352
+ transitionProperty: string;
2353
+ transitionDuration: string;
2354
+ _expanded: {
2355
+ borderBottomRadius: string;
2356
+ };
2357
+ _hover: {
2358
+ outline: string;
2359
+ };
2360
+ };
2361
+ } | undefined;
2362
+ sizes?: {
2363
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
2364
+ keys: "container"[];
2365
+ }>;
2366
+ } | undefined;
2367
+ variants?: {
2368
+ info: {
2369
+ container: {
2370
+ _hover: {
2371
+ outlineColor: string;
2372
+ };
2373
+ _active: {
2374
+ backgroundColor: string;
2375
+ };
2376
+ };
2377
+ };
2378
+ success: {
2379
+ container: {
2380
+ _hover: {
2381
+ outlineColor: string;
2382
+ };
2383
+ _active: {
2384
+ backgroundColor: string;
2385
+ };
2386
+ };
2387
+ };
2388
+ warning: {
2389
+ container: {
2390
+ _hover: {
2391
+ outlineColor: string;
2392
+ };
2393
+ _active: {
2394
+ backgroundColor: string;
2395
+ };
2396
+ };
2397
+ };
2398
+ "alt-transport": {
2399
+ container: {
2400
+ _hover: {
2401
+ outlineColor: string;
2402
+ };
2403
+ _active: {
2404
+ backgroundColor: string;
2405
+ };
2406
+ };
2407
+ };
2408
+ error: {
2409
+ container: {
2410
+ _hover: {
2411
+ outlineColor: string;
2412
+ };
2413
+ _active: {
2414
+ backgroundColor: string;
2415
+ };
2416
+ };
2417
+ };
2418
+ } | undefined;
2419
+ defaultProps?: {
2420
+ size?: string | number | undefined;
2421
+ variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
2422
+ colorScheme?: string | undefined;
2423
+ } | undefined;
2424
+ parts: "container"[];
2425
+ };
2317
2426
  Badge: {
2318
2427
  baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
2319
2428
  backgroundColor: string;
@@ -2359,9 +2468,6 @@ declare const theme: {
2359
2468
  paddingX: number;
2360
2469
  borderRadius: string;
2361
2470
  "&:not([aria-current=page])": {
2362
- _active: {
2363
- backgroundColor: string;
2364
- };
2365
2471
  _focusVisible: {
2366
2472
  outlineWidth: string;
2367
2473
  outlineColor: string;
@@ -2369,9 +2475,6 @@ declare const theme: {
2369
2475
  outlineOffset: string;
2370
2476
  };
2371
2477
  cursor: string;
2372
- _hover: {
2373
- backgroundColor: string;
2374
- };
2375
2478
  };
2376
2479
  };
2377
2480
  list: {
@@ -2385,13 +2488,40 @@ declare const theme: {
2385
2488
  }>;
2386
2489
  } | undefined;
2387
2490
  variants?: {
2388
- [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
2389
- keys: ("link" | "container" | "separator" | "item")[];
2390
- }>;
2491
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2492
+ link: {
2493
+ "&:not([aria-current=page])": {
2494
+ _hover: {
2495
+ outlineWidth: string;
2496
+ outlineColor: string;
2497
+ outlineStyle: string;
2498
+ outlineOffset: string;
2499
+ } | {
2500
+ outline: string;
2501
+ outlineColor: string;
2502
+ };
2503
+ _active: {
2504
+ backgroundColor: string;
2505
+ };
2506
+ };
2507
+ };
2508
+ };
2509
+ ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2510
+ link: {
2511
+ "&:not([aria-current=page])": {
2512
+ _hover: {
2513
+ backgroundColor: string;
2514
+ };
2515
+ _active: {
2516
+ backgroundColor: string;
2517
+ };
2518
+ };
2519
+ };
2520
+ };
2391
2521
  } | undefined;
2392
2522
  defaultProps?: {
2393
2523
  size?: string | number | undefined;
2394
- variant?: string | number | undefined;
2524
+ variant?: "base" | "ghost" | undefined;
2395
2525
  colorScheme?: string | undefined;
2396
2526
  } | undefined;
2397
2527
  parts: ("link" | "container" | "separator" | "item")[];
@@ -2399,15 +2529,11 @@ declare const theme: {
2399
2529
  Button: {
2400
2530
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
2401
2531
  _disabled: {
2532
+ color: string;
2533
+ backgroundColor: string;
2402
2534
  cursor: string;
2535
+ pointerEvents: string;
2403
2536
  boxShadow: string;
2404
- backgroundColor: string;
2405
- color: string;
2406
- };
2407
- _hover: {
2408
- _disabled: {
2409
- background: string;
2410
- };
2411
2537
  };
2412
2538
  _focusVisible: {
2413
2539
  outlineWidth: string;
@@ -2425,10 +2551,6 @@ declare const theme: {
2425
2551
  textWrap: string;
2426
2552
  paddingX: number;
2427
2553
  paddingY: number;
2428
- _focus: {
2429
- boxShadow: number;
2430
- outline: number;
2431
- };
2432
2554
  }) | undefined;
2433
2555
  sizes?: {
2434
2556
  lg: {
@@ -2452,70 +2574,113 @@ declare const theme: {
2452
2574
  xs: {
2453
2575
  minHeight: number;
2454
2576
  minWidth: number;
2577
+ paddingY: number;
2455
2578
  fontSize: string;
2456
2579
  fontWeight: string;
2457
2580
  };
2458
2581
  } | undefined;
2459
2582
  variants?: {
2460
2583
  primary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2461
- backgroundColor: string;
2462
- color: string;
2463
2584
  _hover: {
2464
2585
  backgroundColor: string;
2465
2586
  };
2466
2587
  _active: {
2467
2588
  backgroundColor: string;
2468
2589
  };
2590
+ color: string;
2591
+ backgroundColor: string;
2469
2592
  };
2470
2593
  secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2471
- backgroundColor: string;
2472
- color: string;
2473
2594
  _hover: {
2474
2595
  backgroundColor: string;
2475
2596
  };
2476
2597
  _active: {
2477
2598
  backgroundColor: string;
2478
- boxShadow: string;
2479
- _hover: {
2480
- boxShadow: string;
2481
- };
2482
2599
  };
2600
+ color: string;
2601
+ backgroundColor: string;
2483
2602
  };
2484
2603
  tertiary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2485
- backgroundColor: string;
2604
+ _hover: {
2605
+ outlineWidth: string;
2606
+ outlineColor: string;
2607
+ outlineStyle: string;
2608
+ outlineOffset: string;
2609
+ } | {
2610
+ outline: string;
2611
+ outlineColor: string;
2612
+ };
2613
+ _active: {
2614
+ backgroundColor: string;
2615
+ outlineWidth: string;
2616
+ outlineColor: string;
2617
+ outlineStyle: string;
2618
+ outlineOffset: string;
2619
+ } | {
2620
+ backgroundColor: string;
2621
+ outline: string;
2622
+ outlineColor: string;
2623
+ };
2624
+ outlineWidth: string;
2625
+ outlineColor: string;
2626
+ outlineStyle: string;
2627
+ outlineOffset: string;
2486
2628
  color: string;
2487
- boxShadow: string;
2629
+ backgroundColor: string;
2630
+ } | {
2488
2631
  _hover: {
2489
- boxShadow: string;
2632
+ outlineWidth: string;
2633
+ outlineColor: string;
2634
+ outlineStyle: string;
2635
+ outlineOffset: string;
2636
+ } | {
2637
+ outline: string;
2638
+ outlineColor: string;
2490
2639
  };
2491
2640
  _active: {
2492
- boxShadow: string;
2493
2641
  backgroundColor: string;
2642
+ outlineWidth: string;
2643
+ outlineColor: string;
2644
+ outlineStyle: string;
2645
+ outlineOffset: string;
2646
+ } | {
2647
+ backgroundColor: string;
2648
+ outline: string;
2649
+ outlineColor: string;
2494
2650
  };
2651
+ outline: string;
2652
+ outlineColor: string;
2653
+ color: string;
2654
+ backgroundColor: string;
2495
2655
  };
2496
2656
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2497
- backgroundColor: string;
2498
- color: string;
2499
2657
  _hover: {
2500
- backgroundColor: string;
2501
2658
  _disabled: {
2502
2659
  color: string;
2503
2660
  };
2661
+ backgroundColor: string;
2504
2662
  };
2505
2663
  _active: {
2506
2664
  backgroundColor: string;
2507
2665
  };
2666
+ color: string;
2667
+ backgroundColor: string;
2508
2668
  };
2509
2669
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2510
- backgroundColor: string;
2511
2670
  boxShadow: string;
2512
- _active: {
2513
- backgroundColor: string;
2514
- };
2515
2671
  _hover: {
2672
+ boxShadow: string;
2673
+ outline: string;
2674
+ outlineColor: string;
2516
2675
  backgroundColor: string;
2676
+ };
2677
+ _active: {
2517
2678
  boxShadow: string;
2679
+ backgroundColor: string;
2518
2680
  };
2681
+ outline: string;
2682
+ outlineColor: string;
2683
+ backgroundColor: string;
2519
2684
  };
2520
2685
  } | undefined;
2521
2686
  defaultProps?: {
@@ -2527,41 +2692,67 @@ declare const theme: {
2527
2692
  Card: {
2528
2693
  baseStyle?: ((props: any) => {
2529
2694
  "button&, a&, label&, &.is-clickable": {
2695
+ _hover: {
2696
+ backgroundColor: string;
2697
+ outlineColor: string;
2698
+ } | {
2699
+ outlineColor: string;
2700
+ backgroundColor?: undefined;
2701
+ };
2530
2702
  _active: {
2531
2703
  backgroundColor: string;
2532
- boxShadow: string;
2704
+ outlineColor: string;
2533
2705
  };
2534
2706
  _disabled: {
2535
- backgroundColor: string;
2536
- boxShadow: string;
2537
- color: string;
2538
2707
  pointerEvents: string;
2539
- };
2540
- _focusVisible: {
2708
+ color: string;
2541
2709
  outlineWidth: string;
2542
2710
  outlineColor: string;
2543
2711
  outlineStyle: string;
2544
2712
  outlineOffset: string;
2545
- };
2546
- _hover: {
2547
2713
  backgroundColor: string;
2548
- boxShadow: string;
2549
2714
  } | {
2550
- boxShadow: string;
2551
- backgroundColor?: undefined;
2715
+ pointerEvents: string;
2716
+ color: string;
2717
+ outline: string;
2718
+ outlineColor: string;
2719
+ backgroundColor: string;
2552
2720
  };
2553
- boxShadow: string;
2721
+ _focusVisible: {
2722
+ outlineWidth: string;
2723
+ outlineColor: string;
2724
+ outlineStyle: string;
2725
+ outlineOffset: string;
2726
+ };
2727
+ outlineColor: string;
2554
2728
  backgroundColor?: undefined;
2729
+ outline: string;
2555
2730
  } | {
2731
+ _hover: {
2732
+ backgroundColor: string;
2733
+ outlineColor: string;
2734
+ } | {
2735
+ outlineColor: string;
2736
+ backgroundColor?: undefined;
2737
+ };
2556
2738
  _active: {
2557
2739
  backgroundColor: string;
2558
- boxShadow: string;
2740
+ outlineColor: string;
2559
2741
  };
2560
2742
  _disabled: {
2561
- backgroundColor: string;
2562
- boxShadow: string;
2743
+ pointerEvents: string;
2563
2744
  color: string;
2745
+ outlineWidth: string;
2746
+ outlineColor: string;
2747
+ outlineStyle: string;
2748
+ outlineOffset: string;
2749
+ backgroundColor: string;
2750
+ } | {
2564
2751
  pointerEvents: string;
2752
+ color: string;
2753
+ outline: string;
2754
+ outlineColor: string;
2755
+ backgroundColor: string;
2565
2756
  };
2566
2757
  _focusVisible: {
2567
2758
  outlineWidth: string;
@@ -2569,18 +2760,14 @@ declare const theme: {
2569
2760
  outlineStyle: string;
2570
2761
  outlineOffset: string;
2571
2762
  };
2572
- _hover: {
2573
- backgroundColor: string;
2574
- boxShadow: string;
2575
- } | {
2576
- boxShadow: string;
2577
- backgroundColor?: undefined;
2578
- };
2579
2763
  backgroundColor: string;
2580
- boxShadow: string;
2764
+ outlineColor: string;
2765
+ outline: string;
2581
2766
  };
2767
+ outline: string;
2768
+ outlineColor: string;
2582
2769
  backgroundColor: string;
2583
- boxShadow: string;
2770
+ color: string;
2584
2771
  appearance: string;
2585
2772
  border: string;
2586
2773
  overflow: string;
@@ -2591,15 +2778,31 @@ declare const theme: {
2591
2778
  borderRadius: string;
2592
2779
  } | {
2593
2780
  "button&, a&, label&, &.is-clickable": {
2781
+ _hover: {
2782
+ backgroundColor: string;
2783
+ outlineColor: string;
2784
+ } | {
2785
+ outlineColor: string;
2786
+ backgroundColor?: undefined;
2787
+ };
2594
2788
  _active: {
2595
2789
  backgroundColor: string;
2596
- boxShadow: string;
2790
+ outlineColor: string;
2597
2791
  };
2598
2792
  _disabled: {
2599
- backgroundColor: string;
2600
- boxShadow: string;
2793
+ pointerEvents: string;
2601
2794
  color: string;
2795
+ outlineWidth: string;
2796
+ outlineColor: string;
2797
+ outlineStyle: string;
2798
+ outlineOffset: string;
2799
+ backgroundColor: string;
2800
+ } | {
2602
2801
  pointerEvents: string;
2802
+ color: string;
2803
+ outline: string;
2804
+ outlineColor: string;
2805
+ backgroundColor: string;
2603
2806
  };
2604
2807
  _focusVisible: {
2605
2808
  outlineWidth: string;
@@ -2607,25 +2810,35 @@ declare const theme: {
2607
2810
  outlineStyle: string;
2608
2811
  outlineOffset: string;
2609
2812
  };
2813
+ outlineColor: string;
2814
+ backgroundColor?: undefined;
2815
+ outline: string;
2816
+ } | {
2610
2817
  _hover: {
2611
2818
  backgroundColor: string;
2612
- boxShadow: string;
2819
+ outlineColor: string;
2613
2820
  } | {
2614
- boxShadow: string;
2821
+ outlineColor: string;
2615
2822
  backgroundColor?: undefined;
2616
2823
  };
2617
- boxShadow: string;
2618
- backgroundColor?: undefined;
2619
- } | {
2620
2824
  _active: {
2621
2825
  backgroundColor: string;
2622
- boxShadow: string;
2826
+ outlineColor: string;
2623
2827
  };
2624
2828
  _disabled: {
2625
- backgroundColor: string;
2626
- boxShadow: string;
2829
+ pointerEvents: string;
2627
2830
  color: string;
2831
+ outlineWidth: string;
2832
+ outlineColor: string;
2833
+ outlineStyle: string;
2834
+ outlineOffset: string;
2835
+ backgroundColor: string;
2836
+ } | {
2628
2837
  pointerEvents: string;
2838
+ color: string;
2839
+ outline: string;
2840
+ outlineColor: string;
2841
+ backgroundColor: string;
2629
2842
  };
2630
2843
  _focusVisible: {
2631
2844
  outlineWidth: string;
@@ -2633,18 +2846,14 @@ declare const theme: {
2633
2846
  outlineStyle: string;
2634
2847
  outlineOffset: string;
2635
2848
  };
2636
- _hover: {
2637
- backgroundColor: string;
2638
- boxShadow: string;
2639
- } | {
2640
- boxShadow: string;
2641
- backgroundColor?: undefined;
2642
- };
2643
2849
  backgroundColor: string;
2644
- boxShadow: string;
2850
+ outlineColor: string;
2851
+ outline: string;
2645
2852
  };
2646
2853
  backgroundColor: string;
2647
- boxShadow?: undefined;
2854
+ outline?: undefined;
2855
+ outlineColor?: undefined;
2856
+ color: string;
2648
2857
  appearance: string;
2649
2858
  border: string;
2650
2859
  overflow: string;
@@ -2655,13 +2864,34 @@ declare const theme: {
2655
2864
  borderRadius: string;
2656
2865
  }) | undefined;
2657
2866
  sizes?: {
2658
- [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
2867
+ sm: {
2868
+ "button&, a&, label&, &.is-clickable": {
2869
+ boxShadow: string;
2870
+ _hover: {
2871
+ boxShadow: string;
2872
+ };
2873
+ _active: {
2874
+ boxShadow: string;
2875
+ };
2876
+ };
2877
+ };
2878
+ lg: {
2879
+ "button&, a&, label&, &.is-clickable": {
2880
+ boxShadow: string;
2881
+ _hover: {
2882
+ boxShadow: string;
2883
+ };
2884
+ _active: {
2885
+ boxShadow: string;
2886
+ };
2887
+ };
2888
+ };
2659
2889
  } | undefined;
2660
2890
  variants?: {
2661
2891
  [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
2662
2892
  } | undefined;
2663
2893
  defaultProps?: {
2664
- size?: string | number | undefined;
2894
+ size?: "sm" | "lg" | undefined;
2665
2895
  variant?: string | number | undefined;
2666
2896
  colorScheme?: string | undefined;
2667
2897
  } | undefined;
@@ -2678,13 +2908,15 @@ declare const theme: {
2678
2908
  appearance: string;
2679
2909
  display: string;
2680
2910
  alignItems: string;
2911
+ transitionProperty: string;
2912
+ transitionDuration: string;
2681
2913
  };
2682
2914
  card: {
2683
2915
  backgroundColor: string;
2916
+ color: string;
2684
2917
  borderRadius: string;
2685
2918
  boxShadow: string;
2686
2919
  padding: number;
2687
- color: string;
2688
2920
  };
2689
2921
  }) | undefined;
2690
2922
  sizes?: {
@@ -2719,25 +2951,59 @@ declare const theme: {
2719
2951
  variants?: {
2720
2952
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2721
2953
  trigger: {
2722
- boxShadow: string;
2723
2954
  _hover: {
2724
- boxShadow: string;
2955
+ outlineWidth: string;
2956
+ outlineColor: string;
2957
+ outlineStyle: string;
2958
+ outlineOffset: string;
2959
+ } | {
2960
+ outline: string;
2961
+ outlineColor: string;
2725
2962
  };
2726
2963
  _active: {
2727
- boxShadow: string;
2964
+ outlineWidth: string;
2965
+ outlineColor: string;
2966
+ outlineStyle: string;
2967
+ outlineOffset: string;
2968
+ backgroundColor: string;
2969
+ } | {
2970
+ outline: string;
2971
+ outlineColor: string;
2972
+ backgroundColor: string;
2973
+ };
2974
+ _expanded: {
2975
+ backgroundColor: string;
2976
+ };
2977
+ outlineWidth: string;
2978
+ outlineColor: string;
2979
+ outlineStyle: string;
2980
+ outlineOffset: string;
2981
+ } | {
2982
+ _hover: {
2983
+ outlineWidth: string;
2984
+ outlineColor: string;
2985
+ outlineStyle: string;
2986
+ outlineOffset: string;
2987
+ } | {
2988
+ outline: string;
2989
+ outlineColor: string;
2990
+ };
2991
+ _active: {
2992
+ outlineWidth: string;
2993
+ outlineColor: string;
2994
+ outlineStyle: string;
2995
+ outlineOffset: string;
2996
+ backgroundColor: string;
2997
+ } | {
2998
+ outline: string;
2999
+ outlineColor: string;
2728
3000
  backgroundColor: string;
2729
3001
  };
2730
3002
  _expanded: {
2731
- _hover: {
2732
- boxShadow: string;
2733
- backgroundColor: string;
2734
- };
2735
- _active: {
2736
- boxShadow: string;
2737
- backgroundColor: string;
2738
- };
2739
3003
  backgroundColor: string;
2740
3004
  };
3005
+ outline: string;
3006
+ outlineColor: string;
2741
3007
  };
2742
3008
  };
2743
3009
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
@@ -2755,27 +3021,24 @@ declare const theme: {
2755
3021
  };
2756
3022
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2757
3023
  trigger: {
2758
- boxShadow: string;
2759
3024
  transition: string;
2760
3025
  _hover: {
2761
- boxShadow: string;
3026
+ outline: string;
3027
+ outlineColor: string;
2762
3028
  backgroundColor: string;
2763
3029
  };
2764
3030
  _active: {
2765
- boxShadow: string;
3031
+ outline: string;
3032
+ outlineColor: string;
2766
3033
  backgroundColor: string;
2767
3034
  };
2768
3035
  _expanded: {
2769
- _hover: {
2770
- boxShadow: string;
2771
- };
2772
- _active: {
2773
- boxShadow: string;
2774
- backgroundColor: string;
2775
- };
2776
3036
  backgroundColor: string;
2777
3037
  };
3038
+ outline: string;
3039
+ outlineColor: string;
2778
3040
  backgroundColor: string;
3041
+ boxShadow: string;
2779
3042
  };
2780
3043
  };
2781
3044
  } | undefined;
@@ -2796,15 +3059,15 @@ declare const theme: {
2796
3059
  };
2797
3060
  "input:enabled[aria-invalid] + .chakra-checkbox__control": {
2798
3061
  backgroundColor: string;
2799
- borderColor: string;
3062
+ borderColor: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
2800
3063
  };
2801
3064
  "input:enabled:checked:not([aria-invalid]) + .chakra-checkbox__control": {
2802
- backgroundColor: string;
2803
3065
  borderColor: string;
3066
+ backgroundColor: string;
2804
3067
  };
2805
3068
  "input:enabled:checked[aria-invalid] + .chakra-checkbox__control": {
2806
- backgroundColor: string;
2807
- borderColor: string;
3069
+ borderColor: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
3070
+ backgroundColor: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
2808
3071
  };
2809
3072
  };
2810
3073
  };
@@ -2816,6 +3079,7 @@ declare const theme: {
2816
3079
  };
2817
3080
  control: {
2818
3081
  _checked: {
3082
+ borderColor: string;
2819
3083
  _disabled: {
2820
3084
  borderColor: string;
2821
3085
  color: string;
@@ -2825,15 +3089,8 @@ declare const theme: {
2825
3089
  backgroundColor: string;
2826
3090
  borderColor: string;
2827
3091
  };
2828
- _focusVisible: {
2829
- outlineWidth: string;
2830
- outlineColor: string;
2831
- outlineStyle: string;
2832
- outlineOffset: string;
2833
- };
2834
- color: string;
2835
- borderColor: string;
2836
3092
  backgroundColor: string;
3093
+ color: string;
2837
3094
  };
2838
3095
  _disabled: {
2839
3096
  borderColor: string;
@@ -2843,6 +3100,12 @@ declare const theme: {
2843
3100
  borderColor: string;
2844
3101
  backgroundColor: string;
2845
3102
  };
3103
+ _focusVisible: {
3104
+ outlineWidth: string;
3105
+ outlineColor: string;
3106
+ outlineStyle: string;
3107
+ outlineOffset: string;
3108
+ };
2846
3109
  backgroundColor: string;
2847
3110
  width: number;
2848
3111
  height: number;
@@ -2851,7 +3114,6 @@ declare const theme: {
2851
3114
  border: string;
2852
3115
  borderColor: string;
2853
3116
  borderRadius: string;
2854
- color: string;
2855
3117
  };
2856
3118
  label: {
2857
3119
  userSelect: string;
@@ -2883,22 +3145,22 @@ declare const theme: {
2883
3145
  display: string;
2884
3146
  alignItems: string;
2885
3147
  fontSize: string;
2886
- px: number;
2887
3148
  cursor: string;
3149
+ transitionProperty: string;
3150
+ transitionDuration: string;
2888
3151
  _checked: {
2889
3152
  _hover: {
2890
- boxShadow: string;
3153
+ outlineColor: string;
2891
3154
  color: string;
2892
3155
  backgroundColor: string;
2893
3156
  };
2894
3157
  _active: {
2895
- boxShadow: string;
2896
3158
  backgroundColor: string;
2897
3159
  color: string;
2898
3160
  };
2899
- boxShadow: string;
2900
3161
  backgroundColor: string;
2901
3162
  color: string;
3163
+ outlineColor: string;
2902
3164
  };
2903
3165
  _disabled: {
2904
3166
  _hover: {
@@ -2919,7 +3181,7 @@ declare const theme: {
2919
3181
  };
2920
3182
  backgroundColor: string;
2921
3183
  color: string;
2922
- cursor: string;
3184
+ pointerEvents: string;
2923
3185
  boxShadow: string;
2924
3186
  };
2925
3187
  "input:focus-visible + &": {
@@ -2930,41 +3192,41 @@ declare const theme: {
2930
3192
  };
2931
3193
  };
2932
3194
  icon: {
2933
- mr: number;
3195
+ marginRight: number;
2934
3196
  };
2935
3197
  }) | undefined;
2936
3198
  sizes?: {
2937
- sm: {
3199
+ xs: {
2938
3200
  container: {
2939
3201
  borderRadius: string;
2940
3202
  _checked: {
2941
3203
  borderRadius: string;
2942
3204
  };
2943
3205
  height: string;
2944
- px: number;
3206
+ paddingX: number;
2945
3207
  };
2946
3208
  };
2947
- md: {
3209
+ sm: {
2948
3210
  container: {
2949
3211
  borderRadius: string;
2950
3212
  _checked: {
2951
3213
  borderRadius: string;
2952
3214
  };
2953
3215
  height: string;
2954
- px: number;
3216
+ paddingX: number;
2955
3217
  };
2956
3218
  };
2957
- lg: {
3219
+ md: {
2958
3220
  container: {
2959
3221
  borderRadius: string;
2960
3222
  _checked: {
2961
3223
  borderRadius: string;
2962
3224
  };
2963
3225
  height: string;
2964
- px: number;
3226
+ paddingX: number;
2965
3227
  };
2966
3228
  };
2967
- xl: {
3229
+ lg: {
2968
3230
  container: {
2969
3231
  borderRadius: string;
2970
3232
  _checked: {
@@ -2978,66 +3240,110 @@ declare const theme: {
2978
3240
  variants?: {
2979
3241
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2980
3242
  container: {
2981
- "@media (hover:hover)": {
2982
- _hover: {
2983
- backgroundColor: string;
2984
- boxShadow: string;
2985
- color: string;
2986
- };
2987
- };
2988
- _active: {
2989
- boxShadow: string;
3243
+ _hover: {
3244
+ backgroundColor: string;
3245
+ outlineWidth: string;
3246
+ outlineColor: string;
3247
+ outlineStyle: string;
3248
+ outlineOffset: string;
3249
+ color: string;
3250
+ } | {
3251
+ backgroundColor: string;
3252
+ outline: string;
3253
+ outlineColor: string;
3254
+ color: string;
3255
+ };
3256
+ _active: {
3257
+ outlineWidth: string;
3258
+ outlineColor: string;
3259
+ outlineStyle: string;
3260
+ outlineOffset: string;
3261
+ backgroundColor: string;
3262
+ } | {
3263
+ outline: string;
3264
+ outlineColor: string;
2990
3265
  backgroundColor: string;
2991
3266
  };
2992
3267
  color: string;
2993
- boxShadow: string;
3268
+ outlineWidth: string;
3269
+ outlineColor: string;
3270
+ outlineStyle: string;
3271
+ outlineOffset: string;
3272
+ backgroundColor: string;
3273
+ } | {
3274
+ _hover: {
3275
+ backgroundColor: string;
3276
+ outlineWidth: string;
3277
+ outlineColor: string;
3278
+ outlineStyle: string;
3279
+ outlineOffset: string;
3280
+ color: string;
3281
+ } | {
3282
+ backgroundColor: string;
3283
+ outline: string;
3284
+ outlineColor: string;
3285
+ color: string;
3286
+ };
3287
+ _active: {
3288
+ outlineWidth: string;
3289
+ outlineColor: string;
3290
+ outlineStyle: string;
3291
+ outlineOffset: string;
3292
+ backgroundColor: string;
3293
+ } | {
3294
+ outline: string;
3295
+ outlineColor: string;
3296
+ backgroundColor: string;
3297
+ };
3298
+ color: string;
3299
+ outline: string;
3300
+ outlineColor: string;
2994
3301
  backgroundColor: string;
2995
3302
  };
2996
3303
  };
2997
3304
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2998
3305
  container: {
2999
- "@media (hover:hover)": {
3000
- _hover: {
3001
- color: string;
3002
- boxShadow: string;
3003
- backgroundColor: string;
3004
- };
3306
+ _hover: {
3307
+ color: string;
3308
+ backgroundColor: string;
3005
3309
  };
3006
3310
  _active: {
3007
3311
  backgroundColor: string;
3008
- boxShadow: string;
3009
3312
  color: string;
3010
3313
  };
3011
- boxShadow: string;
3012
3314
  color: string;
3013
3315
  backgroundColor: string;
3014
3316
  };
3015
3317
  _active: {
3016
3318
  backgroundColor: string;
3017
- boxShadow: string;
3018
3319
  color: string;
3019
3320
  };
3020
3321
  };
3021
3322
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3022
3323
  container: {
3324
+ boxShadow: string;
3023
3325
  _hover: {
3024
- color: string;
3025
3326
  boxShadow: string;
3327
+ color: string;
3328
+ outline: string;
3329
+ outlineColor: string;
3026
3330
  backgroundColor: string;
3027
3331
  };
3028
3332
  _active: {
3029
3333
  color: string;
3030
- boxShadow: string;
3334
+ outline: string;
3335
+ outlineColor: string;
3031
3336
  backgroundColor: string;
3032
3337
  };
3033
- boxShadow: string;
3338
+ outline: string;
3339
+ outlineColor: string;
3034
3340
  color: string;
3035
3341
  backgroundColor: string;
3036
3342
  };
3037
3343
  };
3038
3344
  } | undefined;
3039
3345
  defaultProps?: {
3040
- size?: "sm" | "md" | "lg" | "xl" | undefined;
3346
+ size?: "sm" | "md" | "lg" | "xs" | undefined;
3041
3347
  variant?: "base" | "floating" | "accent" | undefined;
3042
3348
  colorScheme?: string | undefined;
3043
3349
  } | undefined;
@@ -3119,8 +3425,6 @@ declare const theme: {
3119
3425
  Datepicker: {
3120
3426
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
3121
3427
  wrapper: {
3122
- backgroundColor: string;
3123
- boxShadow: string;
3124
3428
  transitionProperty: string;
3125
3429
  transitionDuration: string;
3126
3430
  borderRadius: string;
@@ -3132,6 +3436,7 @@ declare const theme: {
3132
3436
  zIndex: number;
3133
3437
  };
3134
3438
  _disabled: {
3439
+ backgroundColor: string;
3135
3440
  pointerEvents: string;
3136
3441
  };
3137
3442
  _focusWithin: {
@@ -3151,8 +3456,20 @@ declare const theme: {
3151
3456
  color: string;
3152
3457
  };
3153
3458
  calendarTriggerButton: {
3459
+ _hover: {
3460
+ backgroundColor: string;
3461
+ };
3462
+ _active: {
3463
+ backgroundColor: string;
3464
+ };
3154
3465
  _invalid: {
3155
- boxShadow: string;
3466
+ outlineWidth: string;
3467
+ outlineColor: string;
3468
+ outlineStyle: string;
3469
+ outlineOffset: string;
3470
+ } | {
3471
+ outline: string;
3472
+ outlineColor: string;
3156
3473
  };
3157
3474
  _focusVisible: {
3158
3475
  outlineWidth: string;
@@ -3160,7 +3477,6 @@ declare const theme: {
3160
3477
  outlineStyle: string;
3161
3478
  outlineOffset: string;
3162
3479
  };
3163
- backgroundColor: string;
3164
3480
  width: number;
3165
3481
  display: string;
3166
3482
  alignItems: string;
@@ -3173,21 +3489,24 @@ declare const theme: {
3173
3489
  paddingBottom: number;
3174
3490
  borderRadius: string;
3175
3491
  right: string;
3176
- _hover: {
3177
- boxShadow: string;
3178
- backgroundColor: string;
3179
- };
3180
- _active: {
3181
- backgroundColor: string;
3182
- };
3183
3492
  };
3184
3493
  arrow: {
3185
3494
  [x: string]: string;
3186
3495
  };
3187
3496
  calendarPopover: {
3188
- backgroundColor: string;
3497
+ boxShadow: string;
3498
+ outlineWidth: string;
3499
+ outlineColor: string;
3500
+ outlineStyle: string;
3501
+ outlineOffset: string;
3189
3502
  color: string;
3503
+ backgroundColor: string;
3504
+ } | {
3190
3505
  boxShadow: string;
3506
+ outline: string;
3507
+ outlineColor: string;
3508
+ color: string;
3509
+ backgroundColor: string;
3191
3510
  };
3192
3511
  weekdays: {
3193
3512
  color: string;
@@ -3196,50 +3515,55 @@ declare const theme: {
3196
3515
  color: string;
3197
3516
  };
3198
3517
  dateCell: {
3199
- backgroundColor: string;
3200
- color: string;
3201
- borderRadius: string;
3202
- position: string;
3203
- transition: string;
3204
- userSelect: string;
3205
- width: number[];
3206
- height: number[];
3207
- transitionProperty: string;
3208
- transitionSpeed: string;
3209
- _hover: {
3210
- backgroundColor: string;
3211
- };
3212
- _focusVisible: {
3213
- outlineColor: string;
3214
- outlineWidth: number;
3215
- outlineStyle: string;
3216
- };
3217
3518
  _active: {
3218
3519
  backgroundColor: string;
3219
- boxShadow: string;
3220
- color: string;
3221
3520
  };
3222
3521
  _disabled: {
3223
- color: string;
3224
- boxShadow: string;
3225
3522
  pointerEvents: string;
3523
+ color: string;
3524
+ backgroundColor: string;
3226
3525
  };
3227
3526
  _selected: {
3228
- backgroundColor: string;
3229
- color: string;
3230
3527
  _active: {
3231
- backgroundColor: string;
3232
- boxShadow: string;
3233
3528
  color: string;
3529
+ backgroundColor: string;
3234
3530
  };
3531
+ color: string;
3532
+ backgroundColor: string;
3235
3533
  };
3236
3534
  "&[data-today]": {
3237
- boxShadow: string;
3535
+ outlineWidth: string;
3536
+ outlineColor: string;
3537
+ outlineStyle: string;
3538
+ outlineOffset: string;
3539
+ } | {
3540
+ outline: string;
3541
+ outlineColor: string;
3238
3542
  };
3239
3543
  "&[data-unavailable]": {
3240
- pointerEvents: string;
3241
3544
  color: string;
3545
+ backgroundColor: string;
3546
+ pointerEvents: string;
3547
+ };
3548
+ _focusVisible: {
3549
+ outlineWidth: string;
3550
+ outlineColor: string;
3551
+ outlineStyle: string;
3552
+ outlineOffset: string;
3553
+ };
3554
+ borderRadius: string;
3555
+ position: string;
3556
+ transition: string;
3557
+ userSelect: string;
3558
+ width: number[];
3559
+ height: number[];
3560
+ transitionProperty: string;
3561
+ transitionSpeed: string;
3562
+ _hover: {
3563
+ backgroundColor: string;
3242
3564
  };
3565
+ color: string;
3566
+ backgroundColor: string;
3243
3567
  };
3244
3568
  }) | undefined;
3245
3569
  sizes?: {
@@ -3250,92 +3574,119 @@ declare const theme: {
3250
3574
  variants?: {
3251
3575
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3252
3576
  wrapper: {
3253
- boxShadow: string;
3254
3577
  _hover: {
3255
- boxShadow: string;
3578
+ outlineWidth: string;
3579
+ outlineColor: string;
3580
+ outlineStyle: string;
3581
+ outlineOffset: string;
3582
+ } | {
3583
+ outline: string;
3584
+ outlineColor: string;
3256
3585
  };
3257
3586
  _invalid: {
3258
- boxShadow: string;
3587
+ outlineWidth: string;
3588
+ outlineColor: string;
3589
+ outlineStyle: string;
3590
+ outlineOffset: string;
3591
+ } | {
3592
+ outline: string;
3593
+ outlineColor: string;
3259
3594
  };
3260
3595
  _disabled: {
3261
- boxShadow: string;
3262
- _focus: {
3263
- boxShadow: string;
3264
- };
3596
+ outlineWidth: string;
3597
+ outlineColor: string;
3598
+ outlineStyle: string;
3599
+ outlineOffset: string;
3600
+ } | {
3601
+ outline: string;
3602
+ outlineColor: string;
3265
3603
  };
3266
- };
3267
- calendar: {
3268
3604
  backgroundColor: string;
3269
- color: string;
3270
- boxShadow: string;
3271
- };
3272
- dateCell: {
3273
- color: string;
3605
+ outlineWidth: string;
3606
+ outlineColor: string;
3607
+ outlineStyle: string;
3608
+ outlineOffset: string;
3609
+ } | {
3274
3610
  _hover: {
3275
- backgroundColor: string;
3611
+ outlineWidth: string;
3612
+ outlineColor: string;
3613
+ outlineStyle: string;
3614
+ outlineOffset: string;
3615
+ } | {
3616
+ outline: string;
3617
+ outlineColor: string;
3276
3618
  };
3277
- "&[data-today]": {
3278
- boxShadow: string;
3619
+ _invalid: {
3620
+ outlineWidth: string;
3621
+ outlineColor: string;
3622
+ outlineStyle: string;
3623
+ outlineOffset: string;
3624
+ } | {
3625
+ outline: string;
3626
+ outlineColor: string;
3627
+ };
3628
+ _disabled: {
3629
+ outlineWidth: string;
3630
+ outlineColor: string;
3631
+ outlineStyle: string;
3632
+ outlineOffset: string;
3633
+ } | {
3634
+ outline: string;
3635
+ outlineColor: string;
3279
3636
  };
3637
+ backgroundColor: string;
3638
+ outline: string;
3639
+ outlineColor: string;
3280
3640
  };
3281
3641
  };
3282
3642
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3283
3643
  wrapper: {
3284
3644
  boxShadow: string;
3285
3645
  _hover: {
3286
- boxShadow: string;
3646
+ outline: string;
3647
+ outlineColor: string;
3287
3648
  };
3288
3649
  _invalid: {
3289
- boxShadow: string;
3650
+ outlineWidth: string;
3651
+ outlineColor: string;
3652
+ outlineStyle: string;
3653
+ outlineOffset: string;
3654
+ } | {
3655
+ outline: string;
3656
+ outlineColor: string;
3290
3657
  };
3291
3658
  _disabled: {
3292
- boxShadow: string;
3293
- _focus: {
3294
- boxShadow: string;
3295
- };
3296
- };
3297
- };
3298
- calendar: {
3299
- backgroundColor: string;
3300
- color: string;
3301
- boxShadow: string;
3302
- };
3303
- dateCell: {
3304
- color: string;
3305
- _hover: {
3306
- backgroundColor: string;
3659
+ outlineWidth: string;
3660
+ outlineColor: string;
3661
+ outlineStyle: string;
3662
+ outlineOffset: string;
3663
+ } | {
3664
+ outline: string;
3665
+ outlineColor: string;
3307
3666
  };
3667
+ outline: string;
3668
+ outlineColor: string;
3308
3669
  };
3309
3670
  };
3310
3671
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3311
3672
  wrapper: {
3312
- boxShadow: string;
3313
3673
  _hover: {
3314
- boxShadow: string;
3674
+ outlineWidth: string;
3675
+ outlineColor: string;
3676
+ outlineStyle: string;
3677
+ outlineOffset: string;
3678
+ } | {
3679
+ outline: string;
3680
+ outlineColor: string;
3315
3681
  };
3316
3682
  _invalid: {
3317
- boxShadow: string;
3318
- };
3319
- _disabled: {
3320
- boxShadow: string;
3321
- _focus: {
3322
- boxShadow: string;
3323
- };
3324
- };
3325
- };
3326
- calendar: {
3327
- backgroundColor: string;
3328
- color: string;
3329
- boxShadow: string;
3330
- };
3331
- dateCell: {
3332
- color: string;
3333
- _hover: {
3334
- backgroundColor: string;
3335
- };
3336
- _selected: {
3337
- backgroundColor: string;
3338
- color: string;
3683
+ outlineWidth: string;
3684
+ outlineColor: string;
3685
+ outlineStyle: string;
3686
+ outlineOffset: string;
3687
+ } | {
3688
+ outline: string;
3689
+ outlineColor: string;
3339
3690
  };
3340
3691
  };
3341
3692
  };
@@ -3394,11 +3745,11 @@ declare const theme: {
3394
3745
  overflow: string;
3395
3746
  };
3396
3747
  dialog: {
3397
- backgroundColor: string;
3398
- color: string;
3399
3748
  zIndex: string;
3400
3749
  maxHeight: string | undefined;
3401
3750
  boxShadow: string;
3751
+ color: string;
3752
+ backgroundColor: string;
3402
3753
  };
3403
3754
  header: {
3404
3755
  paddingX: number;
@@ -3452,24 +3803,17 @@ declare const theme: {
3452
3803
  FloatingActionButton: {
3453
3804
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
3454
3805
  container: {
3455
- _hover: {
3806
+ _disabled: {
3807
+ pointerEvents: string;
3808
+ color: string;
3456
3809
  backgroundColor: string;
3457
- _disabled: {
3458
- backgroundColor: string;
3459
- color: string;
3460
- };
3461
3810
  };
3462
- zIndex: string;
3463
3811
  _focusVisible: {
3464
3812
  outlineWidth: string;
3465
3813
  outlineColor: string;
3466
3814
  outlineStyle: string;
3467
3815
  outlineOffset: string;
3468
3816
  };
3469
- _disabled: {
3470
- backgroundColor: string;
3471
- color: string;
3472
- };
3473
3817
  display: string;
3474
3818
  alignItems: string;
3475
3819
  paddingY: number;
@@ -3483,25 +3827,19 @@ declare const theme: {
3483
3827
  transitionDuration: string;
3484
3828
  transitionProperty: string;
3485
3829
  position: string;
3830
+ zIndex: string;
3486
3831
  } | {
3487
- _hover: {
3832
+ _disabled: {
3833
+ pointerEvents: string;
3834
+ color: string;
3488
3835
  backgroundColor: string;
3489
- _disabled: {
3490
- backgroundColor: string;
3491
- color: string;
3492
- };
3493
3836
  };
3494
- zIndex: string;
3495
3837
  _focusVisible: {
3496
3838
  outlineWidth: string;
3497
3839
  outlineColor: string;
3498
3840
  outlineStyle: string;
3499
3841
  outlineOffset: string;
3500
3842
  };
3501
- _disabled: {
3502
- backgroundColor: string;
3503
- color: string;
3504
- };
3505
3843
  top: string;
3506
3844
  left: string;
3507
3845
  right?: undefined;
@@ -3519,25 +3857,19 @@ declare const theme: {
3519
3857
  transitionDuration: string;
3520
3858
  transitionProperty: string;
3521
3859
  position: string;
3860
+ zIndex: string;
3522
3861
  } | {
3523
- _hover: {
3862
+ _disabled: {
3863
+ pointerEvents: string;
3864
+ color: string;
3524
3865
  backgroundColor: string;
3525
- _disabled: {
3526
- backgroundColor: string;
3527
- color: string;
3528
- };
3529
3866
  };
3530
- zIndex: string;
3531
3867
  _focusVisible: {
3532
3868
  outlineWidth: string;
3533
3869
  outlineColor: string;
3534
3870
  outlineStyle: string;
3535
3871
  outlineOffset: string;
3536
3872
  };
3537
- _disabled: {
3538
- backgroundColor: string;
3539
- color: string;
3540
- };
3541
3873
  top: string;
3542
3874
  right: string;
3543
3875
  left?: undefined;
@@ -3555,25 +3887,19 @@ declare const theme: {
3555
3887
  transitionDuration: string;
3556
3888
  transitionProperty: string;
3557
3889
  position: string;
3890
+ zIndex: string;
3558
3891
  } | {
3559
- _hover: {
3892
+ _disabled: {
3893
+ pointerEvents: string;
3894
+ color: string;
3560
3895
  backgroundColor: string;
3561
- _disabled: {
3562
- backgroundColor: string;
3563
- color: string;
3564
- };
3565
3896
  };
3566
- zIndex: string;
3567
3897
  _focusVisible: {
3568
3898
  outlineWidth: string;
3569
3899
  outlineColor: string;
3570
3900
  outlineStyle: string;
3571
3901
  outlineOffset: string;
3572
3902
  };
3573
- _disabled: {
3574
- backgroundColor: string;
3575
- color: string;
3576
- };
3577
3903
  bottom: string;
3578
3904
  left: string;
3579
3905
  top?: undefined;
@@ -3591,25 +3917,19 @@ declare const theme: {
3591
3917
  transitionDuration: string;
3592
3918
  transitionProperty: string;
3593
3919
  position: string;
3920
+ zIndex: string;
3594
3921
  } | {
3595
- _hover: {
3922
+ _disabled: {
3923
+ pointerEvents: string;
3924
+ color: string;
3596
3925
  backgroundColor: string;
3597
- _disabled: {
3598
- backgroundColor: string;
3599
- color: string;
3600
- };
3601
3926
  };
3602
- zIndex: string;
3603
3927
  _focusVisible: {
3604
3928
  outlineWidth: string;
3605
3929
  outlineColor: string;
3606
3930
  outlineStyle: string;
3607
3931
  outlineOffset: string;
3608
3932
  };
3609
- _disabled: {
3610
- backgroundColor: string;
3611
- color: string;
3612
- };
3613
3933
  bottom: string;
3614
3934
  right: string;
3615
3935
  top?: undefined;
@@ -3627,6 +3947,7 @@ declare const theme: {
3627
3947
  transitionDuration: string;
3628
3948
  transitionProperty: string;
3629
3949
  position: string;
3950
+ zIndex: string;
3630
3951
  };
3631
3952
  icon: {
3632
3953
  marginRight: number;
@@ -3645,82 +3966,94 @@ declare const theme: {
3645
3966
  }>;
3646
3967
  } | undefined;
3647
3968
  variants?: {
3648
- dark: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3969
+ brand: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3649
3970
  container: {
3650
- backgroundColor: string;
3651
- color: string;
3652
- _active: {
3653
- backgroundColor: string;
3654
- };
3655
3971
  _hover: {
3656
3972
  backgroundColor: string;
3657
3973
  };
3658
- };
3659
- };
3660
- light: {
3661
- container: {
3662
- backgroundColor: string;
3663
- color: string;
3664
3974
  _active: {
3665
3975
  backgroundColor: string;
3666
3976
  };
3977
+ color: string;
3978
+ backgroundColor: string;
3667
3979
  };
3668
3980
  };
3669
- green: {
3981
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3670
3982
  container: {
3671
- backgroundColor: string;
3672
- color: string;
3673
- _active: {
3674
- color: string;
3983
+ _hover: {
3984
+ outlineWidth: string;
3985
+ outlineColor: string;
3986
+ outlineStyle: string;
3987
+ outlineOffset: string;
3988
+ backgroundColor: string;
3989
+ } | {
3990
+ outline: string;
3991
+ outlineColor: string;
3675
3992
  backgroundColor: string;
3676
3993
  };
3677
- };
3678
- };
3679
- brand: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3680
- container: {
3681
- backgroundColor: string;
3682
- color: string;
3683
3994
  _active: {
3684
3995
  backgroundColor: string;
3996
+ outlineWidth: string;
3997
+ outlineColor: string;
3998
+ outlineStyle: string;
3999
+ outlineOffset: string;
4000
+ } | {
4001
+ backgroundColor: string;
4002
+ outline: string;
4003
+ outlineColor: string;
3685
4004
  };
4005
+ color: string;
4006
+ outlineWidth: string;
4007
+ outlineColor: string;
4008
+ outlineStyle: string;
4009
+ outlineOffset: string;
4010
+ backgroundColor: string;
4011
+ } | {
3686
4012
  _hover: {
4013
+ outlineWidth: string;
4014
+ outlineColor: string;
4015
+ outlineStyle: string;
4016
+ outlineOffset: string;
4017
+ backgroundColor: string;
4018
+ } | {
4019
+ outline: string;
4020
+ outlineColor: string;
3687
4021
  backgroundColor: string;
3688
4022
  };
3689
- };
3690
- };
3691
- base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3692
- container: {
3693
- backgroundColor: string;
3694
- color: string;
3695
4023
  _active: {
3696
4024
  backgroundColor: string;
3697
- color: string;
3698
- };
3699
- _hover: {
4025
+ outlineWidth: string;
4026
+ outlineColor: string;
4027
+ outlineStyle: string;
4028
+ outlineOffset: string;
4029
+ } | {
3700
4030
  backgroundColor: string;
3701
- boxShadow: string;
3702
- color: string;
4031
+ outline: string;
4032
+ outlineColor: string;
3703
4033
  };
4034
+ color: string;
4035
+ outline: string;
4036
+ outlineColor: string;
4037
+ backgroundColor: string;
3704
4038
  };
3705
4039
  };
3706
4040
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3707
4041
  container: {
3708
- backgroundColor: string;
3709
- color: string;
3710
- _active: {
3711
- backgroundColor: string;
4042
+ _hover: {
3712
4043
  color: string;
4044
+ backgroundColor: string;
3713
4045
  };
3714
- _hover: {
4046
+ _active: {
3715
4047
  backgroundColor: string;
3716
- color: string;
3717
4048
  };
4049
+ color: string;
4050
+ backgroundColor: string;
3718
4051
  };
3719
4052
  };
3720
4053
  } | undefined;
3721
4054
  defaultProps?: {
3722
4055
  size?: string | number | undefined;
3723
- variant?: "base" | "green" | "light" | "dark" | "accent" | "brand" | undefined;
4056
+ variant?: "base" | "accent" | "brand" | undefined;
3724
4057
  colorScheme?: string | undefined;
3725
4058
  } | undefined;
3726
4059
  parts: ("text" | "container" | "icon")[];
@@ -3802,23 +4135,21 @@ declare const theme: {
3802
4135
  };
3803
4136
  button: {
3804
4137
  _disabled: {
3805
- _hover: {
3806
- boxShadow: string;
3807
- };
3808
- _focus: {
3809
- boxShadow: string;
3810
- };
3811
4138
  backgroundColor: string;
3812
4139
  color: string;
4140
+ pointerEvents: string;
3813
4141
  };
3814
4142
  _active: {
3815
4143
  backgroundColor: string;
3816
4144
  };
3817
4145
  _invalid: {
3818
- _hover: {
3819
- boxShadow: string;
3820
- };
3821
- boxShadow: string;
4146
+ outlineWidth: string;
4147
+ outlineColor: string;
4148
+ outlineStyle: string;
4149
+ outlineOffset: string;
4150
+ } | {
4151
+ outline: string;
4152
+ outlineColor: string;
3822
4153
  };
3823
4154
  _focusVisible: {
3824
4155
  outlineWidth: string;
@@ -3827,9 +4158,62 @@ declare const theme: {
3827
4158
  outlineOffset: string;
3828
4159
  };
3829
4160
  _hover: {
3830
- boxShadow: string;
4161
+ outlineWidth: string;
4162
+ outlineColor: string;
4163
+ outlineStyle: string;
4164
+ outlineOffset: string;
4165
+ } | {
4166
+ outline: string;
4167
+ outlineColor: string;
3831
4168
  };
3832
- boxShadow: string;
4169
+ outlineWidth: string;
4170
+ outlineColor: string;
4171
+ outlineStyle: string;
4172
+ outlineOffset: string;
4173
+ appearance: string;
4174
+ borderTopRadius: string;
4175
+ borderBottomRadius: string | number;
4176
+ paddingY: number;
4177
+ paddingX: number;
4178
+ display: string;
4179
+ justifyContent: string;
4180
+ alignItems: string;
4181
+ fontSize: string;
4182
+ } | {
4183
+ _disabled: {
4184
+ backgroundColor: string;
4185
+ color: string;
4186
+ pointerEvents: string;
4187
+ };
4188
+ _active: {
4189
+ backgroundColor: string;
4190
+ };
4191
+ _invalid: {
4192
+ outlineWidth: string;
4193
+ outlineColor: string;
4194
+ outlineStyle: string;
4195
+ outlineOffset: string;
4196
+ } | {
4197
+ outline: string;
4198
+ outlineColor: string;
4199
+ };
4200
+ _focusVisible: {
4201
+ outlineWidth: string;
4202
+ outlineColor: string;
4203
+ outlineStyle: string;
4204
+ outlineOffset: string;
4205
+ };
4206
+ _hover: {
4207
+ outlineWidth: string;
4208
+ outlineColor: string;
4209
+ outlineStyle: string;
4210
+ outlineOffset: string;
4211
+ } | {
4212
+ outline: string;
4213
+ outlineColor: string;
4214
+ };
4215
+ outline: string;
4216
+ outlineColor: string;
3833
4217
  appearance: string;
3834
4218
  borderTopRadius: string;
3835
4219
  borderBottomRadius: string | number;
@@ -3853,13 +4237,16 @@ declare const theme: {
3853
4237
  button: {
3854
4238
  _hover: {
3855
4239
  backgroundColor: string;
3856
- boxShadow: string;
4240
+ outline: string;
4241
+ outlineColor: string;
3857
4242
  };
3858
4243
  _active: {
3859
4244
  backgroundColor: string;
3860
- boxShadow: string;
4245
+ outline: string;
4246
+ outlineColor: string;
3861
4247
  };
3862
- boxShadow: string;
4248
+ outline: string;
4249
+ outlineColor: string;
3863
4250
  backgroundColor: string;
3864
4251
  };
3865
4252
  };
@@ -3900,6 +4287,7 @@ declare const theme: {
3900
4287
  outlineStyle: string;
3901
4288
  outlineOffset: string;
3902
4289
  };
4290
+ boxShadow: string;
3903
4291
  _hover: {
3904
4292
  boxShadow: string;
3905
4293
  };
@@ -3928,6 +4316,7 @@ declare const theme: {
3928
4316
  outlineStyle: string;
3929
4317
  outlineOffset: string;
3930
4318
  };
4319
+ boxShadow: string;
3931
4320
  _hover: {
3932
4321
  boxShadow: string;
3933
4322
  };
@@ -3953,7 +4342,7 @@ declare const theme: {
3953
4342
  transform: string;
3954
4343
  zIndex: string;
3955
4344
  stroke: string;
3956
- color: "ocean" | "golden" | "brightRed";
4345
+ color: "brightRed" | "golden" | "ocean";
3957
4346
  };
3958
4347
  }) | undefined;
3959
4348
  sizes?: {
@@ -4012,11 +4401,93 @@ declare const theme: {
4012
4401
  Input: {
4013
4402
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4014
4403
  field: {
4015
- appearance: string;
4016
- width: string;
4017
- outline: string;
4018
- border: number;
4019
- backgroundColor: string;
4404
+ _hover: {
4405
+ outlineWidth: string;
4406
+ outlineColor: string;
4407
+ outlineStyle: string;
4408
+ outlineOffset: string;
4409
+ } | {
4410
+ outline: string;
4411
+ outlineColor: string;
4412
+ };
4413
+ _active: {
4414
+ outlineWidth: string;
4415
+ outlineColor: string;
4416
+ outlineStyle: string;
4417
+ outlineOffset: string;
4418
+ backgroundColor: string;
4419
+ } | {
4420
+ outline: string;
4421
+ outlineColor: string;
4422
+ backgroundColor: string;
4423
+ };
4424
+ _focusVisible: {
4425
+ outlineOffset: number;
4426
+ outlineWidth: string;
4427
+ outlineColor: string;
4428
+ outlineStyle: string;
4429
+ };
4430
+ _disabled: {
4431
+ pointerEvents: string;
4432
+ outlineWidth: string;
4433
+ outlineColor: string;
4434
+ outlineStyle: string;
4435
+ outlineOffset: string;
4436
+ backgroundColor: string;
4437
+ } | {
4438
+ pointerEvents: string;
4439
+ outline: string;
4440
+ outlineColor: string;
4441
+ backgroundColor: string;
4442
+ };
4443
+ _invalid: {
4444
+ _hover: {
4445
+ outlineWidth: string;
4446
+ outlineColor: string;
4447
+ outlineStyle: string;
4448
+ outlineOffset: string;
4449
+ } | {
4450
+ outline: string;
4451
+ outlineColor: string;
4452
+ };
4453
+ outlineWidth: string;
4454
+ outlineColor: string;
4455
+ outlineStyle: string;
4456
+ outlineOffset: string;
4457
+ } | {
4458
+ _hover: {
4459
+ outlineWidth: string;
4460
+ outlineColor: string;
4461
+ outlineStyle: string;
4462
+ outlineOffset: string;
4463
+ } | {
4464
+ outline: string;
4465
+ outlineColor: string;
4466
+ };
4467
+ outline: string;
4468
+ outlineColor: string;
4469
+ };
4470
+ " + label": {
4471
+ fontSize: ("mobile.sm" | "desktop.sm")[];
4472
+ top: string;
4473
+ left: any;
4474
+ zIndex: number;
4475
+ position: string;
4476
+ marginY: number;
4477
+ transition: string;
4478
+ transformOrigin: string;
4479
+ cursor: string;
4480
+ };
4481
+ "&:not(:placeholder-shown)": {
4482
+ paddingTop: string;
4483
+ "& + label": {
4484
+ transform: string;
4485
+ };
4486
+ };
4487
+ outlineWidth: string;
4488
+ outlineColor: string;
4489
+ outlineStyle: string;
4490
+ outlineOffset: string;
4020
4491
  borderRadius: string;
4021
4492
  transitionProperty: string;
4022
4493
  transitionDuration: string;
@@ -4024,13 +4495,31 @@ declare const theme: {
4024
4495
  paddingX: number;
4025
4496
  height: string;
4026
4497
  fontSize: string;
4027
- boxShadow: string;
4498
+ backgroundColor: string;
4499
+ appearance: string;
4500
+ width: string;
4501
+ outline: string;
4502
+ border: number;
4503
+ } | {
4504
+ _hover: {
4505
+ outlineWidth: string;
4506
+ outlineColor: string;
4507
+ outlineStyle: string;
4508
+ outlineOffset: string;
4509
+ } | {
4510
+ outline: string;
4511
+ outlineColor: string;
4512
+ };
4028
4513
  _active: {
4514
+ outlineWidth: string;
4515
+ outlineColor: string;
4516
+ outlineStyle: string;
4517
+ outlineOffset: string;
4518
+ backgroundColor: string;
4519
+ } | {
4520
+ outline: string;
4521
+ outlineColor: string;
4029
4522
  backgroundColor: string;
4030
- boxShadow: string;
4031
- };
4032
- _hover: {
4033
- boxShadow: string;
4034
4523
  };
4035
4524
  _focusVisible: {
4036
4525
  outlineOffset: number;
@@ -4039,15 +4528,44 @@ declare const theme: {
4039
4528
  outlineStyle: string;
4040
4529
  };
4041
4530
  _disabled: {
4531
+ pointerEvents: string;
4532
+ outlineWidth: string;
4533
+ outlineColor: string;
4534
+ outlineStyle: string;
4535
+ outlineOffset: string;
4536
+ backgroundColor: string;
4537
+ } | {
4538
+ pointerEvents: string;
4539
+ outline: string;
4540
+ outlineColor: string;
4042
4541
  backgroundColor: string;
4043
- boxShadow: string;
4044
- cursor: string;
4045
4542
  };
4046
4543
  _invalid: {
4047
- boxShadow: string;
4048
4544
  _hover: {
4049
- boxShadow: string;
4545
+ outlineWidth: string;
4546
+ outlineColor: string;
4547
+ outlineStyle: string;
4548
+ outlineOffset: string;
4549
+ } | {
4550
+ outline: string;
4551
+ outlineColor: string;
4552
+ };
4553
+ outlineWidth: string;
4554
+ outlineColor: string;
4555
+ outlineStyle: string;
4556
+ outlineOffset: string;
4557
+ } | {
4558
+ _hover: {
4559
+ outlineWidth: string;
4560
+ outlineColor: string;
4561
+ outlineStyle: string;
4562
+ outlineOffset: string;
4563
+ } | {
4564
+ outline: string;
4565
+ outlineColor: string;
4050
4566
  };
4567
+ outline: string;
4568
+ outlineColor: string;
4051
4569
  };
4052
4570
  " + label": {
4053
4571
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -4066,6 +4584,19 @@ declare const theme: {
4066
4584
  transform: string;
4067
4585
  };
4068
4586
  };
4587
+ outline: string;
4588
+ outlineColor: string;
4589
+ borderRadius: string;
4590
+ transitionProperty: string;
4591
+ transitionDuration: string;
4592
+ position: string;
4593
+ paddingX: number;
4594
+ height: string;
4595
+ fontSize: string;
4596
+ backgroundColor: string;
4597
+ appearance: string;
4598
+ width: string;
4599
+ border: number;
4069
4600
  };
4070
4601
  element: {
4071
4602
  height: string;
@@ -4266,17 +4797,23 @@ declare const theme: {
4266
4797
  };
4267
4798
  secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4268
4799
  _hover: {
4800
+ outlineWidth: number;
4801
+ backgroundColor: string;
4802
+ outlineColor: string;
4803
+ outlineStyle: string;
4804
+ outlineOffset: string;
4805
+ } | {
4806
+ outlineWidth: number;
4269
4807
  backgroundColor: string;
4808
+ outline: string;
4270
4809
  outlineColor: string;
4271
4810
  };
4272
4811
  _active: {
4273
4812
  backgroundColor: string;
4274
- outlineColor: string;
4275
4813
  };
4276
4814
  backgroundColor: string;
4277
4815
  "&:focus, &:focus-visible, &:active, &:hover": {
4278
4816
  outline: string;
4279
- outlineWidth: string;
4280
4817
  };
4281
4818
  color: string;
4282
4819
  backgroundImage: string;
@@ -4322,13 +4859,27 @@ declare const theme: {
4322
4859
  ListBox: {
4323
4860
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4324
4861
  container: {
4862
+ outlineWidth: string;
4863
+ outlineColor: string;
4864
+ outlineStyle: string;
4865
+ outlineOffset: string;
4866
+ boxShadow: string;
4867
+ overflowY: string;
4868
+ maxHeight: string;
4869
+ width: string;
4870
+ listStyle: string;
4871
+ borderBottomRadius: string;
4325
4872
  backgroundColor: string;
4873
+ } | {
4874
+ outline: string;
4875
+ outlineColor: string;
4326
4876
  boxShadow: string;
4327
4877
  overflowY: string;
4328
4878
  maxHeight: string;
4329
4879
  width: string;
4330
4880
  listStyle: string;
4331
4881
  borderBottomRadius: string;
4882
+ backgroundColor: string;
4332
4883
  };
4333
4884
  item: {
4334
4885
  paddingX: number;
@@ -4420,7 +4971,7 @@ declare const theme: {
4420
4971
  };
4421
4972
  } | undefined;
4422
4973
  variants?: {
4423
- play: {
4974
+ play: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4424
4975
  container: {
4425
4976
  padding: number;
4426
4977
  _hover: {
@@ -4430,17 +4981,12 @@ declare const theme: {
4430
4981
  color: string;
4431
4982
  };
4432
4983
  _disabled: {
4984
+ pointerEvents: string;
4433
4985
  color: string;
4434
- _hover: {
4435
- color: string;
4436
- };
4437
- _active: {
4438
- color: string;
4439
- };
4440
4986
  };
4441
4987
  };
4442
4988
  };
4443
- jumpSkip: {
4989
+ jumpSkip: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4444
4990
  container: {
4445
4991
  _hover: {
4446
4992
  backgroundColor: string;
@@ -4449,14 +4995,9 @@ declare const theme: {
4449
4995
  backgroundColor: string;
4450
4996
  };
4451
4997
  _disabled: {
4452
- backgroundColor: string;
4453
4998
  color: string;
4454
- _hover: {
4455
- backgroundColor: string;
4456
- };
4457
- _active: {
4458
- backgroundColor: string;
4459
- };
4999
+ backgroundColor: string;
5000
+ pointerEvents: string;
4460
5001
  };
4461
5002
  };
4462
5003
  icon: {
@@ -4486,13 +5027,13 @@ declare const theme: {
4486
5027
  overflow: string;
4487
5028
  };
4488
5029
  dialog: {
4489
- borderRadius: string;
4490
- background: string;
4491
- color: string;
4492
- my: string;
5030
+ marginY: string;
4493
5031
  zIndex: string;
4494
5032
  maxHeight: string | undefined;
4495
5033
  boxShadow: string;
5034
+ color: string;
5035
+ backgroundColor: string;
5036
+ borderRadius: string;
4496
5037
  };
4497
5038
  header: {
4498
5039
  paddingX: number;
@@ -4543,49 +5084,114 @@ declare const theme: {
4543
5084
  } | undefined;
4544
5085
  parts: ("body" | "dialog" | "footer" | "header" | "overlay" | "closeButton" | "dialogContainer")[];
4545
5086
  };
4546
- Popover: {
5087
+ NumericStepper: {
4547
5088
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4548
- popper: {
4549
- zIndex: string;
5089
+ container: {
5090
+ display: string;
5091
+ flexDirection: string;
5092
+ alignItems: string;
4550
5093
  };
4551
- content: {
4552
- [x: string]: string | number | {
4553
- outline: number;
4554
- boxShadow: string;
5094
+ input: {
5095
+ _focusVisible: {
5096
+ outlineWidth: string;
5097
+ outlineColor: string;
5098
+ outlineStyle: string;
5099
+ outlineOffset: string;
4555
5100
  };
4556
- backgroundColor: string;
4557
- color: string;
4558
- borderRadius: string;
4559
- padding: number;
4560
- zIndex: string;
4561
- maxWidth: string;
4562
- _focus: {
4563
- outline: number;
4564
- boxShadow: string;
5101
+ _disabled: {
5102
+ pointerEvents: string;
5103
+ opacity: number;
4565
5104
  };
4566
- };
4567
- arrow: {
4568
- backgroundColor: string;
4569
- boxShadow: string;
4570
- clipPath: string;
4571
- };
4572
- closeButton: {
4573
5105
  _hover: {
4574
- backgroundColor: string;
4575
- };
4576
- _active: {
4577
- backgroundColor: string;
4578
- };
4579
- borderRadius: string;
4580
- top: number;
4581
- right: number;
4582
- _focusVisible: {
4583
5106
  outlineWidth: string;
4584
5107
  outlineColor: string;
4585
5108
  outlineStyle: string;
4586
5109
  outlineOffset: string;
4587
- };
4588
- position: string;
5110
+ } | {
5111
+ outline: string;
5112
+ outlineColor: string;
5113
+ };
5114
+ _active: {
5115
+ backgroundColor: string;
5116
+ };
5117
+ color: string;
5118
+ backgroundColor: string;
5119
+ fontSize: string;
5120
+ fontWeight: string;
5121
+ marginX: number;
5122
+ paddingX: number;
5123
+ borderRadius: string;
5124
+ textAlign: string;
5125
+ transitionProperty: string;
5126
+ transitionDuration: string;
5127
+ };
5128
+ text: {
5129
+ color: string;
5130
+ fontSize: string;
5131
+ fontWeight: string;
5132
+ marginX: number;
5133
+ paddingX: number;
5134
+ textAlign: string;
5135
+ width: string;
5136
+ };
5137
+ button: {
5138
+ minWidth: string;
5139
+ minHeight: string;
5140
+ };
5141
+ }) | undefined;
5142
+ sizes?: {
5143
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5144
+ keys: ("button" | "input" | "text" | "container")[];
5145
+ }>;
5146
+ } | undefined;
5147
+ variants?: {
5148
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5149
+ keys: ("button" | "input" | "text" | "container")[];
5150
+ }>;
5151
+ } | undefined;
5152
+ defaultProps?: {
5153
+ size?: string | number | undefined;
5154
+ variant?: string | number | undefined;
5155
+ colorScheme?: string | undefined;
5156
+ } | undefined;
5157
+ parts: ("button" | "input" | "text" | "container")[];
5158
+ };
5159
+ Popover: {
5160
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5161
+ popper: {
5162
+ zIndex: string;
5163
+ };
5164
+ content: {
5165
+ [x: string]: string | number;
5166
+ backgroundColor: string;
5167
+ color: string;
5168
+ borderRadius: string;
5169
+ padding: number;
5170
+ zIndex: string;
5171
+ maxWidth: string;
5172
+ };
5173
+ arrow: {
5174
+ backgroundColor: string;
5175
+ boxShadow: string;
5176
+ clipPath: string;
5177
+ };
5178
+ closeButton: {
5179
+ _hover: {
5180
+ backgroundColor: string;
5181
+ };
5182
+ _active: {
5183
+ backgroundColor: string;
5184
+ };
5185
+ borderRadius: string;
5186
+ top: number;
5187
+ right: number;
5188
+ _focusVisible: {
5189
+ outlineWidth: string;
5190
+ outlineColor: string;
5191
+ outlineStyle: string;
5192
+ outlineOffset: string;
5193
+ };
5194
+ position: string;
4589
5195
  color: string;
4590
5196
  };
4591
5197
  }) | undefined;
@@ -4615,6 +5221,48 @@ declare const theme: {
4615
5221
  } | undefined;
4616
5222
  parts: ("body" | "footer" | "header" | "content" | "closeButton" | "arrow" | "popper")[];
4617
5223
  };
5224
+ ProgressBar: {
5225
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5226
+ container: {
5227
+ minWidth: string;
5228
+ };
5229
+ background: {
5230
+ display: string;
5231
+ backgroundColor: string;
5232
+ borderRadius: string;
5233
+ justifyContent: string;
5234
+ marginX: string;
5235
+ };
5236
+ progress: {
5237
+ backgroundColor: string;
5238
+ borderRadius: string;
5239
+ maxWidth: string;
5240
+ transition: string;
5241
+ };
5242
+ description: {
5243
+ textAlign: string;
5244
+ marginTop: number;
5245
+ marginX: string;
5246
+ fontWeight: string;
5247
+ };
5248
+ }) | undefined;
5249
+ sizes?: {
5250
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5251
+ keys: ("progress" | "background" | "container" | "description")[];
5252
+ }>;
5253
+ } | undefined;
5254
+ variants?: {
5255
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5256
+ keys: ("progress" | "background" | "container" | "description")[];
5257
+ }>;
5258
+ } | undefined;
5259
+ defaultProps?: {
5260
+ size?: string | number | undefined;
5261
+ variant?: string | number | undefined;
5262
+ colorScheme?: string | undefined;
5263
+ } | undefined;
5264
+ parts: ("progress" | "background" | "container" | "description")[];
5265
+ };
4618
5266
  ProgressIndicator: {
4619
5267
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4620
5268
  root: {
@@ -4678,13 +5326,21 @@ declare const theme: {
4678
5326
  };
4679
5327
  control: {
4680
5328
  _disabled: {
5329
+ color: string;
5330
+ outlineWidth: string;
5331
+ outlineColor: string;
5332
+ outlineStyle: string;
5333
+ outlineOffset: string;
4681
5334
  backgroundColor: string;
4682
- borderColor: string;
5335
+ } | {
4683
5336
  color: string;
5337
+ outline: string;
5338
+ outlineColor: string;
5339
+ backgroundColor: string;
4684
5340
  };
4685
5341
  _checked: {
4686
- borderColor: string;
4687
5342
  color: string;
5343
+ borderColor: string;
4688
5344
  _before: {
4689
5345
  content: string;
4690
5346
  display: string;
@@ -4695,9 +5351,19 @@ declare const theme: {
4695
5351
  background: string;
4696
5352
  };
4697
5353
  _disabled: {
5354
+ color: string;
5355
+ outlineWidth: string;
5356
+ outlineColor: string;
5357
+ outlineStyle: string;
5358
+ outlineOffset: string;
4698
5359
  backgroundColor: string;
4699
- borderColor: string;
5360
+ pointerEvents: string;
5361
+ } | {
4700
5362
  color: string;
5363
+ outline: string;
5364
+ outlineColor: string;
5365
+ backgroundColor: string;
5366
+ pointerEvents: string;
4701
5367
  };
4702
5368
  };
4703
5369
  _focusVisible: {
@@ -4754,10 +5420,93 @@ declare const theme: {
4754
5420
  "option, optgroup": {
4755
5421
  background: string;
4756
5422
  };
4757
- width: string;
4758
- outline: string;
4759
- border: number;
4760
- backgroundColor: string;
5423
+ _hover: {
5424
+ outlineWidth: string;
5425
+ outlineColor: string;
5426
+ outlineStyle: string;
5427
+ outlineOffset: string;
5428
+ } | {
5429
+ outline: string;
5430
+ outlineColor: string;
5431
+ };
5432
+ _active: {
5433
+ outlineWidth: string;
5434
+ outlineColor: string;
5435
+ outlineStyle: string;
5436
+ outlineOffset: string;
5437
+ backgroundColor: string;
5438
+ } | {
5439
+ outline: string;
5440
+ outlineColor: string;
5441
+ backgroundColor: string;
5442
+ };
5443
+ _focusVisible: {
5444
+ outlineOffset: number;
5445
+ outlineWidth: string;
5446
+ outlineColor: string;
5447
+ outlineStyle: string;
5448
+ };
5449
+ _disabled: {
5450
+ pointerEvents: string;
5451
+ outlineWidth: string;
5452
+ outlineColor: string;
5453
+ outlineStyle: string;
5454
+ outlineOffset: string;
5455
+ backgroundColor: string;
5456
+ } | {
5457
+ pointerEvents: string;
5458
+ outline: string;
5459
+ outlineColor: string;
5460
+ backgroundColor: string;
5461
+ };
5462
+ _invalid: {
5463
+ _hover: {
5464
+ outlineWidth: string;
5465
+ outlineColor: string;
5466
+ outlineStyle: string;
5467
+ outlineOffset: string;
5468
+ } | {
5469
+ outline: string;
5470
+ outlineColor: string;
5471
+ };
5472
+ outlineWidth: string;
5473
+ outlineColor: string;
5474
+ outlineStyle: string;
5475
+ outlineOffset: string;
5476
+ } | {
5477
+ _hover: {
5478
+ outlineWidth: string;
5479
+ outlineColor: string;
5480
+ outlineStyle: string;
5481
+ outlineOffset: string;
5482
+ } | {
5483
+ outline: string;
5484
+ outlineColor: string;
5485
+ };
5486
+ outline: string;
5487
+ outlineColor: string;
5488
+ };
5489
+ " + label": {
5490
+ fontSize: ("mobile.sm" | "desktop.sm")[];
5491
+ top: string;
5492
+ left: any;
5493
+ zIndex: number;
5494
+ position: string;
5495
+ marginY: number;
5496
+ transition: string;
5497
+ transformOrigin: string;
5498
+ cursor: string;
5499
+ };
5500
+ "&:not(:placeholder-shown)": {
5501
+ paddingTop: string;
5502
+ "& + label": {
5503
+ transform: string;
5504
+ };
5505
+ };
5506
+ outlineWidth: string;
5507
+ outlineColor: string;
5508
+ outlineStyle: string;
5509
+ outlineOffset: string;
4761
5510
  borderRadius: string;
4762
5511
  transitionProperty: string;
4763
5512
  transitionDuration: string;
@@ -4765,13 +5514,35 @@ declare const theme: {
4765
5514
  paddingX: number;
4766
5515
  height: string;
4767
5516
  fontSize: string;
4768
- boxShadow: string;
4769
- _active: {
4770
- backgroundColor: string;
4771
- boxShadow: string;
5517
+ backgroundColor: string;
5518
+ width: string;
5519
+ outline: string;
5520
+ border: number;
5521
+ } | {
5522
+ appearance: string;
5523
+ paddingTop: string;
5524
+ "option, optgroup": {
5525
+ background: string;
4772
5526
  };
4773
5527
  _hover: {
4774
- boxShadow: string;
5528
+ outlineWidth: string;
5529
+ outlineColor: string;
5530
+ outlineStyle: string;
5531
+ outlineOffset: string;
5532
+ } | {
5533
+ outline: string;
5534
+ outlineColor: string;
5535
+ };
5536
+ _active: {
5537
+ outlineWidth: string;
5538
+ outlineColor: string;
5539
+ outlineStyle: string;
5540
+ outlineOffset: string;
5541
+ backgroundColor: string;
5542
+ } | {
5543
+ outline: string;
5544
+ outlineColor: string;
5545
+ backgroundColor: string;
4775
5546
  };
4776
5547
  _focusVisible: {
4777
5548
  outlineOffset: number;
@@ -4780,15 +5551,44 @@ declare const theme: {
4780
5551
  outlineStyle: string;
4781
5552
  };
4782
5553
  _disabled: {
5554
+ pointerEvents: string;
5555
+ outlineWidth: string;
5556
+ outlineColor: string;
5557
+ outlineStyle: string;
5558
+ outlineOffset: string;
5559
+ backgroundColor: string;
5560
+ } | {
5561
+ pointerEvents: string;
5562
+ outline: string;
5563
+ outlineColor: string;
4783
5564
  backgroundColor: string;
4784
- boxShadow: string;
4785
- cursor: string;
4786
5565
  };
4787
5566
  _invalid: {
4788
- boxShadow: string;
4789
5567
  _hover: {
4790
- boxShadow: string;
5568
+ outlineWidth: string;
5569
+ outlineColor: string;
5570
+ outlineStyle: string;
5571
+ outlineOffset: string;
5572
+ } | {
5573
+ outline: string;
5574
+ outlineColor: string;
4791
5575
  };
5576
+ outlineWidth: string;
5577
+ outlineColor: string;
5578
+ outlineStyle: string;
5579
+ outlineOffset: string;
5580
+ } | {
5581
+ _hover: {
5582
+ outlineWidth: string;
5583
+ outlineColor: string;
5584
+ outlineStyle: string;
5585
+ outlineOffset: string;
5586
+ } | {
5587
+ outline: string;
5588
+ outlineColor: string;
5589
+ };
5590
+ outline: string;
5591
+ outlineColor: string;
4792
5592
  };
4793
5593
  " + label": {
4794
5594
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -4807,6 +5607,18 @@ declare const theme: {
4807
5607
  transform: string;
4808
5608
  };
4809
5609
  };
5610
+ outline: string;
5611
+ outlineColor: string;
5612
+ borderRadius: string;
5613
+ transitionProperty: string;
5614
+ transitionDuration: string;
5615
+ position: string;
5616
+ paddingX: number;
5617
+ height: string;
5618
+ fontSize: string;
5619
+ backgroundColor: string;
5620
+ width: string;
5621
+ border: number;
4810
5622
  };
4811
5623
  icon: {
4812
5624
  width: string;
@@ -4913,8 +5725,8 @@ declare const theme: {
4913
5725
  };
4914
5726
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4915
5727
  root: {
4916
- backgroundColor: string;
4917
5728
  color: string;
5729
+ backgroundColor: string;
4918
5730
  };
4919
5731
  stepButton: {
4920
5732
  color: string;
@@ -4937,7 +5749,7 @@ declare const theme: {
4937
5749
  parts: ("title" | "container" | "closeButton" | "root" | "innerContainer" | "stepCounter" | "stepContainer" | "stepButton" | "stepNumber" | "stepTitle")[];
4938
5750
  };
4939
5751
  Switch: {
4940
- baseStyle?: {
5752
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4941
5753
  container: {
4942
5754
  [x: string]: string | {
4943
5755
  [x: string]: string;
@@ -4947,13 +5759,141 @@ declare const theme: {
4947
5759
  };
4948
5760
  };
4949
5761
  track: {
5762
+ _hover: {
5763
+ outlineWidth: string;
5764
+ outlineColor: string;
5765
+ outlineStyle: string;
5766
+ outlineOffset: string;
5767
+ backgroundColor: string;
5768
+ } | {
5769
+ outline: string;
5770
+ outlineColor: string;
5771
+ backgroundColor: string;
5772
+ };
5773
+ _checked: {
5774
+ outlineColor: string;
5775
+ _hover: {
5776
+ backgroundColor: string;
5777
+ };
5778
+ backgroundColor: string;
5779
+ };
5780
+ _disabled: {
5781
+ _checked: {
5782
+ outlineWidth: string;
5783
+ outlineColor: string;
5784
+ outlineStyle: string;
5785
+ outlineOffset: string;
5786
+ backgroundColor: string;
5787
+ } | {
5788
+ outline: string;
5789
+ outlineColor: string;
5790
+ backgroundColor: string;
5791
+ };
5792
+ outlineWidth: string;
5793
+ outlineColor: string;
5794
+ outlineStyle: string;
5795
+ outlineOffset: string;
5796
+ backgroundColor: string;
5797
+ pointerEvents: string;
5798
+ } | {
5799
+ _checked: {
5800
+ outlineWidth: string;
5801
+ outlineColor: string;
5802
+ outlineStyle: string;
5803
+ outlineOffset: string;
5804
+ backgroundColor: string;
5805
+ } | {
5806
+ outline: string;
5807
+ outlineColor: string;
5808
+ backgroundColor: string;
5809
+ };
5810
+ outline: string;
5811
+ outlineColor: string;
5812
+ backgroundColor: string;
5813
+ pointerEvents: string;
5814
+ };
5815
+ _focusVisible: {
5816
+ outlineWidth: string;
5817
+ outlineColor: string;
5818
+ outlineStyle: string;
5819
+ outlineOffset: string;
5820
+ };
5821
+ outlineWidth: string;
5822
+ outlineColor: string;
5823
+ outlineStyle: string;
5824
+ outlineOffset: string;
5825
+ backgroundColor: string;
5826
+ width: string[];
5827
+ height: string[];
5828
+ transitionProperty: string;
5829
+ transitionDuration: string;
5830
+ } | {
5831
+ _hover: {
5832
+ outlineWidth: string;
5833
+ outlineColor: string;
5834
+ outlineStyle: string;
5835
+ outlineOffset: string;
5836
+ backgroundColor: string;
5837
+ } | {
5838
+ outline: string;
5839
+ outlineColor: string;
5840
+ backgroundColor: string;
5841
+ };
5842
+ _checked: {
5843
+ outlineColor: string;
5844
+ _hover: {
5845
+ backgroundColor: string;
5846
+ };
5847
+ backgroundColor: string;
5848
+ };
5849
+ _disabled: {
5850
+ _checked: {
5851
+ outlineWidth: string;
5852
+ outlineColor: string;
5853
+ outlineStyle: string;
5854
+ outlineOffset: string;
5855
+ backgroundColor: string;
5856
+ } | {
5857
+ outline: string;
5858
+ outlineColor: string;
5859
+ backgroundColor: string;
5860
+ };
5861
+ outlineWidth: string;
5862
+ outlineColor: string;
5863
+ outlineStyle: string;
5864
+ outlineOffset: string;
5865
+ backgroundColor: string;
5866
+ pointerEvents: string;
5867
+ } | {
5868
+ _checked: {
5869
+ outlineWidth: string;
5870
+ outlineColor: string;
5871
+ outlineStyle: string;
5872
+ outlineOffset: string;
5873
+ backgroundColor: string;
5874
+ } | {
5875
+ outline: string;
5876
+ outlineColor: string;
5877
+ backgroundColor: string;
5878
+ };
5879
+ outline: string;
5880
+ outlineColor: string;
5881
+ backgroundColor: string;
5882
+ pointerEvents: string;
5883
+ };
5884
+ _focusVisible: {
5885
+ outlineWidth: string;
5886
+ outlineColor: string;
5887
+ outlineStyle: string;
5888
+ outlineOffset: string;
5889
+ };
5890
+ outline: string;
5891
+ outlineColor: string;
5892
+ backgroundColor: string;
4950
5893
  width: string[];
4951
5894
  height: string[];
4952
5895
  transitionProperty: string;
4953
5896
  transitionDuration: string;
4954
- _disabled: {
4955
- pointerEvents: string;
4956
- };
4957
5897
  };
4958
5898
  thumb: {
4959
5899
  transitionProperty: string;
@@ -4961,11 +5901,16 @@ declare const theme: {
4961
5901
  borderRadius: string;
4962
5902
  width: string[];
4963
5903
  height: string[];
5904
+ backgroundColor: string;
5905
+ "[data-disabled] &": {
5906
+ backgroundColor: string;
5907
+ };
4964
5908
  _checked: {
5909
+ backgroundColor: string;
4965
5910
  transform: string;
4966
5911
  };
4967
5912
  };
4968
- } | undefined;
5913
+ }) | undefined;
4969
5914
  sizes?: {
4970
5915
  sm: {
4971
5916
  container: {
@@ -4996,77 +5941,23 @@ declare const theme: {
4996
5941
  };
4997
5942
  } | undefined;
4998
5943
  variants?: {
4999
- solid: ({ colorMode }: _chakra_ui_styled_system.StyleFunctionProps) => {
5000
- track: {
5001
- _hover: {
5002
- backgroundColor: string;
5003
- boxShadow: string;
5004
- };
5005
- _checked: {
5006
- backgroundColor: string;
5007
- _hover: {
5008
- backgroundColor: string;
5009
- boxShadow: string;
5010
- };
5011
- };
5012
- _disabled: {
5013
- backgroundColor: string;
5014
- boxShadow: string;
5015
- _checked: {
5016
- backgroundColor: string;
5017
- boxShadow: string;
5018
- };
5019
- };
5020
- _focusVisible: {
5021
- outlineWidth: string;
5022
- outlineColor: string;
5023
- outlineStyle: string;
5024
- outlineOffset: string;
5025
- };
5026
- backgroundColor: string;
5027
- boxShadow: string;
5028
- };
5029
- thumb: {
5030
- backgroundColor: string;
5031
- "[data-disabled] &": {
5032
- backgroundColor: string;
5033
- };
5034
- };
5035
- };
5036
- outline: {
5037
- track: {
5038
- backgroundColor: string;
5039
- boxShadow: string;
5040
- _hover: {
5041
- backgroundColor: string;
5042
- };
5043
- _checked: {
5044
- backgroundColor: string;
5045
- _hover: {
5046
- backgroundColor: string;
5047
- };
5048
- };
5049
- };
5050
- thumb: {
5051
- backgroundColor: string;
5052
- _checked: {
5053
- backgroundColor: string;
5054
- };
5055
- };
5056
- };
5944
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5945
+ keys: ("label" | "track" | "container" | "thumb")[];
5946
+ }>;
5057
5947
  } | undefined;
5058
5948
  defaultProps?: {
5059
5949
  size?: "sm" | "md" | "lg" | undefined;
5060
- variant?: "solid" | "outline" | undefined;
5950
+ variant?: string | number | undefined;
5061
5951
  colorScheme?: string | undefined;
5062
5952
  } | undefined;
5063
5953
  parts: ("label" | "track" | "container" | "thumb")[];
5064
5954
  };
5065
5955
  Table: {
5066
- baseStyle?: {
5956
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5067
5957
  table: {
5068
- borderCollapse: string;
5069
5958
  width: string;
5959
+ color: string;
5960
+ borderCollapse: string;
5070
5961
  };
5071
5962
  th: {
5072
5963
  fontWeight: string;
@@ -5085,13 +5976,13 @@ declare const theme: {
5085
5976
  };
5086
5977
  };
5087
5978
  caption: {
5088
- mt: number;
5979
+ marginTop: number;
5089
5980
  fontFamily: string;
5090
5981
  textAlign: string;
5091
5982
  fontWeight: string;
5092
5983
  color: string;
5093
5984
  };
5094
- } | undefined;
5985
+ }) | undefined;
5095
5986
  sizes?: {
5096
5987
  sm: {
5097
5988
  table: {
@@ -5147,9 +6038,6 @@ declare const theme: {
5147
6038
  } | undefined;
5148
6039
  variants?: {
5149
6040
  simple: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5150
- table: {
5151
- color: string;
5152
- };
5153
6041
  th: {
5154
6042
  "&[data-is-numeric=true]": {
5155
6043
  textAlign: string;
@@ -5171,8 +6059,19 @@ declare const theme: {
5171
6059
  transitionDuration: string;
5172
6060
  transitionProperty: string;
5173
6061
  _hover: {
5174
- boxShadow: string;
6062
+ outlineOffset: string;
6063
+ backgroundColor: string;
6064
+ outlineWidth: string;
6065
+ outlineColor: string;
6066
+ outlineStyle: string;
6067
+ } | {
6068
+ outlineOffset: string;
5175
6069
  backgroundColor: string;
6070
+ outline: string;
6071
+ outlineColor: string;
6072
+ };
6073
+ _last: {
6074
+ borderBottomRadius: string;
5176
6075
  };
5177
6076
  };
5178
6077
  };
@@ -5180,7 +6079,6 @@ declare const theme: {
5180
6079
  "&[data-is-numeric=true]": {
5181
6080
  textAlign: string;
5182
6081
  };
5183
- color: string;
5184
6082
  border: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
5185
6083
  borderColor: string;
5186
6084
  backgroundColor: string;
@@ -5219,143 +6117,29 @@ declare const theme: {
5219
6117
  flexDirection: string;
5220
6118
  };
5221
6119
  tablist: {
5222
- backgroundColor: string;
5223
- color: string;
5224
- boxShadow?: undefined;
5225
- display: string;
5226
- alignItems: string;
5227
- gap: number;
5228
- width: string;
5229
- } | {
5230
- backgroundColor: string;
5231
- color: string;
5232
- boxShadow: string;
5233
- display: string;
5234
- alignItems: string;
5235
- gap: number;
5236
- width: string;
5237
- } | {
5238
- backgroundColor?: undefined;
5239
- color?: undefined;
5240
- boxShadow?: undefined;
5241
6120
  display: string;
5242
6121
  alignItems: string;
5243
6122
  gap: number;
5244
6123
  width: string;
6124
+ borderRadius: string;
5245
6125
  };
5246
6126
  tab: {
5247
- _hover: {
5248
- backgroundColor: string;
5249
- boxShadow?: undefined;
5250
- color?: undefined;
5251
- } | {
5252
- boxShadow: string;
5253
- color: string;
5254
- backgroundColor?: undefined;
5255
- } | {
5256
- backgroundColor: string;
5257
- color: string;
5258
- boxShadow?: undefined;
5259
- } | {
5260
- backgroundColor?: undefined;
5261
- boxShadow?: undefined;
5262
- color?: undefined;
5263
- };
5264
- _active: {
5265
- backgroundColor: string;
5266
- color: string;
5267
- } | {
5268
- backgroundColor?: undefined;
5269
- color?: undefined;
5270
- };
5271
6127
  _disabled: {
5272
6128
  color: string;
5273
- } | {
5274
- color?: undefined;
5275
- };
5276
- _focusVisible: {
5277
- outlineWidth: string;
5278
- outlineColor: string;
5279
- outlineStyle: string;
5280
- outlineOffset: string;
6129
+ backgroundColor: string;
5281
6130
  };
5282
6131
  _selected: {
5283
- backgroundColor: string;
5284
- color: string;
5285
- _focus: {
5286
- boxShadow: string;
5287
- };
5288
- "&:focus:not(:focus-visible)": {
5289
- boxShadow: string;
5290
- };
5291
- _focusVisible: {
5292
- boxShadow: string;
5293
- };
5294
6132
  _hover: {
5295
- backgroundColor: string;
5296
- color: string;
5297
- };
5298
- _active: {
5299
- backgroundColor: string;
5300
6133
  color: string;
5301
- };
5302
- boxShadow: string;
5303
- pointerEvents: string;
5304
- } | {
5305
- backgroundColor: string;
5306
- color: string;
5307
- _hover: {
5308
6134
  backgroundColor: string;
5309
- color: string;
5310
6135
  };
5311
6136
  _active: {
5312
- backgroundColor: string;
5313
6137
  color: string;
6138
+ backgroundColor: string;
5314
6139
  };
5315
- _focus?: undefined;
5316
- "&:focus:not(:focus-visible)"?: undefined;
5317
- _focusVisible?: undefined;
5318
- boxShadow: string;
5319
- pointerEvents: string;
5320
- };
5321
- color: string;
5322
- display: string;
5323
- justifyContent: string;
5324
- alignItems: string;
5325
- transitionProperty: string;
5326
- transitionDuration: string;
5327
- width: string;
5328
- height: string;
5329
- whiteSpace: string;
5330
- } | {
5331
- _hover: {
5332
- backgroundColor: string;
5333
- boxShadow?: undefined;
5334
- color?: undefined;
5335
- } | {
5336
- boxShadow: string;
5337
6140
  color: string;
5338
- backgroundColor?: undefined;
5339
- } | {
5340
- backgroundColor: string;
5341
- color: string;
5342
- boxShadow?: undefined;
5343
- } | {
5344
- backgroundColor?: undefined;
5345
- boxShadow?: undefined;
5346
- color?: undefined;
5347
- };
5348
- _active: {
5349
6141
  backgroundColor: string;
5350
- color: string;
5351
- } | {
5352
- backgroundColor?: undefined;
5353
- color?: undefined;
5354
- };
5355
- _disabled: {
5356
- color: string;
5357
- } | {
5358
- color?: undefined;
6142
+ pointerEvents: string;
5359
6143
  };
5360
6144
  _focusVisible: {
5361
6145
  outlineWidth: string;
@@ -5363,46 +6147,6 @@ declare const theme: {
5363
6147
  outlineStyle: string;
5364
6148
  outlineOffset: string;
5365
6149
  };
5366
- _selected: {
5367
- backgroundColor: string;
5368
- color: string;
5369
- _focus: {
5370
- boxShadow: string;
5371
- };
5372
- "&:focus:not(:focus-visible)": {
5373
- boxShadow: string;
5374
- };
5375
- _focusVisible: {
5376
- boxShadow: string;
5377
- };
5378
- _hover: {
5379
- backgroundColor: string;
5380
- color: string;
5381
- };
5382
- _active: {
5383
- backgroundColor: string;
5384
- color: string;
5385
- };
5386
- boxShadow: string;
5387
- pointerEvents: string;
5388
- } | {
5389
- backgroundColor: string;
5390
- color: string;
5391
- _hover: {
5392
- backgroundColor: string;
5393
- color: string;
5394
- };
5395
- _active: {
5396
- backgroundColor: string;
5397
- color: string;
5398
- };
5399
- _focus?: undefined;
5400
- "&:focus:not(:focus-visible)"?: undefined;
5401
- _focusVisible?: undefined;
5402
- boxShadow: string;
5403
- pointerEvents: string;
5404
- };
5405
- color?: undefined;
5406
6150
  display: string;
5407
6151
  justifyContent: string;
5408
6152
  alignItems: string;
@@ -5411,11 +6155,11 @@ declare const theme: {
5411
6155
  width: string;
5412
6156
  height: string;
5413
6157
  whiteSpace: string;
6158
+ borderRadius: string;
5414
6159
  };
5415
- tabpanel: {};
5416
6160
  }) | undefined;
5417
6161
  sizes?: {
5418
- sm: {
6162
+ xs: {
5419
6163
  tablist: {
5420
6164
  height: string;
5421
6165
  padding: string;
@@ -5425,7 +6169,7 @@ declare const theme: {
5425
6169
  paddingY: number;
5426
6170
  };
5427
6171
  };
5428
- md: {
6172
+ sm: {
5429
6173
  tablist: {
5430
6174
  height: string;
5431
6175
  padding: number;
@@ -5434,7 +6178,7 @@ declare const theme: {
5434
6178
  paddingX: number;
5435
6179
  };
5436
6180
  };
5437
- lg: {
6181
+ md: {
5438
6182
  tablist: {
5439
6183
  height: string;
5440
6184
  padding: number;
@@ -5444,7 +6188,7 @@ declare const theme: {
5444
6188
  paddingX: number;
5445
6189
  };
5446
6190
  };
5447
- xl: {
6191
+ lg: {
5448
6192
  tablist: {
5449
6193
  height: string;
5450
6194
  padding: string;
@@ -5456,26 +6200,56 @@ declare const theme: {
5456
6200
  };
5457
6201
  } | undefined;
5458
6202
  variants?: {
5459
- round: {
6203
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5460
6204
  tablist: {
5461
- borderRadius: string;
6205
+ outlineWidth: string;
6206
+ outlineColor: string;
6207
+ outlineStyle: string;
6208
+ outlineOffset: string;
6209
+ color: string;
6210
+ backgroundColor: string;
6211
+ } | {
6212
+ outline: string;
6213
+ outlineColor: string;
6214
+ color: string;
6215
+ backgroundColor: string;
5462
6216
  };
5463
6217
  tab: {
5464
- borderRadius: string;
6218
+ _hover: {
6219
+ outlineOffset: string;
6220
+ outlineWidth: string;
6221
+ outlineColor: string;
6222
+ outlineStyle: string;
6223
+ } | {
6224
+ outlineOffset: string;
6225
+ outline: string;
6226
+ outlineColor: string;
6227
+ };
6228
+ _accent: {
6229
+ backgroundColor: string;
6230
+ };
6231
+ color: string;
5465
6232
  };
5466
6233
  };
5467
- square: {
6234
+ accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5468
6235
  tablist: {
5469
- borderRadius: string;
6236
+ color: string;
6237
+ backgroundColor: string;
5470
6238
  };
5471
6239
  tab: {
5472
- borderRadius: string;
6240
+ _hover: {
6241
+ backgroundColor: string;
6242
+ };
6243
+ _accent: {
6244
+ backgroundColor: string;
6245
+ };
6246
+ color: string;
5473
6247
  };
5474
6248
  };
5475
6249
  } | undefined;
5476
6250
  defaultProps?: {
5477
- size?: "sm" | "md" | "lg" | "xl" | undefined;
5478
- variant?: "round" | "square" | undefined;
6251
+ size?: "sm" | "md" | "lg" | "xs" | undefined;
6252
+ variant?: "base" | "accent" | undefined;
5479
6253
  colorScheme?: string | undefined;
5480
6254
  } | undefined;
5481
6255
  parts: ("tab" | "tablist" | "tabpanel" | "tabpanels" | "root" | "indicator")[];
@@ -5494,10 +6268,87 @@ declare const theme: {
5494
6268
  transform: string;
5495
6269
  };
5496
6270
  };
5497
- width: string;
5498
- outline: string;
5499
- border: number;
5500
- backgroundColor: string;
6271
+ _hover: {
6272
+ outlineWidth: string;
6273
+ outlineColor: string;
6274
+ outlineStyle: string;
6275
+ outlineOffset: string;
6276
+ } | {
6277
+ outline: string;
6278
+ outlineColor: string;
6279
+ };
6280
+ _active: {
6281
+ outlineWidth: string;
6282
+ outlineColor: string;
6283
+ outlineStyle: string;
6284
+ outlineOffset: string;
6285
+ backgroundColor: string;
6286
+ } | {
6287
+ outline: string;
6288
+ outlineColor: string;
6289
+ backgroundColor: string;
6290
+ };
6291
+ _focusVisible: {
6292
+ outlineOffset: number;
6293
+ outlineWidth: string;
6294
+ outlineColor: string;
6295
+ outlineStyle: string;
6296
+ };
6297
+ _disabled: {
6298
+ pointerEvents: string;
6299
+ outlineWidth: string;
6300
+ outlineColor: string;
6301
+ outlineStyle: string;
6302
+ outlineOffset: string;
6303
+ backgroundColor: string;
6304
+ } | {
6305
+ pointerEvents: string;
6306
+ outline: string;
6307
+ outlineColor: string;
6308
+ backgroundColor: string;
6309
+ };
6310
+ _invalid: {
6311
+ _hover: {
6312
+ outlineWidth: string;
6313
+ outlineColor: string;
6314
+ outlineStyle: string;
6315
+ outlineOffset: string;
6316
+ } | {
6317
+ outline: string;
6318
+ outlineColor: string;
6319
+ };
6320
+ outlineWidth: string;
6321
+ outlineColor: string;
6322
+ outlineStyle: string;
6323
+ outlineOffset: string;
6324
+ } | {
6325
+ _hover: {
6326
+ outlineWidth: string;
6327
+ outlineColor: string;
6328
+ outlineStyle: string;
6329
+ outlineOffset: string;
6330
+ } | {
6331
+ outline: string;
6332
+ outlineColor: string;
6333
+ };
6334
+ outline: string;
6335
+ outlineColor: string;
6336
+ };
6337
+ " + label": {
6338
+ fontSize: ("mobile.sm" | "desktop.sm")[];
6339
+ top: string;
6340
+ left: any;
6341
+ zIndex: number;
6342
+ position: string;
6343
+ marginY: number;
6344
+ transition: string;
6345
+ transformOrigin: string;
6346
+ cursor: string;
6347
+ };
6348
+ outlineWidth: string;
6349
+ outlineColor: string;
6350
+ outlineStyle: string;
6351
+ outlineOffset: string;
5501
6352
  borderRadius: string;
5502
6353
  transitionProperty: string;
5503
6354
  transitionDuration: string;
@@ -5505,13 +6356,42 @@ declare const theme: {
5505
6356
  paddingX: number;
5506
6357
  height: string;
5507
6358
  fontSize: string;
5508
- boxShadow: string;
5509
- _active: {
5510
- backgroundColor: string;
5511
- boxShadow: string;
6359
+ backgroundColor: string;
6360
+ width: string;
6361
+ outline: string;
6362
+ border: number;
6363
+ } | {
6364
+ minHeight: string;
6365
+ verticalAlign: string;
6366
+ appearance: string;
6367
+ paddingTop: number;
6368
+ "&:not(:placeholder-shown)": {
6369
+ "&:has(+ label)": {
6370
+ paddingTop: number;
6371
+ };
6372
+ "& + label": {
6373
+ transform: string;
6374
+ };
5512
6375
  };
5513
6376
  _hover: {
5514
- boxShadow: string;
6377
+ outlineWidth: string;
6378
+ outlineColor: string;
6379
+ outlineStyle: string;
6380
+ outlineOffset: string;
6381
+ } | {
6382
+ outline: string;
6383
+ outlineColor: string;
6384
+ };
6385
+ _active: {
6386
+ outlineWidth: string;
6387
+ outlineColor: string;
6388
+ outlineStyle: string;
6389
+ outlineOffset: string;
6390
+ backgroundColor: string;
6391
+ } | {
6392
+ outline: string;
6393
+ outlineColor: string;
6394
+ backgroundColor: string;
5515
6395
  };
5516
6396
  _focusVisible: {
5517
6397
  outlineOffset: number;
@@ -5520,15 +6400,44 @@ declare const theme: {
5520
6400
  outlineStyle: string;
5521
6401
  };
5522
6402
  _disabled: {
6403
+ pointerEvents: string;
6404
+ outlineWidth: string;
6405
+ outlineColor: string;
6406
+ outlineStyle: string;
6407
+ outlineOffset: string;
6408
+ backgroundColor: string;
6409
+ } | {
6410
+ pointerEvents: string;
6411
+ outline: string;
6412
+ outlineColor: string;
5523
6413
  backgroundColor: string;
5524
- boxShadow: string;
5525
- cursor: string;
5526
6414
  };
5527
6415
  _invalid: {
5528
- boxShadow: string;
5529
6416
  _hover: {
5530
- boxShadow: string;
6417
+ outlineWidth: string;
6418
+ outlineColor: string;
6419
+ outlineStyle: string;
6420
+ outlineOffset: string;
6421
+ } | {
6422
+ outline: string;
6423
+ outlineColor: string;
6424
+ };
6425
+ outlineWidth: string;
6426
+ outlineColor: string;
6427
+ outlineStyle: string;
6428
+ outlineOffset: string;
6429
+ } | {
6430
+ _hover: {
6431
+ outlineWidth: string;
6432
+ outlineColor: string;
6433
+ outlineStyle: string;
6434
+ outlineOffset: string;
6435
+ } | {
6436
+ outline: string;
6437
+ outlineColor: string;
5531
6438
  };
6439
+ outline: string;
6440
+ outlineColor: string;
5532
6441
  };
5533
6442
  " + label": {
5534
6443
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -5541,6 +6450,18 @@ declare const theme: {
5541
6450
  transformOrigin: string;
5542
6451
  cursor: string;
5543
6452
  };
6453
+ outline: string;
6454
+ outlineColor: string;
6455
+ borderRadius: string;
6456
+ transitionProperty: string;
6457
+ transitionDuration: string;
6458
+ position: string;
6459
+ paddingX: number;
6460
+ height: string;
6461
+ fontSize: string;
6462
+ backgroundColor: string;
6463
+ width: string;
6464
+ border: number;
5544
6465
  }) | undefined;
5545
6466
  sizes?: {
5546
6467
  [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
@@ -5605,6 +6526,7 @@ declare const theme: {
5605
6526
  outlineStyle: string;
5606
6527
  outlineOffset: string;
5607
6528
  };
6529
+ boxShadow: string;
5608
6530
  _hover: {
5609
6531
  boxShadow: string;
5610
6532
  };
@@ -5633,6 +6555,7 @@ declare const theme: {
5633
6555
  outlineStyle: string;
5634
6556
  outlineOffset: string;
5635
6557
  };
6558
+ boxShadow: string;
5636
6559
  _hover: {
5637
6560
  boxShadow: string;
5638
6561
  };
@@ -5673,7 +6596,7 @@ declare const theme: {
5673
6596
  transform: string;
5674
6597
  zIndex: string;
5675
6598
  stroke: string;
5676
- color: "ocean" | "golden" | "brightRed";
6599
+ color: "brightRed" | "golden" | "ocean";
5677
6600
  };
5678
6601
  }) | undefined;
5679
6602
  sizes?: {
@@ -5817,81 +6740,6 @@ declare const theme: {
5817
6740
  } | undefined;
5818
6741
  parts: ("title" | "container" | "icon" | "description" | "iconContainer" | "textContainer" | "deviationIcon")[];
5819
6742
  };
5820
- AlertExpandable: {
5821
- baseStyle?: {
5822
- container: {
5823
- paddingX: number;
5824
- paddingY: number;
5825
- fontSize: string;
5826
- _expanded: {
5827
- borderBottomRadius: string;
5828
- };
5829
- };
5830
- } | undefined;
5831
- sizes?: {
5832
- [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5833
- keys: "container"[];
5834
- }>;
5835
- } | undefined;
5836
- variants?: {
5837
- info: {
5838
- container: {
5839
- _hover: {
5840
- boxShadow: string;
5841
- };
5842
- _active: {
5843
- backgroundColor: string;
5844
- };
5845
- };
5846
- };
5847
- success: {
5848
- container: {
5849
- _hover: {
5850
- boxShadow: string;
5851
- };
5852
- _active: {
5853
- backgroundColor: string;
5854
- };
5855
- };
5856
- };
5857
- warning: {
5858
- container: {
5859
- _hover: {
5860
- boxShadow: string;
5861
- };
5862
- _active: {
5863
- backgroundColor: string;
5864
- };
5865
- };
5866
- };
5867
- "alt-transport": {
5868
- container: {
5869
- _hover: {
5870
- boxShadow: string;
5871
- };
5872
- _active: {
5873
- backgroundColor: string;
5874
- };
5875
- };
5876
- };
5877
- error: {
5878
- container: {
5879
- _hover: {
5880
- boxShadow: string;
5881
- };
5882
- _active: {
5883
- backgroundColor: string;
5884
- };
5885
- };
5886
- };
5887
- } | undefined;
5888
- defaultProps?: {
5889
- size?: string | number | undefined;
5890
- variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
5891
- colorScheme?: string | undefined;
5892
- } | undefined;
5893
- parts: "container"[];
5894
- };
5895
6743
  Avatar: {
5896
6744
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5897
6745
  badge: {
@@ -7568,14 +8416,17 @@ declare const theme: {
7568
8416
  direction: "ltr";
7569
8417
  };
7570
8418
  declare const brandTheme: {
7571
- VyDigital: {
7572
- colors: {
7573
- accent: string;
7574
- };
7575
- };
8419
+ VyDigital: {};
7576
8420
  VyUtvikling: {
7577
8421
  colors: {
7578
- accent: string;
8422
+ accent: {
8423
+ surface: {
8424
+ default: {
8425
+ light: string;
8426
+ dark: string;
8427
+ };
8428
+ };
8429
+ };
7579
8430
  };
7580
8431
  };
7581
8432
  };