@gitlab/ui 89.6.0 → 90.0.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/components/experimental/duo/chat/duo_chat.js +1 -3
  3. package/dist/config.js +0 -4
  4. package/dist/index.css +2 -2
  5. package/dist/index.css.map +1 -1
  6. package/dist/index.js +0 -1
  7. package/dist/tokens/build/js/tokens.dark.js +21 -1
  8. package/dist/tokens/build/js/tokens.js +21 -1
  9. package/dist/tokens/css/tokens.css +20 -0
  10. package/dist/tokens/css/tokens.dark.css +20 -0
  11. package/dist/tokens/js/tokens.dark.js +20 -0
  12. package/dist/tokens/js/tokens.js +20 -0
  13. package/dist/tokens/json/tokens.dark.json +532 -0
  14. package/dist/tokens/json/tokens.json +532 -0
  15. package/dist/tokens/scss/_tokens.dark.scss +20 -0
  16. package/dist/tokens/scss/_tokens.scss +20 -0
  17. package/dist/tokens/scss/_tokens_custom_properties.scss +20 -0
  18. package/package.json +1 -1
  19. package/src/components/base/alert/alert.scss +87 -41
  20. package/src/components/base/form/form_group/form_group.scss +7 -8
  21. package/src/components/experimental/duo/chat/duo_chat.vue +4 -5
  22. package/src/config.js +0 -5
  23. package/src/index.js +0 -1
  24. package/src/tokens/build/css/tokens.css +20 -0
  25. package/src/tokens/build/css/tokens.dark.css +20 -0
  26. package/src/tokens/build/js/tokens.dark.js +20 -0
  27. package/src/tokens/build/js/tokens.js +20 -0
  28. package/src/tokens/build/json/tokens.dark.json +532 -0
  29. package/src/tokens/build/json/tokens.json +532 -0
  30. package/src/tokens/build/scss/_tokens.dark.scss +20 -0
  31. package/src/tokens/build/scss/_tokens.scss +20 -0
  32. package/src/tokens/build/scss/_tokens_custom_properties.scss +20 -0
  33. package/src/tokens/contextual/alert.tokens.json +224 -0
  34. package/dist/components/base/form/form_text/form_text.js +0 -46
  35. package/src/components/base/form/form_text/form_text.md +0 -4
  36. package/src/components/base/form/form_text/form_text.vue +0 -11
@@ -0,0 +1,224 @@
1
+ {
2
+ "alert": {
3
+ "neutral": {
4
+ "title": {
5
+ "color": {
6
+ "$value": {
7
+ "default": "{text.color.heading}",
8
+ "dark": "{text.color.heading}"
9
+ },
10
+ "$type": "color",
11
+ "$description": "Used for the title color of a neutral alert."
12
+ }
13
+ },
14
+ "background": {
15
+ "color": {
16
+ "$value": {
17
+ "default": "{feedback.neutral.background.color}",
18
+ "dark": "{background.color.subtle}"
19
+ },
20
+ "$type": "color",
21
+ "$description": "Used for the background color of a neutral alert."
22
+ }
23
+ },
24
+ "border": {
25
+ "top" : {
26
+ "color": {
27
+ "$value": {
28
+ "default": "{color.alpha.0}",
29
+ "dark": "{color.neutral.400}"
30
+ },
31
+ "$type": "color",
32
+ "$description": "Used for the border center color of a neutral alert."
33
+ }
34
+ },
35
+ "bottom": {
36
+ "color": {
37
+ "$value": {
38
+ "default": "{color.alpha.0}",
39
+ "dark": "{color.neutral.800}"
40
+ },
41
+ "$type": "color",
42
+ "$description": "Used for the border bottom color of a neutral alert."
43
+ }
44
+ }
45
+ }
46
+ },
47
+ "info": {
48
+ "title": {
49
+ "color": {
50
+ "$value": {
51
+ "default": "{text.color.heading}",
52
+ "dark": "{color.blue.300}"
53
+ },
54
+ "$type": "color",
55
+ "$description": "Used for the title color of an info alert."
56
+ }
57
+ },
58
+ "background": {
59
+ "color": {
60
+ "$value": {
61
+ "default": "{feedback.info.background.color}",
62
+ "dark": "{background.color.subtle}"
63
+ },
64
+ "$type": "color",
65
+ "$description": "Used for the background color of an info alert."
66
+ }
67
+ },
68
+ "border": {
69
+ "top": {
70
+ "color": {
71
+ "$value": {
72
+ "default": "{color.alpha.0}",
73
+ "dark": "{color.blue.400}"
74
+ },
75
+ "$type": "color",
76
+ "$description": "Used for the border color of an info alert."
77
+ }
78
+ },
79
+ "bottom": {
80
+ "color": {
81
+ "$value": {
82
+ "default": "{color.alpha.0}",
83
+ "dark": "{color.neutral.800}"
84
+ },
85
+ "$type": "color",
86
+ "$description": "Used for the border bottom color of an info alert."
87
+ }
88
+ }
89
+ }
90
+ },
91
+ "success": {
92
+ "title": {
93
+ "color": {
94
+ "$value": {
95
+ "default": "{text.color.heading}",
96
+ "dark": "{color.green.300}"
97
+ },
98
+ "$type": "color",
99
+ "$description": "Used for the title color of a success alert."
100
+ }
101
+ },
102
+ "background": {
103
+ "color": {
104
+ "$value": {
105
+ "default": "{feedback.success.background.color}",
106
+ "dark": "{background.color.subtle}"
107
+ },
108
+ "$type": "color",
109
+ "$description": "Used for the background color of a success alert."
110
+ }
111
+ },
112
+ "border": {
113
+ "top": {
114
+ "color": {
115
+ "$value": {
116
+ "default": "{color.alpha.0}",
117
+ "dark": "{color.green.400}"
118
+ },
119
+ "$type": "color",
120
+ "$description": "Used for the border color of a success alert."
121
+ }
122
+ },
123
+ "bottom": {
124
+ "color": {
125
+ "$value": {
126
+ "default": "{color.alpha.0}",
127
+ "dark": "{color.neutral.800}"
128
+ },
129
+ "$type": "color",
130
+ "$description": "Used for the border bottom color of a success alert."
131
+ }
132
+ }
133
+ }
134
+ },
135
+ "warning": {
136
+ "title": {
137
+ "color": {
138
+ "$value": {
139
+ "default": "{text.color.heading}",
140
+ "dark": "{color.orange.300}"
141
+ },
142
+ "$type": "color",
143
+ "$description": "Used for the title color of a warning alert."
144
+ }
145
+ },
146
+ "background": {
147
+ "color": {
148
+ "$value": {
149
+ "default": "{feedback.warning.background.color}",
150
+ "dark": "{background.color.subtle}"
151
+ },
152
+ "$type": "color",
153
+ "$description": "Used for the background color of a warning alert."
154
+ }
155
+ },
156
+ "border": {
157
+ "top": {
158
+ "color": {
159
+ "$value": {
160
+ "default": "{color.alpha.0}",
161
+ "dark": "{color.orange.400}"
162
+ },
163
+ "$type": "color",
164
+ "$description": "Used for the border color of a warning alert."
165
+ }
166
+ },
167
+ "bottom": {
168
+ "color": {
169
+ "$value": {
170
+ "default": "{color.alpha.0}",
171
+ "dark": "{color.neutral.800}"
172
+ },
173
+ "$type": "color",
174
+ "$description": "Used for the border bottom color of a warning alert."
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "danger": {
180
+ "title": {
181
+ "color": {
182
+ "$value": {
183
+ "default": "{text.color.heading}",
184
+ "dark": "{color.red.300}"
185
+ },
186
+ "$type": "color",
187
+ "$description": "Used for the title color of a danger alert."
188
+ }
189
+ },
190
+ "background": {
191
+ "color": {
192
+ "$value": {
193
+ "default": "{feedback.danger.background.color}",
194
+ "dark": "{background.color.subtle}"
195
+ },
196
+ "$type": "color",
197
+ "$description": "Used for the background color of a danger alert."
198
+ }
199
+ },
200
+ "border": {
201
+ "top": {
202
+ "color": {
203
+ "$value": {
204
+ "default": "{color.alpha.0}",
205
+ "dark": "{color.red.400}"
206
+ },
207
+ "$type": "color",
208
+ "$description": "Used for the border color of a danger alert."
209
+ }
210
+ },
211
+ "bottom": {
212
+ "color": {
213
+ "$value": {
214
+ "default": "{color.alpha.0}",
215
+ "dark": "{color.neutral.800}"
216
+ },
217
+ "$type": "color",
218
+ "$description": "Used for the border bottom color of a danger alert."
219
+ }
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
@@ -1,46 +0,0 @@
1
- import { BFormText } from '../../../../vendor/bootstrap-vue/src/components/form/form-text';
2
- import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
3
-
4
- var script = {
5
- ...BFormText.options,
6
- name: 'GlFormText',
7
- render(createElement, context) {
8
- return BFormText.options.render(createElement, context);
9
- }
10
- };
11
-
12
- /* script */
13
- const __vue_script__ = script;
14
-
15
- /* template */
16
-
17
- /* style */
18
- const __vue_inject_styles__ = undefined;
19
- /* scoped */
20
- const __vue_scope_id__ = undefined;
21
- /* module identifier */
22
- const __vue_module_identifier__ = undefined;
23
- /* functional template */
24
- const __vue_is_functional_template__ = undefined;
25
- /* style inject */
26
-
27
- /* style inject SSR */
28
-
29
- /* style inject shadow dom */
30
-
31
-
32
-
33
- const __vue_component__ = __vue_normalize__(
34
- {},
35
- __vue_inject_styles__,
36
- __vue_script__,
37
- __vue_scope_id__,
38
- __vue_is_functional_template__,
39
- __vue_module_identifier__,
40
- false,
41
- undefined,
42
- undefined,
43
- undefined
44
- );
45
-
46
- export default __vue_component__;
@@ -1,4 +0,0 @@
1
- # Usage
2
-
3
- The component used to render form group descriptions. Useful for when you need
4
- to add additional form text elements to a form group.
@@ -1,11 +0,0 @@
1
- <script>
2
- import { BFormText } from '../../../../vendor/bootstrap-vue/src/components/form/form-text';
3
-
4
- export default {
5
- ...BFormText.options,
6
- name: 'GlFormText',
7
- render(createElement, context) {
8
- return BFormText.options.render(createElement, context);
9
- },
10
- };
11
- </script>