@enact/limestone 1.3.0 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/.github/workflows/ci-branch.yml +21 -0
  2. package/.github/workflows/ci-pull-request.yml +16 -0
  3. package/.github/workflows/ci-reusable.yml +73 -0
  4. package/ActionGuide/ActionGuide.d.ts +5 -4
  5. package/ActionGuide/ActionGuide.module.css +1 -1
  6. package/Alert/Alert.d.ts +13 -2
  7. package/Alert/Alert.js +39 -5
  8. package/Alert/Alert.module.css +48 -1
  9. package/Alert/tests/Alert-specs.js +91 -0
  10. package/BodyText/BodyText.d.ts +5 -4
  11. package/BodyText/BodyText.module.css +7 -7
  12. package/Button/Button.d.ts +17 -12
  13. package/Button/Button.js +1 -1
  14. package/Button/Button.module.css +195 -268
  15. package/Button/tests/Button-specs.js +26 -0
  16. package/CHANGELOG.md +254 -0
  17. package/Card/Card.d.ts +40 -12
  18. package/Card/Card.js +164 -28
  19. package/Card/Card.module.css +277 -58
  20. package/Card/tests/Card-specs.js +67 -3
  21. package/Checkbox/Checkbox.d.ts +8 -7
  22. package/Checkbox/Checkbox.js +3 -1
  23. package/Checkbox/Checkbox.module.css +213 -120
  24. package/Checkbox/tests/Checkbox-specs.js +1 -1
  25. package/CheckboxItem/CheckboxItem.d.ts +22 -7
  26. package/CheckboxItem/CheckboxItem.js +71 -4
  27. package/Chips/Chip.js +72 -13
  28. package/Chips/Chip.module.css +3 -3
  29. package/Chips/Chips.js +37 -17
  30. package/Chips/Chips.module.css +1 -1
  31. package/Chips/tests/Chip-specs.js +43 -13
  32. package/Chips/tests/Chips-specs.js +31 -21
  33. package/ColorPicker/ColorPicker.js +27 -25
  34. package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +4 -5
  35. package/ContextualPopupDecorator/ContextualPopup.module.css +34 -34
  36. package/ContextualPopupDecorator/ContextualPopupDecorator.js +567 -549
  37. package/DatePicker/DatePicker.d.ts +4 -5
  38. package/DayPicker/DayPicker.d.ts +8 -7
  39. package/DayPicker/DaySelectorDecorator.js +12 -7
  40. package/Dropdown/Dropdown.d.ts +11 -13
  41. package/Dropdown/Dropdown.module.css +13 -9
  42. package/Dropdown/DropdownList.js +80 -54
  43. package/FixedPopupPanels/FixedPopupPanels.d.ts +4 -2
  44. package/FixedPopupPanels/FixedPopupPanels.module.css +18 -18
  45. package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +23 -23
  46. package/FlexiblePopupPanels/useNavButtonFocus.js +7 -10
  47. package/FormCheckboxItem/FormCheckboxItem.d.ts +5 -4
  48. package/Heading/Heading.d.ts +9 -8
  49. package/Heading/Heading.js +2 -2
  50. package/Heading/Heading.module.css +5 -5
  51. package/Icon/Icon.d.ts +15 -4
  52. package/Icon/Icon.js +49 -2
  53. package/Icon/Icon.module.css +1 -1
  54. package/Icon/IconList.js +27 -1
  55. package/IconItem/IconItem.d.ts +13 -12
  56. package/IconItem/IconItem.js +15 -0
  57. package/IconItem/IconItem.module.css +107 -1
  58. package/IconItem/tests/IconItem-specs.js +30 -1
  59. package/Image/Image.d.ts +5 -4
  60. package/Image/Image.js +6 -4
  61. package/ImageItem/ImageItem.d.ts +11 -10
  62. package/ImageItem/ImageItem.js +37 -31
  63. package/ImageItem/ImageItem.module.css +30 -30
  64. package/ImageItem/tests/ImageItem-specs.js +3 -10
  65. package/Input/Input.js +21 -3
  66. package/Input/Input.module.css +37 -8
  67. package/Input/InputField.js +79 -24
  68. package/Input/InputField.module.css +273 -41
  69. package/Input/InputFieldDecoratorIcon.js +1 -0
  70. package/Input/InputFieldSpotlightDecorator.js +257 -228
  71. package/Input/index.d.ts +120 -111
  72. package/Input/tests/Input-specs.js +26 -0
  73. package/Input/tests/InputField-specs.js +170 -3
  74. package/Input/tests/InputPopup-specs.js +1 -1
  75. package/Item/Item.d.ts +16 -9
  76. package/Item/Item.js +20 -2
  77. package/Item/Item.module.css +1 -1
  78. package/KeyGuide/KeyGuide.d.ts +8 -7
  79. package/KeyGuide/KeyGuide.js +29 -27
  80. package/KeyGuide/KeyGuide.module.css +25 -1
  81. package/Marquee/Marquee.d.ts +2 -4
  82. package/MediaOverlay/MediaOverlay.d.ts +12 -11
  83. package/MediaOverlay/MediaOverlay.js +43 -21
  84. package/MediaOverlay/MediaOverlay.module.css +114 -15
  85. package/MediaOverlay/tests/MediaOverlay-specs.js +29 -0
  86. package/MediaPlayer/MediaControls.js +195 -13
  87. package/MediaPlayer/MediaControls.module.css +3 -2
  88. package/MediaPlayer/MediaSlider.module.css +7 -20
  89. package/MediaPlayer/index.d.ts +59 -7
  90. package/MediaPlayer/tests/util-specs.js +4 -1
  91. package/PageViews/PageViews.js +232 -82
  92. package/PageViews/PageViews.module.css +3 -0
  93. package/PageViews/PageViewsRouter.js +100 -42
  94. package/PageViews/tests/PageViews-specs.js +171 -0
  95. package/Panels/Header.js +54 -34
  96. package/Panels/Header.module.css +83 -31
  97. package/Panels/Panel.module.css +1 -1
  98. package/Panels/index.d.ts +7 -8
  99. package/Picker/Picker.d.ts +4 -5
  100. package/Picker/Picker.module.css +2 -2
  101. package/Popup/Popup.js +245 -242
  102. package/Popup/Popup.module.css +24 -24
  103. package/PopupTabLayout/PopupTabLayout.d.ts +5 -7
  104. package/PopupTabLayout/PopupTabLayout.js +26 -18
  105. package/PopupTabLayout/PopupTabLayout.module.css +53 -16
  106. package/PopupTabLayout/PopupTabLayoutStateContext.js +8 -0
  107. package/ProgressBar/ProgressBar.d.ts +5 -4
  108. package/ProgressBar/ProgressBarTooltip.module.css +12 -12
  109. package/ProgressButton/ProgressButton.d.ts +4 -5
  110. package/QuickGuidePanels/QuickGuidePanels.module.css +2 -2
  111. package/RadioItem/RadioItem.d.ts +18 -5
  112. package/RadioItem/RadioItem.js +69 -2
  113. package/RadioItem/RadioItem.module.css +36 -36
  114. package/RangePicker/RangePicker.module.css +2 -2
  115. package/Scroller/EditableWrapper.js +28 -18
  116. package/Scroller/Scroller.d.ts +20 -16
  117. package/Scroller/Scroller.js +20 -13
  118. package/Scroller/Scroller.module.css +4 -4
  119. package/Scroller/useThemeScroller.js +3 -3
  120. package/Slider/Slider.d.ts +20 -14
  121. package/Slider/Slider.js +71 -14
  122. package/Slider/Slider.module.css +464 -91
  123. package/Slider/SliderBehaviorDecorator.js +16 -14
  124. package/Slider/tests/Slider-specs.js +53 -1
  125. package/Slider/utils.js +23 -7
  126. package/Spinner/Spinner.d.ts +5 -4
  127. package/Spinner/Spinner.js +10 -8
  128. package/Spinner/Spinner.module.css +9 -9
  129. package/Steps/Steps.d.ts +5 -4
  130. package/Steps/Steps.js +9 -5
  131. package/Switch/Switch.d.ts +8 -7
  132. package/Switch/Switch.module.css +100 -13
  133. package/SwitchItem/SwitchItem.d.ts +9 -6
  134. package/TabLayout/RefocusDecorator.js +26 -18
  135. package/TabLayout/TabGroup.js +3 -2
  136. package/TabLayout/TabGroup.module.css +2 -2
  137. package/TabLayout/TabLayout.d.ts +6 -0
  138. package/TabLayout/TabLayout.js +11 -1
  139. package/TabLayout/TabLayout.module.css +18 -0
  140. package/TabLayout/tests/TabGroup-specs.js +1 -1
  141. package/TabLayout/tests/TabLayout-specs.js +52 -0
  142. package/ThemeDecorator/AccessibilityDecorator.js +12 -11
  143. package/ThemeDecorator/I18nFontDecorator.js +6 -4
  144. package/ThemeDecorator/ThemeDecorator.d.ts +16 -10
  145. package/ThemeDecorator/ThemeDecorator.js +24 -9
  146. package/ThemeDecorator/fontGenerator.js +1 -1
  147. package/ThemeDecorator/screenTypes.json +1 -0
  148. package/TimePicker/TimePicker.module.css +1 -1
  149. package/TimePicker/TimePickerBase.js +5 -3
  150. package/TooltipDecorator/Tooltip.module.css +1 -2
  151. package/TooltipDecorator/TooltipDecorator.js +12 -7
  152. package/TooltipDecorator/tests/useTooltip-specs.js +5 -2
  153. package/TooltipDecorator/tests/util-specs.js +12 -0
  154. package/TooltipDecorator/useTooltip.js +1 -1
  155. package/TooltipDecorator/util.js +18 -11
  156. package/VideoPlayer/Feedback.js +3 -0
  157. package/VideoPlayer/Feedback.module.css +5 -9
  158. package/VideoPlayer/FeedbackIcons.js +1 -1
  159. package/VideoPlayer/FeedbackTooltip.module.css +55 -11
  160. package/VideoPlayer/VideoPlayer.d.ts +44 -18
  161. package/VideoPlayer/VideoPlayer.js +153 -47
  162. package/VideoPlayer/VideoPlayer.module.css +28 -11
  163. package/VirtualList/VirtualList.d.ts +9 -2
  164. package/VirtualList/VirtualList.js +51 -24
  165. package/VirtualList/tests/VirtualGridList-translate-specs.js +3 -0
  166. package/VirtualList/tests/VirtualList-specs.js +28 -1
  167. package/VirtualList/tests/VirtualList-translate-specs.js +4 -1
  168. package/VirtualList/useSpotlight.js +1 -1
  169. package/WizardPanels/WizardPanels.module.css +2 -2
  170. package/WizardPanels/index.d.ts +4 -2
  171. package/fonts/Limestone_Icons.ttf +0 -0
  172. package/internal/$L/$L.js +3 -3
  173. package/internal/AsyncRenderChildren/AsyncRenderChildren.js +9 -5
  174. package/internal/AsyncRenderChildren/tests/AsyncRenderChildren-specs.js +4 -1
  175. package/internal/DateComponentPicker/DateComponentPicker.module.css +2 -2
  176. package/internal/DateTime/DateTime.module.css +1 -0
  177. package/internal/DateTime/DateTimeDecorator.js +5 -4
  178. package/internal/Panels/PanelsRouter.js +48 -31
  179. package/internal/Panels/useAutoFocus.js +10 -6
  180. package/internal/Panels/useFocusOnTransition.js +4 -3
  181. package/internal/Picker/Picker.js +7 -5
  182. package/internal/Picker/Picker.module.css +2 -2
  183. package/internal/Picker/SpottablePicker.js +15 -13
  184. package/internal/SharedStateDecorator/SharedStateDecorator.js +78 -99
  185. package/internal/validators/validators.js +21 -2
  186. package/package.json +18 -15
  187. package/styles/colors-highcontrast.less +9 -1
  188. package/styles/colors.less +12 -7
  189. package/styles/motion-mixins.less +66 -0
  190. package/styles/motions.less +78 -0
  191. package/styles/variables.less +176 -150
  192. package/useScroll/HoverToScroll.js +23 -17
  193. package/useScroll/Scrollbar.js +14 -10
  194. package/useScroll/ScrollbarPlaceholder.js +3 -5
  195. package/useScroll/ScrollbarTrack.js +7 -5
  196. package/useScroll/ScrollbarTrack.module.css +8 -8
  197. package/useScroll/useEvent.js +14 -3
  198. package/useScroll/useScroll.js +12 -2
  199. package/useScroll/useScroll.module.css +6 -6
  200. package/.travis.yml +0 -40
@@ -1,4 +1,5 @@
1
- .input {
1
+ .input,
2
+ .marqueeText {
2
3
  font-weight: var(--primitive-font-weight-regular);
3
4
  font-size: var(--primitive-font-size-60);
4
5
  font-style: normal;
@@ -12,68 +13,89 @@
12
13
  text-overflow: ellipsis;
13
14
  flex-grow: 1;
14
15
  text-indent: 0.2em;
16
+ max-width: 100%;
15
17
  }
16
- :global(.enact-locale-non-latin) .input {
18
+ :global(.enact-locale-non-latin) .input,
19
+ :global(.enact-locale-non-latin) .marqueeText {
17
20
  font-family: "Limestone";
18
21
  }
19
- :global(.enact-locale-non-latin) .input {
22
+ :global(.enact-locale-non-latin) .input,
23
+ :global(.enact-locale-non-latin) .marqueeText {
20
24
  font-family: "Limestone";
21
25
  font-weight: var(--primitive-font-weight-light);
22
- font-size: 1.125rem;
26
+ font-size: var(--primitive-font-size-54);
23
27
  font-style: normal;
24
28
  }
25
- :global(.enact-locale-km) .input {
29
+ :global(.enact-locale-km) .input,
30
+ :global(.enact-locale-km) .marqueeText {
26
31
  line-height: 1.7em;
27
32
  }
28
- :global(.enact-locale-si) .input {
33
+ :global(.enact-locale-si) .input,
34
+ :global(.enact-locale-si) .marqueeText {
29
35
  line-height: 1.7em;
30
36
  }
31
- :global(.enact-locale-th) .input {
37
+ :global(.enact-locale-th) .input,
38
+ :global(.enact-locale-th) .marqueeText {
32
39
  line-height: 1.7em;
33
40
  }
34
- :global(.enact-locale-vi) .input {
41
+ :global(.enact-locale-vi) .input,
42
+ :global(.enact-locale-vi) .marqueeText {
35
43
  line-height: 1.7em;
36
44
  }
37
- .input a:link {
45
+ .input a:link,
46
+ .marqueeText a:link {
38
47
  color: inherit;
39
48
  text-decoration: none;
40
49
  }
41
- .input a:visited {
50
+ .input a:visited,
51
+ .marqueeText a:visited {
42
52
  color: inherit;
43
53
  text-decoration: none;
44
54
  }
45
- .input a:hover {
55
+ .input a:hover,
56
+ .marqueeText a:hover {
46
57
  color: inherit;
47
58
  text-decoration: none;
48
59
  }
49
- .input a:active {
60
+ .input a:active,
61
+ .marqueeText a:active {
50
62
  color: inherit;
51
63
  text-decoration: none;
52
64
  }
53
- .input[type=number] {
65
+ .input[type=number],
66
+ .marqueeText[type=number] {
54
67
  appearance: textfield;
55
68
  }
56
69
  .input[type=number]::-webkit-inner-spin-button,
57
- .input[type=number]::-webkit-outer-spin-button {
70
+ .marqueeText[type=number]::-webkit-inner-spin-button,
71
+ .input[type=number]::-webkit-outer-spin-button,
72
+ .marqueeText[type=number]::-webkit-outer-spin-button {
58
73
  appearance: none;
59
74
  }
60
- .input[type=number]:hover {
75
+ .input[type=number]:hover,
76
+ .marqueeText[type=number]:hover {
61
77
  appearance: none;
62
78
  }
63
- .input[placeholder] {
79
+ .input[placeholder],
80
+ .marqueeText[placeholder] {
64
81
  text-overflow: ellipsis;
65
82
  }
66
83
  :global(.spotlight-input-key) .input:global(.spottable):focus,
67
- :global(.spotlight-input-mouse) .input:global(.spottable):focus {
84
+ :global(.spotlight-input-key) .marqueeText:global(.spottable):focus,
85
+ :global(.spotlight-input-mouse) .input:global(.spottable):focus,
86
+ :global(.spotlight-input-mouse) .marqueeText:global(.spottable):focus {
68
87
  cursor: text;
69
88
  }
70
- :global(.spotlight-input-touch) .input:global(.spottable):active {
89
+ :global(.spotlight-input-touch) .input:global(.spottable):active,
90
+ :global(.spotlight-input-touch) .marqueeText:global(.spottable):active {
71
91
  cursor: text;
72
92
  }
73
- .input[disabled] {
93
+ .input[disabled],
94
+ .marqueeText[disabled] {
74
95
  cursor: default;
75
96
  }
76
- :global(.enact-locale-right-to-left) .input {
97
+ :global(.enact-locale-right-to-left) .input,
98
+ :global(.enact-locale-right-to-left) .marqueeText {
77
99
  text-align: right;
78
100
  }
79
101
  .inputField {
@@ -85,7 +107,6 @@
85
107
  vertical-align: middle;
86
108
  align-items: center;
87
109
  height: 3.5rem;
88
- width: 32.5rem;
89
110
  }
90
111
  .inputField .iconBefore {
91
112
  margin-left: 0;
@@ -112,7 +133,8 @@
112
133
  border-radius: var(--semantic-radius-button);
113
134
  }
114
135
  .inputField .input,
115
- .inputField .inputHighlight {
136
+ .inputField .inputHighlight,
137
+ .inputField .marqueeText {
116
138
  font-size: var(--primitive-font-size-78);
117
139
  font-weight: var(--primitive-font-weight-semibold);
118
140
  height: 3.5rem;
@@ -131,6 +153,10 @@
131
153
  .inputField .input.passwordtel {
132
154
  -webkit-text-security: disc;
133
155
  }
156
+ .inputField .marqueeText.passwordtel {
157
+ letter-spacing: var(--primitive-spacing-30);
158
+ -webkit-text-security: disc;
159
+ }
134
160
  .inputField .inputHighlight {
135
161
  position: absolute;
136
162
  top: 0;
@@ -141,14 +167,42 @@
141
167
  opacity: 0;
142
168
  z-index: -1;
143
169
  }
170
+ .inputField .inputWrapper {
171
+ position: relative;
172
+ flex-grow: 1;
173
+ display: flex;
174
+ align-items: center;
175
+ overflow: hidden;
176
+ }
177
+ .inputField .marqueeText {
178
+ position: absolute;
179
+ pointer-events: none;
180
+ display: flex;
181
+ }
182
+ .inputField .marqueeTextInner {
183
+ visibility: hidden;
184
+ }
185
+ .inputField .marqueeTextAnimate,
186
+ .inputField .marqueeTextWillAnimate {
187
+ visibility: visible;
188
+ }
144
189
  .inputField.large {
145
190
  padding: 0 var(--primitive-spacing-30);
191
+ width: 32.5rem;
192
+ }
193
+ .inputField.large.hasIconBefore .inputWrapper,
194
+ .inputField.large.hasIconAfter .inputWrapper {
195
+ max-width: 28.875rem;
196
+ }
197
+ .inputField.large.hasIconBefore.inputField.large.hasIconAfter .inputWrapper {
198
+ max-width: 26.5rem;
146
199
  }
147
200
  .inputField.small {
148
201
  height: 2.75rem;
149
202
  width: 25rem;
150
203
  }
151
- .inputField.small .input {
204
+ .inputField.small .input,
205
+ .inputField.small .marqueeText {
152
206
  font-size: var(--primitive-font-size-60);
153
207
  height: 2.75rem;
154
208
  line-height: 2.75rem;
@@ -157,6 +211,13 @@
157
211
  line-height: 2.75rem;
158
212
  height: 2.75rem;
159
213
  }
214
+ .inputField.small.hasIconBefore .inputWrapper,
215
+ .inputField.small.hasIconAfter .inputWrapper {
216
+ max-width: 20.625rem;
217
+ }
218
+ .inputField.small.hasIconBefore.inputField.small.hasIconAfter .inputWrapper {
219
+ max-width: 18.25rem;
220
+ }
160
221
  .inputField.multiline {
161
222
  display: block;
162
223
  padding: 0.5rem 0.75rem;
@@ -192,6 +253,9 @@
192
253
  .inputField:global(.neutral) .input:focus-within::placeholder {
193
254
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
194
255
  }
256
+ .inputField:global(.neutral) .marqueeText.placeholderText {
257
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
258
+ }
195
259
  .inputField:global(.neutral).invalid input {
196
260
  color: #ff0000;
197
261
  }
@@ -216,6 +280,18 @@
216
280
  :global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .input::placeholder {
217
281
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
218
282
  }
283
+ :global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus .marqueeText.placeholderText,
284
+ :global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .marqueeText.placeholderText {
285
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
286
+ }
287
+ :global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus .marqueeTextInner,
288
+ :global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .marqueeTextInner {
289
+ visibility: visible;
290
+ }
291
+ :global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus.hasMarquee:not(.active) .input,
292
+ :global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus.hasMarquee:not(.active) .input {
293
+ opacity: 0;
294
+ }
219
295
  :global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active {
220
296
  color: var(--semantic-color-on-surface-main-focused);
221
297
  }
@@ -227,6 +303,15 @@
227
303
  :global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .input::placeholder {
228
304
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
229
305
  }
306
+ :global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .marqueeText.placeholderText {
307
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
308
+ }
309
+ :global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .marqueeTextInner {
310
+ visibility: visible;
311
+ }
312
+ :global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active.hasMarquee:not(.active) .input {
313
+ opacity: 0;
314
+ }
230
315
  :global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.neutral):global(.spottable):focus .bg,
231
316
  :global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.neutral):global(.spottable):focus .bg {
232
317
  box-shadow: none;
@@ -250,7 +335,8 @@
250
335
  opacity: 0.585;
251
336
  opacity: 0.3;
252
337
  }
253
- .inputField:global(.neutral)[disabled] .input {
338
+ .inputField:global(.neutral)[disabled] .input,
339
+ .inputField:global(.neutral)[disabled] .marqueeText {
254
340
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
255
341
  }
256
342
  :global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .bg,
@@ -259,14 +345,17 @@
259
345
  filter: unset;
260
346
  }
261
347
  :global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input,
262
- :global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input {
348
+ :global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input,
349
+ :global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .marqueeText,
350
+ :global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .marqueeText {
263
351
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
264
352
  }
265
353
  :global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .bg {
266
354
  background-color: var(--semantic-color-surface-default-disabled-focused);
267
355
  filter: unset;
268
356
  }
269
- :global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .input {
357
+ :global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .input,
358
+ :global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .marqueeText {
270
359
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
271
360
  }
272
361
  :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) {
@@ -289,6 +378,9 @@
289
378
  :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) .input:focus-within::placeholder {
290
379
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
291
380
  }
381
+ :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) .marqueeText.placeholderText {
382
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
383
+ }
292
384
  :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast).invalid input {
293
385
  color: #ff0000;
294
386
  }
@@ -313,6 +405,18 @@
313
405
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .input::placeholder {
314
406
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
315
407
  }
408
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeText.placeholderText,
409
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeText.placeholderText {
410
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
411
+ }
412
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeTextInner,
413
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeTextInner {
414
+ visibility: visible;
415
+ }
416
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus.hasMarquee:not(.active) .input,
417
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus.hasMarquee:not(.active) .input {
418
+ opacity: 0;
419
+ }
316
420
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active {
317
421
  color: var(--semantic-color-on-surface-main-focused);
318
422
  }
@@ -324,6 +428,15 @@
324
428
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .input::placeholder {
325
429
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
326
430
  }
431
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .marqueeText.placeholderText {
432
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
433
+ }
434
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .marqueeTextInner {
435
+ visibility: visible;
436
+ }
437
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active.hasMarquee:not(.active) .input {
438
+ opacity: 0;
439
+ }
327
440
  :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
328
441
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
329
442
  box-shadow: none;
@@ -347,7 +460,8 @@
347
460
  opacity: 0.585;
348
461
  opacity: 0.3;
349
462
  }
350
- :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .input {
463
+ :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .input,
464
+ :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .marqueeText {
351
465
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
352
466
  }
353
467
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg,
@@ -356,14 +470,17 @@
356
470
  filter: unset;
357
471
  }
358
472
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input,
359
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input {
473
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input,
474
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .marqueeText,
475
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .marqueeText {
360
476
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
361
477
  }
362
478
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .bg {
363
479
  background-color: var(--semantic-color-surface-default-disabled-focused);
364
480
  filter: unset;
365
481
  }
366
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .input {
482
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .input,
483
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .marqueeText {
367
484
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
368
485
  }
369
486
  .inputField:global(.light) {
@@ -386,6 +503,9 @@
386
503
  .inputField:global(.light) .input:focus-within::placeholder {
387
504
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
388
505
  }
506
+ .inputField:global(.light) .marqueeText.placeholderText {
507
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
508
+ }
389
509
  .inputField:global(.light).invalid input {
390
510
  color: #ff0000;
391
511
  }
@@ -410,6 +530,18 @@
410
530
  :global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .input::placeholder {
411
531
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
412
532
  }
533
+ :global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus .marqueeText.placeholderText,
534
+ :global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .marqueeText.placeholderText {
535
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
536
+ }
537
+ :global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus .marqueeTextInner,
538
+ :global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .marqueeTextInner {
539
+ visibility: visible;
540
+ }
541
+ :global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus.hasMarquee:not(.active) .input,
542
+ :global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus.hasMarquee:not(.active) .input {
543
+ opacity: 0;
544
+ }
413
545
  :global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active {
414
546
  color: var(--semantic-color-on-surface-main-focused);
415
547
  }
@@ -421,6 +553,15 @@
421
553
  :global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .input::placeholder {
422
554
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
423
555
  }
556
+ :global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .marqueeText.placeholderText {
557
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
558
+ }
559
+ :global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .marqueeTextInner {
560
+ visibility: visible;
561
+ }
562
+ :global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active.hasMarquee:not(.active) .input {
563
+ opacity: 0;
564
+ }
424
565
  :global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.light):global(.spottable):focus .bg,
425
566
  :global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.light):global(.spottable):focus .bg {
426
567
  box-shadow: none;
@@ -444,7 +585,8 @@
444
585
  opacity: 0.585;
445
586
  opacity: 0.3;
446
587
  }
447
- .inputField:global(.light)[disabled] .input {
588
+ .inputField:global(.light)[disabled] .input,
589
+ .inputField:global(.light)[disabled] .marqueeText {
448
590
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
449
591
  }
450
592
  :global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .bg,
@@ -453,14 +595,17 @@
453
595
  filter: unset;
454
596
  }
455
597
  :global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .input,
456
- :global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .input {
598
+ :global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .input,
599
+ :global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .marqueeText,
600
+ :global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .marqueeText {
457
601
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
458
602
  }
459
603
  :global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .bg {
460
604
  background-color: var(--semantic-color-surface-default-disabled-focused);
461
605
  filter: unset;
462
606
  }
463
- :global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .input {
607
+ :global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .input,
608
+ :global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .marqueeText {
464
609
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
465
610
  }
466
611
  .inputField:global(.game) {
@@ -486,6 +631,9 @@
486
631
  .inputField:global(.game) .input:focus-within::placeholder {
487
632
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
488
633
  }
634
+ .inputField:global(.game) .marqueeText.placeholderText {
635
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
636
+ }
489
637
  .inputField:global(.game).invalid input {
490
638
  color: #ff0000;
491
639
  }
@@ -510,6 +658,18 @@
510
658
  :global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .input::placeholder {
511
659
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
512
660
  }
661
+ :global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
662
+ :global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
663
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
664
+ }
665
+ :global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
666
+ :global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
667
+ visibility: visible;
668
+ }
669
+ :global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
670
+ :global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
671
+ opacity: 0;
672
+ }
513
673
  :global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active {
514
674
  color: var(--semantic-color-on-surface-main-focused);
515
675
  }
@@ -521,6 +681,15 @@
521
681
  :global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .input::placeholder {
522
682
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
523
683
  }
684
+ :global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
685
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
686
+ }
687
+ :global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
688
+ visibility: visible;
689
+ }
690
+ :global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
691
+ opacity: 0;
692
+ }
524
693
  :global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.game):global(.spottable):focus .bg,
525
694
  :global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.game):global(.spottable):focus .bg {
526
695
  box-shadow: none;
@@ -544,7 +713,8 @@
544
713
  opacity: 0.585;
545
714
  opacity: 0.3;
546
715
  }
547
- .inputField:global(.game)[disabled] .input {
716
+ .inputField:global(.game)[disabled] .input,
717
+ .inputField:global(.game)[disabled] .marqueeText {
548
718
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
549
719
  }
550
720
  :global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
@@ -553,14 +723,17 @@
553
723
  filter: unset;
554
724
  }
555
725
  :global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
556
- :global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .input {
726
+ :global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
727
+ :global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
728
+ :global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
557
729
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
558
730
  }
559
731
  :global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
560
732
  background-color: var(--semantic-color-surface-default-disabled-focused);
561
733
  filter: unset;
562
734
  }
563
- :global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .input {
735
+ :global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .input,
736
+ :global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
564
737
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
565
738
  }
566
739
  :global(.green) .inputField:global(.game) {
@@ -585,6 +758,9 @@
585
758
  :global(.green) .inputField:global(.game) .input:focus-within::placeholder {
586
759
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
587
760
  }
761
+ :global(.green) .inputField:global(.game) .marqueeText.placeholderText {
762
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
763
+ }
588
764
  :global(.green) .inputField:global(.game).invalid input {
589
765
  color: #ff0000;
590
766
  }
@@ -609,6 +785,18 @@
609
785
  :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .input::placeholder {
610
786
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
611
787
  }
788
+ :global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
789
+ :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
790
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
791
+ }
792
+ :global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
793
+ :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
794
+ visibility: visible;
795
+ }
796
+ :global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
797
+ :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
798
+ opacity: 0;
799
+ }
612
800
  :global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active {
613
801
  color: var(--semantic-color-on-surface-main-focused);
614
802
  }
@@ -620,6 +808,15 @@
620
808
  :global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .input::placeholder {
621
809
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
622
810
  }
811
+ :global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
812
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
813
+ }
814
+ :global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
815
+ visibility: visible;
816
+ }
817
+ :global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
818
+ opacity: 0;
819
+ }
623
820
  :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .inputField:global(.game):global(.spottable):focus .bg,
624
821
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .inputField:global(.game):global(.spottable):focus .bg {
625
822
  box-shadow: none;
@@ -643,7 +840,8 @@
643
840
  opacity: 0.585;
644
841
  opacity: 0.3;
645
842
  }
646
- :global(.green) .inputField:global(.game)[disabled] .input {
843
+ :global(.green) .inputField:global(.game)[disabled] .input,
844
+ :global(.green) .inputField:global(.game)[disabled] .marqueeText {
647
845
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
648
846
  }
649
847
  :global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
@@ -652,14 +850,17 @@
652
850
  filter: unset;
653
851
  }
654
852
  :global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
655
- :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input {
853
+ :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
854
+ :global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
855
+ :global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
656
856
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
657
857
  }
658
858
  :global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
659
859
  background-color: var(--semantic-color-surface-default-disabled-focused);
660
860
  filter: unset;
661
861
  }
662
- :global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .input {
862
+ :global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .input,
863
+ :global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
663
864
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
664
865
  }
665
866
  :global(.orange) .inputField:global(.game) {
@@ -684,6 +885,9 @@
684
885
  :global(.orange) .inputField:global(.game) .input:focus-within::placeholder {
685
886
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
686
887
  }
888
+ :global(.orange) .inputField:global(.game) .marqueeText.placeholderText {
889
+ color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
890
+ }
687
891
  :global(.orange) .inputField:global(.game).invalid input {
688
892
  color: #ff0000;
689
893
  }
@@ -708,6 +912,18 @@
708
912
  :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .input::placeholder {
709
913
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
710
914
  }
915
+ :global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
916
+ :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
917
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
918
+ }
919
+ :global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
920
+ :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
921
+ visibility: visible;
922
+ }
923
+ :global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
924
+ :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
925
+ opacity: 0;
926
+ }
711
927
  :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active {
712
928
  color: var(--semantic-color-on-surface-main-focused);
713
929
  }
@@ -719,6 +935,15 @@
719
935
  :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .input::placeholder {
720
936
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
721
937
  }
938
+ :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
939
+ color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
940
+ }
941
+ :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
942
+ visibility: visible;
943
+ }
944
+ :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
945
+ opacity: 0;
946
+ }
722
947
  :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .inputField:global(.game):global(.spottable):focus .bg,
723
948
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .inputField:global(.game):global(.spottable):focus .bg {
724
949
  box-shadow: none;
@@ -742,7 +967,8 @@
742
967
  opacity: 0.585;
743
968
  opacity: 0.3;
744
969
  }
745
- :global(.orange) .inputField:global(.game)[disabled] .input {
970
+ :global(.orange) .inputField:global(.game)[disabled] .input,
971
+ :global(.orange) .inputField:global(.game)[disabled] .marqueeText {
746
972
  color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
747
973
  }
748
974
  :global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
@@ -751,13 +977,19 @@
751
977
  filter: unset;
752
978
  }
753
979
  :global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
754
- :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input {
980
+ :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
981
+ :global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
982
+ :global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
755
983
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
756
984
  }
757
985
  :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
758
986
  background-color: var(--semantic-color-surface-default-disabled-focused);
759
987
  filter: unset;
760
988
  }
761
- :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .input {
989
+ :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .input,
990
+ :global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
762
991
  color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
763
992
  }
993
+ .inputField.active .marqueeText {
994
+ display: none;
995
+ }
@@ -49,6 +49,7 @@ var InputDecoratorIconBase = exports.InputDecoratorIconBase = (0, _kind["default
49
49
  rest = _objectWithoutProperties(_ref, _excluded);
50
50
  delete rest.position;
51
51
  return children ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon["default"], _objectSpread(_objectSpread({}, rest), {}, {
52
+ "data-input-icon": true,
52
53
  children: children
53
54
  })) : null;
54
55
  }