@webitel/ui-sdk 25.10.46 → 25.10.48
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/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +8991 -8721
- package/dist/ui-sdk.umd.cjs +239 -167
- package/package.json +2 -2
- package/src/components/wt-button/wt-button.vue +26 -7
- package/src/components/wt-table/wt-table.vue +48 -2
- package/src/enums/ButtonVariant/ButtonVariant.ts +7 -0
- package/src/enums/index.ts +3 -0
- package/src/plugins/primevue/theme/components/button/button.js +97 -8
- package/types/components/wt-button/wt-button.vue.d.ts +17 -4
- package/types/components/wt-rounded-action/wt-rounded-action.vue.d.ts +2 -2
- package/types/components/wt-table/wt-table.vue.d.ts +24 -8
- package/types/enums/ButtonVariant/ButtonVariant.d.ts +6 -0
- package/types/enums/index.d.ts +2 -1
- package/types/plugins/primevue/theme/components/button/button.d.ts +23 -34
|
@@ -159,25 +159,19 @@ declare const button: {
|
|
|
159
159
|
borderColor: string;
|
|
160
160
|
color: string;
|
|
161
161
|
};
|
|
162
|
-
|
|
163
|
-
hoverBackground: string;
|
|
164
|
-
activeBackground: string;
|
|
165
|
-
borderColor: string;
|
|
166
|
-
color: string;
|
|
167
|
-
};
|
|
168
|
-
danger: {
|
|
162
|
+
job: {
|
|
169
163
|
hoverBackground: string;
|
|
170
164
|
activeBackground: string;
|
|
171
165
|
borderColor: string;
|
|
172
166
|
color: string;
|
|
173
167
|
};
|
|
174
|
-
|
|
168
|
+
error: {
|
|
175
169
|
hoverBackground: string;
|
|
176
170
|
activeBackground: string;
|
|
177
171
|
borderColor: string;
|
|
178
172
|
color: string;
|
|
179
173
|
};
|
|
180
|
-
|
|
174
|
+
transfer: {
|
|
181
175
|
hoverBackground: string;
|
|
182
176
|
activeBackground: string;
|
|
183
177
|
borderColor: string;
|
|
@@ -210,22 +204,17 @@ declare const button: {
|
|
|
210
204
|
activeBackground: string;
|
|
211
205
|
color: string;
|
|
212
206
|
};
|
|
213
|
-
|
|
214
|
-
hoverBackground: string;
|
|
215
|
-
activeBackground: string;
|
|
216
|
-
color: string;
|
|
217
|
-
};
|
|
218
|
-
danger: {
|
|
207
|
+
job: {
|
|
219
208
|
hoverBackground: string;
|
|
220
209
|
activeBackground: string;
|
|
221
210
|
color: string;
|
|
222
211
|
};
|
|
223
|
-
|
|
212
|
+
error: {
|
|
224
213
|
hoverBackground: string;
|
|
225
214
|
activeBackground: string;
|
|
226
215
|
color: string;
|
|
227
216
|
};
|
|
228
|
-
|
|
217
|
+
transfer: {
|
|
229
218
|
hoverBackground: string;
|
|
230
219
|
activeBackground: string;
|
|
231
220
|
color: string;
|
|
@@ -395,25 +384,19 @@ declare const button: {
|
|
|
395
384
|
borderColor: string;
|
|
396
385
|
color: string;
|
|
397
386
|
};
|
|
398
|
-
|
|
399
|
-
hoverBackground: string;
|
|
400
|
-
activeBackground: string;
|
|
401
|
-
borderColor: string;
|
|
402
|
-
color: string;
|
|
403
|
-
};
|
|
404
|
-
danger: {
|
|
387
|
+
error: {
|
|
405
388
|
hoverBackground: string;
|
|
406
389
|
activeBackground: string;
|
|
407
390
|
borderColor: string;
|
|
408
391
|
color: string;
|
|
409
392
|
};
|
|
410
|
-
|
|
393
|
+
transfer: {
|
|
411
394
|
hoverBackground: string;
|
|
412
395
|
activeBackground: string;
|
|
413
396
|
borderColor: string;
|
|
414
397
|
color: string;
|
|
415
398
|
};
|
|
416
|
-
|
|
399
|
+
job: {
|
|
417
400
|
hoverBackground: string;
|
|
418
401
|
activeBackground: string;
|
|
419
402
|
borderColor: string;
|
|
@@ -446,22 +429,17 @@ declare const button: {
|
|
|
446
429
|
activeBackground: string;
|
|
447
430
|
color: string;
|
|
448
431
|
};
|
|
449
|
-
|
|
450
|
-
hoverBackground: string;
|
|
451
|
-
activeBackground: string;
|
|
452
|
-
color: string;
|
|
453
|
-
};
|
|
454
|
-
danger: {
|
|
432
|
+
job: {
|
|
455
433
|
hoverBackground: string;
|
|
456
434
|
activeBackground: string;
|
|
457
435
|
color: string;
|
|
458
436
|
};
|
|
459
|
-
|
|
437
|
+
error: {
|
|
460
438
|
hoverBackground: string;
|
|
461
439
|
activeBackground: string;
|
|
462
440
|
color: string;
|
|
463
441
|
};
|
|
464
|
-
|
|
442
|
+
transfer: {
|
|
465
443
|
hoverBackground: string;
|
|
466
444
|
activeBackground: string;
|
|
467
445
|
color: string;
|
|
@@ -503,6 +481,17 @@ declare const button: {
|
|
|
503
481
|
paddingY: string;
|
|
504
482
|
iconOnlyWidth: string;
|
|
505
483
|
};
|
|
484
|
+
icon: {
|
|
485
|
+
xs: {
|
|
486
|
+
padding: string;
|
|
487
|
+
};
|
|
488
|
+
sm: {
|
|
489
|
+
padding: string;
|
|
490
|
+
};
|
|
491
|
+
md: {
|
|
492
|
+
padding: string;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
506
495
|
label: {
|
|
507
496
|
fontWeight: string;
|
|
508
497
|
};
|