@gitlab/ui 66.10.1 → 66.12.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/CHANGELOG.md +14 -0
- package/dist/components/base/table/table.js +9 -1
- package/dist/components/base/table_lite/table_lite.js +9 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/css/tokens.css +11 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +11 -1
- package/dist/tokens/json/tokens.dark.grouped.json +12 -0
- package/dist/tokens/json/tokens.dark.json +752 -270
- package/dist/tokens/json/tokens.grouped.json +12 -0
- package/dist/tokens/json/tokens.json +752 -270
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +11 -1
- package/package.json +3 -3
- package/src/components/base/avatar/avatar.scss +7 -12
- package/src/components/base/table/table.scss +13 -0
- package/src/components/base/table/table.spec.js +11 -1
- package/src/components/base/table/table.stories.js +47 -0
- package/src/components/base/table/table.vue +9 -1
- package/src/components/base/table_lite/table_lite.spec.js +11 -1
- package/src/components/base/table_lite/table_lite.stories.js +14 -3
- package/src/components/base/table_lite/table_lite.vue +9 -1
- package/src/tokens/color.dark.tokens.json +138 -69
- package/src/tokens/color.tokens.json +270 -135
- package/src/tokens/line_height.tokens.json +74 -0
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Sep 2023 06:33:18 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
+
--gl-line-height-52: 3.25rem;
|
|
8
|
+
--gl-line-height-44: 2.75rem;
|
|
9
|
+
--gl-line-height-42: 2.625rem;
|
|
10
|
+
--gl-line-height-36: 2.25rem;
|
|
11
|
+
--gl-line-height-32: 2rem;
|
|
12
|
+
--gl-line-height-28: 1.75rem;
|
|
13
|
+
--gl-line-height-24: 1.5rem;
|
|
14
|
+
--gl-line-height-20: 1.25rem;
|
|
15
|
+
--gl-line-height-16: 1rem;
|
|
16
|
+
--gl-line-height-12: 0.75rem;
|
|
7
17
|
--brand-gray-05: #2b2838;
|
|
8
18
|
--brand-gray-04: #45424d;
|
|
9
19
|
--brand-gray-03: #74717a;
|
package/dist/tokens/js/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Sep 2023 06:33:18 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const BLACK = "#000";
|
|
@@ -138,3 +138,13 @@ export const BRAND_GRAY_02 = "#a2a1a6";
|
|
|
138
138
|
export const BRAND_GRAY_03 = "#74717a";
|
|
139
139
|
export const BRAND_GRAY_04 = "#45424d";
|
|
140
140
|
export const BRAND_GRAY_05 = "#2b2838";
|
|
141
|
+
export const GL_LINE_HEIGHT_12 = "0.75rem";
|
|
142
|
+
export const GL_LINE_HEIGHT_16 = "1rem";
|
|
143
|
+
export const GL_LINE_HEIGHT_20 = "1.25rem";
|
|
144
|
+
export const GL_LINE_HEIGHT_24 = "1.5rem";
|
|
145
|
+
export const GL_LINE_HEIGHT_28 = "1.75rem";
|
|
146
|
+
export const GL_LINE_HEIGHT_32 = "2rem";
|
|
147
|
+
export const GL_LINE_HEIGHT_36 = "2.25rem";
|
|
148
|
+
export const GL_LINE_HEIGHT_42 = "2.625rem";
|
|
149
|
+
export const GL_LINE_HEIGHT_44 = "2.75rem";
|
|
150
|
+
export const GL_LINE_HEIGHT_52 = "3.25rem";
|
|
@@ -135,5 +135,17 @@
|
|
|
135
135
|
"brand-gray-03": "#74717a",
|
|
136
136
|
"brand-gray-04": "#45424d",
|
|
137
137
|
"brand-gray-05": "#2b2838"
|
|
138
|
+
},
|
|
139
|
+
"dimension": {
|
|
140
|
+
"line-height-12": "0.75rem",
|
|
141
|
+
"line-height-16": "1rem",
|
|
142
|
+
"line-height-20": "1.25rem",
|
|
143
|
+
"line-height-24": "1.5rem",
|
|
144
|
+
"line-height-28": "1.75rem",
|
|
145
|
+
"line-height-32": "2rem",
|
|
146
|
+
"line-height-36": "2.25rem",
|
|
147
|
+
"line-height-42": "2.625rem",
|
|
148
|
+
"line-height-44": "2.75rem",
|
|
149
|
+
"line-height-52": "3.25rem"
|
|
138
150
|
}
|
|
139
151
|
}
|