@genexus/mercury 0.9.6 → 0.9.9
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.d.ts +11 -11
- package/dist/assets/MERCURY_ASSETS.js +55 -55
- package/dist/assets/MERCURY_ASSETS.ts +55 -55
- package/dist/assets-manager.d.ts +2 -0
- package/dist/assets-manager.js +12 -4
- package/dist/bundles/css/all.css +1 -1
- package/dist/bundles/css/base/icons.css +1 -1
- package/dist/bundles/css/components/accordion.css +1 -1
- package/dist/bundles/css/components/combo-box.css +1 -1
- package/dist/bundles/css/components/pills.css +1 -1
- package/dist/bundles/css/utils/elevation.css +1 -0
- package/dist/bundles/css/utils/form--full.css +1 -1
- package/dist/bundles/css/utils/layout.css +1 -1
- package/dist/bundles/scss/utils/elevation.scss +4 -0
- package/dist/bundles.d.ts +9 -1
- package/dist/bundles.js +1 -0
- package/dist/mercury.scss +152 -116
- package/package.json +2 -2
package/dist/mercury.scss
CHANGED
|
@@ -786,13 +786,17 @@
|
|
|
786
786
|
}
|
|
787
787
|
|
|
788
788
|
@mixin spacing-body(
|
|
789
|
-
$body-selector: ".spacing-body",
|
|
790
|
-
$body-block-selector: ".spacing-body-block",
|
|
791
|
-
$body-block-start-selector:
|
|
792
|
-
|
|
793
|
-
$body-
|
|
794
|
-
|
|
795
|
-
$body-inline-
|
|
789
|
+
$body-selector: ".spacing-body,:host(.spacing-body)",
|
|
790
|
+
$body-block-selector: ".spacing-body-block,:host(.spacing-body-block)",
|
|
791
|
+
$body-block-start-selector:
|
|
792
|
+
".spacing-body-block-start,:host(.spacing-body-block-start)",
|
|
793
|
+
$body-block-end-selector:
|
|
794
|
+
".spacing-body-block-end,:host(.spacing-body-block-end)",
|
|
795
|
+
$body-inline-selector: ".spacing-body-inline,:host(.spacing-body-inline)",
|
|
796
|
+
$body-inline-start-selector:
|
|
797
|
+
".spacing-body-inline-start,:host(.spacing-body-inline-start)",
|
|
798
|
+
$body-inline-end-selector:
|
|
799
|
+
".spacing-body-inline-end,:host(.spacing-body-inline-end)"
|
|
796
800
|
) {
|
|
797
801
|
#{$body-selector} {
|
|
798
802
|
@extend %spacing-body;
|
|
@@ -845,7 +849,7 @@
|
|
|
845
849
|
/// @param {String} $elevation-01-selector [".elevation-01"] -
|
|
846
850
|
/// @param {String} $elevation-02-selector [".elevation-02"] -
|
|
847
851
|
/// @param {String} $elevation-03-selector [".elevation-03"] -
|
|
848
|
-
@mixin utilities-
|
|
852
|
+
@mixin utilities-elevation(
|
|
849
853
|
$elevation-01-selector: ".elevation-01",
|
|
850
854
|
$elevation-02-selector: ".elevation-02",
|
|
851
855
|
$elevation-03-selector: ".elevation-03"
|
|
@@ -2315,13 +2319,17 @@
|
|
|
2315
2319
|
}
|
|
2316
2320
|
|
|
2317
2321
|
@mixin spacing-body(
|
|
2318
|
-
$body-selector: ".spacing-body",
|
|
2319
|
-
$body-block-selector: ".spacing-body-block",
|
|
2320
|
-
$body-block-start-selector:
|
|
2321
|
-
|
|
2322
|
-
$body-
|
|
2323
|
-
|
|
2324
|
-
$body-inline-
|
|
2322
|
+
$body-selector: ".spacing-body,:host(.spacing-body)",
|
|
2323
|
+
$body-block-selector: ".spacing-body-block,:host(.spacing-body-block)",
|
|
2324
|
+
$body-block-start-selector:
|
|
2325
|
+
".spacing-body-block-start,:host(.spacing-body-block-start)",
|
|
2326
|
+
$body-block-end-selector:
|
|
2327
|
+
".spacing-body-block-end,:host(.spacing-body-block-end)",
|
|
2328
|
+
$body-inline-selector: ".spacing-body-inline,:host(.spacing-body-inline)",
|
|
2329
|
+
$body-inline-start-selector:
|
|
2330
|
+
".spacing-body-inline-start,:host(.spacing-body-inline-start)",
|
|
2331
|
+
$body-inline-end-selector:
|
|
2332
|
+
".spacing-body-inline-end,:host(.spacing-body-inline-end)"
|
|
2325
2333
|
) {
|
|
2326
2334
|
#{$body-selector} {
|
|
2327
2335
|
@extend %spacing-body;
|
|
@@ -3605,25 +3613,13 @@
|
|
|
3605
3613
|
--accordion-header__border-width: var(--mer-border__width--sm);
|
|
3606
3614
|
--accordion-header__border-color: transparent;
|
|
3607
3615
|
--accordion-header__border-radius: var(--accordion-panel__border-radius);
|
|
3608
|
-
--accordion-header__border: var(
|
|
3609
|
-
|
|
3610
|
-
//
|
|
3611
|
-
// header:hover
|
|
3612
|
-
--accordion-header__border-color--hover: var(
|
|
3613
|
-
--mer-border-color__primary--hover
|
|
3614
|
-
);
|
|
3615
|
-
--accordion-header__border--hover: var(--accordion-header__border-width) solid
|
|
3616
|
-
var(--accordion-header__border-color--hover);
|
|
3617
|
-
// header:active
|
|
3618
|
-
--accordion-header__border-color--active: var(
|
|
3619
|
-
--mer-border-color__primary--active
|
|
3620
|
-
);
|
|
3621
|
-
--accordion-header__border--active: var(--accordion-header__border-width)
|
|
3622
|
-
solid var(--accordion-header__border-color--active);
|
|
3616
|
+
--accordion-header__border-block-end-color: var(
|
|
3617
|
+
--mer-border-color__on-surface
|
|
3618
|
+
); // for expanded
|
|
3623
3619
|
|
|
3624
3620
|
// section
|
|
3625
3621
|
--accordion-section__border-color: var(--mer-border-color__on-elevation--01);
|
|
3626
|
-
--accordion-section__margin-block:
|
|
3622
|
+
--accordion-section__margin-block: var(--mer-spacing--sm);
|
|
3627
3623
|
--accordion-section__margin-inline: var(--mer-spacing--sm);
|
|
3628
3624
|
--accordion-section__bg-color: var(--mer-surface__elevation--01);
|
|
3629
3625
|
--accordion-section__border: var(--mer-border__width--sm) solid
|
|
@@ -3656,14 +3652,21 @@
|
|
|
3656
3652
|
padding: var(--accordion-header__padding);
|
|
3657
3653
|
gap: var(--accordion-header__gap);
|
|
3658
3654
|
color: var(--accordion-header__color);
|
|
3659
|
-
|
|
3660
|
-
|
|
3655
|
+
border: var(--accordion-header__border-width) solid
|
|
3656
|
+
var(--accordion-header__border-color);
|
|
3661
3657
|
|
|
3662
3658
|
&--hover {
|
|
3663
|
-
--accordion-header__border: var(--
|
|
3659
|
+
--accordion-header__border-color: var(--mer-border-color__primary--hover);
|
|
3664
3660
|
}
|
|
3665
3661
|
&--active {
|
|
3666
|
-
--accordion-header__border: var(--
|
|
3662
|
+
--accordion-header__border-color: var(--mer-border-color__primary--active);
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
&--hover,
|
|
3666
|
+
&--active {
|
|
3667
|
+
--accordion-header__border-block-end-color: var(
|
|
3668
|
+
--accordion-header__border-color
|
|
3669
|
+
);
|
|
3667
3670
|
}
|
|
3668
3671
|
|
|
3669
3672
|
&--focus-visible {
|
|
@@ -3679,6 +3682,14 @@
|
|
|
3679
3682
|
color: var(--mer-accent__primary--disabled);
|
|
3680
3683
|
}
|
|
3681
3684
|
}
|
|
3685
|
+
|
|
3686
|
+
// expanded
|
|
3687
|
+
&--expanded {
|
|
3688
|
+
border-block-end-color: var(--accordion-header__border-block-end-color);
|
|
3689
|
+
|
|
3690
|
+
&-disabled {
|
|
3691
|
+
}
|
|
3692
|
+
}
|
|
3682
3693
|
}
|
|
3683
3694
|
|
|
3684
3695
|
%accordion-panel {
|
|
@@ -3703,15 +3714,10 @@
|
|
|
3703
3714
|
// "1px" is used to improve the display of the outline when :focus-visible
|
|
3704
3715
|
margin-block: var(--accordion-section__margin-block);
|
|
3705
3716
|
margin-inline: var(--accordion-section__margin-inline);
|
|
3706
|
-
|
|
3707
|
-
padding-inline: var(--accordion-section__padding-inline);
|
|
3708
|
-
background-color: var(--accordion-section__bg-color);
|
|
3709
|
-
border: var(--accordion-section__border);
|
|
3710
|
-
border-radius: var(--accordion-section__border-radius);
|
|
3717
|
+
// background-color: var(--accordion-section__bg-color);
|
|
3711
3718
|
|
|
3712
3719
|
&-outlined {
|
|
3713
3720
|
&--disabled {
|
|
3714
|
-
border-color: var(--accordion-section-outlined__border-color--disabled);
|
|
3715
3721
|
}
|
|
3716
3722
|
}
|
|
3717
3723
|
}
|
|
@@ -3722,6 +3728,9 @@
|
|
|
3722
3728
|
$panel-disabled-selector: ".accordion-filled::part(panel disabled)",
|
|
3723
3729
|
$header-selector: ".accordion-filled::part(header)",
|
|
3724
3730
|
$header-disabled-selector: ".accordion-filled::part(header disabled)",
|
|
3731
|
+
$header-expanded-selector: ".accordion-filled::part(header expanded)",
|
|
3732
|
+
$header-expanded-disabled-selector:
|
|
3733
|
+
".accordion-filled::part(header expanded disabled)",
|
|
3725
3734
|
$section-selector: ".accordion-filled::part(section)"
|
|
3726
3735
|
) {
|
|
3727
3736
|
#{$accordion-selector} {
|
|
@@ -3750,6 +3759,14 @@
|
|
|
3750
3759
|
}
|
|
3751
3760
|
}
|
|
3752
3761
|
|
|
3762
|
+
#{$header-expanded-selector} {
|
|
3763
|
+
@extend %accordion-header--expanded;
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
#{$header-expanded-disabled-selector} {
|
|
3767
|
+
@extend %accordion-header--expanded-disabled;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3753
3770
|
#{$section-selector} {
|
|
3754
3771
|
@extend %accordion-section;
|
|
3755
3772
|
}
|
|
@@ -3765,6 +3782,9 @@
|
|
|
3765
3782
|
$panel-disabled-selector: ".accordion-outlined::part(panel disabled)",
|
|
3766
3783
|
$header-selector: ".accordion-outlined::part(header)",
|
|
3767
3784
|
$header-disabled-selector: ".accordion-outlined::part(header disabled)",
|
|
3785
|
+
$header-expanded-selector: ".accordion-outlined::part(header expanded)",
|
|
3786
|
+
$header-expanded-disabled-selector:
|
|
3787
|
+
".accordion-outlined::part(header expanded disabled)",
|
|
3768
3788
|
$section-selector: ".accordion-outlined::part(section)",
|
|
3769
3789
|
$section-disabled-selector: ".accordion-outlined::part(section disabled)"
|
|
3770
3790
|
) {
|
|
@@ -3795,6 +3815,14 @@
|
|
|
3795
3815
|
}
|
|
3796
3816
|
}
|
|
3797
3817
|
|
|
3818
|
+
#{$header-expanded-selector} {
|
|
3819
|
+
@extend %accordion-header--expanded;
|
|
3820
|
+
}
|
|
3821
|
+
|
|
3822
|
+
#{$header-expanded-disabled-selector} {
|
|
3823
|
+
@extend %accordion-header--expanded-disabled;
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3798
3826
|
#{$section-selector} {
|
|
3799
3827
|
@extend %accordion-section;
|
|
3800
3828
|
}
|
|
@@ -4885,13 +4913,17 @@
|
|
|
4885
4913
|
}
|
|
4886
4914
|
|
|
4887
4915
|
@mixin spacing-body(
|
|
4888
|
-
$body-selector: ".spacing-body",
|
|
4889
|
-
$body-block-selector: ".spacing-body-block",
|
|
4890
|
-
$body-block-start-selector:
|
|
4891
|
-
|
|
4892
|
-
$body-
|
|
4893
|
-
|
|
4894
|
-
$body-inline-
|
|
4916
|
+
$body-selector: ".spacing-body,:host(.spacing-body)",
|
|
4917
|
+
$body-block-selector: ".spacing-body-block,:host(.spacing-body-block)",
|
|
4918
|
+
$body-block-start-selector:
|
|
4919
|
+
".spacing-body-block-start,:host(.spacing-body-block-start)",
|
|
4920
|
+
$body-block-end-selector:
|
|
4921
|
+
".spacing-body-block-end,:host(.spacing-body-block-end)",
|
|
4922
|
+
$body-inline-selector: ".spacing-body-inline,:host(.spacing-body-inline)",
|
|
4923
|
+
$body-inline-start-selector:
|
|
4924
|
+
".spacing-body-inline-start,:host(.spacing-body-inline-start)",
|
|
4925
|
+
$body-inline-end-selector:
|
|
4926
|
+
".spacing-body-inline-end,:host(.spacing-body-inline-end)"
|
|
4895
4927
|
) {
|
|
4896
4928
|
#{$body-selector} {
|
|
4897
4929
|
@extend %spacing-body;
|
|
@@ -4944,12 +4976,10 @@
|
|
|
4944
4976
|
%combo-box {
|
|
4945
4977
|
--ch-combo-box-separation-y: var(--mer-spacing--3xs);
|
|
4946
4978
|
--ch-combo-box-item-gap: var(--mer-spacing--xs);
|
|
4947
|
-
|
|
4948
|
-
--ch-combo-box-
|
|
4979
|
+
--ch-combo-box-item__image-size: var(--mer-icon__box--md);
|
|
4980
|
+
--ch-combo-box-item__background-image-size: 100%;
|
|
4949
4981
|
--ch-combo-box-group__expandable-button-size: var(--mer-spacing--md);
|
|
4950
|
-
|
|
4951
4982
|
--ch-combo-box-group__expandable-button-image-size: var(--mer-spacing--sm);
|
|
4952
|
-
--ch-combo-box-item__background-image-size: 100%;
|
|
4953
4983
|
|
|
4954
4984
|
@include control-border();
|
|
4955
4985
|
@include control-colors-enabled();
|
|
@@ -5053,11 +5083,13 @@
|
|
|
5053
5083
|
// Window
|
|
5054
5084
|
// - - - - - - - - - - - - - - - - - - - -
|
|
5055
5085
|
#{$window-selector} {
|
|
5086
|
+
@include items-container-border();
|
|
5087
|
+
@include items-container-border-radius();
|
|
5056
5088
|
@include items-container-colors();
|
|
5057
5089
|
@include items-container-padding();
|
|
5058
|
-
@include items-container-dropdown();
|
|
5059
5090
|
@include items-container-gap();
|
|
5060
5091
|
@include items-container-max-height();
|
|
5092
|
+
@include items-container-dropdown();
|
|
5061
5093
|
}
|
|
5062
5094
|
|
|
5063
5095
|
// - - - - - - - - - - - - - - - - - - - -
|
|
@@ -6757,13 +6789,17 @@
|
|
|
6757
6789
|
}
|
|
6758
6790
|
|
|
6759
6791
|
@mixin spacing-body(
|
|
6760
|
-
$body-selector: ".spacing-body",
|
|
6761
|
-
$body-block-selector: ".spacing-body-block",
|
|
6762
|
-
$body-block-start-selector:
|
|
6763
|
-
|
|
6764
|
-
$body-
|
|
6765
|
-
|
|
6766
|
-
$body-inline-
|
|
6792
|
+
$body-selector: ".spacing-body,:host(.spacing-body)",
|
|
6793
|
+
$body-block-selector: ".spacing-body-block,:host(.spacing-body-block)",
|
|
6794
|
+
$body-block-start-selector:
|
|
6795
|
+
".spacing-body-block-start,:host(.spacing-body-block-start)",
|
|
6796
|
+
$body-block-end-selector:
|
|
6797
|
+
".spacing-body-block-end,:host(.spacing-body-block-end)",
|
|
6798
|
+
$body-inline-selector: ".spacing-body-inline,:host(.spacing-body-inline)",
|
|
6799
|
+
$body-inline-start-selector:
|
|
6800
|
+
".spacing-body-inline-start,:host(.spacing-body-inline-start)",
|
|
6801
|
+
$body-inline-end-selector:
|
|
6802
|
+
".spacing-body-inline-end,:host(.spacing-body-inline-end)"
|
|
6767
6803
|
) {
|
|
6768
6804
|
#{$body-selector} {
|
|
6769
6805
|
@extend %spacing-body;
|
|
@@ -13618,15 +13654,15 @@
|
|
|
13618
13654
|
--icon__system_dark-mode_primary--hover: url('#{$icons-path}system/light/dark-mode.svg#primary--hover');
|
|
13619
13655
|
--icon__system_dark-mode_primary--active: url('#{$icons-path}system/light/dark-mode.svg#primary--active');
|
|
13620
13656
|
--icon__system_dark-mode_primary--disabled: url('#{$icons-path}system/light/dark-mode.svg#primary--disabled');
|
|
13621
|
-
--
|
|
13622
|
-
--
|
|
13623
|
-
--
|
|
13624
|
-
--
|
|
13625
|
-
--
|
|
13626
|
-
--
|
|
13627
|
-
--
|
|
13628
|
-
--
|
|
13629
|
-
--
|
|
13657
|
+
--icon__system_cut_on-surface--enabled: url('#{$icons-path}system/light/cut.svg#on-surface--enabled');
|
|
13658
|
+
--icon__system_cut_on-surface--hover: url('#{$icons-path}system/light/cut.svg#on-surface--hover');
|
|
13659
|
+
--icon__system_cut_on-surface--active: url('#{$icons-path}system/light/cut.svg#on-surface--active');
|
|
13660
|
+
--icon__system_cut_on-surface--disabled: url('#{$icons-path}system/light/cut.svg#on-surface--disabled');
|
|
13661
|
+
--icon__system_cut_on-elevation--enabled: url('#{$icons-path}system/light/cut.svg#on-elevation--enabled');
|
|
13662
|
+
--icon__system_cut_primary--enabled: url('#{$icons-path}system/light/cut.svg#primary--enabled');
|
|
13663
|
+
--icon__system_cut_primary--hover: url('#{$icons-path}system/light/cut.svg#primary--hover');
|
|
13664
|
+
--icon__system_cut_primary--active: url('#{$icons-path}system/light/cut.svg#primary--active');
|
|
13665
|
+
--icon__system_cut_primary--disabled: url('#{$icons-path}system/light/cut.svg#primary--disabled');
|
|
13630
13666
|
--icon__system_copy_on-surface--enabled: url('#{$icons-path}system/light/copy.svg#on-surface--enabled');
|
|
13631
13667
|
--icon__system_copy_on-surface--hover: url('#{$icons-path}system/light/copy.svg#on-surface--hover');
|
|
13632
13668
|
--icon__system_copy_on-surface--active: url('#{$icons-path}system/light/copy.svg#on-surface--active');
|
|
@@ -13663,15 +13699,15 @@
|
|
|
13663
13699
|
--icon__system_check_primary--hover: url('#{$icons-path}system/light/check.svg#primary--hover');
|
|
13664
13700
|
--icon__system_check_primary--active: url('#{$icons-path}system/light/check.svg#primary--active');
|
|
13665
13701
|
--icon__system_check_primary--disabled: url('#{$icons-path}system/light/check.svg#primary--disabled');
|
|
13666
|
-
--
|
|
13667
|
-
--
|
|
13668
|
-
--
|
|
13669
|
-
--
|
|
13670
|
-
--
|
|
13671
|
-
--
|
|
13672
|
-
--
|
|
13673
|
-
--
|
|
13674
|
-
--
|
|
13702
|
+
--icon__system_card_on-surface--enabled: url('#{$icons-path}system/light/card.svg#on-surface--enabled');
|
|
13703
|
+
--icon__system_card_on-surface--hover: url('#{$icons-path}system/light/card.svg#on-surface--hover');
|
|
13704
|
+
--icon__system_card_on-surface--active: url('#{$icons-path}system/light/card.svg#on-surface--active');
|
|
13705
|
+
--icon__system_card_on-surface--disabled: url('#{$icons-path}system/light/card.svg#on-surface--disabled');
|
|
13706
|
+
--icon__system_card_on-elevation--enabled: url('#{$icons-path}system/light/card.svg#on-elevation--enabled');
|
|
13707
|
+
--icon__system_card_primary--enabled: url('#{$icons-path}system/light/card.svg#primary--enabled');
|
|
13708
|
+
--icon__system_card_primary--hover: url('#{$icons-path}system/light/card.svg#primary--hover');
|
|
13709
|
+
--icon__system_card_primary--active: url('#{$icons-path}system/light/card.svg#primary--active');
|
|
13710
|
+
--icon__system_card_primary--disabled: url('#{$icons-path}system/light/card.svg#primary--disabled');
|
|
13675
13711
|
--icon__system_card-variant_on-surface--enabled: url('#{$icons-path}system/light/card-variant.svg#on-surface--enabled');
|
|
13676
13712
|
--icon__system_card-variant_on-surface--hover: url('#{$icons-path}system/light/card-variant.svg#on-surface--hover');
|
|
13677
13713
|
--icon__system_card-variant_on-surface--active: url('#{$icons-path}system/light/card-variant.svg#on-surface--active');
|
|
@@ -13681,15 +13717,6 @@
|
|
|
13681
13717
|
--icon__system_card-variant_primary--hover: url('#{$icons-path}system/light/card-variant.svg#primary--hover');
|
|
13682
13718
|
--icon__system_card-variant_primary--active: url('#{$icons-path}system/light/card-variant.svg#primary--active');
|
|
13683
13719
|
--icon__system_card-variant_primary--disabled: url('#{$icons-path}system/light/card-variant.svg#primary--disabled');
|
|
13684
|
-
--icon__system_Assistant_on-surface--enabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--enabled');
|
|
13685
|
-
--icon__system_Assistant_on-surface--hover: url('#{$icons-path}system/light/Assistant.svg#on-surface--hover');
|
|
13686
|
-
--icon__system_Assistant_on-surface--active: url('#{$icons-path}system/light/Assistant.svg#on-surface--active');
|
|
13687
|
-
--icon__system_Assistant_on-surface--disabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--disabled');
|
|
13688
|
-
--icon__system_Assistant_on-elevation--enabled: url('#{$icons-path}system/light/Assistant.svg#on-elevation--enabled');
|
|
13689
|
-
--icon__system_Assistant_primary--enabled: url('#{$icons-path}system/light/Assistant.svg#primary--enabled');
|
|
13690
|
-
--icon__system_Assistant_primary--hover: url('#{$icons-path}system/light/Assistant.svg#primary--hover');
|
|
13691
|
-
--icon__system_Assistant_primary--active: url('#{$icons-path}system/light/Assistant.svg#primary--active');
|
|
13692
|
-
--icon__system_Assistant_primary--disabled: url('#{$icons-path}system/light/Assistant.svg#primary--disabled');
|
|
13693
13720
|
--icon__system_arrow-up_on-surface--enabled: url('#{$icons-path}system/light/arrow-up.svg#on-surface--enabled');
|
|
13694
13721
|
--icon__system_arrow-up_on-surface--hover: url('#{$icons-path}system/light/arrow-up.svg#on-surface--hover');
|
|
13695
13722
|
--icon__system_arrow-up_on-surface--active: url('#{$icons-path}system/light/arrow-up.svg#on-surface--active');
|
|
@@ -13762,6 +13789,15 @@
|
|
|
13762
13789
|
--icon__system_add-circle_primary--hover: url('#{$icons-path}system/light/add-circle.svg#primary--hover');
|
|
13763
13790
|
--icon__system_add-circle_primary--active: url('#{$icons-path}system/light/add-circle.svg#primary--active');
|
|
13764
13791
|
--icon__system_add-circle_primary--disabled: url('#{$icons-path}system/light/add-circle.svg#primary--disabled');
|
|
13792
|
+
--icon__system_Assistant_on-surface--enabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--enabled');
|
|
13793
|
+
--icon__system_Assistant_on-surface--hover: url('#{$icons-path}system/light/Assistant.svg#on-surface--hover');
|
|
13794
|
+
--icon__system_Assistant_on-surface--active: url('#{$icons-path}system/light/Assistant.svg#on-surface--active');
|
|
13795
|
+
--icon__system_Assistant_on-surface--disabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--disabled');
|
|
13796
|
+
--icon__system_Assistant_on-elevation--enabled: url('#{$icons-path}system/light/Assistant.svg#on-elevation--enabled');
|
|
13797
|
+
--icon__system_Assistant_primary--enabled: url('#{$icons-path}system/light/Assistant.svg#primary--enabled');
|
|
13798
|
+
--icon__system_Assistant_primary--hover: url('#{$icons-path}system/light/Assistant.svg#primary--hover');
|
|
13799
|
+
--icon__system_Assistant_primary--active: url('#{$icons-path}system/light/Assistant.svg#primary--active');
|
|
13800
|
+
--icon__system_Assistant_primary--disabled: url('#{$icons-path}system/light/Assistant.svg#primary--disabled');
|
|
13765
13801
|
|
|
13766
13802
|
}
|
|
13767
13803
|
|
|
@@ -14275,15 +14311,15 @@
|
|
|
14275
14311
|
--icon__system_dark-mode_primary--hover: url('#{$icons-path}system/dark/dark-mode.svg#primary--hover');
|
|
14276
14312
|
--icon__system_dark-mode_primary--active: url('#{$icons-path}system/dark/dark-mode.svg#primary--active');
|
|
14277
14313
|
--icon__system_dark-mode_primary--disabled: url('#{$icons-path}system/dark/dark-mode.svg#primary--disabled');
|
|
14278
|
-
--
|
|
14279
|
-
--
|
|
14280
|
-
--
|
|
14281
|
-
--
|
|
14282
|
-
--
|
|
14283
|
-
--
|
|
14284
|
-
--
|
|
14285
|
-
--
|
|
14286
|
-
--
|
|
14314
|
+
--icon__system_cut_on-surface--enabled: url('#{$icons-path}system/dark/cut.svg#on-surface--enabled');
|
|
14315
|
+
--icon__system_cut_on-surface--hover: url('#{$icons-path}system/dark/cut.svg#on-surface--hover');
|
|
14316
|
+
--icon__system_cut_on-surface--active: url('#{$icons-path}system/dark/cut.svg#on-surface--active');
|
|
14317
|
+
--icon__system_cut_on-surface--disabled: url('#{$icons-path}system/dark/cut.svg#on-surface--disabled');
|
|
14318
|
+
--icon__system_cut_on-elevation--enabled: url('#{$icons-path}system/dark/cut.svg#on-elevation--enabled');
|
|
14319
|
+
--icon__system_cut_primary--enabled: url('#{$icons-path}system/dark/cut.svg#primary--enabled');
|
|
14320
|
+
--icon__system_cut_primary--hover: url('#{$icons-path}system/dark/cut.svg#primary--hover');
|
|
14321
|
+
--icon__system_cut_primary--active: url('#{$icons-path}system/dark/cut.svg#primary--active');
|
|
14322
|
+
--icon__system_cut_primary--disabled: url('#{$icons-path}system/dark/cut.svg#primary--disabled');
|
|
14287
14323
|
--icon__system_copy_on-surface--enabled: url('#{$icons-path}system/dark/copy.svg#on-surface--enabled');
|
|
14288
14324
|
--icon__system_copy_on-surface--hover: url('#{$icons-path}system/dark/copy.svg#on-surface--hover');
|
|
14289
14325
|
--icon__system_copy_on-surface--active: url('#{$icons-path}system/dark/copy.svg#on-surface--active');
|
|
@@ -14320,15 +14356,15 @@
|
|
|
14320
14356
|
--icon__system_check_primary--hover: url('#{$icons-path}system/dark/check.svg#primary--hover');
|
|
14321
14357
|
--icon__system_check_primary--active: url('#{$icons-path}system/dark/check.svg#primary--active');
|
|
14322
14358
|
--icon__system_check_primary--disabled: url('#{$icons-path}system/dark/check.svg#primary--disabled');
|
|
14323
|
-
--
|
|
14324
|
-
--
|
|
14325
|
-
--
|
|
14326
|
-
--
|
|
14327
|
-
--
|
|
14328
|
-
--
|
|
14329
|
-
--
|
|
14330
|
-
--
|
|
14331
|
-
--
|
|
14359
|
+
--icon__system_card_on-surface--enabled: url('#{$icons-path}system/dark/card.svg#on-surface--enabled');
|
|
14360
|
+
--icon__system_card_on-surface--hover: url('#{$icons-path}system/dark/card.svg#on-surface--hover');
|
|
14361
|
+
--icon__system_card_on-surface--active: url('#{$icons-path}system/dark/card.svg#on-surface--active');
|
|
14362
|
+
--icon__system_card_on-surface--disabled: url('#{$icons-path}system/dark/card.svg#on-surface--disabled');
|
|
14363
|
+
--icon__system_card_on-elevation--enabled: url('#{$icons-path}system/dark/card.svg#on-elevation--enabled');
|
|
14364
|
+
--icon__system_card_primary--enabled: url('#{$icons-path}system/dark/card.svg#primary--enabled');
|
|
14365
|
+
--icon__system_card_primary--hover: url('#{$icons-path}system/dark/card.svg#primary--hover');
|
|
14366
|
+
--icon__system_card_primary--active: url('#{$icons-path}system/dark/card.svg#primary--active');
|
|
14367
|
+
--icon__system_card_primary--disabled: url('#{$icons-path}system/dark/card.svg#primary--disabled');
|
|
14332
14368
|
--icon__system_card-variant_on-surface--enabled: url('#{$icons-path}system/dark/card-variant.svg#on-surface--enabled');
|
|
14333
14369
|
--icon__system_card-variant_on-surface--hover: url('#{$icons-path}system/dark/card-variant.svg#on-surface--hover');
|
|
14334
14370
|
--icon__system_card-variant_on-surface--active: url('#{$icons-path}system/dark/card-variant.svg#on-surface--active');
|
|
@@ -14338,15 +14374,6 @@
|
|
|
14338
14374
|
--icon__system_card-variant_primary--hover: url('#{$icons-path}system/dark/card-variant.svg#primary--hover');
|
|
14339
14375
|
--icon__system_card-variant_primary--active: url('#{$icons-path}system/dark/card-variant.svg#primary--active');
|
|
14340
14376
|
--icon__system_card-variant_primary--disabled: url('#{$icons-path}system/dark/card-variant.svg#primary--disabled');
|
|
14341
|
-
--icon__system_Assistant_on-surface--enabled: url('#{$icons-path}system/dark/Assistant.svg#on-surface--enabled');
|
|
14342
|
-
--icon__system_Assistant_on-surface--hover: url('#{$icons-path}system/dark/Assistant.svg#on-surface--hover');
|
|
14343
|
-
--icon__system_Assistant_on-surface--active: url('#{$icons-path}system/dark/Assistant.svg#on-surface--active');
|
|
14344
|
-
--icon__system_Assistant_on-surface--disabled: url('#{$icons-path}system/dark/Assistant.svg#on-surface--disabled');
|
|
14345
|
-
--icon__system_Assistant_on-elevation--enabled: url('#{$icons-path}system/dark/Assistant.svg#on-elevation--enabled');
|
|
14346
|
-
--icon__system_Assistant_primary--enabled: url('#{$icons-path}system/dark/Assistant.svg#primary--enabled');
|
|
14347
|
-
--icon__system_Assistant_primary--hover: url('#{$icons-path}system/dark/Assistant.svg#primary--hover');
|
|
14348
|
-
--icon__system_Assistant_primary--active: url('#{$icons-path}system/dark/Assistant.svg#primary--active');
|
|
14349
|
-
--icon__system_Assistant_primary--disabled: url('#{$icons-path}system/dark/Assistant.svg#primary--disabled');
|
|
14350
14377
|
--icon__system_arrow-up_on-surface--enabled: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--enabled');
|
|
14351
14378
|
--icon__system_arrow-up_on-surface--hover: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--hover');
|
|
14352
14379
|
--icon__system_arrow-up_on-surface--active: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--active');
|
|
@@ -14419,6 +14446,15 @@
|
|
|
14419
14446
|
--icon__system_add-circle_primary--hover: url('#{$icons-path}system/dark/add-circle.svg#primary--hover');
|
|
14420
14447
|
--icon__system_add-circle_primary--active: url('#{$icons-path}system/dark/add-circle.svg#primary--active');
|
|
14421
14448
|
--icon__system_add-circle_primary--disabled: url('#{$icons-path}system/dark/add-circle.svg#primary--disabled');
|
|
14449
|
+
--icon__system_Assistant_on-surface--enabled: url('#{$icons-path}system/dark/Assistant.svg#on-surface--enabled');
|
|
14450
|
+
--icon__system_Assistant_on-surface--hover: url('#{$icons-path}system/dark/Assistant.svg#on-surface--hover');
|
|
14451
|
+
--icon__system_Assistant_on-surface--active: url('#{$icons-path}system/dark/Assistant.svg#on-surface--active');
|
|
14452
|
+
--icon__system_Assistant_on-surface--disabled: url('#{$icons-path}system/dark/Assistant.svg#on-surface--disabled');
|
|
14453
|
+
--icon__system_Assistant_on-elevation--enabled: url('#{$icons-path}system/dark/Assistant.svg#on-elevation--enabled');
|
|
14454
|
+
--icon__system_Assistant_primary--enabled: url('#{$icons-path}system/dark/Assistant.svg#primary--enabled');
|
|
14455
|
+
--icon__system_Assistant_primary--hover: url('#{$icons-path}system/dark/Assistant.svg#primary--hover');
|
|
14456
|
+
--icon__system_Assistant_primary--active: url('#{$icons-path}system/dark/Assistant.svg#primary--active');
|
|
14457
|
+
--icon__system_Assistant_primary--disabled: url('#{$icons-path}system/dark/Assistant.svg#primary--disabled');
|
|
14422
14458
|
|
|
14423
14459
|
}
|
|
14424
14460
|
|
|
@@ -18193,7 +18229,7 @@
|
|
|
18193
18229
|
}
|
|
18194
18230
|
|
|
18195
18231
|
@if $utility-classes {
|
|
18196
|
-
@include utilities-
|
|
18232
|
+
@include utilities-elevation();
|
|
18197
18233
|
}
|
|
18198
18234
|
|
|
18199
18235
|
@if $layout-classes {
|
|
@@ -18268,7 +18304,7 @@
|
|
|
18268
18304
|
}
|
|
18269
18305
|
|
|
18270
18306
|
@if $pills {
|
|
18271
|
-
@include pills(
|
|
18307
|
+
@include pills();
|
|
18272
18308
|
}
|
|
18273
18309
|
|
|
18274
18310
|
@if $radio-group {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genexus/mercury",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.9",
|
|
4
4
|
"description": "Mercury is the design system designed for GeneXus IDE Web and GeneXus Next",
|
|
5
5
|
"main": "dist/mercury.scss",
|
|
6
6
|
"module": "dist/assets-manager.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@atao60/fse-cli": "^0.1.9",
|
|
30
|
-
"@genexus/chameleon-controls-library": "6.0.0-next.
|
|
30
|
+
"@genexus/chameleon-controls-library": "6.0.0-next.47",
|
|
31
31
|
"@genexus/svg-sass-generator": "1.1.24",
|
|
32
32
|
"chokidar": "^3.6.0",
|
|
33
33
|
"chokidar-cli": "^3.0.0",
|