@clayui/css 3.95.2 → 3.98.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 (55) hide show
  1. package/lib/css/atlas.css +405 -94
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +210 -82
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +375 -178
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/accessibility.svg +9 -0
  8. package/lib/images/icons/icons.svg +1 -1
  9. package/lib/images/icons/stars.svg +9 -0
  10. package/package.json +2 -2
  11. package/src/images/icons/accessibility.svg +9 -0
  12. package/src/images/icons/stars.svg +9 -0
  13. package/src/scss/_license-text.scss +1 -1
  14. package/src/scss/atlas/variables/_forms.scss +38 -0
  15. package/src/scss/atlas/variables/_menubar.scss +87 -9
  16. package/src/scss/atlas/variables/_pagination.scss +56 -4
  17. package/src/scss/atlas/variables/_tables.scss +4 -4
  18. package/src/scss/cadmin/components/_date-picker.scss +4 -0
  19. package/src/scss/cadmin/components/_forms.scss +1 -25
  20. package/src/scss/cadmin/components/_grid.scss +0 -12
  21. package/src/scss/cadmin/components/_multi-step-nav.scss +1 -11
  22. package/src/scss/cadmin/components/_navbar.scss +1 -6
  23. package/src/scss/cadmin/components/_progress-bars.scss +6 -0
  24. package/src/scss/cadmin/components/_type.scss +0 -21
  25. package/src/scss/cadmin/components/_utilities-functional-important.scss +30 -10
  26. package/src/scss/cadmin/variables/_buttons.scss +12 -2
  27. package/src/scss/cadmin/variables/_forms.scss +31 -0
  28. package/src/scss/cadmin/variables/_menubar.scss +100 -45
  29. package/src/scss/cadmin/variables/_multi-step-nav.scss +18 -0
  30. package/src/scss/cadmin/variables/_navbar.scss +13 -0
  31. package/src/scss/cadmin/variables/_pagination.scss +48 -4
  32. package/src/scss/cadmin/variables/_tables.scss +4 -4
  33. package/src/scss/cadmin/variables/_utilities.scss +111 -36
  34. package/src/scss/components/_date-picker.scss +4 -0
  35. package/src/scss/components/_forms.scss +1 -25
  36. package/src/scss/components/_grid.scss +0 -10
  37. package/src/scss/components/_multi-step-nav.scss +9 -20
  38. package/src/scss/components/_navbar.scss +1 -6
  39. package/src/scss/components/_type.scss +0 -21
  40. package/src/scss/components/_utilities-functional-important.scss +27 -8
  41. package/src/scss/functions/_lx-icons-generated.scss +4 -0
  42. package/src/scss/mixins/_dropdown-menu.scss +37 -1
  43. package/src/scss/mixins/_globals.scss +46 -17
  44. package/src/scss/mixins/_input-groups.scss +8 -0
  45. package/src/scss/mixins/_links.scss +44 -0
  46. package/src/scss/mixins/_transition.scss +2 -7
  47. package/src/scss/mixins/_type.scss +7 -3
  48. package/src/scss/variables/_buttons.scss +2 -0
  49. package/src/scss/variables/_dropdowns.scss +54 -0
  50. package/src/scss/variables/_forms.scss +48 -3
  51. package/src/scss/variables/_icons.scss +1 -1
  52. package/src/scss/variables/_menubar.scss +8 -10
  53. package/src/scss/variables/_multi-step-nav.scss +43 -1
  54. package/src/scss/variables/_navbar.scss +14 -0
  55. package/src/scss/variables/_utilities.scss +111 -36
@@ -86,12 +86,15 @@ $cadmin-pagination-link-hover: map-deep-merge(
86
86
  (
87
87
  background-color: $cadmin-pagination-hover-bg,
88
88
  border-color: $cadmin-pagination-hover-border-color,
89
- box-shadow: inset 0 -0.125rem 0 0 $cadmin-secondary-l0,
90
89
  color: $cadmin-pagination-hover-color,
91
90
  font-weight: $cadmin-font-weight-semi-bold,
92
91
  letter-spacing: 0,
93
92
  text-decoration: none,
94
93
  z-index: 2,
94
+ before: (
95
+ background-color: $cadmin-secondary-l0,
96
+ height: 3px,
97
+ ),
95
98
  ),
96
99
  $cadmin-pagination-link-hover
97
100
  );
@@ -125,7 +128,6 @@ $cadmin-pagination-link-active: map-deep-merge(
125
128
  (
126
129
  background-color: $cadmin-pagination-active-bg,
127
130
  border-color: $cadmin-pagination-active-border-color,
128
- box-shadow: inset 0 -0.125rem 0 0 $cadmin-primary-l0,
129
131
  color: $cadmin-pagination-active-color,
130
132
  font-weight: $cadmin-font-weight-semi-bold,
131
133
  letter-spacing: 0,
@@ -145,6 +147,9 @@ $cadmin-pagination-link-disabled: map-deep-merge(
145
147
  opacity: $cadmin-pagination-disabled-opacity,
146
148
  pointer-events: $cadmin-pagination-disabled-pointer-events,
147
149
  z-index: $cadmin-zindex-pagination-link-disabled,
150
+ before: (
151
+ content: none,
152
+ ),
148
153
  focus: (
149
154
  after: (
150
155
  content: none,
@@ -177,6 +182,15 @@ $cadmin-pagination-link: map-deep-merge(
177
182
  padding-top: $cadmin-pagination-padding-y,
178
183
  position: relative,
179
184
  transition: $cadmin-pagination-link-transition,
185
+ before: (
186
+ border-radius: 0 0 $cadmin-border-radius $cadmin-border-radius,
187
+ bottom: 0,
188
+ content: '',
189
+ display: block,
190
+ left: 0,
191
+ position: absolute,
192
+ right: 0,
193
+ ),
180
194
  hover: $cadmin-pagination-link-hover,
181
195
  focus: $cadmin-pagination-link-focus,
182
196
  active: $cadmin-pagination-link-active,
@@ -184,15 +198,26 @@ $cadmin-pagination-link: map-deep-merge(
184
198
  background-color: $cadmin-pagination-active-bg,
185
199
  border-color: $cadmin-pagination-active-border-color,
186
200
  color: $cadmin-pagination-active-color,
187
- box-shadow: inset 0 -0.25rem 0 0 $cadmin-primary-l0,
188
201
  font-weight: $cadmin-font-weight-semi-bold,
189
202
  letter-spacing: 0,
203
+ before: (
204
+ background-color: $cadmin-primary-l0,
205
+ height: 4px,
206
+ ),
190
207
  ),
191
208
  disabled: $cadmin-pagination-link-disabled,
192
209
  show: (
193
- box-shadow: inset 0 -0.25rem 0 0 $cadmin-primary-l0,
194
210
  font-weight: $cadmin-font-weight-semi-bold,
195
211
  letter-spacing: 0,
212
+ before: (
213
+ background-color: transparent,
214
+ ),
215
+ hover: (
216
+ before: (
217
+ background-color: $cadmin-secondary-l0,
218
+ height: 3px,
219
+ ),
220
+ ),
196
221
  ),
197
222
  lexicon-icon: (
198
223
  margin-top: 0,
@@ -359,8 +384,18 @@ $cadmin-pagination-items-per-page-link-disabled: map-deep-merge(
359
384
  box-shadow: none,
360
385
  color: $cadmin-pagination-disabled-color,
361
386
  cursor: $cadmin-pagination-disabled-cursor,
387
+ font-weight: $cadmin-font-weight-normal,
362
388
  opacity: $cadmin-pagination-disabled-opacity,
363
389
  pointer-events: $cadmin-pagination-disabled-pointer-events,
390
+ letter-spacing: 0.033em,
391
+ before: (
392
+ content: none,
393
+ ),
394
+ focus: (
395
+ after: (
396
+ content: none,
397
+ ),
398
+ ),
364
399
  ),
365
400
  $cadmin-pagination-items-per-page-link-disabled
366
401
  );
@@ -386,6 +421,15 @@ $cadmin-pagination-items-per-page-link: map-deep-merge(
386
421
  padding-top: $cadmin-pagination-padding-y,
387
422
  text-decoration: none,
388
423
  transition: $cadmin-pagination-items-per-page-transition,
424
+ before: (
425
+ border-radius: 0 0 $cadmin-border-radius $cadmin-border-radius,
426
+ bottom: 0,
427
+ content: '',
428
+ display: block,
429
+ left: 0,
430
+ position: absolute,
431
+ right: 0,
432
+ ),
389
433
  hover: $cadmin-pagination-items-per-page-link-hover,
390
434
  focus: $cadmin-pagination-items-per-page-link-focus,
391
435
  active: $cadmin-pagination-items-per-page-link-active,
@@ -202,7 +202,7 @@ $cadmin-table-title-link: map-deep-merge(
202
202
  (
203
203
  border-radius: 1px,
204
204
  color: $cadmin-gray-900,
205
- display: inline-block,
205
+ display: inline-flex,
206
206
  max-width: 100%,
207
207
  transition: box-shadow 0.15s ease-in-out,
208
208
  hover: (
@@ -223,7 +223,7 @@ $cadmin-table-link: map-deep-merge(
223
223
  (
224
224
  border-radius: 1px,
225
225
  color: $cadmin-gray-900,
226
- display: inline-block,
226
+ display: inline-flex,
227
227
  max-width: 100%,
228
228
  transition: box-shadow 0.15s ease-in-out,
229
229
  hover: (
@@ -641,7 +641,7 @@ $cadmin-table-list-title-link: map-deep-merge(
641
641
  (
642
642
  border-radius: 1px,
643
643
  color: $cadmin-gray-900,
644
- display: inline-block,
644
+ display: inline-flex,
645
645
  max-width: 100%,
646
646
  transition: box-shadow 0.15s ease-in-out,
647
647
  hover: (
@@ -662,7 +662,7 @@ $cadmin-table-list-link: map-deep-merge(
662
662
  (
663
663
  border-radius: 1px,
664
664
  color: $cadmin-gray-900,
665
- display: inline-block,
665
+ display: inline-flex,
666
666
  max-width: 100%,
667
667
  transition: box-shadow 0.15s ease-in-out,
668
668
  hover: (
@@ -370,41 +370,6 @@ $cadmin-border-theme-colors: map-deep-merge(
370
370
  $cadmin-displays: none, inline, inline-block, grid, block, contents, table,
371
371
  table-row, table-cell, flex, inline-flex !default;
372
372
 
373
- $cadmin-displays-c-prefers-reduced-motion: () !default;
374
- $cadmin-displays-c-prefers-reduced-motion: map-deep-merge(
375
- (
376
- d-block-c-prefers-reduced-motion: (
377
- display: none !important,
378
- ),
379
- d-inline-block-c-prefers-reduced-motion: (
380
- display: none !important,
381
- ),
382
- '@media (prefers-reduced-motion: reduce)': (
383
- d-none-c-prefers-reduced-motion: (
384
- display: none !important,
385
- ),
386
- d-block-c-prefers-reduced-motion: (
387
- display: block !important,
388
- ),
389
- d-inline-block-c-prefers-reduced-motion: (
390
- display: inline-block !important,
391
- ),
392
- ),
393
- c-prefers-reduced-motion: (
394
- d-none-c-prefers-reduced-motion: (
395
- display: none !important,
396
- ),
397
- d-block-c-prefers-reduced-motion: (
398
- display: block !important,
399
- ),
400
- d-inline-block-c-prefers-reduced-motion: (
401
- display: inline-block !important,
402
- ),
403
- ),
404
- ),
405
- $cadmin-displays-c-prefers-reduced-motion
406
- );
407
-
408
373
  // Overflow
409
374
 
410
375
  $cadmin-overflows: auto, hidden !default;
@@ -577,7 +542,117 @@ $cadmin-text-decorations: map-deep-merge(
577
542
  $cadmin-text-decorations
578
543
  );
579
544
 
580
- // Transitions
545
+ // Text Truncate
546
+
547
+ $cadmin-text-truncate: () !default;
548
+ $cadmin-text-truncate: map-merge(
549
+ (
550
+ display: block,
551
+ overflow: hidden,
552
+ text-overflow: ellipsis,
553
+ white-space: nowrap,
554
+ ),
555
+ $cadmin-text-truncate
556
+ );
557
+
558
+ // Text Truncate Inline
559
+
560
+ $cadmin-text-truncate-inline: () !default;
561
+ $cadmin-text-truncate-inline: map-deep-merge(
562
+ (
563
+ display: inline-flex,
564
+ max-width: 100%,
565
+ text-truncate: (
566
+ display: inline-block,
567
+ max-width: 100%,
568
+ overflow: hidden,
569
+ text-overflow: ellipsis,
570
+ vertical-align: bottom,
571
+ white-space: nowrap,
572
+ word-wrap: normal,
573
+ ),
574
+ ),
575
+ $cadmin-text-truncate-inline
576
+ );
577
+
578
+ // C Prefers
579
+
580
+ $cadmin-c-prefers-link-underline: () !default;
581
+ $cadmin-c-prefers-link-underline: map-deep-merge(
582
+ (
583
+ '.c-prefers-link-underline .cadmin': (
584
+ '[href]:not(.disabled):not([role="button"])': (
585
+ text-decoration: underline !important,
586
+ ),
587
+ '.btn-monospaced, .nav-btn-monospaced, .nav-link-monospaced': (
588
+ '&[href]:not(.disabled):not([role="button"]):not([role="tab"])::after':
589
+ (
590
+ content: '\00a0\00a0\00a0',
591
+ position: absolute,
592
+ text-decoration: underline !important,
593
+ ),
594
+ ),
595
+ '.multi-step-item.active, .multi-step-item.complete, .multi-step-item.error, .dropdown':
596
+ (
597
+ '.multi-step-icon[href]:not([role="button"])::after': (
598
+ content: '\00a0\00a0\00a0',
599
+ position: absolute,
600
+ text-decoration: underline !important,
601
+ ),
602
+ ),
603
+ '.multi-step-item.disabled .multi-step-icon[href]:not([role="button"])::after':
604
+ (
605
+ text-decoration: none !important,
606
+ ),
607
+ ),
608
+ ),
609
+ $cadmin-c-prefers-link-underline
610
+ );
611
+
612
+ $cadmin-c-prefers-letter-spacing: () !default;
613
+ $cadmin-c-prefers-letter-spacing: map-deep-merge(
614
+ (
615
+ '.c-prefers-letter-spacing-1 .cadmin': (
616
+ letter-spacing: 1px !important,
617
+ ),
618
+ ),
619
+ $cadmin-c-prefers-letter-spacing
620
+ );
621
+
622
+ $cadmin-displays-c-prefers-reduced-motion: () !default;
623
+ $cadmin-displays-c-prefers-reduced-motion: map-deep-merge(
624
+ (
625
+ '.cadmin .d-block-c-prefers-reduced-motion': (
626
+ display: none !important,
627
+ ),
628
+ '.cadmin .d-inline-block-c-prefers-reduced-motion': (
629
+ display: none !important,
630
+ ),
631
+ '@media (prefers-reduced-motion: reduce)': (
632
+ '.cadmin .d-none-c-prefers-reduced-motion': (
633
+ display: none !important,
634
+ ),
635
+ '.cadmin .d-block-c-prefers-reduced-motion': (
636
+ display: block !important,
637
+ ),
638
+ '.cadmin .d-inline-block-c-prefers-reduced-motion': (
639
+ display: inline-block !important,
640
+ ),
641
+ ),
642
+ '.c-prefers-reduced-motion .cadmin': (
643
+ '.d-none-c-prefers-reduced-motion': (
644
+ display: none !important,
645
+ ),
646
+ '.d-block-c-prefers-reduced-motion': (
647
+ display: block !important,
648
+ ),
649
+ '.d-inline-block-c-prefers-reduced-motion': (
650
+ display: inline-block !important,
651
+ ),
652
+ ),
653
+ ),
654
+ $cadmin-displays-c-prefers-reduced-motion
655
+ );
581
656
 
582
657
  $cadmin-c-prefers-reduced-motion: () !default;
583
658
  $cadmin-c-prefers-reduced-motion: map-merge(
@@ -26,6 +26,10 @@
26
26
  select.form-control {
27
27
  @include clay-select-variant($date-picker-nav-select);
28
28
  }
29
+
30
+ .form-control-select {
31
+ @include clay-select-variant($date-picker-nav-select);
32
+ }
29
33
  }
30
34
 
31
35
  .date-picker-nav-item {
@@ -119,31 +119,7 @@ fieldset[disabled] .form-control {
119
119
  // text (without any border, background color, focus indicator)
120
120
 
121
121
  .form-control-plaintext {
122
- background-clip: border-box;
123
- background-color: transparent;
124
- border-color: transparent;
125
- border-style: solid;
126
-
127
- border-bottom-width: $input-border-bottom-width;
128
- border-left-width: $input-border-left-width;
129
- border-right-width: $input-border-right-width;
130
- border-top-width: $input-border-top-width;
131
- color: $input-plaintext-color;
132
- display: block;
133
- font-size: $input-font-size;
134
- height: $input-height;
135
- line-height: $input-line-height;
136
-
137
- // match inputs if this class comes on inputs with default margins
138
-
139
- margin-bottom: 0;
140
- min-width: 0;
141
- padding-bottom: $input-padding-y;
142
- padding-left: 0;
143
- padding-right: 0;
144
- padding-top: $input-padding-y;
145
- text-overflow: ellipsis;
146
- width: 100%;
122
+ @include clay-form-control-variant($input-plaintext);
147
123
 
148
124
  @include clay-scale-component {
149
125
  font-size: $input-font-size-mobile;
@@ -214,16 +214,6 @@
214
214
 
215
215
  .container-form-lg {
216
216
  @include clay-container($container-form-lg);
217
-
218
- .menubar-vertical-expand-lg {
219
- $container-form-lg-breakpoint-down: clay-breakpoint-prev(
220
- map-get($container-form-lg, breakpoint-up)
221
- );
222
-
223
- @include media-breakpoint-down($container-form-lg-breakpoint-down) {
224
- margin-top: -(map-get($container-form-lg, padding-top-mobile));
225
- }
226
- }
227
217
  }
228
218
 
229
219
  .container-view {
@@ -33,16 +33,12 @@
33
33
  }
34
34
 
35
35
  .multi-step-title-center {
36
+ @include clay-css($multi-step-title-center);
37
+
36
38
  .multi-step-title {
37
- margin-left: calc(#{$multi-step-icon-size} * 0.5);
38
- max-width: $multi-step-title-max-width;
39
- overflow: hidden;
40
- position: relative;
41
- text-align: center;
42
- text-overflow: ellipsis;
43
- transform: translateX(-50%);
44
- white-space: nowrap;
45
- width: auto;
39
+ @include clay-text-typography(
40
+ map-get($multi-step-title-center, multi-step-title)
41
+ );
46
42
  }
47
43
  }
48
44
 
@@ -224,8 +220,7 @@
224
220
  }
225
221
 
226
222
  .multi-step-indicator {
227
- position: relative;
228
- width: $multi-step-indicator-width;
223
+ @include clay-css($multi-step-indicator);
229
224
 
230
225
  .dropdown-item-indicator,
231
226
  .dropdown-item-indicator-start,
@@ -242,15 +237,9 @@
242
237
  }
243
238
 
244
239
  .multi-step-indicator-label {
245
- color: $multi-step-indicator-label-color;
246
- font-size: $multi-step-indicator-label-font-size;
247
- font-weight: $multi-step-indicator-label-font-weight;
248
- left: 50%;
249
- max-width: $multi-step-indicator-label-max-width;
250
- position: absolute;
251
- transform: translateX(-50%);
252
-
253
- @include text-truncate;
240
+ @include clay-css(
241
+ map-get($multi-step-indicator, multi-step-indicator-label)
242
+ );
254
243
  }
255
244
  }
256
245
 
@@ -133,12 +133,7 @@
133
133
  }
134
134
 
135
135
  .navbar-text-truncate {
136
- display: inline-block;
137
- max-width: 100%;
138
- overflow: hidden;
139
- text-overflow: ellipsis;
140
- vertical-align: bottom;
141
- white-space: nowrap;
136
+ @include clay-css($navbar-text-truncate);
142
137
  }
143
138
 
144
139
  // Navbar Toggler
@@ -301,24 +301,3 @@ strong {
301
301
  .c-kbd-dark {
302
302
  @include clay-css($c-kbd-dark);
303
303
  }
304
-
305
- // Text Truncate
306
-
307
- .text-truncate {
308
- display: block;
309
- }
310
-
311
- .text-truncate-inline {
312
- display: inline-flex;
313
- max-width: 100%;
314
-
315
- .text-truncate {
316
- display: inline-block;
317
- max-width: 100%;
318
- overflow: hidden;
319
- text-overflow: ellipsis;
320
- vertical-align: bottom;
321
- white-space: nowrap;
322
- word-wrap: normal;
323
- }
324
- }
@@ -190,10 +190,6 @@
190
190
  display: none !important;
191
191
  }
192
192
 
193
- // Display C Reduced Motion
194
-
195
- @include clay-map-to-css($displays-c-prefers-reduced-motion);
196
-
197
193
  // Display Print
198
194
 
199
195
  @media print {
@@ -658,9 +654,11 @@
658
654
  }
659
655
 
660
656
  .text-truncate {
661
- overflow: hidden;
662
- text-overflow: ellipsis;
663
- white-space: nowrap;
657
+ @include clay-css($text-truncate);
658
+ }
659
+
660
+ .text-truncate-inline {
661
+ @include clay-map-to-css($text-truncate-inline);
664
662
  }
665
663
 
666
664
  // Responsive Text Alignment
@@ -833,7 +831,28 @@
833
831
  visibility: hidden !important;
834
832
  }
835
833
 
836
- // Transitions
834
+ // C Prefers Expanded Text
835
+
836
+ %c-prefers-expanded-text {
837
+ max-width: 100% !important;
838
+ overflow-wrap: break-word !important;
839
+ white-space: normal !important;
840
+ word-wrap: break-word !important;
841
+ }
842
+
843
+ // C Prefers Link Underline
844
+
845
+ @include clay-map-to-css($c-prefers-link-underline);
846
+
847
+ // C Prefers Letter Spacing
848
+
849
+ @include clay-map-to-css($c-prefers-letter-spacing);
850
+
851
+ // Display C Reduced Motion
852
+
853
+ @include clay-map-to-css($displays-c-prefers-reduced-motion);
854
+
855
+ // C Prefers Reduced Motion
837
856
 
838
857
  .c-prefers-reduced-motion {
839
858
  @include clay-css($c-prefers-reduced-motion);
@@ -6,6 +6,8 @@
6
6
  // prettier-ignore
7
7
  $lx-icons: (
8
8
 
9
+ 'accessibility': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" fill-rule="evenodd" clip-rule="evenodd" d="M473.6 256c0 120.177-97.423 217.6-217.6 217.6-120.177 0-217.6-97.423-217.6-217.6 0-120.177 97.423-217.6 217.6-217.6 120.177 0 217.6 97.423 217.6 217.6Zm38.4 0c0 141.385-114.615 256-256 256S0 397.385 0 256 114.615 0 256 0s256 114.615 256 256Zm-76.8 0c0 98.969-80.231 179.2-179.2 179.2S76.8 354.969 76.8 256 157.031 76.8 256 76.8 435.2 157.031 435.2 256ZM291.371 148.48c0 19.794-16.046 35.84-35.84 35.84-19.795 0-35.84-16.046-35.84-35.84 0-19.794 16.045-35.84 35.84-35.84 19.794 0 35.84 16.046 35.84 35.84Zm-120.984 43.299c55.881 18.626 114.501 18.594 170.287 0 21.039-7.013 31.249 25.424 10.752 32.256-14.59 4.863-29.364 8.898-44.433 11.704-8.882 1.654-15.67 9.218-16.011 18.247l-.051 1.346c-.706 18.598-1.444 38.031 4.763 55.083l23.491 64.541c7.905 21.717-25.774 33.975-33.679 12.258l-29.975-82.358-29.975 82.358c-7.905 21.717-41.584 9.459-33.679-12.258l23.491-64.541c6.207-17.052 5.469-36.485 4.763-55.083l-.051-1.346c-.341-9.028-7.129-16.592-16.011-18.247-15.069-2.806-29.843-6.841-44.434-11.704-20.497-6.832-10.287-39.269 10.752-32.256Z" fill="#{$color}"/></svg>',
10
+
9
11
  'add-cell': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body" fill="none" d="M455.1 0H56.9C25.5 0 0 25.5 0 56.9v398.2C0 486.5 25.5 512 56.9 512h398.2c31.4 0 56.9-25.5 56.9-56.9V56.9C512 25.5 486.5 0 455.1 0z"/><path class="lexicon-icon-outline" d="M455.1 0H56.9C25.5 0 0 25.5 0 56.9v398.2C0 486.5 25.5 512 56.9 512h398.2c31.4 0 56.9-25.5 56.9-56.9V56.9C512 25.5 486.5 0 455.1 0zM160 448H64v-96h96v96zm0-128H64V192h96v128zm0-160H64V64h96v96zm160 288H192v-96h128v96zm0-288H192V64h128v96zm128 288h-96v-96h96v96zm0-128h-96V192h96v128zm0-160h-96V64h96v96z" fill="#{$color}"/></svg>',
10
12
 
11
13
  'add-column': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body" fill="none" d="M0 56.9v398.2C0 486.5 25.5 512 56.9 512h398.2c31.4 0 56.9-25.5 56.9-56.9V56.9C512 25.5 486.5 0 455.1 0H56.9C25.5 0 0 25.5 0 56.9z"/><path class="lexicon-icon-outline" d="M0 56.9v398.2C0 486.5 25.5 512 56.9 512h398.2c31.4 0 56.9-25.5 56.9-56.9V56.9C512 25.5 486.5 0 455.1 0H56.9C25.5 0 0 25.5 0 56.9zM448 352v96h-96v-96h96zm-288 0v96H64v-96h96zm288-160v128h-96V192h96zm-288 0v128H64V192h96zM448 64v96h-96V64h96zm-288 0v96H64V64h96z" fill="#{$color}"/></svg>',
@@ -808,6 +810,8 @@
808
810
 
809
811
  'star': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body" d="M508.753 190.647c-3.247-9.265-11.983-15.493-21.802-15.493H336.845L277.642 16.946c-3.378-9.027-12.01-14.992-21.644-14.992s-18.264 5.965-21.617 14.992l-59.203 158.208H25.047a23.087 23.087 0 0 0-21.802 15.493c-3.247 9.265-.264 19.558 7.417 25.682l120.966 96.234-55.534 162.88a23.104 23.104 0 0 0 7.285 25.365c7.47 6.097 17.975 6.889 26.316 1.979l146.173-86.204 150.317 90.163a22.936 22.936 0 0 0 11.877 3.299h.132c12.722-.422 23.2-10.32 23.2-23.095 0-3.853-.924-7.496-2.613-10.69l-58.252-163.83 120.807-96.103c7.68-6.097 10.663-16.417 7.417-25.682z"/><path class="lexicon-icon-outline" d="M418.1 510.1c-4.1 0-8.2-1.1-11.9-3.3l-150.3-90.2-146.2 86.2c-8.3 4.9-18.8 4.1-26.3-2s-10.4-16.2-7.3-25.4l55.5-162.9-121-96.2C3 210.2 0 199.9 3.3 190.6s12-15.5 21.8-15.5h150.1l59.2-158.2c3.4-9 12-15 21.6-15s18.2 6 21.6 15l59.2 158.2H487c9.8 0 18.6 6.2 21.8 15.5 3.2 9.3.3 19.6-7.4 25.7l-120.8 96.1 58.3 163.9c1.7 3.2 2.6 6.8 2.6 10.7 0 12.7-10.3 23.1-23.1 23.1h-.3zM256 366.6c4.1 0 8.2 1.1 11.9 3.3L374.7 434l-43.3-121.7c-3.3-9.3-.3-19.7 7.4-25.8l82-65.2h-100c-9.6 0-18.3-6-21.6-15L256 90.9l-43.2 115.4c-3.4 9-12 15-21.6 15h-100l82 65.2c7.6 6.1 10.6 16.3 7.5 25.5L140 431.3l104.3-61.5c3.6-2.1 7.6-3.2 11.7-3.2z" fill="#{$color}"/></svg>',
810
812
 
813
+ 'stars': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M352 96a19.518 19.518 0 0 0-19.138 15.689l-16.678 83.392a32 32 0 0 1-25.103 25.103l-83.392 16.678a19.518 19.518 0 0 0 0 38.276l83.392 16.678a32 32 0 0 1 25.103 25.103l16.678 83.392a19.518 19.518 0 0 0 38.276 0l16.678-83.392a32 32 0 0 1 25.103-25.103l83.392-16.678a19.518 19.518 0 0 0 0-38.276l-83.392-16.678a32 32 0 0 1-25.103-25.103l-16.678-83.392A19.518 19.518 0 0 0 352 96ZM96 0c-9.233 0-17.112 6.675-18.63 15.782l-5.04 30.243A32 32 0 0 1 46.024 72.33l-30.243 5.04C6.675 78.889 0 86.768 0 96s6.675 17.113 15.782 18.63l30.243 5.041a32 32 0 0 1 26.304 26.304l5.04 30.243C78.889 185.325 86.768 192 96 192s17.113-6.675 18.63-15.782l5.041-30.243a32.001 32.001 0 0 1 26.304-26.304l30.243-5.041C185.325 113.112 192 105.233 192 96c0-9.233-6.675-17.112-15.782-18.63l-30.243-5.04a32 32 0 0 1-26.304-26.305l-5.041-30.243C113.113 6.675 105.233 0 96 0Zm44.119 399.522c-3.877 15.511-13.422 24.804-28.597 28.597-20.185 5.047-20.185 34.715 0 39.762 15.175 3.793 24.72 13.086 28.597 28.597 5.047 20.185 34.715 20.185 39.762 0 3.793-15.175 13.086-24.72 28.597-28.597 20.185-5.047 20.185-34.715 0-39.762-15.175-3.793-24.72-13.086-28.597-28.597-5.047-20.185-34.715-20.185-39.762 0Z" fill="#{$color}"/></svg>',
814
+
811
815
  'sticky': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm145.4 246.4c-27.2 27.2-45.4 10.5-51.2 5.9L324.5 278c13.1 67.7-42.2 110.1-42.2 110.1-12.5 12.5-32.8 12.5-45.3 0L195.7 347l-66.5 54-17.8-18 53-67.3-40.6-40.6c-12.5-12.5-12.5-32.8 0-45.3 0 0 41.8-55.1 110.1-42.2l25.7-25.7c-2.1-2.1-23.6-21.7 6.4-51.8 20.7-20.7 39.6-15.1 50-4.7l90.5 90.5c5.5 6.7 21.2 24.2-5.1 50.5z"/></svg>',
812
816
 
813
817
  'strikethrough': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M511.999 224h-174.81a227.388 227.388 0 0 0-32.11-8.521l-68.462-13.129c-17.957-3.73-31.342-10.533-40.119-20.48-8.741-9.911-13.129-21.577-13.129-34.962 0-8.338 1.865-16.165 5.522-23.552 3.73-7.387 8.887-13.97 15.579-19.749 6.656-5.815 14.738-10.423 24.21-13.861 9.435-3.511 19.931-5.193 31.451-5.193 15.653 0 28.928 2.304 39.717 6.949 10.862 4.571 19.749 10.386 26.624 17.298 6.912 6.949 12.142 14.446 15.579 22.491s5.851 15.616 7.241 22.491l85.76-26.331c-2.743-13.824-7.973-28.233-15.579-43.301-7.607-14.994-18.286-28.709-32.146-41.216-13.824-12.471-31.232-22.711-52.224-30.793C314.148 4.059 288.95-.001 259.473-.001c-23.077 0-44.946 3.95-65.719 11.776-20.699 7.899-38.949 18.725-54.638 32.585-15.653 13.861-27.977 30.098-36.974 48.823s-13.495 38.912-13.495 60.599c0 26.843 6.254 50.139 18.213 70.18H-.002v64h192.913c7.79 2.487 15.799 4.754 24.357 6.473l68.424 13.861c19.419 3.657 34.158 10.715 44.288 21.102 10.13 10.423 15.177 22.784 15.177 37.083 0 17.518-6.802 31.963-20.37 43.301-13.605 11.337-33.317 16.969-59.136 16.969-17.518 0-32.731-2.523-45.641-7.607-12.873-5.083-23.735-11.886-32.475-20.48-8.777-8.521-15.579-18.322-20.407-29.44s-7.717-22.601-8.594-34.633l-88.502 23.515c1.792 17.591 6.912 35.474 15.177 53.723 8.265 18.213 20.37 34.743 36.279 49.518 15.909 14.811 35.621 26.953 59.136 36.352 23.515 9.545 51.602 14.299 84.333 14.299 28.599 0 53.797-4.389 75.666-13.129 21.906-8.777 40.338-20.187 55.296-34.267 15.031-14.08 26.405-30.281 34.267-48.53 7.826-18.213 11.776-36.827 11.776-55.771 0-17.079-3.035-33.499-8.997-49.152-3.109-8.119-6.985-15.799-11.557-23.113h90.587v-64.037z" fill="#{$color}"/></svg>',
@@ -117,7 +117,25 @@
117
117
 
118
118
  .dropdown-item {
119
119
  @include clay-dropdown-item-variant(
120
- map-deep-get($map, dropdown-item)
120
+ map-get($map, dropdown-item)
121
+ );
122
+ }
123
+
124
+ .dropdown-item-scroll {
125
+ @include clay-dropdown-item-variant(
126
+ map-get($map, dropdown-item-scroll)
127
+ );
128
+ }
129
+
130
+ .dropdown-item-scroll-down {
131
+ @include clay-dropdown-item-variant(
132
+ map-get($map, dropdown-item-scroll-down)
133
+ );
134
+ }
135
+
136
+ .dropdown-item-scroll-up {
137
+ @include clay-dropdown-item-variant(
138
+ map-get($map, dropdown-item-scroll-up)
121
139
  );
122
140
  }
123
141
 
@@ -184,6 +202,10 @@
184
202
  );
185
203
  }
186
204
  }
205
+
206
+ .inline-scroller {
207
+ @include clay-css(map-get($map, inline-scroller));
208
+ }
187
209
  }
188
210
  }
189
211
  }
@@ -721,6 +743,20 @@
721
743
  }
722
744
  }
723
745
 
746
+ &.show {
747
+ $show: setter(map-get($map, show), ());
748
+
749
+ @include clay-css($show);
750
+
751
+ &::before {
752
+ @include clay-css(map-get($show, before));
753
+ }
754
+
755
+ &::after {
756
+ @include clay-css(map-get($show, after));
757
+ }
758
+ }
759
+
724
760
  &::before {
725
761
  @include clay-css(map-get($map, before));
726
762
  }