@clayui/css 3.104.0 → 3.105.1-alpha.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 (56) hide show
  1. package/lib/css/atlas.css +490 -120
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +457 -47
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +1 -1
  7. package/lib/css/cadmin.css +451 -80
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/bookmarks-full.svg +9 -0
  10. package/lib/images/icons/bookmarks.svg +1 -2
  11. package/lib/images/icons/download.svg +2 -2
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/lib/images/icons/import-list.svg +2 -3
  14. package/lib/images/icons/import.svg +1 -2
  15. package/lib/images/icons/key.svg +9 -0
  16. package/lib/images/icons/upload-multiple.svg +2 -3
  17. package/lib/images/icons/upload.svg +1 -2
  18. package/package.json +2 -2
  19. package/src/images/icons/bookmarks-full.svg +9 -0
  20. package/src/images/icons/bookmarks.svg +1 -2
  21. package/src/images/icons/download.svg +2 -2
  22. package/src/images/icons/import-list.svg +2 -3
  23. package/src/images/icons/import.svg +1 -2
  24. package/src/images/icons/key.svg +9 -0
  25. package/src/images/icons/upload-multiple.svg +2 -3
  26. package/src/images/icons/upload.svg +1 -2
  27. package/src/scss/_license-text.scss +1 -1
  28. package/src/scss/atlas/variables/_dropdowns.scss +1 -1
  29. package/src/scss/atlas/variables/_range.scss +13 -11
  30. package/src/scss/cadmin/components/_clay-color.scss +42 -0
  31. package/src/scss/cadmin/components/_custom-forms.scss +1 -2
  32. package/src/scss/cadmin/components/_input-groups.scss +4 -0
  33. package/src/scss/cadmin/components/_tables.scss +14 -0
  34. package/src/scss/cadmin/variables/_clay-color.scss +157 -1
  35. package/src/scss/cadmin/variables/_custom-forms.scss +25 -2
  36. package/src/scss/cadmin/variables/_dropdowns.scss +1 -1
  37. package/src/scss/cadmin/variables/_forms.scss +23 -0
  38. package/src/scss/cadmin/variables/_globals.scss +6 -0
  39. package/src/scss/cadmin/variables/_tables.scss +45 -0
  40. package/src/scss/components/_clay-color.scss +42 -0
  41. package/src/scss/components/_custom-forms.scss +1 -2
  42. package/src/scss/components/_input-groups.scss +4 -0
  43. package/src/scss/components/_range.scss +2 -2
  44. package/src/scss/components/_tables.scss +14 -0
  45. package/src/scss/functions/_lx-icons-generated.scss +10 -6
  46. package/src/scss/mixins/_forms.scss +224 -5
  47. package/src/scss/mixins/_input-groups.scss +5 -1
  48. package/src/scss/mixins/_links.scss +1 -1
  49. package/src/scss/mixins/_tables.scss +27 -3
  50. package/src/scss/variables/_clay-color.scss +157 -1
  51. package/src/scss/variables/_custom-forms.scss +24 -1
  52. package/src/scss/variables/_dropdowns.scss +6 -0
  53. package/src/scss/variables/_forms.scss +31 -0
  54. package/src/scss/variables/_globals.scss +6 -0
  55. package/src/scss/variables/_range.scss +33 -1
  56. package/src/scss/variables/_tables.scss +45 -0
@@ -37,7 +37,7 @@ $cadmin-clay-color-input-group-inset-item-before: map-merge(
37
37
  $cadmin-clay-color-dropdown-menu: () !default;
38
38
  $cadmin-clay-color-dropdown-menu: map-deep-merge(
39
39
  (
40
- max-height: 400px,
40
+ max-height: 500px,
41
41
  max-width: none,
42
42
  padding-bottom: 0,
43
43
  padding-left: 16px,
@@ -333,6 +333,162 @@ $cadmin-clay-color-range-pointer: map-deep-merge(
333
333
  $cadmin-clay-color-range-pointer
334
334
  );
335
335
 
336
+ // Clay Color Form Group
337
+
338
+ $cadmin-clay-color-form-group: () !default;
339
+ $cadmin-clay-color-form-group: map-deep-merge(
340
+ (
341
+ display: flex,
342
+ align-items: center,
343
+ margin-top: 4px,
344
+ margin-bottom: 16px,
345
+ clay-range: (
346
+ flex-grow: 1,
347
+ flex-shrink: 0,
348
+ margin-right: 16px,
349
+ width: 144px,
350
+ ),
351
+ form-control: (
352
+ padding-left: 0,
353
+ padding-right: 10%,
354
+ text-align: right,
355
+ ),
356
+ input-group: (
357
+ input-group-inset-item-before: (
358
+ font-weight: $cadmin-font-weight-semi-bold,
359
+ padding-left: 10%,
360
+ padding-right: 0,
361
+ min-width: 18px,
362
+ ),
363
+ ),
364
+ ),
365
+ $cadmin-clay-color-form-group
366
+ );
367
+
368
+ // Clay Color Slider
369
+
370
+ $cadmin-clay-color-slider: () !default;
371
+ $cadmin-clay-color-slider: map-deep-merge(
372
+ (
373
+ clay-range-input: (
374
+ border-radius: 100px,
375
+ clay-range-track: (
376
+ border-radius: inherit,
377
+ height: 8px,
378
+ margin-top: -4px,
379
+ ),
380
+ clay-range-progress: (
381
+ background-color: transparent,
382
+ border-radius: inherit,
383
+ height: 8px,
384
+ margin-top: -4px,
385
+ width: 100%,
386
+ ),
387
+ ms-thumb: (
388
+ visibility: visible,
389
+ ),
390
+ moz-range-thumb: (
391
+ visibility: visible,
392
+ ),
393
+ webkit-slider-thumb: (
394
+ visibility: visible,
395
+ ),
396
+ clay-range-thumb: (
397
+ background-color: currentColor,
398
+ border-width: 0,
399
+ box-shadow: 0 0 0 2px $cadmin-white,
400
+ height: 10px,
401
+ margin-top: -5px,
402
+ transition:
403
+ clay-enable-transitions(box-shadow 0.15s ease-in-out),
404
+ visibility: hidden,
405
+ width: 10px,
406
+ ),
407
+ form-control-range: (
408
+ background-color: inherit,
409
+ border-radius: inherit,
410
+ color: inherit,
411
+ height: 8px,
412
+ webkit-slider-runnable-track: (
413
+ -webkit-appearance: none,
414
+ appearance: none,
415
+ ),
416
+ ),
417
+ focus: (
418
+ clay-range-thumb: (
419
+ box-shadow: #{0 0 0 2px $cadmin-white,
420
+ 0 0 0 4px $cadmin-primary-l1},
421
+ ),
422
+ ),
423
+ ),
424
+ ),
425
+ $cadmin-clay-color-slider
426
+ );
427
+
428
+ $cadmin-clay-color-slider-hue: () !default;
429
+ $cadmin-clay-color-slider-hue: map-deep-merge(
430
+ (
431
+ clay-range-input: (
432
+ color: #26affd,
433
+ clay-range-track: (
434
+ background-image:
435
+ linear-gradient(
436
+ 270deg,
437
+ #fc0d1b 0%,
438
+ #fc22d6 18.23%,
439
+ #1824fb 34.25%,
440
+ #2bf6fd 50.28%,
441
+ #2bfd2e 67.58%,
442
+ #fcfd37 81.22%,
443
+ #fc121b 100%
444
+ ),
445
+ ),
446
+ ),
447
+ ),
448
+ $cadmin-clay-color-slider-hue
449
+ );
450
+
451
+ $cadmin-clay-color-slider-alpha: () !default;
452
+ $cadmin-clay-color-slider-alpha: map-deep-merge(
453
+ (
454
+ clay-range-input: (
455
+ color: $cadmin-black,
456
+ clay-range-track: (
457
+ background-color: $cadmin-white,
458
+ background-image: #{linear-gradient(
459
+ 45deg,
460
+ #e7e7ed 25%,
461
+ transparent 25%
462
+ ),
463
+ linear-gradient(
464
+ -45deg,
465
+ #e7e7ed 25%,
466
+ transparent 25%,
467
+ ),
468
+ linear-gradient(
469
+ 45deg,
470
+ transparent 75%,
471
+ #e7e7ed 75%,
472
+ ),
473
+ linear-gradient(-45deg, transparent 75%, #e7e7ed 75%)},
474
+ background-position: #{0 0,
475
+ 0 4px,
476
+ 4px -4px,
477
+ -4px 0px},
478
+ background-size: 8px 8px,
479
+ ),
480
+ form-control-range: (
481
+ color: inherit,
482
+ ),
483
+ clay-range-progress: (
484
+ background-image:
485
+ linear-gradient(90deg, transparent 0%, currentcolor 100%),
486
+ ),
487
+ ),
488
+ ),
489
+ $cadmin-clay-color-slider-alpha
490
+ );
491
+
336
492
  // Clay Color Sm
337
493
 
338
494
  $cadmin-clay-color-sm-input-group-inset-item-before: () !default;
@@ -1,13 +1,32 @@
1
1
  $cadmin-custom-forms-transition: background-color 0.15s ease-in-out,
2
2
  border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !default;
3
3
 
4
+ // Form File
5
+
6
+ $cadmin-form-file: () !default;
7
+ $cadmin-form-file: map-deep-merge(
8
+ (
9
+ border-radius: clay-enable-rounded($cadmin-input-border-radius),
10
+ display: flex,
11
+ position: relative,
12
+ transition: clay-enable-transitions($cadmin-input-transition),
13
+ focus-within: (
14
+ background-color: $cadmin-input-focus-bg,
15
+ box-shadow: $cadmin-input-focus-box-shadow,
16
+ outline: 0,
17
+ z-index: 1,
18
+ ),
19
+ ),
20
+ $cadmin-form-file
21
+ );
22
+
4
23
  // Custom Control Indicator
5
24
 
6
25
  $cadmin-custom-control-indicator-size: 16px !default;
7
26
 
8
27
  $cadmin-custom-control-indicator-bg: $cadmin-white !default;
9
28
  $cadmin-custom-control-indicator-bg-size: 50% 50% !default;
10
- $cadmin-custom-control-indicator-border-color: $cadmin-gray-400 !default;
29
+ $cadmin-custom-control-indicator-border-color: $cadmin-gray-600 !default;
11
30
  $cadmin-custom-control-indicator-border-style: solid !default;
12
31
  $cadmin-custom-control-indicator-border-width: 1px !default; // 1px
13
32
  $cadmin-custom-control-indicator-box-shadow: none !default;
@@ -182,7 +201,11 @@ $cadmin-label-custom-control-label: map-deep-merge(
182
201
  $cadmin-custom-control-label-text: () !default;
183
202
  $cadmin-custom-control-label-text: map-deep-merge(
184
203
  (
185
- padding-left: $cadmin-custom-control-description-padding-left,
204
+ display: block,
205
+ padding-left:
206
+ calc(
207
+ #{$cadmin-custom-control-indicator-size} + #{$cadmin-custom-control-description-padding-left}
208
+ ),
186
209
  ),
187
210
  $cadmin-custom-control-label-text
188
211
  );
@@ -327,7 +327,7 @@ $cadmin-dropdown-section-custom-control-label: map-deep-merge(
327
327
  $cadmin-dropdown-section-custom-control-label-text: () !default;
328
328
  $cadmin-dropdown-section-custom-control-label-text: map-deep-merge(
329
329
  (
330
- padding-left: 16px,
330
+ padding-left: 28px,
331
331
  ),
332
332
  $cadmin-dropdown-section-custom-control-label-text
333
333
  );
@@ -99,6 +99,12 @@ $cadmin-input: map-deep-merge(
99
99
  color: $cadmin-input-placeholder-focus-color,
100
100
  ),
101
101
  ),
102
+ focus-within: (
103
+ background-color: $cadmin-input-focus-bg,
104
+ border-color: $cadmin-input-focus-border-color,
105
+ box-shadow: $cadmin-input-focus-box-shadow,
106
+ color: $cadmin-input-focus-color,
107
+ ),
102
108
  disabled: (
103
109
  background-color: $cadmin-input-disabled-bg,
104
110
  border-color: $cadmin-input-disabled-border-color,
@@ -1524,6 +1530,23 @@ $cadmin-input-group-item-shrink: map-deep-merge(
1524
1530
  $cadmin-input-group-item-shrink
1525
1531
  );
1526
1532
 
1533
+ // .input-group-item-focusable
1534
+
1535
+ $cadmin-input-group-item-focusable: () !default;
1536
+ $cadmin-input-group-item-focusable: map-deep-merge(
1537
+ (
1538
+ border-radius: clay-enable-rounded($cadmin-input-border-radius),
1539
+ transition: clay-enable-transitions($cadmin-input-transition),
1540
+ focus-within: (
1541
+ background-color: $cadmin-input-focus-bg,
1542
+ box-shadow: $cadmin-input-focus-box-shadow,
1543
+ outline: 0,
1544
+ z-index: 1,
1545
+ ),
1546
+ ),
1547
+ $cadmin-input-group-item-focusable
1548
+ );
1549
+
1527
1550
  // Input Group Inset
1528
1551
 
1529
1552
  $cadmin-input-group-inset-item-color: $cadmin-input-group-addon-color !default;
@@ -704,14 +704,20 @@ $cadmin-link-hover-decoration: underline !default;
704
704
  $cadmin-link: () !default;
705
705
  $cadmin-link: map-deep-merge(
706
706
  (
707
+ border-radius: 1px,
707
708
  color: $cadmin-link-color,
708
709
  cursor: $cadmin-link-cursor,
709
710
  text-decoration: $cadmin-link-decoration,
710
711
  text-underline-offset: 0.23em,
712
+ transition: clay-enable-transitions($cadmin-component-transition),
711
713
  hover: (
712
714
  color: $cadmin-link-hover-color,
713
715
  text-decoration: $cadmin-link-hover-decoration,
714
716
  ),
717
+ focus: (
718
+ box-shadow: $cadmin-component-focus-box-shadow,
719
+ outline: 0,
720
+ ),
715
721
  ),
716
722
  $cadmin-link
717
723
  );
@@ -403,6 +403,14 @@ $cadmin-c-table: map-deep-merge(
403
403
  padding-right: 0,
404
404
  ),
405
405
  ),
406
+ component-drag: (
407
+ font-size: 14px,
408
+ height: 16px,
409
+ width: 16px,
410
+ focus: (
411
+ box-shadow: $cadmin-component-focus-inset-box-shadow,
412
+ ),
413
+ ),
406
414
  custom-control: (
407
415
  margin-bottom: 0,
408
416
  ),
@@ -468,6 +476,43 @@ $cadmin-c-table-sm: map-deep-merge(
468
476
  $cadmin-c-table-sm
469
477
  );
470
478
 
479
+ // .table-nested-rows
480
+
481
+ $cadmin-c-table-nested-rows: () !default;
482
+ $cadmin-c-table-nested-rows: map-deep-merge(
483
+ (
484
+ table-column-start: (
485
+ padding-left: 20px,
486
+ ),
487
+ table-column-end: (
488
+ padding-right: 20px,
489
+ ),
490
+ autofit-col: (
491
+ padding-left: 2px,
492
+ padding-right: 2px,
493
+ min-width: 28px,
494
+ ),
495
+ autofit-col-checkbox: (
496
+ padding-right: 10px,
497
+ ),
498
+ autofit-col-icon: (
499
+ padding-right: 10px,
500
+ ),
501
+ component-drag: (
502
+ left: 2px,
503
+ position: absolute,
504
+ top: 50%,
505
+ transform: translateY(-50%),
506
+ ),
507
+ component-toggle: (
508
+ font-size: 14px,
509
+ height: 24px,
510
+ width: 24px,
511
+ ),
512
+ ),
513
+ $cadmin-c-table-nested-rows
514
+ );
515
+
471
516
  // Table Dark Variant
472
517
 
473
518
  $cadmin-table-dark-bg: $cadmin-gray-800 !default;
@@ -151,6 +151,48 @@
151
151
  @include clay-button-variant($clay-color-range-pointer);
152
152
  }
153
153
 
154
+ // Clay Color Slider
155
+
156
+ .clay-color-slider {
157
+ @include clay-range-variant($clay-color-slider);
158
+ }
159
+
160
+ .clay-color-slider-hue {
161
+ @include clay-range-variant($clay-color-slider-hue);
162
+ }
163
+
164
+ .clay-color-slider-alpha {
165
+ @include clay-range-variant($clay-color-slider-alpha);
166
+ }
167
+
168
+ // Clay Color Form Group
169
+
170
+ .clay-color-form-group {
171
+ @include clay-css($clay-color-form-group);
172
+
173
+ .clay-range {
174
+ @include clay-css(map-get($clay-color-form-group, clay-range));
175
+ }
176
+
177
+ .form-control {
178
+ @include clay-form-control-variant(
179
+ map-get($clay-color-form-group, form-control)
180
+ );
181
+ }
182
+
183
+ .input-group {
184
+ $input-group: map-get($clay-color-form-group, input-group);
185
+
186
+ @include clay-input-group-variant($input-group);
187
+
188
+ .input-group-inset-item-before {
189
+ @include clay-css(
190
+ map-get($input-group, input-group-inset-item-before)
191
+ );
192
+ }
193
+ }
194
+ }
195
+
154
196
  // Clay Color Sm
155
197
 
156
198
  %clay-color-sm-input-group-inset-item-before {
@@ -1,6 +1,5 @@
1
1
  .form-file {
2
- display: flex;
3
- position: relative;
2
+ @include clay-form-control-variant($form-file);
4
3
  }
5
4
 
6
5
  .form-file-input {
@@ -134,6 +134,10 @@
134
134
  @include clay-input-group-item-variant($input-group-item-shrink);
135
135
  }
136
136
 
137
+ .input-group-item-focusable {
138
+ @include clay-input-group-item-variant($input-group-item-focusable);
139
+ }
140
+
137
141
  // Input Group Text
138
142
 
139
143
  .input-group-text {
@@ -24,8 +24,8 @@
24
24
  }
25
25
  }
26
26
 
27
- .clay-range-progress-none .clay-range-progress {
28
- visibility: hidden;
27
+ .clay-range-progress-none {
28
+ @include clay-range-variant($clay-range-progress-none);
29
29
  }
30
30
 
31
31
  .clay-range-title {
@@ -454,6 +454,20 @@ caption {
454
454
  }
455
455
  }
456
456
 
457
+ // .table-nested-rows
458
+
459
+ .table-nested-rows {
460
+ @include clay-table-variant($c-table-nested-rows);
461
+
462
+ .component-action.show .collapse-icon-closed {
463
+ display: none;
464
+ }
465
+
466
+ .component-action:not(.show) .collapse-icon-open {
467
+ display: none;
468
+ }
469
+ }
470
+
457
471
  // Show Quick Action
458
472
 
459
473
  .show-quick-actions-on-hover {
@@ -112,7 +112,9 @@
112
112
 
113
113
  'book': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M480 352V32c0-16.6-14.3-32-32-32H128C75 0 32 46.3 32 96v352s0 64 80.2 63.7l351.8.3c21.6-1.3 20.9-30.7 0-31.9l-352-.1c-64.1-.1-63.9-96.1.2-96H448c17.7-.1 32-15.4 32-32zm-64-32H128V64h288v256z" fill="#{$color}"/><path class="lexicon-icon-outline" d="M111.8 416c-20.1.3-22.2 31 0 32H432c23.1-1.6 19.4-31.7 0-32H111.8z" fill="#{$color}"/></svg>',
114
114
 
115
- 'bookmarks': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-body" fill="none" d="M448 0H64C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"/><path class="lexicon-icon-outline" d="M448 0H64C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm0 448H64V64h160v224l96-81.5 96 81.5V64h32v384z" fill="#{$color}"/></svg>',
115
+ 'bookmarks-full': '<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="m191.945 404.937 113.237 95.557c31.255 26.375 78.706 4.569 78.706-36.63V63.981C383.888 28.2 355.243 0 319.907 0H63.982C28.646 0 0 28.199 0 63.981v399.883c0 41.198 47.452 63.005 78.707 36.63l113.238-95.557Z" fill="#{$color}"/></svg>',
116
+
117
+ 'bookmarks': '<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="M171.307 338.015c11.92-10.059 29.355-10.059 41.275 0l107.325 90.567v-364.6H63.982v364.6l107.325-90.567Zm20.637 66.922 113.238 95.557c31.255 26.375 78.706 4.569 78.706-36.63V63.981C383.888 28.2 355.243 0 319.907 0H63.982C28.646 0 0 28.199 0 63.981v399.883c0 41.198 47.452 63.005 78.707 36.63l113.237-95.557Z" fill="#{$color}"/></svg>',
116
118
 
117
119
  'books': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline books-1-spine-top" d="M96.1 32h-64C14.4 32 .1 46.3.1 64v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine-bottom" d="M.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32H.1v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine" fill="#{$color}" d="M.1 128h128v256H.1z"/><path class="lexicon-icon-outline books-2-spine-top" d="M256.1 32h-64c-17.7 0-32 14.3-32 32v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine-bottom" d="M160.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32h-128v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine" fill="#{$color}" d="M160.1 128h128v256h-128z"/><path class="lexicon-icon-outline books-3-spine-top" d="m359.2 35.2-31 8.1c-17.1 4.5-27.4 21.9-22.9 39l8.1 31 92.9-24.2-8.1-31c-4.5-17.1-21.9-27.4-39-22.9z" fill="#{$color}"/><path class="lexicon-icon-outline books-3-spine" fill="#{$color}" d="m321.422 144.212 92.909-24.172 64.46 247.756-92.908 24.173z"/><path class="lexicon-icon-outline books-3-spine-bottom" d="M402 453.9c4.5 17.1 21.9 27.4 39 22.9l31-8.1c17.1-4.5 27.4-21.9 22.9-39l-8.1-31-92.9 24.2 8.1 31z" fill="#{$color}"/></svg>',
118
120
 
@@ -280,7 +282,7 @@
280
282
 
281
283
  'dollar-symbol': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M223 31c0-41.4 63.7-41.4 63.7 0v35.6c26.9 6 51 19.7 68.7 39.4 26.1 29.3-19.5 73.7-47.4 42.9-91-70.3-184.6 50.1-52.5 73.7h.3c138.4 8.9 187.8 175.2 30.9 225.1V480c0 42.7-63.7 42.5-63.7 0v-32.2c-27.1-6-69.6-23.1-87.3-42.9-25.6-28.8 20.2-73.5 47.6-42.7 91.6 77.6 235-48.8 44-81.7C74.7 252.4 118 85.1 223 66.7V31z" fill="#{$color}"/></svg>',
282
284
 
283
- 'download': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="download-arrow-down lexicon-icon-outline" d="M233.2 374.5c13.1 13.2 33.5 12.2 45.6 0l71.3-71.6c29.8-29.9-14.3-77.2-45.6-45.8l-16.6 16.7V32.1c0-42.5-63.7-43-63.7 0v241.7l-16.6-16.7c-30.8-30.9-75.5 15.8-45.6 45.8l71.2 71.6z" fill="#{$color}"/><path class="download-border lexicon-icon-outline" d="M384 384.5v63.8H128v-63.8c0-43.8-64-41.8-64 0V512h384V384.5c0-43.8-64-42.8-64 0z" fill="#{$color}"/></svg>',
285
+ 'download': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="download-arrow-down lexicon-icon-outline" d="M256 384a32.324 32.324 0 0 1-22.906-9.5L161.5 302.9c-12.719-12.599-12.719-33.099 0-45.8 12.594-12.7 33.094-12.7 45.781 0L224 273.801V32c0-17.7 14.281-32 32-32 17.688 0 32 14.3 32 32v241.801l16.688-16.701a32.352 32.352 0 0 1 22.906-9.5 32.365 32.365 0 0 1 22.906 9.5c12.688 12.599 12.688 33.099 0 45.8l-71.594 71.6c-6.125 6.1-14.312 9.5-22.906 9.5Z" fill="#{$color}"/><path class="download-border lexicon-icon-outline" d="M384 384c0-17.699 14.312-32 32-32 17.688 0 32 14.301 32 32v64c0 35.346-28.654 64-64 64H128c-35.346 0-64-28.654-64-64v-64c0-17.699 14.313-32 32-32 17.688 0 32 14.301 32 32v64h256v-64Z" fill="#{$color}"/></svg>',
284
286
 
285
287
  'drag': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><circle class="lexicon-icon-outline drag-dot-1" cx="192" cy="128" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-2" cx="192" cy="256" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-3" cx="192" cy="384" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-4" cx="320" cy="128" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-5" cx="320" cy="256" r="32" fill="#{$color}"/><circle class="lexicon-icon-outline drag-dot-6" cx="320" cy="384" r="32" fill="#{$color}"/></svg>',
286
288
 
@@ -510,9 +512,9 @@
510
512
 
511
513
  'import-export': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline import-export-arrow-up" d="M254.5 81.1 182.9 9.5C176.8 3.4 168.6 0 160 0c-8.6 0-16.8 3.4-22.9 9.5L65.5 81.1c-12.7 12.7-12.7 33.2 0 45.8 6.3 6.3 14.6 9.5 22.9 9.5s16.6-3.2 22.9-9.5l16.7-16.7V481c0 17.7 14.3 32 32 32s32-14.3 32-32V110.2l16.7 16.7c12.7 12.7 33.2 12.7 45.8 0 12.7-12.7 12.7-33.2 0-45.8z" fill="#{$color}"/><path class="lexicon-icon-outline import-export-arrow-down" d="M446.5 385.1c-6.3-6.3-14.6-9.5-22.9-9.5s-16.6 3.2-22.9 9.5L384 401.8V31c0-17.7-14.3-32-32-32s-32 14.3-32 32v370.8l-16.7-16.7c-12.7-12.7-33.2-12.7-45.8 0-12.7 12.7-12.7 33.2 0 45.8l71.6 71.6c6.1 6.1 14.3 9.5 22.9 9.5s16.8-3.4 22.9-9.5l71.6-71.6c12.7-12.7 12.7-33.2 0-45.8z" fill="#{$color}"/></svg>',
512
514
 
513
- 'import-list': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-import-list-border-bottom" d="M448 160v288H64V160c0-42.4-64-41.4-64 0v288c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-42.7-64-42.2-64 0z" fill="#{$color}"/><path class="lexicon-icon-outline lx-import-list-bar" d="M352 64H160c-43.5 0-43-64 0-64h192c43 0 43.5 64 0 64z" fill="#{$color}"/><path class="lexicon-icon-outline lx-import-list-arrow-down" d="M352 96H160c-42 0-43 64 0 64h64.2l.1 121.4-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c6.1 6.1 25.5 17.2 45.5 0l64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8L288 281.4l-.2-121.4H352c42.5 0 42.5-64 0-64z" fill="#{$color}"/></svg>',
515
+ 'import-list': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-import-list-bar" d="M448 256.002v192H64v-192c0-42.4-64-41.4-64 0v192c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-192c0-42.7-64-42.2-64 0ZM352 64H160c-43.5 0-43-64 0-64h192c43 0 43.5 64 0 64Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-import-list-arrow-down" d="M352.001 96h-192c-42 0-43 64 0 64h64.2l.1 121.4-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c6.1 6.1 25.5 17.2 45.5 0l64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8l-16.6 16.6-.2-121.4h64.2c42.5 0 42.5-64 0-64Z" fill="#{$color}"/></svg>',
514
516
 
515
- 'import': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-import-border-bottom" d="M448 160v288H64V160c0-42.4-64-41.4-64 0v288c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-42.7-64-42.2-64 0z" fill="#{$color}"/><path class="lexicon-icon-outline lx-import-arrow-down" d="m278.9 342.8 64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8L288 249.4l-.1-217.8c0-42.7-63.6-41.7-63.6 0l.1 217.8-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c5.9 6.1 25.3 17.2 45.4 0z" fill="#{$color}"/></svg>',
517
+ 'import': '<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="M160 32c0-17.673 14.327-32 32-32h128c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32H192c-17.673 0-32-14.327-32-32Zm288 415.99V255.989c0-42.2 64-42.7 64 0V447.99c0 35.299-28.7 64-64 64l-384-.001c-35.3 0-64-28.7-64-64v-192c0-41.4 64-42.4 64 0v192l384 .001Zm-169.319-73.139 64.3-65.2c27.1-29.4-14.1-67.2-38.6-44.8l-16.6 16.6-.1-121.8c0-42.7-63.6-41.7-63.6 0l.1 121.8-16.6-16.6c-27.3-23.8-65.2 18-38.6 44.8l64.3 65.2c5.9 6.1 25.3 17.2 45.4 0Z" fill="#{$color}"/></svg>',
516
518
 
517
519
  'indent-less': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline indent-more-line-1" d="M64 96h384c17.7 0 32-14.3 32-32s-14.3-32-32-32H64c-17.7 0-32 14.3-32 32s14.3 32 32 32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-4" d="M448 416H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-3" d="M448 288H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-line-2" d="M448 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline indent-more-arrow" d="M113.1 350.5c12.7 12.7 33.2 12.7 45.8 0 6.3-6.3 9.5-14.6 9.5-22.9s-3.2-16.6-9.5-22.9L142.2 288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32h-81.8l16.7-16.7c12.7-12.7 12.7-33.2 0-45.8-12.7-12.7-33.2-12.7-45.8 0l-71.6 71.6c-6.1 6.1-9.5 14.3-9.5 22.9s3.4 16.8 9.5 22.9l71.6 71.6z" fill="#{$color}"/></svg>',
518
520
 
@@ -534,6 +536,8 @@
534
536
 
535
537
  'italic': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M320 448H128v-32h64l64-320h-64V64h192v32h-64l-64 320h64v32z" fill="#{$color}"/></svg>',
536
538
 
539
+ 'key': '<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="M256 512c-17.673 0-32-14.327-32-32V251.968c-55.207-14.209-96-64.325-96-123.968C128 57.308 185.308 0 256 0c70.692 0 128 57.308 128 128 0 59.643-40.793 109.759-96 123.968V416h47.999c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H288c0 17.673-14.327 32-32 32Zm64-384c0 35.347-28.653 64-64 64s-64-28.653-64-64 28.653-64 64-64 64 28.653 64 64Z" fill="#{$color}"/></svg>',
540
+
537
541
  'liferay-ac': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-liferay-ac-bar-1" d="M128 512H32c-17.7 0-32-14.3-32-32V288c0-17.7 14.3-32 32-32h96v256z" fill="#{$color}"/><path class="lexicon-icon-outline lx-liferay-ac-bar-2" d="M320 512H192c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v448c0 17.7-14.3 32-32 32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-liferay-ac-bar-3" d="M480 512h-96V160h96c17.7 0 32 14.3 32 32v288c0 17.7-14.3 32-32 32z" fill="#{$color}"/></svg>',
538
542
 
539
543
  'link': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M216.2 295.8c-23.4-23.4 11.6-58.3 35-35 18.1 18.1 47.5 18.1 65.6 0l122.5-122.5c43.4-43.4-22.2-109.1-65.6-65.6L273.1 173.3c-23.4 23.4-58.3-11.6-35-35L338.7 37.8C429-52.5 564.5 83 474.2 173.3L351.7 295.7c-41.3 41.4-102 33.7-135.5.1zm79.6-79.6c23.4 23.4-11.6 58.3-35 35-18.1-18.1-47.5-18.1-65.6 0L72.8 373.6C29.4 417 95 482.7 138.4 439.2l100.5-100.5c23.4-23.4 58.3 11.6 35 35L173.3 474.2C83 564.5-52.5 429 37.8 338.7l122.5-122.5c41.3-41.3 102-33.6 135.5 0z" fill="#{$color}"/></svg>',
@@ -890,9 +894,9 @@
890
894
 
891
895
  'unpin': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline unpin-tack" fill="#{$color}" d="m0 512 140-216.5 77.6 77.4z"/><path class="lexicon-icon-outline unpin-body" d="m414.8 458.6-362-362C12 55 69-4 115 36.4l362 362c42 46.6-15 103.6-62.2 60.2z" fill="#{$color}"/><path class="lexicon-icon-outline unpin-head" d="m501.9 140.7-129.2-129c-35.4-32-76.7 8.8-58.1 41.9L247 87l180 174 31.6-63.2c35.9 18.9 71.3-24.5 43.3-57.1z" fill="#{$color}"/></svg>',
892
896
 
893
- 'upload-multiple': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline upload-multiple-arrow-up" d="M278.9 9.9c-14.9-13.5-32.6-12.8-45.8 0l-71.5 71.5c-28.8 26.6 10.8 77.1 45.8 45.8l16.7-16.7v113.6c0 42.3 64 42 64 0V110.5l16.7 16.7c28 29.1 76.5-13.6 45.8-45.8L278.9 9.9z" fill="#{$color}"/><path class="lexicon-icon-outline upload-multiple-bracket" d="M383.9 256.1v64H128.1v-64c0-43-64-41.7-64 0V384h383.7V256.1c.1-42-63.9-42.3-63.9 0z" fill="#{$color}"/><path class="lexicon-icon-outline upload-multiple-line" fill="#{$color}" d="M64 448h384v64H64z"/></svg>',
897
+ 'upload-multiple': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline upload-multiple-arrow-up" d="M278.914 9.9c-14.9-13.5-32.6-12.8-45.8 0l-71.5 71.5c-28.8 26.599 10.8 77.099 45.8 45.799l16.7-16.7v113.6c0 42.3 64 42 64 0v-113.6l16.7 16.7c28 29.1 76.5-13.6 45.8-45.8L278.914 9.9Z" fill="#{$color}"/><path class="lexicon-icon-outline upload-multiple-bracket" d="M383.925 256.098v64h-255.8v-64c0-43-64-41.7-64 0v63.9c0 35.347 28.654 64 64 64h255.7c35.346 0 64-28.653 64-64v-63.9c.1-42-63.9-42.3-63.9 0ZM64 480c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32H96c-17.673 0-32-14.327-32-32Z" fill="#{$color}"/></svg>',
894
898
 
895
- 'upload': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline upload-arrow-up" d="M278.9 9.5C272.8 3.4 264.6 0 256 0c-8.6 0-16.8 3.4-22.9 9.5l-71.6 71.6c-12.7 12.7-12.7 33.2 0 45.8 6.3 6.3 14.6 9.5 22.9 9.5s16.6-3.2 22.9-9.5l16.7-16.7V352c0 17.7 14.3 32 32 32s32-14.3 32-32V110.2l16.7 16.7c12.7 12.7 33.2 12.7 45.8 0 12.7-12.7 12.7-33.2 0-45.8L278.9 9.5z" fill="#{$color}"/><path class="lexicon-icon-outline upload-bracket" d="M416 352c-17.7 0-32 14.3-32 32v64H128v-64c0-17.7-14.3-32-32-32s-32 14.3-32 32v128h384V384c0-17.7-14.3-32-32-32z" fill="#{$color}"/></svg>',
899
+ 'upload': '<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="M233.094 10.48c13.187-12.775 30.906-13.475 45.781 0L350.5 81.939c30.781 32.139-17.812 74.754-45.812 45.711L288 110.984v241.328c0 41.918-64 42.217-64 0V110.984l-16.719 16.666c-35 31.34-74.593-19.162-45.781-45.711l71.594-71.459ZM384 448.125V384.25c0-42.219 64-41.918 64 0V448c0 35.346-28.654 64-64 64H128c-35.346 0-64-28.654-64-64v-63.75c0-41.62 64-42.916 64 0v63.875h256Z" fill="#{$color}"/></svg>',
896
900
 
897
901
  'urgent': '<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 0zm31.9 399.7c15.1-6.9 33.4-17.8 52.5-34 25.4 42.1-34.3 69.3-52.5 34zm-64.4-16.2c-37.1-26.1-4.1-45.4-50.9-90.5-16.9-16.2-70.6-60.6-30.6-127.6-21.1-19.9 1.4-45.8 23.6-23.6 66.5-38.9 111.1 13.9 127.5 30.5 48.8 49.6 65.3 13.1 91.5 49.9-8.6 81.7-94.4 155.4-161.1 161.3z"/></svg>',
898
902