@gitlab/ui 136.1.0 → 136.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/base/nav_item/nav_item.js +11 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +17 -16
- package/dist/tokens/build/js/tokens.js +17 -16
- package/dist/utils/constants.js +6 -1
- package/package.json +6 -6
- package/src/components/base/nav_item/nav_item.scss +31 -0
- package/src/components/base/nav_item/nav_item.vue +11 -0
- package/src/tokens/build/css/tokens.css +17 -16
- package/src/tokens/build/css/tokens.dark.css +17 -16
- package/src/tokens/build/figma/mode.dark.json +26 -16
- package/src/tokens/build/figma/mode.json +26 -16
- package/src/tokens/build/js/tokens.dark.js +16 -15
- package/src/tokens/build/js/tokens.js +16 -15
- package/src/tokens/build/json/tokens.dark.json +66 -31
- package/src/tokens/build/json/tokens.json +66 -31
- package/src/tokens/build/scss/_tokens.dark.scss +17 -16
- package/src/tokens/build/scss/_tokens.scss +17 -16
- package/src/tokens/build/scss/_tokens_custom_properties.scss +1 -0
- package/src/tokens/contextual/nav.tokens.json +46 -16
- package/src/utils/constants.js +6 -0
|
@@ -635,6 +635,14 @@
|
|
|
635
635
|
--gl-link-mention-background-color-default: var(--gl-color-blue-100); /** Used for the mention link default background. */
|
|
636
636
|
--gl-link-mention-background-color-current: var(--gl-color-orange-100); /** Used for the mention link background when referencing the current user. */
|
|
637
637
|
--gl-nav-item-font-size: var(--gl-font-size-300); /** Used for the font size of a navigation item */
|
|
638
|
+
--gl-nav-item-foreground-color-default: var(--gl-color-neutral-600); /** Used for the foreground of a default navigation item in the default state. */
|
|
639
|
+
--gl-nav-item-foreground-color-hover: var(--gl-color-neutral-950); /** Used for the foreground of a default navigation item in the hover state. */
|
|
640
|
+
--gl-nav-item-background-color-default: var(--gl-color-alpha-0); /** Used for the background of a default navigation item in the default state. */
|
|
641
|
+
--gl-nav-item-background-color-hover: var(--gl-color-neutral-100); /** Used for the background of a default navigation item in the hover state. */
|
|
642
|
+
--gl-nav-item-background-color-active: var(--gl-color-neutral-200); /** Used for the background of a default navigation item in the active state. */
|
|
643
|
+
--gl-nav-item-selected-font-weight: var(--gl-font-weight-bold); /** Used for the font weight of a selected navigation item. */
|
|
644
|
+
--gl-nav-item-selected-foreground-color-default: var(--gl-color-neutral-950); /** Used for the foreground of a selected navigation item in the default state. */
|
|
645
|
+
--gl-nav-item-selected-background-color-default: var(--gl-color-neutral-100); /** Used for the background of a selected navigation item in the default state. */
|
|
638
646
|
--gl-progress-bar-track-color: var(--gl-color-neutral-200); /** Used for the track color for all progress-bar variants. */
|
|
639
647
|
--gl-skeleton-loader-background-color: var(--gl-color-neutral-100); /** Used for the skeleton loader background color. */
|
|
640
648
|
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-50); /** Used for the animated shimmer effect in a skeleton loader. */
|
|
@@ -1002,14 +1010,11 @@
|
|
|
1002
1010
|
--gl-dropdown-option-background-color-unselected-active: var(--gl-action-neutral-background-color-active); /** Used for the background of an unselected dropdown option in the active state. */
|
|
1003
1011
|
--gl-dropdown-option-background-color-selected-focus: var(--gl-dropdown-option-background-color-selected-hover); /** Used for the background of a selected dropdown option in the focus state. */
|
|
1004
1012
|
--gl-modal-border-radius: var(--gl-border-radius-2xl); /** Used for modal border radius. */
|
|
1005
|
-
--gl-nav-item-foreground-color-
|
|
1006
|
-
--gl-nav-item-background-color-
|
|
1007
|
-
--gl-nav-item-
|
|
1008
|
-
--gl-nav-item-background-color-
|
|
1009
|
-
--gl-nav-item-selected-
|
|
1010
|
-
--gl-nav-item-selected-background-color-default: var(--gl-action-selected-background-color-default); /** Used for the background of a selected navigation item in the default state. */
|
|
1011
|
-
--gl-nav-item-selected-background-color-hover: var(--gl-action-selected-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1012
|
-
--gl-nav-item-selected-background-color-active: var(--gl-action-selected-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1013
|
+
--gl-nav-item-foreground-color-focus: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a default navigation item in the focus state. */
|
|
1014
|
+
--gl-nav-item-background-color-focus: var(--gl-nav-item-background-color-hover); /** Used for the background of a default navigation item in the focus state. */
|
|
1015
|
+
--gl-nav-item-selected-foreground-color-hover: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1016
|
+
--gl-nav-item-selected-background-color-hover: var(--gl-nav-item-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1017
|
+
--gl-nav-item-selected-background-color-active: var(--gl-nav-item-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1013
1018
|
--gl-progress-bar-indicator-color-default: var(--gl-status-info-icon-color); /** Used for the indicator color for the primary progress-bar variant. */
|
|
1014
1019
|
--gl-progress-bar-indicator-color-success: var(--gl-status-success-icon-color); /** Used for the indicator color for the success progress-bar variant. */
|
|
1015
1020
|
--gl-progress-bar-indicator-color-warning: var(--gl-status-warning-icon-color); /** Used for the indicator color for the warning progress-bar variant. */
|
|
@@ -1219,12 +1224,9 @@
|
|
|
1219
1224
|
--gl-dropdown-option-indicator-color-selected-active: var(--gl-control-background-color-selected-focus); /** Used for the dropdown selected option indicator in the active state. */
|
|
1220
1225
|
--gl-dropdown-option-background-color-unselected-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of an unselected dropdown option in the focus state. */
|
|
1221
1226
|
--gl-nav-item-border-radius: var(--gl-action-border-radius); /** Used for the border radius of a navigation item */
|
|
1222
|
-
--gl-nav-item-foreground-color-
|
|
1223
|
-
--gl-nav-item-foreground-color-focus: var(--gl-
|
|
1224
|
-
--gl-nav-item-
|
|
1225
|
-
--gl-nav-item-background-color-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of a default navigation item in the focus state. */
|
|
1226
|
-
--gl-nav-item-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1227
|
-
--gl-nav-item-selected-background-color-focus: var(--gl-action-selected-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1227
|
+
--gl-nav-item-foreground-color-active: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a default navigation item in the active state. */
|
|
1228
|
+
--gl-nav-item-selected-foreground-color-focus: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a selected navigation item in the focus state. */
|
|
1229
|
+
--gl-nav-item-selected-background-color-focus: var(--gl-nav-item-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1228
1230
|
--gl-tab-selected-indicator-color-default: var(--gl-action-selected-border-color-active); /** Used for the selected indicator of a tab. */
|
|
1229
1231
|
--gl-toggle-switch-track-color-unchecked-hover: var(--gl-toggle-switch-track-color-unchecked-default); /** Used for the track color of an unchecked toggle switch in the hover state. */
|
|
1230
1232
|
--gl-toggle-switch-background-color-unchecked-hover: var(--gl-toggle-switch-background-color-unchecked-default); /** Used for the background color of the unchecked toggle switch thumb in the hover state. */
|
|
@@ -1242,7 +1244,7 @@
|
|
|
1242
1244
|
--gl-action-strong-neutral-border-color-focus: var(--gl-action-strong-neutral-border-color-hover); /** Used for the border of a strong neutral action in the focus state. */
|
|
1243
1245
|
--gl-control-border-color-selected-focus: var(--gl-control-background-color-selected-focus); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus. */
|
|
1244
1246
|
--gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-focus); /** Used for the foreground of a confirm (positive) primary button in the active state. */
|
|
1245
|
-
--gl-nav-item-selected-foreground-color-
|
|
1247
|
+
--gl-nav-item-selected-foreground-color-active: var(--gl-nav-item-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1246
1248
|
--gl-toggle-switch-track-color-unchecked-focus: var(--gl-toggle-switch-track-color-unchecked-hover); /** Used for the track color of an unchecked toggle switch in the focus state. */
|
|
1247
1249
|
--gl-toggle-switch-background-color-checked-focus: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the background color of the checked toggle switch thumb in the focus state. */
|
|
1248
1250
|
--gl-action-selected-foreground-color-active: var(--gl-action-selected-foreground-color-focus); /** Used for the foreground of a selected action in the active state. */
|
|
@@ -1250,7 +1252,6 @@
|
|
|
1250
1252
|
--gl-action-strong-confirm-border-color-active: var(--gl-action-strong-confirm-border-color-focus); /** Used for the border of a strong confirm action in the active state. */
|
|
1251
1253
|
--gl-action-strong-neutral-foreground-color-active: var(--gl-action-strong-neutral-foreground-color-focus); /** Used for the foreground of a strong neutral action in the active state. */
|
|
1252
1254
|
--gl-action-strong-neutral-border-color-active: var(--gl-action-strong-neutral-border-color-focus); /** Used for the border of a strong neutral action in the active state. */
|
|
1253
|
-
--gl-nav-item-selected-foreground-color-active: var(--gl-action-selected-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1254
1255
|
--gl-toggle-switch-track-color-unchecked-active: var(--gl-toggle-switch-track-color-unchecked-focus); /** Used for the track color of an unchecked toggle switch in the active state. */
|
|
1255
1256
|
--gl-toggle-switch-background-color-checked-active: var(--gl-action-strong-confirm-foreground-color-active); /** Used for the background color of the checked toggle switch thumb in the active state. */
|
|
1256
1257
|
}
|
|
@@ -653,6 +653,14 @@
|
|
|
653
653
|
--gl-link-mention-background-color-default: var(--gl-color-blue-800); /** Used for the mention link default background. */
|
|
654
654
|
--gl-link-mention-background-color-current: var(--gl-color-orange-800); /** Used for the mention link background when referencing the current user. */
|
|
655
655
|
--gl-nav-item-font-size: var(--gl-font-size-300); /** Used for the font size of a navigation item */
|
|
656
|
+
--gl-nav-item-foreground-color-default: var(--gl-color-neutral-200); /** Used for the foreground of a default navigation item in the default state. */
|
|
657
|
+
--gl-nav-item-foreground-color-hover: var(--gl-color-neutral-0); /** Used for the foreground of a default navigation item in the hover state. */
|
|
658
|
+
--gl-nav-item-background-color-default: var(--gl-color-alpha-0); /** Used for the background of a default navigation item in the default state. */
|
|
659
|
+
--gl-nav-item-background-color-hover: var(--gl-color-neutral-900); /** Used for the background of a default navigation item in the hover state. */
|
|
660
|
+
--gl-nav-item-background-color-active: var(--gl-color-neutral-950); /** Used for the background of a default navigation item in the active state. */
|
|
661
|
+
--gl-nav-item-selected-font-weight: var(--gl-font-weight-bold); /** Used for the font weight of a selected navigation item. */
|
|
662
|
+
--gl-nav-item-selected-foreground-color-default: var(--gl-color-neutral-0); /** Used for the foreground of a selected navigation item in the default state. */
|
|
663
|
+
--gl-nav-item-selected-background-color-default: var(--gl-color-neutral-900); /** Used for the background of a selected navigation item in the default state. */
|
|
656
664
|
--gl-progress-bar-track-color: var(--gl-color-neutral-700); /** Used for the track color for all progress-bar variants. */
|
|
657
665
|
--gl-skeleton-loader-background-color: var(--gl-color-neutral-800); /** Used for the skeleton loader background color. */
|
|
658
666
|
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-700); /** Used for the animated shimmer effect in a skeleton loader. */
|
|
@@ -1009,14 +1017,11 @@
|
|
|
1009
1017
|
--gl-dropdown-option-background-color-unselected-active: var(--gl-action-neutral-background-color-active); /** Used for the background of an unselected dropdown option in the active state. */
|
|
1010
1018
|
--gl-dropdown-option-background-color-selected-focus: var(--gl-dropdown-option-background-color-selected-hover); /** Used for the background of a selected dropdown option in the focus state. */
|
|
1011
1019
|
--gl-modal-border-radius: var(--gl-border-radius-2xl); /** Used for modal border radius. */
|
|
1012
|
-
--gl-nav-item-foreground-color-
|
|
1013
|
-
--gl-nav-item-background-color-
|
|
1014
|
-
--gl-nav-item-
|
|
1015
|
-
--gl-nav-item-background-color-
|
|
1016
|
-
--gl-nav-item-selected-
|
|
1017
|
-
--gl-nav-item-selected-background-color-default: var(--gl-action-selected-background-color-default); /** Used for the background of a selected navigation item in the default state. */
|
|
1018
|
-
--gl-nav-item-selected-background-color-hover: var(--gl-action-selected-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1019
|
-
--gl-nav-item-selected-background-color-active: var(--gl-action-selected-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1020
|
+
--gl-nav-item-foreground-color-focus: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a default navigation item in the focus state. */
|
|
1021
|
+
--gl-nav-item-background-color-focus: var(--gl-nav-item-background-color-hover); /** Used for the background of a default navigation item in the focus state. */
|
|
1022
|
+
--gl-nav-item-selected-foreground-color-hover: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1023
|
+
--gl-nav-item-selected-background-color-hover: var(--gl-nav-item-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1024
|
+
--gl-nav-item-selected-background-color-active: var(--gl-nav-item-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1020
1025
|
--gl-progress-bar-indicator-color-default: var(--gl-status-info-icon-color); /** Used for the indicator color for the primary progress-bar variant. */
|
|
1021
1026
|
--gl-progress-bar-indicator-color-success: var(--gl-status-success-icon-color); /** Used for the indicator color for the success progress-bar variant. */
|
|
1022
1027
|
--gl-progress-bar-indicator-color-warning: var(--gl-status-warning-icon-color); /** Used for the indicator color for the warning progress-bar variant. */
|
|
@@ -1221,12 +1226,9 @@
|
|
|
1221
1226
|
--gl-dropdown-option-indicator-color-selected-active: var(--gl-control-background-color-selected-focus); /** Used for the dropdown selected option indicator in the active state. */
|
|
1222
1227
|
--gl-dropdown-option-background-color-unselected-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of an unselected dropdown option in the focus state. */
|
|
1223
1228
|
--gl-nav-item-border-radius: var(--gl-action-border-radius); /** Used for the border radius of a navigation item */
|
|
1224
|
-
--gl-nav-item-foreground-color-
|
|
1225
|
-
--gl-nav-item-foreground-color-focus: var(--gl-
|
|
1226
|
-
--gl-nav-item-
|
|
1227
|
-
--gl-nav-item-background-color-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of a default navigation item in the focus state. */
|
|
1228
|
-
--gl-nav-item-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1229
|
-
--gl-nav-item-selected-background-color-focus: var(--gl-action-selected-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1229
|
+
--gl-nav-item-foreground-color-active: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a default navigation item in the active state. */
|
|
1230
|
+
--gl-nav-item-selected-foreground-color-focus: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a selected navigation item in the focus state. */
|
|
1231
|
+
--gl-nav-item-selected-background-color-focus: var(--gl-nav-item-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1230
1232
|
--gl-tab-selected-indicator-color-default: var(--gl-action-selected-border-color-active); /** Used for the selected indicator of a tab. */
|
|
1231
1233
|
--gl-toggle-switch-track-color-unchecked-hover: var(--gl-toggle-switch-track-color-unchecked-default); /** Used for the track color of an unchecked toggle switch in the hover state. */
|
|
1232
1234
|
--gl-toggle-switch-background-color-unchecked-hover: var(--gl-toggle-switch-background-color-unchecked-default); /** Used for the background color of the unchecked toggle switch thumb in the hover state. */
|
|
@@ -1243,14 +1245,13 @@
|
|
|
1243
1245
|
--gl-action-strong-neutral-border-color-focus: var(--gl-action-strong-neutral-border-color-hover); /** Used for the border of a strong neutral action in the focus state. */
|
|
1244
1246
|
--gl-control-border-color-selected-focus: var(--gl-control-background-color-selected-focus); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus. */
|
|
1245
1247
|
--gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-focus); /** Used for the foreground of a confirm (positive) primary button in the active state. */
|
|
1246
|
-
--gl-nav-item-selected-foreground-color-
|
|
1248
|
+
--gl-nav-item-selected-foreground-color-active: var(--gl-nav-item-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1247
1249
|
--gl-toggle-switch-track-color-unchecked-focus: var(--gl-toggle-switch-track-color-unchecked-hover); /** Used for the track color of an unchecked toggle switch in the focus state. */
|
|
1248
1250
|
--gl-toggle-switch-background-color-checked-focus: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the background color of the checked toggle switch thumb in the focus state. */
|
|
1249
1251
|
--gl-action-selected-foreground-color-active: var(--gl-action-selected-foreground-color-focus); /** Used for the foreground of a selected action in the active state. */
|
|
1250
1252
|
--gl-action-strong-confirm-foreground-color-active: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the foreground of a strong confirm action in the active state. */
|
|
1251
1253
|
--gl-action-strong-confirm-border-color-active: var(--gl-action-strong-confirm-border-color-focus); /** Used for the border of a strong confirm action in the active state. */
|
|
1252
1254
|
--gl-action-strong-neutral-border-color-active: var(--gl-action-strong-neutral-border-color-focus); /** Used for the border of a strong neutral action in the active state. */
|
|
1253
|
-
--gl-nav-item-selected-foreground-color-active: var(--gl-action-selected-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1254
1255
|
--gl-toggle-switch-track-color-unchecked-active: var(--gl-toggle-switch-track-color-unchecked-focus); /** Used for the track color of an unchecked toggle switch in the active state. */
|
|
1255
1256
|
--gl-toggle-switch-background-color-checked-active: var(--gl-action-strong-confirm-foreground-color-active); /** Used for the background color of the checked toggle switch thumb in the active state. */
|
|
1256
1257
|
}
|
|
@@ -4802,7 +4802,7 @@
|
|
|
4802
4802
|
}
|
|
4803
4803
|
},
|
|
4804
4804
|
"🔒/nav-item-foreground-color-default": {
|
|
4805
|
-
"$value": "{
|
|
4805
|
+
"$value": "{color-neutral-200}",
|
|
4806
4806
|
"$type": "color",
|
|
4807
4807
|
"$description": "Used for the foreground of a default navigation item in the default state.",
|
|
4808
4808
|
"$extensions": {
|
|
@@ -4812,7 +4812,7 @@
|
|
|
4812
4812
|
}
|
|
4813
4813
|
},
|
|
4814
4814
|
"🔒/nav-item-foreground-color-hover": {
|
|
4815
|
-
"$value": "{
|
|
4815
|
+
"$value": "{color-neutral-0}",
|
|
4816
4816
|
"$type": "color",
|
|
4817
4817
|
"$description": "Used for the foreground of a default navigation item in the hover state.",
|
|
4818
4818
|
"$extensions": {
|
|
@@ -4822,7 +4822,7 @@
|
|
|
4822
4822
|
}
|
|
4823
4823
|
},
|
|
4824
4824
|
"🔒/nav-item-foreground-color-focus": {
|
|
4825
|
-
"$value": "{
|
|
4825
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4826
4826
|
"$type": "color",
|
|
4827
4827
|
"$description": "Used for the foreground of a default navigation item in the focus state.",
|
|
4828
4828
|
"$extensions": {
|
|
@@ -4832,7 +4832,7 @@
|
|
|
4832
4832
|
}
|
|
4833
4833
|
},
|
|
4834
4834
|
"🔒/nav-item-foreground-color-active": {
|
|
4835
|
-
"$value": "{
|
|
4835
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4836
4836
|
"$type": "color",
|
|
4837
4837
|
"$description": "Used for the foreground of a default navigation item in the active state.",
|
|
4838
4838
|
"$extensions": {
|
|
@@ -4842,7 +4842,7 @@
|
|
|
4842
4842
|
}
|
|
4843
4843
|
},
|
|
4844
4844
|
"🔒/nav-item-background-color-default": {
|
|
4845
|
-
"$value": "{
|
|
4845
|
+
"$value": "{color-alpha-0}",
|
|
4846
4846
|
"$type": "color",
|
|
4847
4847
|
"$description": "Used for the background of a default navigation item in the default state.",
|
|
4848
4848
|
"$extensions": {
|
|
@@ -4852,7 +4852,7 @@
|
|
|
4852
4852
|
}
|
|
4853
4853
|
},
|
|
4854
4854
|
"🔒/nav-item-background-color-hover": {
|
|
4855
|
-
"$value": "{
|
|
4855
|
+
"$value": "{color-neutral-900}",
|
|
4856
4856
|
"$type": "color",
|
|
4857
4857
|
"$description": "Used for the background of a default navigation item in the hover state.",
|
|
4858
4858
|
"$extensions": {
|
|
@@ -4862,7 +4862,7 @@
|
|
|
4862
4862
|
}
|
|
4863
4863
|
},
|
|
4864
4864
|
"🔒/nav-item-background-color-focus": {
|
|
4865
|
-
"$value": "{
|
|
4865
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4866
4866
|
"$type": "color",
|
|
4867
4867
|
"$description": "Used for the background of a default navigation item in the focus state.",
|
|
4868
4868
|
"$extensions": {
|
|
@@ -4872,7 +4872,7 @@
|
|
|
4872
4872
|
}
|
|
4873
4873
|
},
|
|
4874
4874
|
"🔒/nav-item-background-color-active": {
|
|
4875
|
-
"$value": "{
|
|
4875
|
+
"$value": "{color-neutral-950}",
|
|
4876
4876
|
"$type": "color",
|
|
4877
4877
|
"$description": "Used for the background of a default navigation item in the active state.",
|
|
4878
4878
|
"$extensions": {
|
|
@@ -4881,8 +4881,18 @@
|
|
|
4881
4881
|
]
|
|
4882
4882
|
}
|
|
4883
4883
|
},
|
|
4884
|
+
"🔒/nav-item-selected-font-weight": {
|
|
4885
|
+
"$value": "{font-weight-bold}",
|
|
4886
|
+
"$type": "fontWeight",
|
|
4887
|
+
"$description": "Used for the font weight of a selected navigation item.",
|
|
4888
|
+
"$extensions": {
|
|
4889
|
+
"com.figma.scopes": [
|
|
4890
|
+
"FONT_WEIGHT"
|
|
4891
|
+
]
|
|
4892
|
+
}
|
|
4893
|
+
},
|
|
4884
4894
|
"🔒/nav-item-selected-foreground-color-default": {
|
|
4885
|
-
"$value": "{
|
|
4895
|
+
"$value": "{color-neutral-0}",
|
|
4886
4896
|
"$type": "color",
|
|
4887
4897
|
"$description": "Used for the foreground of a selected navigation item in the default state.",
|
|
4888
4898
|
"$extensions": {
|
|
@@ -4892,7 +4902,7 @@
|
|
|
4892
4902
|
}
|
|
4893
4903
|
},
|
|
4894
4904
|
"🔒/nav-item-selected-foreground-color-hover": {
|
|
4895
|
-
"$value": "{
|
|
4905
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4896
4906
|
"$type": "color",
|
|
4897
4907
|
"$description": "Used for the foreground of a selected navigation item in the hover state.",
|
|
4898
4908
|
"$extensions": {
|
|
@@ -4902,7 +4912,7 @@
|
|
|
4902
4912
|
}
|
|
4903
4913
|
},
|
|
4904
4914
|
"🔒/nav-item-selected-foreground-color-focus": {
|
|
4905
|
-
"$value": "{
|
|
4915
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4906
4916
|
"$type": "color",
|
|
4907
4917
|
"$description": "Used for the foreground of a selected navigation item in the focus state.",
|
|
4908
4918
|
"$extensions": {
|
|
@@ -4912,7 +4922,7 @@
|
|
|
4912
4922
|
}
|
|
4913
4923
|
},
|
|
4914
4924
|
"🔒/nav-item-selected-foreground-color-active": {
|
|
4915
|
-
"$value": "{
|
|
4925
|
+
"$value": "{🔒/nav-item-foreground-color-active}",
|
|
4916
4926
|
"$type": "color",
|
|
4917
4927
|
"$description": "Used for the foreground of a selected navigation item in the active state.",
|
|
4918
4928
|
"$extensions": {
|
|
@@ -4922,7 +4932,7 @@
|
|
|
4922
4932
|
}
|
|
4923
4933
|
},
|
|
4924
4934
|
"🔒/nav-item-selected-background-color-default": {
|
|
4925
|
-
"$value": "{
|
|
4935
|
+
"$value": "{color-neutral-900}",
|
|
4926
4936
|
"$type": "color",
|
|
4927
4937
|
"$description": "Used for the background of a selected navigation item in the default state.",
|
|
4928
4938
|
"$extensions": {
|
|
@@ -4932,7 +4942,7 @@
|
|
|
4932
4942
|
}
|
|
4933
4943
|
},
|
|
4934
4944
|
"🔒/nav-item-selected-background-color-hover": {
|
|
4935
|
-
"$value": "{
|
|
4945
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4936
4946
|
"$type": "color",
|
|
4937
4947
|
"$description": "Used for the background of a selected navigation item in the hover state.",
|
|
4938
4948
|
"$extensions": {
|
|
@@ -4942,7 +4952,7 @@
|
|
|
4942
4952
|
}
|
|
4943
4953
|
},
|
|
4944
4954
|
"🔒/nav-item-selected-background-color-focus": {
|
|
4945
|
-
"$value": "{
|
|
4955
|
+
"$value": "{🔒/nav-item-background-color-focus}",
|
|
4946
4956
|
"$type": "color",
|
|
4947
4957
|
"$description": "Used for the background of a selected navigation item in the focus state.",
|
|
4948
4958
|
"$extensions": {
|
|
@@ -4952,7 +4962,7 @@
|
|
|
4952
4962
|
}
|
|
4953
4963
|
},
|
|
4954
4964
|
"🔒/nav-item-selected-background-color-active": {
|
|
4955
|
-
"$value": "{
|
|
4965
|
+
"$value": "{🔒/nav-item-background-color-active}",
|
|
4956
4966
|
"$type": "color",
|
|
4957
4967
|
"$description": "Used for the background of a selected navigation item in the active state.",
|
|
4958
4968
|
"$extensions": {
|
|
@@ -4746,7 +4746,7 @@
|
|
|
4746
4746
|
}
|
|
4747
4747
|
},
|
|
4748
4748
|
"🔒/nav-item-foreground-color-default": {
|
|
4749
|
-
"$value": "{
|
|
4749
|
+
"$value": "{color-neutral-600}",
|
|
4750
4750
|
"$type": "color",
|
|
4751
4751
|
"$description": "Used for the foreground of a default navigation item in the default state.",
|
|
4752
4752
|
"$extensions": {
|
|
@@ -4756,7 +4756,7 @@
|
|
|
4756
4756
|
}
|
|
4757
4757
|
},
|
|
4758
4758
|
"🔒/nav-item-foreground-color-hover": {
|
|
4759
|
-
"$value": "{
|
|
4759
|
+
"$value": "{color-neutral-950}",
|
|
4760
4760
|
"$type": "color",
|
|
4761
4761
|
"$description": "Used for the foreground of a default navigation item in the hover state.",
|
|
4762
4762
|
"$extensions": {
|
|
@@ -4766,7 +4766,7 @@
|
|
|
4766
4766
|
}
|
|
4767
4767
|
},
|
|
4768
4768
|
"🔒/nav-item-foreground-color-focus": {
|
|
4769
|
-
"$value": "{
|
|
4769
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4770
4770
|
"$type": "color",
|
|
4771
4771
|
"$description": "Used for the foreground of a default navigation item in the focus state.",
|
|
4772
4772
|
"$extensions": {
|
|
@@ -4776,7 +4776,7 @@
|
|
|
4776
4776
|
}
|
|
4777
4777
|
},
|
|
4778
4778
|
"🔒/nav-item-foreground-color-active": {
|
|
4779
|
-
"$value": "{
|
|
4779
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4780
4780
|
"$type": "color",
|
|
4781
4781
|
"$description": "Used for the foreground of a default navigation item in the active state.",
|
|
4782
4782
|
"$extensions": {
|
|
@@ -4786,7 +4786,7 @@
|
|
|
4786
4786
|
}
|
|
4787
4787
|
},
|
|
4788
4788
|
"🔒/nav-item-background-color-default": {
|
|
4789
|
-
"$value": "{
|
|
4789
|
+
"$value": "{color-alpha-0}",
|
|
4790
4790
|
"$type": "color",
|
|
4791
4791
|
"$description": "Used for the background of a default navigation item in the default state.",
|
|
4792
4792
|
"$extensions": {
|
|
@@ -4796,7 +4796,7 @@
|
|
|
4796
4796
|
}
|
|
4797
4797
|
},
|
|
4798
4798
|
"🔒/nav-item-background-color-hover": {
|
|
4799
|
-
"$value": "{
|
|
4799
|
+
"$value": "{color-neutral-100}",
|
|
4800
4800
|
"$type": "color",
|
|
4801
4801
|
"$description": "Used for the background of a default navigation item in the hover state.",
|
|
4802
4802
|
"$extensions": {
|
|
@@ -4806,7 +4806,7 @@
|
|
|
4806
4806
|
}
|
|
4807
4807
|
},
|
|
4808
4808
|
"🔒/nav-item-background-color-focus": {
|
|
4809
|
-
"$value": "{
|
|
4809
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4810
4810
|
"$type": "color",
|
|
4811
4811
|
"$description": "Used for the background of a default navigation item in the focus state.",
|
|
4812
4812
|
"$extensions": {
|
|
@@ -4816,7 +4816,7 @@
|
|
|
4816
4816
|
}
|
|
4817
4817
|
},
|
|
4818
4818
|
"🔒/nav-item-background-color-active": {
|
|
4819
|
-
"$value": "{
|
|
4819
|
+
"$value": "{color-neutral-200}",
|
|
4820
4820
|
"$type": "color",
|
|
4821
4821
|
"$description": "Used for the background of a default navigation item in the active state.",
|
|
4822
4822
|
"$extensions": {
|
|
@@ -4825,8 +4825,18 @@
|
|
|
4825
4825
|
]
|
|
4826
4826
|
}
|
|
4827
4827
|
},
|
|
4828
|
+
"🔒/nav-item-selected-font-weight": {
|
|
4829
|
+
"$value": "{font-weight-bold}",
|
|
4830
|
+
"$type": "fontWeight",
|
|
4831
|
+
"$description": "Used for the font weight of a selected navigation item.",
|
|
4832
|
+
"$extensions": {
|
|
4833
|
+
"com.figma.scopes": [
|
|
4834
|
+
"FONT_WEIGHT"
|
|
4835
|
+
]
|
|
4836
|
+
}
|
|
4837
|
+
},
|
|
4828
4838
|
"🔒/nav-item-selected-foreground-color-default": {
|
|
4829
|
-
"$value": "{
|
|
4839
|
+
"$value": "{color-neutral-950}",
|
|
4830
4840
|
"$type": "color",
|
|
4831
4841
|
"$description": "Used for the foreground of a selected navigation item in the default state.",
|
|
4832
4842
|
"$extensions": {
|
|
@@ -4836,7 +4846,7 @@
|
|
|
4836
4846
|
}
|
|
4837
4847
|
},
|
|
4838
4848
|
"🔒/nav-item-selected-foreground-color-hover": {
|
|
4839
|
-
"$value": "{
|
|
4849
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4840
4850
|
"$type": "color",
|
|
4841
4851
|
"$description": "Used for the foreground of a selected navigation item in the hover state.",
|
|
4842
4852
|
"$extensions": {
|
|
@@ -4846,7 +4856,7 @@
|
|
|
4846
4856
|
}
|
|
4847
4857
|
},
|
|
4848
4858
|
"🔒/nav-item-selected-foreground-color-focus": {
|
|
4849
|
-
"$value": "{
|
|
4859
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4850
4860
|
"$type": "color",
|
|
4851
4861
|
"$description": "Used for the foreground of a selected navigation item in the focus state.",
|
|
4852
4862
|
"$extensions": {
|
|
@@ -4856,7 +4866,7 @@
|
|
|
4856
4866
|
}
|
|
4857
4867
|
},
|
|
4858
4868
|
"🔒/nav-item-selected-foreground-color-active": {
|
|
4859
|
-
"$value": "{
|
|
4869
|
+
"$value": "{🔒/nav-item-foreground-color-active}",
|
|
4860
4870
|
"$type": "color",
|
|
4861
4871
|
"$description": "Used for the foreground of a selected navigation item in the active state.",
|
|
4862
4872
|
"$extensions": {
|
|
@@ -4866,7 +4876,7 @@
|
|
|
4866
4876
|
}
|
|
4867
4877
|
},
|
|
4868
4878
|
"🔒/nav-item-selected-background-color-default": {
|
|
4869
|
-
"$value": "{
|
|
4879
|
+
"$value": "{color-neutral-100}",
|
|
4870
4880
|
"$type": "color",
|
|
4871
4881
|
"$description": "Used for the background of a selected navigation item in the default state.",
|
|
4872
4882
|
"$extensions": {
|
|
@@ -4876,7 +4886,7 @@
|
|
|
4876
4886
|
}
|
|
4877
4887
|
},
|
|
4878
4888
|
"🔒/nav-item-selected-background-color-hover": {
|
|
4879
|
-
"$value": "{
|
|
4889
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4880
4890
|
"$type": "color",
|
|
4881
4891
|
"$description": "Used for the background of a selected navigation item in the hover state.",
|
|
4882
4892
|
"$extensions": {
|
|
@@ -4886,7 +4896,7 @@
|
|
|
4886
4896
|
}
|
|
4887
4897
|
},
|
|
4888
4898
|
"🔒/nav-item-selected-background-color-focus": {
|
|
4889
|
-
"$value": "{
|
|
4899
|
+
"$value": "{🔒/nav-item-background-color-focus}",
|
|
4890
4900
|
"$type": "color",
|
|
4891
4901
|
"$description": "Used for the background of a selected navigation item in the focus state.",
|
|
4892
4902
|
"$extensions": {
|
|
@@ -4896,7 +4906,7 @@
|
|
|
4896
4906
|
}
|
|
4897
4907
|
},
|
|
4898
4908
|
"🔒/nav-item-selected-background-color-active": {
|
|
4899
|
-
"$value": "{
|
|
4909
|
+
"$value": "{🔒/nav-item-background-color-active}",
|
|
4900
4910
|
"$type": "color",
|
|
4901
4911
|
"$description": "Used for the background of a selected navigation item in the active state.",
|
|
4902
4912
|
"$extensions": {
|
|
@@ -767,22 +767,23 @@ export const GL_MODAL_BORDER_RADIUS = '1rem';
|
|
|
767
767
|
export const GL_NAV_ITEM_BORDER_RADIUS = '0.5rem';
|
|
768
768
|
export const GL_NAV_ITEM_FONT_SIZE = '0.875rem';
|
|
769
769
|
export const GL_NAV_ITEM_FONT_WEIGHT = 425;
|
|
770
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_DEFAULT = '#
|
|
771
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_HOVER = '#
|
|
772
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_FOCUS = '#
|
|
773
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_ACTIVE = '#
|
|
770
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_DEFAULT = '#bfbfc3';
|
|
771
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_HOVER = '#fff';
|
|
772
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_FOCUS = '#fff';
|
|
773
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_ACTIVE = '#fff';
|
|
774
774
|
export const GL_NAV_ITEM_BACKGROUND_COLOR_DEFAULT = 'rgba(0, 0, 0, 0)';
|
|
775
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_HOVER = '
|
|
776
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_FOCUS = '
|
|
777
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_ACTIVE = '
|
|
778
|
-
export const
|
|
779
|
-
export const
|
|
780
|
-
export const
|
|
781
|
-
export const
|
|
782
|
-
export const
|
|
783
|
-
export const
|
|
784
|
-
export const
|
|
785
|
-
export const
|
|
775
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_HOVER = '#28272d';
|
|
776
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_FOCUS = '#28272d';
|
|
777
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_ACTIVE = '#18171d';
|
|
778
|
+
export const GL_NAV_ITEM_SELECTED_FONT_WEIGHT = 600;
|
|
779
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_DEFAULT = '#fff';
|
|
780
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_HOVER = '#fff';
|
|
781
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_FOCUS = '#fff';
|
|
782
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_ACTIVE = '#fff';
|
|
783
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_DEFAULT = '#28272d';
|
|
784
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_HOVER = '#28272d';
|
|
785
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_FOCUS = '#28272d';
|
|
786
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_ACTIVE = '#18171d';
|
|
786
787
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#63a6e9';
|
|
787
788
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#52b87a';
|
|
788
789
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#d99530';
|
|
@@ -767,22 +767,23 @@ export const GL_MODAL_BORDER_RADIUS = '1rem';
|
|
|
767
767
|
export const GL_NAV_ITEM_BORDER_RADIUS = '0.5rem';
|
|
768
768
|
export const GL_NAV_ITEM_FONT_SIZE = '0.875rem';
|
|
769
769
|
export const GL_NAV_ITEM_FONT_WEIGHT = 425;
|
|
770
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_DEFAULT = '#
|
|
771
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_HOVER = '#
|
|
772
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_FOCUS = '#
|
|
773
|
-
export const GL_NAV_ITEM_FOREGROUND_COLOR_ACTIVE = '#
|
|
770
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_DEFAULT = '#626168';
|
|
771
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_HOVER = '#18171d';
|
|
772
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_FOCUS = '#18171d';
|
|
773
|
+
export const GL_NAV_ITEM_FOREGROUND_COLOR_ACTIVE = '#18171d';
|
|
774
774
|
export const GL_NAV_ITEM_BACKGROUND_COLOR_DEFAULT = 'rgba(0, 0, 0, 0)';
|
|
775
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_HOVER = '
|
|
776
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_FOCUS = '
|
|
777
|
-
export const GL_NAV_ITEM_BACKGROUND_COLOR_ACTIVE = '
|
|
778
|
-
export const
|
|
779
|
-
export const
|
|
780
|
-
export const
|
|
781
|
-
export const
|
|
782
|
-
export const
|
|
783
|
-
export const
|
|
784
|
-
export const
|
|
785
|
-
export const
|
|
775
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_HOVER = '#dcdcde';
|
|
776
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_FOCUS = '#dcdcde';
|
|
777
|
+
export const GL_NAV_ITEM_BACKGROUND_COLOR_ACTIVE = '#bfbfc3';
|
|
778
|
+
export const GL_NAV_ITEM_SELECTED_FONT_WEIGHT = 600;
|
|
779
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_DEFAULT = '#18171d';
|
|
780
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_HOVER = '#18171d';
|
|
781
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_FOCUS = '#18171d';
|
|
782
|
+
export const GL_NAV_ITEM_SELECTED_FOREGROUND_COLOR_ACTIVE = '#18171d';
|
|
783
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_DEFAULT = '#dcdcde';
|
|
784
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_HOVER = '#dcdcde';
|
|
785
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_FOCUS = '#dcdcde';
|
|
786
|
+
export const GL_NAV_ITEM_SELECTED_BACKGROUND_COLOR_ACTIVE = '#bfbfc3';
|
|
786
787
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#1f75cb';
|
|
787
788
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#108548';
|
|
788
789
|
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#ab6100';
|