@enact/limestone 1.10.1 → 1.10.2

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 (122) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE.md +1 -0
  2. package/ActionGuide/ActionGuide.d.ts +1 -1
  3. package/ActionGuide/ActionGuide.module.css +3 -0
  4. package/Alert/Alert.d.ts +9 -0
  5. package/Alert/Alert.js +63 -21
  6. package/Alert/Alert.module.css +41 -9
  7. package/Alert/AlertImage.module.css +5 -1
  8. package/Alert/tests/Alert-specs.js +6 -2
  9. package/BodyText/BodyText.d.ts +1 -1
  10. package/BodyText/BodyText.js +14 -9
  11. package/BodyText/BodyText.module.css +1 -1
  12. package/Button/Button.d.ts +3 -3
  13. package/Button/Button.module.css +14 -28
  14. package/CHANGELOG.md +48 -1
  15. package/Card/Card.d.ts +81 -9
  16. package/Card/Card.js +321 -84
  17. package/Card/Card.module.css +171 -20
  18. package/Card/tests/Card-specs.js +100 -0
  19. package/Checkbox/Checkbox.d.ts +2 -2
  20. package/Checkbox/Checkbox.module.css +2 -9
  21. package/CheckboxItem/CheckboxItem.d.ts +8 -1
  22. package/CheckboxItem/CheckboxItem.js +39 -12
  23. package/CheckboxItem/CheckboxItem.module.css +228 -4
  24. package/Chips/Chip.module.css +2 -2
  25. package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +2 -2
  26. package/ContextualPopupDecorator/ContextualPopup.module.css +1 -1
  27. package/ContextualPopupDecorator/ContextualPopupDecorator.js +2 -4
  28. package/ContextualPopupDecorator/tests/ContextualPopupDecorator-specs.js +39 -2
  29. package/Dropdown/Dropdown.d.ts +2 -2
  30. package/Dropdown/Dropdown.module.css +7 -7
  31. package/FixedPopupPanels/FixedPopupPanels.d.ts +2 -2
  32. package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +15 -3
  33. package/FlexiblePopupPanels/index.d.ts +2 -2
  34. package/FormCheckboxItem/FormCheckboxItem.d.ts +1 -1
  35. package/FormCheckboxItem/FormCheckboxItem.js +1 -0
  36. package/FormCheckboxItem/FormCheckboxItem.module.css +1 -1
  37. package/Heading/Heading.d.ts +2 -2
  38. package/Icon/Icon.d.ts +22 -1
  39. package/Icon/Icon.js +21 -0
  40. package/Icon/IconList.js +43 -1
  41. package/IconItem/IconItem.d.ts +2 -2
  42. package/IconItem/IconItem.module.css +11 -14
  43. package/Image/Image.d.ts +1 -1
  44. package/Image/Image.module.css +1 -1
  45. package/ImageItem/ImageItem.d.ts +2 -2
  46. package/ImageItem/ImageItem.js +3 -16
  47. package/ImageItem/ImageItem.module.css +105 -97
  48. package/ImageItem/tests/ImageItem-specs.js +6 -5
  49. package/Input/Input.module.css +8 -7
  50. package/Input/InputField.module.css +4 -4
  51. package/Input/index.d.ts +1 -1
  52. package/Input/tests/Input-specs.js +2 -2
  53. package/Input/tests/InputField-specs.js +1 -1
  54. package/Item/Item.d.ts +2 -2
  55. package/Item/Item.module.css +27 -15
  56. package/KeyGuide/KeyGuide.d.ts +2 -2
  57. package/MediaOverlay/MediaOverlay.d.ts +2 -2
  58. package/MediaOverlay/MediaOverlay.module.css +2 -5
  59. package/MediaPlayer/MediaSlider.module.css +1 -0
  60. package/MediaPlayer/Times.module.css +1 -1
  61. package/MediaPlayer/index.d.ts +2 -2
  62. package/PageViews/PageViews.module.css +2 -1
  63. package/Panels/Header.module.css +40 -28
  64. package/Panels/Panel.module.css +1 -1
  65. package/Panels/index.d.ts +1 -1
  66. package/Picker/Picker.d.ts +1 -1
  67. package/Popup/Popup.module.css +4 -1
  68. package/PopupTabLayout/PopupTabLayout.d.ts +6 -6
  69. package/PopupTabLayout/PopupTabLayout.module.css +6 -6
  70. package/ProgressBar/ProgressBar.d.ts +1 -1
  71. package/ProgressBar/ProgressBar.module.css +12 -12
  72. package/ProgressBar/ProgressBarTooltip.module.css +7 -7
  73. package/ProgressButton/ProgressButton.d.ts +2 -2
  74. package/QuickGuidePanels/QuickGuidePanels.module.css +1 -1
  75. package/RadioItem/RadioItem.d.ts +1 -1
  76. package/RadioItem/RadioItem.module.css +18 -20
  77. package/Scroller/Scroller.d.ts +12 -0
  78. package/Scroller/Scroller.js +15 -0
  79. package/Scroller/tests/Scroller-specs.js +29 -0
  80. package/Scroller/useThemeScroller.js +22 -2
  81. package/Slider/Slider.d.ts +1 -1
  82. package/Slider/Slider.module.css +539 -300
  83. package/Spinner/Spinner.d.ts +1 -1
  84. package/Spinner/Spinner.module.css +2 -2
  85. package/Steps/Steps.d.ts +1 -1
  86. package/Steps/Steps.js +12 -6
  87. package/Steps/Steps.module.css +16 -2
  88. package/Switch/Switch.module.css +2 -5
  89. package/SwitchItem/SwitchItem.d.ts +1 -1
  90. package/TabLayout/RefocusDecorator.js +1 -1
  91. package/TabLayout/TabGroup.module.css +12 -6
  92. package/TabLayout/TabLayout.js +4 -0
  93. package/ThemeDecorator/ThemeDecorator.d.ts +1 -1
  94. package/ThemeDecorator/ThemeDecorator.module.css +22 -1
  95. package/TooltipDecorator/Tooltip.js +68 -7
  96. package/TooltipDecorator/Tooltip.module.css +40 -23
  97. package/TooltipDecorator/TooltipDecorator.d.ts +52 -0
  98. package/TooltipDecorator/TooltipDecorator.js +42 -0
  99. package/TooltipDecorator/TooltipLabel.js +67 -14
  100. package/TooltipDecorator/tests/TooltipDecorator-specs.js +46 -0
  101. package/TooltipDecorator/useTooltip.js +14 -2
  102. package/VideoPlayer/MediaTitle.module.css +1 -1
  103. package/VirtualList/VirtualList.d.ts +24 -0
  104. package/VirtualList/VirtualList.js +30 -0
  105. package/VirtualList/tests/stickTo-specs.js +115 -0
  106. package/VirtualList/tests/useEvent-specs.js +39 -0
  107. package/VirtualList/useEvent.js +45 -10
  108. package/VirtualList/useThemeVirtualList.js +20 -2
  109. package/WizardPanels/WizardPanels.module.css +1 -1
  110. package/fonts/Limestone_Icons.ttf +0 -0
  111. package/internal/DateComponentPicker/DateComponentPicker.module.css +3 -3
  112. package/internal/Picker/Picker.js +8 -10
  113. package/internal/Picker/Picker.module.css +74 -141
  114. package/package.json +11 -14
  115. package/styles/color-mixins.less +4 -60
  116. package/styles/colors-game.less +5 -5
  117. package/styles/colors.less +9 -10
  118. package/styles/mixins.less +0 -46
  119. package/styles/motion-mixins.less +16 -7
  120. package/styles/motions.less +2 -2
  121. package/styles/variables.less +71 -46
  122. package/useScroll/useScroll.js +3 -1
@@ -9,7 +9,7 @@
9
9
  font-family: "Limestone";
10
10
  font-weight: normal;
11
11
  font-size: var(--primitive-font-size-54);
12
- line-height: 1.4em;
12
+ line-height: 1.34em;
13
13
  font-weight: var(--primitive-font-weight-semibold);
14
14
  max-width: 20rem;
15
15
  }
@@ -77,6 +77,7 @@
77
77
  }
78
78
  .picker .item {
79
79
  padding: 0 1rem;
80
+ position: relative;
80
81
  }
81
82
  .picker.small .sizingPlaceholder,
82
83
  .picker.small .item {
@@ -90,9 +91,6 @@
90
91
  .picker .viewManager > .item:nth-child(2) {
91
92
  top: -100%;
92
93
  }
93
- .picker .item {
94
- position: relative;
95
- }
96
94
  .picker .incrementer,
97
95
  .picker .decrementer {
98
96
  cursor: pointer;
@@ -168,25 +166,6 @@
168
166
  .picker.joined.horizontal:not(.arrow) .item {
169
167
  pointer-events: none;
170
168
  }
171
- .picker.joined.horizontal:not(.arrow) .indicatorContainer {
172
- margin: 0 auto;
173
- line-height: 0;
174
- white-space: nowrap;
175
- }
176
- .picker.joined.horizontal:not(.arrow) .indicatorContainer .indicator {
177
- display: inline-block;
178
- width: 0.5rem;
179
- height: 0.5rem;
180
- margin: var(--primitive-spacing-30) var(--primitive-spacing-12) 0;
181
- border-radius: 0.5rem;
182
- transform: scale(0.75);
183
- vertical-align: middle;
184
- will-change: transform;
185
- transition: transform 200ms ease-out;
186
- }
187
- .picker.joined.horizontal:not(.arrow) .indicatorContainer .indicator.active {
188
- transform: scale(1);
189
- }
190
169
  .picker.joined.horizontal.arrow::before,
191
170
  .picker.joined.vertical::before {
192
171
  border-radius: var(--semantic-radius-button);
@@ -225,10 +204,6 @@
225
204
  height: 2.29167rem;
226
205
  line-height: 2.29167rem;
227
206
  }
228
- .picker:global(.largeText).joined.horizontal:not(.arrow) .indicatorContainer .indicator {
229
- width: calc(0.5rem * 1.2);
230
- height: calc(0.5rem * 1.2);
231
- }
232
207
  .picker:global(.largeText).joined.vertical .valueWrapper {
233
208
  font-size: var(--primitive-font-size-80);
234
209
  height: 2.29167rem;
@@ -249,13 +224,6 @@
249
224
  will-change: box-shadow;
250
225
  background-color: var(--semantic-color-surface-default);
251
226
  }
252
- .picker:global(.neutral).joined.horizontal:not(.arrow) .indicator {
253
- background-color: var(--semantic-color-on-surface-main);
254
- opacity: 0.4;
255
- }
256
- .picker:global(.neutral).joined.horizontal:not(.arrow) .indicator.active {
257
- opacity: 1;
258
- }
259
227
  .picker:global(.neutral).joined.horizontal.arrow::before,
260
228
  .picker:global(.neutral).joined.vertical::before {
261
229
  opacity: 0;
@@ -318,17 +286,17 @@
318
286
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .icon {
319
287
  color: var(--semantic-color-on-surface-main-focused);
320
288
  }
321
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .indicator,
322
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .indicator,
323
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .indicator,
324
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .indicator {
289
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .step,
290
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .step,
291
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .step,
292
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .step {
325
293
  background-color: var(--semantic-color-on-surface-main-focused);
326
294
  opacity: 0.4;
327
295
  }
328
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .indicator.active,
329
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .indicator.active,
330
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .indicator.active,
331
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .indicator.active {
296
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .step.current,
297
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .step.current,
298
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.neutral).joined:global(.spottable):focus .step.current,
299
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.neutral).joined:global(.spottable):focus .step.current {
332
300
  opacity: 1;
333
301
  }
334
302
  :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active,
@@ -369,13 +337,13 @@
369
337
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .icon {
370
338
  color: var(--semantic-color-on-surface-main-focused);
371
339
  }
372
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .indicator,
373
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .indicator {
340
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .step,
341
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .step {
374
342
  background-color: var(--semantic-color-on-surface-main-focused);
375
343
  opacity: 0.4;
376
344
  }
377
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .indicator.active,
378
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .indicator.active {
345
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .step.current,
346
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.neutral).joined:global(.spottable):active .step.current {
379
347
  opacity: 1;
380
348
  }
381
349
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) .picker:global(.neutral).joined:global(.spottable):focus.horizontal.arrow::before,
@@ -403,13 +371,6 @@
403
371
  will-change: box-shadow;
404
372
  background-color: var(--semantic-color-surface-default);
405
373
  }
406
- :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined.horizontal:not(.arrow) .indicator {
407
- background-color: var(--semantic-color-on-surface-main);
408
- opacity: 0.4;
409
- }
410
- :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined.horizontal:not(.arrow) .indicator.active {
411
- opacity: 1;
412
- }
413
374
  :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined.horizontal.arrow::before,
414
375
  :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined.vertical::before {
415
376
  opacity: 0;
@@ -472,17 +433,17 @@
472
433
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .icon {
473
434
  color: var(--semantic-color-on-surface-main-focused);
474
435
  }
475
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator,
476
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator,
477
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator,
478
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator {
436
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step,
437
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step,
438
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step,
439
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step {
479
440
  background-color: var(--semantic-color-on-surface-main-focused);
480
441
  opacity: 0.4;
481
442
  }
482
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator.active,
483
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator.active,
484
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator.active,
485
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .indicator.active {
443
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step.current,
444
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step.current,
445
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step.current,
446
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus .step.current {
486
447
  opacity: 1;
487
448
  }
488
449
  :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active,
@@ -523,13 +484,13 @@
523
484
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .icon {
524
485
  color: var(--semantic-color-on-surface-main-focused);
525
486
  }
526
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .indicator,
527
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .indicator {
487
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .step,
488
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .step {
528
489
  background-color: var(--semantic-color-on-surface-main-focused);
529
490
  opacity: 0.4;
530
491
  }
531
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .indicator.active,
532
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .indicator.active {
492
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .step.current,
493
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):active .step.current {
533
494
  opacity: 1;
534
495
  }
535
496
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .picker:global(.neutral):global(.highContrast).joined:global(.spottable):focus.horizontal.arrow::before,
@@ -557,13 +518,6 @@
557
518
  will-change: box-shadow;
558
519
  background-color: var(--semantic-color-surface-default);
559
520
  }
560
- .picker:global(.light).joined.horizontal:not(.arrow) .indicator {
561
- background-color: var(--semantic-color-on-surface-main);
562
- opacity: 0.4;
563
- }
564
- .picker:global(.light).joined.horizontal:not(.arrow) .indicator.active {
565
- opacity: 1;
566
- }
567
521
  .picker:global(.light).joined.horizontal.arrow::before,
568
522
  .picker:global(.light).joined.vertical::before {
569
523
  opacity: 0;
@@ -626,17 +580,17 @@
626
580
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .icon {
627
581
  color: var(--semantic-color-on-surface-main-focused);
628
582
  }
629
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .indicator,
630
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .indicator,
631
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .indicator,
632
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .indicator {
583
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .step,
584
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .step,
585
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .step,
586
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .step {
633
587
  background-color: var(--semantic-color-on-surface-main-focused);
634
588
  opacity: 0.4;
635
589
  }
636
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .indicator.active,
637
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .indicator.active,
638
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .indicator.active,
639
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .indicator.active {
590
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .step.current,
591
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .step.current,
592
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.light).joined:global(.spottable):focus .step.current,
593
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.light).joined:global(.spottable):focus .step.current {
640
594
  opacity: 1;
641
595
  }
642
596
  :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active,
@@ -677,13 +631,13 @@
677
631
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .icon {
678
632
  color: var(--semantic-color-on-surface-main-focused);
679
633
  }
680
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .indicator,
681
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .indicator {
634
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .step,
635
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .step {
682
636
  background-color: var(--semantic-color-on-surface-main-focused);
683
637
  opacity: 0.4;
684
638
  }
685
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .indicator.active,
686
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .indicator.active {
639
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .step.current,
640
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.light).joined:global(.spottable):active .step.current {
687
641
  opacity: 1;
688
642
  }
689
643
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) .picker:global(.light).joined:global(.spottable):focus.horizontal.arrow::before,
@@ -714,13 +668,6 @@
714
668
  will-change: box-shadow;
715
669
  background-color: var(--semantic-color-surface-default);
716
670
  }
717
- .picker:global(.game).joined.horizontal:not(.arrow) .indicator {
718
- background-color: var(--semantic-color-on-surface-main);
719
- opacity: 0.4;
720
- }
721
- .picker:global(.game).joined.horizontal:not(.arrow) .indicator.active {
722
- opacity: 1;
723
- }
724
671
  .picker:global(.game).joined.horizontal.arrow::before,
725
672
  .picker:global(.game).joined.vertical::before {
726
673
  opacity: 0;
@@ -783,17 +730,17 @@
783
730
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .icon {
784
731
  color: var(--semantic-color-on-surface-main-focused);
785
732
  }
786
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .indicator,
787
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .indicator,
788
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .indicator,
789
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .indicator {
733
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .step,
734
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .step,
735
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .step,
736
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .step {
790
737
  background-color: var(--semantic-color-on-surface-main-focused);
791
738
  opacity: 0.4;
792
739
  }
793
- :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
794
- :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
795
- :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
796
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .indicator.active {
740
+ :global(.spotlight-input-key):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .step.current,
741
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .step.current,
742
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) .picker:global(.game).joined:global(.spottable):focus .step.current,
743
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) .picker:global(.game).joined:global(.spottable):focus .step.current {
797
744
  opacity: 1;
798
745
  }
799
746
  :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active,
@@ -834,13 +781,13 @@
834
781
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .icon {
835
782
  color: var(--semantic-color-on-surface-main-focused);
836
783
  }
837
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .indicator,
838
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .indicator {
784
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .step,
785
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .step {
839
786
  background-color: var(--semantic-color-on-surface-main-focused);
840
787
  opacity: 0.4;
841
788
  }
842
- :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .indicator.active,
843
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .indicator.active {
789
+ :global(.spotlight-input-key):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .step.current,
790
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) .picker:global(.game).joined:global(.spottable):active .step.current {
844
791
  opacity: 1;
845
792
  }
846
793
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) .picker:global(.game).joined:global(.spottable):focus.horizontal.arrow::before,
@@ -870,13 +817,6 @@
870
817
  will-change: box-shadow;
871
818
  background-color: var(--semantic-color-surface-default);
872
819
  }
873
- :global(.green) .picker:global(.game).joined.horizontal:not(.arrow) .indicator {
874
- background-color: var(--semantic-color-on-surface-main);
875
- opacity: 0.4;
876
- }
877
- :global(.green) .picker:global(.game).joined.horizontal:not(.arrow) .indicator.active {
878
- opacity: 1;
879
- }
880
820
  :global(.green) .picker:global(.game).joined.horizontal.arrow::before,
881
821
  :global(.green) .picker:global(.game).joined.vertical::before {
882
822
  opacity: 0;
@@ -939,17 +879,17 @@
939
879
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .icon {
940
880
  color: var(--semantic-color-on-surface-main-focused);
941
881
  }
942
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator,
943
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator,
944
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator,
945
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator {
882
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step,
883
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step,
884
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step,
885
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step {
946
886
  background-color: var(--semantic-color-on-surface-main-focused);
947
887
  opacity: 0.4;
948
888
  }
949
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
950
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
951
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
952
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .indicator.active {
889
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step.current,
890
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step.current,
891
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step.current,
892
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.green) .picker:global(.game).joined:global(.spottable):focus .step.current {
953
893
  opacity: 1;
954
894
  }
955
895
  :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active,
@@ -990,13 +930,13 @@
990
930
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .icon {
991
931
  color: var(--semantic-color-on-surface-main-focused);
992
932
  }
993
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .indicator,
994
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .indicator {
933
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .step,
934
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .step {
995
935
  background-color: var(--semantic-color-on-surface-main-focused);
996
936
  opacity: 0.4;
997
937
  }
998
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .indicator.active,
999
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .indicator.active {
938
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .step.current,
939
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.green) .picker:global(.game).joined:global(.spottable):active .step.current {
1000
940
  opacity: 1;
1001
941
  }
1002
942
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) :global(.green) .picker:global(.game).joined:global(.spottable):focus.horizontal.arrow::before,
@@ -1026,13 +966,6 @@
1026
966
  will-change: box-shadow;
1027
967
  background-color: var(--semantic-color-surface-default);
1028
968
  }
1029
- :global(.orange) .picker:global(.game).joined.horizontal:not(.arrow) .indicator {
1030
- background-color: var(--semantic-color-on-surface-main);
1031
- opacity: 0.4;
1032
- }
1033
- :global(.orange) .picker:global(.game).joined.horizontal:not(.arrow) .indicator.active {
1034
- opacity: 1;
1035
- }
1036
969
  :global(.orange) .picker:global(.game).joined.horizontal.arrow::before,
1037
970
  :global(.orange) .picker:global(.game).joined.vertical::before {
1038
971
  opacity: 0;
@@ -1095,17 +1028,17 @@
1095
1028
  :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .icon {
1096
1029
  color: var(--semantic-color-on-surface-main-focused);
1097
1030
  }
1098
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator,
1099
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator,
1100
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator,
1101
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator {
1031
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step,
1032
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step,
1033
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step,
1034
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step {
1102
1035
  background-color: var(--semantic-color-on-surface-main-focused);
1103
1036
  opacity: 0.4;
1104
1037
  }
1105
- :global(.spotlight-input-key):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
1106
- :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
1107
- :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator.active,
1108
- :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .indicator.active {
1038
+ :global(.spotlight-input-key):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step.current,
1039
+ :global(.spotlight-input-key):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step.current,
1040
+ :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step.current,
1041
+ :global(.spotlight-input-mouse):global(.spotlight-input-mouse) :global(.orange) .picker:global(.game).joined:global(.spottable):focus .step.current {
1109
1042
  opacity: 1;
1110
1043
  }
1111
1044
  :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active,
@@ -1146,13 +1079,13 @@
1146
1079
  :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .icon {
1147
1080
  color: var(--semantic-color-on-surface-main-focused);
1148
1081
  }
1149
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .indicator,
1150
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .indicator {
1082
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .step,
1083
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .step {
1151
1084
  background-color: var(--semantic-color-on-surface-main-focused);
1152
1085
  opacity: 0.4;
1153
1086
  }
1154
- :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .indicator.active,
1155
- :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .indicator.active {
1087
+ :global(.spotlight-input-key):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .step.current,
1088
+ :global(.spotlight-input-mouse):global(.spotlight-input-touch) :global(.orange) .picker:global(.game).joined:global(.spottable):active .step.current {
1156
1089
  opacity: 1;
1157
1090
  }
1158
1091
  :global(.spotlight-input-mouse):global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .picker:global(.game).joined:global(.spottable):focus.horizontal.arrow::before,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enact/limestone",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "description": "Large-screen/TV support library for Enact, containing a variety of UI components.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,11 +39,11 @@
39
39
  "screenTypes": "ThemeDecorator/screenTypes.json"
40
40
  },
41
41
  "dependencies": {
42
- "@enact/core": "^5.5.1",
43
- "@enact/i18n": "^5.5.1",
44
- "@enact/spotlight": "^5.5.1",
45
- "@enact/ui": "^5.5.1",
46
- "@enact/webos": "^5.5.1",
42
+ "@enact/core": "^5.5.2",
43
+ "@enact/i18n": "^5.5.2",
44
+ "@enact/spotlight": "^5.5.2",
45
+ "@enact/ui": "^5.5.2",
46
+ "@enact/webos": "^5.5.2",
47
47
  "@enovaui/core-tokens": "^2.0.0",
48
48
  "@enovaui/webos-tokens": "^2.0.0",
49
49
  "classnames": "^2.5.1",
@@ -51,8 +51,8 @@
51
51
  "invariant": "^2.2.4",
52
52
  "prop-types": "^15.8.1",
53
53
  "ramda": "^0.32.0",
54
- "react": "^19.2.6",
55
- "react-dom": "^19.2.6",
54
+ "react": "^19.2.7",
55
+ "react-dom": "^19.2.7",
56
56
  "warning": "^4.0.3"
57
57
  },
58
58
  "peerDependencies": {
@@ -60,13 +60,10 @@
60
60
  },
61
61
  "overrides": {
62
62
  "autolinker": "^4.0.0",
63
- "vue-template-compiler": "@vue/compiler-sfc@3.4.31",
64
- "prop-types": {
65
- "react-is": "^19.2.3"
66
- }
63
+ "vue-template-compiler": "@vue/compiler-sfc@3.4.31"
67
64
  },
68
65
  "devDependencies": {
69
- "@enact/docs-utils": "^0.4.17",
70
- "@enact/ui-test-utils": "^4.0.2"
66
+ "@enact/docs-utils": "^0.5.0",
67
+ "@enact/ui-test-utils": "^4.0.4"
71
68
  }
72
69
  }
@@ -10,64 +10,16 @@
10
10
  // Focus Shadow and background setup
11
11
  // ---------------------------------------
12
12
  .lime-bg-colors (@bg) {
13
- //// Relocate the bg styling to a pseudo-element
14
- // &::after {
15
- @bg();
16
- // }
13
+ @bg();
17
14
  }
18
- // .lime-shadow-colors (@shadow) {
19
- // // &::before {
20
- // @shadow();
21
- // // }
22
- // }
23
15
 
24
16
  // Establish rules assignment for before focus has happened
25
17
  .lime-spotlight-resting-bg-colors (@opacity: 0, @bg: {}, @shadow: {}) {
26
- // These lines are really long, and occasionally repeated. Defining here as shorthand.
27
- // @transition-opacity: opacity @lime-spotlight-focus-animation-duration ease-out;
28
- // @transition-transform: transform @lime-spotlight-focus-animation-duration ease-out;
29
- // @transition-filter: filter @lime-spotlight-focus-animation-duration ease-out;
30
-
31
18
  opacity: @opacity;
32
- // transition+: @transition-opacity;
33
- // will-change+: opacity;
34
-
35
- // Prep common aspects
36
- // @pseudo-element-setup: {
37
- // content: "";
38
- // position: absolute;
39
- // .position(0);
40
- // border-radius: inherit;
41
- // };
42
-
43
- // // Shadow
44
- // .lime-shadow-colors({
45
- // @pseudo-element-setup();
46
- // background-color: @lime-spotlight-bg-color;
47
- // opacity: 0;
48
-
49
- // // filter+: drop-shadow(@lime-spotlight-focus-shadow);
50
- // box-shadow: @lime-spotlight-focus-shadow;
51
-
52
- // //// Include a transform on the shadow for a better effect
53
- // // transform+_: scale(0.9, 0.5); // Hard-coded values, not part of the design. This transform is responsible for tucking the shadow up inside the background so it can transition out.
54
- // // transition+: @transition-opacity, @transition-transform;
55
- // // will-change+: opacity, transition;
56
-
57
- // //// Simple opacity change to the shadow (fade-in)
58
- // transition+: @transition-opacity;
59
- // will-change+: opacity;
60
- // will-change+: box-shadow;
61
-
62
- // @shadow();
63
- // });
64
19
 
65
20
  // Background coloration
66
21
  .lime-bg-colors({
67
- // @pseudo-element-setup();
68
-
69
22
  background-color: @lime-spotlight-bg-color;
70
- // transition+: @transition-filter;
71
23
  will-change+: box-shadow;
72
24
 
73
25
  @bg();
@@ -78,26 +30,18 @@
78
30
  // Establish rules assignment for after focus has happened
79
31
  .lime-spotlight-focus-bg-colors (@bg: {}, @shadow: {}) {
80
32
  opacity: 1;
33
+
34
+ // Background coloration
81
35
  .lime-bg-colors({
82
36
  background-color: @lime-spotlight-bg-color;
83
37
  box-shadow: @lime-spotlight-focus-shadow;
38
+
84
39
  @bg();
85
40
  @shadow();
86
41
  });
87
42
  }
88
43
 
89
- // // Just the spotlight shadow (merge-safe)
90
- // .lime-spotlight-focus-shadow-colors (@shadow: {}) {
91
- // .lime-shadow-colors({
92
- // transform: scale(1);
93
- // opacity: 1;
94
- // box-shadow: @lime-spotlight-focus-shadow;
95
- // @shadow();
96
- // });
97
- // }
98
-
99
44
  .lime-spotlight-focus-text-colors () {
100
- // font-weight: @lime-spotlight-font-weight;
101
45
  color: @lime-spotlight-text-color;
102
46
  }
103
47
 
@@ -38,8 +38,8 @@
38
38
 
39
39
  // Button
40
40
  // --------------------------------------
41
- @lime-button-outline-border: fade(@lime-game-skin-color-01, 50%);
42
- @lime-button-icononly-bg-focused: fade(@lime-game-skin-color-02, 50%);
41
+ @lime-button-outline-border-color: fade(@lime-game-skin-color-01, 50%);
42
+ @lime-button-icononly-bg-focused-color: fade(@lime-game-skin-color-02, 50%);
43
43
 
44
44
  // Heading
45
45
  // ---------------------------------------
@@ -48,9 +48,9 @@
48
48
  // Item
49
49
  // ---------------------------------------
50
50
  @lime-item-focus-background: linear-gradient(270deg, @lime-game-skin-item-focus-bg-gradient-1, @lime-game-skin-item-focus-bg-gradient-2);
51
- @lime-item-focus-label-color: #abaeb3;
51
+ @lime-item-label-sub-focused-color: #abaeb3;
52
52
 
53
53
  // RadioItem
54
54
  // ---------------------------------------
55
- @lime-radioitem-icon-bg-selected: @lime-game-skin-color-02;
56
- @lime-radioitem-icon-border-selected: @lime-game-skin-color-02;
55
+ @lime-radioitem-container-selected-color: @lime-game-skin-color-02;
56
+ @lime-radioitem-border-selected-color: @lime-game-skin-color-02;
@@ -133,16 +133,14 @@
133
133
  @lime-checkbox-border-selected-focused-color: @lime-checkbox-border-selected-color;
134
134
  @lime-checkbox-border-selected-disabled-color: @lime-checkbox-border-selected-color;
135
135
  @lime-checkbox-border-selected-disabled-focused-color: @lime-checkbox-border-selected-color;
136
- @lime-checkbox-border-disabled-color: @lime-checkbox-border-color;
137
- @lime-checkbox-border-disabled-focused-color: @lime-checkbox-border-focused-color;
138
136
  @lime-checkbox-border-indeterminate-color: var(--semantic-color-stroke-selection-inactive);
139
137
  @lime-checkbox-border-indeterminate-focused-color: var(--semantic-color-stroke-selection-inactive-focused);
140
- @lime-checkbox-border-indeterminate-disabled-color: @lime-checkbox-border-indeterminate-color;
141
- @lime-checkbox-border-indeterminate-disabled-focused-color: @lime-checkbox-border-indeterminate-focused-color;
142
138
 
143
139
  // CheckboxItem
144
140
  // ---------------------------------------
145
141
  @lime-checkboxitem-item-container-selected-color: transparent;
142
+ @lime-checkboxitem-form-label-main-focused-color: var(--semantic-color-on-background-main);
143
+ @lime-checkboxitem-form-label-main-disabled-focused-color: inherit;
146
144
 
147
145
  // ContextualPopup
148
146
  // ---------------------------------------
@@ -266,6 +264,7 @@
266
264
  @lime-item-label-sub-selected-color: var(--semantic-color-on-background-sub);
267
265
  @lime-item-container-selected-color: ~"color(from" var(--semantic-color-surface-default-translucent) ~"srgb r g b / 0.1)";
268
266
  @lime-item-container-disabled-focused-color: var(--semantic-color-surface-default-disabled-focused);
267
+ @lime-item-focus-background: '';
269
268
 
270
269
  // KeyGuide
271
270
  // ---------------------------------------
@@ -327,7 +326,7 @@
327
326
  // ---------------------------------------
328
327
  @lime-progressbar-track-color: ~"color(from" var(--semantic-color-surface-default-track) ~"srgb r g b / 0.7)";
329
328
  @lime-progressbar-track-buffer-color: ~"color(from" var(--semantic-color-surface-white) ~"srgb r g b / 0.5)";
330
- @lime-progressbar-track-active-color: var(--semantic-color-surface-accent);
329
+ @lime-progressbar-track-active-color: var(--semantic-color-surface-white);
331
330
  @lime-progressbar-track-active-focused-color: var(--semantic-color-surface-default-focused);
332
331
 
333
332
  // ProgressButton
@@ -371,13 +370,13 @@
371
370
  @lime-slider-min-max-color: var(--semantic-color-on-background-sub);
372
371
  @lime-slider-track-color: ~"color(from" var(--semantic-color-surface-default-track) ~"srgb r g b / 0.7)";
373
372
  @lime-slider-track-buffer-color: ~"color(from" var(--semantic-color-surface-white) ~"srgb r g b / 0.5)";
374
- @lime-slider-track-active-color: var(--semantic-color-surface-accent);
375
- @lime-slider-track-active-focused-color: var(--semantic-color-surface-accent);
376
- @lime-slider-handle-color: var(--semantic-color-surface-default-handle);
377
- @lime-slider-handle-colorPicker-focused-color: var(--semantic-color-surface-white);
373
+ @lime-slider-track-active-color: var(--semantic-color-surface-white);
374
+ @lime-slider-track-active-focused-color: var(--semantic-color-surface-white);
375
+ @lime-slider-handle-color: var(--semantic-color-surface-white);
376
+ @lime-slider-handle-colorPicker-outline-color: var(--semantic-color-surface-white);
378
377
  @lime-slider-handle-border-color: transparent;
379
378
  @lime-slider-handle-focused-border-color: @lime-slider-handle-border-color;
380
- @lime-slider-handle-focused-color: var(--semantic-color-surface-default-focused);
379
+ @lime-slider-handle-focused-color: var(--semantic-color-surface-white);
381
380
  @lime-slider-handle-disabled-color: transparent;
382
381
  @lime-slider-handle-focused-shadow: 0 24px 36px @lime-shadow-color;
383
382
  @lime-slider-disabled-bar-opacity: 0.3;