@genexus/mercury 0.9.2 → 0.9.6
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 +88 -14
- package/dist/assets/MERCURY_ASSETS.js +142 -68
- package/dist/assets/MERCURY_ASSETS.ts +142 -68
- package/dist/assets/icons/states/dark/pill-filled.svg +1 -0
- package/dist/assets/icons/states/dark/pill-outlined.svg +1 -0
- package/dist/assets/icons/states/light/pill-filled.svg +1 -0
- package/dist/assets/icons/states/light/pill-outlined.svg +1 -0
- package/dist/assets-manager.d.ts +2 -0
- package/dist/assets-manager.js +5 -0
- package/dist/bundles/css/all.css +1 -1
- package/dist/bundles/css/base/base.css +1 -1
- package/dist/bundles/css/base/icons.css +1 -1
- package/dist/bundles/css/chameleon/scrollbar.css +1 -1
- package/dist/bundles/css/components/accordion.css +1 -1
- package/dist/bundles/css/components/button.css +1 -1
- package/dist/bundles/css/components/chat.css +1 -1
- package/dist/bundles/css/components/checkbox.css +1 -1
- package/dist/bundles/css/components/code.css +1 -1
- package/dist/bundles/css/components/combo-box.css +1 -1
- package/dist/bundles/css/components/dialog.css +1 -1
- package/dist/bundles/css/components/edit.css +1 -1
- package/dist/bundles/css/components/flexible-layout.css +1 -1
- package/dist/bundles/css/components/icon.css +1 -1
- package/dist/bundles/css/components/list-box.css +1 -1
- package/dist/bundles/css/components/markdown-viewer.css +1 -1
- package/dist/bundles/css/components/navigation-list.css +1 -1
- package/dist/bundles/css/components/pills.css +1 -0
- package/dist/bundles/css/components/radio-group.css +1 -1
- package/dist/bundles/css/components/segmented-control.css +1 -1
- package/dist/bundles/css/components/sidebar.css +1 -1
- package/dist/bundles/css/components/slider.css +1 -1
- package/dist/bundles/css/components/tab.css +1 -1
- package/dist/bundles/css/components/tabular-grid.css +1 -1
- package/dist/bundles/css/components/ticket-list.css +1 -1
- package/dist/bundles/css/components/tooltip.css +1 -1
- package/dist/bundles/css/components/tree-view.css +1 -1
- package/dist/bundles/css/components/widget.css +1 -1
- package/dist/bundles/css/resets/box-sizing.css +1 -1
- package/dist/bundles/css/utils/form--full.css +1 -1
- package/dist/bundles/css/utils/form.css +1 -1
- package/dist/bundles/css/utils/layout.css +1 -1
- package/dist/bundles/css/utils/typography.css +1 -1
- package/dist/bundles/scss/components/pills.scss +3 -0
- package/dist/bundles.d.ts +9 -1
- package/dist/bundles.js +1 -0
- package/dist/mercury.scss +1284 -113
- package/package.json +2 -2
package/dist/mercury.scss
CHANGED
|
@@ -480,6 +480,9 @@
|
|
|
480
480
|
@mixin item-gap() {
|
|
481
481
|
gap: var(--item__gap--regular);
|
|
482
482
|
}
|
|
483
|
+
@mixin item-column-gap() {
|
|
484
|
+
column-gap: var(--item__gap--regular);
|
|
485
|
+
}
|
|
483
486
|
@mixin item-padding() {
|
|
484
487
|
padding-block: var(--item__padding-block);
|
|
485
488
|
padding-inline: var(--item__padding-inline);
|
|
@@ -816,6 +819,28 @@
|
|
|
816
819
|
}
|
|
817
820
|
}
|
|
818
821
|
|
|
822
|
+
// ----------------------
|
|
823
|
+
// Spinner
|
|
824
|
+
// ----------------------
|
|
825
|
+
|
|
826
|
+
@mixin spinner($size) {
|
|
827
|
+
width: $size;
|
|
828
|
+
height: $size;
|
|
829
|
+
border: calc($size / 5) solid var(--mer-color__tinted-blue--50);
|
|
830
|
+
border-top: calc($size / 5) solid var(--mer-color__primary-blue--300);
|
|
831
|
+
border-radius: 50%;
|
|
832
|
+
animation: spin var(--mer-timing--regular) linear infinite;
|
|
833
|
+
|
|
834
|
+
@keyframes spin {
|
|
835
|
+
0% {
|
|
836
|
+
transform: rotate(0deg);
|
|
837
|
+
}
|
|
838
|
+
100% {
|
|
839
|
+
transform: rotate(360deg);
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
|
|
819
844
|
/// @group UtilityClasses
|
|
820
845
|
/// @param {String} $elevation-01-selector [".elevation-01"] -
|
|
821
846
|
/// @param {String} $elevation-02-selector [".elevation-02"] -
|
|
@@ -1198,6 +1223,7 @@
|
|
|
1198
1223
|
--mer-border-color__primary--active: var(--mer-accent__primary--active);
|
|
1199
1224
|
--mer-border-color__primary--disabled: var(--mer-accent__primary--disabled);
|
|
1200
1225
|
--mer-border-color__primary--focused: var(--mer-color__neutral-gray--200);
|
|
1226
|
+
--mer-border-color__dim: var(--mer-color__neutral-gray--550);
|
|
1201
1227
|
--mer-border-color__error: var(--mer-color__message-red--100);
|
|
1202
1228
|
--mer-border-color__warning: var(--mer-color__message-yellow--100);
|
|
1203
1229
|
--mer-border-color__success: var(--mer-color__message-green--100);
|
|
@@ -1290,7 +1316,7 @@
|
|
|
1290
1316
|
// -------------------------------------------------------------
|
|
1291
1317
|
|
|
1292
1318
|
// fixed values
|
|
1293
|
-
--label__font-size: var(--mer-font__size--
|
|
1319
|
+
--label__font-size: var(--mer-font__size--2xs);
|
|
1294
1320
|
--label__font-weight: var(--mer-font__weight--semi-bold);
|
|
1295
1321
|
--label__line-height: var(--mer-line-height--regular);
|
|
1296
1322
|
--label__border-width: 1.2px;
|
|
@@ -1659,7 +1685,7 @@
|
|
|
1659
1685
|
--mer-text__neutral: var(--mer-color__neutral-gray--300);
|
|
1660
1686
|
--mer-text__highlighted: var(--mer-color__neutral-gray--100);
|
|
1661
1687
|
--mer-text__success: var(--mer-color__message-green--100);
|
|
1662
|
-
--mer-text__error: var(--mer-color__message-
|
|
1688
|
+
--mer-text__error: var(--mer-color__message-red--100);
|
|
1663
1689
|
--mer-text__warning: var(--mer-color__message-yellow--100);
|
|
1664
1690
|
--mer-text__complementary: var(--mer-color__neutral-gray--450);
|
|
1665
1691
|
--mer-text__bright: var(
|
|
@@ -1983,6 +2009,9 @@
|
|
|
1983
2009
|
@mixin item-gap() {
|
|
1984
2010
|
gap: var(--item__gap--regular);
|
|
1985
2011
|
}
|
|
2012
|
+
@mixin item-column-gap() {
|
|
2013
|
+
column-gap: var(--item__gap--regular);
|
|
2014
|
+
}
|
|
1986
2015
|
@mixin item-padding() {
|
|
1987
2016
|
padding-block: var(--item__padding-block);
|
|
1988
2017
|
padding-inline: var(--item__padding-inline);
|
|
@@ -2319,6 +2348,28 @@
|
|
|
2319
2348
|
}
|
|
2320
2349
|
}
|
|
2321
2350
|
|
|
2351
|
+
// ----------------------
|
|
2352
|
+
// Spinner
|
|
2353
|
+
// ----------------------
|
|
2354
|
+
|
|
2355
|
+
@mixin spinner($size) {
|
|
2356
|
+
width: $size;
|
|
2357
|
+
height: $size;
|
|
2358
|
+
border: calc($size / 5) solid var(--mer-color__tinted-blue--50);
|
|
2359
|
+
border-top: calc($size / 5) solid var(--mer-color__primary-blue--300);
|
|
2360
|
+
border-radius: 50%;
|
|
2361
|
+
animation: spin var(--mer-timing--regular) linear infinite;
|
|
2362
|
+
|
|
2363
|
+
@keyframes spin {
|
|
2364
|
+
0% {
|
|
2365
|
+
transform: rotate(0deg);
|
|
2366
|
+
}
|
|
2367
|
+
100% {
|
|
2368
|
+
transform: rotate(360deg);
|
|
2369
|
+
}
|
|
2370
|
+
}
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2322
2373
|
|
|
2323
2374
|
/// @group Label
|
|
2324
2375
|
/// @param {String} $label-selector [".label"] -
|
|
@@ -3896,6 +3947,8 @@
|
|
|
3896
3947
|
%checkbox {
|
|
3897
3948
|
--ch-checkbox__container-size: var(--control-tiny__size);
|
|
3898
3949
|
--ch-checkbox__option-size: calc(var(--control-tiny__size) / 2);
|
|
3950
|
+
--ch-checkbox__image-size: var(--mer-icon__box--md);
|
|
3951
|
+
|
|
3899
3952
|
@include label-gap-inline();
|
|
3900
3953
|
|
|
3901
3954
|
&--hover {
|
|
@@ -4526,6 +4579,9 @@
|
|
|
4526
4579
|
@mixin item-gap() {
|
|
4527
4580
|
gap: var(--item__gap--regular);
|
|
4528
4581
|
}
|
|
4582
|
+
@mixin item-column-gap() {
|
|
4583
|
+
column-gap: var(--item__gap--regular);
|
|
4584
|
+
}
|
|
4529
4585
|
@mixin item-padding() {
|
|
4530
4586
|
padding-block: var(--item__padding-block);
|
|
4531
4587
|
padding-inline: var(--item__padding-inline);
|
|
@@ -4862,6 +4918,28 @@
|
|
|
4862
4918
|
}
|
|
4863
4919
|
}
|
|
4864
4920
|
|
|
4921
|
+
// ----------------------
|
|
4922
|
+
// Spinner
|
|
4923
|
+
// ----------------------
|
|
4924
|
+
|
|
4925
|
+
@mixin spinner($size) {
|
|
4926
|
+
width: $size;
|
|
4927
|
+
height: $size;
|
|
4928
|
+
border: calc($size / 5) solid var(--mer-color__tinted-blue--50);
|
|
4929
|
+
border-top: calc($size / 5) solid var(--mer-color__primary-blue--300);
|
|
4930
|
+
border-radius: 50%;
|
|
4931
|
+
animation: spin var(--mer-timing--regular) linear infinite;
|
|
4932
|
+
|
|
4933
|
+
@keyframes spin {
|
|
4934
|
+
0% {
|
|
4935
|
+
transform: rotate(0deg);
|
|
4936
|
+
}
|
|
4937
|
+
100% {
|
|
4938
|
+
transform: rotate(360deg);
|
|
4939
|
+
}
|
|
4940
|
+
}
|
|
4941
|
+
}
|
|
4942
|
+
|
|
4865
4943
|
|
|
4866
4944
|
%combo-box {
|
|
4867
4945
|
--ch-combo-box-separation-y: var(--mer-spacing--3xs);
|
|
@@ -5433,6 +5511,7 @@
|
|
|
5433
5511
|
@include item-border-radius();
|
|
5434
5512
|
@include item-font();
|
|
5435
5513
|
@include item-padding();
|
|
5514
|
+
@include item-column-gap();
|
|
5436
5515
|
|
|
5437
5516
|
&--disabled {
|
|
5438
5517
|
@include item-colors-disabled();
|
|
@@ -5888,93 +5967,1127 @@
|
|
|
5888
5967
|
%navigation-list {
|
|
5889
5968
|
--ch-navigation-list-item__tooltip-separation-x: var(--mer-spacing--2xs);
|
|
5890
5969
|
|
|
5891
|
-
--ch-navigation-list-item-custom-padding-inline-start: calc(
|
|
5892
|
-
var(--mer-spacing--xs) + var(--mer-spacing--3xs)
|
|
5893
|
-
);
|
|
5894
|
-
--ch-navigation-list-item-gap: var(--mer-spacing--xs);
|
|
5895
|
-
--ch-navigation-list-item-expand-collapse-duration: 200ms;
|
|
5970
|
+
--ch-navigation-list-item-custom-padding-inline-start: calc(
|
|
5971
|
+
var(--mer-spacing--xs) + var(--mer-spacing--3xs)
|
|
5972
|
+
);
|
|
5973
|
+
--ch-navigation-list-item-gap: var(--mer-spacing--xs);
|
|
5974
|
+
--ch-navigation-list-item-expand-collapse-duration: 200ms;
|
|
5975
|
+
|
|
5976
|
+
--ch-navigation-list-item__image-size: 20px;
|
|
5977
|
+
--ch-navigation-list-item__expandable-button-size: 20px;
|
|
5978
|
+
--ch-navigation-list-item__expandable-button-image-size: calc(
|
|
5979
|
+
var(--mer-spacing--md) - var(--mer-spacing--3xs)
|
|
5980
|
+
);
|
|
5981
|
+
|
|
5982
|
+
color: var(--item__color);
|
|
5983
|
+
|
|
5984
|
+
&-item-action {
|
|
5985
|
+
padding-block: var(--mer-spacing--xs);
|
|
5986
|
+
padding-inline-end: var(--mer-spacing--xs);
|
|
5987
|
+
}
|
|
5988
|
+
|
|
5989
|
+
&-item-tooltip {
|
|
5990
|
+
padding-block: var(--mer-spacing--2xs);
|
|
5991
|
+
padding-inline: var(--mer-spacing--xs);
|
|
5992
|
+
background-color: var(--mer-color__neutral-gray--800);
|
|
5993
|
+
border-radius: var(--mer-border__radius--sm);
|
|
5994
|
+
color: var(--mer-color__neutral-gray--300);
|
|
5995
|
+
font-size: var(--mer-font__size--xs);
|
|
5996
|
+
}
|
|
5997
|
+
|
|
5998
|
+
&-item-action {
|
|
5999
|
+
&--focus-visible {
|
|
6000
|
+
outline: 1px solid;
|
|
6001
|
+
outline-offset: -1px;
|
|
6002
|
+
}
|
|
6003
|
+
}
|
|
6004
|
+
|
|
6005
|
+
&-item-button {
|
|
6006
|
+
&--hover {
|
|
6007
|
+
color: var(--item__color--hover);
|
|
6008
|
+
}
|
|
6009
|
+
}
|
|
6010
|
+
|
|
6011
|
+
&-item-link {
|
|
6012
|
+
&--selected {
|
|
6013
|
+
background-color: var(--item__bg-color--selected-hover);
|
|
6014
|
+
}
|
|
6015
|
+
|
|
6016
|
+
&--hover-not-selected {
|
|
6017
|
+
background-color: var(--item__bg-color--hover);
|
|
6018
|
+
}
|
|
6019
|
+
}
|
|
6020
|
+
}
|
|
6021
|
+
|
|
6022
|
+
@mixin navigation-list(
|
|
6023
|
+
$navigation-list-selector: ".navigation-list",
|
|
6024
|
+
$item-action-selector: ".navigation-list::part(item__action)",
|
|
6025
|
+
$item-button-selector: ".navigation-list::part(item__button)",
|
|
6026
|
+
$item-link-not-selected-selector:
|
|
6027
|
+
".navigation-list::part(item__link not-selected)",
|
|
6028
|
+
$item-link-selected-selector: ".navigation-list::part(item__link selected)",
|
|
6029
|
+
$item-tooltip-selector: ".navigation-list::part(item__caption tooltip)"
|
|
6030
|
+
) {
|
|
6031
|
+
#{$navigation-list-selector} {
|
|
6032
|
+
@extend %navigation-list;
|
|
6033
|
+
}
|
|
6034
|
+
|
|
6035
|
+
#{$item-action-selector} {
|
|
6036
|
+
@extend %navigation-list-item-action;
|
|
6037
|
+
|
|
6038
|
+
&:focus-visible {
|
|
6039
|
+
@extend %navigation-list-item-action--focus-visible;
|
|
6040
|
+
}
|
|
6041
|
+
}
|
|
6042
|
+
|
|
6043
|
+
#{$item-button-selector}:hover {
|
|
6044
|
+
@extend %navigation-list-item-button--hover;
|
|
6045
|
+
}
|
|
6046
|
+
|
|
6047
|
+
#{$item-link-selected-selector} {
|
|
6048
|
+
@extend %navigation-list-item-link--selected;
|
|
6049
|
+
}
|
|
6050
|
+
|
|
6051
|
+
#{$item-link-not-selected-selector}:hover {
|
|
6052
|
+
@extend %navigation-list-item-link--hover-not-selected;
|
|
6053
|
+
}
|
|
6054
|
+
|
|
6055
|
+
#{$item-tooltip-selector} {
|
|
6056
|
+
@extend %navigation-list-item-tooltip;
|
|
6057
|
+
}
|
|
6058
|
+
}
|
|
6059
|
+
|
|
6060
|
+
@mixin typography-reset() {
|
|
6061
|
+
h1,
|
|
6062
|
+
h2,
|
|
6063
|
+
h3,
|
|
6064
|
+
h4,
|
|
6065
|
+
h5,
|
|
6066
|
+
h6,
|
|
6067
|
+
p {
|
|
6068
|
+
font: unset;
|
|
6069
|
+
margin: 0;
|
|
6070
|
+
padding: 0;
|
|
6071
|
+
color: unset;
|
|
6072
|
+
}
|
|
6073
|
+
}
|
|
6074
|
+
|
|
6075
|
+
@mixin button-reset() {
|
|
6076
|
+
:where(button, a) {
|
|
6077
|
+
all: unset;
|
|
6078
|
+
display: inline-flex;
|
|
6079
|
+
align-items: center;
|
|
6080
|
+
|
|
6081
|
+
// Disallow selecting the text
|
|
6082
|
+
user-select: none;
|
|
6083
|
+
|
|
6084
|
+
// Avoid zooming on double tap on iOS devices
|
|
6085
|
+
touch-action: manipulation;
|
|
6086
|
+
|
|
6087
|
+
// Allow user drag
|
|
6088
|
+
// -webkit-user-drag: element;
|
|
6089
|
+
|
|
6090
|
+
cursor: pointer;
|
|
6091
|
+
}
|
|
6092
|
+
|
|
6093
|
+
button:disabled {
|
|
6094
|
+
pointer-events: none;
|
|
6095
|
+
}
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
@mixin input-reset() {
|
|
6099
|
+
input,
|
|
6100
|
+
select,
|
|
6101
|
+
textarea {
|
|
6102
|
+
padding: 0;
|
|
6103
|
+
margin: 0;
|
|
6104
|
+
background-color: unset;
|
|
6105
|
+
border: unset;
|
|
6106
|
+
color: unset;
|
|
6107
|
+
font: unset;
|
|
6108
|
+
outline: unset;
|
|
6109
|
+
}
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6112
|
+
@mixin other-reset() {
|
|
6113
|
+
hr {
|
|
6114
|
+
block-size: 1px;
|
|
6115
|
+
margin: unset;
|
|
6116
|
+
padding: unset;
|
|
6117
|
+
border: unset;
|
|
6118
|
+
background-color: currentColor;
|
|
6119
|
+
}
|
|
6120
|
+
|
|
6121
|
+
fieldset,
|
|
6122
|
+
legend {
|
|
6123
|
+
padding: 0;
|
|
6124
|
+
margin: 0;
|
|
6125
|
+
}
|
|
6126
|
+
|
|
6127
|
+
img {
|
|
6128
|
+
display: block;
|
|
6129
|
+
}
|
|
6130
|
+
}
|
|
6131
|
+
|
|
6132
|
+
@mixin box-sizing() {
|
|
6133
|
+
*,
|
|
6134
|
+
::after,
|
|
6135
|
+
::before {
|
|
6136
|
+
box-sizing: border-box;
|
|
6137
|
+
}
|
|
6138
|
+
}
|
|
6139
|
+
|
|
6140
|
+
@mixin button-common-styles() {
|
|
6141
|
+
display: inline-grid;
|
|
6142
|
+
grid-auto-flow: column;
|
|
6143
|
+
grid-auto-columns: max-content;
|
|
6144
|
+
justify-content: center;
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6147
|
+
@mixin label-common-styles() {
|
|
6148
|
+
display: inline-grid;
|
|
6149
|
+
grid-auto-flow: column;
|
|
6150
|
+
grid-auto-columns: max-content;
|
|
6151
|
+
grid-template-rows: auto; // Necessary to avoid creating additional rows and then adding additional gap at the bottom of the label
|
|
6152
|
+
align-items: center;
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
@mixin document-common-styles() {
|
|
6156
|
+
display: grid;
|
|
6157
|
+
grid-template-rows: 1fr;
|
|
6158
|
+
min-block-size: 100dvh;
|
|
6159
|
+
margin: 0;
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6163
|
+
// Icons | Mask & Background
|
|
6164
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6165
|
+
|
|
6166
|
+
// Icon mask styles
|
|
6167
|
+
@mixin icon-mask-common-styles(
|
|
6168
|
+
$inline-size: var(--icon-size),
|
|
6169
|
+
$block-size: var(--icon-size),
|
|
6170
|
+
$mask-size: var(--icon-mask-size)
|
|
6171
|
+
) {
|
|
6172
|
+
content: "";
|
|
6173
|
+
display: block;
|
|
6174
|
+
inline-size: $inline-size;
|
|
6175
|
+
block-size: $block-size;
|
|
6176
|
+
-webkit-mask: no-repeat center / $mask-size var(--icon-path);
|
|
6177
|
+
background-color: currentColor;
|
|
6178
|
+
}
|
|
6179
|
+
|
|
6180
|
+
// Icon background styles
|
|
6181
|
+
@mixin icon-background-common-styles(
|
|
6182
|
+
$inline-size: var(--icon-size),
|
|
6183
|
+
$block-size: var(--icon-size),
|
|
6184
|
+
$background-size: var(--icon-background-size)
|
|
6185
|
+
) {
|
|
6186
|
+
content: "";
|
|
6187
|
+
display: block;
|
|
6188
|
+
inline-size: $inline-size;
|
|
6189
|
+
block-size: $block-size;
|
|
6190
|
+
background: no-repeat center / $background-size var(--icon-path);
|
|
6191
|
+
}
|
|
6192
|
+
|
|
6193
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6194
|
+
// Icons | Gap
|
|
6195
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6196
|
+
|
|
6197
|
+
@mixin icon-and-text-styles($gap) {
|
|
6198
|
+
display: inline-grid;
|
|
6199
|
+
grid-auto-flow: column;
|
|
6200
|
+
grid-auto-columns: max-content;
|
|
6201
|
+
gap: $gap;
|
|
6202
|
+
}
|
|
6203
|
+
|
|
6204
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6205
|
+
// Ellipsis
|
|
6206
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
6207
|
+
|
|
6208
|
+
@mixin ellipsis() {
|
|
6209
|
+
display: block;
|
|
6210
|
+
overflow: hidden;
|
|
6211
|
+
text-overflow: ellipsis;
|
|
6212
|
+
white-space: nowrap;
|
|
6213
|
+
}
|
|
6214
|
+
%ellipsis {
|
|
6215
|
+
@include ellipsis();
|
|
6216
|
+
}
|
|
6217
|
+
|
|
6218
|
+
|
|
6219
|
+
// ----------------------
|
|
6220
|
+
// Focus
|
|
6221
|
+
// ----------------------
|
|
6222
|
+
@mixin focus-outline() {
|
|
6223
|
+
outline: var(--focus__outline-width) var(--focus__outline-style)
|
|
6224
|
+
var(--focus__outline-color);
|
|
6225
|
+
outline-offset: var(--focus__outline-offset);
|
|
6226
|
+
}
|
|
6227
|
+
@mixin focus-border() {
|
|
6228
|
+
border-color: var(--borders-un-border-color__focused);
|
|
6229
|
+
}
|
|
6230
|
+
|
|
6231
|
+
// ----------------------
|
|
6232
|
+
// Scrollbar Styles
|
|
6233
|
+
// ----------------------
|
|
6234
|
+
@mixin scrollbar-styles() {
|
|
6235
|
+
scrollbar-width: thin;
|
|
6236
|
+
scrollbar-color: var(--scrollbar-thumb__bg-color)
|
|
6237
|
+
var(--scrollbar-track__bg-color);
|
|
6238
|
+
|
|
6239
|
+
//scrollbar
|
|
6240
|
+
&::-webkit-scrollbar {
|
|
6241
|
+
width: var(--scrollbar__size);
|
|
6242
|
+
height: var(--scrollbar__size);
|
|
6243
|
+
}
|
|
6244
|
+
|
|
6245
|
+
// track
|
|
6246
|
+
&::-webkit-scrollbar-track {
|
|
6247
|
+
background-color: var(--scrollbar-track__bg-color);
|
|
6248
|
+
border-radius: var(--scrollbar-track__border-radius);
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
// thumb
|
|
6252
|
+
&::-webkit-scrollbar-thumb {
|
|
6253
|
+
background-color: var(--scrollbar-thumb__bg-color);
|
|
6254
|
+
border-radius: var(--scrollbar-thumb__border-radius);
|
|
6255
|
+
}
|
|
6256
|
+
|
|
6257
|
+
// corner
|
|
6258
|
+
&::-webkit-scrollbar-corner {
|
|
6259
|
+
background: var(--scrollbar-corner__bg);
|
|
6260
|
+
}
|
|
6261
|
+
}
|
|
6262
|
+
|
|
6263
|
+
// ----------------------
|
|
6264
|
+
// Scrollbar Components
|
|
6265
|
+
// ----------------------
|
|
6266
|
+
@mixin scrollbar-components() {
|
|
6267
|
+
:host(.ch-scrollable),
|
|
6268
|
+
.ch-scrollable,
|
|
6269
|
+
.scrollable {
|
|
6270
|
+
@include scrollbar-styles();
|
|
6271
|
+
}
|
|
6272
|
+
}
|
|
6273
|
+
|
|
6274
|
+
// ----------------------
|
|
6275
|
+
// Control
|
|
6276
|
+
// ----------------------
|
|
6277
|
+
|
|
6278
|
+
// Colors
|
|
6279
|
+
@mixin control-colors-enabled() {
|
|
6280
|
+
background-color: var(--control__bg-color);
|
|
6281
|
+
color: var(--control__color);
|
|
6282
|
+
--ch-placeholder-color: var(--control-placeholder__color);
|
|
6283
|
+
// enabled border color is defined in control-border()
|
|
6284
|
+
}
|
|
6285
|
+
@mixin control-colors-hover() {
|
|
6286
|
+
--control__border-color: var(--control__border-color--hover);
|
|
6287
|
+
}
|
|
6288
|
+
@mixin control-colors-disabled() {
|
|
6289
|
+
--control__bg-color: var(--control__background-color--disabled);
|
|
6290
|
+
--control__border-color: var(--control__border-color--disabled);
|
|
6291
|
+
--control__color: var(--control__color--disabled);
|
|
6292
|
+
--ch-placeholder-color: var(--control-placeholder__color--disabled);
|
|
6293
|
+
}
|
|
6294
|
+
@mixin control-colors-error() {
|
|
6295
|
+
--control__border-color: var(--control__border-color--error);
|
|
6296
|
+
}
|
|
6297
|
+
// Border
|
|
6298
|
+
@mixin control-border() {
|
|
6299
|
+
border-width: var(--control__border-width);
|
|
6300
|
+
border-style: var(--control__border-style);
|
|
6301
|
+
border-color: var(--control__border-color);
|
|
6302
|
+
border-radius: var(--control__border-radius);
|
|
6303
|
+
}
|
|
6304
|
+
@mixin control-remove-border() {
|
|
6305
|
+
// This resets the border applied
|
|
6306
|
+
// (for controls inside the property grid)
|
|
6307
|
+
--control__border-width: 0;
|
|
6308
|
+
--control__border-color: transparent;
|
|
6309
|
+
--control__border-radius: 0;
|
|
6310
|
+
}
|
|
6311
|
+
// Font
|
|
6312
|
+
@mixin control-font-weight-regular() {
|
|
6313
|
+
font-weight: var(--control__font-weight--regular);
|
|
6314
|
+
}
|
|
6315
|
+
@mixin control-font-weight-semi-bold() {
|
|
6316
|
+
font-weight: var(--control__font-weight--semi-bold);
|
|
6317
|
+
}
|
|
6318
|
+
// Font Size
|
|
6319
|
+
@mixin control-font-size-small() {
|
|
6320
|
+
font-size: var(--control__font-size--small);
|
|
6321
|
+
line-height: var(--control__line-height);
|
|
6322
|
+
}
|
|
6323
|
+
@mixin control-font-size-regular() {
|
|
6324
|
+
font-size: var(--control__font-size--regular);
|
|
6325
|
+
line-height: var(--control__line-height);
|
|
6326
|
+
}
|
|
6327
|
+
// Height
|
|
6328
|
+
@mixin control-height-regular() {
|
|
6329
|
+
block-size: var(--control__height);
|
|
6330
|
+
// to be removed (TODO)
|
|
6331
|
+
// fixed block-size comes with some issues.
|
|
6332
|
+
}
|
|
6333
|
+
// Padding
|
|
6334
|
+
@mixin control-padding-inline() {
|
|
6335
|
+
padding-inline: var(--control__padding-inline);
|
|
6336
|
+
}
|
|
6337
|
+
@mixin control-padding-block() {
|
|
6338
|
+
padding-block: var(--control__padding-block);
|
|
6339
|
+
}
|
|
6340
|
+
@mixin control-padding-inline-block() {
|
|
6341
|
+
padding-block: var(--control__padding-block);
|
|
6342
|
+
padding-inline: var(--control__padding-inline);
|
|
6343
|
+
}
|
|
6344
|
+
// Placeholder
|
|
6345
|
+
@mixin control-placeholder() {
|
|
6346
|
+
color: var(--control-placeholder__color);
|
|
6347
|
+
font-style: var(--control-placeholder__font-style);
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
// ----------------------
|
|
6351
|
+
// Control Tiny
|
|
6352
|
+
// ----------------------
|
|
6353
|
+
|
|
6354
|
+
@mixin control-tiny-size() {
|
|
6355
|
+
block-size: var(--control-tiny__size);
|
|
6356
|
+
inline-size: var(--control-tiny__size);
|
|
6357
|
+
}
|
|
6358
|
+
@mixin control-tiny-border() {
|
|
6359
|
+
border-width: var(--control__border-width);
|
|
6360
|
+
border-style: var(--control__border-style);
|
|
6361
|
+
border-color: var(--control__border-color);
|
|
6362
|
+
border-radius: var(--control__border-radius);
|
|
6363
|
+
}
|
|
6364
|
+
@mixin control-tiny-border-hover() {
|
|
6365
|
+
--control__border-color: var(--control__border-color--hover);
|
|
6366
|
+
}
|
|
6367
|
+
@mixin control-tiny-border-disabled() {
|
|
6368
|
+
--control__border-color: var(--control__border-color--disabled);
|
|
6369
|
+
}
|
|
6370
|
+
@mixin control-tiny-border-error() {
|
|
6371
|
+
--control__border-color: var(--control__border-color--error);
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
// ----------------------
|
|
6375
|
+
// Items Container
|
|
6376
|
+
// ----------------------
|
|
6377
|
+
|
|
6378
|
+
@mixin items-container-border() {
|
|
6379
|
+
border-style: var(--items-container__border-style);
|
|
6380
|
+
border-width: var(--items-container__border-width);
|
|
6381
|
+
}
|
|
6382
|
+
@mixin items-container-border-radius() {
|
|
6383
|
+
border-radius: var(--items-container__border-radius);
|
|
6384
|
+
}
|
|
6385
|
+
@mixin items-container-colors() {
|
|
6386
|
+
background-color: var(--items-container__bg-color);
|
|
6387
|
+
border-color: var(--items-container__border-color);
|
|
6388
|
+
}
|
|
6389
|
+
@mixin items-container-padding() {
|
|
6390
|
+
padding-block: var(--items-container__padding-block);
|
|
6391
|
+
padding-inline: var(--items-container__padding-inline);
|
|
6392
|
+
}
|
|
6393
|
+
@mixin items-container-dropdown() {
|
|
6394
|
+
box-shadow: var(--items-container__box-shadow);
|
|
6395
|
+
}
|
|
6396
|
+
@mixin items-container-gap() {
|
|
6397
|
+
gap: var(--items-container__gap);
|
|
6398
|
+
}
|
|
6399
|
+
@mixin items-container-gap-small() {
|
|
6400
|
+
gap: var(--items-container__gap--small);
|
|
6401
|
+
}
|
|
6402
|
+
@mixin items-container-max-height() {
|
|
6403
|
+
max-block-size: var(--items-container__max-block-size);
|
|
6404
|
+
}
|
|
6405
|
+
@mixin items-container-separator() {
|
|
6406
|
+
block-size: var(--items-container-separator__block-size);
|
|
6407
|
+
inline-size: var(--items-container-separator__inline-size);
|
|
6408
|
+
background-color: var(--items-container-separator__bg-color);
|
|
6409
|
+
}
|
|
6410
|
+
|
|
6411
|
+
// ------------------------------------
|
|
6412
|
+
// Single Item (Every item except grid)
|
|
6413
|
+
// ------------------------------------
|
|
6414
|
+
|
|
6415
|
+
@mixin item-colors-enabled() {
|
|
6416
|
+
background-color: var(--item__bg-color);
|
|
6417
|
+
border-color: var(--item__border-color);
|
|
6418
|
+
color: var(--item__color);
|
|
6419
|
+
}
|
|
6420
|
+
@mixin item-colors-hover() {
|
|
6421
|
+
--item__bg-color: var(--item__bg-color--hover);
|
|
6422
|
+
--item__border-color: var(--item__border-color--hover);
|
|
6423
|
+
--item__color: var(--item__color--hover);
|
|
6424
|
+
}
|
|
6425
|
+
@mixin item-colors-selected() {
|
|
6426
|
+
--item__bg-color: var(--item__bg-color--selected);
|
|
6427
|
+
--item__border-color: var(--item__border-color--selected);
|
|
6428
|
+
--item__color: var(--item__color--selected);
|
|
6429
|
+
}
|
|
6430
|
+
@mixin item-colors-selected-hover() {
|
|
6431
|
+
--item__bg-color: var(--item__bg-color--selected-hover);
|
|
6432
|
+
--item__border-color: var(--item__border-color--selected-hover);
|
|
6433
|
+
--item__color: var(--item__color--selected-hover);
|
|
6434
|
+
}
|
|
6435
|
+
@mixin item-colors-disabled() {
|
|
6436
|
+
--item__bg-color: var(--item__bg-color--disabled);
|
|
6437
|
+
--item__border-color: var(--item__border-color--disabled);
|
|
6438
|
+
--item__color: var(--item__color--disabled);
|
|
6439
|
+
}
|
|
6440
|
+
@mixin item-border() {
|
|
6441
|
+
border: var(--item__border-width) var(--item__border-style)
|
|
6442
|
+
var(--item__border-color);
|
|
6443
|
+
}
|
|
6444
|
+
@mixin item-border-block-end() {
|
|
6445
|
+
border-block-end: var(--item__border-width) var(--item__border-style)
|
|
6446
|
+
var(--item__border-color);
|
|
6447
|
+
}
|
|
6448
|
+
@mixin item-border-radius() {
|
|
6449
|
+
border-radius: var(--item__border-radius);
|
|
6450
|
+
}
|
|
6451
|
+
@mixin item-gap() {
|
|
6452
|
+
gap: var(--item__gap--regular);
|
|
6453
|
+
}
|
|
6454
|
+
@mixin item-column-gap() {
|
|
6455
|
+
column-gap: var(--item__gap--regular);
|
|
6456
|
+
}
|
|
6457
|
+
@mixin item-padding() {
|
|
6458
|
+
padding-block: var(--item__padding-block);
|
|
6459
|
+
padding-inline: var(--item__padding-inline);
|
|
6460
|
+
}
|
|
6461
|
+
@mixin item-padding-block() {
|
|
6462
|
+
padding-block: var(--item__padding-inline);
|
|
6463
|
+
}
|
|
6464
|
+
@mixin item-padding-inline() {
|
|
6465
|
+
padding-inline: var(--item__padding-inline);
|
|
6466
|
+
}
|
|
6467
|
+
@mixin item-height-regular() {
|
|
6468
|
+
block-size: var(--item__height--regular);
|
|
6469
|
+
}
|
|
6470
|
+
@mixin item-height-large() {
|
|
6471
|
+
block-size: var(--item__height--large);
|
|
6472
|
+
}
|
|
6473
|
+
@mixin item-font() {
|
|
6474
|
+
line-height: var(--item__line-height);
|
|
6475
|
+
font-size: var(--item__font-size);
|
|
6476
|
+
font-weight: var(--item__font-weight);
|
|
6477
|
+
}
|
|
6478
|
+
@mixin item-font-size-small() {
|
|
6479
|
+
--item__font-size: var(--item__font-size--small);
|
|
6480
|
+
}
|
|
6481
|
+
@mixin item-font-header() {
|
|
6482
|
+
// item header font-size and line-height has to be the same as
|
|
6483
|
+
// item font-size and line-height in order for the computed height
|
|
6484
|
+
// to be the same.
|
|
6485
|
+
line-height: var(--item__line-height);
|
|
6486
|
+
font-size: var(--item__font-size);
|
|
6487
|
+
font-weight: var(--item-header__font-weight);
|
|
6488
|
+
}
|
|
6489
|
+
|
|
6490
|
+
// ---------------------------------
|
|
6491
|
+
// Grid Item
|
|
6492
|
+
// ---------------------------------
|
|
6493
|
+
|
|
6494
|
+
// Row
|
|
6495
|
+
@mixin grid-row-colors-enabled() {
|
|
6496
|
+
background-color: var(--item__bg-color);
|
|
6497
|
+
color: var(--item__color);
|
|
6498
|
+
}
|
|
6499
|
+
@mixin grid-row-colors-highlighted() {
|
|
6500
|
+
--item__bg-color: var(--item__bg-color--hover);
|
|
6501
|
+
--item__color: var(--item__color--hover);
|
|
6502
|
+
}
|
|
6503
|
+
@mixin grid-row-colors-selected() {
|
|
6504
|
+
--item__bg-color: var(--item__bg-color--selected);
|
|
6505
|
+
--item__color: var(--item__color--selected);
|
|
6506
|
+
}
|
|
6507
|
+
@mixin grid-row-dragging() {
|
|
6508
|
+
box-shadow: var(--mer-box-shadow--01);
|
|
6509
|
+
}
|
|
6510
|
+
@mixin grid-cell-border-inline-block() {
|
|
6511
|
+
// this mixin uses the box-shadow property, but it looks
|
|
6512
|
+
// as a border to the user.
|
|
6513
|
+
box-shadow: var(--grid-cell__box-shadow-inline-block);
|
|
6514
|
+
}
|
|
6515
|
+
@mixin grid-cell-padding-inline() {
|
|
6516
|
+
padding-inline: var(--grid-cell__padding-block);
|
|
6517
|
+
}
|
|
6518
|
+
@mixin grid-cell-padding-block() {
|
|
6519
|
+
padding-block: var(--grid-cell__padding-block);
|
|
6520
|
+
}
|
|
6521
|
+
@mixin grid-cell-padding-inline-block() {
|
|
6522
|
+
padding-block: var(--grid-cell__padding-block);
|
|
6523
|
+
padding-inline: var(--grid-cell__padding-inline);
|
|
6524
|
+
}
|
|
6525
|
+
@mixin grid-cell-remove-padding() {
|
|
6526
|
+
// we should redefine '--grid-cell__padding-inline' here because when a control
|
|
6527
|
+
// is inside a a tabular-grid-cell the cell padding-inline value is required to
|
|
6528
|
+
// be applied on the control padding-inline.
|
|
6529
|
+
padding-block: 0;
|
|
6530
|
+
padding-inline: 0;
|
|
6531
|
+
}
|
|
6532
|
+
@mixin grid-rowset-legend-padding-block() {
|
|
6533
|
+
padding-block-start: var(--mer-spacing--2xs);
|
|
6534
|
+
padding-block-end: var(--mer-spacing--2xs);
|
|
6535
|
+
}
|
|
6536
|
+
@mixin grid-rowset-legend-colors-enabled() {
|
|
6537
|
+
--grid-rowset-legend__bg-color: var(--mer-surface__elevation--02);
|
|
6538
|
+
background-color: var(--grid-rowset-legend__bg-color);
|
|
6539
|
+
}
|
|
6540
|
+
@mixin grid-rowset-legend-colors-hover() {
|
|
6541
|
+
--grid-rowset-legend__bg-color: var(--mer-surface__elevation--03);
|
|
6542
|
+
}
|
|
6543
|
+
@mixin grid-rowset-legend-colors-active() {
|
|
6544
|
+
--grid-rowset-legend__bg-color: var(--mer-surface__elevation--02);
|
|
6545
|
+
}
|
|
6546
|
+
|
|
6547
|
+
// ----------------------
|
|
6548
|
+
// Tab Caption (Button)
|
|
6549
|
+
// ----------------------
|
|
6550
|
+
@mixin tab-button-border-block() {
|
|
6551
|
+
border-block: var(--tab-caption__border-width)
|
|
6552
|
+
var(--tab-caption__border-style) var(--tab-caption__border-color);
|
|
6553
|
+
}
|
|
6554
|
+
@mixin tab-button-border-block-end() {
|
|
6555
|
+
border-block-end: var(--tab-caption__border-width)
|
|
6556
|
+
var(--tab-caption__border-style) var(--tab-caption__border-color);
|
|
6557
|
+
}
|
|
6558
|
+
@mixin tab-button-border-block-start() {
|
|
6559
|
+
border-block-start: var(--tab-caption__border-width)
|
|
6560
|
+
var(--tab-caption__border-style) var(--tab-caption__border-color);
|
|
6561
|
+
}
|
|
6562
|
+
@mixin tab-button-font() {
|
|
6563
|
+
font-size: var(--tab-caption__font-size);
|
|
6564
|
+
font-weight: var(--tab-caption__font-weight);
|
|
6565
|
+
}
|
|
6566
|
+
@mixin tab-button-gap() {
|
|
6567
|
+
gap: var(--tab-caption__gap);
|
|
6568
|
+
}
|
|
6569
|
+
@mixin tab-button-colors-enabled() {
|
|
6570
|
+
background-color: var(--tab-caption__bg-color);
|
|
6571
|
+
color: var(--tab-caption__color);
|
|
6572
|
+
border-color: var(--tab-caption__border-color);
|
|
6573
|
+
}
|
|
6574
|
+
@mixin tab-button-colors-hover() {
|
|
6575
|
+
--tab-caption__bg-color: var(--tab-caption__bg-color--hover);
|
|
6576
|
+
// color remains the same
|
|
6577
|
+
// border-color remains the same
|
|
6578
|
+
}
|
|
6579
|
+
@mixin tab-button-colors-disabled() {
|
|
6580
|
+
--tab-caption__bg-color: var(--tab-caption__bg-color--disabled);
|
|
6581
|
+
--tab-caption__color: var(--mer-text__primary--disabled);
|
|
6582
|
+
--tab-caption__border-color--selected-inline: var(
|
|
6583
|
+
--mer-border-color__primary--disabled
|
|
6584
|
+
);
|
|
6585
|
+
--tab-caption__border-color--selected-stack: var(
|
|
6586
|
+
--mer-surface__elevation--02
|
|
6587
|
+
);
|
|
6588
|
+
}
|
|
6589
|
+
@mixin tab-button-colors-selected-inline() {
|
|
6590
|
+
--tab-caption__bg-color: var(--tab-caption__bg-color--selected-inline);
|
|
6591
|
+
--tab-caption__color: var(--tab-caption__color--selected);
|
|
6592
|
+
--tab-caption__border-color: var(
|
|
6593
|
+
--tab-caption__border-color--selected-inline
|
|
6594
|
+
);
|
|
6595
|
+
}
|
|
6596
|
+
@mixin tab-button-colors-selected-stack() {
|
|
6597
|
+
--tab-caption__bg-color: var(--tab-caption__bg-color--selected-stack);
|
|
6598
|
+
--tab-caption__color: var(--tab-caption__color--selected);
|
|
6599
|
+
--tab-caption__border-color: var(--tab-caption__border-color--selected-stack);
|
|
6600
|
+
}
|
|
6601
|
+
@mixin tab-button-padding-inline() {
|
|
6602
|
+
padding-block: var(--tab-caption__padding-block);
|
|
6603
|
+
padding-inline: var(--tab-caption__padding-inline);
|
|
6604
|
+
}
|
|
6605
|
+
@mixin tab-button-padding-stack() {
|
|
6606
|
+
padding-block: var(--tab-caption__padding-block);
|
|
6607
|
+
padding-inline: var(--tab-caption__padding-inline);
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
// ----------------------
|
|
6611
|
+
// Label
|
|
6612
|
+
// ----------------------
|
|
6613
|
+
|
|
6614
|
+
@mixin label-font() {
|
|
6615
|
+
color: var(--label__color);
|
|
6616
|
+
font-weight: var(--label__font-weight);
|
|
6617
|
+
font-size: var(--label__font-size);
|
|
6618
|
+
line-height: var(--label__line-height);
|
|
6619
|
+
}
|
|
6620
|
+
@mixin label-gap-block() {
|
|
6621
|
+
gap: var(--label__gap--block);
|
|
6622
|
+
}
|
|
6623
|
+
@mixin label-gap-inline() {
|
|
6624
|
+
gap: var(--label__gap--inline);
|
|
6625
|
+
}
|
|
6626
|
+
@mixin label-color-hover() {
|
|
6627
|
+
--label__color: var(--label__color--hover);
|
|
6628
|
+
}
|
|
6629
|
+
@mixin label-color-disabled() {
|
|
6630
|
+
--label__color: var(--label__color--disabled);
|
|
6631
|
+
}
|
|
6632
|
+
|
|
6633
|
+
// ----------------------
|
|
6634
|
+
// Window
|
|
6635
|
+
// ----------------------
|
|
6636
|
+
|
|
6637
|
+
// TODO: This styles should better be applied on the ch-window ?
|
|
6638
|
+
%window-styles {
|
|
6639
|
+
border: var(--window__border);
|
|
6640
|
+
border-radius: var(--window__border-radius);
|
|
6641
|
+
padding: var(---window__padding);
|
|
6642
|
+
background-color: var(--window__bg-color);
|
|
6643
|
+
box-shadow: var(--mer-box-shadow--01);
|
|
6644
|
+
}
|
|
6645
|
+
|
|
6646
|
+
// ----------------------
|
|
6647
|
+
// Dropdown
|
|
6648
|
+
// ----------------------
|
|
6649
|
+
|
|
6650
|
+
@mixin dropdown-styles() {
|
|
6651
|
+
box-shadow: var(--mer-box-shadow--01);
|
|
6652
|
+
border-radius: var(--mer-border__radius--sm);
|
|
6653
|
+
}
|
|
6654
|
+
|
|
6655
|
+
// ----------------------
|
|
6656
|
+
// Pseudo Dialog Footer
|
|
6657
|
+
// ----------------------
|
|
6658
|
+
|
|
6659
|
+
@mixin control-footer-base() {
|
|
6660
|
+
--control-footer-justify-content: end;
|
|
6661
|
+
padding-block-start: var(--mer-spacing--xs);
|
|
6662
|
+
display: flex;
|
|
6663
|
+
justify-content: var(--control-footer-justify-content);
|
|
6664
|
+
align-items: center;
|
|
6665
|
+
}
|
|
6666
|
+
@mixin control-footer-border() {
|
|
6667
|
+
border-block-start: var(--mer-border__width--sm) solid
|
|
6668
|
+
var(--mer-border-color__on-elevation--01);
|
|
6669
|
+
}
|
|
6670
|
+
@mixin control-footer(
|
|
6671
|
+
$selector: ".control-footer",
|
|
6672
|
+
$with-border-selector: ".control-footer-with-border",
|
|
6673
|
+
$justify-start-selector: ".control-footer-start",
|
|
6674
|
+
$justify-center-selector: ".control-footer-center",
|
|
6675
|
+
$justify-space-between-selector: ".control-footer-space-between",
|
|
6676
|
+
$with-border: true
|
|
6677
|
+
) {
|
|
6678
|
+
#{$selector},
|
|
6679
|
+
#{$with-border-selector} {
|
|
6680
|
+
@include control-footer-base();
|
|
6681
|
+
}
|
|
6682
|
+
#{$justify-start-selector} {
|
|
6683
|
+
--control-footer-justify-content: start;
|
|
6684
|
+
}
|
|
6685
|
+
#{$justify-center-selector} {
|
|
6686
|
+
--control-footer-justify-content: center;
|
|
6687
|
+
}
|
|
6688
|
+
#{$justify-space-between-selector} {
|
|
6689
|
+
--control-footer-justify-content: space-between;
|
|
6690
|
+
}
|
|
6691
|
+
@if $with-border {
|
|
6692
|
+
#{$with-border-selector} {
|
|
6693
|
+
@include control-footer-border();
|
|
6694
|
+
}
|
|
6695
|
+
}
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
// ----------------------
|
|
6699
|
+
// Pseudo Dialog Header
|
|
6700
|
+
// ----------------------
|
|
6701
|
+
|
|
6702
|
+
@mixin control-header-base() {
|
|
6703
|
+
padding-block-end: var(--mer-spacing--md);
|
|
6704
|
+
}
|
|
6705
|
+
@mixin control-header-border() {
|
|
6706
|
+
border-block-end: var(--mer-border__width--sm) solid
|
|
6707
|
+
var(--mer-border-color__on-elevation--01);
|
|
6708
|
+
}
|
|
6709
|
+
@mixin control-header(
|
|
6710
|
+
$selector: ".control-header",
|
|
6711
|
+
$with-border-selector: ".control-header-with-border",
|
|
6712
|
+
$with-border: true
|
|
6713
|
+
) {
|
|
6714
|
+
#{$selector},
|
|
6715
|
+
#{$with-border-selector} {
|
|
6716
|
+
@include control-header-base();
|
|
6717
|
+
}
|
|
6718
|
+
@if $with-border {
|
|
6719
|
+
#{$with-border-selector} {
|
|
6720
|
+
@include control-header-border();
|
|
6721
|
+
}
|
|
6722
|
+
}
|
|
6723
|
+
}
|
|
6724
|
+
|
|
6725
|
+
// ----------------------
|
|
6726
|
+
// Body Spacing
|
|
6727
|
+
// ----------------------
|
|
6728
|
+
|
|
6729
|
+
// This custom properties define the block and inline spacing of containers.
|
|
6730
|
+
// i.e.: dialog, layout, etc..
|
|
6731
|
+
|
|
6732
|
+
%spacing-body {
|
|
6733
|
+
padding-block: var(--spacing-body-block-start) var(--spacing-body-block-end);
|
|
6734
|
+
padding-inline: var(--spacing-body-inline-start)
|
|
6735
|
+
var(--spacing-body-inline-end);
|
|
6736
|
+
}
|
|
6737
|
+
|
|
6738
|
+
%spacing-body-block {
|
|
6739
|
+
padding-block: var(--spacing-body-block-start) var(--spacing-body-block-end);
|
|
6740
|
+
}
|
|
6741
|
+
%spacing-body-block-start {
|
|
6742
|
+
padding-block-start: var(--spacing-body-block-start);
|
|
6743
|
+
}
|
|
6744
|
+
%spacing-body-block-end {
|
|
6745
|
+
padding-block-end: var(--spacing-body-block-end);
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6748
|
+
%spacing-body-inline {
|
|
6749
|
+
padding-inline: var(--spacing-body-inline-start)
|
|
6750
|
+
var(--spacing-body-inline-end);
|
|
6751
|
+
}
|
|
6752
|
+
%spacing-body-inline-start {
|
|
6753
|
+
padding-inline-start: var(--spacing-body-inline-start);
|
|
6754
|
+
}
|
|
6755
|
+
%spacing-body-inline-end {
|
|
6756
|
+
padding-inline-end: var(--spacing-body-inline-end);
|
|
6757
|
+
}
|
|
6758
|
+
|
|
6759
|
+
@mixin spacing-body(
|
|
6760
|
+
$body-selector: ".spacing-body",
|
|
6761
|
+
$body-block-selector: ".spacing-body-block",
|
|
6762
|
+
$body-block-start-selector: ".spacing-body-block-start",
|
|
6763
|
+
$body-block-end-selector: ".spacing-body-block-end",
|
|
6764
|
+
$body-inline-selector: ".spacing-body-inline",
|
|
6765
|
+
$body-inline-start-selector: ".spacing-body-inline-start",
|
|
6766
|
+
$body-inline-end-selector: ".spacing-body-inline-end"
|
|
6767
|
+
) {
|
|
6768
|
+
#{$body-selector} {
|
|
6769
|
+
@extend %spacing-body;
|
|
6770
|
+
}
|
|
6771
|
+
// block
|
|
6772
|
+
#{$body-block-selector} {
|
|
6773
|
+
@extend %spacing-body-block;
|
|
6774
|
+
}
|
|
6775
|
+
#{$body-block-start-selector} {
|
|
6776
|
+
@extend %spacing-body-block-start;
|
|
6777
|
+
}
|
|
6778
|
+
#{$body-block-end-selector} {
|
|
6779
|
+
@extend %spacing-body-block-end;
|
|
6780
|
+
}
|
|
6781
|
+
// inline
|
|
6782
|
+
#{$body-inline-selector} {
|
|
6783
|
+
@extend %spacing-body-inline;
|
|
6784
|
+
}
|
|
6785
|
+
#{$body-inline-start-selector} {
|
|
6786
|
+
@extend %spacing-body-inline-start;
|
|
6787
|
+
}
|
|
6788
|
+
#{$body-inline-end-selector} {
|
|
6789
|
+
@extend %spacing-body-inline-end;
|
|
6790
|
+
}
|
|
6791
|
+
}
|
|
6792
|
+
|
|
6793
|
+
// ----------------------
|
|
6794
|
+
// Spinner
|
|
6795
|
+
// ----------------------
|
|
6796
|
+
|
|
6797
|
+
@mixin spinner($size) {
|
|
6798
|
+
width: $size;
|
|
6799
|
+
height: $size;
|
|
6800
|
+
border: calc($size / 5) solid var(--mer-color__tinted-blue--50);
|
|
6801
|
+
border-top: calc($size / 5) solid var(--mer-color__primary-blue--300);
|
|
6802
|
+
border-radius: 50%;
|
|
6803
|
+
animation: spin var(--mer-timing--regular) linear infinite;
|
|
6804
|
+
|
|
6805
|
+
@keyframes spin {
|
|
6806
|
+
0% {
|
|
6807
|
+
transform: rotate(0deg);
|
|
6808
|
+
}
|
|
6809
|
+
100% {
|
|
6810
|
+
transform: rotate(360deg);
|
|
6811
|
+
}
|
|
6812
|
+
}
|
|
6813
|
+
}
|
|
6814
|
+
|
|
6815
|
+
|
|
6816
|
+
%pills__container {
|
|
6817
|
+
--pills-container__display: flex;
|
|
6818
|
+
flex-wrap: wrap;
|
|
6819
|
+
display: var(--pills-container__display);
|
|
6820
|
+
gap: var(--mer-spacing--md);
|
|
6821
|
+
}
|
|
6822
|
+
|
|
6823
|
+
%pill {
|
|
6824
|
+
// chameleon custom vars (do not edit the --ch-* vars names)
|
|
6825
|
+
--ch-pills-separation-y: var(--mer-spacing--3xs);
|
|
6826
|
+
--ch-pills-item-gap: var(--mer-spacing--xs);
|
|
6827
|
+
--ch-pills-item__image-size: var(--mer-spacing--md);
|
|
6828
|
+
--ch-pills-item__background-image-size: 100%;
|
|
6829
|
+
--ch-pills-group__expandable-button-size: var(--mer-spacing--md);
|
|
6830
|
+
--ch-pills-group__expandable-button-image-size: var(--mer-spacing--sm);
|
|
6831
|
+
|
|
6832
|
+
// "control" tokens overrides
|
|
6833
|
+
--control__border-radius: var(--mer-spacing--md);
|
|
6834
|
+
--control__padding-inline: var(--mer-spacing--sm);
|
|
6835
|
+
|
|
6836
|
+
@include control-border();
|
|
6837
|
+
@include control-colors-enabled();
|
|
6838
|
+
@include control-font-weight-semi-bold();
|
|
6839
|
+
@include control-font-size-regular();
|
|
6840
|
+
@include control-padding-inline-block();
|
|
6841
|
+
|
|
6842
|
+
// states
|
|
6843
|
+
&--enabled {
|
|
6844
|
+
--control__border-color: var(--mer-border-color__dim);
|
|
6845
|
+
--control__bg-color: transparent;
|
|
6846
|
+
--control__color: var(--mer-text__neutral);
|
|
6847
|
+
}
|
|
6848
|
+
&--processing {
|
|
6849
|
+
--control__border-color: var(--mer-color__tinted-blue--50);
|
|
6850
|
+
--control__bg-color: var(--mer-color__tinted-blue--8);
|
|
6851
|
+
--control__color: var(--mer-accent__primary);
|
|
5896
6852
|
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
6853
|
+
// custom processing icon
|
|
6854
|
+
$size: 12px;
|
|
6855
|
+
--status-circle-color: transparent;
|
|
6856
|
+
--status-circle-size: $size;
|
|
6857
|
+
--status-circle-inset-inline-start: 14px;
|
|
5902
6858
|
|
|
5903
|
-
|
|
6859
|
+
&::before {
|
|
6860
|
+
// override left
|
|
6861
|
+
inset-inline-start: 14px;
|
|
6862
|
+
@include spinner($size);
|
|
6863
|
+
}
|
|
6864
|
+
}
|
|
6865
|
+
&--success {
|
|
6866
|
+
--control__border-color: var(--mer-color__tinted-green--60);
|
|
6867
|
+
--control__bg-color: var(--mer-color__tinted-green--5);
|
|
6868
|
+
--control__color: var(--mer-text__success);
|
|
6869
|
+
}
|
|
6870
|
+
&--warning {
|
|
6871
|
+
--control__border-color: var(--mer-color__tinted-yellow--60);
|
|
6872
|
+
--control__bg-color: var(--mer-color__tinted-yellow--5);
|
|
6873
|
+
--control__color: var(--mer-text__warning);
|
|
6874
|
+
}
|
|
6875
|
+
&--error {
|
|
6876
|
+
--control__border-color: var(--mer-color__tinted-red--60);
|
|
6877
|
+
--control__bg-color: var(--mer-color__tinted-red--5);
|
|
6878
|
+
--control__color: var(--mer-text__error);
|
|
6879
|
+
}
|
|
5904
6880
|
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
padding-inline-end: var(--mer-spacing--xs);
|
|
6881
|
+
&--disabled {
|
|
6882
|
+
@include control-colors-disabled();
|
|
5908
6883
|
}
|
|
5909
6884
|
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
padding-inline: var(--mer-spacing--xs);
|
|
5913
|
-
background-color: var(--mer-color__neutral-gray--800);
|
|
5914
|
-
border-radius: var(--mer-border__radius--sm);
|
|
5915
|
-
color: var(--mer-color__neutral-gray--300);
|
|
5916
|
-
font-size: var(--mer-font__size--xs);
|
|
6885
|
+
&:focus {
|
|
6886
|
+
@include focus-outline();
|
|
5917
6887
|
}
|
|
5918
6888
|
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
outline: 1px solid;
|
|
5922
|
-
outline-offset: -1px;
|
|
5923
|
-
}
|
|
6889
|
+
&:hover {
|
|
6890
|
+
@include control-colors-hover();
|
|
5924
6891
|
}
|
|
5925
6892
|
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
6893
|
+
// items
|
|
6894
|
+
&__item {
|
|
6895
|
+
@include item-colors-enabled();
|
|
6896
|
+
@include item-border();
|
|
6897
|
+
@include item-border-radius();
|
|
6898
|
+
@include item-font();
|
|
6899
|
+
@include item-padding();
|
|
6900
|
+
|
|
6901
|
+
&--with-icon {
|
|
6902
|
+
padding-inline-start: var(--mer-spacing--xl);
|
|
6903
|
+
background-repeat: no-repeat;
|
|
6904
|
+
background-size: var(--mer-icon__box--md);
|
|
6905
|
+
background-position: 8px center;
|
|
5929
6906
|
}
|
|
5930
|
-
}
|
|
5931
6907
|
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
6908
|
+
&--enabled {
|
|
6909
|
+
background-image: var(--icon__states_pill-filled_highlighted--enabled);
|
|
6910
|
+
}
|
|
6911
|
+
&--processing {
|
|
6912
|
+
background-image: var(--icon__states_pill-filled_primary--enabled);
|
|
6913
|
+
}
|
|
6914
|
+
&--success {
|
|
6915
|
+
background-image: var(--icon__states_pill-filled_success--enabled);
|
|
6916
|
+
}
|
|
6917
|
+
&--warning {
|
|
6918
|
+
background-image: var(--icon__states_pill-filled_warning--enabled);
|
|
6919
|
+
}
|
|
6920
|
+
&--error {
|
|
6921
|
+
background-image: var(--icon__states_pill-filled_error--enabled);
|
|
5935
6922
|
}
|
|
5936
6923
|
|
|
5937
|
-
&--
|
|
5938
|
-
|
|
6924
|
+
&--selected {
|
|
6925
|
+
@include item-colors-selected();
|
|
5939
6926
|
}
|
|
5940
6927
|
}
|
|
5941
6928
|
}
|
|
5942
6929
|
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
6930
|
+
%icon-styles {
|
|
6931
|
+
// custom icon styles
|
|
6932
|
+
--status-circle-color: var(--control__color);
|
|
6933
|
+
--status-circle-size: 6px;
|
|
6934
|
+
--status-circle-inset-inline-start: 17px;
|
|
6935
|
+
|
|
6936
|
+
position: relative;
|
|
6937
|
+
padding-inline-start: 36px;
|
|
6938
|
+
&::before {
|
|
6939
|
+
content: "";
|
|
6940
|
+
position: absolute;
|
|
6941
|
+
background-color: var(--status-circle-color);
|
|
6942
|
+
inset-inline-start: var(--status-circle-inset-inline-start);
|
|
6943
|
+
block-size: var(--status-circle-size);
|
|
6944
|
+
inline-size: var(--status-circle-size);
|
|
6945
|
+
display: inline-block;
|
|
6946
|
+
border-radius: 50%;
|
|
6947
|
+
}
|
|
6948
|
+
}
|
|
6949
|
+
|
|
6950
|
+
/// @group Pills
|
|
6951
|
+
/// @param {String} $pills-container-selector [".pills-container"]
|
|
6952
|
+
/// @param {String} $pill-selector [".pill"]
|
|
6953
|
+
/// @param {String} $pill--enabled-selector [".pill[part='enabled']"]
|
|
6954
|
+
/// @param {String} $pill--processing-selector [".pill[part='processing']"]
|
|
6955
|
+
/// @param {String} $pill--success-selector [".pill[part='success']"]
|
|
6956
|
+
/// @param {String} $pill--error-selector [".pill[part='error']"]
|
|
6957
|
+
/// @param {String} $pill--warning-selector [".pill[part='warning']"]
|
|
6958
|
+
/// @param {String} $pills__placeholder-selector [".pills::part(placeholder)"]
|
|
6959
|
+
/// @param {String} $window-selector [".pill::part(window)"]
|
|
6960
|
+
/// @param {String} $item-selector [".pill::part(item)"]
|
|
6961
|
+
/// @param {String} $item--enabled-selector [".pill::part(item enabled)"]
|
|
6962
|
+
/// @param {String} $item--processing-selector [".pill::part(item processing)"]
|
|
6963
|
+
/// @param {String} $item--success-selector [".pill::part(item success)"]
|
|
6964
|
+
/// @param {String} $item--error-selector [".pill::part(item error)"]
|
|
6965
|
+
/// @param {String} $item--warning-selector [".pill::part(item warning)"]
|
|
6966
|
+
/// @param {String} $item--disabled-selector [".pill::part(item disabled)"]
|
|
6967
|
+
/// @param {String} $item--selected-selector [".pill::part(item selected)"]
|
|
6968
|
+
/// @param {Boolean} $add--disabled [true]
|
|
6969
|
+
/// @param {Boolean} $add--placeholder [true]
|
|
6970
|
+
/// @param {Boolean} $add--placeholder-var [true]
|
|
6971
|
+
/// @param {Boolean} $add--error [true]
|
|
6972
|
+
@mixin pills(
|
|
6973
|
+
$pills-container-selector: ".pills-container",
|
|
6974
|
+
$pill-selector: ".pill",
|
|
6975
|
+
$pill--enabled-selector: ".pill[part='enabled']",
|
|
6976
|
+
$pill--disabled-selector: ".pill[disabled]",
|
|
6977
|
+
$pill--processing-selector: ".pill[part='processing']",
|
|
6978
|
+
$pill--success-selector: ".pill[part='success']",
|
|
6979
|
+
$pill--error-selector: ".pill[part='error']",
|
|
6980
|
+
$pill--warning-selector: ".pill[part='warning']",
|
|
6981
|
+
$pills__placeholder-selector: ".pills::part(placeholder)",
|
|
6982
|
+
$window-selector: ".pill::part(window)",
|
|
6983
|
+
$item-selector: ".pill::part(item)",
|
|
6984
|
+
$item--enabled-selector: ".pill::part(item enabled)",
|
|
6985
|
+
$item--processing-selector: ".pill::part(item processing)",
|
|
6986
|
+
$item--success-selector: ".pill::part(item success)",
|
|
6987
|
+
$item--error-selector: ".pill::part(item error)",
|
|
6988
|
+
$item--warning-selector: ".pill::part(item warning)",
|
|
6989
|
+
$item--disabled-selector: ".pill::part(item disabled)",
|
|
6990
|
+
$item--selected-selector: ".pill::part(item selected)",
|
|
6991
|
+
$add--icon: true,
|
|
6992
|
+
$add--disabled: true,
|
|
6993
|
+
$add--placeholder: true,
|
|
6994
|
+
$add--placeholder-var: true
|
|
5951
6995
|
) {
|
|
5952
|
-
#{$
|
|
5953
|
-
@extend %
|
|
6996
|
+
#{$pills-container-selector} {
|
|
6997
|
+
@extend %pills__container;
|
|
5954
6998
|
}
|
|
5955
6999
|
|
|
5956
|
-
#{$
|
|
5957
|
-
@extend %
|
|
7000
|
+
#{$pill-selector} {
|
|
7001
|
+
@extend %pill;
|
|
7002
|
+
}
|
|
7003
|
+
@if $add--icon {
|
|
7004
|
+
#{$pill-selector} {
|
|
7005
|
+
@extend %icon-styles;
|
|
7006
|
+
}
|
|
7007
|
+
}
|
|
5958
7008
|
|
|
5959
|
-
|
|
5960
|
-
|
|
7009
|
+
#{$pill--enabled-selector} {
|
|
7010
|
+
@extend %pill--enabled;
|
|
7011
|
+
}
|
|
7012
|
+
#{$pill--disabled-selector} {
|
|
7013
|
+
@extend %pill--disabled;
|
|
7014
|
+
}
|
|
7015
|
+
#{$pill--processing-selector} {
|
|
7016
|
+
@extend %pill--processing;
|
|
7017
|
+
}
|
|
7018
|
+
#{$pill--success-selector} {
|
|
7019
|
+
@extend %pill--success;
|
|
7020
|
+
}
|
|
7021
|
+
#{$pill--error-selector} {
|
|
7022
|
+
@extend %pill--error;
|
|
7023
|
+
}
|
|
7024
|
+
#{$pill--warning-selector} {
|
|
7025
|
+
@extend %pill--warning;
|
|
7026
|
+
}
|
|
7027
|
+
|
|
7028
|
+
@if $add--placeholder {
|
|
7029
|
+
#{$pills__placeholder-selector} {
|
|
7030
|
+
@include control-placeholder();
|
|
5961
7031
|
}
|
|
5962
7032
|
}
|
|
5963
7033
|
|
|
5964
|
-
|
|
5965
|
-
|
|
7034
|
+
@if $add--disabled {
|
|
7035
|
+
#{$item--disabled-selector} {
|
|
7036
|
+
@include item-colors-disabled();
|
|
7037
|
+
}
|
|
5966
7038
|
}
|
|
5967
7039
|
|
|
5968
|
-
|
|
5969
|
-
|
|
7040
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
7041
|
+
// Window
|
|
7042
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
7043
|
+
|
|
7044
|
+
#{$window-selector} {
|
|
7045
|
+
@include items-container-colors();
|
|
7046
|
+
@include items-container-padding();
|
|
7047
|
+
@include items-container-dropdown();
|
|
7048
|
+
@include items-container-gap();
|
|
7049
|
+
@include items-container-max-height();
|
|
7050
|
+
@include items-container-border-radius();
|
|
7051
|
+
--items-container__border-radius: var(--mer-border__radius--lg);
|
|
7052
|
+
// TODO: define a items-container-border-radius-sm() and a
|
|
7053
|
+
// items-container-border-radius-md(); since container radius
|
|
7054
|
+
// of the pills is greater than the other containers:
|
|
7055
|
+
// combo-box, list-box, etc...
|
|
5970
7056
|
}
|
|
5971
7057
|
|
|
5972
|
-
|
|
5973
|
-
|
|
7058
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
7059
|
+
// Item
|
|
7060
|
+
// - - - - - - - - - - - - - - - - - - - -
|
|
7061
|
+
|
|
7062
|
+
#{$item-selector} {
|
|
7063
|
+
@extend %pill__item;
|
|
7064
|
+
}
|
|
7065
|
+
#{$item--selected-selector} {
|
|
7066
|
+
@extend %pill__item--selected;
|
|
5974
7067
|
}
|
|
5975
7068
|
|
|
5976
|
-
|
|
5977
|
-
|
|
7069
|
+
@if $add--icon {
|
|
7070
|
+
// custom states
|
|
7071
|
+
#{$item--enabled-selector} {
|
|
7072
|
+
@extend %pill__item--enabled;
|
|
7073
|
+
@extend %pill__item--with-icon;
|
|
7074
|
+
}
|
|
7075
|
+
#{$item--processing-selector} {
|
|
7076
|
+
@extend %pill__item--processing;
|
|
7077
|
+
@extend %pill__item--with-icon;
|
|
7078
|
+
}
|
|
7079
|
+
#{$item--success-selector} {
|
|
7080
|
+
@extend %pill__item--success;
|
|
7081
|
+
@extend %pill__item--with-icon;
|
|
7082
|
+
}
|
|
7083
|
+
#{$item--warning-selector} {
|
|
7084
|
+
@extend %pill__item--warning;
|
|
7085
|
+
@extend %pill__item--with-icon;
|
|
7086
|
+
}
|
|
7087
|
+
#{$item--error-selector} {
|
|
7088
|
+
@extend %pill__item--error;
|
|
7089
|
+
@extend %pill__item--with-icon;
|
|
7090
|
+
}
|
|
5978
7091
|
}
|
|
5979
7092
|
}
|
|
5980
7093
|
|
|
@@ -8818,6 +9931,7 @@
|
|
|
8818
9931
|
$list-box: true,
|
|
8819
9932
|
$markdown-viewer: true,
|
|
8820
9933
|
$navigation-list: true,
|
|
9934
|
+
$pills: true,
|
|
8821
9935
|
$radio-group: true,
|
|
8822
9936
|
$segmented-control: true,
|
|
8823
9937
|
$sidebar: true,
|
|
@@ -12504,6 +13618,15 @@
|
|
|
12504
13618
|
--icon__system_dark-mode_primary--hover: url('#{$icons-path}system/light/dark-mode.svg#primary--hover');
|
|
12505
13619
|
--icon__system_dark-mode_primary--active: url('#{$icons-path}system/light/dark-mode.svg#primary--active');
|
|
12506
13620
|
--icon__system_dark-mode_primary--disabled: url('#{$icons-path}system/light/dark-mode.svg#primary--disabled');
|
|
13621
|
+
--icon__system_Cut_on-surface--enabled: url('#{$icons-path}system/light/Cut.svg#on-surface--enabled');
|
|
13622
|
+
--icon__system_Cut_on-surface--hover: url('#{$icons-path}system/light/Cut.svg#on-surface--hover');
|
|
13623
|
+
--icon__system_Cut_on-surface--active: url('#{$icons-path}system/light/Cut.svg#on-surface--active');
|
|
13624
|
+
--icon__system_Cut_on-surface--disabled: url('#{$icons-path}system/light/Cut.svg#on-surface--disabled');
|
|
13625
|
+
--icon__system_Cut_on-elevation--enabled: url('#{$icons-path}system/light/Cut.svg#on-elevation--enabled');
|
|
13626
|
+
--icon__system_Cut_primary--enabled: url('#{$icons-path}system/light/Cut.svg#primary--enabled');
|
|
13627
|
+
--icon__system_Cut_primary--hover: url('#{$icons-path}system/light/Cut.svg#primary--hover');
|
|
13628
|
+
--icon__system_Cut_primary--active: url('#{$icons-path}system/light/Cut.svg#primary--active');
|
|
13629
|
+
--icon__system_Cut_primary--disabled: url('#{$icons-path}system/light/Cut.svg#primary--disabled');
|
|
12507
13630
|
--icon__system_copy_on-surface--enabled: url('#{$icons-path}system/light/copy.svg#on-surface--enabled');
|
|
12508
13631
|
--icon__system_copy_on-surface--hover: url('#{$icons-path}system/light/copy.svg#on-surface--hover');
|
|
12509
13632
|
--icon__system_copy_on-surface--active: url('#{$icons-path}system/light/copy.svg#on-surface--active');
|
|
@@ -12540,6 +13663,15 @@
|
|
|
12540
13663
|
--icon__system_check_primary--hover: url('#{$icons-path}system/light/check.svg#primary--hover');
|
|
12541
13664
|
--icon__system_check_primary--active: url('#{$icons-path}system/light/check.svg#primary--active');
|
|
12542
13665
|
--icon__system_check_primary--disabled: url('#{$icons-path}system/light/check.svg#primary--disabled');
|
|
13666
|
+
--icon__system_Card_on-surface--enabled: url('#{$icons-path}system/light/Card.svg#on-surface--enabled');
|
|
13667
|
+
--icon__system_Card_on-surface--hover: url('#{$icons-path}system/light/Card.svg#on-surface--hover');
|
|
13668
|
+
--icon__system_Card_on-surface--active: url('#{$icons-path}system/light/Card.svg#on-surface--active');
|
|
13669
|
+
--icon__system_Card_on-surface--disabled: url('#{$icons-path}system/light/Card.svg#on-surface--disabled');
|
|
13670
|
+
--icon__system_Card_on-elevation--enabled: url('#{$icons-path}system/light/Card.svg#on-elevation--enabled');
|
|
13671
|
+
--icon__system_Card_primary--enabled: url('#{$icons-path}system/light/Card.svg#primary--enabled');
|
|
13672
|
+
--icon__system_Card_primary--hover: url('#{$icons-path}system/light/Card.svg#primary--hover');
|
|
13673
|
+
--icon__system_Card_primary--active: url('#{$icons-path}system/light/Card.svg#primary--active');
|
|
13674
|
+
--icon__system_Card_primary--disabled: url('#{$icons-path}system/light/Card.svg#primary--disabled');
|
|
12543
13675
|
--icon__system_card-variant_on-surface--enabled: url('#{$icons-path}system/light/card-variant.svg#on-surface--enabled');
|
|
12544
13676
|
--icon__system_card-variant_on-surface--hover: url('#{$icons-path}system/light/card-variant.svg#on-surface--hover');
|
|
12545
13677
|
--icon__system_card-variant_on-surface--active: url('#{$icons-path}system/light/card-variant.svg#on-surface--active');
|
|
@@ -12549,6 +13681,15 @@
|
|
|
12549
13681
|
--icon__system_card-variant_primary--hover: url('#{$icons-path}system/light/card-variant.svg#primary--hover');
|
|
12550
13682
|
--icon__system_card-variant_primary--active: url('#{$icons-path}system/light/card-variant.svg#primary--active');
|
|
12551
13683
|
--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');
|
|
12552
13693
|
--icon__system_arrow-up_on-surface--enabled: url('#{$icons-path}system/light/arrow-up.svg#on-surface--enabled');
|
|
12553
13694
|
--icon__system_arrow-up_on-surface--hover: url('#{$icons-path}system/light/arrow-up.svg#on-surface--hover');
|
|
12554
13695
|
--icon__system_arrow-up_on-surface--active: url('#{$icons-path}system/light/arrow-up.svg#on-surface--active');
|
|
@@ -12621,33 +13762,6 @@
|
|
|
12621
13762
|
--icon__system_add-circle_primary--hover: url('#{$icons-path}system/light/add-circle.svg#primary--hover');
|
|
12622
13763
|
--icon__system_add-circle_primary--active: url('#{$icons-path}system/light/add-circle.svg#primary--active');
|
|
12623
13764
|
--icon__system_add-circle_primary--disabled: url('#{$icons-path}system/light/add-circle.svg#primary--disabled');
|
|
12624
|
-
--icon__system_Cut_on-surface--enabled: url('#{$icons-path}system/light/Cut.svg#on-surface--enabled');
|
|
12625
|
-
--icon__system_Cut_on-surface--hover: url('#{$icons-path}system/light/Cut.svg#on-surface--hover');
|
|
12626
|
-
--icon__system_Cut_on-surface--active: url('#{$icons-path}system/light/Cut.svg#on-surface--active');
|
|
12627
|
-
--icon__system_Cut_on-surface--disabled: url('#{$icons-path}system/light/Cut.svg#on-surface--disabled');
|
|
12628
|
-
--icon__system_Cut_on-elevation--enabled: url('#{$icons-path}system/light/Cut.svg#on-elevation--enabled');
|
|
12629
|
-
--icon__system_Cut_primary--enabled: url('#{$icons-path}system/light/Cut.svg#primary--enabled');
|
|
12630
|
-
--icon__system_Cut_primary--hover: url('#{$icons-path}system/light/Cut.svg#primary--hover');
|
|
12631
|
-
--icon__system_Cut_primary--active: url('#{$icons-path}system/light/Cut.svg#primary--active');
|
|
12632
|
-
--icon__system_Cut_primary--disabled: url('#{$icons-path}system/light/Cut.svg#primary--disabled');
|
|
12633
|
-
--icon__system_Card_on-surface--enabled: url('#{$icons-path}system/light/Card.svg#on-surface--enabled');
|
|
12634
|
-
--icon__system_Card_on-surface--hover: url('#{$icons-path}system/light/Card.svg#on-surface--hover');
|
|
12635
|
-
--icon__system_Card_on-surface--active: url('#{$icons-path}system/light/Card.svg#on-surface--active');
|
|
12636
|
-
--icon__system_Card_on-surface--disabled: url('#{$icons-path}system/light/Card.svg#on-surface--disabled');
|
|
12637
|
-
--icon__system_Card_on-elevation--enabled: url('#{$icons-path}system/light/Card.svg#on-elevation--enabled');
|
|
12638
|
-
--icon__system_Card_primary--enabled: url('#{$icons-path}system/light/Card.svg#primary--enabled');
|
|
12639
|
-
--icon__system_Card_primary--hover: url('#{$icons-path}system/light/Card.svg#primary--hover');
|
|
12640
|
-
--icon__system_Card_primary--active: url('#{$icons-path}system/light/Card.svg#primary--active');
|
|
12641
|
-
--icon__system_Card_primary--disabled: url('#{$icons-path}system/light/Card.svg#primary--disabled');
|
|
12642
|
-
--icon__system_Assistant_on-surface--enabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--enabled');
|
|
12643
|
-
--icon__system_Assistant_on-surface--hover: url('#{$icons-path}system/light/Assistant.svg#on-surface--hover');
|
|
12644
|
-
--icon__system_Assistant_on-surface--active: url('#{$icons-path}system/light/Assistant.svg#on-surface--active');
|
|
12645
|
-
--icon__system_Assistant_on-surface--disabled: url('#{$icons-path}system/light/Assistant.svg#on-surface--disabled');
|
|
12646
|
-
--icon__system_Assistant_on-elevation--enabled: url('#{$icons-path}system/light/Assistant.svg#on-elevation--enabled');
|
|
12647
|
-
--icon__system_Assistant_primary--enabled: url('#{$icons-path}system/light/Assistant.svg#primary--enabled');
|
|
12648
|
-
--icon__system_Assistant_primary--hover: url('#{$icons-path}system/light/Assistant.svg#primary--hover');
|
|
12649
|
-
--icon__system_Assistant_primary--active: url('#{$icons-path}system/light/Assistant.svg#primary--active');
|
|
12650
|
-
--icon__system_Assistant_primary--disabled: url('#{$icons-path}system/light/Assistant.svg#primary--disabled');
|
|
12651
13765
|
|
|
12652
13766
|
}
|
|
12653
13767
|
|
|
@@ -13161,6 +14275,15 @@
|
|
|
13161
14275
|
--icon__system_dark-mode_primary--hover: url('#{$icons-path}system/dark/dark-mode.svg#primary--hover');
|
|
13162
14276
|
--icon__system_dark-mode_primary--active: url('#{$icons-path}system/dark/dark-mode.svg#primary--active');
|
|
13163
14277
|
--icon__system_dark-mode_primary--disabled: url('#{$icons-path}system/dark/dark-mode.svg#primary--disabled');
|
|
14278
|
+
--icon__system_Cut_on-surface--enabled: url('#{$icons-path}system/dark/Cut.svg#on-surface--enabled');
|
|
14279
|
+
--icon__system_Cut_on-surface--hover: url('#{$icons-path}system/dark/Cut.svg#on-surface--hover');
|
|
14280
|
+
--icon__system_Cut_on-surface--active: url('#{$icons-path}system/dark/Cut.svg#on-surface--active');
|
|
14281
|
+
--icon__system_Cut_on-surface--disabled: url('#{$icons-path}system/dark/Cut.svg#on-surface--disabled');
|
|
14282
|
+
--icon__system_Cut_on-elevation--enabled: url('#{$icons-path}system/dark/Cut.svg#on-elevation--enabled');
|
|
14283
|
+
--icon__system_Cut_primary--enabled: url('#{$icons-path}system/dark/Cut.svg#primary--enabled');
|
|
14284
|
+
--icon__system_Cut_primary--hover: url('#{$icons-path}system/dark/Cut.svg#primary--hover');
|
|
14285
|
+
--icon__system_Cut_primary--active: url('#{$icons-path}system/dark/Cut.svg#primary--active');
|
|
14286
|
+
--icon__system_Cut_primary--disabled: url('#{$icons-path}system/dark/Cut.svg#primary--disabled');
|
|
13164
14287
|
--icon__system_copy_on-surface--enabled: url('#{$icons-path}system/dark/copy.svg#on-surface--enabled');
|
|
13165
14288
|
--icon__system_copy_on-surface--hover: url('#{$icons-path}system/dark/copy.svg#on-surface--hover');
|
|
13166
14289
|
--icon__system_copy_on-surface--active: url('#{$icons-path}system/dark/copy.svg#on-surface--active');
|
|
@@ -13197,6 +14320,15 @@
|
|
|
13197
14320
|
--icon__system_check_primary--hover: url('#{$icons-path}system/dark/check.svg#primary--hover');
|
|
13198
14321
|
--icon__system_check_primary--active: url('#{$icons-path}system/dark/check.svg#primary--active');
|
|
13199
14322
|
--icon__system_check_primary--disabled: url('#{$icons-path}system/dark/check.svg#primary--disabled');
|
|
14323
|
+
--icon__system_Card_on-surface--enabled: url('#{$icons-path}system/dark/Card.svg#on-surface--enabled');
|
|
14324
|
+
--icon__system_Card_on-surface--hover: url('#{$icons-path}system/dark/Card.svg#on-surface--hover');
|
|
14325
|
+
--icon__system_Card_on-surface--active: url('#{$icons-path}system/dark/Card.svg#on-surface--active');
|
|
14326
|
+
--icon__system_Card_on-surface--disabled: url('#{$icons-path}system/dark/Card.svg#on-surface--disabled');
|
|
14327
|
+
--icon__system_Card_on-elevation--enabled: url('#{$icons-path}system/dark/Card.svg#on-elevation--enabled');
|
|
14328
|
+
--icon__system_Card_primary--enabled: url('#{$icons-path}system/dark/Card.svg#primary--enabled');
|
|
14329
|
+
--icon__system_Card_primary--hover: url('#{$icons-path}system/dark/Card.svg#primary--hover');
|
|
14330
|
+
--icon__system_Card_primary--active: url('#{$icons-path}system/dark/Card.svg#primary--active');
|
|
14331
|
+
--icon__system_Card_primary--disabled: url('#{$icons-path}system/dark/Card.svg#primary--disabled');
|
|
13200
14332
|
--icon__system_card-variant_on-surface--enabled: url('#{$icons-path}system/dark/card-variant.svg#on-surface--enabled');
|
|
13201
14333
|
--icon__system_card-variant_on-surface--hover: url('#{$icons-path}system/dark/card-variant.svg#on-surface--hover');
|
|
13202
14334
|
--icon__system_card-variant_on-surface--active: url('#{$icons-path}system/dark/card-variant.svg#on-surface--active');
|
|
@@ -13206,6 +14338,15 @@
|
|
|
13206
14338
|
--icon__system_card-variant_primary--hover: url('#{$icons-path}system/dark/card-variant.svg#primary--hover');
|
|
13207
14339
|
--icon__system_card-variant_primary--active: url('#{$icons-path}system/dark/card-variant.svg#primary--active');
|
|
13208
14340
|
--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');
|
|
13209
14350
|
--icon__system_arrow-up_on-surface--enabled: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--enabled');
|
|
13210
14351
|
--icon__system_arrow-up_on-surface--hover: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--hover');
|
|
13211
14352
|
--icon__system_arrow-up_on-surface--active: url('#{$icons-path}system/dark/arrow-up.svg#on-surface--active');
|
|
@@ -13278,33 +14419,57 @@
|
|
|
13278
14419
|
--icon__system_add-circle_primary--hover: url('#{$icons-path}system/dark/add-circle.svg#primary--hover');
|
|
13279
14420
|
--icon__system_add-circle_primary--active: url('#{$icons-path}system/dark/add-circle.svg#primary--active');
|
|
13280
14421
|
--icon__system_add-circle_primary--disabled: url('#{$icons-path}system/dark/add-circle.svg#primary--disabled');
|
|
13281
|
-
|
|
13282
|
-
|
|
13283
|
-
|
|
13284
|
-
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
|
|
13288
|
-
|
|
13289
|
-
|
|
13290
|
-
|
|
13291
|
-
--
|
|
13292
|
-
--
|
|
13293
|
-
--
|
|
13294
|
-
--
|
|
13295
|
-
--
|
|
13296
|
-
--
|
|
13297
|
-
--
|
|
13298
|
-
--
|
|
13299
|
-
--
|
|
13300
|
-
--
|
|
13301
|
-
--
|
|
13302
|
-
--
|
|
13303
|
-
--
|
|
13304
|
-
--
|
|
13305
|
-
--
|
|
13306
|
-
--
|
|
13307
|
-
|
|
14422
|
+
|
|
14423
|
+
}
|
|
14424
|
+
|
|
14425
|
+
|
|
14426
|
+
/* =================================
|
|
14427
|
+
LIGHT CUSTOM PROPERTIES
|
|
14428
|
+
================================= */
|
|
14429
|
+
|
|
14430
|
+
:root.light {
|
|
14431
|
+
/*states*/
|
|
14432
|
+
--icon__states_pill-outlined_primary--enabled: url('#{$icons-path}states/light/pill-outlined.svg#primary--enabled');
|
|
14433
|
+
--icon__states_pill-outlined_primary--hover: url('#{$icons-path}states/light/pill-outlined.svg#primary--hover');
|
|
14434
|
+
--icon__states_pill-outlined_primary--active: url('#{$icons-path}states/light/pill-outlined.svg#primary--active');
|
|
14435
|
+
--icon__states_pill-outlined_primary--disabled: url('#{$icons-path}states/light/pill-outlined.svg#primary--disabled');
|
|
14436
|
+
--icon__states_pill-outlined_error--enabled: url('#{$icons-path}states/light/pill-outlined.svg#error--enabled');
|
|
14437
|
+
--icon__states_pill-outlined_warning--enabled: url('#{$icons-path}states/light/pill-outlined.svg#warning--enabled');
|
|
14438
|
+
--icon__states_pill-outlined_success--enabled: url('#{$icons-path}states/light/pill-outlined.svg#success--enabled');
|
|
14439
|
+
--icon__states_pill-outlined_highlighted--enabled: url('#{$icons-path}states/light/pill-outlined.svg#highlighted--enabled');
|
|
14440
|
+
--icon__states_pill-filled_primary--enabled: url('#{$icons-path}states/light/pill-filled.svg#primary--enabled');
|
|
14441
|
+
--icon__states_pill-filled_primary--hover: url('#{$icons-path}states/light/pill-filled.svg#primary--hover');
|
|
14442
|
+
--icon__states_pill-filled_primary--active: url('#{$icons-path}states/light/pill-filled.svg#primary--active');
|
|
14443
|
+
--icon__states_pill-filled_primary--disabled: url('#{$icons-path}states/light/pill-filled.svg#primary--disabled');
|
|
14444
|
+
--icon__states_pill-filled_error--enabled: url('#{$icons-path}states/light/pill-filled.svg#error--enabled');
|
|
14445
|
+
--icon__states_pill-filled_warning--enabled: url('#{$icons-path}states/light/pill-filled.svg#warning--enabled');
|
|
14446
|
+
--icon__states_pill-filled_success--enabled: url('#{$icons-path}states/light/pill-filled.svg#success--enabled');
|
|
14447
|
+
--icon__states_pill-filled_highlighted--enabled: url('#{$icons-path}states/light/pill-filled.svg#highlighted--enabled');
|
|
14448
|
+
|
|
14449
|
+
}
|
|
14450
|
+
|
|
14451
|
+
/* =================================
|
|
14452
|
+
DARK CUSTOM PROPERTIES
|
|
14453
|
+
================================= */
|
|
14454
|
+
|
|
14455
|
+
:root.dark {
|
|
14456
|
+
/*states*/
|
|
14457
|
+
--icon__states_pill-outlined_primary--enabled: url('#{$icons-path}states/dark/pill-outlined.svg#primary--enabled');
|
|
14458
|
+
--icon__states_pill-outlined_primary--hover: url('#{$icons-path}states/dark/pill-outlined.svg#primary--hover');
|
|
14459
|
+
--icon__states_pill-outlined_primary--active: url('#{$icons-path}states/dark/pill-outlined.svg#primary--active');
|
|
14460
|
+
--icon__states_pill-outlined_primary--disabled: url('#{$icons-path}states/dark/pill-outlined.svg#primary--disabled');
|
|
14461
|
+
--icon__states_pill-outlined_error--enabled: url('#{$icons-path}states/dark/pill-outlined.svg#error--enabled');
|
|
14462
|
+
--icon__states_pill-outlined_warning--enabled: url('#{$icons-path}states/dark/pill-outlined.svg#warning--enabled');
|
|
14463
|
+
--icon__states_pill-outlined_success--enabled: url('#{$icons-path}states/dark/pill-outlined.svg#success--enabled');
|
|
14464
|
+
--icon__states_pill-outlined_highlighted--enabled: url('#{$icons-path}states/dark/pill-outlined.svg#highlighted--enabled');
|
|
14465
|
+
--icon__states_pill-filled_primary--enabled: url('#{$icons-path}states/dark/pill-filled.svg#primary--enabled');
|
|
14466
|
+
--icon__states_pill-filled_primary--hover: url('#{$icons-path}states/dark/pill-filled.svg#primary--hover');
|
|
14467
|
+
--icon__states_pill-filled_primary--active: url('#{$icons-path}states/dark/pill-filled.svg#primary--active');
|
|
14468
|
+
--icon__states_pill-filled_primary--disabled: url('#{$icons-path}states/dark/pill-filled.svg#primary--disabled');
|
|
14469
|
+
--icon__states_pill-filled_error--enabled: url('#{$icons-path}states/dark/pill-filled.svg#error--enabled');
|
|
14470
|
+
--icon__states_pill-filled_warning--enabled: url('#{$icons-path}states/dark/pill-filled.svg#warning--enabled');
|
|
14471
|
+
--icon__states_pill-filled_success--enabled: url('#{$icons-path}states/dark/pill-filled.svg#success--enabled');
|
|
14472
|
+
--icon__states_pill-filled_highlighted--enabled: url('#{$icons-path}states/dark/pill-filled.svg#highlighted--enabled');
|
|
13308
14473
|
|
|
13309
14474
|
}
|
|
13310
14475
|
|
|
@@ -17102,6 +18267,10 @@
|
|
|
17102
18267
|
@include navigation-list();
|
|
17103
18268
|
}
|
|
17104
18269
|
|
|
18270
|
+
@if $pills {
|
|
18271
|
+
@include pills($add--icon: $icons-variables);
|
|
18272
|
+
}
|
|
18273
|
+
|
|
17105
18274
|
@if $radio-group {
|
|
17106
18275
|
@include radio-group();
|
|
17107
18276
|
}
|
|
@@ -17204,6 +18373,7 @@
|
|
|
17204
18373
|
$list-box: false,
|
|
17205
18374
|
$markdown-viewer: false,
|
|
17206
18375
|
$navigation-list: false,
|
|
18376
|
+
$pills: false,
|
|
17207
18377
|
$radio-group: false,
|
|
17208
18378
|
$segmented-control: false,
|
|
17209
18379
|
$sidebar: false,
|
|
@@ -17274,6 +18444,7 @@
|
|
|
17274
18444
|
$list-box: $list-box,
|
|
17275
18445
|
$markdown-viewer: $markdown-viewer,
|
|
17276
18446
|
$navigation-list: $navigation-list,
|
|
18447
|
+
$pills: $pills,
|
|
17277
18448
|
$radio-group: $radio-group,
|
|
17278
18449
|
$segmented-control: $segmented-control,
|
|
17279
18450
|
$sidebar: $sidebar,
|