@gitlab/ui 126.0.2 → 126.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +9 -2
- package/dist/tokens/build/js/tokens.js +9 -2
- package/package.json +1 -1
- package/src/components/base/drawer/drawer.scss +3 -0
- package/src/tokens/build/css/tokens.css +9 -2
- package/src/tokens/build/css/tokens.dark.css +9 -2
- package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +201 -1
- package/src/tokens/build/docs/tokens-tailwind-docs.json +201 -1
- package/src/tokens/build/figma/contextual.tokens.json +18 -1
- package/src/tokens/build/figma/semantic.tokens.json +91 -4
- package/src/tokens/build/js/tokens.dark.js +8 -1
- package/src/tokens/build/js/tokens.js +8 -1
- package/src/tokens/build/json/tokens.dark.json +242 -3
- package/src/tokens/build/json/tokens.json +242 -3
- package/src/tokens/build/scss/_tokens.dark.scss +9 -2
- package/src/tokens/build/scss/_tokens.scss +9 -2
- package/src/tokens/build/scss/_tokens_custom_properties.scss +7 -0
- package/src/tokens/build/tailwind/tokens.cjs +9 -0
- package/src/tokens/contextual/drawer.tokens.json +16 -0
- package/src/tokens/contextual/modal.tokens.json +1 -1
- package/src/tokens/semantic/control.tokens.json +1 -4
- package/src/tokens/semantic/feedback.tokens.json +90 -0
|
@@ -933,29 +933,34 @@
|
|
|
933
933
|
--gl-control-border-color-hover: var(--gl-color-neutral-300); /** Used for form control (input, radio button, checkbox, textarea) border on hover. */
|
|
934
934
|
--gl-control-border-color-focus: var(--gl-color-neutral-50); /** Used for form control (input, radio button, checkbox, textarea) border on focus. */
|
|
935
935
|
--gl-control-border-color-disabled: var(--gl-color-neutral-800); /** Used for disabled form control (input, radio button, checkbox, textarea) border. */
|
|
936
|
-
--gl-control-border-color-error: var(--gl-color-red-300); /** Used for invalid form control (input, textarea) border. */
|
|
937
936
|
--gl-control-border-color-selected-default: var(--gl-color-blue-400); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border. */
|
|
938
937
|
--gl-control-border-color-selected-hover: var(--gl-color-blue-200); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover. */
|
|
939
938
|
--gl-control-border-color-selected-focus: var(--gl-color-blue-200); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus. */
|
|
940
939
|
--gl-control-indicator-color-selected: var(--gl-color-neutral-950); /** Used for checkbox and radio button state indicators. */
|
|
941
940
|
--gl-control-indicator-color-disabled: var(--gl-color-neutral-400); /** Used for disabled checkbox and radio button state indicators. */
|
|
942
941
|
--gl-feedback-strong-background-color: var(--gl-color-neutral-800); /** Used for a background associated with strong feedback like a tooltip or toast message. */
|
|
942
|
+
--gl-feedback-strong-border-color: var(--gl-color-neutral-300); /** Used for the border associated with strong feedback. */
|
|
943
943
|
--gl-feedback-strong-text-color: var(--gl-color-neutral-0); /** Used for text on a strong feedback background. */
|
|
944
944
|
--gl-feedback-strong-icon-color: var(--gl-color-neutral-0); /** Used for an icon on a strong feedback background. */
|
|
945
945
|
--gl-feedback-strong-link-color: var(--gl-color-blue-300); /** Used for a link on a strong feedback background. */
|
|
946
946
|
--gl-feedback-neutral-background-color: var(--gl-color-neutral-900); /** Used for the background of a neutral feedback item when there isn't a specific meaning or urgency. */
|
|
947
|
+
--gl-feedback-neutral-border-color: var(--gl-color-neutral-600); /** Used for the border of a neutral feedback item when there isn't a specific meaning or urgency. */
|
|
947
948
|
--gl-feedback-neutral-text-color: var(--gl-color-neutral-200); /** Used for the text of a neutral feedback item when there isn't a specific meaning or urgency. */
|
|
948
949
|
--gl-feedback-neutral-icon-color: var(--gl-color-neutral-300); /** Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency. */
|
|
949
950
|
--gl-feedback-info-background-color: var(--gl-color-blue-950); /** Used for the background of an informational feedback item when highlighting new information or a change that doesn't require immediate action. */
|
|
951
|
+
--gl-feedback-info-border-color: var(--gl-color-blue-600); /** Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action. */
|
|
950
952
|
--gl-feedback-info-text-color: var(--gl-color-blue-200); /** Used for the text of an informational feedback item when highlighting new information or a change that doesn't require immediate action. */
|
|
951
953
|
--gl-feedback-info-icon-color: var(--gl-color-blue-300); /** Used for the icon of an informational feedback item when highlighting new information or a change that doesn't require immediate action. */
|
|
952
954
|
--gl-feedback-success-background-color: var(--gl-color-green-900); /** Used for the background of a success feedback item when confirming the successful completion of a user-initiated action. */
|
|
955
|
+
--gl-feedback-success-border-color: var(--gl-color-green-600); /** Used for the border of a success feedback item when confirming the successful completion of a user-initiated action. */
|
|
953
956
|
--gl-feedback-success-text-color: var(--gl-color-green-200); /** Used for the text of a success feedback item when confirming the successful completion of a user-initiated action. */
|
|
954
957
|
--gl-feedback-success-icon-color: var(--gl-color-green-300); /** Used for the icon of a success feedback item when confirming the successful completion of a user-initiated action. */
|
|
955
958
|
--gl-feedback-warning-background-color: var(--gl-color-orange-900); /** Used for the background of a warning feedback item when notifying about a potential issue or sensitive information. */
|
|
959
|
+
--gl-feedback-warning-border-color: var(--gl-color-orange-600); /** Used for the border of a warning feedback item when notifying about a potential issue or sensitive information. */
|
|
956
960
|
--gl-feedback-warning-text-color: var(--gl-color-orange-200); /** Used for the text of a warning feedback item when notifying about a potential issue or sensitive information. */
|
|
957
961
|
--gl-feedback-warning-icon-color: var(--gl-color-orange-300); /** Used for the icon of a warning feedback item when notifying about a potential issue or sensitive information. */
|
|
958
962
|
--gl-feedback-danger-background-color: var(--gl-color-red-900); /** Used for the background of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention. */
|
|
963
|
+
--gl-feedback-danger-border-color: var(--gl-color-red-300); /** Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention. */
|
|
959
964
|
--gl-feedback-danger-text-color: var(--gl-color-red-200); /** Used for the text of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention. */
|
|
960
965
|
--gl-feedback-danger-icon-color: var(--gl-color-red-300); /** Used for the icon of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention. */
|
|
961
966
|
--gl-focus-ring-outer-color: var(--gl-color-blue-400); /** Used for the outer color portion of the focus ring. */
|
|
@@ -1159,6 +1164,7 @@
|
|
|
1159
1164
|
--gl-card-border-radius: var(--gl-border-radius-lg); /** Used for card border radius. */
|
|
1160
1165
|
--gl-chart-axis-text-color: var(--gl-text-color-subtle); /** Used in charts for the text color of axis titles and labels. */
|
|
1161
1166
|
--gl-datepicker-date-text-color-selected: var(--gl-control-indicator-color-selected); /** Used for the datepicker date text color state indicators. */
|
|
1167
|
+
--gl-drawer-border-radius: var(--gl-border-radius-2xl); /** Used for drawer border radius. */
|
|
1162
1168
|
--gl-dropdown-background-color: var(--gl-background-color-overlap); /** Used for the background of a dropdown. */
|
|
1163
1169
|
--gl-dropdown-border-color: var(--gl-border-color-default); /** Used for the border of a dropdown. */
|
|
1164
1170
|
--gl-dropdown-border-radius: var(--gl-border-radius-lg); /** Used for the border radius of a dropdown. */
|
|
@@ -1171,7 +1177,7 @@
|
|
|
1171
1177
|
--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. */
|
|
1172
1178
|
--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. */
|
|
1173
1179
|
--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. */
|
|
1174
|
-
--gl-modal-border-radius: var(--gl-border-radius-
|
|
1180
|
+
--gl-modal-border-radius: var(--gl-border-radius-2xl); /** Used for modal border radius. */
|
|
1175
1181
|
--gl-progress-bar-indicator-color-default: var(--gl-status-info-icon-color); /** Used for the indicator color for the primary progress-bar variant. */
|
|
1176
1182
|
--gl-progress-bar-indicator-color-success: var(--gl-status-success-icon-color); /** Used for the indicator color for the success progress-bar variant. */
|
|
1177
1183
|
--gl-progress-bar-indicator-color-warning: var(--gl-status-warning-icon-color); /** Used for the indicator color for the warning progress-bar variant. */
|
|
@@ -1211,6 +1217,7 @@
|
|
|
1211
1217
|
--gl-action-strong-confirm-border-color-hover: var(--gl-action-strong-confirm-border-color-default); /** Used for the border of a strong confirm action in the hover state. */
|
|
1212
1218
|
--gl-action-strong-neutral-background-color-focus: var(--gl-action-strong-neutral-background-color-hover); /** Used for the background of a strong neutral action in the focus state. */
|
|
1213
1219
|
--gl-action-strong-neutral-border-color-hover: var(--gl-action-strong-neutral-border-color-default); /** Used for the border of a strong neutral action in the hover state. */
|
|
1220
|
+
--gl-control-border-color-error: var(--gl-feedback-danger-border-color); /** Used for invalid form control (input, textarea) border. */
|
|
1214
1221
|
--gl-control-border-radius: var(--gl-border-radius-lg); /** Used for form control (input, radio button, checkbox, textarea) default border radius. */
|
|
1215
1222
|
--gl-control-text-color-error: var(--gl-text-color-danger); /** Used for the helper text when the input is invalid. */
|
|
1216
1223
|
--gl-control-text-color-valid: var(--gl-text-color-success); /** Used for the helper text when the input is valid. */
|
|
@@ -15774,6 +15774,206 @@
|
|
|
15774
15774
|
"cssWithValue": "var(--gl-border-color-section)"
|
|
15775
15775
|
}
|
|
15776
15776
|
},
|
|
15777
|
+
"feedback": {
|
|
15778
|
+
"strong": {
|
|
15779
|
+
"key": "{feedback.strong.border.color}",
|
|
15780
|
+
"$value": "#a4a3a8",
|
|
15781
|
+
"$type": "color",
|
|
15782
|
+
"$description": "Used for the border associated with strong feedback.",
|
|
15783
|
+
"$extensions": {
|
|
15784
|
+
"com.figma.scope": [
|
|
15785
|
+
"STROKE_COLOR"
|
|
15786
|
+
]
|
|
15787
|
+
},
|
|
15788
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15789
|
+
"isSource": true,
|
|
15790
|
+
"original": {
|
|
15791
|
+
"$value": "{color.neutral.300}",
|
|
15792
|
+
"$type": "color",
|
|
15793
|
+
"$description": "Used for the border associated with strong feedback.",
|
|
15794
|
+
"$extensions": {
|
|
15795
|
+
"com.figma.scope": [
|
|
15796
|
+
"STROKE_COLOR"
|
|
15797
|
+
]
|
|
15798
|
+
},
|
|
15799
|
+
"key": "{feedback.strong.border.color}"
|
|
15800
|
+
},
|
|
15801
|
+
"name": "FEEDBACK_STRONG_BORDER_COLOR",
|
|
15802
|
+
"attributes": {},
|
|
15803
|
+
"path": [
|
|
15804
|
+
"feedback",
|
|
15805
|
+
"strong",
|
|
15806
|
+
"border",
|
|
15807
|
+
"color"
|
|
15808
|
+
],
|
|
15809
|
+
"cssWithValue": "var(--gl-feedback-strong-border-color)"
|
|
15810
|
+
},
|
|
15811
|
+
"neutral": {
|
|
15812
|
+
"key": "{feedback.neutral.border.color}",
|
|
15813
|
+
"$value": "#626168",
|
|
15814
|
+
"$type": "color",
|
|
15815
|
+
"$description": "Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.",
|
|
15816
|
+
"$extensions": {
|
|
15817
|
+
"com.figma.scope": [
|
|
15818
|
+
"STROKE_COLOR"
|
|
15819
|
+
]
|
|
15820
|
+
},
|
|
15821
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15822
|
+
"isSource": true,
|
|
15823
|
+
"original": {
|
|
15824
|
+
"$value": "{color.neutral.600}",
|
|
15825
|
+
"$type": "color",
|
|
15826
|
+
"$description": "Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.",
|
|
15827
|
+
"$extensions": {
|
|
15828
|
+
"com.figma.scope": [
|
|
15829
|
+
"STROKE_COLOR"
|
|
15830
|
+
]
|
|
15831
|
+
},
|
|
15832
|
+
"key": "{feedback.neutral.border.color}"
|
|
15833
|
+
},
|
|
15834
|
+
"name": "FEEDBACK_NEUTRAL_BORDER_COLOR",
|
|
15835
|
+
"attributes": {},
|
|
15836
|
+
"path": [
|
|
15837
|
+
"feedback",
|
|
15838
|
+
"neutral",
|
|
15839
|
+
"border",
|
|
15840
|
+
"color"
|
|
15841
|
+
],
|
|
15842
|
+
"cssWithValue": "var(--gl-feedback-neutral-border-color)"
|
|
15843
|
+
},
|
|
15844
|
+
"info": {
|
|
15845
|
+
"key": "{feedback.info.border.color}",
|
|
15846
|
+
"$value": "#2f68b4",
|
|
15847
|
+
"$type": "color",
|
|
15848
|
+
"$description": "Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.",
|
|
15849
|
+
"$extensions": {
|
|
15850
|
+
"com.figma.scope": [
|
|
15851
|
+
"STROKE_COLOR"
|
|
15852
|
+
]
|
|
15853
|
+
},
|
|
15854
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15855
|
+
"isSource": true,
|
|
15856
|
+
"original": {
|
|
15857
|
+
"$value": "{color.blue.600}",
|
|
15858
|
+
"$type": "color",
|
|
15859
|
+
"$description": "Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.",
|
|
15860
|
+
"$extensions": {
|
|
15861
|
+
"com.figma.scope": [
|
|
15862
|
+
"STROKE_COLOR"
|
|
15863
|
+
]
|
|
15864
|
+
},
|
|
15865
|
+
"key": "{feedback.info.border.color}"
|
|
15866
|
+
},
|
|
15867
|
+
"name": "FEEDBACK_INFO_BORDER_COLOR",
|
|
15868
|
+
"attributes": {},
|
|
15869
|
+
"path": [
|
|
15870
|
+
"feedback",
|
|
15871
|
+
"info",
|
|
15872
|
+
"border",
|
|
15873
|
+
"color"
|
|
15874
|
+
],
|
|
15875
|
+
"cssWithValue": "var(--gl-feedback-info-border-color)"
|
|
15876
|
+
},
|
|
15877
|
+
"success": {
|
|
15878
|
+
"key": "{feedback.success.border.color}",
|
|
15879
|
+
"$value": "#2f7549",
|
|
15880
|
+
"$type": "color",
|
|
15881
|
+
"$description": "Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.",
|
|
15882
|
+
"$extensions": {
|
|
15883
|
+
"com.figma.scope": [
|
|
15884
|
+
"STROKE_COLOR"
|
|
15885
|
+
]
|
|
15886
|
+
},
|
|
15887
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15888
|
+
"isSource": true,
|
|
15889
|
+
"original": {
|
|
15890
|
+
"$value": "{color.green.600}",
|
|
15891
|
+
"$type": "color",
|
|
15892
|
+
"$description": "Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.",
|
|
15893
|
+
"$extensions": {
|
|
15894
|
+
"com.figma.scope": [
|
|
15895
|
+
"STROKE_COLOR"
|
|
15896
|
+
]
|
|
15897
|
+
},
|
|
15898
|
+
"key": "{feedback.success.border.color}"
|
|
15899
|
+
},
|
|
15900
|
+
"name": "FEEDBACK_SUCCESS_BORDER_COLOR",
|
|
15901
|
+
"attributes": {},
|
|
15902
|
+
"path": [
|
|
15903
|
+
"feedback",
|
|
15904
|
+
"success",
|
|
15905
|
+
"border",
|
|
15906
|
+
"color"
|
|
15907
|
+
],
|
|
15908
|
+
"cssWithValue": "var(--gl-feedback-success-border-color)"
|
|
15909
|
+
},
|
|
15910
|
+
"warning": {
|
|
15911
|
+
"key": "{feedback.warning.border.color}",
|
|
15912
|
+
"$value": "#995715",
|
|
15913
|
+
"$type": "color",
|
|
15914
|
+
"$description": "Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.",
|
|
15915
|
+
"$extensions": {
|
|
15916
|
+
"com.figma.scope": [
|
|
15917
|
+
"STROKE_COLOR"
|
|
15918
|
+
]
|
|
15919
|
+
},
|
|
15920
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15921
|
+
"isSource": true,
|
|
15922
|
+
"original": {
|
|
15923
|
+
"$value": "{color.orange.600}",
|
|
15924
|
+
"$type": "color",
|
|
15925
|
+
"$description": "Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.",
|
|
15926
|
+
"$extensions": {
|
|
15927
|
+
"com.figma.scope": [
|
|
15928
|
+
"STROKE_COLOR"
|
|
15929
|
+
]
|
|
15930
|
+
},
|
|
15931
|
+
"key": "{feedback.warning.border.color}"
|
|
15932
|
+
},
|
|
15933
|
+
"name": "FEEDBACK_WARNING_BORDER_COLOR",
|
|
15934
|
+
"attributes": {},
|
|
15935
|
+
"path": [
|
|
15936
|
+
"feedback",
|
|
15937
|
+
"warning",
|
|
15938
|
+
"border",
|
|
15939
|
+
"color"
|
|
15940
|
+
],
|
|
15941
|
+
"cssWithValue": "var(--gl-feedback-warning-border-color)"
|
|
15942
|
+
},
|
|
15943
|
+
"danger": {
|
|
15944
|
+
"key": "{feedback.danger.border.color}",
|
|
15945
|
+
"$value": "#f6806d",
|
|
15946
|
+
"$type": "color",
|
|
15947
|
+
"$description": "Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.",
|
|
15948
|
+
"$extensions": {
|
|
15949
|
+
"com.figma.scope": [
|
|
15950
|
+
"STROKE_COLOR"
|
|
15951
|
+
]
|
|
15952
|
+
},
|
|
15953
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15954
|
+
"isSource": true,
|
|
15955
|
+
"original": {
|
|
15956
|
+
"$value": "{color.red.300}",
|
|
15957
|
+
"$type": "color",
|
|
15958
|
+
"$description": "Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.",
|
|
15959
|
+
"$extensions": {
|
|
15960
|
+
"com.figma.scope": [
|
|
15961
|
+
"STROKE_COLOR"
|
|
15962
|
+
]
|
|
15963
|
+
},
|
|
15964
|
+
"key": "{feedback.danger.border.color}"
|
|
15965
|
+
},
|
|
15966
|
+
"name": "FEEDBACK_DANGER_BORDER_COLOR",
|
|
15967
|
+
"attributes": {},
|
|
15968
|
+
"path": [
|
|
15969
|
+
"feedback",
|
|
15970
|
+
"danger",
|
|
15971
|
+
"border",
|
|
15972
|
+
"color"
|
|
15973
|
+
],
|
|
15974
|
+
"cssWithValue": "var(--gl-feedback-danger-border-color)"
|
|
15975
|
+
}
|
|
15976
|
+
},
|
|
15777
15977
|
"dropdown": {
|
|
15778
15978
|
"key": "{dropdown.border.color}",
|
|
15779
15979
|
"$value": "#4c4b51",
|
|
@@ -15924,7 +16124,7 @@
|
|
|
15924
16124
|
"filePath": "src/tokens/semantic/control.tokens.json",
|
|
15925
16125
|
"isSource": true,
|
|
15926
16126
|
"original": {
|
|
15927
|
-
"$value": "{
|
|
16127
|
+
"$value": "{feedback.danger.border.color}",
|
|
15928
16128
|
"$type": "color",
|
|
15929
16129
|
"$description": "Used for invalid form control (input, textarea) border.",
|
|
15930
16130
|
"$extensions": {
|
|
@@ -15774,6 +15774,206 @@
|
|
|
15774
15774
|
"cssWithValue": "var(--gl-border-color-section)"
|
|
15775
15775
|
}
|
|
15776
15776
|
},
|
|
15777
|
+
"feedback": {
|
|
15778
|
+
"strong": {
|
|
15779
|
+
"key": "{feedback.strong.border.color}",
|
|
15780
|
+
"$value": "#050506",
|
|
15781
|
+
"$type": "color",
|
|
15782
|
+
"$description": "Used for the border associated with strong feedback.",
|
|
15783
|
+
"$extensions": {
|
|
15784
|
+
"com.figma.scope": [
|
|
15785
|
+
"STROKE_COLOR"
|
|
15786
|
+
]
|
|
15787
|
+
},
|
|
15788
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15789
|
+
"isSource": true,
|
|
15790
|
+
"original": {
|
|
15791
|
+
"$value": "{color.neutral.1000}",
|
|
15792
|
+
"$type": "color",
|
|
15793
|
+
"$description": "Used for the border associated with strong feedback.",
|
|
15794
|
+
"$extensions": {
|
|
15795
|
+
"com.figma.scope": [
|
|
15796
|
+
"STROKE_COLOR"
|
|
15797
|
+
]
|
|
15798
|
+
},
|
|
15799
|
+
"key": "{feedback.strong.border.color}"
|
|
15800
|
+
},
|
|
15801
|
+
"name": "FEEDBACK_STRONG_BORDER_COLOR",
|
|
15802
|
+
"attributes": {},
|
|
15803
|
+
"path": [
|
|
15804
|
+
"feedback",
|
|
15805
|
+
"strong",
|
|
15806
|
+
"border",
|
|
15807
|
+
"color"
|
|
15808
|
+
],
|
|
15809
|
+
"cssWithValue": "var(--gl-feedback-strong-border-color)"
|
|
15810
|
+
},
|
|
15811
|
+
"neutral": {
|
|
15812
|
+
"key": "{feedback.neutral.border.color}",
|
|
15813
|
+
"$value": "#bfbfc3",
|
|
15814
|
+
"$type": "color",
|
|
15815
|
+
"$description": "Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.",
|
|
15816
|
+
"$extensions": {
|
|
15817
|
+
"com.figma.scope": [
|
|
15818
|
+
"STROKE_COLOR"
|
|
15819
|
+
]
|
|
15820
|
+
},
|
|
15821
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15822
|
+
"isSource": true,
|
|
15823
|
+
"original": {
|
|
15824
|
+
"$value": "{color.neutral.200}",
|
|
15825
|
+
"$type": "color",
|
|
15826
|
+
"$description": "Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.",
|
|
15827
|
+
"$extensions": {
|
|
15828
|
+
"com.figma.scope": [
|
|
15829
|
+
"STROKE_COLOR"
|
|
15830
|
+
]
|
|
15831
|
+
},
|
|
15832
|
+
"key": "{feedback.neutral.border.color}"
|
|
15833
|
+
},
|
|
15834
|
+
"name": "FEEDBACK_NEUTRAL_BORDER_COLOR",
|
|
15835
|
+
"attributes": {},
|
|
15836
|
+
"path": [
|
|
15837
|
+
"feedback",
|
|
15838
|
+
"neutral",
|
|
15839
|
+
"border",
|
|
15840
|
+
"color"
|
|
15841
|
+
],
|
|
15842
|
+
"cssWithValue": "var(--gl-feedback-neutral-border-color)"
|
|
15843
|
+
},
|
|
15844
|
+
"info": {
|
|
15845
|
+
"key": "{feedback.info.border.color}",
|
|
15846
|
+
"$value": "#9dc7f1",
|
|
15847
|
+
"$type": "color",
|
|
15848
|
+
"$description": "Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.",
|
|
15849
|
+
"$extensions": {
|
|
15850
|
+
"com.figma.scope": [
|
|
15851
|
+
"STROKE_COLOR"
|
|
15852
|
+
]
|
|
15853
|
+
},
|
|
15854
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15855
|
+
"isSource": true,
|
|
15856
|
+
"original": {
|
|
15857
|
+
"$value": "{color.blue.200}",
|
|
15858
|
+
"$type": "color",
|
|
15859
|
+
"$description": "Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.",
|
|
15860
|
+
"$extensions": {
|
|
15861
|
+
"com.figma.scope": [
|
|
15862
|
+
"STROKE_COLOR"
|
|
15863
|
+
]
|
|
15864
|
+
},
|
|
15865
|
+
"key": "{feedback.info.border.color}"
|
|
15866
|
+
},
|
|
15867
|
+
"name": "FEEDBACK_INFO_BORDER_COLOR",
|
|
15868
|
+
"attributes": {},
|
|
15869
|
+
"path": [
|
|
15870
|
+
"feedback",
|
|
15871
|
+
"info",
|
|
15872
|
+
"border",
|
|
15873
|
+
"color"
|
|
15874
|
+
],
|
|
15875
|
+
"cssWithValue": "var(--gl-feedback-info-border-color)"
|
|
15876
|
+
},
|
|
15877
|
+
"success": {
|
|
15878
|
+
"key": "{feedback.success.border.color}",
|
|
15879
|
+
"$value": "#91d4a8",
|
|
15880
|
+
"$type": "color",
|
|
15881
|
+
"$description": "Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.",
|
|
15882
|
+
"$extensions": {
|
|
15883
|
+
"com.figma.scope": [
|
|
15884
|
+
"STROKE_COLOR"
|
|
15885
|
+
]
|
|
15886
|
+
},
|
|
15887
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15888
|
+
"isSource": true,
|
|
15889
|
+
"original": {
|
|
15890
|
+
"$value": "{color.green.200}",
|
|
15891
|
+
"$type": "color",
|
|
15892
|
+
"$description": "Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.",
|
|
15893
|
+
"$extensions": {
|
|
15894
|
+
"com.figma.scope": [
|
|
15895
|
+
"STROKE_COLOR"
|
|
15896
|
+
]
|
|
15897
|
+
},
|
|
15898
|
+
"key": "{feedback.success.border.color}"
|
|
15899
|
+
},
|
|
15900
|
+
"name": "FEEDBACK_SUCCESS_BORDER_COLOR",
|
|
15901
|
+
"attributes": {},
|
|
15902
|
+
"path": [
|
|
15903
|
+
"feedback",
|
|
15904
|
+
"success",
|
|
15905
|
+
"border",
|
|
15906
|
+
"color"
|
|
15907
|
+
],
|
|
15908
|
+
"cssWithValue": "var(--gl-feedback-success-border-color)"
|
|
15909
|
+
},
|
|
15910
|
+
"warning": {
|
|
15911
|
+
"key": "{feedback.warning.border.color}",
|
|
15912
|
+
"$value": "#e9be74",
|
|
15913
|
+
"$type": "color",
|
|
15914
|
+
"$description": "Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.",
|
|
15915
|
+
"$extensions": {
|
|
15916
|
+
"com.figma.scope": [
|
|
15917
|
+
"STROKE_COLOR"
|
|
15918
|
+
]
|
|
15919
|
+
},
|
|
15920
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15921
|
+
"isSource": true,
|
|
15922
|
+
"original": {
|
|
15923
|
+
"$value": "{color.orange.200}",
|
|
15924
|
+
"$type": "color",
|
|
15925
|
+
"$description": "Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.",
|
|
15926
|
+
"$extensions": {
|
|
15927
|
+
"com.figma.scope": [
|
|
15928
|
+
"STROKE_COLOR"
|
|
15929
|
+
]
|
|
15930
|
+
},
|
|
15931
|
+
"key": "{feedback.warning.border.color}"
|
|
15932
|
+
},
|
|
15933
|
+
"name": "FEEDBACK_WARNING_BORDER_COLOR",
|
|
15934
|
+
"attributes": {},
|
|
15935
|
+
"path": [
|
|
15936
|
+
"feedback",
|
|
15937
|
+
"warning",
|
|
15938
|
+
"border",
|
|
15939
|
+
"color"
|
|
15940
|
+
],
|
|
15941
|
+
"cssWithValue": "var(--gl-feedback-warning-border-color)"
|
|
15942
|
+
},
|
|
15943
|
+
"danger": {
|
|
15944
|
+
"key": "{feedback.danger.border.color}",
|
|
15945
|
+
"$value": "#dd2b0e",
|
|
15946
|
+
"$type": "color",
|
|
15947
|
+
"$description": "Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.",
|
|
15948
|
+
"$extensions": {
|
|
15949
|
+
"com.figma.scope": [
|
|
15950
|
+
"STROKE_COLOR"
|
|
15951
|
+
]
|
|
15952
|
+
},
|
|
15953
|
+
"filePath": "src/tokens/semantic/feedback.tokens.json",
|
|
15954
|
+
"isSource": true,
|
|
15955
|
+
"original": {
|
|
15956
|
+
"$value": "{color.red.500}",
|
|
15957
|
+
"$type": "color",
|
|
15958
|
+
"$description": "Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.",
|
|
15959
|
+
"$extensions": {
|
|
15960
|
+
"com.figma.scope": [
|
|
15961
|
+
"STROKE_COLOR"
|
|
15962
|
+
]
|
|
15963
|
+
},
|
|
15964
|
+
"key": "{feedback.danger.border.color}"
|
|
15965
|
+
},
|
|
15966
|
+
"name": "FEEDBACK_DANGER_BORDER_COLOR",
|
|
15967
|
+
"attributes": {},
|
|
15968
|
+
"path": [
|
|
15969
|
+
"feedback",
|
|
15970
|
+
"danger",
|
|
15971
|
+
"border",
|
|
15972
|
+
"color"
|
|
15973
|
+
],
|
|
15974
|
+
"cssWithValue": "var(--gl-feedback-danger-border-color)"
|
|
15975
|
+
}
|
|
15976
|
+
},
|
|
15777
15977
|
"dropdown": {
|
|
15778
15978
|
"key": "{dropdown.border.color}",
|
|
15779
15979
|
"$value": "#bfbfc3",
|
|
@@ -15924,7 +16124,7 @@
|
|
|
15924
16124
|
"filePath": "src/tokens/semantic/control.tokens.json",
|
|
15925
16125
|
"isSource": true,
|
|
15926
16126
|
"original": {
|
|
15927
|
-
"$value": "{
|
|
16127
|
+
"$value": "{feedback.danger.border.color}",
|
|
15928
16128
|
"$type": "color",
|
|
15929
16129
|
"$description": "Used for invalid form control (input, textarea) border.",
|
|
15930
16130
|
"$extensions": {
|
|
@@ -4321,6 +4321,23 @@
|
|
|
4321
4321
|
"com.gitlab.locked": true
|
|
4322
4322
|
}
|
|
4323
4323
|
},
|
|
4324
|
+
"drawer": {
|
|
4325
|
+
"border": {
|
|
4326
|
+
"radius": {
|
|
4327
|
+
"$value": "{border.radius.2xl}",
|
|
4328
|
+
"$type": "dimension",
|
|
4329
|
+
"$description": "Used for drawer border radius.",
|
|
4330
|
+
"$extensions": {
|
|
4331
|
+
"com.figma.scope": [
|
|
4332
|
+
"CORNER_RADIUS"
|
|
4333
|
+
]
|
|
4334
|
+
}
|
|
4335
|
+
}
|
|
4336
|
+
},
|
|
4337
|
+
"$extensions": {
|
|
4338
|
+
"com.gitlab.locked": true
|
|
4339
|
+
}
|
|
4340
|
+
},
|
|
4324
4341
|
"dropdown": {
|
|
4325
4342
|
"background": {
|
|
4326
4343
|
"color": {
|
|
@@ -5509,7 +5526,7 @@
|
|
|
5509
5526
|
"modal": {
|
|
5510
5527
|
"border": {
|
|
5511
5528
|
"radius": {
|
|
5512
|
-
"$value": "{border.radius.
|
|
5529
|
+
"$value": "{border.radius.2xl}",
|
|
5513
5530
|
"$type": "dimension",
|
|
5514
5531
|
"$description": "Used for modal border radius.",
|
|
5515
5532
|
"$extensions": {
|
|
@@ -1339,10 +1339,7 @@
|
|
|
1339
1339
|
}
|
|
1340
1340
|
},
|
|
1341
1341
|
"error": {
|
|
1342
|
-
"$value": {
|
|
1343
|
-
"default": "{color.red.500}",
|
|
1344
|
-
"dark": "{color.red.300}"
|
|
1345
|
-
},
|
|
1342
|
+
"$value": "{feedback.danger.border.color}",
|
|
1346
1343
|
"$type": "color",
|
|
1347
1344
|
"$description": "Used for invalid form control (input, textarea) border.",
|
|
1348
1345
|
"$extensions": {
|
|
@@ -1500,6 +1497,21 @@
|
|
|
1500
1497
|
}
|
|
1501
1498
|
}
|
|
1502
1499
|
},
|
|
1500
|
+
"border": {
|
|
1501
|
+
"color": {
|
|
1502
|
+
"$value": {
|
|
1503
|
+
"default": "{color.neutral.1000}",
|
|
1504
|
+
"dark": "{color.neutral.300}"
|
|
1505
|
+
},
|
|
1506
|
+
"$type": "color",
|
|
1507
|
+
"$description": "Used for the border associated with strong feedback.",
|
|
1508
|
+
"$extensions": {
|
|
1509
|
+
"com.figma.scope": [
|
|
1510
|
+
"STROKE_COLOR"
|
|
1511
|
+
]
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1503
1515
|
"text": {
|
|
1504
1516
|
"color": {
|
|
1505
1517
|
"$value": "{color.neutral.0}",
|
|
@@ -1555,6 +1567,21 @@
|
|
|
1555
1567
|
}
|
|
1556
1568
|
}
|
|
1557
1569
|
},
|
|
1570
|
+
"border": {
|
|
1571
|
+
"color": {
|
|
1572
|
+
"$value": {
|
|
1573
|
+
"default": "{color.neutral.200}",
|
|
1574
|
+
"dark": "{color.neutral.600}"
|
|
1575
|
+
},
|
|
1576
|
+
"$type": "color",
|
|
1577
|
+
"$description": "Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.",
|
|
1578
|
+
"$extensions": {
|
|
1579
|
+
"com.figma.scope": [
|
|
1580
|
+
"STROKE_COLOR"
|
|
1581
|
+
]
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
},
|
|
1558
1585
|
"text": {
|
|
1559
1586
|
"color": {
|
|
1560
1587
|
"$value": {
|
|
@@ -1604,6 +1631,21 @@
|
|
|
1604
1631
|
}
|
|
1605
1632
|
}
|
|
1606
1633
|
},
|
|
1634
|
+
"border": {
|
|
1635
|
+
"color": {
|
|
1636
|
+
"$value": {
|
|
1637
|
+
"default": "{color.blue.200}",
|
|
1638
|
+
"dark": "{color.blue.600}"
|
|
1639
|
+
},
|
|
1640
|
+
"$type": "color",
|
|
1641
|
+
"$description": "Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.",
|
|
1642
|
+
"$extensions": {
|
|
1643
|
+
"com.figma.scope": [
|
|
1644
|
+
"STROKE_COLOR"
|
|
1645
|
+
]
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1607
1649
|
"text": {
|
|
1608
1650
|
"color": {
|
|
1609
1651
|
"$value": {
|
|
@@ -1653,6 +1695,21 @@
|
|
|
1653
1695
|
}
|
|
1654
1696
|
}
|
|
1655
1697
|
},
|
|
1698
|
+
"border": {
|
|
1699
|
+
"color": {
|
|
1700
|
+
"$value": {
|
|
1701
|
+
"default": "{color.green.200}",
|
|
1702
|
+
"dark": "{color.green.600}"
|
|
1703
|
+
},
|
|
1704
|
+
"$type": "color",
|
|
1705
|
+
"$description": "Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.",
|
|
1706
|
+
"$extensions": {
|
|
1707
|
+
"com.figma.scope": [
|
|
1708
|
+
"STROKE_COLOR"
|
|
1709
|
+
]
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
1656
1713
|
"text": {
|
|
1657
1714
|
"color": {
|
|
1658
1715
|
"$value": {
|
|
@@ -1702,6 +1759,21 @@
|
|
|
1702
1759
|
}
|
|
1703
1760
|
}
|
|
1704
1761
|
},
|
|
1762
|
+
"border": {
|
|
1763
|
+
"color": {
|
|
1764
|
+
"$value": {
|
|
1765
|
+
"default": "{color.orange.200}",
|
|
1766
|
+
"dark": "{color.orange.600}"
|
|
1767
|
+
},
|
|
1768
|
+
"$type": "color",
|
|
1769
|
+
"$description": "Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.",
|
|
1770
|
+
"$extensions": {
|
|
1771
|
+
"com.figma.scope": [
|
|
1772
|
+
"STROKE_COLOR"
|
|
1773
|
+
]
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1705
1777
|
"text": {
|
|
1706
1778
|
"color": {
|
|
1707
1779
|
"$value": {
|
|
@@ -1751,6 +1823,21 @@
|
|
|
1751
1823
|
}
|
|
1752
1824
|
}
|
|
1753
1825
|
},
|
|
1826
|
+
"border": {
|
|
1827
|
+
"color": {
|
|
1828
|
+
"$value": {
|
|
1829
|
+
"default": "{color.red.500}",
|
|
1830
|
+
"dark": "{color.red.300}"
|
|
1831
|
+
},
|
|
1832
|
+
"$type": "color",
|
|
1833
|
+
"$description": "Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.",
|
|
1834
|
+
"$extensions": {
|
|
1835
|
+
"com.figma.scope": [
|
|
1836
|
+
"STROKE_COLOR"
|
|
1837
|
+
]
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1754
1841
|
"text": {
|
|
1755
1842
|
"color": {
|
|
1756
1843
|
"$value": {
|