@vygruppen/spor-react 8.3.0 → 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 (66) hide show
  1. package/.turbo/turbo-build.log +10 -12
  2. package/CHANGELOG.md +26 -0
  3. package/dist/{CountryCodeSelect-DYAFPSID.mjs → CountryCodeSelect-LFDBAHV7.mjs} +1 -1
  4. package/dist/{chunk-42ZK3WXN.mjs → chunk-BWLVKMWU.mjs} +1240 -1778
  5. package/dist/index.d.mts +1657 -812
  6. package/dist/index.d.ts +1657 -812
  7. package/dist/index.js +1593 -2068
  8. package/dist/index.mjs +1 -1
  9. package/package.json +1 -1
  10. package/src/breadcrumb/Breadcrumb.tsx +4 -2
  11. package/src/datepicker/DateRangePicker.tsx +1 -0
  12. package/src/input/ChoiceChip.tsx +3 -3
  13. package/src/input/NumericStepper.tsx +7 -49
  14. package/src/input/PasswordInput.tsx +2 -0
  15. package/src/input/PhoneNumberInput.tsx +1 -1
  16. package/src/input/Switch.tsx +4 -7
  17. package/src/loader/ProgressBar.tsx +7 -24
  18. package/src/tab/Tabs.tsx +4 -5
  19. package/src/theme/components/accordion.ts +12 -16
  20. package/src/theme/components/alert-expandable.ts +10 -21
  21. package/src/theme/components/breadcrumb.ts +60 -5
  22. package/src/theme/components/button.ts +40 -75
  23. package/src/theme/components/card-select.ts +14 -56
  24. package/src/theme/components/card.ts +56 -63
  25. package/src/theme/components/checkbox.ts +20 -20
  26. package/src/theme/components/choice-chip.ts +28 -43
  27. package/src/theme/components/close-button.ts +1 -1
  28. package/src/theme/components/datepicker.ts +48 -166
  29. package/src/theme/components/drawer.ts +6 -4
  30. package/src/theme/components/fab.ts +35 -62
  31. package/src/theme/components/index.ts +3 -1
  32. package/src/theme/components/info-select.ts +5 -9
  33. package/src/theme/components/input.ts +17 -32
  34. package/src/theme/components/link.ts +8 -8
  35. package/src/theme/components/listbox.ts +5 -7
  36. package/src/theme/components/media-controller-button.ts +20 -25
  37. package/src/theme/components/modal.ts +8 -6
  38. package/src/theme/components/numeric-stepper.ts +65 -0
  39. package/src/theme/components/popover.ts +7 -8
  40. package/src/theme/components/progress-bar.ts +43 -0
  41. package/src/theme/components/progress-indicator.ts +5 -2
  42. package/src/theme/components/radio.ts +15 -12
  43. package/src/theme/components/select.ts +2 -2
  44. package/src/theme/components/stepper.ts +10 -7
  45. package/src/theme/components/switch.ts +35 -82
  46. package/src/theme/components/table.ts +10 -12
  47. package/src/theme/components/tabs.ts +55 -261
  48. package/src/theme/components/travel-tag.ts +3 -6
  49. package/src/theme/foundations/colors.ts +3 -1
  50. package/src/theme/foundations/fonts.ts +2 -2
  51. package/src/theme/index.ts +9 -6
  52. package/src/theme/utils/accent-utils.ts +54 -0
  53. package/src/theme/utils/base-utils.ts +94 -0
  54. package/src/theme/utils/bg-utils.ts +19 -0
  55. package/src/theme/utils/brand-utils.ts +42 -0
  56. package/src/theme/utils/floating-utils.ts +64 -0
  57. package/src/theme/utils/{focus-util.ts → focus-utils.ts} +1 -1
  58. package/src/theme/utils/ghost-utils.ts +40 -0
  59. package/src/theme/utils/surface-utils.ts +35 -0
  60. package/src/tooltip/Tooltip.tsx +17 -20
  61. package/src/typography/Heading.tsx +7 -2
  62. package/src/util/externals.tsx +0 -1
  63. package/src/theme/utils/background-utils.ts +0 -179
  64. package/src/theme/utils/border-utils.ts +0 -176
  65. package/src/theme/utils/box-shadow-utils.ts +0 -44
  66. package/src/theme/utils/text-utils.ts +0 -60
package/dist/index.d.ts CHANGED
@@ -224,7 +224,9 @@ type StaticAlertProps = BaseAlertProps;
224
224
  */
225
225
  declare const StaticAlert: ({ children, ...props }: StaticAlertProps) => React.JSX.Element;
226
226
 
227
- type BreadcrumbProps = BreadcrumbProps$1;
227
+ type BreadcrumbProps = Omit<BreadcrumbProps$1, "variant"> & {
228
+ variant?: "base" | "ghost";
229
+ };
228
230
  /**
229
231
  * A breadcrumb component.
230
232
  *
@@ -736,14 +738,14 @@ type ChoiceChipProps = {
736
738
  default: React.ReactNode;
737
739
  checked: React.ReactNode;
738
740
  };
739
- size?: "sm" | "md" | "lg" | "xl";
741
+ size?: "xs" | "sm" | "md" | "lg";
740
742
  chipType?: "icon" | "choice" | "filter";
741
743
  variant?: "base" | "accent" | "floating";
742
744
  };
743
745
  /**
744
746
  * Choice chips are checkboxes that look like selectable buttons.
745
747
  *
746
- * 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`.
747
749
  *
748
750
  * ```tsx
749
751
  * <Stack flexDirection="row">
@@ -1272,7 +1274,7 @@ type SearchInputProps = Exclude<InputProps$1, "variant" | "size" | "leftIcon" |
1272
1274
  */
1273
1275
  declare const SearchInput: _chakra_ui_system_dist_system_types.ComponentWithAs<"input", SearchInputProps>;
1274
1276
 
1275
- type SwitchProps = Exclude<SwitchProps$1, "colorScheme" | "variant"> & {
1277
+ type SwitchProps = Omit<SwitchProps$1, "colorScheme" | "variant"> & {
1276
1278
  size?: "sm" | "md" | "lg";
1277
1279
  };
1278
1280
  /**
@@ -1287,12 +1289,12 @@ type SwitchProps = Exclude<SwitchProps$1, "colorScheme" | "variant"> & {
1287
1289
  * </FormControl>
1288
1290
  * ```
1289
1291
  *
1290
- * 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`.
1291
1293
  *
1292
1294
  * ```tsx
1293
1295
  * <FormControl>
1294
1296
  * <FormLabel>Enable alerts?</FormLabel>
1295
- * <Switch variant="outline" size="lg" />
1297
+ * <Switch size="sm" />
1296
1298
  * </FormControl>
1297
1299
  * ```
1298
1300
  */
@@ -2047,11 +2049,10 @@ type StepperStepProps = {
2047
2049
  declare const StepperStep: ({ children, stepNumber, variant, isDisabled: isDisabledOverride, }: StepperStepProps) => React.JSX.Element;
2048
2050
 
2049
2051
  type TabsProps = Exclude<TabsProps$1, "colorScheme" | "variant" | "orientation" | "size"> & {
2050
- colorScheme: "base" | "accent";
2051
- /** Defaults to `md` */
2052
- size?: "sm" | "md" | "lg" | "xl";
2053
- /** Defaults to `round` */
2054
- variant?: "square" | "round";
2052
+ /** Defaults to `base` */
2053
+ variant: "base" | "accent";
2054
+ /** Defaults to `sm` */
2055
+ size?: "xs" | "sm" | "md" | "lg";
2055
2056
  };
2056
2057
  declare const Tabs: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", TabsProps>;
2057
2058
 
@@ -2079,7 +2080,7 @@ type TableProps = Omit<TableProps$1, "variant" | "colorScheme"> & {
2079
2080
  */
2080
2081
  declare const Table: _chakra_ui_system_dist_system_types.ComponentWithAs<"table", TableProps>;
2081
2082
 
2082
- 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 & {
2083
2084
  linjetag: typeof tokens__default.color.linjetag;
2084
2085
  };
2085
2086
 
@@ -2133,13 +2134,12 @@ declare const theme: {
2133
2134
  Accordion: {
2134
2135
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
2135
2136
  container: {
2136
- border: string;
2137
2137
  borderRadius: string;
2138
2138
  };
2139
2139
  button: {
2140
2140
  _disabled: {
2141
+ pointerEvents: string;
2141
2142
  opacity: number;
2142
- cursor: string;
2143
2143
  };
2144
2144
  _focusVisible: {
2145
2145
  outlineWidth: string;
@@ -2150,12 +2150,11 @@ declare const theme: {
2150
2150
  textAlign: string;
2151
2151
  fontFamily: string;
2152
2152
  fontWeight: string;
2153
+ outlineOffset: string;
2153
2154
  color: string;
2154
2155
  transitionProperty: string;
2155
2156
  transitionDuration: string;
2156
- border: string;
2157
2157
  borderRadius: string;
2158
- borderColor: string;
2159
2158
  display: string;
2160
2159
  justifyContent: string;
2161
2160
  };
@@ -2208,7 +2207,6 @@ declare const theme: {
2208
2207
  variants?: {
2209
2208
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2210
2209
  button: {
2211
- boxShadow: string;
2212
2210
  _hover: {
2213
2211
  backgroundColor: string;
2214
2212
  };
@@ -2219,17 +2217,37 @@ declare const theme: {
2219
2217
  };
2220
2218
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2221
2219
  container: {
2222
- boxShadow: string;
2220
+ outlineWidth: string;
2221
+ outlineColor: string;
2222
+ outlineStyle: string;
2223
+ outlineOffset: string;
2224
+ } | {
2225
+ outline: string;
2226
+ outlineColor: string;
2223
2227
  };
2224
2228
  button: {
2225
2229
  _expanded: {
2226
2230
  borderBottomRadius: string;
2227
2231
  };
2228
2232
  _hover: {
2229
- boxShadow: string;
2233
+ outlineOffset: number;
2234
+ outlineWidth: string;
2235
+ outlineColor: string;
2236
+ outlineStyle: string;
2237
+ } | {
2238
+ outlineOffset: number;
2239
+ outline: string;
2240
+ outlineColor: string;
2230
2241
  };
2231
2242
  _active: {
2232
- boxShadow: string;
2243
+ outlineWidth: string;
2244
+ outlineColor: string;
2245
+ outlineStyle: string;
2246
+ outlineOffset: string;
2247
+ backgroundColor: string;
2248
+ } | {
2249
+ outline: string;
2250
+ outlineColor: string;
2233
2251
  backgroundColor: string;
2234
2252
  };
2235
2253
  };
@@ -2237,6 +2255,8 @@ declare const theme: {
2237
2255
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2238
2256
  container: {
2239
2257
  boxShadow: string;
2258
+ outline: string;
2259
+ outlineColor: string;
2240
2260
  backgroundColor: string;
2241
2261
  };
2242
2262
  button: {
@@ -2244,11 +2264,14 @@ declare const theme: {
2244
2264
  borderBottomRadius: string;
2245
2265
  };
2246
2266
  _hover: {
2247
- boxShadow: string;
2267
+ outlineOffset: number;
2268
+ outline: string;
2269
+ outlineColor: string;
2248
2270
  backgroundColor: string;
2249
2271
  };
2250
2272
  _active: {
2251
- boxShadow: string;
2273
+ outline: string;
2274
+ outlineColor: string;
2252
2275
  backgroundColor: string;
2253
2276
  };
2254
2277
  };
@@ -2320,6 +2343,86 @@ declare const theme: {
2320
2343
  } | undefined;
2321
2344
  parts: ("container" | "icon" | "closeButton")[];
2322
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
+ };
2323
2426
  Badge: {
2324
2427
  baseStyle?: (({ colorScheme }: _chakra_ui_styled_system.StyleFunctionProps) => {
2325
2428
  backgroundColor: string;
@@ -2365,9 +2468,6 @@ declare const theme: {
2365
2468
  paddingX: number;
2366
2469
  borderRadius: string;
2367
2470
  "&:not([aria-current=page])": {
2368
- _active: {
2369
- backgroundColor: string;
2370
- };
2371
2471
  _focusVisible: {
2372
2472
  outlineWidth: string;
2373
2473
  outlineColor: string;
@@ -2375,9 +2475,6 @@ declare const theme: {
2375
2475
  outlineOffset: string;
2376
2476
  };
2377
2477
  cursor: string;
2378
- _hover: {
2379
- backgroundColor: string;
2380
- };
2381
2478
  };
2382
2479
  };
2383
2480
  list: {
@@ -2391,13 +2488,40 @@ declare const theme: {
2391
2488
  }>;
2392
2489
  } | undefined;
2393
2490
  variants?: {
2394
- [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
2395
- keys: ("link" | "container" | "separator" | "item")[];
2396
- }>;
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
+ };
2397
2521
  } | undefined;
2398
2522
  defaultProps?: {
2399
2523
  size?: string | number | undefined;
2400
- variant?: string | number | undefined;
2524
+ variant?: "base" | "ghost" | undefined;
2401
2525
  colorScheme?: string | undefined;
2402
2526
  } | undefined;
2403
2527
  parts: ("link" | "container" | "separator" | "item")[];
@@ -2405,15 +2529,11 @@ declare const theme: {
2405
2529
  Button: {
2406
2530
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
2407
2531
  _disabled: {
2532
+ color: string;
2533
+ backgroundColor: string;
2408
2534
  cursor: string;
2535
+ pointerEvents: string;
2409
2536
  boxShadow: string;
2410
- backgroundColor: string;
2411
- color: string;
2412
- };
2413
- _hover: {
2414
- _disabled: {
2415
- background: string;
2416
- };
2417
2537
  };
2418
2538
  _focusVisible: {
2419
2539
  outlineWidth: string;
@@ -2431,10 +2551,6 @@ declare const theme: {
2431
2551
  textWrap: string;
2432
2552
  paddingX: number;
2433
2553
  paddingY: number;
2434
- _focus: {
2435
- boxShadow: number;
2436
- outline: number;
2437
- };
2438
2554
  }) | undefined;
2439
2555
  sizes?: {
2440
2556
  lg: {
@@ -2458,70 +2574,113 @@ declare const theme: {
2458
2574
  xs: {
2459
2575
  minHeight: number;
2460
2576
  minWidth: number;
2577
+ paddingY: number;
2461
2578
  fontSize: string;
2462
2579
  fontWeight: string;
2463
2580
  };
2464
2581
  } | undefined;
2465
2582
  variants?: {
2466
2583
  primary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2467
- backgroundColor: string;
2468
- color: string;
2469
2584
  _hover: {
2470
2585
  backgroundColor: string;
2471
2586
  };
2472
2587
  _active: {
2473
2588
  backgroundColor: string;
2474
2589
  };
2590
+ color: string;
2591
+ backgroundColor: string;
2475
2592
  };
2476
2593
  secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2477
- backgroundColor: string;
2478
- color: string;
2479
2594
  _hover: {
2480
2595
  backgroundColor: string;
2481
2596
  };
2482
2597
  _active: {
2483
2598
  backgroundColor: string;
2484
- boxShadow: string;
2485
- _hover: {
2486
- boxShadow: string;
2487
- };
2488
2599
  };
2600
+ color: string;
2601
+ backgroundColor: string;
2489
2602
  };
2490
2603
  tertiary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2491
- 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;
2492
2628
  color: string;
2493
- boxShadow: string;
2629
+ backgroundColor: string;
2630
+ } | {
2494
2631
  _hover: {
2495
- boxShadow: string;
2632
+ outlineWidth: string;
2633
+ outlineColor: string;
2634
+ outlineStyle: string;
2635
+ outlineOffset: string;
2636
+ } | {
2637
+ outline: string;
2638
+ outlineColor: string;
2496
2639
  };
2497
2640
  _active: {
2498
- boxShadow: string;
2499
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;
2500
2650
  };
2651
+ outline: string;
2652
+ outlineColor: string;
2653
+ color: string;
2654
+ backgroundColor: string;
2501
2655
  };
2502
2656
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2503
- backgroundColor: string;
2504
- color: string;
2505
2657
  _hover: {
2506
- backgroundColor: string;
2507
2658
  _disabled: {
2508
2659
  color: string;
2509
2660
  };
2661
+ backgroundColor: string;
2510
2662
  };
2511
2663
  _active: {
2512
2664
  backgroundColor: string;
2513
2665
  };
2666
+ color: string;
2667
+ backgroundColor: string;
2514
2668
  };
2515
2669
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2516
- backgroundColor: string;
2517
2670
  boxShadow: string;
2518
- _active: {
2519
- backgroundColor: string;
2520
- };
2521
2671
  _hover: {
2672
+ boxShadow: string;
2673
+ outline: string;
2674
+ outlineColor: string;
2522
2675
  backgroundColor: string;
2676
+ };
2677
+ _active: {
2523
2678
  boxShadow: string;
2679
+ backgroundColor: string;
2524
2680
  };
2681
+ outline: string;
2682
+ outlineColor: string;
2683
+ backgroundColor: string;
2525
2684
  };
2526
2685
  } | undefined;
2527
2686
  defaultProps?: {
@@ -2533,41 +2692,67 @@ declare const theme: {
2533
2692
  Card: {
2534
2693
  baseStyle?: ((props: any) => {
2535
2694
  "button&, a&, label&, &.is-clickable": {
2695
+ _hover: {
2696
+ backgroundColor: string;
2697
+ outlineColor: string;
2698
+ } | {
2699
+ outlineColor: string;
2700
+ backgroundColor?: undefined;
2701
+ };
2536
2702
  _active: {
2537
2703
  backgroundColor: string;
2538
- boxShadow: string;
2704
+ outlineColor: string;
2539
2705
  };
2540
2706
  _disabled: {
2541
- backgroundColor: string;
2542
- boxShadow: string;
2543
- color: string;
2544
2707
  pointerEvents: string;
2545
- };
2546
- _focusVisible: {
2708
+ color: string;
2547
2709
  outlineWidth: string;
2548
2710
  outlineColor: string;
2549
2711
  outlineStyle: string;
2550
2712
  outlineOffset: string;
2551
- };
2552
- _hover: {
2553
2713
  backgroundColor: string;
2554
- boxShadow: string;
2555
2714
  } | {
2556
- boxShadow: string;
2557
- backgroundColor?: undefined;
2715
+ pointerEvents: string;
2716
+ color: string;
2717
+ outline: string;
2718
+ outlineColor: string;
2719
+ backgroundColor: string;
2558
2720
  };
2559
- boxShadow: string;
2721
+ _focusVisible: {
2722
+ outlineWidth: string;
2723
+ outlineColor: string;
2724
+ outlineStyle: string;
2725
+ outlineOffset: string;
2726
+ };
2727
+ outlineColor: string;
2560
2728
  backgroundColor?: undefined;
2729
+ outline: string;
2561
2730
  } | {
2731
+ _hover: {
2732
+ backgroundColor: string;
2733
+ outlineColor: string;
2734
+ } | {
2735
+ outlineColor: string;
2736
+ backgroundColor?: undefined;
2737
+ };
2562
2738
  _active: {
2563
2739
  backgroundColor: string;
2564
- boxShadow: string;
2740
+ outlineColor: string;
2565
2741
  };
2566
2742
  _disabled: {
2567
- backgroundColor: string;
2568
- boxShadow: string;
2743
+ pointerEvents: string;
2569
2744
  color: string;
2745
+ outlineWidth: string;
2746
+ outlineColor: string;
2747
+ outlineStyle: string;
2748
+ outlineOffset: string;
2749
+ backgroundColor: string;
2750
+ } | {
2570
2751
  pointerEvents: string;
2752
+ color: string;
2753
+ outline: string;
2754
+ outlineColor: string;
2755
+ backgroundColor: string;
2571
2756
  };
2572
2757
  _focusVisible: {
2573
2758
  outlineWidth: string;
@@ -2575,18 +2760,14 @@ declare const theme: {
2575
2760
  outlineStyle: string;
2576
2761
  outlineOffset: string;
2577
2762
  };
2578
- _hover: {
2579
- backgroundColor: string;
2580
- boxShadow: string;
2581
- } | {
2582
- boxShadow: string;
2583
- backgroundColor?: undefined;
2584
- };
2585
2763
  backgroundColor: string;
2586
- boxShadow: string;
2764
+ outlineColor: string;
2765
+ outline: string;
2587
2766
  };
2767
+ outline: string;
2768
+ outlineColor: string;
2588
2769
  backgroundColor: string;
2589
- boxShadow: string;
2770
+ color: string;
2590
2771
  appearance: string;
2591
2772
  border: string;
2592
2773
  overflow: string;
@@ -2597,15 +2778,31 @@ declare const theme: {
2597
2778
  borderRadius: string;
2598
2779
  } | {
2599
2780
  "button&, a&, label&, &.is-clickable": {
2781
+ _hover: {
2782
+ backgroundColor: string;
2783
+ outlineColor: string;
2784
+ } | {
2785
+ outlineColor: string;
2786
+ backgroundColor?: undefined;
2787
+ };
2600
2788
  _active: {
2601
2789
  backgroundColor: string;
2602
- boxShadow: string;
2790
+ outlineColor: string;
2603
2791
  };
2604
2792
  _disabled: {
2605
- backgroundColor: string;
2606
- boxShadow: string;
2793
+ pointerEvents: string;
2607
2794
  color: string;
2795
+ outlineWidth: string;
2796
+ outlineColor: string;
2797
+ outlineStyle: string;
2798
+ outlineOffset: string;
2799
+ backgroundColor: string;
2800
+ } | {
2608
2801
  pointerEvents: string;
2802
+ color: string;
2803
+ outline: string;
2804
+ outlineColor: string;
2805
+ backgroundColor: string;
2609
2806
  };
2610
2807
  _focusVisible: {
2611
2808
  outlineWidth: string;
@@ -2613,25 +2810,35 @@ declare const theme: {
2613
2810
  outlineStyle: string;
2614
2811
  outlineOffset: string;
2615
2812
  };
2813
+ outlineColor: string;
2814
+ backgroundColor?: undefined;
2815
+ outline: string;
2816
+ } | {
2616
2817
  _hover: {
2617
2818
  backgroundColor: string;
2618
- boxShadow: string;
2819
+ outlineColor: string;
2619
2820
  } | {
2620
- boxShadow: string;
2821
+ outlineColor: string;
2621
2822
  backgroundColor?: undefined;
2622
2823
  };
2623
- boxShadow: string;
2624
- backgroundColor?: undefined;
2625
- } | {
2626
2824
  _active: {
2627
2825
  backgroundColor: string;
2628
- boxShadow: string;
2826
+ outlineColor: string;
2629
2827
  };
2630
2828
  _disabled: {
2631
- backgroundColor: string;
2632
- boxShadow: string;
2829
+ pointerEvents: string;
2633
2830
  color: string;
2831
+ outlineWidth: string;
2832
+ outlineColor: string;
2833
+ outlineStyle: string;
2834
+ outlineOffset: string;
2835
+ backgroundColor: string;
2836
+ } | {
2634
2837
  pointerEvents: string;
2838
+ color: string;
2839
+ outline: string;
2840
+ outlineColor: string;
2841
+ backgroundColor: string;
2635
2842
  };
2636
2843
  _focusVisible: {
2637
2844
  outlineWidth: string;
@@ -2639,18 +2846,14 @@ declare const theme: {
2639
2846
  outlineStyle: string;
2640
2847
  outlineOffset: string;
2641
2848
  };
2642
- _hover: {
2643
- backgroundColor: string;
2644
- boxShadow: string;
2645
- } | {
2646
- boxShadow: string;
2647
- backgroundColor?: undefined;
2648
- };
2649
2849
  backgroundColor: string;
2650
- boxShadow: string;
2850
+ outlineColor: string;
2851
+ outline: string;
2651
2852
  };
2652
2853
  backgroundColor: string;
2653
- boxShadow?: undefined;
2854
+ outline?: undefined;
2855
+ outlineColor?: undefined;
2856
+ color: string;
2654
2857
  appearance: string;
2655
2858
  border: string;
2656
2859
  overflow: string;
@@ -2661,13 +2864,34 @@ declare const theme: {
2661
2864
  borderRadius: string;
2662
2865
  }) | undefined;
2663
2866
  sizes?: {
2664
- [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
+ };
2665
2889
  } | undefined;
2666
2890
  variants?: {
2667
2891
  [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
2668
2892
  } | undefined;
2669
2893
  defaultProps?: {
2670
- size?: string | number | undefined;
2894
+ size?: "sm" | "lg" | undefined;
2671
2895
  variant?: string | number | undefined;
2672
2896
  colorScheme?: string | undefined;
2673
2897
  } | undefined;
@@ -2684,13 +2908,15 @@ declare const theme: {
2684
2908
  appearance: string;
2685
2909
  display: string;
2686
2910
  alignItems: string;
2911
+ transitionProperty: string;
2912
+ transitionDuration: string;
2687
2913
  };
2688
2914
  card: {
2689
2915
  backgroundColor: string;
2916
+ color: string;
2690
2917
  borderRadius: string;
2691
2918
  boxShadow: string;
2692
2919
  padding: number;
2693
- color: string;
2694
2920
  };
2695
2921
  }) | undefined;
2696
2922
  sizes?: {
@@ -2725,25 +2951,59 @@ declare const theme: {
2725
2951
  variants?: {
2726
2952
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2727
2953
  trigger: {
2728
- boxShadow: string;
2729
2954
  _hover: {
2730
- boxShadow: string;
2955
+ outlineWidth: string;
2956
+ outlineColor: string;
2957
+ outlineStyle: string;
2958
+ outlineOffset: string;
2959
+ } | {
2960
+ outline: string;
2961
+ outlineColor: string;
2731
2962
  };
2732
2963
  _active: {
2733
- boxShadow: string;
2964
+ outlineWidth: string;
2965
+ outlineColor: string;
2966
+ outlineStyle: string;
2967
+ outlineOffset: string;
2968
+ backgroundColor: string;
2969
+ } | {
2970
+ outline: string;
2971
+ outlineColor: string;
2734
2972
  backgroundColor: string;
2735
2973
  };
2736
2974
  _expanded: {
2737
- _hover: {
2738
- boxShadow: string;
2739
- backgroundColor: string;
2740
- };
2741
- _active: {
2742
- boxShadow: string;
2743
- backgroundColor: string;
2744
- };
2745
2975
  backgroundColor: string;
2746
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;
3000
+ backgroundColor: string;
3001
+ };
3002
+ _expanded: {
3003
+ backgroundColor: string;
3004
+ };
3005
+ outline: string;
3006
+ outlineColor: string;
2747
3007
  };
2748
3008
  };
2749
3009
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
@@ -2761,27 +3021,24 @@ declare const theme: {
2761
3021
  };
2762
3022
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2763
3023
  trigger: {
2764
- boxShadow: string;
2765
3024
  transition: string;
2766
3025
  _hover: {
2767
- boxShadow: string;
3026
+ outline: string;
3027
+ outlineColor: string;
2768
3028
  backgroundColor: string;
2769
3029
  };
2770
3030
  _active: {
2771
- boxShadow: string;
3031
+ outline: string;
3032
+ outlineColor: string;
2772
3033
  backgroundColor: string;
2773
3034
  };
2774
3035
  _expanded: {
2775
- _hover: {
2776
- boxShadow: string;
2777
- };
2778
- _active: {
2779
- boxShadow: string;
2780
- backgroundColor: string;
2781
- };
2782
3036
  backgroundColor: string;
2783
3037
  };
3038
+ outline: string;
3039
+ outlineColor: string;
2784
3040
  backgroundColor: string;
3041
+ boxShadow: string;
2785
3042
  };
2786
3043
  };
2787
3044
  } | undefined;
@@ -2802,15 +3059,15 @@ declare const theme: {
2802
3059
  };
2803
3060
  "input:enabled[aria-invalid] + .chakra-checkbox__control": {
2804
3061
  backgroundColor: string;
2805
- borderColor: string;
3062
+ borderColor: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
2806
3063
  };
2807
3064
  "input:enabled:checked:not([aria-invalid]) + .chakra-checkbox__control": {
2808
- backgroundColor: string;
2809
3065
  borderColor: string;
3066
+ backgroundColor: string;
2810
3067
  };
2811
3068
  "input:enabled:checked[aria-invalid] + .chakra-checkbox__control": {
2812
- backgroundColor: string;
2813
- 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;
2814
3071
  };
2815
3072
  };
2816
3073
  };
@@ -2822,6 +3079,7 @@ declare const theme: {
2822
3079
  };
2823
3080
  control: {
2824
3081
  _checked: {
3082
+ borderColor: string;
2825
3083
  _disabled: {
2826
3084
  borderColor: string;
2827
3085
  color: string;
@@ -2831,15 +3089,8 @@ declare const theme: {
2831
3089
  backgroundColor: string;
2832
3090
  borderColor: string;
2833
3091
  };
2834
- _focusVisible: {
2835
- outlineWidth: string;
2836
- outlineColor: string;
2837
- outlineStyle: string;
2838
- outlineOffset: string;
2839
- };
2840
- color: string;
2841
- borderColor: string;
2842
3092
  backgroundColor: string;
3093
+ color: string;
2843
3094
  };
2844
3095
  _disabled: {
2845
3096
  borderColor: string;
@@ -2849,6 +3100,12 @@ declare const theme: {
2849
3100
  borderColor: string;
2850
3101
  backgroundColor: string;
2851
3102
  };
3103
+ _focusVisible: {
3104
+ outlineWidth: string;
3105
+ outlineColor: string;
3106
+ outlineStyle: string;
3107
+ outlineOffset: string;
3108
+ };
2852
3109
  backgroundColor: string;
2853
3110
  width: number;
2854
3111
  height: number;
@@ -2857,7 +3114,6 @@ declare const theme: {
2857
3114
  border: string;
2858
3115
  borderColor: string;
2859
3116
  borderRadius: string;
2860
- color: string;
2861
3117
  };
2862
3118
  label: {
2863
3119
  userSelect: string;
@@ -2889,22 +3145,22 @@ declare const theme: {
2889
3145
  display: string;
2890
3146
  alignItems: string;
2891
3147
  fontSize: string;
2892
- px: number;
2893
3148
  cursor: string;
3149
+ transitionProperty: string;
3150
+ transitionDuration: string;
2894
3151
  _checked: {
2895
3152
  _hover: {
2896
- boxShadow: string;
3153
+ outlineColor: string;
2897
3154
  color: string;
2898
3155
  backgroundColor: string;
2899
3156
  };
2900
3157
  _active: {
2901
- boxShadow: string;
2902
3158
  backgroundColor: string;
2903
3159
  color: string;
2904
3160
  };
2905
- boxShadow: string;
2906
3161
  backgroundColor: string;
2907
3162
  color: string;
3163
+ outlineColor: string;
2908
3164
  };
2909
3165
  _disabled: {
2910
3166
  _hover: {
@@ -2925,7 +3181,7 @@ declare const theme: {
2925
3181
  };
2926
3182
  backgroundColor: string;
2927
3183
  color: string;
2928
- cursor: string;
3184
+ pointerEvents: string;
2929
3185
  boxShadow: string;
2930
3186
  };
2931
3187
  "input:focus-visible + &": {
@@ -2936,41 +3192,41 @@ declare const theme: {
2936
3192
  };
2937
3193
  };
2938
3194
  icon: {
2939
- mr: number;
3195
+ marginRight: number;
2940
3196
  };
2941
3197
  }) | undefined;
2942
3198
  sizes?: {
2943
- sm: {
3199
+ xs: {
2944
3200
  container: {
2945
3201
  borderRadius: string;
2946
3202
  _checked: {
2947
3203
  borderRadius: string;
2948
3204
  };
2949
3205
  height: string;
2950
- px: number;
3206
+ paddingX: number;
2951
3207
  };
2952
3208
  };
2953
- md: {
3209
+ sm: {
2954
3210
  container: {
2955
3211
  borderRadius: string;
2956
3212
  _checked: {
2957
3213
  borderRadius: string;
2958
3214
  };
2959
3215
  height: string;
2960
- px: number;
3216
+ paddingX: number;
2961
3217
  };
2962
3218
  };
2963
- lg: {
3219
+ md: {
2964
3220
  container: {
2965
3221
  borderRadius: string;
2966
3222
  _checked: {
2967
3223
  borderRadius: string;
2968
3224
  };
2969
3225
  height: string;
2970
- px: number;
3226
+ paddingX: number;
2971
3227
  };
2972
3228
  };
2973
- xl: {
3229
+ lg: {
2974
3230
  container: {
2975
3231
  borderRadius: string;
2976
3232
  _checked: {
@@ -2984,66 +3240,110 @@ declare const theme: {
2984
3240
  variants?: {
2985
3241
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
2986
3242
  container: {
2987
- "@media (hover:hover)": {
2988
- _hover: {
2989
- backgroundColor: string;
2990
- boxShadow: string;
2991
- color: string;
2992
- };
2993
- };
2994
- _active: {
2995
- boxShadow: string;
3243
+ _hover: {
2996
3244
  backgroundColor: string;
2997
- };
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;
3265
+ backgroundColor: string;
3266
+ };
2998
3267
  color: string;
2999
- 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;
3000
3301
  backgroundColor: string;
3001
3302
  };
3002
3303
  };
3003
3304
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3004
3305
  container: {
3005
- "@media (hover:hover)": {
3006
- _hover: {
3007
- color: string;
3008
- boxShadow: string;
3009
- backgroundColor: string;
3010
- };
3306
+ _hover: {
3307
+ color: string;
3308
+ backgroundColor: string;
3011
3309
  };
3012
3310
  _active: {
3013
3311
  backgroundColor: string;
3014
- boxShadow: string;
3015
3312
  color: string;
3016
3313
  };
3017
- boxShadow: string;
3018
3314
  color: string;
3019
3315
  backgroundColor: string;
3020
3316
  };
3021
3317
  _active: {
3022
3318
  backgroundColor: string;
3023
- boxShadow: string;
3024
3319
  color: string;
3025
3320
  };
3026
3321
  };
3027
3322
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3028
3323
  container: {
3324
+ boxShadow: string;
3029
3325
  _hover: {
3030
- color: string;
3031
3326
  boxShadow: string;
3327
+ color: string;
3328
+ outline: string;
3329
+ outlineColor: string;
3032
3330
  backgroundColor: string;
3033
3331
  };
3034
3332
  _active: {
3035
3333
  color: string;
3036
- boxShadow: string;
3334
+ outline: string;
3335
+ outlineColor: string;
3037
3336
  backgroundColor: string;
3038
3337
  };
3039
- boxShadow: string;
3338
+ outline: string;
3339
+ outlineColor: string;
3040
3340
  color: string;
3041
3341
  backgroundColor: string;
3042
3342
  };
3043
3343
  };
3044
3344
  } | undefined;
3045
3345
  defaultProps?: {
3046
- size?: "sm" | "md" | "lg" | "xl" | undefined;
3346
+ size?: "sm" | "md" | "lg" | "xs" | undefined;
3047
3347
  variant?: "base" | "floating" | "accent" | undefined;
3048
3348
  colorScheme?: string | undefined;
3049
3349
  } | undefined;
@@ -3125,8 +3425,6 @@ declare const theme: {
3125
3425
  Datepicker: {
3126
3426
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
3127
3427
  wrapper: {
3128
- backgroundColor: string;
3129
- boxShadow: string;
3130
3428
  transitionProperty: string;
3131
3429
  transitionDuration: string;
3132
3430
  borderRadius: string;
@@ -3138,6 +3436,7 @@ declare const theme: {
3138
3436
  zIndex: number;
3139
3437
  };
3140
3438
  _disabled: {
3439
+ backgroundColor: string;
3141
3440
  pointerEvents: string;
3142
3441
  };
3143
3442
  _focusWithin: {
@@ -3157,8 +3456,20 @@ declare const theme: {
3157
3456
  color: string;
3158
3457
  };
3159
3458
  calendarTriggerButton: {
3459
+ _hover: {
3460
+ backgroundColor: string;
3461
+ };
3462
+ _active: {
3463
+ backgroundColor: string;
3464
+ };
3160
3465
  _invalid: {
3161
- boxShadow: string;
3466
+ outlineWidth: string;
3467
+ outlineColor: string;
3468
+ outlineStyle: string;
3469
+ outlineOffset: string;
3470
+ } | {
3471
+ outline: string;
3472
+ outlineColor: string;
3162
3473
  };
3163
3474
  _focusVisible: {
3164
3475
  outlineWidth: string;
@@ -3166,7 +3477,6 @@ declare const theme: {
3166
3477
  outlineStyle: string;
3167
3478
  outlineOffset: string;
3168
3479
  };
3169
- backgroundColor: string;
3170
3480
  width: number;
3171
3481
  display: string;
3172
3482
  alignItems: string;
@@ -3179,21 +3489,24 @@ declare const theme: {
3179
3489
  paddingBottom: number;
3180
3490
  borderRadius: string;
3181
3491
  right: string;
3182
- _hover: {
3183
- boxShadow: string;
3184
- backgroundColor: string;
3185
- };
3186
- _active: {
3187
- backgroundColor: string;
3188
- };
3189
3492
  };
3190
3493
  arrow: {
3191
3494
  [x: string]: string;
3192
3495
  };
3193
3496
  calendarPopover: {
3194
- backgroundColor: string;
3497
+ boxShadow: string;
3498
+ outlineWidth: string;
3499
+ outlineColor: string;
3500
+ outlineStyle: string;
3501
+ outlineOffset: string;
3195
3502
  color: string;
3503
+ backgroundColor: string;
3504
+ } | {
3196
3505
  boxShadow: string;
3506
+ outline: string;
3507
+ outlineColor: string;
3508
+ color: string;
3509
+ backgroundColor: string;
3197
3510
  };
3198
3511
  weekdays: {
3199
3512
  color: string;
@@ -3202,50 +3515,55 @@ declare const theme: {
3202
3515
  color: string;
3203
3516
  };
3204
3517
  dateCell: {
3205
- backgroundColor: string;
3206
- color: string;
3207
- borderRadius: string;
3208
- position: string;
3209
- transition: string;
3210
- userSelect: string;
3211
- width: number[];
3212
- height: number[];
3213
- transitionProperty: string;
3214
- transitionSpeed: string;
3215
- _hover: {
3216
- backgroundColor: string;
3217
- };
3218
- _focusVisible: {
3219
- outlineColor: string;
3220
- outlineWidth: number;
3221
- outlineStyle: string;
3222
- };
3223
3518
  _active: {
3224
3519
  backgroundColor: string;
3225
- boxShadow: string;
3226
- color: string;
3227
3520
  };
3228
3521
  _disabled: {
3229
- color: string;
3230
- boxShadow: string;
3231
3522
  pointerEvents: string;
3523
+ color: string;
3524
+ backgroundColor: string;
3232
3525
  };
3233
3526
  _selected: {
3234
- backgroundColor: string;
3235
- color: string;
3236
3527
  _active: {
3237
- backgroundColor: string;
3238
- boxShadow: string;
3239
3528
  color: string;
3529
+ backgroundColor: string;
3240
3530
  };
3531
+ color: string;
3532
+ backgroundColor: string;
3241
3533
  };
3242
3534
  "&[data-today]": {
3243
- boxShadow: string;
3535
+ outlineWidth: string;
3536
+ outlineColor: string;
3537
+ outlineStyle: string;
3538
+ outlineOffset: string;
3539
+ } | {
3540
+ outline: string;
3541
+ outlineColor: string;
3244
3542
  };
3245
3543
  "&[data-unavailable]": {
3246
- pointerEvents: string;
3247
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;
3248
3564
  };
3565
+ color: string;
3566
+ backgroundColor: string;
3249
3567
  };
3250
3568
  }) | undefined;
3251
3569
  sizes?: {
@@ -3256,92 +3574,119 @@ declare const theme: {
3256
3574
  variants?: {
3257
3575
  base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3258
3576
  wrapper: {
3259
- boxShadow: string;
3260
3577
  _hover: {
3261
- boxShadow: string;
3578
+ outlineWidth: string;
3579
+ outlineColor: string;
3580
+ outlineStyle: string;
3581
+ outlineOffset: string;
3582
+ } | {
3583
+ outline: string;
3584
+ outlineColor: string;
3262
3585
  };
3263
3586
  _invalid: {
3264
- boxShadow: string;
3587
+ outlineWidth: string;
3588
+ outlineColor: string;
3589
+ outlineStyle: string;
3590
+ outlineOffset: string;
3591
+ } | {
3592
+ outline: string;
3593
+ outlineColor: string;
3265
3594
  };
3266
3595
  _disabled: {
3267
- boxShadow: string;
3268
- _focus: {
3269
- boxShadow: string;
3270
- };
3596
+ outlineWidth: string;
3597
+ outlineColor: string;
3598
+ outlineStyle: string;
3599
+ outlineOffset: string;
3600
+ } | {
3601
+ outline: string;
3602
+ outlineColor: string;
3271
3603
  };
3272
- };
3273
- calendar: {
3274
3604
  backgroundColor: string;
3275
- color: string;
3276
- boxShadow: string;
3277
- };
3278
- dateCell: {
3279
- color: string;
3605
+ outlineWidth: string;
3606
+ outlineColor: string;
3607
+ outlineStyle: string;
3608
+ outlineOffset: string;
3609
+ } | {
3280
3610
  _hover: {
3281
- backgroundColor: string;
3611
+ outlineWidth: string;
3612
+ outlineColor: string;
3613
+ outlineStyle: string;
3614
+ outlineOffset: string;
3615
+ } | {
3616
+ outline: string;
3617
+ outlineColor: string;
3282
3618
  };
3283
- "&[data-today]": {
3284
- 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;
3285
3636
  };
3637
+ backgroundColor: string;
3638
+ outline: string;
3639
+ outlineColor: string;
3286
3640
  };
3287
3641
  };
3288
3642
  floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3289
3643
  wrapper: {
3290
3644
  boxShadow: string;
3291
3645
  _hover: {
3292
- boxShadow: string;
3646
+ outline: string;
3647
+ outlineColor: string;
3293
3648
  };
3294
3649
  _invalid: {
3295
- boxShadow: string;
3650
+ outlineWidth: string;
3651
+ outlineColor: string;
3652
+ outlineStyle: string;
3653
+ outlineOffset: string;
3654
+ } | {
3655
+ outline: string;
3656
+ outlineColor: string;
3296
3657
  };
3297
3658
  _disabled: {
3298
- boxShadow: string;
3299
- _focus: {
3300
- boxShadow: string;
3301
- };
3302
- };
3303
- };
3304
- calendar: {
3305
- backgroundColor: string;
3306
- color: string;
3307
- boxShadow: string;
3308
- };
3309
- dateCell: {
3310
- color: string;
3311
- _hover: {
3312
- backgroundColor: string;
3659
+ outlineWidth: string;
3660
+ outlineColor: string;
3661
+ outlineStyle: string;
3662
+ outlineOffset: string;
3663
+ } | {
3664
+ outline: string;
3665
+ outlineColor: string;
3313
3666
  };
3667
+ outline: string;
3668
+ outlineColor: string;
3314
3669
  };
3315
3670
  };
3316
3671
  ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3317
3672
  wrapper: {
3318
- boxShadow: string;
3319
3673
  _hover: {
3320
- boxShadow: string;
3674
+ outlineWidth: string;
3675
+ outlineColor: string;
3676
+ outlineStyle: string;
3677
+ outlineOffset: string;
3678
+ } | {
3679
+ outline: string;
3680
+ outlineColor: string;
3321
3681
  };
3322
3682
  _invalid: {
3323
- boxShadow: string;
3324
- };
3325
- _disabled: {
3326
- boxShadow: string;
3327
- _focus: {
3328
- boxShadow: string;
3329
- };
3330
- };
3331
- };
3332
- calendar: {
3333
- backgroundColor: string;
3334
- color: string;
3335
- boxShadow: string;
3336
- };
3337
- dateCell: {
3338
- color: string;
3339
- _hover: {
3340
- backgroundColor: string;
3341
- };
3342
- _selected: {
3343
- backgroundColor: string;
3344
- color: string;
3683
+ outlineWidth: string;
3684
+ outlineColor: string;
3685
+ outlineStyle: string;
3686
+ outlineOffset: string;
3687
+ } | {
3688
+ outline: string;
3689
+ outlineColor: string;
3345
3690
  };
3346
3691
  };
3347
3692
  };
@@ -3400,11 +3745,11 @@ declare const theme: {
3400
3745
  overflow: string;
3401
3746
  };
3402
3747
  dialog: {
3403
- backgroundColor: string;
3404
- color: string;
3405
3748
  zIndex: string;
3406
3749
  maxHeight: string | undefined;
3407
3750
  boxShadow: string;
3751
+ color: string;
3752
+ backgroundColor: string;
3408
3753
  };
3409
3754
  header: {
3410
3755
  paddingX: number;
@@ -3458,24 +3803,17 @@ declare const theme: {
3458
3803
  FloatingActionButton: {
3459
3804
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
3460
3805
  container: {
3461
- _hover: {
3806
+ _disabled: {
3807
+ pointerEvents: string;
3808
+ color: string;
3462
3809
  backgroundColor: string;
3463
- _disabled: {
3464
- backgroundColor: string;
3465
- color: string;
3466
- };
3467
3810
  };
3468
- zIndex: string;
3469
3811
  _focusVisible: {
3470
3812
  outlineWidth: string;
3471
3813
  outlineColor: string;
3472
3814
  outlineStyle: string;
3473
3815
  outlineOffset: string;
3474
3816
  };
3475
- _disabled: {
3476
- backgroundColor: string;
3477
- color: string;
3478
- };
3479
3817
  display: string;
3480
3818
  alignItems: string;
3481
3819
  paddingY: number;
@@ -3489,25 +3827,19 @@ declare const theme: {
3489
3827
  transitionDuration: string;
3490
3828
  transitionProperty: string;
3491
3829
  position: string;
3830
+ zIndex: string;
3492
3831
  } | {
3493
- _hover: {
3832
+ _disabled: {
3833
+ pointerEvents: string;
3834
+ color: string;
3494
3835
  backgroundColor: string;
3495
- _disabled: {
3496
- backgroundColor: string;
3497
- color: string;
3498
- };
3499
3836
  };
3500
- zIndex: string;
3501
3837
  _focusVisible: {
3502
3838
  outlineWidth: string;
3503
3839
  outlineColor: string;
3504
3840
  outlineStyle: string;
3505
3841
  outlineOffset: string;
3506
3842
  };
3507
- _disabled: {
3508
- backgroundColor: string;
3509
- color: string;
3510
- };
3511
3843
  top: string;
3512
3844
  left: string;
3513
3845
  right?: undefined;
@@ -3525,25 +3857,19 @@ declare const theme: {
3525
3857
  transitionDuration: string;
3526
3858
  transitionProperty: string;
3527
3859
  position: string;
3860
+ zIndex: string;
3528
3861
  } | {
3529
- _hover: {
3862
+ _disabled: {
3863
+ pointerEvents: string;
3864
+ color: string;
3530
3865
  backgroundColor: string;
3531
- _disabled: {
3532
- backgroundColor: string;
3533
- color: string;
3534
- };
3535
3866
  };
3536
- zIndex: string;
3537
3867
  _focusVisible: {
3538
3868
  outlineWidth: string;
3539
3869
  outlineColor: string;
3540
3870
  outlineStyle: string;
3541
3871
  outlineOffset: string;
3542
3872
  };
3543
- _disabled: {
3544
- backgroundColor: string;
3545
- color: string;
3546
- };
3547
3873
  top: string;
3548
3874
  right: string;
3549
3875
  left?: undefined;
@@ -3561,25 +3887,19 @@ declare const theme: {
3561
3887
  transitionDuration: string;
3562
3888
  transitionProperty: string;
3563
3889
  position: string;
3890
+ zIndex: string;
3564
3891
  } | {
3565
- _hover: {
3892
+ _disabled: {
3893
+ pointerEvents: string;
3894
+ color: string;
3566
3895
  backgroundColor: string;
3567
- _disabled: {
3568
- backgroundColor: string;
3569
- color: string;
3570
- };
3571
3896
  };
3572
- zIndex: string;
3573
3897
  _focusVisible: {
3574
3898
  outlineWidth: string;
3575
3899
  outlineColor: string;
3576
3900
  outlineStyle: string;
3577
3901
  outlineOffset: string;
3578
3902
  };
3579
- _disabled: {
3580
- backgroundColor: string;
3581
- color: string;
3582
- };
3583
3903
  bottom: string;
3584
3904
  left: string;
3585
3905
  top?: undefined;
@@ -3597,25 +3917,19 @@ declare const theme: {
3597
3917
  transitionDuration: string;
3598
3918
  transitionProperty: string;
3599
3919
  position: string;
3920
+ zIndex: string;
3600
3921
  } | {
3601
- _hover: {
3922
+ _disabled: {
3923
+ pointerEvents: string;
3924
+ color: string;
3602
3925
  backgroundColor: string;
3603
- _disabled: {
3604
- backgroundColor: string;
3605
- color: string;
3606
- };
3607
3926
  };
3608
- zIndex: string;
3609
3927
  _focusVisible: {
3610
3928
  outlineWidth: string;
3611
3929
  outlineColor: string;
3612
3930
  outlineStyle: string;
3613
3931
  outlineOffset: string;
3614
3932
  };
3615
- _disabled: {
3616
- backgroundColor: string;
3617
- color: string;
3618
- };
3619
3933
  bottom: string;
3620
3934
  right: string;
3621
3935
  top?: undefined;
@@ -3633,6 +3947,7 @@ declare const theme: {
3633
3947
  transitionDuration: string;
3634
3948
  transitionProperty: string;
3635
3949
  position: string;
3950
+ zIndex: string;
3636
3951
  };
3637
3952
  icon: {
3638
3953
  marginRight: number;
@@ -3651,82 +3966,94 @@ declare const theme: {
3651
3966
  }>;
3652
3967
  } | undefined;
3653
3968
  variants?: {
3654
- dark: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3969
+ brand: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3655
3970
  container: {
3656
- backgroundColor: string;
3657
- color: string;
3658
- _active: {
3659
- backgroundColor: string;
3660
- };
3661
3971
  _hover: {
3662
3972
  backgroundColor: string;
3663
3973
  };
3664
- };
3665
- };
3666
- light: {
3667
- container: {
3668
- backgroundColor: string;
3669
- color: string;
3670
3974
  _active: {
3671
3975
  backgroundColor: string;
3672
3976
  };
3977
+ color: string;
3978
+ backgroundColor: string;
3673
3979
  };
3674
3980
  };
3675
- green: {
3981
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3676
3982
  container: {
3677
- backgroundColor: string;
3678
- color: string;
3679
- _active: {
3680
- 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;
3681
3992
  backgroundColor: string;
3682
3993
  };
3683
- };
3684
- };
3685
- brand: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3686
- container: {
3687
- backgroundColor: string;
3688
- color: string;
3689
3994
  _active: {
3690
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;
3691
4004
  };
4005
+ color: string;
4006
+ outlineWidth: string;
4007
+ outlineColor: string;
4008
+ outlineStyle: string;
4009
+ outlineOffset: string;
4010
+ backgroundColor: string;
4011
+ } | {
3692
4012
  _hover: {
4013
+ outlineWidth: string;
4014
+ outlineColor: string;
4015
+ outlineStyle: string;
4016
+ outlineOffset: string;
4017
+ backgroundColor: string;
4018
+ } | {
4019
+ outline: string;
4020
+ outlineColor: string;
3693
4021
  backgroundColor: string;
3694
4022
  };
3695
- };
3696
- };
3697
- base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3698
- container: {
3699
- backgroundColor: string;
3700
- color: string;
3701
4023
  _active: {
3702
4024
  backgroundColor: string;
3703
- color: string;
3704
- };
3705
- _hover: {
4025
+ outlineWidth: string;
4026
+ outlineColor: string;
4027
+ outlineStyle: string;
4028
+ outlineOffset: string;
4029
+ } | {
3706
4030
  backgroundColor: string;
3707
- boxShadow: string;
3708
- color: string;
4031
+ outline: string;
4032
+ outlineColor: string;
3709
4033
  };
4034
+ color: string;
4035
+ outline: string;
4036
+ outlineColor: string;
4037
+ backgroundColor: string;
3710
4038
  };
3711
4039
  };
3712
4040
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
3713
4041
  container: {
3714
- backgroundColor: string;
3715
- color: string;
3716
- _active: {
3717
- backgroundColor: string;
4042
+ _hover: {
3718
4043
  color: string;
4044
+ backgroundColor: string;
3719
4045
  };
3720
- _hover: {
4046
+ _active: {
3721
4047
  backgroundColor: string;
3722
- color: string;
3723
4048
  };
4049
+ color: string;
4050
+ backgroundColor: string;
3724
4051
  };
3725
4052
  };
3726
4053
  } | undefined;
3727
4054
  defaultProps?: {
3728
4055
  size?: string | number | undefined;
3729
- variant?: "base" | "green" | "light" | "dark" | "accent" | "brand" | undefined;
4056
+ variant?: "base" | "accent" | "brand" | undefined;
3730
4057
  colorScheme?: string | undefined;
3731
4058
  } | undefined;
3732
4059
  parts: ("text" | "container" | "icon")[];
@@ -3808,23 +4135,21 @@ declare const theme: {
3808
4135
  };
3809
4136
  button: {
3810
4137
  _disabled: {
3811
- _hover: {
3812
- boxShadow: string;
3813
- };
3814
- _focus: {
3815
- boxShadow: string;
3816
- };
3817
4138
  backgroundColor: string;
3818
4139
  color: string;
4140
+ pointerEvents: string;
3819
4141
  };
3820
4142
  _active: {
3821
4143
  backgroundColor: string;
3822
4144
  };
3823
4145
  _invalid: {
3824
- _hover: {
3825
- boxShadow: string;
3826
- };
3827
- boxShadow: string;
4146
+ outlineWidth: string;
4147
+ outlineColor: string;
4148
+ outlineStyle: string;
4149
+ outlineOffset: string;
4150
+ } | {
4151
+ outline: string;
4152
+ outlineColor: string;
3828
4153
  };
3829
4154
  _focusVisible: {
3830
4155
  outlineWidth: string;
@@ -3833,9 +4158,62 @@ declare const theme: {
3833
4158
  outlineOffset: string;
3834
4159
  };
3835
4160
  _hover: {
3836
- boxShadow: string;
4161
+ outlineWidth: string;
4162
+ outlineColor: string;
4163
+ outlineStyle: string;
4164
+ outlineOffset: string;
4165
+ } | {
4166
+ outline: string;
4167
+ outlineColor: string;
3837
4168
  };
3838
- 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;
3839
4217
  appearance: string;
3840
4218
  borderTopRadius: string;
3841
4219
  borderBottomRadius: string | number;
@@ -3859,13 +4237,16 @@ declare const theme: {
3859
4237
  button: {
3860
4238
  _hover: {
3861
4239
  backgroundColor: string;
3862
- boxShadow: string;
4240
+ outline: string;
4241
+ outlineColor: string;
3863
4242
  };
3864
4243
  _active: {
3865
4244
  backgroundColor: string;
3866
- boxShadow: string;
4245
+ outline: string;
4246
+ outlineColor: string;
3867
4247
  };
3868
- boxShadow: string;
4248
+ outline: string;
4249
+ outlineColor: string;
3869
4250
  backgroundColor: string;
3870
4251
  };
3871
4252
  };
@@ -3906,6 +4287,7 @@ declare const theme: {
3906
4287
  outlineStyle: string;
3907
4288
  outlineOffset: string;
3908
4289
  };
4290
+ boxShadow: string;
3909
4291
  _hover: {
3910
4292
  boxShadow: string;
3911
4293
  };
@@ -3934,6 +4316,7 @@ declare const theme: {
3934
4316
  outlineStyle: string;
3935
4317
  outlineOffset: string;
3936
4318
  };
4319
+ boxShadow: string;
3937
4320
  _hover: {
3938
4321
  boxShadow: string;
3939
4322
  };
@@ -3959,7 +4342,7 @@ declare const theme: {
3959
4342
  transform: string;
3960
4343
  zIndex: string;
3961
4344
  stroke: string;
3962
- color: "ocean" | "golden" | "brightRed";
4345
+ color: "brightRed" | "golden" | "ocean";
3963
4346
  };
3964
4347
  }) | undefined;
3965
4348
  sizes?: {
@@ -4018,11 +4401,93 @@ declare const theme: {
4018
4401
  Input: {
4019
4402
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4020
4403
  field: {
4021
- appearance: string;
4022
- width: string;
4023
- outline: string;
4024
- border: number;
4025
- 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;
4026
4491
  borderRadius: string;
4027
4492
  transitionProperty: string;
4028
4493
  transitionDuration: string;
@@ -4030,13 +4495,31 @@ declare const theme: {
4030
4495
  paddingX: number;
4031
4496
  height: string;
4032
4497
  fontSize: string;
4033
- 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
+ };
4034
4513
  _active: {
4514
+ outlineWidth: string;
4515
+ outlineColor: string;
4516
+ outlineStyle: string;
4517
+ outlineOffset: string;
4518
+ backgroundColor: string;
4519
+ } | {
4520
+ outline: string;
4521
+ outlineColor: string;
4035
4522
  backgroundColor: string;
4036
- boxShadow: string;
4037
- };
4038
- _hover: {
4039
- boxShadow: string;
4040
4523
  };
4041
4524
  _focusVisible: {
4042
4525
  outlineOffset: number;
@@ -4045,15 +4528,44 @@ declare const theme: {
4045
4528
  outlineStyle: string;
4046
4529
  };
4047
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;
4048
4541
  backgroundColor: string;
4049
- boxShadow: string;
4050
- cursor: string;
4051
4542
  };
4052
4543
  _invalid: {
4053
- boxShadow: string;
4054
4544
  _hover: {
4055
- 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;
4056
4566
  };
4567
+ outline: string;
4568
+ outlineColor: string;
4057
4569
  };
4058
4570
  " + label": {
4059
4571
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -4072,6 +4584,19 @@ declare const theme: {
4072
4584
  transform: string;
4073
4585
  };
4074
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;
4075
4600
  };
4076
4601
  element: {
4077
4602
  height: string;
@@ -4272,17 +4797,23 @@ declare const theme: {
4272
4797
  };
4273
4798
  secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4274
4799
  _hover: {
4800
+ outlineWidth: number;
4801
+ backgroundColor: string;
4802
+ outlineColor: string;
4803
+ outlineStyle: string;
4804
+ outlineOffset: string;
4805
+ } | {
4806
+ outlineWidth: number;
4275
4807
  backgroundColor: string;
4808
+ outline: string;
4276
4809
  outlineColor: string;
4277
4810
  };
4278
4811
  _active: {
4279
4812
  backgroundColor: string;
4280
- outlineColor: string;
4281
4813
  };
4282
4814
  backgroundColor: string;
4283
4815
  "&:focus, &:focus-visible, &:active, &:hover": {
4284
4816
  outline: string;
4285
- outlineWidth: string;
4286
4817
  };
4287
4818
  color: string;
4288
4819
  backgroundImage: string;
@@ -4328,13 +4859,27 @@ declare const theme: {
4328
4859
  ListBox: {
4329
4860
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4330
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;
4331
4872
  backgroundColor: string;
4873
+ } | {
4874
+ outline: string;
4875
+ outlineColor: string;
4332
4876
  boxShadow: string;
4333
4877
  overflowY: string;
4334
4878
  maxHeight: string;
4335
4879
  width: string;
4336
4880
  listStyle: string;
4337
4881
  borderBottomRadius: string;
4882
+ backgroundColor: string;
4338
4883
  };
4339
4884
  item: {
4340
4885
  paddingX: number;
@@ -4426,7 +4971,7 @@ declare const theme: {
4426
4971
  };
4427
4972
  } | undefined;
4428
4973
  variants?: {
4429
- play: {
4974
+ play: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4430
4975
  container: {
4431
4976
  padding: number;
4432
4977
  _hover: {
@@ -4436,17 +4981,12 @@ declare const theme: {
4436
4981
  color: string;
4437
4982
  };
4438
4983
  _disabled: {
4984
+ pointerEvents: string;
4439
4985
  color: string;
4440
- _hover: {
4441
- color: string;
4442
- };
4443
- _active: {
4444
- color: string;
4445
- };
4446
4986
  };
4447
4987
  };
4448
4988
  };
4449
- jumpSkip: {
4989
+ jumpSkip: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4450
4990
  container: {
4451
4991
  _hover: {
4452
4992
  backgroundColor: string;
@@ -4455,14 +4995,9 @@ declare const theme: {
4455
4995
  backgroundColor: string;
4456
4996
  };
4457
4997
  _disabled: {
4458
- backgroundColor: string;
4459
4998
  color: string;
4460
- _hover: {
4461
- backgroundColor: string;
4462
- };
4463
- _active: {
4464
- backgroundColor: string;
4465
- };
4999
+ backgroundColor: string;
5000
+ pointerEvents: string;
4466
5001
  };
4467
5002
  };
4468
5003
  icon: {
@@ -4492,13 +5027,13 @@ declare const theme: {
4492
5027
  overflow: string;
4493
5028
  };
4494
5029
  dialog: {
4495
- borderRadius: string;
4496
- background: string;
4497
- color: string;
4498
- my: string;
5030
+ marginY: string;
4499
5031
  zIndex: string;
4500
5032
  maxHeight: string | undefined;
4501
5033
  boxShadow: string;
5034
+ color: string;
5035
+ backgroundColor: string;
5036
+ borderRadius: string;
4502
5037
  };
4503
5038
  header: {
4504
5039
  paddingX: number;
@@ -4549,49 +5084,114 @@ declare const theme: {
4549
5084
  } | undefined;
4550
5085
  parts: ("body" | "dialog" | "footer" | "header" | "overlay" | "closeButton" | "dialogContainer")[];
4551
5086
  };
4552
- Popover: {
5087
+ NumericStepper: {
4553
5088
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4554
- popper: {
4555
- zIndex: string;
5089
+ container: {
5090
+ display: string;
5091
+ flexDirection: string;
5092
+ alignItems: string;
4556
5093
  };
4557
- content: {
4558
- [x: string]: string | number | {
4559
- outline: number;
4560
- boxShadow: string;
5094
+ input: {
5095
+ _focusVisible: {
5096
+ outlineWidth: string;
5097
+ outlineColor: string;
5098
+ outlineStyle: string;
5099
+ outlineOffset: string;
4561
5100
  };
4562
- backgroundColor: string;
4563
- color: string;
4564
- borderRadius: string;
4565
- padding: number;
4566
- zIndex: string;
4567
- maxWidth: string;
4568
- _focus: {
4569
- outline: number;
4570
- boxShadow: string;
5101
+ _disabled: {
5102
+ pointerEvents: string;
5103
+ opacity: number;
4571
5104
  };
4572
- };
4573
- arrow: {
4574
- backgroundColor: string;
4575
- boxShadow: string;
4576
- clipPath: string;
4577
- };
4578
- closeButton: {
4579
5105
  _hover: {
4580
- backgroundColor: string;
4581
- };
4582
- _active: {
4583
- backgroundColor: string;
4584
- };
4585
- borderRadius: string;
4586
- top: number;
4587
- right: number;
4588
- _focusVisible: {
4589
5106
  outlineWidth: string;
4590
5107
  outlineColor: string;
4591
5108
  outlineStyle: string;
4592
5109
  outlineOffset: string;
4593
- };
4594
- 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;
4595
5195
  color: string;
4596
5196
  };
4597
5197
  }) | undefined;
@@ -4621,6 +5221,48 @@ declare const theme: {
4621
5221
  } | undefined;
4622
5222
  parts: ("body" | "footer" | "header" | "content" | "closeButton" | "arrow" | "popper")[];
4623
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
+ };
4624
5266
  ProgressIndicator: {
4625
5267
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4626
5268
  root: {
@@ -4684,13 +5326,21 @@ declare const theme: {
4684
5326
  };
4685
5327
  control: {
4686
5328
  _disabled: {
5329
+ color: string;
5330
+ outlineWidth: string;
5331
+ outlineColor: string;
5332
+ outlineStyle: string;
5333
+ outlineOffset: string;
4687
5334
  backgroundColor: string;
4688
- borderColor: string;
5335
+ } | {
4689
5336
  color: string;
5337
+ outline: string;
5338
+ outlineColor: string;
5339
+ backgroundColor: string;
4690
5340
  };
4691
5341
  _checked: {
4692
- borderColor: string;
4693
5342
  color: string;
5343
+ borderColor: string;
4694
5344
  _before: {
4695
5345
  content: string;
4696
5346
  display: string;
@@ -4701,9 +5351,19 @@ declare const theme: {
4701
5351
  background: string;
4702
5352
  };
4703
5353
  _disabled: {
5354
+ color: string;
5355
+ outlineWidth: string;
5356
+ outlineColor: string;
5357
+ outlineStyle: string;
5358
+ outlineOffset: string;
4704
5359
  backgroundColor: string;
4705
- borderColor: string;
5360
+ pointerEvents: string;
5361
+ } | {
4706
5362
  color: string;
5363
+ outline: string;
5364
+ outlineColor: string;
5365
+ backgroundColor: string;
5366
+ pointerEvents: string;
4707
5367
  };
4708
5368
  };
4709
5369
  _focusVisible: {
@@ -4760,10 +5420,93 @@ declare const theme: {
4760
5420
  "option, optgroup": {
4761
5421
  background: string;
4762
5422
  };
4763
- width: string;
4764
- outline: string;
4765
- border: number;
4766
- 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;
4767
5510
  borderRadius: string;
4768
5511
  transitionProperty: string;
4769
5512
  transitionDuration: string;
@@ -4771,13 +5514,35 @@ declare const theme: {
4771
5514
  paddingX: number;
4772
5515
  height: string;
4773
5516
  fontSize: string;
4774
- boxShadow: string;
4775
- _active: {
4776
- backgroundColor: string;
4777
- 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;
4778
5526
  };
4779
5527
  _hover: {
4780
- 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;
4781
5546
  };
4782
5547
  _focusVisible: {
4783
5548
  outlineOffset: number;
@@ -4786,15 +5551,44 @@ declare const theme: {
4786
5551
  outlineStyle: string;
4787
5552
  };
4788
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;
4789
5564
  backgroundColor: string;
4790
- boxShadow: string;
4791
- cursor: string;
4792
5565
  };
4793
5566
  _invalid: {
4794
- boxShadow: string;
4795
5567
  _hover: {
4796
- boxShadow: string;
5568
+ outlineWidth: string;
5569
+ outlineColor: string;
5570
+ outlineStyle: string;
5571
+ outlineOffset: string;
5572
+ } | {
5573
+ outline: string;
5574
+ outlineColor: string;
4797
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;
4798
5592
  };
4799
5593
  " + label": {
4800
5594
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -4813,6 +5607,18 @@ declare const theme: {
4813
5607
  transform: string;
4814
5608
  };
4815
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;
4816
5622
  };
4817
5623
  icon: {
4818
5624
  width: string;
@@ -4919,8 +5725,8 @@ declare const theme: {
4919
5725
  };
4920
5726
  accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
4921
5727
  root: {
4922
- backgroundColor: string;
4923
5728
  color: string;
5729
+ backgroundColor: string;
4924
5730
  };
4925
5731
  stepButton: {
4926
5732
  color: string;
@@ -4943,7 +5749,7 @@ declare const theme: {
4943
5749
  parts: ("title" | "container" | "closeButton" | "root" | "innerContainer" | "stepCounter" | "stepContainer" | "stepButton" | "stepNumber" | "stepTitle")[];
4944
5750
  };
4945
5751
  Switch: {
4946
- baseStyle?: {
5752
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
4947
5753
  container: {
4948
5754
  [x: string]: string | {
4949
5755
  [x: string]: string;
@@ -4953,13 +5759,141 @@ declare const theme: {
4953
5759
  };
4954
5760
  };
4955
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;
4956
5893
  width: string[];
4957
5894
  height: string[];
4958
5895
  transitionProperty: string;
4959
5896
  transitionDuration: string;
4960
- _disabled: {
4961
- pointerEvents: string;
4962
- };
4963
5897
  };
4964
5898
  thumb: {
4965
5899
  transitionProperty: string;
@@ -4967,11 +5901,16 @@ declare const theme: {
4967
5901
  borderRadius: string;
4968
5902
  width: string[];
4969
5903
  height: string[];
5904
+ backgroundColor: string;
5905
+ "[data-disabled] &": {
5906
+ backgroundColor: string;
5907
+ };
4970
5908
  _checked: {
5909
+ backgroundColor: string;
4971
5910
  transform: string;
4972
5911
  };
4973
5912
  };
4974
- } | undefined;
5913
+ }) | undefined;
4975
5914
  sizes?: {
4976
5915
  sm: {
4977
5916
  container: {
@@ -5002,77 +5941,23 @@ declare const theme: {
5002
5941
  };
5003
5942
  } | undefined;
5004
5943
  variants?: {
5005
- solid: ({ colorMode }: _chakra_ui_styled_system.StyleFunctionProps) => {
5006
- track: {
5007
- _hover: {
5008
- backgroundColor: string;
5009
- boxShadow: string;
5010
- };
5011
- _checked: {
5012
- backgroundColor: string;
5013
- _hover: {
5014
- backgroundColor: string;
5015
- boxShadow: string;
5016
- };
5017
- };
5018
- _disabled: {
5019
- backgroundColor: string;
5020
- boxShadow: string;
5021
- _checked: {
5022
- backgroundColor: string;
5023
- boxShadow: string;
5024
- };
5025
- };
5026
- _focusVisible: {
5027
- outlineWidth: string;
5028
- outlineColor: string;
5029
- outlineStyle: string;
5030
- outlineOffset: string;
5031
- };
5032
- backgroundColor: string;
5033
- boxShadow: string;
5034
- };
5035
- thumb: {
5036
- backgroundColor: string;
5037
- "[data-disabled] &": {
5038
- backgroundColor: string;
5039
- };
5040
- };
5041
- };
5042
- outline: {
5043
- track: {
5044
- backgroundColor: string;
5045
- boxShadow: string;
5046
- _hover: {
5047
- backgroundColor: string;
5048
- };
5049
- _checked: {
5050
- backgroundColor: string;
5051
- _hover: {
5052
- backgroundColor: string;
5053
- };
5054
- };
5055
- };
5056
- thumb: {
5057
- backgroundColor: string;
5058
- _checked: {
5059
- backgroundColor: string;
5060
- };
5061
- };
5062
- };
5944
+ [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5945
+ keys: ("label" | "track" | "container" | "thumb")[];
5946
+ }>;
5063
5947
  } | undefined;
5064
5948
  defaultProps?: {
5065
5949
  size?: "sm" | "md" | "lg" | undefined;
5066
- variant?: "solid" | "outline" | undefined;
5950
+ variant?: string | number | undefined;
5067
5951
  colorScheme?: string | undefined;
5068
5952
  } | undefined;
5069
5953
  parts: ("label" | "track" | "container" | "thumb")[];
5070
5954
  };
5071
5955
  Table: {
5072
- baseStyle?: {
5956
+ baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5073
5957
  table: {
5074
- borderCollapse: string;
5075
5958
  width: string;
5959
+ color: string;
5960
+ borderCollapse: string;
5076
5961
  };
5077
5962
  th: {
5078
5963
  fontWeight: string;
@@ -5091,13 +5976,13 @@ declare const theme: {
5091
5976
  };
5092
5977
  };
5093
5978
  caption: {
5094
- mt: number;
5979
+ marginTop: number;
5095
5980
  fontFamily: string;
5096
5981
  textAlign: string;
5097
5982
  fontWeight: string;
5098
5983
  color: string;
5099
5984
  };
5100
- } | undefined;
5985
+ }) | undefined;
5101
5986
  sizes?: {
5102
5987
  sm: {
5103
5988
  table: {
@@ -5153,9 +6038,6 @@ declare const theme: {
5153
6038
  } | undefined;
5154
6039
  variants?: {
5155
6040
  simple: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5156
- table: {
5157
- color: string;
5158
- };
5159
6041
  th: {
5160
6042
  "&[data-is-numeric=true]": {
5161
6043
  textAlign: string;
@@ -5177,8 +6059,19 @@ declare const theme: {
5177
6059
  transitionDuration: string;
5178
6060
  transitionProperty: string;
5179
6061
  _hover: {
5180
- boxShadow: string;
6062
+ outlineOffset: string;
6063
+ backgroundColor: string;
6064
+ outlineWidth: string;
6065
+ outlineColor: string;
6066
+ outlineStyle: string;
6067
+ } | {
6068
+ outlineOffset: string;
5181
6069
  backgroundColor: string;
6070
+ outline: string;
6071
+ outlineColor: string;
6072
+ };
6073
+ _last: {
6074
+ borderBottomRadius: string;
5182
6075
  };
5183
6076
  };
5184
6077
  };
@@ -5186,7 +6079,6 @@ declare const theme: {
5186
6079
  "&[data-is-numeric=true]": {
5187
6080
  textAlign: string;
5188
6081
  };
5189
- color: string;
5190
6082
  border: (props: Record<string, any> | _chakra_ui_styled_system.StyleFunctionProps) => string;
5191
6083
  borderColor: string;
5192
6084
  backgroundColor: string;
@@ -5225,143 +6117,29 @@ declare const theme: {
5225
6117
  flexDirection: string;
5226
6118
  };
5227
6119
  tablist: {
5228
- backgroundColor: string;
5229
- color: string;
5230
- boxShadow?: undefined;
5231
- display: string;
5232
- alignItems: string;
5233
- gap: number;
5234
- width: string;
5235
- } | {
5236
- backgroundColor: string;
5237
- color: string;
5238
- boxShadow: string;
5239
- display: string;
5240
- alignItems: string;
5241
- gap: number;
5242
- width: string;
5243
- } | {
5244
- backgroundColor?: undefined;
5245
- color?: undefined;
5246
- boxShadow?: undefined;
5247
6120
  display: string;
5248
6121
  alignItems: string;
5249
6122
  gap: number;
5250
6123
  width: string;
6124
+ borderRadius: string;
5251
6125
  };
5252
6126
  tab: {
5253
- _hover: {
5254
- backgroundColor: string;
5255
- boxShadow?: undefined;
5256
- color?: undefined;
5257
- } | {
5258
- boxShadow: string;
5259
- color: string;
5260
- backgroundColor?: undefined;
5261
- } | {
5262
- backgroundColor: string;
5263
- color: string;
5264
- boxShadow?: undefined;
5265
- } | {
5266
- backgroundColor?: undefined;
5267
- boxShadow?: undefined;
5268
- color?: undefined;
5269
- };
5270
- _active: {
5271
- backgroundColor: string;
5272
- color: string;
5273
- } | {
5274
- backgroundColor?: undefined;
5275
- color?: undefined;
5276
- };
5277
6127
  _disabled: {
5278
6128
  color: string;
5279
- } | {
5280
- color?: undefined;
5281
- };
5282
- _focusVisible: {
5283
- outlineWidth: string;
5284
- outlineColor: string;
5285
- outlineStyle: string;
5286
- outlineOffset: string;
6129
+ backgroundColor: string;
5287
6130
  };
5288
6131
  _selected: {
5289
- backgroundColor: string;
5290
- color: string;
5291
- _focus: {
5292
- boxShadow: string;
5293
- };
5294
- "&:focus:not(:focus-visible)": {
5295
- boxShadow: string;
5296
- };
5297
- _focusVisible: {
5298
- boxShadow: string;
5299
- };
5300
6132
  _hover: {
5301
- backgroundColor: string;
5302
- color: string;
5303
- };
5304
- _active: {
5305
- backgroundColor: string;
5306
6133
  color: string;
5307
- };
5308
- boxShadow: string;
5309
- pointerEvents: string;
5310
- } | {
5311
- backgroundColor: string;
5312
- color: string;
5313
- _hover: {
5314
6134
  backgroundColor: string;
5315
- color: string;
5316
6135
  };
5317
6136
  _active: {
5318
- backgroundColor: string;
5319
6137
  color: string;
6138
+ backgroundColor: string;
5320
6139
  };
5321
- _focus?: undefined;
5322
- "&:focus:not(:focus-visible)"?: undefined;
5323
- _focusVisible?: undefined;
5324
- boxShadow: string;
5325
- pointerEvents: string;
5326
- };
5327
- color: string;
5328
- display: string;
5329
- justifyContent: string;
5330
- alignItems: string;
5331
- transitionProperty: string;
5332
- transitionDuration: string;
5333
- width: string;
5334
- height: string;
5335
- whiteSpace: string;
5336
- } | {
5337
- _hover: {
5338
- backgroundColor: string;
5339
- boxShadow?: undefined;
5340
- color?: undefined;
5341
- } | {
5342
- boxShadow: string;
5343
6140
  color: string;
5344
- backgroundColor?: undefined;
5345
- } | {
5346
- backgroundColor: string;
5347
- color: string;
5348
- boxShadow?: undefined;
5349
- } | {
5350
- backgroundColor?: undefined;
5351
- boxShadow?: undefined;
5352
- color?: undefined;
5353
- };
5354
- _active: {
5355
6141
  backgroundColor: string;
5356
- color: string;
5357
- } | {
5358
- backgroundColor?: undefined;
5359
- color?: undefined;
5360
- };
5361
- _disabled: {
5362
- color: string;
5363
- } | {
5364
- color?: undefined;
6142
+ pointerEvents: string;
5365
6143
  };
5366
6144
  _focusVisible: {
5367
6145
  outlineWidth: string;
@@ -5369,46 +6147,6 @@ declare const theme: {
5369
6147
  outlineStyle: string;
5370
6148
  outlineOffset: string;
5371
6149
  };
5372
- _selected: {
5373
- backgroundColor: string;
5374
- color: string;
5375
- _focus: {
5376
- boxShadow: string;
5377
- };
5378
- "&:focus:not(:focus-visible)": {
5379
- boxShadow: string;
5380
- };
5381
- _focusVisible: {
5382
- boxShadow: string;
5383
- };
5384
- _hover: {
5385
- backgroundColor: string;
5386
- color: string;
5387
- };
5388
- _active: {
5389
- backgroundColor: string;
5390
- color: string;
5391
- };
5392
- boxShadow: string;
5393
- pointerEvents: string;
5394
- } | {
5395
- backgroundColor: string;
5396
- color: string;
5397
- _hover: {
5398
- backgroundColor: string;
5399
- color: string;
5400
- };
5401
- _active: {
5402
- backgroundColor: string;
5403
- color: string;
5404
- };
5405
- _focus?: undefined;
5406
- "&:focus:not(:focus-visible)"?: undefined;
5407
- _focusVisible?: undefined;
5408
- boxShadow: string;
5409
- pointerEvents: string;
5410
- };
5411
- color?: undefined;
5412
6150
  display: string;
5413
6151
  justifyContent: string;
5414
6152
  alignItems: string;
@@ -5417,11 +6155,11 @@ declare const theme: {
5417
6155
  width: string;
5418
6156
  height: string;
5419
6157
  whiteSpace: string;
6158
+ borderRadius: string;
5420
6159
  };
5421
- tabpanel: {};
5422
6160
  }) | undefined;
5423
6161
  sizes?: {
5424
- sm: {
6162
+ xs: {
5425
6163
  tablist: {
5426
6164
  height: string;
5427
6165
  padding: string;
@@ -5431,7 +6169,7 @@ declare const theme: {
5431
6169
  paddingY: number;
5432
6170
  };
5433
6171
  };
5434
- md: {
6172
+ sm: {
5435
6173
  tablist: {
5436
6174
  height: string;
5437
6175
  padding: number;
@@ -5440,7 +6178,7 @@ declare const theme: {
5440
6178
  paddingX: number;
5441
6179
  };
5442
6180
  };
5443
- lg: {
6181
+ md: {
5444
6182
  tablist: {
5445
6183
  height: string;
5446
6184
  padding: number;
@@ -5450,7 +6188,7 @@ declare const theme: {
5450
6188
  paddingX: number;
5451
6189
  };
5452
6190
  };
5453
- xl: {
6191
+ lg: {
5454
6192
  tablist: {
5455
6193
  height: string;
5456
6194
  padding: string;
@@ -5462,26 +6200,56 @@ declare const theme: {
5462
6200
  };
5463
6201
  } | undefined;
5464
6202
  variants?: {
5465
- round: {
6203
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5466
6204
  tablist: {
5467
- 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;
5468
6216
  };
5469
6217
  tab: {
5470
- 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;
5471
6232
  };
5472
6233
  };
5473
- square: {
6234
+ accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
5474
6235
  tablist: {
5475
- borderRadius: string;
6236
+ color: string;
6237
+ backgroundColor: string;
5476
6238
  };
5477
6239
  tab: {
5478
- borderRadius: string;
6240
+ _hover: {
6241
+ backgroundColor: string;
6242
+ };
6243
+ _accent: {
6244
+ backgroundColor: string;
6245
+ };
6246
+ color: string;
5479
6247
  };
5480
6248
  };
5481
6249
  } | undefined;
5482
6250
  defaultProps?: {
5483
- size?: "sm" | "md" | "lg" | "xl" | undefined;
5484
- variant?: "round" | "square" | undefined;
6251
+ size?: "sm" | "md" | "lg" | "xs" | undefined;
6252
+ variant?: "base" | "accent" | undefined;
5485
6253
  colorScheme?: string | undefined;
5486
6254
  } | undefined;
5487
6255
  parts: ("tab" | "tablist" | "tabpanel" | "tabpanels" | "root" | "indicator")[];
@@ -5500,10 +6268,87 @@ declare const theme: {
5500
6268
  transform: string;
5501
6269
  };
5502
6270
  };
5503
- width: string;
5504
- outline: string;
5505
- border: number;
5506
- 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;
5507
6352
  borderRadius: string;
5508
6353
  transitionProperty: string;
5509
6354
  transitionDuration: string;
@@ -5511,13 +6356,42 @@ declare const theme: {
5511
6356
  paddingX: number;
5512
6357
  height: string;
5513
6358
  fontSize: string;
5514
- boxShadow: string;
5515
- _active: {
5516
- backgroundColor: string;
5517
- 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
+ };
5518
6375
  };
5519
6376
  _hover: {
5520
- 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;
5521
6395
  };
5522
6396
  _focusVisible: {
5523
6397
  outlineOffset: number;
@@ -5526,15 +6400,44 @@ declare const theme: {
5526
6400
  outlineStyle: string;
5527
6401
  };
5528
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;
5529
6413
  backgroundColor: string;
5530
- boxShadow: string;
5531
- cursor: string;
5532
6414
  };
5533
6415
  _invalid: {
5534
- boxShadow: string;
5535
6416
  _hover: {
5536
- 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;
5537
6438
  };
6439
+ outline: string;
6440
+ outlineColor: string;
5538
6441
  };
5539
6442
  " + label": {
5540
6443
  fontSize: ("mobile.sm" | "desktop.sm")[];
@@ -5547,6 +6450,18 @@ declare const theme: {
5547
6450
  transformOrigin: string;
5548
6451
  cursor: string;
5549
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;
5550
6465
  }) | undefined;
5551
6466
  sizes?: {
5552
6467
  [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
@@ -5611,6 +6526,7 @@ declare const theme: {
5611
6526
  outlineStyle: string;
5612
6527
  outlineOffset: string;
5613
6528
  };
6529
+ boxShadow: string;
5614
6530
  _hover: {
5615
6531
  boxShadow: string;
5616
6532
  };
@@ -5639,6 +6555,7 @@ declare const theme: {
5639
6555
  outlineStyle: string;
5640
6556
  outlineOffset: string;
5641
6557
  };
6558
+ boxShadow: string;
5642
6559
  _hover: {
5643
6560
  boxShadow: string;
5644
6561
  };
@@ -5679,7 +6596,7 @@ declare const theme: {
5679
6596
  transform: string;
5680
6597
  zIndex: string;
5681
6598
  stroke: string;
5682
- color: "ocean" | "golden" | "brightRed";
6599
+ color: "brightRed" | "golden" | "ocean";
5683
6600
  };
5684
6601
  }) | undefined;
5685
6602
  sizes?: {
@@ -5823,81 +6740,6 @@ declare const theme: {
5823
6740
  } | undefined;
5824
6741
  parts: ("title" | "container" | "icon" | "description" | "iconContainer" | "textContainer" | "deviationIcon")[];
5825
6742
  };
5826
- AlertExpandable: {
5827
- baseStyle?: {
5828
- container: {
5829
- paddingX: number;
5830
- paddingY: number;
5831
- fontSize: string;
5832
- _expanded: {
5833
- borderBottomRadius: string;
5834
- };
5835
- };
5836
- } | undefined;
5837
- sizes?: {
5838
- [key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
5839
- keys: "container"[];
5840
- }>;
5841
- } | undefined;
5842
- variants?: {
5843
- info: {
5844
- container: {
5845
- _hover: {
5846
- boxShadow: string;
5847
- };
5848
- _active: {
5849
- backgroundColor: string;
5850
- };
5851
- };
5852
- };
5853
- success: {
5854
- container: {
5855
- _hover: {
5856
- boxShadow: string;
5857
- };
5858
- _active: {
5859
- backgroundColor: string;
5860
- };
5861
- };
5862
- };
5863
- warning: {
5864
- container: {
5865
- _hover: {
5866
- boxShadow: string;
5867
- };
5868
- _active: {
5869
- backgroundColor: string;
5870
- };
5871
- };
5872
- };
5873
- "alt-transport": {
5874
- container: {
5875
- _hover: {
5876
- boxShadow: string;
5877
- };
5878
- _active: {
5879
- backgroundColor: string;
5880
- };
5881
- };
5882
- };
5883
- error: {
5884
- container: {
5885
- _hover: {
5886
- boxShadow: string;
5887
- };
5888
- _active: {
5889
- backgroundColor: string;
5890
- };
5891
- };
5892
- };
5893
- } | undefined;
5894
- defaultProps?: {
5895
- size?: string | number | undefined;
5896
- variant?: "error" | "info" | "success" | "warning" | "alt-transport" | undefined;
5897
- colorScheme?: string | undefined;
5898
- } | undefined;
5899
- parts: "container"[];
5900
- };
5901
6743
  Avatar: {
5902
6744
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
5903
6745
  badge: {
@@ -7574,14 +8416,17 @@ declare const theme: {
7574
8416
  direction: "ltr";
7575
8417
  };
7576
8418
  declare const brandTheme: {
7577
- VyDigital: {
7578
- colors: {
7579
- accent: string;
7580
- };
7581
- };
8419
+ VyDigital: {};
7582
8420
  VyUtvikling: {
7583
8421
  colors: {
7584
- accent: string;
8422
+ accent: {
8423
+ surface: {
8424
+ default: {
8425
+ light: string;
8426
+ dark: string;
8427
+ };
8428
+ };
8429
+ };
7585
8430
  };
7586
8431
  };
7587
8432
  };