@genexus/mercury 0.1.18 → 0.1.20
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.
- package/dist/assets/MERCURY_ASSETS.js +4030 -0
- package/dist/css/mercury.css +84 -36
- package/dist/css/mercury.css.map +1 -1
- package/dist/mercury.scss +261 -111
- package/package.json +3 -3
package/dist/mercury.scss
CHANGED
|
@@ -141,7 +141,6 @@
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
|
|
145
144
|
/*----------------------
|
|
146
145
|
Focus
|
|
147
146
|
----------------------*/
|
|
@@ -560,11 +559,9 @@ Window
|
|
|
560
559
|
|
|
561
560
|
@mixin font() {
|
|
562
561
|
// families
|
|
563
|
-
--mer-font-family--
|
|
564
|
-
--mer-font-family--
|
|
565
|
-
--mer-font-family--
|
|
566
|
-
--mer-font-family--inter-bold: "Inter_Bold", arial, sans-serif; // 700
|
|
567
|
-
--mer-font-family--inter-extra-bold: "Inter_ExtraBold", arial, sans-serif; // 800
|
|
562
|
+
--mer-font-family--title: Inter, Helvetica, Arial, sans-serif;
|
|
563
|
+
--mer-font-family--body: Inter, Helvetica, Arial, sans-serif;
|
|
564
|
+
--mer-font-family--code: monospace;
|
|
568
565
|
|
|
569
566
|
// weights
|
|
570
567
|
--mer-font__weight--light: 300;
|
|
@@ -720,8 +717,10 @@ Window
|
|
|
720
717
|
--mer-body__bg-color: var(--mer-color__surface);
|
|
721
718
|
--mer-body__color: var(--mer-text__on-surface);
|
|
722
719
|
--mer-body__font-size: var(--mer-font__size--2xs);
|
|
723
|
-
--mer-body__font-family: var(--mer-font-family--
|
|
724
|
-
--mer-
|
|
720
|
+
--mer-body__font-family: var(--mer-font-family--body);
|
|
721
|
+
--mer-body__font-weight: var(--mer-font__weight--regular);
|
|
722
|
+
--mer-body__line-height: var(--mer-line-height--comfortable);
|
|
723
|
+
--mer-body__margin-block: var(--mer-spacing--sm);
|
|
725
724
|
|
|
726
725
|
/*----------------------
|
|
727
726
|
System
|
|
@@ -1321,6 +1320,67 @@ Window
|
|
|
1321
1320
|
}
|
|
1322
1321
|
}
|
|
1323
1322
|
|
|
1323
|
+
%fieldset {
|
|
1324
|
+
display: flex;
|
|
1325
|
+
flex-direction: column;
|
|
1326
|
+
gap: var(--mer-spacing--md);
|
|
1327
|
+
border: none;
|
|
1328
|
+
|
|
1329
|
+
&__legend {
|
|
1330
|
+
@extend %heading-6;
|
|
1331
|
+
margin-block-end: var(--mer-spacing--md);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
&__group {
|
|
1335
|
+
display: flex;
|
|
1336
|
+
flex-direction: column;
|
|
1337
|
+
|
|
1338
|
+
&--row {
|
|
1339
|
+
flex-direction: row;
|
|
1340
|
+
align-items: center;
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
&--row {
|
|
1345
|
+
flex-direction: row;
|
|
1346
|
+
flex-wrap: wrap;
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
/// @group Fieldset
|
|
1351
|
+
/// @param {String} $fieldset-selector [".fieldset"] -
|
|
1352
|
+
/// @param {String} $legend-selector [".fieldset-legend"] -
|
|
1353
|
+
/// @param {String} $fieldset-group-selector [".fieldset-group"] -
|
|
1354
|
+
/// @param {String} $fieldset-group-orientation--row-selector [".fieldset-group--row"] -
|
|
1355
|
+
/// @param {String} $fieldset-orientation--row-selector [".fieldset--row"] -
|
|
1356
|
+
@mixin fieldset(
|
|
1357
|
+
$fieldset-selector: ".fieldset",
|
|
1358
|
+
$legend-selector: ".fieldset-legend",
|
|
1359
|
+
$fieldset-group-selector: ".fieldset-group",
|
|
1360
|
+
$fieldset-group-orientation--row-selector: ".fieldset-group--row",
|
|
1361
|
+
$fieldset-orientation--row-selector: ".fieldset--row"
|
|
1362
|
+
) {
|
|
1363
|
+
#{$fieldset-selector} {
|
|
1364
|
+
@extend %fieldset;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
#{$legend-selector} {
|
|
1368
|
+
@extend %fieldset__legend;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
#{$fieldset-group-selector} {
|
|
1372
|
+
@extend %fieldset__group;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
#{$fieldset-group-orientation--row-selector} {
|
|
1376
|
+
@extend %fieldset__group--row;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
#{$fieldset-orientation--row-selector} {
|
|
1380
|
+
@extend %fieldset--row;
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1324
1384
|
// - - - - - - - - - - - - - - - - - - - -
|
|
1325
1385
|
// Icon Path
|
|
1326
1386
|
// - - - - - - - - - - - - - - - - - - - -
|
|
@@ -1429,65 +1489,128 @@ Window
|
|
|
1429
1489
|
);
|
|
1430
1490
|
}
|
|
1431
1491
|
|
|
1492
|
+
%heading-base {
|
|
1493
|
+
font-family: var(--mer-font-family--title);
|
|
1494
|
+
color: var(--mer-color__neutral-gray--100);
|
|
1495
|
+
line-height: var(--mer-line-height--tight);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1432
1498
|
%heading-1 {
|
|
1433
|
-
|
|
1434
|
-
font-size:
|
|
1435
|
-
|
|
1436
|
-
letter-spacing: 0.4px;
|
|
1499
|
+
@extend %heading-base;
|
|
1500
|
+
font-size: 36px; //TODO (Update with token, or add token)
|
|
1501
|
+
font-weight: var(--mer-font__weight--bold);
|
|
1437
1502
|
}
|
|
1438
1503
|
|
|
1439
1504
|
%heading-2 {
|
|
1440
|
-
|
|
1441
|
-
font-size:
|
|
1442
|
-
|
|
1443
|
-
letter-spacing: 0.8px;
|
|
1505
|
+
@extend %heading-base;
|
|
1506
|
+
font-size: var(--mer-font__size--lg); // 24px
|
|
1507
|
+
font-weight: var(--mer-font__weight--bold);
|
|
1444
1508
|
}
|
|
1445
1509
|
|
|
1446
1510
|
%heading-3 {
|
|
1447
|
-
|
|
1448
|
-
font-size:
|
|
1449
|
-
|
|
1450
|
-
letter-spacing: 0.4px;
|
|
1511
|
+
@extend %heading-base;
|
|
1512
|
+
font-size: 20px; //TODO (Update with token, or add token)
|
|
1513
|
+
font-weight: var(--mer-font__weight--bold);
|
|
1451
1514
|
}
|
|
1452
1515
|
|
|
1453
1516
|
%heading-4 {
|
|
1454
|
-
|
|
1455
|
-
font-size:
|
|
1456
|
-
|
|
1457
|
-
|
|
1517
|
+
@extend %heading-base;
|
|
1518
|
+
font-size: var(--mer-font__size--md); // 20px
|
|
1519
|
+
font-weight: var(--mer-font__weight--bold);
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
%heading-5 {
|
|
1523
|
+
@extend %heading-base;
|
|
1524
|
+
font-size: 14px; //TODO (Update with token, or add token)
|
|
1525
|
+
font-weight: var(--mer-font__weight--bold);
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
%heading-6 {
|
|
1529
|
+
@extend %heading-base;
|
|
1530
|
+
font-size: var(--mer-font__size--sm); // 16px
|
|
1531
|
+
font-weight: var(--mer-font__weight--semi-bold);
|
|
1458
1532
|
}
|
|
1459
1533
|
|
|
1460
1534
|
%text-body {
|
|
1461
|
-
font-size: var(--mer-font__size--xs);
|
|
1462
|
-
font-family: var(--mer-
|
|
1463
|
-
|
|
1464
|
-
|
|
1535
|
+
font-size: var(--mer-font__size--xs); // 14px
|
|
1536
|
+
font-family: var(--mer-body__font-family);
|
|
1537
|
+
font-weight: var(--mer-body__font-weight);
|
|
1538
|
+
line-height: var(--mer-body__line-height);
|
|
1539
|
+
margin-block: var(--mer-body__margin-block);
|
|
1465
1540
|
}
|
|
1466
1541
|
|
|
1542
|
+
// tab
|
|
1467
1543
|
%tab-text {
|
|
1468
1544
|
font-family: var(--mer-font-family--inter-regular);
|
|
1469
1545
|
font-size: var(--mer-font__size--2xs);
|
|
1470
1546
|
line-height: var(--mer-font-family--inter-regular);
|
|
1471
1547
|
}
|
|
1472
1548
|
|
|
1473
|
-
|
|
1474
|
-
|
|
1549
|
+
// button
|
|
1550
|
+
%button-text {
|
|
1551
|
+
font-family: var(--mer-font-family--body);
|
|
1552
|
+
font-size: var(--mer-font__size--2xs);
|
|
1553
|
+
line-height: var(--mer-line-height--regular);
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
%button-text--regular {
|
|
1557
|
+
@extend %button-text;
|
|
1558
|
+
font-weight: var(--mer-font__weight--semi-bold);
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
%button-text--light {
|
|
1562
|
+
@extend %button-text;
|
|
1563
|
+
font-weight: var(--mer-font__weight--semi-regular);
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
// tooltip
|
|
1567
|
+
%tooltip-text {
|
|
1568
|
+
font-family: var(--mer-font-family--body);
|
|
1569
|
+
font-size: var(--mer-font-size--2xs);
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
/// @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"] -
|
|
1580
|
+
@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",
|
|
1587
|
+
$text-body-selector: ".text-body"
|
|
1588
|
+
) {
|
|
1589
|
+
#{$heading--1-selector} {
|
|
1475
1590
|
@extend %heading-1;
|
|
1476
1591
|
}
|
|
1477
1592
|
|
|
1478
|
-
|
|
1593
|
+
#{$heading--2-selector} {
|
|
1479
1594
|
@extend %heading-2;
|
|
1480
1595
|
}
|
|
1481
1596
|
|
|
1482
|
-
|
|
1597
|
+
#{$heading--3-selector} {
|
|
1483
1598
|
@extend %heading-3;
|
|
1484
1599
|
}
|
|
1485
1600
|
|
|
1486
|
-
|
|
1601
|
+
#{$heading--4-selector} {
|
|
1487
1602
|
@extend %heading-4;
|
|
1488
1603
|
}
|
|
1489
1604
|
|
|
1490
|
-
|
|
1605
|
+
#{$heading--5-selector} {
|
|
1606
|
+
@extend %heading-5;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
#{$heading--6-selector} {
|
|
1610
|
+
@extend %heading-6;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
#{$text-body-selector} {
|
|
1491
1614
|
@extend %text-body;
|
|
1492
1615
|
}
|
|
1493
1616
|
}
|
|
@@ -1771,28 +1894,28 @@ Window
|
|
|
1771
1894
|
|
|
1772
1895
|
// This mixins processes icons for the tree view action start part.
|
|
1773
1896
|
@mixin tree-view-icons(
|
|
1774
|
-
$icons-
|
|
1775
|
-
$
|
|
1897
|
+
$icons-in-category,
|
|
1898
|
+
$category-name,
|
|
1776
1899
|
$tree-view-selector: ".tree-view"
|
|
1777
1900
|
) {
|
|
1778
|
-
@each $icon in $icons-
|
|
1779
|
-
$icon-part-name: #{$
|
|
1901
|
+
@each $icon in $icons-in-category {
|
|
1902
|
+
$icon-part-name: #{$category-name}-#{$icon};
|
|
1780
1903
|
//enabled
|
|
1781
|
-
$icon-variable: var(--icon__#{$
|
|
1904
|
+
$icon-variable: var(--icon__#{$category-name}_#{$icon}--enabled);
|
|
1782
1905
|
$enabled-selector: "#{$tree-view-selector}::part(item__action #{$icon-part-name})";
|
|
1783
1906
|
@include tree-view-item__action-icon(
|
|
1784
1907
|
$item__action-with-icon-selector: $enabled-selector,
|
|
1785
1908
|
$icon-path: $icon-variable
|
|
1786
1909
|
);
|
|
1787
1910
|
//hover
|
|
1788
|
-
$icon-variable: var(--icon__#{$
|
|
1911
|
+
$icon-variable: var(--icon__#{$category-name}_#{$icon}--hover);
|
|
1789
1912
|
$hover-selector: "#{$tree-view-selector}::part(item__action #{$icon-part-name}):hover";
|
|
1790
1913
|
@include tree-view-item__action-icon(
|
|
1791
1914
|
$item__action-with-icon-selector: $hover-selector,
|
|
1792
1915
|
$icon-path: $icon-variable
|
|
1793
1916
|
);
|
|
1794
1917
|
//active
|
|
1795
|
-
$icon-variable: var(--icon__#{$
|
|
1918
|
+
$icon-variable: var(--icon__#{$category-name}_#{$icon}--active);
|
|
1796
1919
|
$active-selector: "#{$tree-view-selector}::part(item__action #{$icon-part-name}):active";
|
|
1797
1920
|
@include tree-view-item__action-icon(
|
|
1798
1921
|
$item__action-with-icon-selector: $active-selector,
|
|
@@ -1801,60 +1924,58 @@ Window
|
|
|
1801
1924
|
}
|
|
1802
1925
|
}
|
|
1803
1926
|
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
MONOCHROME CONSTRUCTS
|
|
1808
|
-
- - - - - - - - - - - - - - - - - - */
|
|
1927
|
+
/* - - - - - - - - - - - - - - - -
|
|
1928
|
+
Monochrome Categories and Colors
|
|
1929
|
+
- - - - - - - - - - - - - - - - -*/
|
|
1809
1930
|
|
|
1810
1931
|
$monochrome-colors: (
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1932
|
+
on-surface: (
|
|
1933
|
+
enabled,
|
|
1934
|
+
hover,
|
|
1935
|
+
active,
|
|
1936
|
+
disabled
|
|
1816
1937
|
),
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1938
|
+
on-primary: (
|
|
1939
|
+
enabled,
|
|
1940
|
+
hover,
|
|
1941
|
+
active,
|
|
1942
|
+
disabled
|
|
1822
1943
|
),
|
|
1823
|
-
|
|
1824
|
-
|
|
1944
|
+
on-disabled: (
|
|
1945
|
+
enabled,
|
|
1825
1946
|
),
|
|
1826
|
-
|
|
1827
|
-
|
|
1947
|
+
on-message: (
|
|
1948
|
+
enabled,
|
|
1828
1949
|
),
|
|
1829
|
-
|
|
1830
|
-
|
|
1950
|
+
on-elevation: (
|
|
1951
|
+
enabled,
|
|
1831
1952
|
),
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1953
|
+
primary: (
|
|
1954
|
+
enabled,
|
|
1955
|
+
hover,
|
|
1956
|
+
active,
|
|
1957
|
+
disabled
|
|
1837
1958
|
),
|
|
1838
|
-
|
|
1839
|
-
|
|
1959
|
+
error: (
|
|
1960
|
+
enabled,
|
|
1840
1961
|
),
|
|
1841
|
-
|
|
1842
|
-
|
|
1962
|
+
warning: (
|
|
1963
|
+
enabled,
|
|
1843
1964
|
),
|
|
1844
|
-
|
|
1845
|
-
|
|
1965
|
+
success: (
|
|
1966
|
+
enabled,
|
|
1846
1967
|
),
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1968
|
+
neutral: (
|
|
1969
|
+
enabled,
|
|
1970
|
+
hover,
|
|
1971
|
+
active,
|
|
1972
|
+
disabled
|
|
1852
1973
|
),
|
|
1853
|
-
|
|
1854
|
-
|
|
1974
|
+
highlighted: (
|
|
1975
|
+
enabled,
|
|
1855
1976
|
),
|
|
1856
|
-
|
|
1857
|
-
|
|
1977
|
+
bright: (
|
|
1978
|
+
enabled,
|
|
1858
1979
|
)
|
|
1859
1980
|
);
|
|
1860
1981
|
|
|
@@ -1905,6 +2026,44 @@ $monochrome-categories: (
|
|
|
1905
2026
|
)
|
|
1906
2027
|
);
|
|
1907
2028
|
|
|
2029
|
+
/* - - - - - - - - - - -
|
|
2030
|
+
Monochrome lists
|
|
2031
|
+
- - - - - - - - - - - */
|
|
2032
|
+
|
|
2033
|
+
// windows-tools
|
|
2034
|
+
$windows-tools: workflow, workflow-settings, work-with-attributes, watch, toolbox, teamdev, services, roles, rol, responsive-sizes, references, properties, preferences, performance-test-objects, output, logout, last-changes-view, kb-explorer, indexer-monitor, history, genexus-cloud, frontend, filter, filter-conditions, error-list, debugx, datastores, category-groups, breakpoints, backend, alphabetical-order;
|
|
2035
|
+
|
|
2036
|
+
// navigation
|
|
2037
|
+
$navigation: pill-outlined, pill-filled, level-up, level-down, gx-arrow-right, drag, chevron-up, chevron-right, chevron-left, chevron-down, bullet, arrow-up, arrow-right, arrow-left, arrow-down, arrow-down-skyblue;
|
|
2038
|
+
|
|
2039
|
+
// menus
|
|
2040
|
+
$menus: undo, undo-close-object, save, save-all, run, redo, properties, paste, open-object, new-object, find, delete, cut, create-database-tables, copy, cancel-build, build, build-all;
|
|
2041
|
+
|
|
2042
|
+
// gemini-tools
|
|
2043
|
+
$gemini-tools: warning, success, show-more-vertical, show-more-horizontal, share, settings, search, reset, read-only, open-window, notice, more-info, minus, minus-circle, list-view, folder, flow-arrow, file, error, edit, edit-wand, duplicate, download, deleted, delete, data-provider, copy, copy-to-clipboard, color-picker, close, category-ungroup, category-group, card-view, add, add-circle;
|
|
2044
|
+
|
|
2045
|
+
$all-monochrome-lists: (
|
|
2046
|
+
windows-tools: $windows-tools,
|
|
2047
|
+
navigation: $navigation,
|
|
2048
|
+
menus: $menus,
|
|
2049
|
+
gemini-tools: $gemini-tools,
|
|
2050
|
+
);
|
|
2051
|
+
|
|
2052
|
+
/* - - - - - - - - - - -
|
|
2053
|
+
Multicolor lists
|
|
2054
|
+
- - - - - - - - - - - */
|
|
2055
|
+
|
|
2056
|
+
// objects
|
|
2057
|
+
$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;
|
|
2058
|
+
|
|
2059
|
+
$all-multicolor-lists: (
|
|
2060
|
+
objects: $objects,
|
|
2061
|
+
);
|
|
2062
|
+
|
|
2063
|
+
/* - - - - - - - - - - - - - - - - - -
|
|
2064
|
+
MONOCHROME CONSTRUCTS
|
|
2065
|
+
- - - - - - - - - - - - - - - - - - */
|
|
2066
|
+
|
|
1908
2067
|
// functions for monochrome or multicolor:
|
|
1909
2068
|
@function category-is-excluded($category, $categories-list) {
|
|
1910
2069
|
@return index($category, $categories-list) != null;
|
|
@@ -1925,7 +2084,6 @@ $monochrome-categories: (
|
|
|
1925
2084
|
@return $multicolorStates;
|
|
1926
2085
|
}
|
|
1927
2086
|
|
|
1928
|
-
|
|
1929
2087
|
@mixin generate-monochrome-icons-selectors(
|
|
1930
2088
|
$all-monochrome-lists,
|
|
1931
2089
|
$css-prefix: "icon",
|
|
@@ -4586,7 +4744,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
4586
4744
|
|
|
4587
4745
|
}
|
|
4588
4746
|
|
|
4589
|
-
$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;
|
|
4590
4747
|
%icon__objects {
|
|
4591
4748
|
|
|
4592
4749
|
|
|
@@ -8205,7 +8362,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
8205
8362
|
|
|
8206
8363
|
}
|
|
8207
8364
|
|
|
8208
|
-
$windows-tools: workflow, workflow-settings, work-with-attributes, watch, toolbox, teamdev, services, roles, rol, responsive-sizes, references, properties, preferences, performance-test-objects, output, logout, last-changes-view, kb-explorer, indexer-monitor, history, genexus-cloud, frontend, filter, filter-conditions, error-list, debugx, datastores, category-groups, breakpoints, backend, alphabetical-order;
|
|
8209
8365
|
%icon__windows-tools {
|
|
8210
8366
|
|
|
8211
8367
|
|
|
@@ -13130,7 +13286,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
13130
13286
|
|
|
13131
13287
|
}
|
|
13132
13288
|
|
|
13133
|
-
$navigation: pill-outlined, pill-filled, level-up, level-down, gx-arrow-right, drag, chevron-up, chevron-right, chevron-left, chevron-down, bullet, arrow-up, arrow-right, arrow-left, arrow-down, arrow-down-skyblue;
|
|
13134
13289
|
%icon__navigation {
|
|
13135
13290
|
|
|
13136
13291
|
|
|
@@ -16099,7 +16254,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
16099
16254
|
|
|
16100
16255
|
}
|
|
16101
16256
|
|
|
16102
|
-
$menus: undo, undo-close-object, save, save-all, run, redo, properties, paste, open-object, new-object, find, delete, cut, create-database-tables, copy, cancel-build, build, build-all;
|
|
16103
16257
|
%icon__menus {
|
|
16104
16258
|
|
|
16105
16259
|
|
|
@@ -20054,7 +20208,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
20054
20208
|
|
|
20055
20209
|
}
|
|
20056
20210
|
|
|
20057
|
-
$gemini-tools: warning, success, show-more-vertical, show-more-horizontal, share, settings, search, reset, read-only, open-window, notice, more-info, minus, minus-circle, list-view, folder, flow-arrow, file, error, edit, edit-wand, duplicate, download, deleted, delete, data-provider, copy, copy-to-clipboard, color-picker, close, category-ungroup, category-group, card-view, add, add-circle;
|
|
20058
20211
|
%icon__gemini-tools {
|
|
20059
20212
|
|
|
20060
20213
|
|
|
@@ -24832,17 +24985,6 @@ MULTICOLOR CONSTRUCTS
|
|
|
24832
24985
|
}
|
|
24833
24986
|
|
|
24834
24987
|
|
|
24835
|
-
$all-multicolor-lists: (
|
|
24836
|
-
objects: $objects,
|
|
24837
|
-
);
|
|
24838
|
-
|
|
24839
|
-
$all-monochrome-lists: (
|
|
24840
|
-
windows-tools: $windows-tools,
|
|
24841
|
-
navigation: $navigation,
|
|
24842
|
-
menus: $menus,
|
|
24843
|
-
gemini-tools: $gemini-tools,
|
|
24844
|
-
);
|
|
24845
|
-
|
|
24846
24988
|
// - - - - - - - - - - - - - - - - - - - -
|
|
24847
24989
|
// Typography
|
|
24848
24990
|
// - - - - - - - - - - - - - - - - - - - -
|
|
@@ -24850,37 +24992,42 @@ gemini-tools: $gemini-tools,
|
|
|
24850
24992
|
@if $font-face {
|
|
24851
24993
|
//light
|
|
24852
24994
|
@font-face {
|
|
24853
|
-
font-family:
|
|
24995
|
+
font-family: "Inter";
|
|
24854
24996
|
src: url("#{$font-face-path}Inter_Light.woff2");
|
|
24855
|
-
font-
|
|
24997
|
+
font-weight: 300;
|
|
24998
|
+
font-style: normal;
|
|
24856
24999
|
}
|
|
24857
25000
|
|
|
24858
25001
|
//regular
|
|
24859
25002
|
@font-face {
|
|
24860
|
-
font-family:
|
|
25003
|
+
font-family: "Inter";
|
|
24861
25004
|
src: url("#{$font-face-path}Inter_Regular.woff2");
|
|
24862
|
-
font-
|
|
25005
|
+
font-weight: 400;
|
|
25006
|
+
font-style: normal;
|
|
24863
25007
|
}
|
|
24864
25008
|
|
|
24865
25009
|
//semi-bold
|
|
24866
25010
|
@font-face {
|
|
24867
|
-
font-family:
|
|
25011
|
+
font-family: "Inter";
|
|
24868
25012
|
src: url("#{$font-face-path}Inter_SemiBold.woff2");
|
|
24869
|
-
font-
|
|
25013
|
+
font-weight: 600;
|
|
25014
|
+
font-style: normal;
|
|
24870
25015
|
}
|
|
24871
25016
|
|
|
24872
25017
|
//bold
|
|
24873
25018
|
@font-face {
|
|
24874
|
-
font-family:
|
|
25019
|
+
font-family: "Inter";
|
|
24875
25020
|
src: url("#{$font-face-path}Inter_Bold.woff2");
|
|
24876
|
-
font-
|
|
25021
|
+
font-weight: 700;
|
|
25022
|
+
font-style: normal;
|
|
24877
25023
|
}
|
|
24878
25024
|
|
|
24879
25025
|
//extra-bold
|
|
24880
25026
|
@font-face {
|
|
24881
|
-
font-family:
|
|
25027
|
+
font-family: "Inter";
|
|
24882
25028
|
src: url("#{$font-face-path}Inter_ExtraBold.woff2");
|
|
24883
|
-
font-
|
|
25029
|
+
font-weight: 800;
|
|
25030
|
+
font-style: normal;
|
|
24884
25031
|
}
|
|
24885
25032
|
}
|
|
24886
25033
|
|
|
@@ -25010,11 +25157,13 @@ gemini-tools: $gemini-tools,
|
|
|
25010
25157
|
}
|
|
25011
25158
|
|
|
25012
25159
|
@if $font {
|
|
25013
|
-
line-height: var(--mer-
|
|
25160
|
+
line-height: var(--mer-body__line-height);
|
|
25014
25161
|
}
|
|
25015
25162
|
|
|
25016
25163
|
@if $font-face {
|
|
25017
|
-
font-family:
|
|
25164
|
+
font-family: var(--mer-body__font-family);
|
|
25165
|
+
font-size: var(--mer-body__font-size);
|
|
25166
|
+
font-weight: var(--mer-body__font-weight);
|
|
25018
25167
|
}
|
|
25019
25168
|
}
|
|
25020
25169
|
}
|
|
@@ -25077,6 +25226,7 @@ gemini-tools: $gemini-tools,
|
|
|
25077
25226
|
// Form control classes
|
|
25078
25227
|
@if $form-controls-classes {
|
|
25079
25228
|
@include form-input();
|
|
25229
|
+
@include fieldset();
|
|
25080
25230
|
}
|
|
25081
25231
|
|
|
25082
25232
|
// Icon classes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genexus/mercury",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"description": "Mercury is the design system designed for GeneXus IDE Web and GeneXus Next",
|
|
5
5
|
"main": "dist/mercury.scss",
|
|
6
6
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build.scss": "scss-bundle -e ./src/mercury.scss -o dist/mercury.scss && sass test/test.scss dist/css/mercury.css",
|
|
14
14
|
"test": "sass test/test.scss test/mercury.css",
|
|
15
15
|
"validate.ci": "npm run build-no-svg",
|
|
16
|
-
"icons-svg": "ssg-svg src/icons/svg-source src/assets/icons/_generated/ src/icons/svg-source/.config/color-states.json showcase/icons/
|
|
16
|
+
"icons-svg": "ssg-svg --srcDir=src/icons/svg-source --outDir=src/assets/icons/_generated/ --configFilePath=src/icons/svg-source/.config/color-states.json --showcaseDir=showcase/icons/ --showcaseBaseHref=../assets/icons/ --logDir=./log --objectFilePath=src/assets/MERCURY_ASSETS.js",
|
|
17
17
|
"icons-sass": "ssg-sass src/assets/icons/ src/icons/_generated/ src/icons/svg-source/.config/color-states.json",
|
|
18
18
|
"watch:sass": "chokidar src/**/*.scss ../common/**/*.scss -c \"npm run build.scss\"",
|
|
19
19
|
"copy-tasks": "node copy-tasks.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"chokidar-cli": "^3.0.0",
|
|
27
27
|
"sass": "~1.72.0",
|
|
28
28
|
"scss-bundle": "~3.1.2",
|
|
29
|
-
"@genexus/svg-sass-generator": "1.1.
|
|
29
|
+
"@genexus/svg-sass-generator": "1.1.13"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
32
|
"pnpm": ">=3"
|