@discourser/design-system 0.15.0 → 0.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/{chunk-QC44JPCA.cjs → chunk-ABC7N32K.cjs} +316 -10
  2. package/dist/chunk-ABC7N32K.cjs.map +1 -0
  3. package/dist/{chunk-F7LHARS4.js → chunk-GD6Q2FUE.js} +446 -6
  4. package/dist/chunk-GD6Q2FUE.js.map +1 -0
  5. package/dist/{chunk-M7J7WKJY.js → chunk-SBKRSXSZ.js} +317 -11
  6. package/dist/chunk-SBKRSXSZ.js.map +1 -0
  7. package/dist/{chunk-QP4EJI3G.cjs → chunk-UNWXE6UB.cjs} +450 -2
  8. package/dist/chunk-UNWXE6UB.cjs.map +1 -0
  9. package/dist/components/Breadcrumb.d.ts +9 -0
  10. package/dist/components/Breadcrumb.d.ts.map +1 -0
  11. package/dist/components/Checkbox.d.ts +6 -6
  12. package/dist/components/Icons/ClockIcon.d.ts +6 -0
  13. package/dist/components/Icons/ClockIcon.d.ts.map +1 -0
  14. package/dist/components/Icons/GripDotsVerticalIcon.d.ts +6 -0
  15. package/dist/components/Icons/GripDotsVerticalIcon.d.ts.map +1 -0
  16. package/dist/components/Icons/index.d.ts +3 -0
  17. package/dist/components/Icons/index.d.ts.map +1 -0
  18. package/dist/components/ScenarioQueue/AddScenarioDialog.d.ts +16 -0
  19. package/dist/components/ScenarioQueue/AddScenarioDialog.d.ts.map +1 -0
  20. package/dist/components/ScenarioQueue/ScenarioCard.d.ts +10 -0
  21. package/dist/components/ScenarioQueue/ScenarioCard.d.ts.map +1 -0
  22. package/dist/components/ScenarioQueue/ScenarioCardDraggable.d.ts +15 -0
  23. package/dist/components/ScenarioQueue/ScenarioCardDraggable.d.ts.map +1 -0
  24. package/dist/components/ScenarioQueue/ScenarioQueue.d.ts +3 -0
  25. package/dist/components/ScenarioQueue/ScenarioQueue.d.ts.map +1 -0
  26. package/dist/components/ScenarioQueue/index.d.ts +6 -0
  27. package/dist/components/ScenarioQueue/index.d.ts.map +1 -0
  28. package/dist/components/ScenarioQueue/types.d.ts +56 -0
  29. package/dist/components/ScenarioQueue/types.d.ts.map +1 -0
  30. package/dist/components/index.cjs +65 -33
  31. package/dist/components/index.d.ts +4 -0
  32. package/dist/components/index.d.ts.map +1 -1
  33. package/dist/components/index.js +1 -1
  34. package/dist/index.cjs +69 -37
  35. package/dist/index.js +2 -2
  36. package/dist/preset/index.cjs +2 -2
  37. package/dist/preset/index.d.ts.map +1 -1
  38. package/dist/preset/index.js +1 -1
  39. package/dist/preset/recipes/avatar.d.ts.map +1 -1
  40. package/dist/preset/recipes/breadcrumb.d.ts +2 -0
  41. package/dist/preset/recipes/breadcrumb.d.ts.map +1 -0
  42. package/dist/preset/recipes/checkbox.d.ts.map +1 -1
  43. package/dist/preset/recipes/field.d.ts.map +1 -1
  44. package/dist/preset/recipes/index.d.ts +3 -0
  45. package/dist/preset/recipes/index.d.ts.map +1 -1
  46. package/dist/preset/recipes/progress.d.ts.map +1 -1
  47. package/dist/preset/recipes/radio-group.d.ts.map +1 -1
  48. package/dist/preset/recipes/scenario-card.d.ts +2 -0
  49. package/dist/preset/recipes/scenario-card.d.ts.map +1 -0
  50. package/dist/preset/recipes/scenario-queue.d.ts +2 -0
  51. package/dist/preset/recipes/scenario-queue.d.ts.map +1 -0
  52. package/dist/preset/recipes/steps.d.ts.map +1 -1
  53. package/dist/preset/recipes/toast.d.ts.map +1 -1
  54. package/dist/preset/recipes/tooltip.d.ts.map +1 -1
  55. package/dist/preset/semantic-tokens.d.ts +12 -0
  56. package/dist/preset/semantic-tokens.d.ts.map +1 -1
  57. package/package.json +10 -1
  58. package/src/components/Breadcrumb.tsx +34 -0
  59. package/src/components/Icons/ClockIcon.tsx +40 -0
  60. package/src/components/Icons/GripDotsVerticalIcon.tsx +26 -0
  61. package/src/components/Icons/index.ts +2 -0
  62. package/src/components/ScenarioQueue/AddScenarioDialog.tsx +137 -0
  63. package/src/components/ScenarioQueue/ScenarioCard.tsx +120 -0
  64. package/src/components/ScenarioQueue/ScenarioCardDraggable.tsx +41 -0
  65. package/src/components/ScenarioQueue/ScenarioQueue.test.tsx +398 -0
  66. package/src/components/ScenarioQueue/ScenarioQueue.tsx +162 -0
  67. package/src/components/ScenarioQueue/index.ts +11 -0
  68. package/src/components/ScenarioQueue/types.ts +86 -0
  69. package/src/components/index.ts +19 -0
  70. package/src/preset/index.ts +9 -0
  71. package/src/preset/recipes/avatar.ts +1 -2
  72. package/src/preset/recipes/breadcrumb.ts +77 -0
  73. package/src/preset/recipes/checkbox.ts +1 -2
  74. package/src/preset/recipes/field.ts +1 -2
  75. package/src/preset/recipes/index.ts +7 -0
  76. package/src/preset/recipes/progress.ts +1 -2
  77. package/src/preset/recipes/radio-group.ts +1 -2
  78. package/src/preset/recipes/scenario-card.ts +151 -0
  79. package/src/preset/recipes/scenario-queue.ts +99 -0
  80. package/src/preset/recipes/steps.ts +1 -2
  81. package/src/preset/recipes/toast.ts +1 -2
  82. package/src/preset/recipes/tooltip.ts +1 -2
  83. package/src/preset/semantic-tokens.ts +4 -0
  84. package/src/test/setup.ts +12 -0
  85. package/dist/chunk-F7LHARS4.js.map +0 -1
  86. package/dist/chunk-M7J7WKJY.js.map +0 -1
  87. package/dist/chunk-QC44JPCA.cjs.map +0 -1
  88. package/dist/chunk-QP4EJI3G.cjs.map +0 -1
@@ -18,9 +18,9 @@ export declare const Indicator: import("react").ForwardRefExoticComponent<Omit<{
18
18
  mask?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.Mask<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.Mask<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
19
19
  path?: string | undefined | undefined;
20
20
  media?: string | undefined | undefined;
21
+ display?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | `var(--${string})` | readonly string[] | import("../../styled-system/types/csstype").Property.Display | undefined>;
21
22
  min?: number | string | undefined | undefined;
22
23
  max?: number | string | undefined | undefined;
23
- display?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | `var(--${string})` | readonly string[] | import("../../styled-system/types/csstype").Property.Display | undefined>;
24
24
  in?: string | undefined | undefined;
25
25
  clip?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | readonly string[] | import("../../styled-system/types/csstype").Property.Clip | undefined>;
26
26
  clipRule?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.ClipRule | readonly NonNullable<import("../../styled-system/types/csstype").Property.ClipRule | undefined>[] | undefined>;
@@ -31,7 +31,7 @@ export declare const Indicator: import("react").ForwardRefExoticComponent<Omit<{
31
31
  d?: any;
32
32
  direction?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | `var(--${string})` | import("../../styled-system/types/csstype").Property.Direction | readonly NonNullable<import("../../styled-system/types/csstype").Property.Direction | undefined>[] | undefined>;
33
33
  dominantBaseline?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.DominantBaseline | readonly NonNullable<import("../../styled-system/types/csstype").Property.DominantBaseline | undefined>[] | undefined>;
34
- fill?: import("styled-system/types").ConditionalValue<"canvas" | "none" | "current" | "black" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "primary.0" | "primary.10" | "primary.20" | "primary.30" | "primary.40" | "primary.50" | "primary.60" | "primary.70" | "primary.80" | "primary.90" | "primary.95" | "primary.99" | "primary.100" | "secondary.0" | "secondary.10" | "secondary.20" | "secondary.30" | "secondary.40" | "secondary.50" | "secondary.60" | "secondary.70" | "secondary.80" | "secondary.90" | "secondary.95" | "secondary.99" | "secondary.100" | "tertiary.0" | "tertiary.10" | "tertiary.20" | "tertiary.30" | "tertiary.40" | "tertiary.50" | "tertiary.60" | "tertiary.70" | "tertiary.80" | "tertiary.90" | "tertiary.95" | "tertiary.99" | "tertiary.100" | "neutral.0" | "neutral.10" | "neutral.20" | "neutral.30" | "neutral.40" | "neutral.50" | "neutral.60" | "neutral.70" | "neutral.80" | "neutral.90" | "neutral.95" | "neutral.99" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "neutralVariant.0" | "neutralVariant.10" | "neutralVariant.20" | "neutralVariant.30" | "neutralVariant.40" | "neutralVariant.50" | "neutralVariant.60" | "neutralVariant.70" | "neutralVariant.80" | "neutralVariant.90" | "neutralVariant.95" | "neutralVariant.99" | "neutralVariant.100" | "error.0" | "error.10" | "error.20" | "error.30" | "error.40" | "error.50" | "error.60" | "error.70" | "error.80" | "error.90" | "error.95" | "error.99" | "error.100" | "primary.1" | "primary.2" | "primary.3" | "primary.4" | "primary.5" | "primary.6" | "primary.7" | "primary.8" | "primary.9" | "primary.11" | "primary.12" | "primary.a1" | "primary.a2" | "primary.a3" | "primary.a4" | "primary.a5" | "primary.a6" | "primary.a7" | "primary.a8" | "primary.a9" | "primary.a10" | "primary.a11" | "primary.a12" | "primary.solid.bg" | "primary.solid.bg.hover" | "primary.solid.fg" | "primary.subtle.bg" | "primary.subtle.bg.hover" | "primary.subtle.bg.active" | "primary.subtle.fg" | "primary.surface.bg" | "primary.surface.bg.active" | "primary.surface.border" | "primary.surface.border.hover" | "primary.surface.fg" | "primary.outline.bg" | "primary.outline.bg.hover" | "primary.outline.bg.active" | "primary.outline.border" | "primary.outline.fg" | "primary.plain.bg" | "primary.plain.bg.hover" | "primary.plain.bg.active" | "primary.plain.fg" | "secondary.1" | "secondary.2" | "secondary.3" | "secondary.4" | "secondary.5" | "secondary.6" | "secondary.7" | "secondary.8" | "secondary.9" | "secondary.11" | "secondary.12" | "secondary.a1" | "secondary.a2" | "secondary.a3" | "secondary.a4" | "secondary.a5" | "secondary.a6" | "secondary.a7" | "secondary.a8" | "secondary.a9" | "secondary.a10" | "secondary.a11" | "secondary.a12" | "secondary.solid.bg" | "secondary.solid.bg.hover" | "secondary.solid.fg" | "secondary.subtle.bg" | "secondary.subtle.bg.hover" | "secondary.subtle.bg.active" | "secondary.subtle.fg" | "secondary.surface.bg" | "secondary.surface.bg.active" | "secondary.surface.border" | "secondary.surface.border.hover" | "secondary.surface.fg" | "secondary.outline.bg" | "secondary.outline.bg.hover" | "secondary.outline.bg.active" | "secondary.outline.border" | "secondary.outline.fg" | "secondary.plain.bg" | "secondary.plain.bg.hover" | "secondary.plain.bg.active" | "secondary.plain.fg" | "tertiary.1" | "tertiary.2" | "tertiary.3" | "tertiary.4" | "tertiary.5" | "tertiary.6" | "tertiary.7" | "tertiary.8" | "tertiary.9" | "tertiary.11" | "tertiary.12" | "tertiary.a1" | "tertiary.a2" | "tertiary.a3" | "tertiary.a4" | "tertiary.a5" | "tertiary.a6" | "tertiary.a7" | "tertiary.a8" | "tertiary.a9" | "tertiary.a10" | "tertiary.a11" | "tertiary.a12" | "tertiary.solid.bg" | "tertiary.solid.bg.hover" | "tertiary.solid.fg" | "tertiary.subtle.bg" | "tertiary.subtle.bg.hover" | "tertiary.subtle.bg.active" | "tertiary.subtle.fg" | "tertiary.surface.bg" | "tertiary.surface.bg.active" | "tertiary.surface.border" | "tertiary.surface.border.hover" | "tertiary.surface.fg" | "tertiary.outline.bg" | "tertiary.outline.bg.hover" | "tertiary.outline.bg.active" | "tertiary.outline.border" | "tertiary.outline.fg" | "tertiary.plain.bg" | "tertiary.plain.bg.hover" | "tertiary.plain.bg.active" | "tertiary.plain.fg" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "neutral.7" | "neutral.8" | "neutral.9" | "neutral.11" | "neutral.12" | "neutral.a1" | "neutral.a2" | "neutral.a3" | "neutral.a4" | "neutral.a5" | "neutral.a6" | "neutral.a7" | "neutral.a8" | "neutral.a9" | "neutral.a10" | "neutral.a11" | "neutral.a12" | "neutral.solid.bg" | "neutral.solid.bg.hover" | "neutral.solid.fg" | "neutral.subtle.bg" | "neutral.subtle.bg.hover" | "neutral.subtle.bg.active" | "neutral.subtle.fg" | "neutral.surface.bg" | "neutral.surface.bg.hover" | "neutral.surface.bg.active" | "neutral.surface.border" | "neutral.surface.border.hover" | "neutral.surface.fg" | "neutral.outline.bg" | "neutral.outline.bg.hover" | "neutral.outline.bg.active" | "neutral.outline.border" | "neutral.outline.fg" | "neutral.plain.bg" | "neutral.plain.bg.hover" | "neutral.plain.bg.active" | "neutral.plain.fg" | "error.1" | "error.2" | "error.3" | "error.4" | "error.5" | "error.6" | "error.7" | "error.8" | "error.9" | "error.11" | "error.12" | "error" | "error.a1" | "error.a2" | "error.a3" | "error.a4" | "error.a5" | "error.a6" | "error.a7" | "error.a8" | "error.a9" | "error.a10" | "error.a11" | "error.a12" | "error.solid.bg" | "error.solid.bg.hover" | "error.solid.fg" | "error.subtle.bg" | "error.subtle.bg.hover" | "error.subtle.bg.active" | "error.subtle.fg" | "error.surface.bg" | "error.surface.bg.active" | "error.surface.border" | "error.surface.border.hover" | "error.surface.fg" | "error.outline.bg" | "error.outline.bg.hover" | "error.outline.bg.active" | "error.outline.border" | "error.outline.fg" | "error.plain.bg" | "error.plain.bg.hover" | "error.plain.bg.active" | "error.plain.fg" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "border" | "surface" | "surface.dim" | "surface.bright" | "surface.container" | "surface.container.low" | "surface.container.lowest" | "surface.container.high" | "surface.container.highest" | "onSurface" | "onSurface.variant" | "m3Primary" | "m3Primary.container" | "onM3Primary" | "onM3Primary.container" | "m3Secondary" | "m3Secondary.container" | "onM3Secondary" | "onM3Secondary.container" | "m3Tertiary" | "m3Tertiary.container" | "onM3Tertiary" | "onM3Tertiary.container" | "outline" | "outline.variant" | "inverseSurface" | "inverseOnSurface" | "inversePrimary" | "scrim" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.0" | "colorPalette.10" | "colorPalette.20" | "colorPalette.30" | "colorPalette.40" | "colorPalette.60" | "colorPalette.70" | "colorPalette.80" | "colorPalette.90" | "colorPalette.95" | "colorPalette.99" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.11" | "colorPalette.12" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle" | "colorPalette.dim" | "colorPalette.bright" | "colorPalette.container" | "colorPalette.container.low" | "colorPalette.low" | "colorPalette.container.lowest" | "colorPalette.lowest" | "colorPalette.container.high" | "colorPalette.high" | "colorPalette.container.highest" | "colorPalette.highest" | "colorPalette.variant" | import("styled-system/types").AnyString | `var(--${string})` | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | readonly string[] | "child" | "context-fill" | "context-stroke" | undefined>;
34
+ fill?: import("styled-system/types").ConditionalValue<"canvas" | "none" | "current" | "black" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "primary.0" | "primary.10" | "primary.20" | "primary.30" | "primary.40" | "primary.50" | "primary.60" | "primary.70" | "primary.80" | "primary.90" | "primary.95" | "primary.99" | "primary.100" | "secondary.0" | "secondary.10" | "secondary.20" | "secondary.30" | "secondary.40" | "secondary.50" | "secondary.60" | "secondary.70" | "secondary.80" | "secondary.90" | "secondary.95" | "secondary.99" | "secondary.100" | "tertiary.0" | "tertiary.10" | "tertiary.20" | "tertiary.30" | "tertiary.40" | "tertiary.50" | "tertiary.60" | "tertiary.70" | "tertiary.80" | "tertiary.90" | "tertiary.95" | "tertiary.99" | "tertiary.100" | "neutral.0" | "neutral.10" | "neutral.20" | "neutral.30" | "neutral.40" | "neutral.50" | "neutral.60" | "neutral.70" | "neutral.80" | "neutral.90" | "neutral.95" | "neutral.99" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "neutralVariant.0" | "neutralVariant.10" | "neutralVariant.20" | "neutralVariant.30" | "neutralVariant.40" | "neutralVariant.50" | "neutralVariant.60" | "neutralVariant.70" | "neutralVariant.80" | "neutralVariant.90" | "neutralVariant.95" | "neutralVariant.99" | "neutralVariant.100" | "error.0" | "error.10" | "error.20" | "error.30" | "error.40" | "error.50" | "error.60" | "error.70" | "error.80" | "error.90" | "error.95" | "error.99" | "error.100" | "primary.1" | "primary.2" | "primary.3" | "primary.4" | "primary.5" | "primary.6" | "primary.7" | "primary.8" | "primary.9" | "primary.11" | "primary.12" | "primary.a1" | "primary.a2" | "primary.a3" | "primary.a4" | "primary.a5" | "primary.a6" | "primary.a7" | "primary.a8" | "primary.a9" | "primary.a10" | "primary.a11" | "primary.a12" | "primary.solid.bg" | "primary.solid.bg.hover" | "primary.solid.fg" | "primary.subtle.bg" | "primary.subtle.bg.hover" | "primary.subtle.bg.active" | "primary.subtle.fg" | "primary.surface.bg" | "primary.surface.bg.active" | "primary.surface.border" | "primary.surface.border.hover" | "primary.surface.fg" | "primary.outline.bg" | "primary.outline.bg.hover" | "primary.outline.bg.active" | "primary.outline.border" | "primary.outline.fg" | "primary.plain.bg" | "primary.plain.bg.hover" | "primary.plain.bg.active" | "primary.plain.fg" | "secondary.1" | "secondary.2" | "secondary.3" | "secondary.4" | "secondary.5" | "secondary.6" | "secondary.7" | "secondary.8" | "secondary.9" | "secondary.11" | "secondary.12" | "secondary.a1" | "secondary.a2" | "secondary.a3" | "secondary.a4" | "secondary.a5" | "secondary.a6" | "secondary.a7" | "secondary.a8" | "secondary.a9" | "secondary.a10" | "secondary.a11" | "secondary.a12" | "secondary.solid.bg" | "secondary.solid.bg.hover" | "secondary.solid.fg" | "secondary.subtle.bg" | "secondary.subtle.bg.hover" | "secondary.subtle.bg.active" | "secondary.subtle.fg" | "secondary.surface.bg" | "secondary.surface.bg.active" | "secondary.surface.border" | "secondary.surface.border.hover" | "secondary.surface.fg" | "secondary.outline.bg" | "secondary.outline.bg.hover" | "secondary.outline.bg.active" | "secondary.outline.border" | "secondary.outline.fg" | "secondary.plain.bg" | "secondary.plain.bg.hover" | "secondary.plain.bg.active" | "secondary.plain.fg" | "tertiary.1" | "tertiary.2" | "tertiary.3" | "tertiary.4" | "tertiary.5" | "tertiary.6" | "tertiary.7" | "tertiary.8" | "tertiary.9" | "tertiary.11" | "tertiary.12" | "tertiary.a1" | "tertiary.a2" | "tertiary.a3" | "tertiary.a4" | "tertiary.a5" | "tertiary.a6" | "tertiary.a7" | "tertiary.a8" | "tertiary.a9" | "tertiary.a10" | "tertiary.a11" | "tertiary.a12" | "tertiary.solid.bg" | "tertiary.solid.bg.hover" | "tertiary.solid.fg" | "tertiary.subtle.bg" | "tertiary.subtle.bg.hover" | "tertiary.subtle.bg.active" | "tertiary.subtle.fg" | "tertiary.surface.bg" | "tertiary.surface.bg.active" | "tertiary.surface.border" | "tertiary.surface.border.hover" | "tertiary.surface.fg" | "tertiary.outline.bg" | "tertiary.outline.bg.hover" | "tertiary.outline.bg.active" | "tertiary.outline.border" | "tertiary.outline.fg" | "tertiary.plain.bg" | "tertiary.plain.bg.hover" | "tertiary.plain.bg.active" | "tertiary.plain.fg" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "neutral.7" | "neutral.8" | "neutral.9" | "neutral.11" | "neutral.12" | "neutral.a1" | "neutral.a2" | "neutral.a3" | "neutral.a4" | "neutral.a5" | "neutral.a6" | "neutral.a7" | "neutral.a8" | "neutral.a9" | "neutral.a10" | "neutral.a11" | "neutral.a12" | "neutral.solid.bg" | "neutral.solid.bg.hover" | "neutral.solid.fg" | "neutral.subtle.bg" | "neutral.subtle.bg.hover" | "neutral.subtle.bg.active" | "neutral.subtle.fg" | "neutral.surface.bg" | "neutral.surface.bg.hover" | "neutral.surface.bg.active" | "neutral.surface.border" | "neutral.surface.border.hover" | "neutral.surface.fg" | "neutral.outline.bg" | "neutral.outline.bg.hover" | "neutral.outline.bg.active" | "neutral.outline.border" | "neutral.outline.fg" | "neutral.plain.bg" | "neutral.plain.bg.hover" | "neutral.plain.bg.active" | "neutral.plain.fg" | "error.1" | "error.2" | "error.3" | "error.4" | "error.5" | "error.6" | "error.7" | "error.8" | "error.9" | "error.11" | "error.12" | "error" | "error.a1" | "error.a2" | "error.a3" | "error.a4" | "error.a5" | "error.a6" | "error.a7" | "error.a8" | "error.a9" | "error.a10" | "error.a11" | "error.a12" | "error.solid.bg" | "error.solid.bg.hover" | "error.solid.fg" | "error.subtle.bg" | "error.subtle.bg.hover" | "error.subtle.bg.active" | "error.subtle.fg" | "error.surface.bg" | "error.surface.bg.active" | "error.surface.border" | "error.surface.border.hover" | "error.surface.fg" | "error.outline.bg" | "error.outline.bg.hover" | "error.outline.bg.active" | "error.outline.border" | "error.outline.fg" | "error.plain.bg" | "error.plain.bg.hover" | "error.plain.bg.active" | "error.plain.fg" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "border" | "surface" | "surface.dim" | "surface.bright" | "surface.container" | "surface.container.low" | "surface.container.lowest" | "surface.container.high" | "surface.container.highest" | "onSurface" | "onSurface.variant" | "m3Primary" | "m3Primary.container" | "onM3Primary" | "onM3Primary.container" | "m3Secondary" | "m3Secondary.container" | "onM3Secondary" | "onM3Secondary.container" | "m3Tertiary" | "m3Tertiary.container" | "onM3Tertiary" | "onM3Tertiary.container" | "outline" | "outline.variant" | "inverseSurface" | "inverseOnSurface" | "inversePrimary" | "inverseSecondary" | "inverseTertiary" | "scrim" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.0" | "colorPalette.10" | "colorPalette.20" | "colorPalette.30" | "colorPalette.40" | "colorPalette.60" | "colorPalette.70" | "colorPalette.80" | "colorPalette.90" | "colorPalette.95" | "colorPalette.99" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.11" | "colorPalette.12" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle" | "colorPalette.dim" | "colorPalette.bright" | "colorPalette.container" | "colorPalette.container.low" | "colorPalette.low" | "colorPalette.container.lowest" | "colorPalette.lowest" | "colorPalette.container.high" | "colorPalette.high" | "colorPalette.container.highest" | "colorPalette.highest" | "colorPalette.variant" | import("styled-system/types").AnyString | `var(--${string})` | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | readonly string[] | "child" | "context-fill" | "context-stroke" | undefined>;
35
35
  fillOpacity?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.FillOpacity | readonly NonNullable<import("../../styled-system/types/csstype").Property.FillOpacity | undefined>[] | undefined>;
36
36
  fillRule?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.FillRule | readonly NonNullable<import("../../styled-system/types/csstype").Property.FillRule | undefined>[] | undefined>;
37
37
  floodColor?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | readonly string[] | import("../../styled-system/types/csstype").Property.FloodColor | undefined>;
@@ -63,7 +63,7 @@ export declare const Indicator: import("react").ForwardRefExoticComponent<Omit<{
63
63
  shapeRendering?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.ShapeRendering | readonly NonNullable<import("../../styled-system/types/csstype").Property.ShapeRendering | undefined>[] | undefined>;
64
64
  stopColor?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | readonly string[] | import("../../styled-system/types/csstype").Property.StopColor | undefined>;
65
65
  stopOpacity?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.StopOpacity | readonly NonNullable<import("../../styled-system/types/csstype").Property.StopOpacity | undefined>[] | undefined>;
66
- stroke?: import("styled-system/types").ConditionalValue<"canvas" | "none" | "current" | "black" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "primary.0" | "primary.10" | "primary.20" | "primary.30" | "primary.40" | "primary.50" | "primary.60" | "primary.70" | "primary.80" | "primary.90" | "primary.95" | "primary.99" | "primary.100" | "secondary.0" | "secondary.10" | "secondary.20" | "secondary.30" | "secondary.40" | "secondary.50" | "secondary.60" | "secondary.70" | "secondary.80" | "secondary.90" | "secondary.95" | "secondary.99" | "secondary.100" | "tertiary.0" | "tertiary.10" | "tertiary.20" | "tertiary.30" | "tertiary.40" | "tertiary.50" | "tertiary.60" | "tertiary.70" | "tertiary.80" | "tertiary.90" | "tertiary.95" | "tertiary.99" | "tertiary.100" | "neutral.0" | "neutral.10" | "neutral.20" | "neutral.30" | "neutral.40" | "neutral.50" | "neutral.60" | "neutral.70" | "neutral.80" | "neutral.90" | "neutral.95" | "neutral.99" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "neutralVariant.0" | "neutralVariant.10" | "neutralVariant.20" | "neutralVariant.30" | "neutralVariant.40" | "neutralVariant.50" | "neutralVariant.60" | "neutralVariant.70" | "neutralVariant.80" | "neutralVariant.90" | "neutralVariant.95" | "neutralVariant.99" | "neutralVariant.100" | "error.0" | "error.10" | "error.20" | "error.30" | "error.40" | "error.50" | "error.60" | "error.70" | "error.80" | "error.90" | "error.95" | "error.99" | "error.100" | "primary.1" | "primary.2" | "primary.3" | "primary.4" | "primary.5" | "primary.6" | "primary.7" | "primary.8" | "primary.9" | "primary.11" | "primary.12" | "primary.a1" | "primary.a2" | "primary.a3" | "primary.a4" | "primary.a5" | "primary.a6" | "primary.a7" | "primary.a8" | "primary.a9" | "primary.a10" | "primary.a11" | "primary.a12" | "primary.solid.bg" | "primary.solid.bg.hover" | "primary.solid.fg" | "primary.subtle.bg" | "primary.subtle.bg.hover" | "primary.subtle.bg.active" | "primary.subtle.fg" | "primary.surface.bg" | "primary.surface.bg.active" | "primary.surface.border" | "primary.surface.border.hover" | "primary.surface.fg" | "primary.outline.bg" | "primary.outline.bg.hover" | "primary.outline.bg.active" | "primary.outline.border" | "primary.outline.fg" | "primary.plain.bg" | "primary.plain.bg.hover" | "primary.plain.bg.active" | "primary.plain.fg" | "secondary.1" | "secondary.2" | "secondary.3" | "secondary.4" | "secondary.5" | "secondary.6" | "secondary.7" | "secondary.8" | "secondary.9" | "secondary.11" | "secondary.12" | "secondary.a1" | "secondary.a2" | "secondary.a3" | "secondary.a4" | "secondary.a5" | "secondary.a6" | "secondary.a7" | "secondary.a8" | "secondary.a9" | "secondary.a10" | "secondary.a11" | "secondary.a12" | "secondary.solid.bg" | "secondary.solid.bg.hover" | "secondary.solid.fg" | "secondary.subtle.bg" | "secondary.subtle.bg.hover" | "secondary.subtle.bg.active" | "secondary.subtle.fg" | "secondary.surface.bg" | "secondary.surface.bg.active" | "secondary.surface.border" | "secondary.surface.border.hover" | "secondary.surface.fg" | "secondary.outline.bg" | "secondary.outline.bg.hover" | "secondary.outline.bg.active" | "secondary.outline.border" | "secondary.outline.fg" | "secondary.plain.bg" | "secondary.plain.bg.hover" | "secondary.plain.bg.active" | "secondary.plain.fg" | "tertiary.1" | "tertiary.2" | "tertiary.3" | "tertiary.4" | "tertiary.5" | "tertiary.6" | "tertiary.7" | "tertiary.8" | "tertiary.9" | "tertiary.11" | "tertiary.12" | "tertiary.a1" | "tertiary.a2" | "tertiary.a3" | "tertiary.a4" | "tertiary.a5" | "tertiary.a6" | "tertiary.a7" | "tertiary.a8" | "tertiary.a9" | "tertiary.a10" | "tertiary.a11" | "tertiary.a12" | "tertiary.solid.bg" | "tertiary.solid.bg.hover" | "tertiary.solid.fg" | "tertiary.subtle.bg" | "tertiary.subtle.bg.hover" | "tertiary.subtle.bg.active" | "tertiary.subtle.fg" | "tertiary.surface.bg" | "tertiary.surface.bg.active" | "tertiary.surface.border" | "tertiary.surface.border.hover" | "tertiary.surface.fg" | "tertiary.outline.bg" | "tertiary.outline.bg.hover" | "tertiary.outline.bg.active" | "tertiary.outline.border" | "tertiary.outline.fg" | "tertiary.plain.bg" | "tertiary.plain.bg.hover" | "tertiary.plain.bg.active" | "tertiary.plain.fg" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "neutral.7" | "neutral.8" | "neutral.9" | "neutral.11" | "neutral.12" | "neutral.a1" | "neutral.a2" | "neutral.a3" | "neutral.a4" | "neutral.a5" | "neutral.a6" | "neutral.a7" | "neutral.a8" | "neutral.a9" | "neutral.a10" | "neutral.a11" | "neutral.a12" | "neutral.solid.bg" | "neutral.solid.bg.hover" | "neutral.solid.fg" | "neutral.subtle.bg" | "neutral.subtle.bg.hover" | "neutral.subtle.bg.active" | "neutral.subtle.fg" | "neutral.surface.bg" | "neutral.surface.bg.hover" | "neutral.surface.bg.active" | "neutral.surface.border" | "neutral.surface.border.hover" | "neutral.surface.fg" | "neutral.outline.bg" | "neutral.outline.bg.hover" | "neutral.outline.bg.active" | "neutral.outline.border" | "neutral.outline.fg" | "neutral.plain.bg" | "neutral.plain.bg.hover" | "neutral.plain.bg.active" | "neutral.plain.fg" | "error.1" | "error.2" | "error.3" | "error.4" | "error.5" | "error.6" | "error.7" | "error.8" | "error.9" | "error.11" | "error.12" | "error" | "error.a1" | "error.a2" | "error.a3" | "error.a4" | "error.a5" | "error.a6" | "error.a7" | "error.a8" | "error.a9" | "error.a10" | "error.a11" | "error.a12" | "error.solid.bg" | "error.solid.bg.hover" | "error.solid.fg" | "error.subtle.bg" | "error.subtle.bg.hover" | "error.subtle.bg.active" | "error.subtle.fg" | "error.surface.bg" | "error.surface.bg.active" | "error.surface.border" | "error.surface.border.hover" | "error.surface.fg" | "error.outline.bg" | "error.outline.bg.hover" | "error.outline.bg.active" | "error.outline.border" | "error.outline.fg" | "error.plain.bg" | "error.plain.bg.hover" | "error.plain.bg.active" | "error.plain.fg" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "border" | "surface" | "surface.dim" | "surface.bright" | "surface.container" | "surface.container.low" | "surface.container.lowest" | "surface.container.high" | "surface.container.highest" | "onSurface" | "onSurface.variant" | "m3Primary" | "m3Primary.container" | "onM3Primary" | "onM3Primary.container" | "m3Secondary" | "m3Secondary.container" | "onM3Secondary" | "onM3Secondary.container" | "m3Tertiary" | "m3Tertiary.container" | "onM3Tertiary" | "onM3Tertiary.container" | "outline" | "outline.variant" | "inverseSurface" | "inverseOnSurface" | "inversePrimary" | "scrim" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.0" | "colorPalette.10" | "colorPalette.20" | "colorPalette.30" | "colorPalette.40" | "colorPalette.60" | "colorPalette.70" | "colorPalette.80" | "colorPalette.90" | "colorPalette.95" | "colorPalette.99" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.11" | "colorPalette.12" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle" | "colorPalette.dim" | "colorPalette.bright" | "colorPalette.container" | "colorPalette.container.low" | "colorPalette.low" | "colorPalette.container.lowest" | "colorPalette.lowest" | "colorPalette.container.high" | "colorPalette.high" | "colorPalette.container.highest" | "colorPalette.highest" | "colorPalette.variant" | import("styled-system/types").AnyString | `var(--${string})` | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | readonly string[] | "child" | "context-fill" | "context-stroke" | undefined>;
66
+ stroke?: import("styled-system/types").ConditionalValue<"canvas" | "none" | "current" | "black" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "primary.0" | "primary.10" | "primary.20" | "primary.30" | "primary.40" | "primary.50" | "primary.60" | "primary.70" | "primary.80" | "primary.90" | "primary.95" | "primary.99" | "primary.100" | "secondary.0" | "secondary.10" | "secondary.20" | "secondary.30" | "secondary.40" | "secondary.50" | "secondary.60" | "secondary.70" | "secondary.80" | "secondary.90" | "secondary.95" | "secondary.99" | "secondary.100" | "tertiary.0" | "tertiary.10" | "tertiary.20" | "tertiary.30" | "tertiary.40" | "tertiary.50" | "tertiary.60" | "tertiary.70" | "tertiary.80" | "tertiary.90" | "tertiary.95" | "tertiary.99" | "tertiary.100" | "neutral.0" | "neutral.10" | "neutral.20" | "neutral.30" | "neutral.40" | "neutral.50" | "neutral.60" | "neutral.70" | "neutral.80" | "neutral.90" | "neutral.95" | "neutral.99" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "neutralVariant.0" | "neutralVariant.10" | "neutralVariant.20" | "neutralVariant.30" | "neutralVariant.40" | "neutralVariant.50" | "neutralVariant.60" | "neutralVariant.70" | "neutralVariant.80" | "neutralVariant.90" | "neutralVariant.95" | "neutralVariant.99" | "neutralVariant.100" | "error.0" | "error.10" | "error.20" | "error.30" | "error.40" | "error.50" | "error.60" | "error.70" | "error.80" | "error.90" | "error.95" | "error.99" | "error.100" | "primary.1" | "primary.2" | "primary.3" | "primary.4" | "primary.5" | "primary.6" | "primary.7" | "primary.8" | "primary.9" | "primary.11" | "primary.12" | "primary.a1" | "primary.a2" | "primary.a3" | "primary.a4" | "primary.a5" | "primary.a6" | "primary.a7" | "primary.a8" | "primary.a9" | "primary.a10" | "primary.a11" | "primary.a12" | "primary.solid.bg" | "primary.solid.bg.hover" | "primary.solid.fg" | "primary.subtle.bg" | "primary.subtle.bg.hover" | "primary.subtle.bg.active" | "primary.subtle.fg" | "primary.surface.bg" | "primary.surface.bg.active" | "primary.surface.border" | "primary.surface.border.hover" | "primary.surface.fg" | "primary.outline.bg" | "primary.outline.bg.hover" | "primary.outline.bg.active" | "primary.outline.border" | "primary.outline.fg" | "primary.plain.bg" | "primary.plain.bg.hover" | "primary.plain.bg.active" | "primary.plain.fg" | "secondary.1" | "secondary.2" | "secondary.3" | "secondary.4" | "secondary.5" | "secondary.6" | "secondary.7" | "secondary.8" | "secondary.9" | "secondary.11" | "secondary.12" | "secondary.a1" | "secondary.a2" | "secondary.a3" | "secondary.a4" | "secondary.a5" | "secondary.a6" | "secondary.a7" | "secondary.a8" | "secondary.a9" | "secondary.a10" | "secondary.a11" | "secondary.a12" | "secondary.solid.bg" | "secondary.solid.bg.hover" | "secondary.solid.fg" | "secondary.subtle.bg" | "secondary.subtle.bg.hover" | "secondary.subtle.bg.active" | "secondary.subtle.fg" | "secondary.surface.bg" | "secondary.surface.bg.active" | "secondary.surface.border" | "secondary.surface.border.hover" | "secondary.surface.fg" | "secondary.outline.bg" | "secondary.outline.bg.hover" | "secondary.outline.bg.active" | "secondary.outline.border" | "secondary.outline.fg" | "secondary.plain.bg" | "secondary.plain.bg.hover" | "secondary.plain.bg.active" | "secondary.plain.fg" | "tertiary.1" | "tertiary.2" | "tertiary.3" | "tertiary.4" | "tertiary.5" | "tertiary.6" | "tertiary.7" | "tertiary.8" | "tertiary.9" | "tertiary.11" | "tertiary.12" | "tertiary.a1" | "tertiary.a2" | "tertiary.a3" | "tertiary.a4" | "tertiary.a5" | "tertiary.a6" | "tertiary.a7" | "tertiary.a8" | "tertiary.a9" | "tertiary.a10" | "tertiary.a11" | "tertiary.a12" | "tertiary.solid.bg" | "tertiary.solid.bg.hover" | "tertiary.solid.fg" | "tertiary.subtle.bg" | "tertiary.subtle.bg.hover" | "tertiary.subtle.bg.active" | "tertiary.subtle.fg" | "tertiary.surface.bg" | "tertiary.surface.bg.active" | "tertiary.surface.border" | "tertiary.surface.border.hover" | "tertiary.surface.fg" | "tertiary.outline.bg" | "tertiary.outline.bg.hover" | "tertiary.outline.bg.active" | "tertiary.outline.border" | "tertiary.outline.fg" | "tertiary.plain.bg" | "tertiary.plain.bg.hover" | "tertiary.plain.bg.active" | "tertiary.plain.fg" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "neutral.7" | "neutral.8" | "neutral.9" | "neutral.11" | "neutral.12" | "neutral.a1" | "neutral.a2" | "neutral.a3" | "neutral.a4" | "neutral.a5" | "neutral.a6" | "neutral.a7" | "neutral.a8" | "neutral.a9" | "neutral.a10" | "neutral.a11" | "neutral.a12" | "neutral.solid.bg" | "neutral.solid.bg.hover" | "neutral.solid.fg" | "neutral.subtle.bg" | "neutral.subtle.bg.hover" | "neutral.subtle.bg.active" | "neutral.subtle.fg" | "neutral.surface.bg" | "neutral.surface.bg.hover" | "neutral.surface.bg.active" | "neutral.surface.border" | "neutral.surface.border.hover" | "neutral.surface.fg" | "neutral.outline.bg" | "neutral.outline.bg.hover" | "neutral.outline.bg.active" | "neutral.outline.border" | "neutral.outline.fg" | "neutral.plain.bg" | "neutral.plain.bg.hover" | "neutral.plain.bg.active" | "neutral.plain.fg" | "error.1" | "error.2" | "error.3" | "error.4" | "error.5" | "error.6" | "error.7" | "error.8" | "error.9" | "error.11" | "error.12" | "error" | "error.a1" | "error.a2" | "error.a3" | "error.a4" | "error.a5" | "error.a6" | "error.a7" | "error.a8" | "error.a9" | "error.a10" | "error.a11" | "error.a12" | "error.solid.bg" | "error.solid.bg.hover" | "error.solid.fg" | "error.subtle.bg" | "error.subtle.bg.hover" | "error.subtle.bg.active" | "error.subtle.fg" | "error.surface.bg" | "error.surface.bg.active" | "error.surface.border" | "error.surface.border.hover" | "error.surface.fg" | "error.outline.bg" | "error.outline.bg.hover" | "error.outline.bg.active" | "error.outline.border" | "error.outline.fg" | "error.plain.bg" | "error.plain.bg.hover" | "error.plain.bg.active" | "error.plain.fg" | "gray.1" | "gray.2" | "gray.3" | "gray.4" | "gray.5" | "gray.6" | "gray.7" | "gray.8" | "gray.9" | "gray.10" | "gray.11" | "gray.12" | "gray.a1" | "gray.a2" | "gray.a3" | "gray.a4" | "gray.a5" | "gray.a6" | "gray.a7" | "gray.a8" | "gray.a9" | "gray.a10" | "gray.a11" | "gray.a12" | "gray.solid.bg" | "gray.solid.bg.hover" | "gray.solid.fg" | "gray.subtle.bg" | "gray.subtle.bg.hover" | "gray.subtle.bg.active" | "gray.subtle.fg" | "gray.surface.bg" | "gray.surface.bg.hover" | "gray.surface.bg.active" | "gray.surface.border" | "gray.surface.border.hover" | "gray.surface.fg" | "gray.outline.bg" | "gray.outline.bg.hover" | "gray.outline.bg.active" | "gray.outline.border" | "gray.outline.fg" | "gray.plain.bg" | "gray.plain.bg.hover" | "gray.plain.bg.active" | "gray.plain.fg" | "red.1" | "red.2" | "red.3" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "red.11" | "red.12" | "red" | "red.a1" | "red.a2" | "red.a3" | "red.a4" | "red.a5" | "red.a6" | "red.a7" | "red.a8" | "red.a9" | "red.a10" | "red.a11" | "red.a12" | "red.solid.bg" | "red.solid.bg.hover" | "red.solid.fg" | "red.subtle.bg" | "red.subtle.bg.hover" | "red.subtle.bg.active" | "red.subtle.fg" | "red.surface.bg" | "red.surface.bg.active" | "red.surface.border" | "red.surface.border.hover" | "red.surface.fg" | "red.outline.bg" | "red.outline.bg.hover" | "red.outline.bg.active" | "red.outline.border" | "red.outline.fg" | "red.plain.bg" | "red.plain.bg.hover" | "red.plain.bg.active" | "red.plain.fg" | "fg.default" | "fg.muted" | "fg.subtle" | "border" | "surface" | "surface.dim" | "surface.bright" | "surface.container" | "surface.container.low" | "surface.container.lowest" | "surface.container.high" | "surface.container.highest" | "onSurface" | "onSurface.variant" | "m3Primary" | "m3Primary.container" | "onM3Primary" | "onM3Primary.container" | "m3Secondary" | "m3Secondary.container" | "onM3Secondary" | "onM3Secondary.container" | "m3Tertiary" | "m3Tertiary.container" | "onM3Tertiary" | "onM3Tertiary.container" | "outline" | "outline.variant" | "inverseSurface" | "inverseOnSurface" | "inversePrimary" | "inverseSecondary" | "inverseTertiary" | "scrim" | "colorPalette" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.0" | "colorPalette.10" | "colorPalette.20" | "colorPalette.30" | "colorPalette.40" | "colorPalette.60" | "colorPalette.70" | "colorPalette.80" | "colorPalette.90" | "colorPalette.95" | "colorPalette.99" | "colorPalette.1" | "colorPalette.2" | "colorPalette.3" | "colorPalette.4" | "colorPalette.5" | "colorPalette.6" | "colorPalette.7" | "colorPalette.8" | "colorPalette.9" | "colorPalette.11" | "colorPalette.12" | "colorPalette.a1" | "colorPalette.a2" | "colorPalette.a3" | "colorPalette.a4" | "colorPalette.a5" | "colorPalette.a6" | "colorPalette.a7" | "colorPalette.a8" | "colorPalette.a9" | "colorPalette.a10" | "colorPalette.a11" | "colorPalette.a12" | "colorPalette.solid.bg" | "colorPalette.bg" | "colorPalette.solid.bg.hover" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.solid.fg" | "colorPalette.fg" | "colorPalette.subtle.bg" | "colorPalette.subtle.bg.hover" | "colorPalette.subtle.bg.active" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.subtle.fg" | "colorPalette.surface.bg" | "colorPalette.surface.bg.active" | "colorPalette.surface.border" | "colorPalette.border" | "colorPalette.surface.border.hover" | "colorPalette.border.hover" | "colorPalette.surface.fg" | "colorPalette.outline.bg" | "colorPalette.outline.bg.hover" | "colorPalette.outline.bg.active" | "colorPalette.outline.border" | "colorPalette.outline.fg" | "colorPalette.plain.bg" | "colorPalette.plain.bg.hover" | "colorPalette.plain.bg.active" | "colorPalette.plain.fg" | "colorPalette.surface.bg.hover" | "colorPalette.default" | "colorPalette.muted" | "colorPalette.subtle" | "colorPalette.dim" | "colorPalette.bright" | "colorPalette.container" | "colorPalette.container.low" | "colorPalette.low" | "colorPalette.container.lowest" | "colorPalette.lowest" | "colorPalette.container.high" | "colorPalette.high" | "colorPalette.container.highest" | "colorPalette.highest" | "colorPalette.variant" | import("styled-system/types").AnyString | `var(--${string})` | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | readonly string[] | "child" | "context-fill" | "context-stroke" | undefined>;
67
67
  strokeDasharray?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.StrokeDasharray<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.StrokeDasharray<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
68
68
  strokeDashoffset?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.StrokeDashoffset<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.StrokeDashoffset<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
69
69
  strokeLinecap?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.StrokeLinecap | readonly NonNullable<import("../../styled-system/types/csstype").Property.StrokeLinecap | undefined>[] | undefined>;
@@ -80,15 +80,15 @@ export declare const Indicator: import("react").ForwardRefExoticComponent<Omit<{
80
80
  visibility?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | `var(--${string})` | import("../../styled-system/types/csstype").Property.Visibility | readonly NonNullable<import("../../styled-system/types/csstype").Property.Visibility | undefined>[] | undefined>;
81
81
  wordSpacing?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.WordSpacing<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.WordSpacing<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
82
82
  writingMode?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | `var(--${string})` | import("../../styled-system/types/csstype").Property.WritingMode | readonly NonNullable<import("../../styled-system/types/csstype").Property.WritingMode | undefined>[] | undefined>;
83
- x?: import("styled-system/types").ConditionalValue<"full" | import("../../styled-system/tokens").SpacingToken | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
84
- y?: import("styled-system/types").ConditionalValue<"full" | import("../../styled-system/tokens").SpacingToken | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
83
+ x?: import("styled-system/types").ConditionalValue<import("../../styled-system/tokens").SpacingToken | "full" | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
84
+ y?: import("styled-system/types").ConditionalValue<import("../../styled-system/tokens").SpacingToken | "full" | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
85
85
  alignmentBaseline?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.AlignmentBaseline | readonly NonNullable<import("../../styled-system/types/csstype").Property.AlignmentBaseline | undefined>[] | undefined>;
86
86
  baselineShift?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.BaselineShift<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.BaselineShift<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
87
87
  colorInterpolation?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.ColorInterpolation | readonly NonNullable<import("../../styled-system/types/csstype").Property.ColorInterpolation | undefined>[] | undefined>;
88
88
  colorRendering?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.ColorRendering | readonly NonNullable<import("../../styled-system/types/csstype").Property.ColorRendering | undefined>[] | undefined>;
89
89
  glyphOrientationVertical?: import("styled-system/types").ConditionalValue<import("styled-system/types").AnyString | import("../../styled-system/types/csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("../../styled-system/types/csstype").Property.GlyphOrientationVertical | undefined>[] | undefined>;
90
90
  end?: import("styled-system/types").ConditionalValue<import("../../styled-system/tokens").SpacingToken | import("styled-system/types").AnyString | `var(--${string})` | import("../../styled-system/types/csstype").Property.InsetInlineEnd<import("styled-system/types").String | import("styled-system/types").Number> | readonly NonNullable<import("../../styled-system/types/csstype").Property.InsetInlineEnd<import("styled-system/types").String | import("styled-system/types").Number> | undefined>[] | undefined>;
91
- z?: import("styled-system/types").ConditionalValue<"full" | import("../../styled-system/tokens").SpacingToken | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
91
+ z?: import("styled-system/types").ConditionalValue<import("../../styled-system/tokens").SpacingToken | "full" | import("styled-system/types").AnyString | `var(--${string})` | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "-1/2" | "-1/3" | "-2/3" | "-1/4" | "-2/4" | "-3/4" | "-full"> | undefined;
92
92
  orientation?: number | string | undefined | undefined;
93
93
  ref?: import("react").Ref<SVGSVGElement> | undefined;
94
94
  values?: string | undefined | undefined;
@@ -0,0 +1,6 @@
1
+ import type { ComponentProps } from 'react';
2
+ declare const StyledSvg: import("styled-system/jsx").StyledComponent<import("react").ForwardRefExoticComponent<import("react").SVGProps<SVGSVGElement> & import("@ark-ui/react").PolymorphicProps>, {}>;
3
+ export type ClockIconProps = ComponentProps<typeof StyledSvg>;
4
+ export declare const ClockIcon: (props: ClockIconProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=ClockIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClockIcon.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/ClockIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAG3C,QAAA,MAAM,SAAS,gLAAkB,CAAA;AAEjC,MAAM,MAAM,cAAc,GAAG,cAAc,CAAC,OAAO,SAAS,CAAC,CAAA;AAE7D,eAAO,MAAM,SAAS,GAAI,OAAO,cAAc,4CA+B9C,CAAA"}
@@ -0,0 +1,6 @@
1
+ import type { ComponentProps } from 'react';
2
+ declare const StyledSvg: import("styled-system/jsx").StyledComponent<import("react").ForwardRefExoticComponent<import("react").SVGProps<SVGSVGElement> & import("@ark-ui/react").PolymorphicProps>, {}>;
3
+ export type GripDotsVerticalIconProps = ComponentProps<typeof StyledSvg>;
4
+ export declare const GripDotsVerticalIcon: (props: GripDotsVerticalIconProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=GripDotsVerticalIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GripDotsVerticalIcon.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/GripDotsVerticalIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAG3C,QAAA,MAAM,SAAS,gLAAkB,CAAA;AAEjC,MAAM,MAAM,yBAAyB,GAAG,cAAc,CAAC,OAAO,SAAS,CAAC,CAAA;AAExE,eAAO,MAAM,oBAAoB,GAAI,OAAO,yBAAyB,4CAiBpE,CAAA"}
@@ -0,0 +1,3 @@
1
+ export { GripDotsVerticalIcon, type GripDotsVerticalIconProps } from './GripDotsVerticalIcon';
2
+ export { ClockIcon, type ClockIconProps } from './ClockIcon';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,KAAK,yBAAyB,EAAE,MAAM,wBAAwB,CAAA;AAC7F,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAA"}
@@ -0,0 +1,16 @@
1
+ import type { ReactNode } from 'react';
2
+ interface AddScenarioDialogProps {
3
+ open: boolean;
4
+ onClose: () => void;
5
+ /** Render prop slot — consumer injects their scenario collection here. */
6
+ renderContent?: (props: {
7
+ onClose: () => void;
8
+ }) => ReactNode;
9
+ /** Called when user clicks "Browse More Scenarios" in the footer */
10
+ onBrowseMore?: () => void;
11
+ /** Called when user clicks "Build Custom Scenario" in the footer */
12
+ onBuildCustom?: () => void;
13
+ }
14
+ export declare function AddScenarioDialog({ open, onClose, renderContent, onBrowseMore, onBuildCustom, }: AddScenarioDialogProps): import("react/jsx-runtime").JSX.Element;
15
+ export {};
16
+ //# sourceMappingURL=AddScenarioDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddScenarioDialog.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/AddScenarioDialog.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAItC,UAAU,sBAAsB;IAC9B,IAAI,EAAE,OAAO,CAAA;IACb,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,0EAA0E;IAC1E,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,OAAO,EAAE,MAAM,IAAI,CAAA;KAAE,KAAK,SAAS,CAAA;IAC7D,oEAAoE;IACpE,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,oEAAoE;IACpE,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;CAC3B;AAiCD,wBAAgB,iBAAiB,CAAC,EAChC,IAAI,EACJ,OAAO,EACP,aAAa,EACb,YAAY,EACZ,aAAa,GACd,EAAE,sBAAsB,2CAmFxB"}
@@ -0,0 +1,10 @@
1
+ import { type ComponentProps } from 'react';
2
+ import { type ScenarioCardProps } from './types';
3
+ export interface ScenarioCardElementProps extends ScenarioCardProps, Omit<ComponentProps<'div'>, 'children'> {
4
+ /** Callback ref for the root element (used by ScenarioCardDraggable) */
5
+ rootRef?: (el: HTMLDivElement | null) => void;
6
+ /** Callback ref for the drag handle (used by ScenarioCardDraggable) */
7
+ handleRef?: (el: HTMLDivElement | null) => void;
8
+ }
9
+ export declare const ScenarioCard: import("react").ForwardRefExoticComponent<Omit<ScenarioCardElementProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
10
+ //# sourceMappingURL=ScenarioCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScenarioCard.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/ScenarioCard.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,cAAc,EAAc,MAAM,OAAO,CAAA;AAOvD,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,SAAS,CAAA;AAEhB,MAAM,WAAW,wBACf,SAAQ,iBAAiB,EACvB,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC;IACzC,wEAAwE;IACxE,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAA;IAC7C,uEAAuE;IACvE,SAAS,CAAC,EAAE,CAAC,EAAE,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAA;CAChD;AAED,eAAO,MAAM,YAAY,kIAiGxB,CAAA"}
@@ -0,0 +1,15 @@
1
+ import type { Scenario } from './types';
2
+ interface ScenarioCardDraggableProps {
3
+ scenario: Scenario;
4
+ /** 0-based index in the current list (required by useSortable) */
5
+ index: number;
6
+ /** 1-based display position shown in the position badge */
7
+ position: number;
8
+ /** Whether this is the active (first) card */
9
+ isActive: boolean;
10
+ /** Whether this card was previously completed and re-queued */
11
+ isRepeat?: boolean;
12
+ }
13
+ export declare function ScenarioCardDraggable({ scenario, index, position, isActive, isRepeat, }: ScenarioCardDraggableProps): import("react/jsx-runtime").JSX.Element;
14
+ export {};
15
+ //# sourceMappingURL=ScenarioCardDraggable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScenarioCardDraggable.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/ScenarioCardDraggable.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAEvC,UAAU,0BAA0B;IAClC,QAAQ,EAAE,QAAQ,CAAA;IAClB,kEAAkE;IAClE,KAAK,EAAE,MAAM,CAAA;IACb,2DAA2D;IAC3D,QAAQ,EAAE,MAAM,CAAA;IAChB,8CAA8C;IAC9C,QAAQ,EAAE,OAAO,CAAA;IACjB,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,wBAAgB,qBAAqB,CAAC,EACpC,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,QAAQ,GACT,EAAE,0BAA0B,2CAiB5B"}
@@ -0,0 +1,3 @@
1
+ import type { ScenarioQueueProps } from './types';
2
+ export declare function ScenarioQueue({ scenarios, onReorder, onRequeue, onRemove: _onRemove, renderAddScenarioContent, onBrowseMore, onBuildCustom, }: ScenarioQueueProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=ScenarioQueue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScenarioQueue.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/ScenarioQueue.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,kBAAkB,EAAY,MAAM,SAAS,CAAA;AAa3D,wBAAgB,aAAa,CAAC,EAC5B,SAAS,EACT,SAAS,EACT,SAAS,EACT,QAAQ,EAAE,SAAS,EACnB,wBAAwB,EACxB,YAAY,EACZ,aAAa,GACd,EAAE,kBAAkB,2CAiIpB"}
@@ -0,0 +1,6 @@
1
+ export { ScenarioQueue } from './ScenarioQueue';
2
+ export { ScenarioCard } from './ScenarioCard';
3
+ export { AddScenarioDialog } from './AddScenarioDialog';
4
+ export type { ScenarioQueueProps, ScenarioCardProps, Scenario, Difficulty, ScenarioStatus, } from './types';
5
+ export { difficultyColorMap, difficultyLabel } from './types';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,QAAQ,EACR,UAAU,EACV,cAAc,GACf,MAAM,SAAS,CAAA;AAChB,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA"}
@@ -0,0 +1,56 @@
1
+ import type { ReactNode } from 'react';
2
+ export type Difficulty = 'beginner' | 'intermediate' | 'advanced';
3
+ export type ScenarioStatus = 'queued' | 'completed';
4
+ export interface Scenario {
5
+ id: string;
6
+ title: string;
7
+ category: string;
8
+ difficulty: Difficulty;
9
+ /** Display string, e.g. "10-15 min" */
10
+ duration: string;
11
+ status: ScenarioStatus;
12
+ /** True when this card was previously completed and re-queued by the user */
13
+ wasRequeued?: boolean;
14
+ }
15
+ export declare const difficultyColorMap: Record<Difficulty, 'primary' | 'secondary' | 'tertiary'>;
16
+ export declare const difficultyLabel: Record<Difficulty, string>;
17
+ export interface ScenarioQueueProps {
18
+ /** All scenarios — the component splits them by status internally */
19
+ scenarios: Scenario[];
20
+ /** Called when user reorders cards in the "In Queue" tab */
21
+ onReorder?: (reorderedIds: string[]) => void;
22
+ /** Called when user toggles a completed scenario back to the queue */
23
+ onRequeue?: (scenarioId: string) => void;
24
+ /** Called when user removes a scenario from the queue */
25
+ onRemove?: (scenarioId: string) => void;
26
+ /**
27
+ * Render prop / slot for the Add Scenario modal body.
28
+ * The design system provides the Dialog shell; the consumer (discourser.ai)
29
+ * provides the collection content.
30
+ *
31
+ * Receives `onClose` to allow the consumer to close the modal after selection.
32
+ */
33
+ renderAddScenarioContent?: (props: {
34
+ onClose: () => void;
35
+ }) => ReactNode;
36
+ /** Called when user clicks "Browse More Scenarios" link inside the modal */
37
+ onBrowseMore?: () => void;
38
+ /** Called when user clicks "Build Custom Scenario" link inside the modal */
39
+ onBuildCustom?: () => void;
40
+ }
41
+ export interface ScenarioCardProps {
42
+ scenario: Scenario;
43
+ /** 1-based position number shown in the circle badge */
44
+ position: number;
45
+ /** Whether this card is the active (first) scenario */
46
+ isActive: boolean;
47
+ /** Show the re-queue switch (used in Completed tab) */
48
+ showRequeueSwitch?: boolean;
49
+ /** Called when re-queue switch is toggled */
50
+ onRequeue?: (scenarioId: string) => void;
51
+ /** Whether this is a repeat scenario */
52
+ isRepeat?: boolean;
53
+ /** Visual state while the card is being dragged (applies opacity) */
54
+ isDragging?: boolean;
55
+ }
56
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/ScenarioQueue/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMtC,MAAM,MAAM,UAAU,GAAG,UAAU,GAAG,cAAc,GAAG,UAAU,CAAA;AAEjE,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,WAAW,CAAA;AAEnD,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,UAAU,CAAA;IACtB,uCAAuC;IACvC,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,cAAc,CAAA;IACtB,6EAA6E;IAC7E,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AAMD,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,UAAU,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,CAIvF,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAItD,CAAA;AAMD,MAAM,WAAW,kBAAkB;IACjC,qEAAqE;IACrE,SAAS,EAAE,QAAQ,EAAE,CAAA;IAErB,4DAA4D;IAC5D,SAAS,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAE5C,sEAAsE;IACtE,SAAS,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IAExC,yDAAyD;IACzD,QAAQ,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IAEvC;;;;;;OAMG;IACH,wBAAwB,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,OAAO,EAAE,MAAM,IAAI,CAAA;KAAE,KAAK,SAAS,CAAA;IAExE,4EAA4E;IAC5E,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IAEzB,4EAA4E;IAC5E,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;CAC3B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,QAAQ,CAAA;IAClB,wDAAwD;IACxD,QAAQ,EAAE,MAAM,CAAA;IAChB,uDAAuD;IACvD,QAAQ,EAAE,OAAO,CAAA;IACjB,uDAAuD;IACvD,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,wCAAwC;IACxC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qEAAqE;IACrE,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB"}