@genexus/mercury 0.1.21 → 0.2.1

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 (65) hide show
  1. package/dist/assets/MERCURY_ASSETS.js +3168 -3963
  2. package/dist/assets/icons/editing-structures/dark/attribute-description.svg +1 -0
  3. package/dist/assets/icons/editing-structures/dark/attribute-formula.svg +1 -0
  4. package/dist/assets/icons/editing-structures/dark/attribute-key.svg +1 -0
  5. package/dist/assets/icons/editing-structures/dark/default.svg +1 -0
  6. package/dist/assets/icons/editing-structures/dark/formula-redundant.svg +1 -0
  7. package/dist/assets/icons/editing-structures/dark/logical-attributes.svg +1 -0
  8. package/dist/assets/icons/editing-structures/dark/platforms.svg +1 -0
  9. package/dist/assets/icons/editing-structures/dark/redundant-attribute.svg +1 -0
  10. package/dist/assets/icons/editing-structures/dark/system-index.svg +1 -0
  11. package/dist/assets/icons/editing-structures/dark/user-index.svg +1 -0
  12. package/dist/assets/icons/editing-structures/light/attribute-description.svg +1 -0
  13. package/dist/assets/icons/editing-structures/light/attribute-formula.svg +1 -0
  14. package/dist/assets/icons/editing-structures/light/attribute-key.svg +1 -0
  15. package/dist/assets/icons/editing-structures/light/default.svg +1 -0
  16. package/dist/assets/icons/editing-structures/light/formula-redundant.svg +1 -0
  17. package/dist/assets/icons/editing-structures/light/logical-attributes.svg +1 -0
  18. package/dist/assets/icons/editing-structures/light/platforms.svg +1 -0
  19. package/dist/assets/icons/editing-structures/light/redundant-attribute.svg +1 -0
  20. package/dist/assets/icons/editing-structures/light/system-index.svg +1 -0
  21. package/dist/assets/icons/editing-structures/light/user-index.svg +1 -0
  22. package/dist/assets/icons/objects/dark/conversational-flows.svg +1 -1
  23. package/dist/assets/icons/objects/dark/deployment-unit.svg +1 -1
  24. package/dist/assets/icons/objects/dark/diagram.svg +1 -1
  25. package/dist/assets/icons/objects/dark/document-workflow.svg +1 -1
  26. package/dist/assets/icons/objects/dark/file.svg +1 -1
  27. package/dist/assets/icons/objects/dark/image.svg +1 -1
  28. package/dist/assets/icons/objects/dark/main-object.svg +1 -1
  29. package/dist/assets/icons/objects/dark/object.svg +1 -1
  30. package/dist/assets/icons/objects/dark/offline-database.svg +1 -1
  31. package/dist/assets/icons/objects/dark/stencil.svg +1 -1
  32. package/dist/assets/icons/objects/dark/structured-data-type.svg +1 -1
  33. package/dist/assets/icons/objects/dark/super-app.svg +1 -1
  34. package/dist/assets/icons/objects/dark/table.svg +1 -1
  35. package/dist/assets/icons/objects/dark/theme-for-sd.svg +1 -1
  36. package/dist/assets/icons/objects/dark/theme-web.svg +1 -1
  37. package/dist/assets/icons/objects/dark/theme.svg +1 -1
  38. package/dist/assets/icons/objects/dark/url-rewrite.svg +1 -1
  39. package/dist/assets/icons/objects/dark/web-component.svg +1 -1
  40. package/dist/assets/icons/objects/dark/web-panel.svg +1 -1
  41. package/dist/assets/icons/objects/light/conversational-flows.svg +1 -1
  42. package/dist/assets/icons/objects/light/deployment-unit.svg +1 -1
  43. package/dist/assets/icons/objects/light/diagram.svg +1 -1
  44. package/dist/assets/icons/objects/light/document-workflow.svg +1 -1
  45. package/dist/assets/icons/objects/light/file.svg +1 -1
  46. package/dist/assets/icons/objects/light/image.svg +1 -1
  47. package/dist/assets/icons/objects/light/main-object.svg +1 -1
  48. package/dist/assets/icons/objects/light/object.svg +1 -1
  49. package/dist/assets/icons/objects/light/offline-database.svg +1 -1
  50. package/dist/assets/icons/objects/light/stencil.svg +1 -1
  51. package/dist/assets/icons/objects/light/structured-data-type.svg +1 -1
  52. package/dist/assets/icons/objects/light/super-app.svg +1 -1
  53. package/dist/assets/icons/objects/light/table.svg +1 -1
  54. package/dist/assets/icons/objects/light/theme-for-sd.svg +1 -1
  55. package/dist/assets/icons/objects/light/theme-web.svg +1 -1
  56. package/dist/assets/icons/objects/light/theme.svg +1 -1
  57. package/dist/assets/icons/objects/light/url-rewrite.svg +1 -1
  58. package/dist/assets/icons/objects/light/web-component.svg +1 -1
  59. package/dist/assets/icons/objects/light/web-panel.svg +1 -1
  60. package/dist/assets/images/noise-texture-200x200-original.png +0 -0
  61. package/dist/assets/images/noise-texture-200x200.png +0 -0
  62. package/dist/css/mercury.css +416 -61
  63. package/dist/css/mercury.css.map +1 -1
  64. package/dist/mercury.scss +672 -81
  65. package/package.json +1 -1
package/dist/mercury.scss CHANGED
@@ -158,7 +158,7 @@ Focus
158
158
  /*----------------------
159
159
  Scrollbar
160
160
  ----------------------*/
161
- @mixin scrollbar-styles {
161
+ %scrollbar-styles {
162
162
  //scrollbar
163
163
  &::-webkit-scrollbar {
164
164
  width: var(--mer-scrollbar__size);
@@ -187,6 +187,9 @@ Scrollbar
187
187
  background: var(--mer-scrollbar-corner__bg);
188
188
  }
189
189
  }
190
+ @mixin scrollbar-styles() {
191
+ @extend %scrollbar-styles;
192
+ }
190
193
 
191
194
  /*----------------------------------------------------
192
195
  Item (applies to every item (tree, grid, list, etc...)
@@ -299,6 +302,37 @@ Window
299
302
  box-shadow: var(--mer-box-shadow--01);
300
303
  }
301
304
 
305
+ /*----------------------
306
+ Dialog Footer
307
+ ----------------------*/
308
+ // Defined here to be used on /components/dialog as well as to replicate
309
+ // dialog footer styles on genexus-ide-ui components
310
+ %control-footer {
311
+ padding: var(--mer-spacing--xs) var(--mer-spacing--sm);
312
+ gap: var(--mer-spacing--sm);
313
+ align-items: center;
314
+
315
+ &--with-border {
316
+ border-block-start: var(--mer-border__width--sm) solid
317
+ var(--mer-color__elevation--04);
318
+ }
319
+ }
320
+ @mixin control-footer(
321
+ $selector: ".control-footer",
322
+ $with-border-selector: ".control-footer--border",
323
+ $with-border: true
324
+ ) {
325
+ #{$selector} {
326
+ @extend %control-footer;
327
+ }
328
+
329
+ @if $with-border {
330
+ #{$with-border-selector} {
331
+ @extend %control-footer--with-border;
332
+ }
333
+ }
334
+ }
335
+
302
336
 
303
337
  // Resets
304
338
  @mixin typography-reset() {
@@ -603,10 +637,10 @@ Window
603
637
  }
604
638
 
605
639
  @mixin timing() {
606
- --mer-timing--super-fast: 100;
607
- --mer-timing--fast: 200;
608
- --mer-timing--regular: 500;
609
- --mer-timing--slow: 1000;
640
+ --mer-timing--super-fast: 100ms;
641
+ --mer-timing--fast: 200ms;
642
+ --mer-timing--regular: 500ms;
643
+ --mer-timing--slow: 1000ms;
610
644
  }
611
645
 
612
646
 
@@ -1382,14 +1416,21 @@ Window
1382
1416
  }
1383
1417
 
1384
1418
  // - - - - - - - - - - - - - - - - - - - -
1385
- // Icon Path
1419
+ // Icon Mask / Background
1386
1420
  // - - - - - - - - - - - - - - - - - - - -
1387
-
1388
1421
  /// @group Icon
1389
1422
  /// @param {String} $selector [".icon-mask"] -
1390
1423
  /// @param {type} $icon-path [null] -
1391
1424
  /// @param {type} $icon-class [null] -
1392
- /// @output
1425
+ /// @example scss
1426
+ /// SCSS:
1427
+ /// @include icon-mask($selector: "icon__example", $icon-path: var(--icon__example));
1428
+ ///
1429
+ /// @example markup
1430
+ /// HTML/render:
1431
+ /// <div class="icon__example icon-size-sm"></div>
1432
+ /// <div class="icon__example icon-size-md"></div>
1433
+ ///
1393
1434
  @mixin icon-mask($selector: ".icon-mask", $icon-path: null, $icon-class: null) {
1394
1435
  #{$selector} {
1395
1436
  @if $icon-path != null {
@@ -1406,7 +1447,15 @@ Window
1406
1447
  /// @param {String} $selector [".icon-background"] -
1407
1448
  /// @param {type} $icon-path [null] -
1408
1449
  /// @param {type} $icon-class [null] -
1409
- /// @output
1450
+ /// @example scss
1451
+ /// SCSS:
1452
+ /// @include icon-background($selector: "icon__example", $icon-path: var(--icon__example));
1453
+ ///
1454
+ /// @example markup
1455
+ /// HTML/render:
1456
+ /// <div class="icon__example icon-size-sm"></div>
1457
+ /// <div class="icon__example icon-size-md"></div>
1458
+ ///
1410
1459
  @mixin icon-background(
1411
1460
  $selector: ".icon-background",
1412
1461
  $icon-path: null,
@@ -1426,7 +1475,6 @@ Window
1426
1475
  // - - - - - - - - - - - - - - - - - - - -
1427
1476
  // Icon Sizes
1428
1477
  // - - - - - - - - - - - - - - - - - - - -
1429
-
1430
1478
  %icon-size--sm {
1431
1479
  @include icon-background-common-styles(
1432
1480
  $inline-size: var(--mer-icon__box--sm),
@@ -1434,6 +1482,7 @@ Window
1434
1482
  $background-size: 100%
1435
1483
  );
1436
1484
  }
1485
+
1437
1486
  %icon-size--md {
1438
1487
  @include icon-background-common-styles(
1439
1488
  $inline-size: var(--mer-icon__box--md),
@@ -1443,19 +1492,20 @@ Window
1443
1492
  }
1444
1493
 
1445
1494
  /// @group Icon
1446
- /// @param {String} $selector [".icon-size-sm"] -
1495
+ /// @param {String} $selector [".icon-size-sm"]
1447
1496
  @mixin icon-size-sm($selector: ".icon-size-sm") {
1448
1497
  #{$selector} {
1449
- ::before {
1498
+ &::before {
1450
1499
  @extend %icon-size--sm;
1451
1500
  }
1452
1501
  }
1453
1502
  }
1503
+
1454
1504
  /// @group Icon
1455
- /// @param {String} $selector [".icon-size-sm"] -
1456
- @mixin icon-size-sm($selector: ".icon-size-md") {
1505
+ /// @param {String} $selector [".icon-size-md"] -
1506
+ @mixin icon-size-md($selector: ".icon-size-md") {
1457
1507
  #{$selector} {
1458
- ::before {
1508
+ &::before {
1459
1509
  @extend %icon-size--md;
1460
1510
  }
1461
1511
  }
@@ -1464,7 +1514,6 @@ Window
1464
1514
  // - - - - - - - - - - - - - - - - - - - -
1465
1515
  // Form Input
1466
1516
  // - - - - - - - - - - - - - - - - - - - -
1467
-
1468
1517
  @mixin form-input-bg-x-rtl-support() {
1469
1518
  // has to be included in the root
1470
1519
  :root[dir="rtl"] {
@@ -1491,8 +1540,8 @@ Window
1491
1540
 
1492
1541
  %heading-base {
1493
1542
  font-family: var(--mer-font-family--title);
1494
- color: var(--mer-color__neutral-gray--100);
1495
1543
  line-height: var(--mer-line-height--tight);
1544
+ color: transparent;
1496
1545
  }
1497
1546
 
1498
1547
  %heading-1 {
@@ -1515,7 +1564,7 @@ Window
1515
1564
 
1516
1565
  %heading-4 {
1517
1566
  @extend %heading-base;
1518
- font-size: var(--mer-font__size--md); // 20px
1567
+ font-size: var(--mer-font__size--sm); // 16px
1519
1568
  font-weight: var(--mer-font__weight--bold);
1520
1569
  }
1521
1570
 
@@ -1527,10 +1576,17 @@ Window
1527
1576
 
1528
1577
  %heading-6 {
1529
1578
  @extend %heading-base;
1530
- font-size: var(--mer-font__size--sm); // 16px
1579
+ font-size: var(--mer-font__size--2xs); // 12px
1531
1580
  font-weight: var(--mer-font__weight--semi-bold);
1532
1581
  }
1533
1582
 
1583
+ // Colors
1584
+ %heading__color {
1585
+ &--highlighted {
1586
+ color: var(--mer-text__highlighted);
1587
+ }
1588
+ }
1589
+
1534
1590
  %text-body {
1535
1591
  font-size: var(--mer-font__size--xs); // 14px
1536
1592
  font-family: var(--mer-body__font-family);
@@ -1570,46 +1626,52 @@ Window
1570
1626
  }
1571
1627
 
1572
1628
  /// @group Typography
1573
- /// @param {String} $heading--1-selector [".heading-1"] -
1574
- /// @param {String} $heading--2-selector [".heading-2"] -
1575
- /// @param {String} $heading--3-selector [".heading-3"] -
1576
- /// @param {String} $heading--4-selector [".heading-4"] -
1577
- /// @param {String} $heading--5-selector [".heading-5"] -
1578
- /// @param {String} $heading--6-selector [".heading-6"] -
1579
- /// @param {String} $text-body-selector [".text-body"] -
1629
+ /// @param {String} $heading-1-selector [".heading-1"] -
1630
+ /// @param {String} $heading-2-selector [".heading-2"] -
1631
+ /// @param {String} $heading-3-selector [".heading-3"] -
1632
+ /// @param {String} $heading-4-selector [".heading-4"] -
1633
+ /// @param {String} $heading-5-selector [".heading-5"] -
1634
+ /// @param {String} $heading-6-selector [".heading-6"] -
1635
+ /// @param {String} $heading-highlighted-selector [".heading--highlighted"] -
1636
+ /// @param {String} $text-body-selector [".text--body"] -
1580
1637
  @mixin typography-classes(
1581
- $heading--1-selector: ".heading-1",
1582
- $heading--2-selector: ".heading-2",
1583
- $heading--3-selector: ".heading-3",
1584
- $heading--4-selector: ".heading-4",
1585
- $heading--5-selector: ".heading-5",
1586
- $heading--6-selector: ".heading-6",
1638
+ $heading-1-selector: ".heading-1",
1639
+ $heading-2-selector: ".heading-2",
1640
+ $heading-3-selector: ".heading-3",
1641
+ $heading-4-selector: ".heading-4",
1642
+ $heading-5-selector: ".heading-5",
1643
+ $heading-6-selector: ".heading-6",
1644
+ $heading-highlighted: ".heading--highlighted",
1587
1645
  $text-body-selector: ".text-body"
1588
1646
  ) {
1589
- #{$heading--1-selector} {
1647
+ #{$heading-1-selector} {
1590
1648
  @extend %heading-1;
1591
1649
  }
1592
1650
 
1593
- #{$heading--2-selector} {
1651
+ #{$heading-2-selector} {
1594
1652
  @extend %heading-2;
1595
1653
  }
1596
1654
 
1597
- #{$heading--3-selector} {
1655
+ #{$heading-3-selector} {
1598
1656
  @extend %heading-3;
1599
1657
  }
1600
1658
 
1601
- #{$heading--4-selector} {
1659
+ #{$heading-4-selector} {
1602
1660
  @extend %heading-4;
1603
1661
  }
1604
1662
 
1605
- #{$heading--5-selector} {
1663
+ #{$heading-5-selector} {
1606
1664
  @extend %heading-5;
1607
1665
  }
1608
1666
 
1609
- #{$heading--6-selector} {
1667
+ #{$heading-6-selector} {
1610
1668
  @extend %heading-6;
1611
1669
  }
1612
1670
 
1671
+ #{$heading-highlighted} {
1672
+ @extend %heading__color--highlighted;
1673
+ }
1674
+
1613
1675
  #{$text-body-selector} {
1614
1676
  @extend %text-body;
1615
1677
  }
@@ -2055,9 +2117,13 @@ Multicolor lists
2055
2117
 
2056
2118
  // objects
2057
2119
  $objects: workflow, work-panel, web-panel, web-component, version, url-rewrite, transaction, to-be-defined, theme, theme-web, theme-for-sd, table, super-app, subtype-group, structured-data-type, stencil, roles, report, references, query, procedure, patterns, panel-for-sd, orphant-document, offline-database, object, notification-templates, module, module-open, mini-app, menubar, menu, masterpage, main-object, language, knowledge-base, image, generator, generator-category, folder, folder-open, file, external-object, environment-select, environment-no-select, dso, domain, document, document-workflow, diagram, design, deployment-unit, dataview-index, datastore, datastore-category, data-view, data-selector, data-provider, dashboard, customization, conversational-flows, category, calendars, business-process-diagram, bg-color, attribute, api;
2120
+
2121
+ // editing-structures
2122
+ $editing-structures: user-index, system-index, redundant-attribute, platforms, logical-attributes, formula-redundant, default, attribute-key, attribute-formula, attribute-description;
2058
2123
 
2059
2124
  $all-multicolor-lists: (
2060
2125
  objects: $objects,
2126
+ editing-structures: $editing-structures,
2061
2127
  );
2062
2128
 
2063
2129
  /* - - - - - - - - - - - - - - - - - -
@@ -2530,64 +2596,102 @@ MULTICOLOR CONSTRUCTS
2530
2596
  border-radius: 0;
2531
2597
  background-color: var(--mer-color__elevation--01);
2532
2598
  box-shadow: var(--mer-box-shadow--01);
2533
- }
2534
2599
 
2535
- %dialog__backdrop {
2536
- background-color: color-mix(
2537
- in srgb,
2538
- var(--elevation-un-elevation--4) 25%,
2539
- transparent
2540
- );
2541
- backdrop-filter: blur(5px);
2542
- z-index: 108; // TODO: This is a WA to show the backdrop above the button of the dropdown
2543
- }
2600
+ &__backdrop {
2601
+ background-image: url(../../src/assets/images/noise-texture-200x200.png);
2602
+ background-color: rgba(32, 36, 40, 0.9);
2603
+ backdrop-filter: blur(1.5px);
2604
+ z-index: 108; // TODO: This is a WA to show the backdrop above the button of the dropdown
2605
+ }
2544
2606
 
2545
- %dialog__header {
2546
- align-items: flex-start;
2547
- gap: var(--mer-spacing--sm);
2548
- padding: var(--mer-spacing--md) var(--mer-spacing--sm);
2549
- border-block-end: var(--mer-border__width--sm) solid
2550
- var(--mer-color__elevation--04);
2551
- }
2607
+ &__header {
2608
+ align-items: flex-start;
2609
+ gap: var(--mer-spacing--sm);
2610
+ padding: var(--mer-spacing--md) var(--mer-spacing--sm);
2611
+ border-block-end: var(--mer-border__width--sm) solid
2612
+ var(--mer-color__elevation--04);
2613
+ }
2552
2614
 
2553
- %dialog__content {
2554
- padding: var(--mer-spacing--lg) var(--mer-spacing--md);
2555
- }
2615
+ &__caption {
2616
+ @extend %heading-5;
2617
+ @extend %heading__color--highlighted;
2618
+ word-break: break-word;
2619
+ }
2556
2620
 
2557
- %dialog__caption {
2558
- color: var(--mer-text__on-elevation);
2559
- font-family: var(--mer-font-family--inter-bold);
2560
- word-break: break-word;
2561
- }
2621
+ &__close {
2622
+ @extend %icon-size--md;
2623
+ }
2562
2624
 
2563
- %dialog__footer {
2564
- padding: var(--mer-spacing--xs) var(--mer-spacing--sm);
2565
- border-block-start: var(--mer-border__width--sm) solid
2566
- var(--mer-color__elevation--04);
2567
- gap: var(--mer-spacing--sm);
2568
- }
2625
+ &__content {
2626
+ padding: var(--mer-spacing--lg) var(--mer-spacing--md);
2627
+ overflow: auto;
2628
+ }
2569
2629
 
2570
- %dialog__close {
2571
- @extend %icon-size--md;
2630
+ &__footer {
2631
+ @extend %control-footer;
2632
+ @extend %control-footer--with-border;
2633
+ }
2634
+
2635
+ /*------------------------------
2636
+ Edges (For dragging)
2637
+ -------------------------------*/
2638
+ &__edge {
2639
+ $edge-border-width: var(--mer-border__width--lg);
2640
+ $edge-border-style: solid;
2641
+ $edge-color: var(--mer-color__tinted-blue--20);
2642
+ border-color: transparent;
2643
+ transition: var(--mer-timing--fast) border-color;
2644
+ &--hover {
2645
+ border-color: $edge-color;
2646
+ }
2647
+ &-block-start {
2648
+ border-block-start-width: $edge-border-width;
2649
+ border-block-start-style: $edge-border-style;
2650
+ }
2651
+ &-inline-end {
2652
+ border-inline-end-width: $edge-border-width;
2653
+ border-inline-end-style: $edge-border-style;
2654
+ }
2655
+ &-block-end {
2656
+ border-block-end-width: $edge-border-width;
2657
+ border-block-end-style: $edge-border-style;
2658
+ }
2659
+ &-inline-start {
2660
+ border-inline-start-width: $edge-border-width;
2661
+ border-inline-start-style: $edge-border-style;
2662
+ }
2663
+ }
2572
2664
  }
2573
2665
 
2574
2666
  /// @group Dialog
2575
2667
  /// @param {String} $dialog-selector [".dialog::part(dialog)"] -
2576
2668
  /// @param {String} $backdrop-selector [".dialog.ch-dialog--modal"] -
2577
2669
  /// @param {String} $header-selector [".dialog::part(header)"] -
2578
- /// @param {String} $content-selector [".dialog::part(content)"] -
2579
2670
  /// @param {String} $caption-selector [".dialog::part(caption)"] -
2580
2671
  /// @param {String} $close-selector [".dialog::part(close-button)"] -
2672
+ /// @param {String} $content-selector [".dialog::part(content)"] -
2581
2673
  /// @param {String} $footer-selector [".dialog::part(footer)"] -
2674
+ // Edges (For dragging)
2675
+ /// @param {String} $edge-selector [".dialog::part(edge)"] -
2676
+ /// @param {String} $edge-block-start-selector [".dialog::part(edge-block-start)"] -
2677
+ /// @param {String} $edge-inline-end-selector [".dialog::part(edge-inline-end)"] -
2678
+ /// @param {String} $edge-block-end-selector [".dialog::part(edge-block-end)"] -
2679
+ /// @param {String} $edge-inline-start-selector [".dialog::part(edge-inline-start)"] -
2680
+ // Icons
2582
2681
  /// @param {String} $icons-path [""] -
2583
2682
  @mixin dialog(
2584
2683
  $dialog-selector: ".dialog::part(dialog)",
2585
2684
  $backdrop-selector: ".dialog.ch-dialog--modal",
2586
2685
  $header-selector: ".dialog::part(header)",
2587
- $content-selector: ".dialog::part(content)",
2588
2686
  $caption-selector: ".dialog::part(caption)",
2589
2687
  $close-selector: ".dialog::part(close-button)",
2688
+ $content-selector: ".dialog::part(content)",
2590
2689
  $footer-selector: ".dialog::part(footer)",
2690
+ $edge-selector: ".dialog::part(edge)",
2691
+ $edge-block-start-selector: ".dialog::part(edge-block-start)",
2692
+ $edge-inline-end-selector: ".dialog::part(edge-inline-end)",
2693
+ $edge-block-end-selector: ".dialog::part(edge-block-end)",
2694
+ $edge-inline-start-selector: ".dialog::part(edge-inline-start)",
2591
2695
  $icons-path: ""
2592
2696
  ) {
2593
2697
  #{$dialog-selector} {
@@ -2602,18 +2706,10 @@ MULTICOLOR CONSTRUCTS
2602
2706
  @extend %dialog__header;
2603
2707
  }
2604
2708
 
2605
- #{$content-selector} {
2606
- @extend %dialog__content;
2607
- }
2608
-
2609
2709
  #{$caption-selector} {
2610
2710
  @extend %dialog__caption;
2611
2711
  }
2612
2712
 
2613
- #{$footer-selector} {
2614
- @extend %dialog__footer;
2615
- }
2616
-
2617
2713
  #{$close-selector} {
2618
2714
  @extend %dialog__close;
2619
2715
  @extend %icon__gemini-tools_close_neutral--enabled;
@@ -2627,6 +2723,41 @@ MULTICOLOR CONSTRUCTS
2627
2723
  @extend %icon__gemini-tools_close_neutral--disabled;
2628
2724
  }
2629
2725
  }
2726
+
2727
+ #{$content-selector} {
2728
+ @extend %dialog__content;
2729
+ height: 100%;
2730
+ }
2731
+
2732
+ #{$footer-selector} {
2733
+ @extend %dialog__footer;
2734
+ }
2735
+
2736
+ /*------------------------------
2737
+ Edges (For dragging)
2738
+ -------------------------------*/
2739
+ #{$edge-selector} {
2740
+ @extend %dialog__edge;
2741
+ &:hover {
2742
+ @extend %dialog__edge--hover;
2743
+ }
2744
+ }
2745
+
2746
+ #{$edge-block-start-selector} {
2747
+ @extend %dialog__edge-block-start;
2748
+ }
2749
+
2750
+ #{$edge-inline-end-selector} {
2751
+ @extend %dialog__edge-inline-end;
2752
+ }
2753
+
2754
+ #{$edge-block-end-selector} {
2755
+ @extend %dialog__edge-block-end;
2756
+ }
2757
+
2758
+ #{$edge-inline-start-selector} {
2759
+ @extend %dialog__edge-inline-start;
2760
+ }
2630
2761
  }
2631
2762
 
2632
2763
  @mixin radio-group-tokens() {
@@ -7039,6 +7170,462 @@ MULTICOLOR CONSTRUCTS
7039
7170
  }
7040
7171
 
7041
7172
 
7173
+
7174
+ /* =================================
7175
+ LIGHT CUSTOM PROPERTIES
7176
+ ================================= */
7177
+
7178
+ :root.light {
7179
+ /*editing-structures*/
7180
+ --icon__editing-structures_user-index--enabled: url('#{$icons-path}editing-structures/light/user-index.svg#enabled');
7181
+ --icon__editing-structures_user-index--hover: url('#{$icons-path}editing-structures/light/user-index.svg#hover');
7182
+ --icon__editing-structures_user-index--active: url('#{$icons-path}editing-structures/light/user-index.svg#active');
7183
+ --icon__editing-structures_user-index--disabled: url('#{$icons-path}editing-structures/light/user-index.svg#disabled');
7184
+ --icon__editing-structures_system-index--enabled: url('#{$icons-path}editing-structures/light/system-index.svg#enabled');
7185
+ --icon__editing-structures_system-index--hover: url('#{$icons-path}editing-structures/light/system-index.svg#hover');
7186
+ --icon__editing-structures_system-index--active: url('#{$icons-path}editing-structures/light/system-index.svg#active');
7187
+ --icon__editing-structures_system-index--disabled: url('#{$icons-path}editing-structures/light/system-index.svg#disabled');
7188
+ --icon__editing-structures_redundant-attribute--enabled: url('#{$icons-path}editing-structures/light/redundant-attribute.svg#enabled');
7189
+ --icon__editing-structures_redundant-attribute--hover: url('#{$icons-path}editing-structures/light/redundant-attribute.svg#hover');
7190
+ --icon__editing-structures_redundant-attribute--active: url('#{$icons-path}editing-structures/light/redundant-attribute.svg#active');
7191
+ --icon__editing-structures_redundant-attribute--disabled: url('#{$icons-path}editing-structures/light/redundant-attribute.svg#disabled');
7192
+ --icon__editing-structures_platforms--enabled: url('#{$icons-path}editing-structures/light/platforms.svg#enabled');
7193
+ --icon__editing-structures_platforms--hover: url('#{$icons-path}editing-structures/light/platforms.svg#hover');
7194
+ --icon__editing-structures_platforms--active: url('#{$icons-path}editing-structures/light/platforms.svg#active');
7195
+ --icon__editing-structures_platforms--disabled: url('#{$icons-path}editing-structures/light/platforms.svg#disabled');
7196
+ --icon__editing-structures_logical-attributes--enabled: url('#{$icons-path}editing-structures/light/logical-attributes.svg#enabled');
7197
+ --icon__editing-structures_logical-attributes--hover: url('#{$icons-path}editing-structures/light/logical-attributes.svg#hover');
7198
+ --icon__editing-structures_logical-attributes--active: url('#{$icons-path}editing-structures/light/logical-attributes.svg#active');
7199
+ --icon__editing-structures_logical-attributes--disabled: url('#{$icons-path}editing-structures/light/logical-attributes.svg#disabled');
7200
+ --icon__editing-structures_formula-redundant--enabled: url('#{$icons-path}editing-structures/light/formula-redundant.svg#enabled');
7201
+ --icon__editing-structures_formula-redundant--hover: url('#{$icons-path}editing-structures/light/formula-redundant.svg#hover');
7202
+ --icon__editing-structures_formula-redundant--active: url('#{$icons-path}editing-structures/light/formula-redundant.svg#active');
7203
+ --icon__editing-structures_formula-redundant--disabled: url('#{$icons-path}editing-structures/light/formula-redundant.svg#disabled');
7204
+ --icon__editing-structures_default--enabled: url('#{$icons-path}editing-structures/light/default.svg#enabled');
7205
+ --icon__editing-structures_default--hover: url('#{$icons-path}editing-structures/light/default.svg#hover');
7206
+ --icon__editing-structures_default--active: url('#{$icons-path}editing-structures/light/default.svg#active');
7207
+ --icon__editing-structures_default--disabled: url('#{$icons-path}editing-structures/light/default.svg#disabled');
7208
+ --icon__editing-structures_attribute-key--enabled: url('#{$icons-path}editing-structures/light/attribute-key.svg#enabled');
7209
+ --icon__editing-structures_attribute-key--hover: url('#{$icons-path}editing-structures/light/attribute-key.svg#hover');
7210
+ --icon__editing-structures_attribute-key--active: url('#{$icons-path}editing-structures/light/attribute-key.svg#active');
7211
+ --icon__editing-structures_attribute-key--disabled: url('#{$icons-path}editing-structures/light/attribute-key.svg#disabled');
7212
+ --icon__editing-structures_attribute-formula--enabled: url('#{$icons-path}editing-structures/light/attribute-formula.svg#enabled');
7213
+ --icon__editing-structures_attribute-formula--hover: url('#{$icons-path}editing-structures/light/attribute-formula.svg#hover');
7214
+ --icon__editing-structures_attribute-formula--active: url('#{$icons-path}editing-structures/light/attribute-formula.svg#active');
7215
+ --icon__editing-structures_attribute-formula--disabled: url('#{$icons-path}editing-structures/light/attribute-formula.svg#disabled');
7216
+ --icon__editing-structures_attribute-description--enabled: url('#{$icons-path}editing-structures/light/attribute-description.svg#enabled');
7217
+ --icon__editing-structures_attribute-description--hover: url('#{$icons-path}editing-structures/light/attribute-description.svg#hover');
7218
+ --icon__editing-structures_attribute-description--active: url('#{$icons-path}editing-structures/light/attribute-description.svg#active');
7219
+ --icon__editing-structures_attribute-description--disabled: url('#{$icons-path}editing-structures/light/attribute-description.svg#disabled');
7220
+
7221
+ }
7222
+
7223
+ /* =================================
7224
+ DARK CUSTOM PROPERTIES
7225
+ ================================= */
7226
+
7227
+ :root.dark {
7228
+ /*editing-structures*/
7229
+ --icon__editing-structures_user-index--enabled: url('#{$icons-path}editing-structures/dark/user-index.svg#enabled');
7230
+ --icon__editing-structures_user-index--hover: url('#{$icons-path}editing-structures/dark/user-index.svg#hover');
7231
+ --icon__editing-structures_user-index--active: url('#{$icons-path}editing-structures/dark/user-index.svg#active');
7232
+ --icon__editing-structures_user-index--disabled: url('#{$icons-path}editing-structures/dark/user-index.svg#disabled');
7233
+ --icon__editing-structures_system-index--enabled: url('#{$icons-path}editing-structures/dark/system-index.svg#enabled');
7234
+ --icon__editing-structures_system-index--hover: url('#{$icons-path}editing-structures/dark/system-index.svg#hover');
7235
+ --icon__editing-structures_system-index--active: url('#{$icons-path}editing-structures/dark/system-index.svg#active');
7236
+ --icon__editing-structures_system-index--disabled: url('#{$icons-path}editing-structures/dark/system-index.svg#disabled');
7237
+ --icon__editing-structures_redundant-attribute--enabled: url('#{$icons-path}editing-structures/dark/redundant-attribute.svg#enabled');
7238
+ --icon__editing-structures_redundant-attribute--hover: url('#{$icons-path}editing-structures/dark/redundant-attribute.svg#hover');
7239
+ --icon__editing-structures_redundant-attribute--active: url('#{$icons-path}editing-structures/dark/redundant-attribute.svg#active');
7240
+ --icon__editing-structures_redundant-attribute--disabled: url('#{$icons-path}editing-structures/dark/redundant-attribute.svg#disabled');
7241
+ --icon__editing-structures_platforms--enabled: url('#{$icons-path}editing-structures/dark/platforms.svg#enabled');
7242
+ --icon__editing-structures_platforms--hover: url('#{$icons-path}editing-structures/dark/platforms.svg#hover');
7243
+ --icon__editing-structures_platforms--active: url('#{$icons-path}editing-structures/dark/platforms.svg#active');
7244
+ --icon__editing-structures_platforms--disabled: url('#{$icons-path}editing-structures/dark/platforms.svg#disabled');
7245
+ --icon__editing-structures_logical-attributes--enabled: url('#{$icons-path}editing-structures/dark/logical-attributes.svg#enabled');
7246
+ --icon__editing-structures_logical-attributes--hover: url('#{$icons-path}editing-structures/dark/logical-attributes.svg#hover');
7247
+ --icon__editing-structures_logical-attributes--active: url('#{$icons-path}editing-structures/dark/logical-attributes.svg#active');
7248
+ --icon__editing-structures_logical-attributes--disabled: url('#{$icons-path}editing-structures/dark/logical-attributes.svg#disabled');
7249
+ --icon__editing-structures_formula-redundant--enabled: url('#{$icons-path}editing-structures/dark/formula-redundant.svg#enabled');
7250
+ --icon__editing-structures_formula-redundant--hover: url('#{$icons-path}editing-structures/dark/formula-redundant.svg#hover');
7251
+ --icon__editing-structures_formula-redundant--active: url('#{$icons-path}editing-structures/dark/formula-redundant.svg#active');
7252
+ --icon__editing-structures_formula-redundant--disabled: url('#{$icons-path}editing-structures/dark/formula-redundant.svg#disabled');
7253
+ --icon__editing-structures_default--enabled: url('#{$icons-path}editing-structures/dark/default.svg#enabled');
7254
+ --icon__editing-structures_default--hover: url('#{$icons-path}editing-structures/dark/default.svg#hover');
7255
+ --icon__editing-structures_default--active: url('#{$icons-path}editing-structures/dark/default.svg#active');
7256
+ --icon__editing-structures_default--disabled: url('#{$icons-path}editing-structures/dark/default.svg#disabled');
7257
+ --icon__editing-structures_attribute-key--enabled: url('#{$icons-path}editing-structures/dark/attribute-key.svg#enabled');
7258
+ --icon__editing-structures_attribute-key--hover: url('#{$icons-path}editing-structures/dark/attribute-key.svg#hover');
7259
+ --icon__editing-structures_attribute-key--active: url('#{$icons-path}editing-structures/dark/attribute-key.svg#active');
7260
+ --icon__editing-structures_attribute-key--disabled: url('#{$icons-path}editing-structures/dark/attribute-key.svg#disabled');
7261
+ --icon__editing-structures_attribute-formula--enabled: url('#{$icons-path}editing-structures/dark/attribute-formula.svg#enabled');
7262
+ --icon__editing-structures_attribute-formula--hover: url('#{$icons-path}editing-structures/dark/attribute-formula.svg#hover');
7263
+ --icon__editing-structures_attribute-formula--active: url('#{$icons-path}editing-structures/dark/attribute-formula.svg#active');
7264
+ --icon__editing-structures_attribute-formula--disabled: url('#{$icons-path}editing-structures/dark/attribute-formula.svg#disabled');
7265
+ --icon__editing-structures_attribute-description--enabled: url('#{$icons-path}editing-structures/dark/attribute-description.svg#enabled');
7266
+ --icon__editing-structures_attribute-description--hover: url('#{$icons-path}editing-structures/dark/attribute-description.svg#hover');
7267
+ --icon__editing-structures_attribute-description--active: url('#{$icons-path}editing-structures/dark/attribute-description.svg#active');
7268
+ --icon__editing-structures_attribute-description--disabled: url('#{$icons-path}editing-structures/dark/attribute-description.svg#disabled');
7269
+
7270
+ }
7271
+
7272
+ %icon__editing-structures {
7273
+
7274
+
7275
+ /* =================================
7276
+ LIGHT PLACEHOLDERS SELECTORS
7277
+ ================================= */
7278
+
7279
+
7280
+ /* - - - - - - - - - - - -
7281
+ user-index.svg
7282
+ - - - - - - - - - - - - */
7283
+
7284
+ &_user-index--enabled {
7285
+ --icon-path: var(--icon__editing-structures_user-index--enabled);
7286
+ }
7287
+ &_user-index--hover {
7288
+ --icon-path: var(--icon__editing-structures_user-index--hover);
7289
+ }
7290
+ &_user-index--active {
7291
+ --icon-path: var(--icon__editing-structures_user-index--active);
7292
+ }
7293
+ &_user-index--disabled {
7294
+ --icon-path: var(--icon__editing-structures_user-index--disabled);
7295
+ }
7296
+
7297
+ /* - - - - - - - - - - - -
7298
+ system-index.svg
7299
+ - - - - - - - - - - - - */
7300
+
7301
+ &_system-index--enabled {
7302
+ --icon-path: var(--icon__editing-structures_system-index--enabled);
7303
+ }
7304
+ &_system-index--hover {
7305
+ --icon-path: var(--icon__editing-structures_system-index--hover);
7306
+ }
7307
+ &_system-index--active {
7308
+ --icon-path: var(--icon__editing-structures_system-index--active);
7309
+ }
7310
+ &_system-index--disabled {
7311
+ --icon-path: var(--icon__editing-structures_system-index--disabled);
7312
+ }
7313
+
7314
+ /* - - - - - - - - - - - -
7315
+ redundant-attribute.svg
7316
+ - - - - - - - - - - - - */
7317
+
7318
+ &_redundant-attribute--enabled {
7319
+ --icon-path: var(--icon__editing-structures_redundant-attribute--enabled);
7320
+ }
7321
+ &_redundant-attribute--hover {
7322
+ --icon-path: var(--icon__editing-structures_redundant-attribute--hover);
7323
+ }
7324
+ &_redundant-attribute--active {
7325
+ --icon-path: var(--icon__editing-structures_redundant-attribute--active);
7326
+ }
7327
+ &_redundant-attribute--disabled {
7328
+ --icon-path: var(--icon__editing-structures_redundant-attribute--disabled);
7329
+ }
7330
+
7331
+ /* - - - - - - - - - - - -
7332
+ platforms.svg
7333
+ - - - - - - - - - - - - */
7334
+
7335
+ &_platforms--enabled {
7336
+ --icon-path: var(--icon__editing-structures_platforms--enabled);
7337
+ }
7338
+ &_platforms--hover {
7339
+ --icon-path: var(--icon__editing-structures_platforms--hover);
7340
+ }
7341
+ &_platforms--active {
7342
+ --icon-path: var(--icon__editing-structures_platforms--active);
7343
+ }
7344
+ &_platforms--disabled {
7345
+ --icon-path: var(--icon__editing-structures_platforms--disabled);
7346
+ }
7347
+
7348
+ /* - - - - - - - - - - - -
7349
+ logical-attributes.svg
7350
+ - - - - - - - - - - - - */
7351
+
7352
+ &_logical-attributes--enabled {
7353
+ --icon-path: var(--icon__editing-structures_logical-attributes--enabled);
7354
+ }
7355
+ &_logical-attributes--hover {
7356
+ --icon-path: var(--icon__editing-structures_logical-attributes--hover);
7357
+ }
7358
+ &_logical-attributes--active {
7359
+ --icon-path: var(--icon__editing-structures_logical-attributes--active);
7360
+ }
7361
+ &_logical-attributes--disabled {
7362
+ --icon-path: var(--icon__editing-structures_logical-attributes--disabled);
7363
+ }
7364
+
7365
+ /* - - - - - - - - - - - -
7366
+ formula-redundant.svg
7367
+ - - - - - - - - - - - - */
7368
+
7369
+ &_formula-redundant--enabled {
7370
+ --icon-path: var(--icon__editing-structures_formula-redundant--enabled);
7371
+ }
7372
+ &_formula-redundant--hover {
7373
+ --icon-path: var(--icon__editing-structures_formula-redundant--hover);
7374
+ }
7375
+ &_formula-redundant--active {
7376
+ --icon-path: var(--icon__editing-structures_formula-redundant--active);
7377
+ }
7378
+ &_formula-redundant--disabled {
7379
+ --icon-path: var(--icon__editing-structures_formula-redundant--disabled);
7380
+ }
7381
+
7382
+ /* - - - - - - - - - - - -
7383
+ default.svg
7384
+ - - - - - - - - - - - - */
7385
+
7386
+ &_default--enabled {
7387
+ --icon-path: var(--icon__editing-structures_default--enabled);
7388
+ }
7389
+ &_default--hover {
7390
+ --icon-path: var(--icon__editing-structures_default--hover);
7391
+ }
7392
+ &_default--active {
7393
+ --icon-path: var(--icon__editing-structures_default--active);
7394
+ }
7395
+ &_default--disabled {
7396
+ --icon-path: var(--icon__editing-structures_default--disabled);
7397
+ }
7398
+
7399
+ /* - - - - - - - - - - - -
7400
+ attribute-key.svg
7401
+ - - - - - - - - - - - - */
7402
+
7403
+ &_attribute-key--enabled {
7404
+ --icon-path: var(--icon__editing-structures_attribute-key--enabled);
7405
+ }
7406
+ &_attribute-key--hover {
7407
+ --icon-path: var(--icon__editing-structures_attribute-key--hover);
7408
+ }
7409
+ &_attribute-key--active {
7410
+ --icon-path: var(--icon__editing-structures_attribute-key--active);
7411
+ }
7412
+ &_attribute-key--disabled {
7413
+ --icon-path: var(--icon__editing-structures_attribute-key--disabled);
7414
+ }
7415
+
7416
+ /* - - - - - - - - - - - -
7417
+ attribute-formula.svg
7418
+ - - - - - - - - - - - - */
7419
+
7420
+ &_attribute-formula--enabled {
7421
+ --icon-path: var(--icon__editing-structures_attribute-formula--enabled);
7422
+ }
7423
+ &_attribute-formula--hover {
7424
+ --icon-path: var(--icon__editing-structures_attribute-formula--hover);
7425
+ }
7426
+ &_attribute-formula--active {
7427
+ --icon-path: var(--icon__editing-structures_attribute-formula--active);
7428
+ }
7429
+ &_attribute-formula--disabled {
7430
+ --icon-path: var(--icon__editing-structures_attribute-formula--disabled);
7431
+ }
7432
+
7433
+ /* - - - - - - - - - - - -
7434
+ attribute-description.svg
7435
+ - - - - - - - - - - - - */
7436
+
7437
+ &_attribute-description--enabled {
7438
+ --icon-path: var(--icon__editing-structures_attribute-description--enabled);
7439
+ }
7440
+ &_attribute-description--hover {
7441
+ --icon-path: var(--icon__editing-structures_attribute-description--hover);
7442
+ }
7443
+ &_attribute-description--active {
7444
+ --icon-path: var(--icon__editing-structures_attribute-description--active);
7445
+ }
7446
+ &_attribute-description--disabled {
7447
+ --icon-path: var(--icon__editing-structures_attribute-description--disabled);
7448
+ }
7449
+
7450
+
7451
+ /* =================================
7452
+ DARK PLACEHOLDERS SELECTORS
7453
+ ================================= */
7454
+
7455
+
7456
+ /* - - - - - - - - - - - -
7457
+ user-index.svg
7458
+ - - - - - - - - - - - - */
7459
+
7460
+ &_user-index--enabled {
7461
+ --icon-path: var(--icon__editing-structures_user-index--enabled);
7462
+ }
7463
+ &_user-index--hover {
7464
+ --icon-path: var(--icon__editing-structures_user-index--hover);
7465
+ }
7466
+ &_user-index--active {
7467
+ --icon-path: var(--icon__editing-structures_user-index--active);
7468
+ }
7469
+ &_user-index--disabled {
7470
+ --icon-path: var(--icon__editing-structures_user-index--disabled);
7471
+ }
7472
+
7473
+ /* - - - - - - - - - - - -
7474
+ system-index.svg
7475
+ - - - - - - - - - - - - */
7476
+
7477
+ &_system-index--enabled {
7478
+ --icon-path: var(--icon__editing-structures_system-index--enabled);
7479
+ }
7480
+ &_system-index--hover {
7481
+ --icon-path: var(--icon__editing-structures_system-index--hover);
7482
+ }
7483
+ &_system-index--active {
7484
+ --icon-path: var(--icon__editing-structures_system-index--active);
7485
+ }
7486
+ &_system-index--disabled {
7487
+ --icon-path: var(--icon__editing-structures_system-index--disabled);
7488
+ }
7489
+
7490
+ /* - - - - - - - - - - - -
7491
+ redundant-attribute.svg
7492
+ - - - - - - - - - - - - */
7493
+
7494
+ &_redundant-attribute--enabled {
7495
+ --icon-path: var(--icon__editing-structures_redundant-attribute--enabled);
7496
+ }
7497
+ &_redundant-attribute--hover {
7498
+ --icon-path: var(--icon__editing-structures_redundant-attribute--hover);
7499
+ }
7500
+ &_redundant-attribute--active {
7501
+ --icon-path: var(--icon__editing-structures_redundant-attribute--active);
7502
+ }
7503
+ &_redundant-attribute--disabled {
7504
+ --icon-path: var(--icon__editing-structures_redundant-attribute--disabled);
7505
+ }
7506
+
7507
+ /* - - - - - - - - - - - -
7508
+ platforms.svg
7509
+ - - - - - - - - - - - - */
7510
+
7511
+ &_platforms--enabled {
7512
+ --icon-path: var(--icon__editing-structures_platforms--enabled);
7513
+ }
7514
+ &_platforms--hover {
7515
+ --icon-path: var(--icon__editing-structures_platforms--hover);
7516
+ }
7517
+ &_platforms--active {
7518
+ --icon-path: var(--icon__editing-structures_platforms--active);
7519
+ }
7520
+ &_platforms--disabled {
7521
+ --icon-path: var(--icon__editing-structures_platforms--disabled);
7522
+ }
7523
+
7524
+ /* - - - - - - - - - - - -
7525
+ logical-attributes.svg
7526
+ - - - - - - - - - - - - */
7527
+
7528
+ &_logical-attributes--enabled {
7529
+ --icon-path: var(--icon__editing-structures_logical-attributes--enabled);
7530
+ }
7531
+ &_logical-attributes--hover {
7532
+ --icon-path: var(--icon__editing-structures_logical-attributes--hover);
7533
+ }
7534
+ &_logical-attributes--active {
7535
+ --icon-path: var(--icon__editing-structures_logical-attributes--active);
7536
+ }
7537
+ &_logical-attributes--disabled {
7538
+ --icon-path: var(--icon__editing-structures_logical-attributes--disabled);
7539
+ }
7540
+
7541
+ /* - - - - - - - - - - - -
7542
+ formula-redundant.svg
7543
+ - - - - - - - - - - - - */
7544
+
7545
+ &_formula-redundant--enabled {
7546
+ --icon-path: var(--icon__editing-structures_formula-redundant--enabled);
7547
+ }
7548
+ &_formula-redundant--hover {
7549
+ --icon-path: var(--icon__editing-structures_formula-redundant--hover);
7550
+ }
7551
+ &_formula-redundant--active {
7552
+ --icon-path: var(--icon__editing-structures_formula-redundant--active);
7553
+ }
7554
+ &_formula-redundant--disabled {
7555
+ --icon-path: var(--icon__editing-structures_formula-redundant--disabled);
7556
+ }
7557
+
7558
+ /* - - - - - - - - - - - -
7559
+ default.svg
7560
+ - - - - - - - - - - - - */
7561
+
7562
+ &_default--enabled {
7563
+ --icon-path: var(--icon__editing-structures_default--enabled);
7564
+ }
7565
+ &_default--hover {
7566
+ --icon-path: var(--icon__editing-structures_default--hover);
7567
+ }
7568
+ &_default--active {
7569
+ --icon-path: var(--icon__editing-structures_default--active);
7570
+ }
7571
+ &_default--disabled {
7572
+ --icon-path: var(--icon__editing-structures_default--disabled);
7573
+ }
7574
+
7575
+ /* - - - - - - - - - - - -
7576
+ attribute-key.svg
7577
+ - - - - - - - - - - - - */
7578
+
7579
+ &_attribute-key--enabled {
7580
+ --icon-path: var(--icon__editing-structures_attribute-key--enabled);
7581
+ }
7582
+ &_attribute-key--hover {
7583
+ --icon-path: var(--icon__editing-structures_attribute-key--hover);
7584
+ }
7585
+ &_attribute-key--active {
7586
+ --icon-path: var(--icon__editing-structures_attribute-key--active);
7587
+ }
7588
+ &_attribute-key--disabled {
7589
+ --icon-path: var(--icon__editing-structures_attribute-key--disabled);
7590
+ }
7591
+
7592
+ /* - - - - - - - - - - - -
7593
+ attribute-formula.svg
7594
+ - - - - - - - - - - - - */
7595
+
7596
+ &_attribute-formula--enabled {
7597
+ --icon-path: var(--icon__editing-structures_attribute-formula--enabled);
7598
+ }
7599
+ &_attribute-formula--hover {
7600
+ --icon-path: var(--icon__editing-structures_attribute-formula--hover);
7601
+ }
7602
+ &_attribute-formula--active {
7603
+ --icon-path: var(--icon__editing-structures_attribute-formula--active);
7604
+ }
7605
+ &_attribute-formula--disabled {
7606
+ --icon-path: var(--icon__editing-structures_attribute-formula--disabled);
7607
+ }
7608
+
7609
+ /* - - - - - - - - - - - -
7610
+ attribute-description.svg
7611
+ - - - - - - - - - - - - */
7612
+
7613
+ &_attribute-description--enabled {
7614
+ --icon-path: var(--icon__editing-structures_attribute-description--enabled);
7615
+ }
7616
+ &_attribute-description--hover {
7617
+ --icon-path: var(--icon__editing-structures_attribute-description--hover);
7618
+ }
7619
+ &_attribute-description--active {
7620
+ --icon-path: var(--icon__editing-structures_attribute-description--active);
7621
+ }
7622
+ &_attribute-description--disabled {
7623
+ --icon-path: var(--icon__editing-structures_attribute-description--disabled);
7624
+ }
7625
+
7626
+ }
7627
+
7628
+
7042
7629
  /*monochrome lists*/
7043
7630
 
7044
7631
 
@@ -25233,6 +25820,9 @@ MULTICOLOR CONSTRUCTS
25233
25820
  @if $icon-classes {
25234
25821
  @include icon-mask();
25235
25822
  @include icon-background();
25823
+ @include icon-size-sm();
25824
+ @include icon-size-md();
25825
+
25236
25826
  @include form-input-icon();
25237
25827
  @include form-input-bg-x-rtl-support();
25238
25828
  }
@@ -25240,6 +25830,7 @@ MULTICOLOR CONSTRUCTS
25240
25830
  // Layout classes
25241
25831
  @if $layout-classes {
25242
25832
  @include layout();
25833
+ @include control-footer();
25243
25834
  }
25244
25835
  }
25245
25836