@rotki/ui-library 2.17.2 → 2.19.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/README.md +4 -2
- package/dist/components/avatars/RuiAvatar.js +7 -0
- package/dist/components/avatars/RuiAvatar.js.map +1 -0
- package/dist/components/avatars/RuiAvatar.vue.d.ts +31 -0
- package/dist/components/avatars/RuiAvatar.vue_vue_type_script_setup_true_lang.js +188 -0
- package/dist/components/avatars/RuiAvatar.vue_vue_type_script_setup_true_lang.js.map +1 -0
- package/dist/components/avatars/RuiAvatarGroup.js +7 -0
- package/dist/components/avatars/RuiAvatarGroup.js.map +1 -0
- package/dist/components/avatars/RuiAvatarGroup.vue.d.ts +24 -0
- package/dist/components/avatars/RuiAvatarGroup.vue_vue_type_script_setup_true_lang.js +110 -0
- package/dist/components/avatars/RuiAvatarGroup.vue_vue_type_script_setup_true_lang.js.map +1 -0
- package/dist/components/avatars/avatar-props.d.ts +33 -0
- package/dist/components/avatars/avatar-props.js +46 -0
- package/dist/components/avatars/avatar-props.js.map +1 -0
- package/dist/components/avatars/use-avatar-group.d.ts +3 -0
- package/dist/components/avatars/use-avatar-group.js +10 -0
- package/dist/components/avatars/use-avatar-group.js.map +1 -0
- package/dist/components/buttons/button/button-props.d.ts +1 -0
- package/dist/components/buttons/button/button-props.js +5 -4
- package/dist/components/buttons/button/button-props.js.map +1 -1
- package/dist/components/buttons/button/button-styles.d.ts +9 -0
- package/dist/components/buttons/button/button-styles.js +21 -5
- package/dist/components/buttons/button/button-styles.js.map +1 -1
- package/dist/components/date-time-picker/RuiDateTimePicker.js.map +1 -1
- package/dist/components/date-time-picker/RuiDateTimePicker.vue.d.ts +3 -0
- package/dist/components/date-time-picker/RuiDateTimePicker.vue_vue_type_script_setup_true_lang.js +12 -3
- package/dist/components/date-time-picker/RuiDateTimePicker.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/components/forms/auto-complete/RuiAutoComplete.js.map +1 -1
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +2 -0
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue_vue_type_script_setup_true_lang.js +8 -0
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/components/forms/checkbox/RuiCheckbox.js.map +1 -1
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +25 -22
- package/dist/components/forms/checkbox/RuiCheckbox.vue_vue_type_script_setup_true_lang.js +27 -16
- package/dist/components/forms/checkbox/RuiCheckbox.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.js +7 -0
- package/dist/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.js.map +1 -0
- package/dist/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.vue.d.ts +37 -0
- package/dist/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.vue_vue_type_script_setup_true_lang.js +84 -0
- package/dist/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.vue_vue_type_script_setup_true_lang.js.map +1 -0
- package/dist/components/forms/checkbox/checkbox-group/context.d.ts +10 -0
- package/dist/components/forms/checkbox/checkbox-group/context.js +6 -0
- package/dist/components/forms/checkbox/checkbox-group/context.js.map +1 -0
- package/dist/components/index.d.ts +5 -2
- package/dist/components/index.js +4 -1
- package/dist/icons/icons_1.js +4290 -473
- package/dist/icons/icons_1.js.map +1 -1
- package/dist/icons/icons_2.js +4358 -474
- package/dist/icons/icons_2.js.map +1 -1
- package/dist/icons/icons_3.js +4054 -474
- package/dist/icons/icons_3.js.map +1 -1
- package/dist/icons/icons_4.js +2188 -238
- package/dist/icons/icons_4.js.map +1 -1
- package/dist/icons/index.js.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/library-icons.json +32 -0
- package/dist/style.css +41 -16
- package/dist/vite-plugin/index.js +16 -1
- package/dist/vite-plugin/index.js.map +1 -1
- package/dist/web-types.json +377 -25
- package/package.json +3 -2
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@rotki/ui-library",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.19.0",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"description-markup": "markdown",
|
|
8
8
|
"contributions": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"default": "'primary'",
|
|
43
43
|
"value": {
|
|
44
44
|
"kind": "expression",
|
|
45
|
-
"type": "
|
|
45
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -117,6 +117,193 @@
|
|
|
117
117
|
]
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
|
+
{
|
|
121
|
+
"name": "RuiAvatar",
|
|
122
|
+
"source": {
|
|
123
|
+
"module": "@rotki/ui-library/components/avatars/RuiAvatar.vue",
|
|
124
|
+
"symbol": "RuiAvatar"
|
|
125
|
+
},
|
|
126
|
+
"attributes": [
|
|
127
|
+
{
|
|
128
|
+
"name": "src",
|
|
129
|
+
"description": "",
|
|
130
|
+
"required": false,
|
|
131
|
+
"default": "null",
|
|
132
|
+
"value": {
|
|
133
|
+
"kind": "expression",
|
|
134
|
+
"type": "string | null | undefined"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "alt",
|
|
139
|
+
"description": "",
|
|
140
|
+
"required": false,
|
|
141
|
+
"default": "''",
|
|
142
|
+
"value": {
|
|
143
|
+
"kind": "expression",
|
|
144
|
+
"type": "string | undefined"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "text",
|
|
149
|
+
"description": "",
|
|
150
|
+
"required": false,
|
|
151
|
+
"default": "null",
|
|
152
|
+
"value": {
|
|
153
|
+
"kind": "expression",
|
|
154
|
+
"type": "string | null | undefined"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "icon",
|
|
159
|
+
"description": "",
|
|
160
|
+
"required": false,
|
|
161
|
+
"default": "null",
|
|
162
|
+
"value": {
|
|
163
|
+
"kind": "expression",
|
|
164
|
+
"type": "string | null | undefined"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "size",
|
|
169
|
+
"description": "",
|
|
170
|
+
"required": false,
|
|
171
|
+
"value": {
|
|
172
|
+
"kind": "expression",
|
|
173
|
+
"type": "number | AvatarSize | undefined"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "variant",
|
|
178
|
+
"description": "",
|
|
179
|
+
"required": false,
|
|
180
|
+
"value": {
|
|
181
|
+
"kind": "expression",
|
|
182
|
+
"type": "AvatarVariant | undefined"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "color",
|
|
187
|
+
"description": "",
|
|
188
|
+
"required": false,
|
|
189
|
+
"default": "'default'",
|
|
190
|
+
"value": {
|
|
191
|
+
"kind": "expression",
|
|
192
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | 'default' | undefined"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "loading",
|
|
197
|
+
"description": "",
|
|
198
|
+
"required": false,
|
|
199
|
+
"default": "'lazy'",
|
|
200
|
+
"value": {
|
|
201
|
+
"kind": "expression",
|
|
202
|
+
"type": "'eager' | 'lazy' | undefined"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"slots": [
|
|
207
|
+
{
|
|
208
|
+
"name": "default"
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"js": {
|
|
212
|
+
"events": [
|
|
213
|
+
{
|
|
214
|
+
"name": "load",
|
|
215
|
+
"arguments": [
|
|
216
|
+
{
|
|
217
|
+
"name": "argument",
|
|
218
|
+
"type": "[event: Event]"
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "error",
|
|
224
|
+
"arguments": [
|
|
225
|
+
{
|
|
226
|
+
"name": "argument",
|
|
227
|
+
"type": "[event: Event]"
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
}
|
|
231
|
+
]
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "RuiAvatarGroup",
|
|
236
|
+
"source": {
|
|
237
|
+
"module": "@rotki/ui-library/components/avatars/RuiAvatarGroup.vue",
|
|
238
|
+
"symbol": "RuiAvatarGroup"
|
|
239
|
+
},
|
|
240
|
+
"attributes": [
|
|
241
|
+
{
|
|
242
|
+
"name": "size",
|
|
243
|
+
"description": "",
|
|
244
|
+
"required": false,
|
|
245
|
+
"value": {
|
|
246
|
+
"kind": "expression",
|
|
247
|
+
"type": "number | AvatarSize | undefined"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "variant",
|
|
252
|
+
"description": "",
|
|
253
|
+
"required": false,
|
|
254
|
+
"default": "'circular'",
|
|
255
|
+
"value": {
|
|
256
|
+
"kind": "expression",
|
|
257
|
+
"type": "AvatarVariant | undefined"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "max",
|
|
262
|
+
"description": "",
|
|
263
|
+
"required": false,
|
|
264
|
+
"value": {
|
|
265
|
+
"kind": "expression",
|
|
266
|
+
"type": "number | undefined"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "total",
|
|
271
|
+
"description": "",
|
|
272
|
+
"required": false,
|
|
273
|
+
"value": {
|
|
274
|
+
"kind": "expression",
|
|
275
|
+
"type": "number | undefined"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "spacing",
|
|
280
|
+
"description": "",
|
|
281
|
+
"required": false,
|
|
282
|
+
"default": "AvatarGroupSpacing.md",
|
|
283
|
+
"value": {
|
|
284
|
+
"kind": "expression",
|
|
285
|
+
"type": "number | AvatarGroupSpacing | undefined"
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
],
|
|
289
|
+
"slots": [
|
|
290
|
+
{
|
|
291
|
+
"name": "default"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "surplus",
|
|
295
|
+
"vue-properties": [
|
|
296
|
+
{
|
|
297
|
+
"name": "count",
|
|
298
|
+
"type": "number"
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"js": {
|
|
304
|
+
"events": []
|
|
305
|
+
}
|
|
306
|
+
},
|
|
120
307
|
{
|
|
121
308
|
"name": "RuiCalendar",
|
|
122
309
|
"source": {
|
|
@@ -650,7 +837,7 @@
|
|
|
650
837
|
"default": "'grey'",
|
|
651
838
|
"value": {
|
|
652
839
|
"kind": "expression",
|
|
653
|
-
"type": "
|
|
840
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | 'grey' | undefined"
|
|
654
841
|
}
|
|
655
842
|
},
|
|
656
843
|
{
|
|
@@ -1069,6 +1256,16 @@
|
|
|
1069
1256
|
"kind": "expression",
|
|
1070
1257
|
"type": "number | Date | undefined"
|
|
1071
1258
|
}
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"name": "menu-open",
|
|
1262
|
+
"description": "",
|
|
1263
|
+
"required": false,
|
|
1264
|
+
"default": "false",
|
|
1265
|
+
"value": {
|
|
1266
|
+
"kind": "expression",
|
|
1267
|
+
"type": "boolean | undefined"
|
|
1268
|
+
}
|
|
1072
1269
|
}
|
|
1073
1270
|
],
|
|
1074
1271
|
"slots": [
|
|
@@ -1086,6 +1283,15 @@
|
|
|
1086
1283
|
"type": "[value: number | Date | undefined]"
|
|
1087
1284
|
}
|
|
1088
1285
|
]
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"name": "update:menuOpen",
|
|
1289
|
+
"arguments": [
|
|
1290
|
+
{
|
|
1291
|
+
"name": "argument",
|
|
1292
|
+
"type": "[value: boolean]"
|
|
1293
|
+
}
|
|
1294
|
+
]
|
|
1089
1295
|
}
|
|
1090
1296
|
]
|
|
1091
1297
|
},
|
|
@@ -1451,7 +1657,7 @@
|
|
|
1451
1657
|
"required": false,
|
|
1452
1658
|
"value": {
|
|
1453
1659
|
"kind": "expression",
|
|
1454
|
-
"type": "
|
|
1660
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
1455
1661
|
}
|
|
1456
1662
|
}
|
|
1457
1663
|
],
|
|
@@ -1628,7 +1834,7 @@
|
|
|
1628
1834
|
"default": "'inherit'",
|
|
1629
1835
|
"value": {
|
|
1630
1836
|
"kind": "expression",
|
|
1631
|
-
"type": "
|
|
1837
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | 'inherit' | undefined"
|
|
1632
1838
|
}
|
|
1633
1839
|
},
|
|
1634
1840
|
{
|
|
@@ -3061,7 +3267,7 @@
|
|
|
3061
3267
|
"default": "undefined",
|
|
3062
3268
|
"value": {
|
|
3063
3269
|
"kind": "expression",
|
|
3064
|
-
"type": "
|
|
3270
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
3065
3271
|
}
|
|
3066
3272
|
},
|
|
3067
3273
|
{
|
|
@@ -3217,7 +3423,7 @@
|
|
|
3217
3423
|
"required": false,
|
|
3218
3424
|
"value": {
|
|
3219
3425
|
"kind": "expression",
|
|
3220
|
-
"type": "
|
|
3426
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
3221
3427
|
}
|
|
3222
3428
|
},
|
|
3223
3429
|
{
|
|
@@ -3226,7 +3432,7 @@
|
|
|
3226
3432
|
"required": false,
|
|
3227
3433
|
"value": {
|
|
3228
3434
|
"kind": "expression",
|
|
3229
|
-
"type": "
|
|
3435
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
3230
3436
|
}
|
|
3231
3437
|
},
|
|
3232
3438
|
{
|
|
@@ -3838,11 +4044,20 @@
|
|
|
3838
4044
|
"symbol": "RuiCheckbox"
|
|
3839
4045
|
},
|
|
3840
4046
|
"attributes": [
|
|
4047
|
+
{
|
|
4048
|
+
"name": "value",
|
|
4049
|
+
"description": "",
|
|
4050
|
+
"required": false,
|
|
4051
|
+
"default": "undefined",
|
|
4052
|
+
"value": {
|
|
4053
|
+
"kind": "expression",
|
|
4054
|
+
"type": "TValue | undefined"
|
|
4055
|
+
}
|
|
4056
|
+
},
|
|
3841
4057
|
{
|
|
3842
4058
|
"name": "disabled",
|
|
3843
4059
|
"description": "",
|
|
3844
4060
|
"required": false,
|
|
3845
|
-
"default": "false",
|
|
3846
4061
|
"value": {
|
|
3847
4062
|
"kind": "expression",
|
|
3848
4063
|
"type": "boolean | undefined"
|
|
@@ -3852,17 +4067,15 @@
|
|
|
3852
4067
|
"name": "color",
|
|
3853
4068
|
"description": "",
|
|
3854
4069
|
"required": false,
|
|
3855
|
-
"default": "undefined",
|
|
3856
4070
|
"value": {
|
|
3857
4071
|
"kind": "expression",
|
|
3858
|
-
"type": "
|
|
4072
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
3859
4073
|
}
|
|
3860
4074
|
},
|
|
3861
4075
|
{
|
|
3862
4076
|
"name": "size",
|
|
3863
4077
|
"description": "",
|
|
3864
4078
|
"required": false,
|
|
3865
|
-
"default": "undefined",
|
|
3866
4079
|
"value": {
|
|
3867
4080
|
"kind": "expression",
|
|
3868
4081
|
"type": "'sm' | 'lg' | undefined"
|
|
@@ -4034,7 +4247,7 @@
|
|
|
4034
4247
|
"required": false,
|
|
4035
4248
|
"value": {
|
|
4036
4249
|
"kind": "expression",
|
|
4037
|
-
"type": "
|
|
4250
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
4038
4251
|
}
|
|
4039
4252
|
},
|
|
4040
4253
|
{
|
|
@@ -4043,7 +4256,7 @@
|
|
|
4043
4256
|
"required": false,
|
|
4044
4257
|
"value": {
|
|
4045
4258
|
"kind": "expression",
|
|
4046
|
-
"type": "
|
|
4259
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
4047
4260
|
}
|
|
4048
4261
|
},
|
|
4049
4262
|
{
|
|
@@ -4770,7 +4983,7 @@
|
|
|
4770
4983
|
"default": "'primary'",
|
|
4771
4984
|
"value": {
|
|
4772
4985
|
"kind": "expression",
|
|
4773
|
-
"type": "
|
|
4986
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
4774
4987
|
}
|
|
4775
4988
|
},
|
|
4776
4989
|
{
|
|
@@ -4916,7 +5129,7 @@
|
|
|
4916
5129
|
"default": "undefined",
|
|
4917
5130
|
"value": {
|
|
4918
5131
|
"kind": "expression",
|
|
4919
|
-
"type": "
|
|
5132
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
4920
5133
|
}
|
|
4921
5134
|
},
|
|
4922
5135
|
{
|
|
@@ -5077,7 +5290,7 @@
|
|
|
5077
5290
|
"default": "undefined",
|
|
5078
5291
|
"value": {
|
|
5079
5292
|
"kind": "expression",
|
|
5080
|
-
"type": "
|
|
5293
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
5081
5294
|
}
|
|
5082
5295
|
},
|
|
5083
5296
|
{
|
|
@@ -5087,7 +5300,7 @@
|
|
|
5087
5300
|
"default": "undefined",
|
|
5088
5301
|
"value": {
|
|
5089
5302
|
"kind": "expression",
|
|
5090
|
-
"type": "
|
|
5303
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
5091
5304
|
}
|
|
5092
5305
|
},
|
|
5093
5306
|
{
|
|
@@ -5339,7 +5552,7 @@
|
|
|
5339
5552
|
"default": "undefined",
|
|
5340
5553
|
"value": {
|
|
5341
5554
|
"kind": "expression",
|
|
5342
|
-
"type": "
|
|
5555
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
5343
5556
|
}
|
|
5344
5557
|
},
|
|
5345
5558
|
{
|
|
@@ -5349,7 +5562,7 @@
|
|
|
5349
5562
|
"default": "undefined",
|
|
5350
5563
|
"value": {
|
|
5351
5564
|
"kind": "expression",
|
|
5352
|
-
"type": "
|
|
5565
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
5353
5566
|
}
|
|
5354
5567
|
},
|
|
5355
5568
|
{
|
|
@@ -5638,7 +5851,7 @@
|
|
|
5638
5851
|
"default": "'primary'",
|
|
5639
5852
|
"value": {
|
|
5640
5853
|
"kind": "expression",
|
|
5641
|
-
"type": "
|
|
5854
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | 'default' | undefined"
|
|
5642
5855
|
}
|
|
5643
5856
|
}
|
|
5644
5857
|
],
|
|
@@ -6517,7 +6730,7 @@
|
|
|
6517
6730
|
"required": false,
|
|
6518
6731
|
"value": {
|
|
6519
6732
|
"kind": "expression",
|
|
6520
|
-
"type": "
|
|
6733
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
6521
6734
|
}
|
|
6522
6735
|
},
|
|
6523
6736
|
{
|
|
@@ -6790,7 +7003,7 @@
|
|
|
6790
7003
|
"required": false,
|
|
6791
7004
|
"value": {
|
|
6792
7005
|
"kind": "expression",
|
|
6793
|
-
"type": "
|
|
7006
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
6794
7007
|
}
|
|
6795
7008
|
},
|
|
6796
7009
|
{
|
|
@@ -6873,6 +7086,145 @@
|
|
|
6873
7086
|
"event": "update:modelValue"
|
|
6874
7087
|
}
|
|
6875
7088
|
},
|
|
7089
|
+
{
|
|
7090
|
+
"name": "RuiCheckboxGroup",
|
|
7091
|
+
"source": {
|
|
7092
|
+
"module": "@rotki/ui-library/components/forms/checkbox/checkbox-group/RuiCheckboxGroup.vue",
|
|
7093
|
+
"symbol": "RuiCheckboxGroup"
|
|
7094
|
+
},
|
|
7095
|
+
"attributes": [
|
|
7096
|
+
{
|
|
7097
|
+
"name": "inline",
|
|
7098
|
+
"description": "",
|
|
7099
|
+
"required": false,
|
|
7100
|
+
"default": "false",
|
|
7101
|
+
"value": {
|
|
7102
|
+
"kind": "expression",
|
|
7103
|
+
"type": "boolean | undefined"
|
|
7104
|
+
}
|
|
7105
|
+
},
|
|
7106
|
+
{
|
|
7107
|
+
"name": "label",
|
|
7108
|
+
"description": "",
|
|
7109
|
+
"required": false,
|
|
7110
|
+
"default": "''",
|
|
7111
|
+
"value": {
|
|
7112
|
+
"kind": "expression",
|
|
7113
|
+
"type": "string | undefined"
|
|
7114
|
+
}
|
|
7115
|
+
},
|
|
7116
|
+
{
|
|
7117
|
+
"name": "hint",
|
|
7118
|
+
"description": "",
|
|
7119
|
+
"required": false,
|
|
7120
|
+
"default": "''",
|
|
7121
|
+
"value": {
|
|
7122
|
+
"kind": "expression",
|
|
7123
|
+
"type": "string | undefined"
|
|
7124
|
+
}
|
|
7125
|
+
},
|
|
7126
|
+
{
|
|
7127
|
+
"name": "error-messages",
|
|
7128
|
+
"description": "",
|
|
7129
|
+
"required": false,
|
|
7130
|
+
"default": "[]",
|
|
7131
|
+
"value": {
|
|
7132
|
+
"kind": "expression",
|
|
7133
|
+
"type": "string | string[] | undefined"
|
|
7134
|
+
}
|
|
7135
|
+
},
|
|
7136
|
+
{
|
|
7137
|
+
"name": "success-messages",
|
|
7138
|
+
"description": "",
|
|
7139
|
+
"required": false,
|
|
7140
|
+
"default": "[]",
|
|
7141
|
+
"value": {
|
|
7142
|
+
"kind": "expression",
|
|
7143
|
+
"type": "string | string[] | undefined"
|
|
7144
|
+
}
|
|
7145
|
+
},
|
|
7146
|
+
{
|
|
7147
|
+
"name": "hide-details",
|
|
7148
|
+
"description": "",
|
|
7149
|
+
"required": false,
|
|
7150
|
+
"default": "false",
|
|
7151
|
+
"value": {
|
|
7152
|
+
"kind": "expression",
|
|
7153
|
+
"type": "boolean | undefined"
|
|
7154
|
+
}
|
|
7155
|
+
},
|
|
7156
|
+
{
|
|
7157
|
+
"name": "disabled",
|
|
7158
|
+
"description": "",
|
|
7159
|
+
"required": false,
|
|
7160
|
+
"default": "false",
|
|
7161
|
+
"value": {
|
|
7162
|
+
"kind": "expression",
|
|
7163
|
+
"type": "boolean | undefined"
|
|
7164
|
+
}
|
|
7165
|
+
},
|
|
7166
|
+
{
|
|
7167
|
+
"name": "color",
|
|
7168
|
+
"description": "",
|
|
7169
|
+
"required": false,
|
|
7170
|
+
"value": {
|
|
7171
|
+
"kind": "expression",
|
|
7172
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
7173
|
+
}
|
|
7174
|
+
},
|
|
7175
|
+
{
|
|
7176
|
+
"name": "size",
|
|
7177
|
+
"description": "",
|
|
7178
|
+
"required": false,
|
|
7179
|
+
"value": {
|
|
7180
|
+
"kind": "expression",
|
|
7181
|
+
"type": "'sm' | 'lg' | undefined"
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
{
|
|
7185
|
+
"name": "required",
|
|
7186
|
+
"description": "",
|
|
7187
|
+
"required": false,
|
|
7188
|
+
"default": "false",
|
|
7189
|
+
"value": {
|
|
7190
|
+
"kind": "expression",
|
|
7191
|
+
"type": "boolean | undefined"
|
|
7192
|
+
}
|
|
7193
|
+
},
|
|
7194
|
+
{
|
|
7195
|
+
"name": "model-value",
|
|
7196
|
+
"description": "",
|
|
7197
|
+
"required": false,
|
|
7198
|
+
"default": "[]",
|
|
7199
|
+
"value": {
|
|
7200
|
+
"kind": "expression",
|
|
7201
|
+
"type": "TValue[] | undefined"
|
|
7202
|
+
}
|
|
7203
|
+
}
|
|
7204
|
+
],
|
|
7205
|
+
"slots": [
|
|
7206
|
+
{
|
|
7207
|
+
"name": "default"
|
|
7208
|
+
}
|
|
7209
|
+
],
|
|
7210
|
+
"js": {
|
|
7211
|
+
"events": [
|
|
7212
|
+
{
|
|
7213
|
+
"name": "update:modelValue",
|
|
7214
|
+
"arguments": [
|
|
7215
|
+
{
|
|
7216
|
+
"name": "argument",
|
|
7217
|
+
"type": "[value: TValue[]]"
|
|
7218
|
+
}
|
|
7219
|
+
]
|
|
7220
|
+
}
|
|
7221
|
+
]
|
|
7222
|
+
},
|
|
7223
|
+
"vue-model": {
|
|
7224
|
+
"prop": "modelValue",
|
|
7225
|
+
"event": "update:modelValue"
|
|
7226
|
+
}
|
|
7227
|
+
},
|
|
6876
7228
|
{
|
|
6877
7229
|
"name": "RuiRadio",
|
|
6878
7230
|
"source": {
|
|
@@ -6905,7 +7257,7 @@
|
|
|
6905
7257
|
"required": false,
|
|
6906
7258
|
"value": {
|
|
6907
7259
|
"kind": "expression",
|
|
6908
|
-
"type": "
|
|
7260
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
6909
7261
|
}
|
|
6910
7262
|
},
|
|
6911
7263
|
{
|
|
@@ -7093,7 +7445,7 @@
|
|
|
7093
7445
|
"required": false,
|
|
7094
7446
|
"value": {
|
|
7095
7447
|
"kind": "expression",
|
|
7096
|
-
"type": "
|
|
7448
|
+
"type": "'error' | 'primary' | 'secondary' | 'warning' | 'info' | 'success' | undefined"
|
|
7097
7449
|
}
|
|
7098
7450
|
},
|
|
7099
7451
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotki/ui-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.19.0",
|
|
4
4
|
"description": "A vue design system and component library for rotki",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -149,8 +149,9 @@
|
|
|
149
149
|
"build:tailwind": "tailwindcss -o dist/style.css --minify",
|
|
150
150
|
"build:types": "vue-tsc -p tsconfig.build.json",
|
|
151
151
|
"build:web-types": "tsx scripts/build-web-types.mjs",
|
|
152
|
-
"generate-icons": "tsx scripts/generate-icons.
|
|
152
|
+
"generate-icons": "tsx scripts/generate-icons.ts",
|
|
153
153
|
"resolve:alias": "tsc-alias --replacer ./scripts/tsc-alias-replacer.cjs -p tsconfig.build.json --dir dist",
|
|
154
|
+
"scan:library-icons": "tsx scripts/scan-library-icons.ts",
|
|
154
155
|
"verify:dist": "tsx scripts/verify-dist.ts",
|
|
155
156
|
"dev": "vite",
|
|
156
157
|
"storybook": "storybook dev -p 6006",
|