@pathscale/ui 1.2.9 → 1.2.11

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 (125) hide show
  1. package/LICENSE +22 -22
  2. package/README.md +59 -59
  3. package/dist/components/accordion/Accordion.css +158 -158
  4. package/dist/components/alert/Alert.css +116 -116
  5. package/dist/components/avatar/Avatar.css +124 -124
  6. package/dist/components/badge/Badge.css +164 -164
  7. package/dist/components/breadcrumbs/Breadcrumbs.css +63 -63
  8. package/dist/components/button/Button.css +194 -194
  9. package/dist/components/button-group/ButtonGroup.css +117 -117
  10. package/dist/components/calendar/Calendar.css +258 -258
  11. package/dist/components/card/Card.css +110 -110
  12. package/dist/components/chatbubble/ChatBubble.css +164 -164
  13. package/dist/components/checkbox/Checkbox.css +183 -183
  14. package/dist/components/checkbox-group/CheckboxGroup.css +10 -10
  15. package/dist/components/chip/Chip.css +197 -197
  16. package/dist/components/close-button/CloseButton.css +81 -81
  17. package/dist/components/color-area/ColorArea.css +54 -54
  18. package/dist/components/color-field/ColorField.css +88 -88
  19. package/dist/components/color-picker/ColorPicker.css +28 -28
  20. package/dist/components/color-slider/ColorSlider.css +57 -57
  21. package/dist/components/color-swatch/ColorSwatch.css +84 -84
  22. package/dist/components/color-swatch-picker/ColorSwatchPicker.css +12 -12
  23. package/dist/components/color-wheel-flower/ColorWheelFlower.css +147 -147
  24. package/dist/components/combo-box/ComboBox.css +344 -344
  25. package/dist/components/date-field/DateField.css +215 -215
  26. package/dist/components/date-picker/DatePicker.css +143 -143
  27. package/dist/components/date-range-picker/DateRangePicker.css +149 -149
  28. package/dist/components/description/Description.css +10 -10
  29. package/dist/components/disclosure/Disclosure.css +84 -84
  30. package/dist/components/disclosure-group/DisclosureGroup.css +9 -9
  31. package/dist/components/drawer/Drawer.css +463 -463
  32. package/dist/components/dropdown/Dropdown.css +211 -211
  33. package/dist/components/empty-state/EmptyState.css +39 -39
  34. package/dist/components/error-message/ErrorMessage.css +20 -20
  35. package/dist/components/field-error/FieldError.css +27 -27
  36. package/dist/components/fieldset/Fieldset.css +30 -30
  37. package/dist/components/flex/Flex.css +5 -5
  38. package/dist/components/floating-dock/FloatingDock.css +208 -208
  39. package/dist/components/footer/footer.css +51 -51
  40. package/dist/components/form/Form.css +5 -5
  41. package/dist/components/glass-panel/GlassPanel.css +359 -359
  42. package/dist/components/glow-card/GlowCard.css +100 -100
  43. package/dist/components/grid/Grid.css +5 -5
  44. package/dist/components/header/Header.css +13 -13
  45. package/dist/components/icon/Icon.css +10 -10
  46. package/dist/components/immersive-landing/ImmersiveLanding.css +565 -565
  47. package/dist/components/input/Input.css +155 -155
  48. package/dist/components/input-group/InputGroup.css +172 -172
  49. package/dist/components/input-otp/InputOTP.css +170 -170
  50. package/dist/components/kbd/Kbd.css +60 -60
  51. package/dist/components/label/Label.css +30 -30
  52. package/dist/components/language-switcher/LanguageSwitcher.css +56 -56
  53. package/dist/components/link/Link.css +131 -131
  54. package/dist/components/list-box/ListBox.css +148 -148
  55. package/dist/components/live-chat/LiveChat.css +324 -324
  56. package/dist/components/menu/Menu.css +199 -199
  57. package/dist/components/metal-border/MetalBorder.classes.d.ts +26 -0
  58. package/dist/components/metal-border/MetalBorder.classes.js +27 -0
  59. package/dist/components/metal-border/MetalBorder.css +40 -0
  60. package/dist/components/metal-border/MetalBorder.d.ts +20 -0
  61. package/dist/components/metal-border/MetalBorder.js +322 -0
  62. package/dist/components/metal-border/engine/color.d.ts +4 -0
  63. package/dist/components/metal-border/engine/color.js +69 -0
  64. package/dist/components/metal-border/engine/glow/geometry.d.ts +35 -0
  65. package/dist/components/metal-border/engine/glow/geometry.js +176 -0
  66. package/dist/components/metal-border/engine/glow/glow.d.ts +38 -0
  67. package/dist/components/metal-border/engine/glow/glow.js +246 -0
  68. package/dist/components/metal-border/engine/index.d.ts +4 -0
  69. package/dist/components/metal-border/engine/index.js +2 -0
  70. package/dist/components/metal-border/engine/perfConfig.d.ts +9 -0
  71. package/dist/components/metal-border/engine/perfConfig.js +10 -0
  72. package/dist/components/metal-border/engine/presets.d.ts +57 -0
  73. package/dist/components/metal-border/engine/presets.js +214 -0
  74. package/dist/components/metal-border/engine/renderer/core.d.ts +69 -0
  75. package/dist/components/metal-border/engine/renderer/core.js +156 -0
  76. package/dist/components/metal-border/engine/renderer/loop.d.ts +30 -0
  77. package/dist/components/metal-border/engine/renderer/loop.js +248 -0
  78. package/dist/components/metal-border/engine/renderer/sampling.d.ts +14 -0
  79. package/dist/components/metal-border/engine/renderer/sampling.js +145 -0
  80. package/dist/components/metal-border/engine/shaders.d.ts +36 -0
  81. package/dist/components/metal-border/engine/shaders.js +215 -0
  82. package/dist/components/metal-border/engine/tween.d.ts +17 -0
  83. package/dist/components/metal-border/engine/tween.js +28 -0
  84. package/dist/components/metal-border/index.d.ts +2 -0
  85. package/dist/components/metal-border/index.js +1 -0
  86. package/dist/components/meter/Meter.css +89 -89
  87. package/dist/components/modal/Modal.css +320 -320
  88. package/dist/components/navbar/Navbar.css +110 -110
  89. package/dist/components/noise-background/NoiseBackground.css +66 -66
  90. package/dist/components/number-field/NumberField.css +198 -198
  91. package/dist/components/pagination/Pagination.css +121 -121
  92. package/dist/components/popover/Popover.css +117 -117
  93. package/dist/components/progress-bar/ProgressBar.css +104 -104
  94. package/dist/components/progress-circle/ProgressCircle.css +82 -82
  95. package/dist/components/radio/Radio.css +129 -129
  96. package/dist/components/radio-group/RadioGroup.css +58 -58
  97. package/dist/components/range-calendar/RangeCalendar.css +51 -51
  98. package/dist/components/scroll-shadow/ScrollShadow.css +93 -93
  99. package/dist/components/search-field/SearchField.css +183 -183
  100. package/dist/components/select/Select.css +284 -284
  101. package/dist/components/separator/Separator.css +35 -35
  102. package/dist/components/skeleton/Skeleton.css +95 -95
  103. package/dist/components/slider/Slider.css +122 -122
  104. package/dist/components/spinner/Spinner.css +131 -131
  105. package/dist/components/surface/Surface.css +37 -37
  106. package/dist/components/table/Table.css +426 -426
  107. package/dist/components/tabs/Tabs.css +203 -203
  108. package/dist/components/tag/Tag.css +121 -121
  109. package/dist/components/tag-group/TagGroup.css +22 -22
  110. package/dist/components/text/Text.css +66 -66
  111. package/dist/components/text-area/TextArea.css +95 -95
  112. package/dist/components/text-field/TextField.css +33 -33
  113. package/dist/components/time-field/TimeField.css +215 -215
  114. package/dist/components/toast/Toast.css +344 -344
  115. package/dist/components/toggle/Toggle.css +237 -237
  116. package/dist/components/toolbar/Toolbar.css +55 -55
  117. package/dist/components/tooltip/Tooltip.css +153 -153
  118. package/dist/index.css +74 -74
  119. package/dist/index.d.ts +2 -0
  120. package/dist/index.js +1 -0
  121. package/dist/purge-manifest.json +15100 -14847
  122. package/dist/styles/base/index.css +43 -43
  123. package/dist/styles/themes/dark.css +141 -141
  124. package/dist/styles/themes/light.css +143 -143
  125. package/package.json +3 -3
@@ -1,131 +1,131 @@
1
- @layer components {
2
- .link {
3
- position: relative;
4
- display: inline-flex;
5
- width: fit-content;
6
- height: fit-content;
7
- align-items: center;
8
- border-radius: 0.75rem;
9
- font-size: 0.875rem;
10
- font-weight: 500;
11
- line-height: 1.25rem;
12
- color: var(--color-link, var(--color-accent));
13
- text-decoration-line: underline;
14
- text-decoration-thickness: 1.5px;
15
- text-decoration-color: var(
16
- --color-separator-tertiary,
17
- color-mix(in oklab, var(--color-base-content) 22%, transparent)
18
- );
19
- text-underline-offset: 0.25rem;
20
- cursor: var(--cursor-interactive, pointer);
21
- -webkit-tap-highlight-color: transparent;
22
- transition:
23
- color 100ms var(--ease-smooth, ease),
24
- text-decoration-color 100ms var(--ease-out, ease),
25
- background-color 150ms var(--ease-smooth, ease),
26
- box-shadow 150ms var(--ease-out, ease),
27
- opacity 100ms var(--ease-out, ease);
28
- }
29
-
30
- .link--default {
31
- color: var(--color-link, var(--color-accent));
32
- }
33
-
34
- .link--underline-always {
35
- text-decoration-line: underline;
36
- }
37
-
38
- .link--underline-hover {
39
- text-decoration-line: none;
40
- }
41
-
42
- .link--underline-none {
43
- text-decoration-line: none;
44
- }
45
-
46
- .link:visited {
47
- color: var(
48
- --color-link-visited,
49
- color-mix(in oklab, var(--color-link, var(--color-accent)) 84%, black)
50
- );
51
- }
52
-
53
- @media (hover: hover) {
54
- .link:hover,
55
- .link[data-hovered="true"] {
56
- text-decoration-color: var(
57
- --color-muted,
58
- color-mix(in oklab, var(--color-base-content) 50%, transparent)
59
- );
60
- }
61
-
62
- .link--underline-hover:hover,
63
- .link--underline-hover[data-hovered="true"] {
64
- text-decoration-line: underline;
65
- }
66
- }
67
-
68
- .link:focus-visible,
69
- .link[data-focus-visible="true"] {
70
- outline: 2px solid var(--color-accent);
71
- outline-offset: 2px;
72
- text-decoration-color: currentColor;
73
- }
74
-
75
- .link--disabled,
76
- .link[aria-disabled="true"] {
77
- pointer-events: none;
78
- cursor: not-allowed;
79
- opacity: var(--disabled-opacity, 0.6);
80
- text-decoration-line: none;
81
- }
82
-
83
- .link__icon {
84
- pointer-events: none;
85
- display: inline-flex;
86
- width: 0.5rem;
87
- height: 0.5rem;
88
- flex-shrink: 0;
89
- align-items: center;
90
- justify-content: center;
91
- color: currentColor;
92
- opacity: 0.6;
93
- transition: opacity 150ms var(--ease-out, ease);
94
- }
95
-
96
- .link__icon-default {
97
- display: block;
98
- width: 100%;
99
- height: 100%;
100
- transform: translateY(1px);
101
- }
102
-
103
- .link__icon[data-default-icon="true"] {
104
- margin-left: 0.25rem;
105
- padding-bottom: 0.125rem;
106
- }
107
-
108
- @media (hover: hover) {
109
- .link:hover .link__icon,
110
- .link[data-hovered="true"] .link__icon {
111
- opacity: 1;
112
- }
113
- }
114
-
115
- .link:focus-visible .link__icon,
116
- .link[data-focus-visible="true"] .link__icon {
117
- opacity: 1;
118
- }
119
-
120
- .link.button {
121
- gap: 0;
122
- text-decoration-line: none;
123
- }
124
-
125
- @media (prefers-reduced-motion: reduce) {
126
- .link,
127
- .link__icon {
128
- transition: none;
129
- }
130
- }
131
- }
1
+ @layer components {
2
+ .link {
3
+ position: relative;
4
+ display: inline-flex;
5
+ width: fit-content;
6
+ height: fit-content;
7
+ align-items: center;
8
+ border-radius: 0.75rem;
9
+ font-size: 0.875rem;
10
+ font-weight: 500;
11
+ line-height: 1.25rem;
12
+ color: var(--color-link, var(--color-accent));
13
+ text-decoration-line: underline;
14
+ text-decoration-thickness: 1.5px;
15
+ text-decoration-color: var(
16
+ --color-separator-tertiary,
17
+ color-mix(in oklab, var(--color-base-content) 22%, transparent)
18
+ );
19
+ text-underline-offset: 0.25rem;
20
+ cursor: var(--cursor-interactive, pointer);
21
+ -webkit-tap-highlight-color: transparent;
22
+ transition:
23
+ color 100ms var(--ease-smooth, ease),
24
+ text-decoration-color 100ms var(--ease-out, ease),
25
+ background-color 150ms var(--ease-smooth, ease),
26
+ box-shadow 150ms var(--ease-out, ease),
27
+ opacity 100ms var(--ease-out, ease);
28
+ }
29
+
30
+ .link--default {
31
+ color: var(--color-link, var(--color-accent));
32
+ }
33
+
34
+ .link--underline-always {
35
+ text-decoration-line: underline;
36
+ }
37
+
38
+ .link--underline-hover {
39
+ text-decoration-line: none;
40
+ }
41
+
42
+ .link--underline-none {
43
+ text-decoration-line: none;
44
+ }
45
+
46
+ .link:visited {
47
+ color: var(
48
+ --color-link-visited,
49
+ color-mix(in oklab, var(--color-link, var(--color-accent)) 84%, black)
50
+ );
51
+ }
52
+
53
+ @media (hover: hover) {
54
+ .link:hover,
55
+ .link[data-hovered="true"] {
56
+ text-decoration-color: var(
57
+ --color-muted,
58
+ color-mix(in oklab, var(--color-base-content) 50%, transparent)
59
+ );
60
+ }
61
+
62
+ .link--underline-hover:hover,
63
+ .link--underline-hover[data-hovered="true"] {
64
+ text-decoration-line: underline;
65
+ }
66
+ }
67
+
68
+ .link:focus-visible,
69
+ .link[data-focus-visible="true"] {
70
+ outline: 2px solid var(--color-accent);
71
+ outline-offset: 2px;
72
+ text-decoration-color: currentColor;
73
+ }
74
+
75
+ .link--disabled,
76
+ .link[aria-disabled="true"] {
77
+ pointer-events: none;
78
+ cursor: not-allowed;
79
+ opacity: var(--disabled-opacity, 0.6);
80
+ text-decoration-line: none;
81
+ }
82
+
83
+ .link__icon {
84
+ pointer-events: none;
85
+ display: inline-flex;
86
+ width: 0.5rem;
87
+ height: 0.5rem;
88
+ flex-shrink: 0;
89
+ align-items: center;
90
+ justify-content: center;
91
+ color: currentColor;
92
+ opacity: 0.6;
93
+ transition: opacity 150ms var(--ease-out, ease);
94
+ }
95
+
96
+ .link__icon-default {
97
+ display: block;
98
+ width: 100%;
99
+ height: 100%;
100
+ transform: translateY(1px);
101
+ }
102
+
103
+ .link__icon[data-default-icon="true"] {
104
+ margin-left: 0.25rem;
105
+ padding-bottom: 0.125rem;
106
+ }
107
+
108
+ @media (hover: hover) {
109
+ .link:hover .link__icon,
110
+ .link[data-hovered="true"] .link__icon {
111
+ opacity: 1;
112
+ }
113
+ }
114
+
115
+ .link:focus-visible .link__icon,
116
+ .link[data-focus-visible="true"] .link__icon {
117
+ opacity: 1;
118
+ }
119
+
120
+ .link.button {
121
+ gap: 0;
122
+ text-decoration-line: none;
123
+ }
124
+
125
+ @media (prefers-reduced-motion: reduce) {
126
+ .link,
127
+ .link__icon {
128
+ transition: none;
129
+ }
130
+ }
131
+ }
@@ -1,148 +1,148 @@
1
- @layer components {
2
- .list-box {
3
- position: relative;
4
- display: flex;
5
- width: 100%;
6
- flex-direction: column;
7
- gap: 0.25rem;
8
- overflow: clip;
9
- padding: 0.25rem;
10
- }
11
-
12
- .list-box [data-slot="separator"][data-orientation="horizontal"] {
13
- margin-inline-start: 3%;
14
- width: 94%;
15
- }
16
-
17
- .list-box-item {
18
- position: relative;
19
- display: flex;
20
- min-height: 2.25rem;
21
- width: 100%;
22
- align-items: center;
23
- justify-content: flex-start;
24
- gap: 0.75rem;
25
- border-radius: 1rem;
26
- padding-inline: 0.5rem;
27
- padding-block: 0.375rem;
28
- outline: none;
29
- user-select: none;
30
- -webkit-tap-highlight-color: transparent;
31
- transition:
32
- transform 250ms var(--ease-out-quart),
33
- box-shadow 150ms var(--ease-out);
34
- cursor: var(--cursor-interactive);
35
- }
36
-
37
- @media (prefers-reduced-motion: reduce) {
38
- .list-box-item {
39
- transition: none;
40
- }
41
- }
42
-
43
- .list-box-item [data-slot="label"] {
44
- pointer-events: none;
45
- width: fit-content;
46
- user-select: none;
47
- }
48
-
49
- .list-box-item [data-slot="description"] {
50
- pointer-events: none;
51
- text-wrap: wrap;
52
- user-select: none;
53
- }
54
-
55
- .list-box-item:has(.list-box-item__indicator) {
56
- padding-inline-end: 1.75rem;
57
- }
58
-
59
- .list-box-item:focus-visible:not(:focus),
60
- .list-box-item[data-focus-visible="true"] {
61
- outline: 2px solid var(--color-accent);
62
- outline-offset: 2px;
63
- }
64
-
65
- .list-box-item:active,
66
- .list-box-item[data-pressed="true"] {
67
- transform: scale(0.98);
68
- }
69
-
70
- @media (hover: hover) {
71
- .list-box-item:hover,
72
- .list-box-item[data-hovered="true"] {
73
- background-color: var(--color-default);
74
- }
75
- }
76
-
77
- .list-box-item[data-disabled="true"],
78
- .list-box-item[aria-disabled="true"] {
79
- opacity: 0.5;
80
- cursor: not-allowed;
81
- }
82
-
83
- .list-box-item__indicator {
84
- position: absolute;
85
- inset-inline-end: 0.5rem;
86
- top: 50%;
87
- display: flex;
88
- width: 1rem;
89
- height: 1rem;
90
- flex-shrink: 0;
91
- transform: translateY(-50%);
92
- align-items: center;
93
- justify-content: center;
94
- color: var(--color-default-foreground);
95
- opacity: 0;
96
- transition: all 250ms ease;
97
- }
98
-
99
- .list-box-item__indicator[data-visible="true"] {
100
- opacity: 1;
101
- }
102
-
103
- @media (prefers-reduced-motion: reduce) {
104
- .list-box-item__indicator {
105
- transition: none;
106
- }
107
- }
108
-
109
- .list-box-item__indicator [data-slot="listbox-item-indicator--checkmark"] {
110
- width: 0.625rem;
111
- height: 0.625rem;
112
- transition: all 300ms ease;
113
- }
114
-
115
- @media (prefers-reduced-motion: reduce) {
116
- .list-box-item__indicator [data-slot="listbox-item-indicator--checkmark"] {
117
- transition: none;
118
- }
119
- }
120
-
121
- .list-box-item[aria-selected="true"] [data-slot="listbox-item-indicator--checkmark"],
122
- .list-box-item[data-selected="true"] [data-slot="listbox-item-indicator--checkmark"] {
123
- transition: stroke-dashoffset 250ms linear;
124
- }
125
-
126
- @media (prefers-reduced-motion: reduce) {
127
- .list-box-item[aria-selected="true"] [data-slot="listbox-item-indicator--checkmark"],
128
- .list-box-item[data-selected="true"] [data-slot="listbox-item-indicator--checkmark"] {
129
- transition: none;
130
- }
131
- }
132
-
133
- .list-box-item--danger .list-box-item__indicator,
134
- .list-box-item--danger [data-slot="label"] {
135
- color: var(--color-danger);
136
- }
137
-
138
- .list-box-section {
139
- display: flex;
140
- flex-direction: column;
141
- align-items: flex-start;
142
- gap: 0;
143
- }
144
-
145
- .list-box-section__title {
146
- width: 100%;
147
- }
148
- }
1
+ @layer components {
2
+ .list-box {
3
+ position: relative;
4
+ display: flex;
5
+ width: 100%;
6
+ flex-direction: column;
7
+ gap: 0.25rem;
8
+ overflow: clip;
9
+ padding: 0.25rem;
10
+ }
11
+
12
+ .list-box [data-slot="separator"][data-orientation="horizontal"] {
13
+ margin-inline-start: 3%;
14
+ width: 94%;
15
+ }
16
+
17
+ .list-box-item {
18
+ position: relative;
19
+ display: flex;
20
+ min-height: 2.25rem;
21
+ width: 100%;
22
+ align-items: center;
23
+ justify-content: flex-start;
24
+ gap: 0.75rem;
25
+ border-radius: 1rem;
26
+ padding-inline: 0.5rem;
27
+ padding-block: 0.375rem;
28
+ outline: none;
29
+ user-select: none;
30
+ -webkit-tap-highlight-color: transparent;
31
+ transition:
32
+ transform 250ms var(--ease-out-quart),
33
+ box-shadow 150ms var(--ease-out);
34
+ cursor: var(--cursor-interactive);
35
+ }
36
+
37
+ @media (prefers-reduced-motion: reduce) {
38
+ .list-box-item {
39
+ transition: none;
40
+ }
41
+ }
42
+
43
+ .list-box-item [data-slot="label"] {
44
+ pointer-events: none;
45
+ width: fit-content;
46
+ user-select: none;
47
+ }
48
+
49
+ .list-box-item [data-slot="description"] {
50
+ pointer-events: none;
51
+ text-wrap: wrap;
52
+ user-select: none;
53
+ }
54
+
55
+ .list-box-item:has(.list-box-item__indicator) {
56
+ padding-inline-end: 1.75rem;
57
+ }
58
+
59
+ .list-box-item:focus-visible:not(:focus),
60
+ .list-box-item[data-focus-visible="true"] {
61
+ outline: 2px solid var(--color-accent);
62
+ outline-offset: 2px;
63
+ }
64
+
65
+ .list-box-item:active,
66
+ .list-box-item[data-pressed="true"] {
67
+ transform: scale(0.98);
68
+ }
69
+
70
+ @media (hover: hover) {
71
+ .list-box-item:hover,
72
+ .list-box-item[data-hovered="true"] {
73
+ background-color: var(--color-default);
74
+ }
75
+ }
76
+
77
+ .list-box-item[data-disabled="true"],
78
+ .list-box-item[aria-disabled="true"] {
79
+ opacity: 0.5;
80
+ cursor: not-allowed;
81
+ }
82
+
83
+ .list-box-item__indicator {
84
+ position: absolute;
85
+ inset-inline-end: 0.5rem;
86
+ top: 50%;
87
+ display: flex;
88
+ width: 1rem;
89
+ height: 1rem;
90
+ flex-shrink: 0;
91
+ transform: translateY(-50%);
92
+ align-items: center;
93
+ justify-content: center;
94
+ color: var(--color-default-foreground);
95
+ opacity: 0;
96
+ transition: all 250ms ease;
97
+ }
98
+
99
+ .list-box-item__indicator[data-visible="true"] {
100
+ opacity: 1;
101
+ }
102
+
103
+ @media (prefers-reduced-motion: reduce) {
104
+ .list-box-item__indicator {
105
+ transition: none;
106
+ }
107
+ }
108
+
109
+ .list-box-item__indicator [data-slot="listbox-item-indicator--checkmark"] {
110
+ width: 0.625rem;
111
+ height: 0.625rem;
112
+ transition: all 300ms ease;
113
+ }
114
+
115
+ @media (prefers-reduced-motion: reduce) {
116
+ .list-box-item__indicator [data-slot="listbox-item-indicator--checkmark"] {
117
+ transition: none;
118
+ }
119
+ }
120
+
121
+ .list-box-item[aria-selected="true"] [data-slot="listbox-item-indicator--checkmark"],
122
+ .list-box-item[data-selected="true"] [data-slot="listbox-item-indicator--checkmark"] {
123
+ transition: stroke-dashoffset 250ms linear;
124
+ }
125
+
126
+ @media (prefers-reduced-motion: reduce) {
127
+ .list-box-item[aria-selected="true"] [data-slot="listbox-item-indicator--checkmark"],
128
+ .list-box-item[data-selected="true"] [data-slot="listbox-item-indicator--checkmark"] {
129
+ transition: none;
130
+ }
131
+ }
132
+
133
+ .list-box-item--danger .list-box-item__indicator,
134
+ .list-box-item--danger [data-slot="label"] {
135
+ color: var(--color-danger);
136
+ }
137
+
138
+ .list-box-section {
139
+ display: flex;
140
+ flex-direction: column;
141
+ align-items: flex-start;
142
+ gap: 0;
143
+ }
144
+
145
+ .list-box-section__title {
146
+ width: 100%;
147
+ }
148
+ }