@weni/unnnic-system 1.16.35-develop.0 → 1.16.36-develop.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/unnnic.common.js +82 -73
- package/dist/unnnic.common.js.map +1 -1
- package/dist/unnnic.css +1 -1
- package/dist/unnnic.umd.js +82 -73
- package/dist/unnnic.umd.js.map +1 -1
- package/dist/unnnic.umd.min.js +10 -10
- package/dist/unnnic.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/Button.vue +95 -53
- package/src/components/Icon.vue +85 -15
- package/src/stories/Button.stories.js +16 -2
- package/src/stories/Icon.stories.js +75 -5
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
:scheme="iconScheme"
|
|
36
36
|
:style="{ visibility: loading ? 'hidden' : null }"
|
|
37
37
|
:size="iconSize"
|
|
38
|
-
|
|
38
|
+
/>
|
|
39
39
|
|
|
40
40
|
<span class="unnnic-button__label" :style="{ visibility: loading ? 'hidden' : null }">
|
|
41
41
|
<slot /> {{ text }}
|
|
@@ -76,7 +76,7 @@ export default {
|
|
|
76
76
|
type: String,
|
|
77
77
|
default: 'primary',
|
|
78
78
|
validator(value) {
|
|
79
|
-
return ['primary', 'secondary', 'terciary'].indexOf(value) !== -1;
|
|
79
|
+
return ['primary', 'secondary', 'terciary', 'ghost', 'warning'].indexOf(value) !== -1;
|
|
80
80
|
},
|
|
81
81
|
},
|
|
82
82
|
iconLeft: {
|
|
@@ -121,11 +121,23 @@ export default {
|
|
|
121
121
|
},
|
|
122
122
|
iconScheme() {
|
|
123
123
|
if (this.type === 'primary') {
|
|
124
|
-
return this.buttonDisabled ? 'neutral-clean' : '
|
|
124
|
+
return this.buttonDisabled ? 'neutral-clean' : 'neutral-white';
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
if (this.type === 'secondary') {
|
|
128
|
-
return this.buttonDisabled ? 'neutral-
|
|
128
|
+
return this.buttonDisabled ? 'neutral-clean' : 'weni-900';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (this.type === 'terciary') {
|
|
132
|
+
return this.buttonDisabled ? 'neutral-clean' : 'neutral-dark';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (this.type === 'ghost') {
|
|
136
|
+
return this.buttonDisabled ? 'neutral-clean' : 'neutral-dark';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (this.type === 'warning') {
|
|
140
|
+
return this.buttonDisabled ? 'neutral-clean' : 'neutral-white';
|
|
129
141
|
}
|
|
130
142
|
|
|
131
143
|
return '';
|
|
@@ -153,7 +165,6 @@ export default {
|
|
|
153
165
|
transform: rotate(360deg);
|
|
154
166
|
}
|
|
155
167
|
}
|
|
156
|
-
|
|
157
168
|
</style>
|
|
158
169
|
|
|
159
170
|
<style lang="scss">
|
|
@@ -188,101 +199,128 @@ $scheme-colors:
|
|
|
188
199
|
}
|
|
189
200
|
|
|
190
201
|
&--primary {
|
|
191
|
-
background-color: $unnnic-color-
|
|
192
|
-
color: $unnnic-color-
|
|
202
|
+
background-color: $unnnic-color-weni-600;
|
|
203
|
+
color: $unnnic-color-neutral-white;
|
|
193
204
|
|
|
194
205
|
&:hover:enabled {
|
|
195
|
-
|
|
196
|
-
border: 0;
|
|
206
|
+
background-color: $unnnic-color-weni-700;
|
|
197
207
|
}
|
|
198
208
|
|
|
199
209
|
&:disabled {
|
|
200
|
-
background-color: $unnnic-color-neutral-
|
|
210
|
+
background-color: $unnnic-color-neutral-soft;
|
|
201
211
|
color: $unnnic-color-neutral-clean;
|
|
202
212
|
cursor: not-allowed;
|
|
203
213
|
}
|
|
214
|
+
|
|
215
|
+
&:active:enabled {
|
|
216
|
+
background-color: $unnnic-color-weni-800;
|
|
217
|
+
}
|
|
204
218
|
}
|
|
205
219
|
|
|
206
220
|
&--secondary {
|
|
207
|
-
background-color:
|
|
208
|
-
color: $unnnic-color-
|
|
209
|
-
position: relative;
|
|
210
|
-
|
|
211
|
-
&:after {
|
|
212
|
-
content: '';
|
|
213
|
-
display: block;
|
|
214
|
-
position: absolute;
|
|
215
|
-
top: 0;
|
|
216
|
-
bottom: 0;
|
|
217
|
-
left: 0;
|
|
218
|
-
right: 0;
|
|
219
|
-
border-radius: $unnnic-border-radius-sm;
|
|
220
|
-
border: $unnnic-border-width-thinner solid $unnnic-color-neutral-cleanest;
|
|
221
|
-
}
|
|
221
|
+
background-color: $unnnic-color-weni-50;
|
|
222
|
+
color: $unnnic-color-weni-800;
|
|
222
223
|
|
|
223
|
-
&:hover:enabled
|
|
224
|
-
|
|
224
|
+
&:hover:enabled {
|
|
225
|
+
background-color: $unnnic-color-weni-100;
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
&:disabled {
|
|
228
|
-
background-color: $unnnic-color-neutral-
|
|
229
|
-
color: $unnnic-color-neutral-
|
|
229
|
+
background-color: $unnnic-color-neutral-soft;
|
|
230
|
+
color: $unnnic-color-neutral-clean;
|
|
230
231
|
cursor: not-allowed;
|
|
231
232
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&:active:enabled {
|
|
236
|
+
background-color: $unnnic-color-weni-200;
|
|
237
|
+
color: $unnnic-color-weni-900;
|
|
235
238
|
}
|
|
236
239
|
}
|
|
237
240
|
|
|
238
241
|
&--terciary {
|
|
239
|
-
background-color:
|
|
242
|
+
background-color: $unnnic-color-neutral-white;
|
|
240
243
|
color: $unnnic-color-neutral-dark;
|
|
244
|
+
border: $unnnic-border-width-thinner solid $unnnic-color-neutral-cleanest;
|
|
241
245
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
&:hover:enabled:after {
|
|
245
|
-
content: '';
|
|
246
|
-
display: block;
|
|
247
|
-
position: absolute;
|
|
248
|
-
top: 0;
|
|
249
|
-
bottom: 0;
|
|
250
|
-
left: 0;
|
|
251
|
-
right: 0;
|
|
252
|
-
border-radius: $unnnic-border-radius-sm;
|
|
253
|
-
border: $unnnic-border-width-thinner solid $unnnic-color-neutral-soft;
|
|
246
|
+
&:hover:enabled {
|
|
247
|
+
background-color: $unnnic-color-neutral-light;
|
|
254
248
|
}
|
|
255
249
|
|
|
256
250
|
&:disabled {
|
|
251
|
+
background-color: $unnnic-color-neutral-soft;
|
|
252
|
+
color: $unnnic-color-neutral-clean;
|
|
253
|
+
cursor: not-allowed;
|
|
254
|
+
border: 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&:active:enabled {
|
|
258
|
+
background-color: $unnnic-color-neutral-soft;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&--ghost {
|
|
263
|
+
background-color: transparent;
|
|
264
|
+
color: $unnnic-color-neutral-dark;
|
|
265
|
+
|
|
266
|
+
&:hover:enabled {
|
|
257
267
|
background-color: $unnnic-color-neutral-light;
|
|
258
|
-
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
&:disabled {
|
|
271
|
+
color: $unnnic-color-neutral-clean;
|
|
259
272
|
cursor: not-allowed;
|
|
260
273
|
}
|
|
274
|
+
|
|
275
|
+
&:active:enabled {
|
|
276
|
+
background-color: $unnnic-color-neutral-soft;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
&--warning {
|
|
281
|
+
background-color: $unnnic-color-aux-red-500;
|
|
282
|
+
color: $unnnic-color-neutral-white;
|
|
283
|
+
|
|
284
|
+
&:hover:enabled {
|
|
285
|
+
background-color:$unnnic-color-aux-red-700;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
&:disabled {
|
|
289
|
+
background-color: $unnnic-color-neutral-soft;
|
|
290
|
+
color: $unnnic-color-neutral-clean;
|
|
291
|
+
cursor: not-allowed;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
&:active:enabled {
|
|
295
|
+
background-color: $unnnic-color-aux-red-900;
|
|
296
|
+
}
|
|
261
297
|
}
|
|
262
298
|
|
|
263
299
|
&--size {
|
|
264
300
|
&-large {
|
|
265
301
|
padding: $unnnic-squish-xs;
|
|
266
|
-
font-size: $unnnic-font-size-body-
|
|
267
|
-
line-height: ($unnnic-font-size-body-
|
|
302
|
+
font-size: $unnnic-font-size-body-gt;
|
|
303
|
+
line-height: ($unnnic-font-size-body-gt + $unnnic-line-height-medium);
|
|
304
|
+
height: 46px;
|
|
268
305
|
}
|
|
269
306
|
|
|
270
307
|
&-small {
|
|
271
|
-
padding: $unnnic-squish-
|
|
272
|
-
font-size: $unnnic-font-size-body-
|
|
273
|
-
line-height: ($unnnic-font-size-body-
|
|
308
|
+
padding: $unnnic-squish-xs;
|
|
309
|
+
font-size: $unnnic-font-size-body-gt;
|
|
310
|
+
line-height: ($unnnic-font-size-body-gt + $unnnic-line-height-medium);
|
|
311
|
+
height: 38px;
|
|
274
312
|
}
|
|
275
313
|
}
|
|
276
314
|
}
|
|
277
315
|
|
|
278
|
-
@each $name,
|
|
316
|
+
@each $name,
|
|
317
|
+
$color in $scheme-colors {
|
|
279
318
|
.unnnic-button-scheme {
|
|
280
319
|
&--#{$name} {
|
|
281
320
|
background-color: $color;
|
|
282
321
|
}
|
|
283
322
|
}
|
|
284
323
|
}
|
|
285
|
-
|
|
286
324
|
</style>
|
|
287
325
|
|
|
288
326
|
<style lang="scss" scoped>
|
|
@@ -294,6 +332,8 @@ $scheme-colors:
|
|
|
294
332
|
&.unnnic-button--size {
|
|
295
333
|
&-large {
|
|
296
334
|
padding: $unnnic-inset-xs;
|
|
335
|
+
height: 46px;
|
|
336
|
+
width: 46px;
|
|
297
337
|
|
|
298
338
|
.unnnic-icon {
|
|
299
339
|
width: $unnnic-icon-size-md;
|
|
@@ -303,6 +343,8 @@ $scheme-colors:
|
|
|
303
343
|
|
|
304
344
|
&-small {
|
|
305
345
|
padding: $unnnic-inset-nano;
|
|
346
|
+
height: 38px;
|
|
347
|
+
width: 38px;
|
|
306
348
|
|
|
307
349
|
.unnnic-icon {
|
|
308
350
|
width: $unnnic-icon-size-ant;
|
package/src/components/Icon.vue
CHANGED
|
@@ -77,24 +77,94 @@ export default {
|
|
|
77
77
|
<style lang="scss">
|
|
78
78
|
@import "../assets/scss/unnnic.scss";
|
|
79
79
|
|
|
80
|
-
$scheme-colors:
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"brand-sec" $unnnic-color-brand-sec,
|
|
90
|
-
"neutral-clean" $unnnic-color-neutral-clean,
|
|
91
|
-
"neutral-cleanest" $unnnic-color-neutral-cleanest,
|
|
92
|
-
"neutral-dark" $unnnic-color-neutral-dark,
|
|
93
|
-
"neutral-soft" $unnnic-color-neutral-soft,
|
|
80
|
+
$scheme-colors:
|
|
81
|
+
"background-solo" $unnnic-color-background-solo,
|
|
82
|
+
"background-sky" $unnnic-color-background-sky,
|
|
83
|
+
"background-grass" $unnnic-color-background-grass,
|
|
84
|
+
"background-carpet" $unnnic-color-background-carpet,
|
|
85
|
+
"background-snow" $unnnic-color-background-snow,
|
|
86
|
+
"background-lightest" $unnnic-color-background-lightest,
|
|
87
|
+
"background-white" $unnnic-color-background-white,
|
|
88
|
+
"neutral-black" $unnnic-color-neutral-black,
|
|
94
89
|
"neutral-darkest" $unnnic-color-neutral-darkest,
|
|
90
|
+
"neutral-dark" $unnnic-color-neutral-dark,
|
|
95
91
|
"neutral-cloudy" $unnnic-color-neutral-cloudy,
|
|
92
|
+
"neutral-cleanest" $unnnic-color-neutral-cleanest,
|
|
93
|
+
"neutral-clean" $unnnic-color-neutral-clean,
|
|
94
|
+
"neutral-soft" $unnnic-color-neutral-soft,
|
|
95
|
+
"neutral-lightest" $unnnic-color-neutral-lightest,
|
|
96
|
+
"neutral-light" $unnnic-color-neutral-light,
|
|
97
|
+
"neutral-white" $unnnic-color-neutral-white,
|
|
96
98
|
"neutral-snow" $unnnic-color-neutral-snow,
|
|
97
|
-
"
|
|
99
|
+
"feedback-red" $unnnic-color-feedback-red,
|
|
100
|
+
"feedback-green" $unnnic-color-feedback-green,
|
|
101
|
+
"feedback-yellow" $unnnic-color-feedback-yellow,
|
|
102
|
+
"feedback-blue" $unnnic-color-feedback-blue,
|
|
103
|
+
"feedback-grey" $unnnic-color-feedback-grey,
|
|
104
|
+
"aux-blue" $unnnic-color-aux-blue,
|
|
105
|
+
"aux-purple" $unnnic-color-aux-purple,
|
|
106
|
+
"aux-orange" $unnnic-color-aux-orange,
|
|
107
|
+
"aux-lemon" $unnnic-color-aux-lemon,
|
|
108
|
+
"aux-pink" $unnnic-color-aux-pink,
|
|
109
|
+
"aux-baby-blue" $unnnic-color-aux-baby-blue,
|
|
110
|
+
"aux-baby-yellow" $unnnic-color-aux-baby-yellow,
|
|
111
|
+
"aux-baby-red" $unnnic-color-aux-baby-red,
|
|
112
|
+
"aux-baby-green" $unnnic-color-aux-baby-green,
|
|
113
|
+
"aux-baby-pink" $unnnic-color-aux-baby-pink,
|
|
114
|
+
"aux-green-100" $unnnic-color-aux-green-100,
|
|
115
|
+
"aux-green-300" $unnnic-color-aux-green-300,
|
|
116
|
+
"aux-green-500" $unnnic-color-aux-green-500,
|
|
117
|
+
"aux-green-700" $unnnic-color-aux-green-700,
|
|
118
|
+
"aux-green-900" $unnnic-color-aux-green-900,
|
|
119
|
+
"aux-blue-100" $unnnic-color-aux-blue-100,
|
|
120
|
+
"aux-blue-300" $unnnic-color-aux-blue-300,
|
|
121
|
+
"aux-blue-500" $unnnic-color-aux-blue-500,
|
|
122
|
+
"aux-blue-700" $unnnic-color-aux-blue-700,
|
|
123
|
+
"aux-blue-900" $unnnic-color-aux-blue-900,
|
|
124
|
+
"aux-purple-100" $unnnic-color-aux-purple-100,
|
|
125
|
+
"aux-purple-300" $unnnic-color-aux-purple-300,
|
|
126
|
+
"aux-purple-500" $unnnic-color-aux-purple-500,
|
|
127
|
+
"aux-purple-700" $unnnic-color-aux-purple-700,
|
|
128
|
+
"aux-purple-900" $unnnic-color-aux-purple-900,
|
|
129
|
+
"aux-red-100" $unnnic-color-aux-red-100,
|
|
130
|
+
"aux-red-300" $unnnic-color-aux-red-300,
|
|
131
|
+
"aux-red-500" $unnnic-color-aux-red-500,
|
|
132
|
+
"aux-red-700" $unnnic-color-aux-red-700,
|
|
133
|
+
"aux-red-900" $unnnic-color-aux-red-900,
|
|
134
|
+
"aux-orange-100" $unnnic-color-aux-orange-100,
|
|
135
|
+
"aux-orange-300" $unnnic-color-aux-orange-300,
|
|
136
|
+
"aux-orange-500" $unnnic-color-aux-orange-500,
|
|
137
|
+
"aux-orange-700" $unnnic-color-aux-orange-700,
|
|
138
|
+
"aux-orange-900" $unnnic-color-aux-orange-900,
|
|
139
|
+
"aux-yellow-100" $unnnic-color-aux-yellow-100,
|
|
140
|
+
"aux-yellow-300" $unnnic-color-aux-yellow-300,
|
|
141
|
+
"aux-yellow-500" $unnnic-color-aux-yellow-500,
|
|
142
|
+
"aux-yellow-700" $unnnic-color-aux-yellow-700,
|
|
143
|
+
"aux-yellow-900" $unnnic-color-aux-yellow-900,
|
|
144
|
+
"floweditor-blue" $unnnic-color-floweditor-blue,
|
|
145
|
+
"floweditor-purple" $unnnic-color-floweditor-purple,
|
|
146
|
+
"floweditor-wine" $unnnic-color-floweditor-wine,
|
|
147
|
+
"floweditor-orange" $unnnic-color-floweditor-orange,
|
|
148
|
+
"floweditor-pink" $unnnic-color-floweditor-pink,
|
|
149
|
+
"floweditor-turquoise" $unnnic-color-floweditor-turquoise,
|
|
150
|
+
"floweditor-green" $unnnic-color-floweditor-green,
|
|
151
|
+
"weni-50" $unnnic-color-weni-50,
|
|
152
|
+
"weni-100" $unnnic-color-weni-100,
|
|
153
|
+
"weni-200" $unnnic-color-weni-200,
|
|
154
|
+
"weni-300" $unnnic-color-weni-300,
|
|
155
|
+
"weni-400" $unnnic-color-weni-400,
|
|
156
|
+
"weni-500" $unnnic-color-weni-500,
|
|
157
|
+
"weni-600" $unnnic-color-weni-600,
|
|
158
|
+
"weni-700" $unnnic-color-weni-700,
|
|
159
|
+
"weni-800" $unnnic-color-weni-800,
|
|
160
|
+
"weni-900" $unnnic-color-weni-900,
|
|
161
|
+
"weni-950" $unnnic-color-weni-950,
|
|
162
|
+
"brand-weni" $unnnic-color-brand-weni,
|
|
163
|
+
"brand-weni-dark" $unnnic-color-brand-weni-dark,
|
|
164
|
+
"brand-weni-soft" $unnnic-color-brand-weni-soft,
|
|
165
|
+
"brand-sec-dark" $unnnic-color-brand-sec-dark,
|
|
166
|
+
"brand-sec-soft" $unnnic-color-brand-sec-soft,
|
|
167
|
+
"brand-sec" $unnnic-color-brand-sec;
|
|
98
168
|
|
|
99
169
|
@each $name, $color in $scheme-colors {
|
|
100
170
|
.unnnic-icon-scheme {
|
|
@@ -5,14 +5,14 @@ export default {
|
|
|
5
5
|
title: 'Form/Button',
|
|
6
6
|
component: unnnicButton,
|
|
7
7
|
argTypes: {
|
|
8
|
-
type: { control: { type: 'select', options: ['primary', 'secondary', 'terciary'] } },
|
|
8
|
+
type: { control: { type: 'select', options: ['primary', 'secondary', 'terciary', 'ghost', 'warning'] } },
|
|
9
9
|
size: { control: { type: 'select', options: ['large', 'small'] } },
|
|
10
10
|
text: { control: { type: 'text' } },
|
|
11
11
|
iconLeft: { control: { type: 'select', options: [null, ...iconList] } },
|
|
12
|
+
iconCenter: { control: { type: 'select', options: [null, ...iconList] } },
|
|
12
13
|
iconRight: { control: { type: 'select', options: [null, ...iconList] } },
|
|
13
14
|
disabled: { control: { type: 'boolean' } },
|
|
14
15
|
loading: { control: { type: 'boolean' } },
|
|
15
|
-
scheme: { control: { type: 'select', options: ['feedback-red', 'feedback-green', 'feedback-yellow'] } },
|
|
16
16
|
},
|
|
17
17
|
};
|
|
18
18
|
|
|
@@ -42,6 +42,20 @@ Terciary.args = {
|
|
|
42
42
|
disabled: false,
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
export const Ghost = Template.bind({});
|
|
46
|
+
Ghost.args = {
|
|
47
|
+
type: 'ghost',
|
|
48
|
+
text: 'Button Text',
|
|
49
|
+
disabled: false,
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const Warning = Template.bind({});
|
|
53
|
+
Warning.args = {
|
|
54
|
+
type: 'warning',
|
|
55
|
+
text: 'Button Text',
|
|
56
|
+
disabled: false,
|
|
57
|
+
};
|
|
58
|
+
|
|
45
59
|
export const withIcon = Template.bind({});
|
|
46
60
|
withIcon.args = {
|
|
47
61
|
text: 'Button Text',
|
|
@@ -4,6 +4,24 @@ import icons from '../utils/icons';
|
|
|
4
4
|
const iconsOptions = Object.keys(icons);
|
|
5
5
|
|
|
6
6
|
const schemes = [
|
|
7
|
+
'background-solo',
|
|
8
|
+
'background-sky',
|
|
9
|
+
'background-grass',
|
|
10
|
+
'background-carpet',
|
|
11
|
+
'background-snow',
|
|
12
|
+
'background-lightest',
|
|
13
|
+
'background-white',
|
|
14
|
+
'neutral-black',
|
|
15
|
+
'neutral-darkest',
|
|
16
|
+
'neutral-dark',
|
|
17
|
+
'neutral-cloudy',
|
|
18
|
+
'neutral-cleanest',
|
|
19
|
+
'neutral-clean',
|
|
20
|
+
'neutral-soft',
|
|
21
|
+
'neutral-lightest',
|
|
22
|
+
'neutral-light',
|
|
23
|
+
'neutral-white',
|
|
24
|
+
'neutral-snow',
|
|
7
25
|
'feedback-red',
|
|
8
26
|
'feedback-green',
|
|
9
27
|
'feedback-yellow',
|
|
@@ -14,13 +32,65 @@ const schemes = [
|
|
|
14
32
|
'aux-orange',
|
|
15
33
|
'aux-lemon',
|
|
16
34
|
'aux-pink',
|
|
35
|
+
'aux-baby-blue',
|
|
36
|
+
'aux-baby-yellow',
|
|
37
|
+
'aux-baby-red',
|
|
38
|
+
'aux-baby-green',
|
|
39
|
+
'aux-baby-pink',
|
|
40
|
+
'aux-green-100',
|
|
41
|
+
'aux-green-300',
|
|
42
|
+
'aux-green-500',
|
|
43
|
+
'aux-green-700',
|
|
44
|
+
'aux-green-900',
|
|
45
|
+
'aux-blue-100',
|
|
46
|
+
'aux-blue-300',
|
|
47
|
+
'aux-blue-500',
|
|
48
|
+
'aux-blue-700',
|
|
49
|
+
'aux-blue-900',
|
|
50
|
+
'aux-purple-100',
|
|
51
|
+
'aux-purple-300',
|
|
52
|
+
'aux-purple-500',
|
|
53
|
+
'aux-purple-700',
|
|
54
|
+
'aux-purple-900',
|
|
55
|
+
'aux-red-100',
|
|
56
|
+
'aux-red-300',
|
|
57
|
+
'aux-red-500',
|
|
58
|
+
'aux-red-700',
|
|
59
|
+
'aux-red-900',
|
|
60
|
+
'aux-orange-100',
|
|
61
|
+
'aux-orange-300',
|
|
62
|
+
'aux-orange-500',
|
|
63
|
+
'aux-orange-700',
|
|
64
|
+
'aux-orange-900',
|
|
65
|
+
'aux-yellow-100',
|
|
66
|
+
'aux-yellow-300',
|
|
67
|
+
'aux-yellow-500',
|
|
68
|
+
'aux-yellow-700',
|
|
69
|
+
'aux-yellow-900',
|
|
70
|
+
'floweditor-blue',
|
|
71
|
+
'floweditor-purple',
|
|
72
|
+
'floweditor-wine',
|
|
73
|
+
'floweditor-orange',
|
|
74
|
+
'floweditor-pink',
|
|
75
|
+
'floweditor-turquoise',
|
|
76
|
+
'floweditor-green',
|
|
77
|
+
'weni-50',
|
|
78
|
+
'weni-100',
|
|
79
|
+
'weni-200',
|
|
80
|
+
'weni-300',
|
|
81
|
+
'weni-400',
|
|
82
|
+
'weni-500',
|
|
83
|
+
'weni-600',
|
|
84
|
+
'weni-700',
|
|
85
|
+
'weni-800',
|
|
86
|
+
'weni-900',
|
|
87
|
+
'weni-950',
|
|
17
88
|
'brand-weni',
|
|
89
|
+
'brand-weni-dark',
|
|
18
90
|
'brand-weni-soft',
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'neutral-soft',
|
|
23
|
-
'neutral-darkest',
|
|
91
|
+
'brand-sec-dark',
|
|
92
|
+
'brand-sec-soft',
|
|
93
|
+
'brand-sec',
|
|
24
94
|
];
|
|
25
95
|
|
|
26
96
|
export default {
|