@gitlab/ui 123.11.1 → 123.11.3
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/form/form_fields/form_fields.js +4 -14
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +5 -5
- package/dist/tokens/build/js/tokens.js +5 -5
- package/dist/tokens/css/tokens.css +5 -5
- package/dist/tokens/css/tokens.dark.css +5 -5
- package/dist/tokens/docs/tokens-tailwind-docs.dark.json +32 -32
- package/dist/tokens/docs/tokens-tailwind-docs.json +32 -32
- package/dist/tokens/figma/constants.tokens.json +12 -0
- package/dist/tokens/figma/semantic.tokens.json +0 -10
- package/dist/tokens/js/tokens.dark.js +5 -5
- package/dist/tokens/js/tokens.js +5 -5
- package/dist/tokens/json/tokens.dark.json +157 -157
- package/dist/tokens/json/tokens.json +157 -157
- package/dist/tokens/scss/_tokens.dark.scss +5 -5
- package/dist/tokens/scss/_tokens.scss +5 -5
- package/dist/tokens/scss/_tokens_custom_properties.scss +5 -5
- package/dist/tokens/tailwind/tokens.cjs +1 -1
- package/package.json +5 -5
- package/src/components/base/form/form_fields/form_fields.vue +4 -16
- package/src/tokens/build/css/tokens.css +5 -5
- package/src/tokens/build/css/tokens.dark.css +5 -5
- package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +32 -32
- package/src/tokens/build/docs/tokens-tailwind-docs.json +32 -32
- package/src/tokens/build/figma/constants.tokens.json +12 -0
- package/src/tokens/build/figma/semantic.tokens.json +0 -10
- package/src/tokens/build/js/tokens.dark.js +5 -5
- package/src/tokens/build/js/tokens.js +5 -5
- package/src/tokens/build/json/tokens.dark.json +157 -157
- package/src/tokens/build/json/tokens.json +157 -157
- package/src/tokens/build/scss/_tokens.dark.scss +5 -5
- package/src/tokens/build/scss/_tokens.scss +5 -5
- package/src/tokens/build/scss/_tokens_custom_properties.scss +5 -5
- package/src/tokens/build/tailwind/tokens.cjs +1 -1
- package/src/tokens/constant/border.tokens.json +12 -0
- package/src/tokens/semantic/border.tokens.json +0 -10
|
@@ -570,6 +570,10 @@ $gl-action-danger-background-color-active: rgba(174, 24, 0, 0.24); // Used for t
|
|
|
570
570
|
$gl-text-primary: #28272d; // Use text.color.default instead.
|
|
571
571
|
$gl-text-secondary: #737278; // Use text.color.subtle instead.
|
|
572
572
|
$gl-text-tertiary: #89888d; // Use text.color.disabled instead.
|
|
573
|
+
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
574
|
+
$gl-border-color-default: $gl-color-neutral-100; // Used for the default border color.
|
|
575
|
+
$gl-border-color-subtle: $gl-color-neutral-50; // Used for a subtle border in combination with the default background.
|
|
576
|
+
$gl-border-color-strong: $gl-color-neutral-200; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
573
577
|
$gl-border-radius-none: $gl-spacing-scale-0;
|
|
574
578
|
$gl-border-radius-xs: $gl-spacing-scale-px;
|
|
575
579
|
$gl-border-radius-sm: $gl-spacing-scale-1;
|
|
@@ -578,10 +582,6 @@ $gl-border-radius-lg: $gl-spacing-scale-3;
|
|
|
578
582
|
$gl-border-radius-xl: $gl-spacing-scale-4;
|
|
579
583
|
$gl-border-radius-2xl: $gl-spacing-scale-5;
|
|
580
584
|
$gl-border-radius-3xl: $gl-spacing-scale-6;
|
|
581
|
-
$gl-border-color-default: $gl-color-neutral-100; // Used for the default border color.
|
|
582
|
-
$gl-border-color-subtle: $gl-color-neutral-50; // Used for a subtle border in combination with the default background.
|
|
583
|
-
$gl-border-color-strong: $gl-color-neutral-200; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
584
|
-
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
585
585
|
$gl-font-size-base: $gl-font-size-md;
|
|
586
586
|
$gl-shadow-color-default: $gl-color-alpha-dark-16; // Used for the default shadow color.
|
|
587
587
|
$gl-alert-neutral-border-top-color: $gl-color-alpha-0; // Used for the border center color of a neutral alert.
|
|
@@ -934,8 +934,8 @@ $gl-text-color-warning: $gl-color-orange-600; // Used for text that requires cau
|
|
|
934
934
|
$gl-text-color-danger: $gl-color-red-600; // Used for text indicating a problem, critical state, destructive action, error, failure, removal, stop, or declination.
|
|
935
935
|
$gl-text-color-success: $gl-color-green-600; // Used for text indicating success, completion, approval, addition, or validity.
|
|
936
936
|
$gl-text-color-disabled: $gl-color-neutral-400; // Used for disabled text.
|
|
937
|
-
$gl-border-radius-default: $gl-border-radius-md;
|
|
938
937
|
$gl-border-color-section: $gl-border-color-default; // Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page.
|
|
938
|
+
$gl-border-radius-default: $gl-border-radius-md;
|
|
939
939
|
$gl-shadow-sm: 0 0 2px $gl-shadow-color-default, 0 1px 4px $gl-shadow-color-default; // Used for surfaces that need to indicate users can manually interact with them. For example, cards in issue board.
|
|
940
940
|
$gl-shadow-md: 0 0 1px $gl-shadow-color-default, 0 0 2px $gl-shadow-color-default, 0 2px 8px $gl-shadow-color-default; // Used for surfaces that need boundary definition and appear on hover. For example, popovers.
|
|
941
941
|
$gl-shadow-lg: 0 0 2px $gl-shadow-color-default, 0 0 2px $gl-shadow-color-default, 0 4px 12px $gl-shadow-color-default; // Used for large surfaces that present additional context to the user.
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
$gl-border-color-transparent: var(--gl-border-color-transparent);
|
|
6
|
+
$gl-border-color-default: var(--gl-border-color-default);
|
|
7
|
+
$gl-border-color-subtle: var(--gl-border-color-subtle);
|
|
8
|
+
$gl-border-color-strong: var(--gl-border-color-strong);
|
|
9
|
+
$gl-border-color-section: var(--gl-border-color-section);
|
|
5
10
|
$gl-border-radius-none: var(--gl-border-radius-none);
|
|
6
11
|
$gl-border-radius-xs: var(--gl-border-radius-xs);
|
|
7
12
|
$gl-border-radius-sm: var(--gl-border-radius-sm);
|
|
@@ -12,11 +17,6 @@ $gl-border-radius-2xl: var(--gl-border-radius-2xl);
|
|
|
12
17
|
$gl-border-radius-3xl: var(--gl-border-radius-3xl);
|
|
13
18
|
$gl-border-radius-full: var(--gl-border-radius-full);
|
|
14
19
|
$gl-border-radius-default: var(--gl-border-radius-default);
|
|
15
|
-
$gl-border-color-default: var(--gl-border-color-default);
|
|
16
|
-
$gl-border-color-subtle: var(--gl-border-color-subtle);
|
|
17
|
-
$gl-border-color-strong: var(--gl-border-color-strong);
|
|
18
|
-
$gl-border-color-section: var(--gl-border-color-section);
|
|
19
|
-
$gl-border-color-transparent: var(--gl-border-color-transparent);
|
|
20
20
|
$gl-color-alpha-0: var(--gl-color-alpha-0);
|
|
21
21
|
$gl-color-alpha-dark-2: var(--gl-color-alpha-dark-2);
|
|
22
22
|
$gl-color-alpha-dark-4: var(--gl-color-alpha-dark-4);
|
|
@@ -239,11 +239,11 @@ const backgroundColors = {
|
|
|
239
239
|
overlay: 'var(--gl-background-color-overlay)',
|
|
240
240
|
};
|
|
241
241
|
const borderColors = {
|
|
242
|
+
transparent: 'var(--gl-border-color-transparent)',
|
|
242
243
|
default: 'var(--gl-border-color-default)',
|
|
243
244
|
subtle: 'var(--gl-border-color-subtle)',
|
|
244
245
|
strong: 'var(--gl-border-color-strong)',
|
|
245
246
|
section: 'var(--gl-border-color-section)',
|
|
246
|
-
transparent: 'var(--gl-border-color-transparent)',
|
|
247
247
|
};
|
|
248
248
|
const iconColors = {
|
|
249
249
|
default: 'var(--gl-icon-color-default)',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "123.11.
|
|
3
|
+
"version": "123.11.3",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -94,16 +94,16 @@
|
|
|
94
94
|
"rollup-plugin-vue/@vue/component-compiler/postcss-modules-sync/generic-names/loader-utils": "3.3.1"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
|
-
"@babel/core": "^7.28.
|
|
97
|
+
"@babel/core": "^7.28.5",
|
|
98
98
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
99
99
|
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
100
|
-
"@babel/preset-env": "^7.28.
|
|
101
|
-
"@babel/preset-react": "^7.
|
|
100
|
+
"@babel/preset-env": "^7.28.5",
|
|
101
|
+
"@babel/preset-react": "^7.28.5",
|
|
102
102
|
"@cypress/grep": "^4.1.1",
|
|
103
103
|
"@gitlab/fonts": "^1.3.1",
|
|
104
104
|
"@gitlab/svgs": "*",
|
|
105
105
|
"@jest/test-sequencer": "30.2.0",
|
|
106
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
106
|
+
"@rollup/plugin-commonjs": "^28.0.8",
|
|
107
107
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
108
108
|
"@rollup/plugin-replace": "^6.0.2",
|
|
109
109
|
"@storybook/addon-a11y": "^7.6.20",
|
|
@@ -67,7 +67,6 @@ export default {
|
|
|
67
67
|
return {
|
|
68
68
|
fieldDirtyStatuses: {},
|
|
69
69
|
fieldValidations: {},
|
|
70
|
-
fieldIds: {},
|
|
71
70
|
};
|
|
72
71
|
},
|
|
73
72
|
computed: {
|
|
@@ -99,7 +98,7 @@ export default {
|
|
|
99
98
|
},
|
|
100
99
|
fieldsToRender() {
|
|
101
100
|
return mapValues(this.fields, (field, fieldName) => {
|
|
102
|
-
const id =
|
|
101
|
+
const id = uniqueId('gl-form-field-');
|
|
103
102
|
|
|
104
103
|
const inputSlotName = `input(${fieldName})`;
|
|
105
104
|
const groupPassthroughSlotName = `group(${fieldName})-`;
|
|
@@ -174,18 +173,6 @@ export default {
|
|
|
174
173
|
|
|
175
174
|
return val;
|
|
176
175
|
},
|
|
177
|
-
memoizeAndReturnFieldId(field, fieldName) {
|
|
178
|
-
const memoizedId = this.fieldIds[fieldName];
|
|
179
|
-
|
|
180
|
-
if (memoizedId) {
|
|
181
|
-
return memoizedId;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
const id = field.id || uniqueId('gl-form-field-');
|
|
185
|
-
this.fieldIds[fieldName] = id;
|
|
186
|
-
|
|
187
|
-
return id;
|
|
188
|
-
},
|
|
189
176
|
onFieldValidationUpdate(fieldName, invalidFeedback) {
|
|
190
177
|
this.fieldValidations = setObjectProperty(this.fieldValidations, fieldName, invalidFeedback);
|
|
191
178
|
|
|
@@ -234,7 +221,8 @@ export default {
|
|
|
234
221
|
|
|
235
222
|
<template>
|
|
236
223
|
<div>
|
|
237
|
-
<
|
|
224
|
+
<template v-for="(field, fieldName) in fieldsToRender">
|
|
225
|
+
<!-- eslint-disable-next-line vue/valid-v-for -->
|
|
238
226
|
<gl-form-group
|
|
239
227
|
v-bind="field.groupAttrs"
|
|
240
228
|
:label="field.label"
|
|
@@ -270,6 +258,6 @@ export default {
|
|
|
270
258
|
</gl-form-group>
|
|
271
259
|
<!-- @slot Can be used to add content the form group of a field. The name of the slot is `after(<fieldName>)`.-->
|
|
272
260
|
<slot :name="field.afterSlotName"></slot>
|
|
273
|
-
</
|
|
261
|
+
</template>
|
|
274
262
|
</div>
|
|
275
263
|
</template>
|
|
@@ -572,6 +572,10 @@
|
|
|
572
572
|
--gl-text-primary: #28272d; /** Use text.color.default instead. */
|
|
573
573
|
--gl-text-secondary: #737278; /** Use text.color.subtle instead. */
|
|
574
574
|
--gl-text-tertiary: #89888d; /** Use text.color.disabled instead. */
|
|
575
|
+
--gl-border-color-transparent: var(--gl-color-alpha-0); /** Used when a border needs to be present, but not visibly perceived. */
|
|
576
|
+
--gl-border-color-default: var(--gl-color-neutral-100); /** Used for the default border color. */
|
|
577
|
+
--gl-border-color-subtle: var(--gl-color-neutral-50); /** Used for a subtle border in combination with the default background. */
|
|
578
|
+
--gl-border-color-strong: var(--gl-color-neutral-200); /** Used for a distinct border that emphasizes an edge or boundaries. */
|
|
575
579
|
--gl-border-radius-none: var(--gl-spacing-scale-0);
|
|
576
580
|
--gl-border-radius-xs: var(--gl-spacing-scale-px);
|
|
577
581
|
--gl-border-radius-sm: var(--gl-spacing-scale-1);
|
|
@@ -580,10 +584,6 @@
|
|
|
580
584
|
--gl-border-radius-xl: var(--gl-spacing-scale-4);
|
|
581
585
|
--gl-border-radius-2xl: var(--gl-spacing-scale-5);
|
|
582
586
|
--gl-border-radius-3xl: var(--gl-spacing-scale-6);
|
|
583
|
-
--gl-border-color-default: var(--gl-color-neutral-100); /** Used for the default border color. */
|
|
584
|
-
--gl-border-color-subtle: var(--gl-color-neutral-50); /** Used for a subtle border in combination with the default background. */
|
|
585
|
-
--gl-border-color-strong: var(--gl-color-neutral-200); /** Used for a distinct border that emphasizes an edge or boundaries. */
|
|
586
|
-
--gl-border-color-transparent: var(--gl-color-alpha-0); /** Used when a border needs to be present, but not visibly perceived. */
|
|
587
587
|
--gl-font-size-base: var(--gl-font-size-md);
|
|
588
588
|
--gl-shadow-color-default: var(--gl-color-alpha-dark-16); /** Used for the default shadow color. */
|
|
589
589
|
--gl-alert-neutral-border-top-color: var(--gl-color-alpha-0); /** Used for the border center color of a neutral alert. */
|
|
@@ -936,8 +936,8 @@
|
|
|
936
936
|
--gl-text-color-danger: var(--gl-color-red-600); /** Used for text indicating a problem, critical state, destructive action, error, failure, removal, stop, or declination. */
|
|
937
937
|
--gl-text-color-success: var(--gl-color-green-600); /** Used for text indicating success, completion, approval, addition, or validity. */
|
|
938
938
|
--gl-text-color-disabled: var(--gl-color-neutral-400); /** Used for disabled text. */
|
|
939
|
-
--gl-border-radius-default: var(--gl-border-radius-md);
|
|
940
939
|
--gl-border-color-section: var(--gl-border-color-default); /** Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page. */
|
|
940
|
+
--gl-border-radius-default: var(--gl-border-radius-md);
|
|
941
941
|
--gl-shadow-sm: 0 0 2px var(--gl-shadow-color-default), 0 1px 4px var(--gl-shadow-color-default); /** Used for surfaces that need to indicate users can manually interact with them. For example, cards in issue board. */
|
|
942
942
|
--gl-shadow-md: 0 0 1px var(--gl-shadow-color-default), 0 0 2px var(--gl-shadow-color-default), 0 2px 8px var(--gl-shadow-color-default); /** Used for surfaces that need boundary definition and appear on hover. For example, popovers. */
|
|
943
943
|
--gl-shadow-lg: 0 0 2px var(--gl-shadow-color-default), 0 0 2px var(--gl-shadow-color-default), 0 4px 12px var(--gl-shadow-color-default); /** Used for large surfaces that present additional context to the user. */
|
|
@@ -583,6 +583,10 @@
|
|
|
583
583
|
--gl-text-primary: #ececef; /** Use text.color.default instead. */
|
|
584
584
|
--gl-text-secondary: #89888d; /** Use text.color.subtle instead. */
|
|
585
585
|
--gl-text-tertiary: #737278; /** Use text.color.disabled instead. */
|
|
586
|
+
--gl-border-color-transparent: var(--gl-color-alpha-0); /** Used when a border needs to be present, but not visibly perceived. */
|
|
587
|
+
--gl-border-color-default: var(--gl-color-neutral-700); /** Used for the default border color. */
|
|
588
|
+
--gl-border-color-subtle: var(--gl-color-neutral-800); /** Used for a subtle border in combination with the default background. */
|
|
589
|
+
--gl-border-color-strong: var(--gl-color-neutral-600); /** Used for a distinct border that emphasizes an edge or boundaries. */
|
|
586
590
|
--gl-border-radius-none: var(--gl-spacing-scale-0);
|
|
587
591
|
--gl-border-radius-xs: var(--gl-spacing-scale-px);
|
|
588
592
|
--gl-border-radius-sm: var(--gl-spacing-scale-1);
|
|
@@ -591,10 +595,6 @@
|
|
|
591
595
|
--gl-border-radius-xl: var(--gl-spacing-scale-4);
|
|
592
596
|
--gl-border-radius-2xl: var(--gl-spacing-scale-5);
|
|
593
597
|
--gl-border-radius-3xl: var(--gl-spacing-scale-6);
|
|
594
|
-
--gl-border-color-default: var(--gl-color-neutral-700); /** Used for the default border color. */
|
|
595
|
-
--gl-border-color-subtle: var(--gl-color-neutral-800); /** Used for a subtle border in combination with the default background. */
|
|
596
|
-
--gl-border-color-strong: var(--gl-color-neutral-600); /** Used for a distinct border that emphasizes an edge or boundaries. */
|
|
597
|
-
--gl-border-color-transparent: var(--gl-color-alpha-0); /** Used when a border needs to be present, but not visibly perceived. */
|
|
598
598
|
--gl-font-size-base: var(--gl-font-size-md);
|
|
599
599
|
--gl-shadow-color-default: var(--gl-color-alpha-dark-40); /** Used for the default shadow color. */
|
|
600
600
|
--gl-alert-neutral-border-top-color: var(--gl-color-neutral-400); /** Used for the border center color of a neutral alert. */
|
|
@@ -953,8 +953,8 @@
|
|
|
953
953
|
--gl-text-color-danger: var(--gl-color-red-300); /** Used for text indicating a problem, critical state, destructive action, error, failure, removal, stop, or declination. */
|
|
954
954
|
--gl-text-color-success: var(--gl-color-green-300); /** Used for text indicating success, completion, approval, addition, or validity. */
|
|
955
955
|
--gl-text-color-disabled: var(--gl-color-neutral-400); /** Used for disabled text. */
|
|
956
|
-
--gl-border-radius-default: var(--gl-border-radius-md);
|
|
957
956
|
--gl-border-color-section: var(--gl-background-color-default); /** Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page. */
|
|
957
|
+
--gl-border-radius-default: var(--gl-border-radius-md);
|
|
958
958
|
--gl-shadow-sm: 0 0 2px var(--gl-shadow-color-default), 0 1px 4px var(--gl-shadow-color-default); /** Used for surfaces that need to indicate users can manually interact with them. For example, cards in issue board. */
|
|
959
959
|
--gl-shadow-md: 0 0 1px var(--gl-shadow-color-default), 0 0 2px var(--gl-shadow-color-default), 0 2px 8px var(--gl-shadow-color-default); /** Used for surfaces that need boundary definition and appear on hover. For example, popovers. */
|
|
960
960
|
--gl-shadow-lg: 0 0 2px var(--gl-shadow-color-default), 0 0 2px var(--gl-shadow-color-default), 0 4px 12px var(--gl-shadow-color-default); /** Used for large surfaces that present additional context to the user. */
|
|
@@ -15613,6 +15613,38 @@
|
|
|
15613
15613
|
"cssWithValue": "var(--black)"
|
|
15614
15614
|
},
|
|
15615
15615
|
"color": {
|
|
15616
|
+
"transparent": {
|
|
15617
|
+
"key": "{border.color.transparent}",
|
|
15618
|
+
"$value": "transparent",
|
|
15619
|
+
"$type": "color",
|
|
15620
|
+
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15621
|
+
"$extensions": {
|
|
15622
|
+
"com.figma.scope": [
|
|
15623
|
+
"ALL_SCOPES"
|
|
15624
|
+
]
|
|
15625
|
+
},
|
|
15626
|
+
"filePath": "src/tokens/constant/border.tokens.json",
|
|
15627
|
+
"isSource": true,
|
|
15628
|
+
"original": {
|
|
15629
|
+
"$value": "{color.alpha.0}",
|
|
15630
|
+
"$type": "color",
|
|
15631
|
+
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15632
|
+
"$extensions": {
|
|
15633
|
+
"com.figma.scope": [
|
|
15634
|
+
"ALL_SCOPES"
|
|
15635
|
+
]
|
|
15636
|
+
},
|
|
15637
|
+
"key": "{border.color.transparent}"
|
|
15638
|
+
},
|
|
15639
|
+
"name": "BORDER_COLOR_TRANSPARENT",
|
|
15640
|
+
"attributes": {},
|
|
15641
|
+
"path": [
|
|
15642
|
+
"border",
|
|
15643
|
+
"color",
|
|
15644
|
+
"transparent"
|
|
15645
|
+
],
|
|
15646
|
+
"cssWithValue": "var(--gl-border-color-transparent)"
|
|
15647
|
+
},
|
|
15616
15648
|
"default": {
|
|
15617
15649
|
"key": "{border.color.default}",
|
|
15618
15650
|
"$value": "#4c4b51",
|
|
@@ -15740,38 +15772,6 @@
|
|
|
15740
15772
|
"section"
|
|
15741
15773
|
],
|
|
15742
15774
|
"cssWithValue": "var(--gl-border-color-section)"
|
|
15743
|
-
},
|
|
15744
|
-
"transparent": {
|
|
15745
|
-
"key": "{border.color.transparent}",
|
|
15746
|
-
"$value": "transparent",
|
|
15747
|
-
"$type": "color",
|
|
15748
|
-
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15749
|
-
"$extensions": {
|
|
15750
|
-
"com.figma.scope": [
|
|
15751
|
-
"ALL_SCOPES"
|
|
15752
|
-
]
|
|
15753
|
-
},
|
|
15754
|
-
"filePath": "src/tokens/semantic/border.tokens.json",
|
|
15755
|
-
"isSource": true,
|
|
15756
|
-
"original": {
|
|
15757
|
-
"$value": "{color.alpha.0}",
|
|
15758
|
-
"$type": "color",
|
|
15759
|
-
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15760
|
-
"$extensions": {
|
|
15761
|
-
"com.figma.scope": [
|
|
15762
|
-
"ALL_SCOPES"
|
|
15763
|
-
]
|
|
15764
|
-
},
|
|
15765
|
-
"key": "{border.color.transparent}"
|
|
15766
|
-
},
|
|
15767
|
-
"name": "BORDER_COLOR_TRANSPARENT",
|
|
15768
|
-
"attributes": {},
|
|
15769
|
-
"path": [
|
|
15770
|
-
"border",
|
|
15771
|
-
"color",
|
|
15772
|
-
"transparent"
|
|
15773
|
-
],
|
|
15774
|
-
"cssWithValue": "var(--gl-border-color-transparent)"
|
|
15775
15775
|
}
|
|
15776
15776
|
},
|
|
15777
15777
|
"dropdown": {
|
|
@@ -15613,6 +15613,38 @@
|
|
|
15613
15613
|
"cssWithValue": "var(--black)"
|
|
15614
15614
|
},
|
|
15615
15615
|
"color": {
|
|
15616
|
+
"transparent": {
|
|
15617
|
+
"key": "{border.color.transparent}",
|
|
15618
|
+
"$value": "transparent",
|
|
15619
|
+
"$type": "color",
|
|
15620
|
+
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15621
|
+
"$extensions": {
|
|
15622
|
+
"com.figma.scope": [
|
|
15623
|
+
"ALL_SCOPES"
|
|
15624
|
+
]
|
|
15625
|
+
},
|
|
15626
|
+
"filePath": "src/tokens/constant/border.tokens.json",
|
|
15627
|
+
"isSource": true,
|
|
15628
|
+
"original": {
|
|
15629
|
+
"$value": "{color.alpha.0}",
|
|
15630
|
+
"$type": "color",
|
|
15631
|
+
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15632
|
+
"$extensions": {
|
|
15633
|
+
"com.figma.scope": [
|
|
15634
|
+
"ALL_SCOPES"
|
|
15635
|
+
]
|
|
15636
|
+
},
|
|
15637
|
+
"key": "{border.color.transparent}"
|
|
15638
|
+
},
|
|
15639
|
+
"name": "BORDER_COLOR_TRANSPARENT",
|
|
15640
|
+
"attributes": {},
|
|
15641
|
+
"path": [
|
|
15642
|
+
"border",
|
|
15643
|
+
"color",
|
|
15644
|
+
"transparent"
|
|
15645
|
+
],
|
|
15646
|
+
"cssWithValue": "var(--gl-border-color-transparent)"
|
|
15647
|
+
},
|
|
15616
15648
|
"default": {
|
|
15617
15649
|
"key": "{border.color.default}",
|
|
15618
15650
|
"$value": "#dcdcde",
|
|
@@ -15740,38 +15772,6 @@
|
|
|
15740
15772
|
"section"
|
|
15741
15773
|
],
|
|
15742
15774
|
"cssWithValue": "var(--gl-border-color-section)"
|
|
15743
|
-
},
|
|
15744
|
-
"transparent": {
|
|
15745
|
-
"key": "{border.color.transparent}",
|
|
15746
|
-
"$value": "transparent",
|
|
15747
|
-
"$type": "color",
|
|
15748
|
-
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15749
|
-
"$extensions": {
|
|
15750
|
-
"com.figma.scope": [
|
|
15751
|
-
"ALL_SCOPES"
|
|
15752
|
-
]
|
|
15753
|
-
},
|
|
15754
|
-
"filePath": "src/tokens/semantic/border.tokens.json",
|
|
15755
|
-
"isSource": true,
|
|
15756
|
-
"original": {
|
|
15757
|
-
"$value": "{color.alpha.0}",
|
|
15758
|
-
"$type": "color",
|
|
15759
|
-
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
15760
|
-
"$extensions": {
|
|
15761
|
-
"com.figma.scope": [
|
|
15762
|
-
"ALL_SCOPES"
|
|
15763
|
-
]
|
|
15764
|
-
},
|
|
15765
|
-
"key": "{border.color.transparent}"
|
|
15766
|
-
},
|
|
15767
|
-
"name": "BORDER_COLOR_TRANSPARENT",
|
|
15768
|
-
"attributes": {},
|
|
15769
|
-
"path": [
|
|
15770
|
-
"border",
|
|
15771
|
-
"color",
|
|
15772
|
-
"transparent"
|
|
15773
|
-
],
|
|
15774
|
-
"cssWithValue": "var(--gl-border-color-transparent)"
|
|
15775
15775
|
}
|
|
15776
15776
|
},
|
|
15777
15777
|
"dropdown": {
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"border": {
|
|
3
|
+
"color": {
|
|
4
|
+
"transparent": {
|
|
5
|
+
"$value": "{color.alpha.0}",
|
|
6
|
+
"$type": "color",
|
|
7
|
+
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
8
|
+
"$extensions": {
|
|
9
|
+
"com.figma.scope": [
|
|
10
|
+
"ALL_SCOPES"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
3
15
|
"radius": {
|
|
4
16
|
"none": {
|
|
5
17
|
"$value": "{spacing-scale.0}",
|
|
@@ -1164,16 +1164,6 @@
|
|
|
1164
1164
|
"STROKE_COLOR"
|
|
1165
1165
|
]
|
|
1166
1166
|
}
|
|
1167
|
-
},
|
|
1168
|
-
"transparent": {
|
|
1169
|
-
"$value": "{color.alpha.0}",
|
|
1170
|
-
"$type": "color",
|
|
1171
|
-
"$description": "Used when a border needs to be present, but not visibly perceived.",
|
|
1172
|
-
"$extensions": {
|
|
1173
|
-
"com.figma.scope": [
|
|
1174
|
-
"ALL_SCOPES"
|
|
1175
|
-
]
|
|
1176
|
-
}
|
|
1177
1167
|
}
|
|
1178
1168
|
},
|
|
1179
1169
|
"radius": {
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
export const GL_BORDER_COLOR_TRANSPARENT = 'transparent';
|
|
6
|
+
export const GL_BORDER_COLOR_DEFAULT = '#4c4b51';
|
|
7
|
+
export const GL_BORDER_COLOR_SUBTLE = '#3a383f';
|
|
8
|
+
export const GL_BORDER_COLOR_STRONG = '#626168';
|
|
9
|
+
export const GL_BORDER_COLOR_SECTION = '#18171d';
|
|
5
10
|
export const GL_BORDER_RADIUS_NONE = '0';
|
|
6
11
|
export const GL_BORDER_RADIUS_XS = '1px';
|
|
7
12
|
export const GL_BORDER_RADIUS_SM = '0.125rem';
|
|
@@ -12,11 +17,6 @@ export const GL_BORDER_RADIUS_2XL = '1rem';
|
|
|
12
17
|
export const GL_BORDER_RADIUS_3XL = '1.5rem';
|
|
13
18
|
export const GL_BORDER_RADIUS_FULL = '9999px';
|
|
14
19
|
export const GL_BORDER_RADIUS_DEFAULT = '0.25rem';
|
|
15
|
-
export const GL_BORDER_COLOR_DEFAULT = '#4c4b51';
|
|
16
|
-
export const GL_BORDER_COLOR_SUBTLE = '#3a383f';
|
|
17
|
-
export const GL_BORDER_COLOR_STRONG = '#626168';
|
|
18
|
-
export const GL_BORDER_COLOR_SECTION = '#18171d';
|
|
19
|
-
export const GL_BORDER_COLOR_TRANSPARENT = 'transparent';
|
|
20
20
|
export const GL_COLOR_ALPHA_0 = 'transparent';
|
|
21
21
|
export const GL_COLOR_ALPHA_DARK_2 = 'rgba(05, 05, 06, 0.02)';
|
|
22
22
|
export const GL_COLOR_ALPHA_DARK_4 = 'rgba(05, 05, 06, 0.04)';
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
export const GL_BORDER_COLOR_TRANSPARENT = 'transparent';
|
|
6
|
+
export const GL_BORDER_COLOR_DEFAULT = '#dcdcde';
|
|
7
|
+
export const GL_BORDER_COLOR_SUBTLE = '#ececef';
|
|
8
|
+
export const GL_BORDER_COLOR_STRONG = '#bfbfc3';
|
|
9
|
+
export const GL_BORDER_COLOR_SECTION = '#dcdcde';
|
|
5
10
|
export const GL_BORDER_RADIUS_NONE = '0';
|
|
6
11
|
export const GL_BORDER_RADIUS_XS = '1px';
|
|
7
12
|
export const GL_BORDER_RADIUS_SM = '0.125rem';
|
|
@@ -12,11 +17,6 @@ export const GL_BORDER_RADIUS_2XL = '1rem';
|
|
|
12
17
|
export const GL_BORDER_RADIUS_3XL = '1.5rem';
|
|
13
18
|
export const GL_BORDER_RADIUS_FULL = '9999px';
|
|
14
19
|
export const GL_BORDER_RADIUS_DEFAULT = '0.25rem';
|
|
15
|
-
export const GL_BORDER_COLOR_DEFAULT = '#dcdcde';
|
|
16
|
-
export const GL_BORDER_COLOR_SUBTLE = '#ececef';
|
|
17
|
-
export const GL_BORDER_COLOR_STRONG = '#bfbfc3';
|
|
18
|
-
export const GL_BORDER_COLOR_SECTION = '#dcdcde';
|
|
19
|
-
export const GL_BORDER_COLOR_TRANSPARENT = 'transparent';
|
|
20
20
|
export const GL_COLOR_ALPHA_0 = 'transparent';
|
|
21
21
|
export const GL_COLOR_ALPHA_DARK_2 = 'rgba(05, 05, 06, 0.02)';
|
|
22
22
|
export const GL_COLOR_ALPHA_DARK_4 = 'rgba(05, 05, 06, 0.04)';
|