@pequity/squirrel 6.1.1 → 7.0.1

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 (96) hide show
  1. package/dist/cjs/chunks/index.js +748 -504
  2. package/dist/cjs/chunks/p-alert.js +52 -0
  3. package/dist/cjs/chunks/p-avatar.js +65 -0
  4. package/dist/cjs/chunks/p-btn.js +2 -2
  5. package/dist/cjs/chunks/p-date-picker.js +2 -2
  6. package/dist/cjs/chunks/p-input-number.js +161 -0
  7. package/dist/cjs/chunks/p-input-percent.js +2 -2
  8. package/dist/cjs/chunks/p-input.js +111 -0
  9. package/dist/cjs/chunks/p-progress-bar.js +38 -0
  10. package/dist/cjs/chunks/p-textarea.js +89 -0
  11. package/dist/cjs/index.js +69 -76
  12. package/dist/cjs/inputClasses.js +8 -2
  13. package/dist/cjs/p-alert.js +2 -64
  14. package/dist/cjs/p-avatar.js +2 -70
  15. package/dist/cjs/p-drawer.js +2 -2
  16. package/dist/cjs/p-input-number.js +2 -145
  17. package/dist/cjs/p-input-search.js +2 -2
  18. package/dist/cjs/p-input.js +2 -92
  19. package/dist/cjs/p-modal.js +2 -2
  20. package/dist/cjs/p-progress-bar.js +2 -40
  21. package/dist/cjs/p-table-filter-icon.js +14 -9
  22. package/dist/cjs/p-textarea.js +2 -72
  23. package/dist/cjs/p-toggle.js +76 -64
  24. package/dist/cjs/useInputClasses.js +13 -18
  25. package/dist/es/chunks/index.js +748 -504
  26. package/dist/es/chunks/p-alert.js +53 -0
  27. package/dist/es/chunks/p-avatar.js +66 -0
  28. package/dist/es/chunks/p-btn.js +2 -2
  29. package/dist/es/chunks/p-date-picker.js +2 -2
  30. package/dist/es/chunks/p-input-number.js +162 -0
  31. package/dist/es/chunks/p-input-percent.js +2 -2
  32. package/dist/es/chunks/p-input.js +112 -0
  33. package/dist/es/chunks/p-progress-bar.js +39 -0
  34. package/dist/es/chunks/p-textarea.js +90 -0
  35. package/dist/es/index.js +119 -126
  36. package/dist/es/inputClasses.js +8 -2
  37. package/dist/es/p-alert.js +2 -64
  38. package/dist/es/p-avatar.js +2 -70
  39. package/dist/es/p-drawer.js +2 -2
  40. package/dist/es/p-input-number.js +2 -145
  41. package/dist/es/p-input-search.js +2 -2
  42. package/dist/es/p-input.js +2 -92
  43. package/dist/es/p-modal.js +2 -2
  44. package/dist/es/p-progress-bar.js +2 -40
  45. package/dist/es/p-table-filter-icon.js +14 -9
  46. package/dist/es/p-textarea.js +2 -72
  47. package/dist/es/p-toggle.js +77 -65
  48. package/dist/es/useInputClasses.js +14 -19
  49. package/dist/squirrel/components/p-alert/p-alert.vue.d.ts +27 -10
  50. package/dist/squirrel/components/p-avatar/p-avatar.vue.d.ts +9 -10
  51. package/dist/squirrel/components/p-btn/p-btn.vue.d.ts +8 -248
  52. package/dist/squirrel/components/p-date-picker/p-date-picker.vue.d.ts +2 -2
  53. package/dist/squirrel/components/p-drawer/p-drawer.vue.d.ts +37 -13
  54. package/dist/squirrel/components/p-inline-date-picker/p-inline-date-picker.vue.d.ts +2 -2
  55. package/dist/squirrel/components/p-input/p-input.vue.d.ts +30 -61
  56. package/dist/squirrel/components/p-input-number/p-input-number.vue.d.ts +101 -65
  57. package/dist/squirrel/components/p-input-search/p-input-search.vue.d.ts +113 -83
  58. package/dist/squirrel/components/p-modal/p-modal.vue.d.ts +2 -2
  59. package/dist/squirrel/components/p-progress-bar/p-progress-bar.vue.d.ts +5 -20
  60. package/dist/squirrel/components/p-table-header-cell/p-table-header-cell.vue.d.ts +1 -1
  61. package/dist/squirrel/components/p-table-loader/p-table-loader.vue.d.ts +1 -1
  62. package/dist/squirrel/components/p-table-sort/p-table-sort.vue.d.ts +3 -7
  63. package/dist/squirrel/components/p-textarea/p-textarea.vue.d.ts +79 -42
  64. package/dist/squirrel/components/p-toggle/p-toggle.vue.d.ts +25 -62
  65. package/dist/squirrel/composables/useInputClasses.d.ts +2 -1
  66. package/dist/squirrel/utils/index.d.ts +1 -3
  67. package/dist/squirrel/utils/inputClasses.d.ts +9 -525
  68. package/dist/squirrel.css +5 -5
  69. package/package.json +28 -28
  70. package/squirrel/components/p-alert/p-alert.spec.js +9 -8
  71. package/squirrel/components/p-alert/p-alert.vue +19 -31
  72. package/squirrel/components/p-avatar/p-avatar.spec.ts +10 -3
  73. package/squirrel/components/p-avatar/p-avatar.vue +40 -42
  74. package/squirrel/components/p-btn/p-btn.spec.js +2 -3
  75. package/squirrel/components/p-btn/p-btn.vue +2 -2
  76. package/squirrel/components/p-input/p-input.vue +63 -40
  77. package/squirrel/components/p-input-number/p-input-number.vue +101 -86
  78. package/squirrel/components/p-progress-bar/p-progress-bar.vue +9 -14
  79. package/squirrel/components/p-table-header-cell/p-table-filter-icon.vue +8 -9
  80. package/squirrel/components/p-table-sort/p-table-sort.vue +13 -16
  81. package/squirrel/components/p-textarea/p-textarea.vue +55 -37
  82. package/squirrel/components/p-toggle/p-toggle.vue +59 -43
  83. package/squirrel/composables/useInputClasses.spec.js +50 -13
  84. package/squirrel/composables/useInputClasses.ts +18 -24
  85. package/squirrel/utils/index.ts +0 -7
  86. package/squirrel/utils/inputClasses.ts +8 -2
  87. package/dist/cjs/inputClassesMixin.js +0 -58
  88. package/dist/cjs/tailwind.js +0 -25
  89. package/dist/es/inputClassesMixin.js +0 -59
  90. package/dist/es/tailwind.js +0 -25
  91. package/dist/squirrel/utils/inputClassesMixin.d.ts +0 -56
  92. package/dist/squirrel/utils/tailwind.d.ts +0 -8
  93. package/squirrel/utils/inputClassesMixin.spec.js +0 -241
  94. package/squirrel/utils/inputClassesMixin.ts +0 -60
  95. package/squirrel/utils/tailwind.spec.js +0 -27
  96. package/squirrel/utils/tailwind.ts +0 -28
@@ -38,79 +38,7 @@ declare const inputClasses: import("tailwind-variants").TVReturnType<{
38
38
  input: string;
39
39
  label: string;
40
40
  errorMessage: string;
41
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
42
- size: {
43
- sm: {
44
- input: string;
45
- label: string;
46
- };
47
- md: {
48
- input: string;
49
- label: string;
50
- };
51
- lg: {
52
- input: string;
53
- label: string;
54
- };
55
- };
56
- prefix: {
57
- true: string;
58
- };
59
- suffix: {
60
- true: string;
61
- };
62
- required: {
63
- true: {
64
- label: string;
65
- };
66
- };
67
- error: {
68
- true: {
69
- input: string;
70
- };
71
- };
72
- rounded: {
73
- true: {
74
- input: string;
75
- };
76
- };
77
- }, {
78
- size: {
79
- sm: {
80
- input: string;
81
- label: string;
82
- };
83
- md: {
84
- input: string;
85
- label: string;
86
- };
87
- lg: {
88
- input: string;
89
- label: string;
90
- };
91
- };
92
- prefix: {
93
- true: string;
94
- };
95
- suffix: {
96
- true: string;
97
- };
98
- required: {
99
- true: {
100
- label: string;
101
- };
102
- };
103
- error: {
104
- true: {
105
- input: string;
106
- };
107
- };
108
- rounded: {
109
- true: {
110
- input: string;
111
- };
112
- };
113
- }>, {
41
+ }, undefined, {
114
42
  size: {
115
43
  sm: {
116
44
  input: string;
@@ -190,130 +118,22 @@ declare const inputClasses: import("tailwind-variants").TVReturnType<{
190
118
  input: string;
191
119
  label: string;
192
120
  errorMessage: string;
193
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
121
+ }, undefined, unknown, unknown, undefined>>;
122
+ declare const textareaClasses: import("tailwind-variants").TVReturnType<{
194
123
  size: {
195
124
  sm: {
196
125
  input: string;
197
- label: string;
198
126
  };
199
127
  md: {
200
128
  input: string;
201
- label: string;
202
129
  };
203
130
  lg: {
204
131
  input: string;
205
- label: string;
206
- };
207
- };
208
- prefix: {
209
- true: string;
210
- };
211
- suffix: {
212
- true: string;
213
- };
214
- required: {
215
- true: {
216
- label: string;
217
- };
218
- };
219
- error: {
220
- true: {
221
- input: string;
222
- };
223
- };
224
- rounded: {
225
- true: {
226
- input: string;
227
- };
228
- };
229
- }, {
230
- size: {
231
- sm: {
232
- input: string;
233
- label: string;
234
- };
235
- md: {
236
- input: string;
237
- label: string;
238
- };
239
- lg: {
240
- input: string;
241
- label: string;
242
- };
243
- };
244
- prefix: {
245
- true: string;
246
- };
247
- suffix: {
248
- true: string;
249
- };
250
- required: {
251
- true: {
252
- label: string;
253
- };
254
- };
255
- error: {
256
- true: {
257
- input: string;
258
- };
259
- };
260
- rounded: {
261
- true: {
262
- input: string;
263
- };
264
- };
265
- }>, unknown, unknown, undefined>>;
266
- declare const textareaClasses: import("tailwind-variants").TVReturnType<{
267
- size: {
268
- md: {
269
- input: string;
270
132
  };
271
133
  };
272
134
  }, {
273
135
  input: string;
274
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
275
- size: {
276
- md: {
277
- input: string;
278
- };
279
- };
280
- }, {
281
- size: {
282
- sm: {
283
- input: string;
284
- label: string;
285
- };
286
- md: {
287
- input: string;
288
- label: string;
289
- };
290
- lg: {
291
- input: string;
292
- label: string;
293
- };
294
- };
295
- prefix: {
296
- true: string;
297
- };
298
- suffix: {
299
- true: string;
300
- };
301
- required: {
302
- true: {
303
- label: string;
304
- };
305
- };
306
- error: {
307
- true: {
308
- input: string;
309
- };
310
- };
311
- rounded: {
312
- true: {
313
- input: string;
314
- };
315
- };
316
- }>, {
136
+ }, undefined, {
317
137
  size: {
318
138
  sm: {
319
139
  input: string;
@@ -393,79 +213,7 @@ declare const textareaClasses: import("tailwind-variants").TVReturnType<{
393
213
  input: string;
394
214
  label: string;
395
215
  errorMessage: string;
396
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
397
- size: {
398
- sm: {
399
- input: string;
400
- label: string;
401
- };
402
- md: {
403
- input: string;
404
- label: string;
405
- };
406
- lg: {
407
- input: string;
408
- label: string;
409
- };
410
- };
411
- prefix: {
412
- true: string;
413
- };
414
- suffix: {
415
- true: string;
416
- };
417
- required: {
418
- true: {
419
- label: string;
420
- };
421
- };
422
- error: {
423
- true: {
424
- input: string;
425
- };
426
- };
427
- rounded: {
428
- true: {
429
- input: string;
430
- };
431
- };
432
- }, {
433
- size: {
434
- sm: {
435
- input: string;
436
- label: string;
437
- };
438
- md: {
439
- input: string;
440
- label: string;
441
- };
442
- lg: {
443
- input: string;
444
- label: string;
445
- };
446
- };
447
- prefix: {
448
- true: string;
449
- };
450
- suffix: {
451
- true: string;
452
- };
453
- required: {
454
- true: {
455
- label: string;
456
- };
457
- };
458
- error: {
459
- true: {
460
- input: string;
461
- };
462
- };
463
- rounded: {
464
- true: {
465
- input: string;
466
- };
467
- };
468
- }>, {
216
+ }, undefined, {
469
217
  size: {
470
218
  sm: {
471
219
  input: string;
@@ -545,79 +293,7 @@ declare const textareaClasses: import("tailwind-variants").TVReturnType<{
545
293
  input: string;
546
294
  label: string;
547
295
  errorMessage: string;
548
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
549
- size: {
550
- sm: {
551
- input: string;
552
- label: string;
553
- };
554
- md: {
555
- input: string;
556
- label: string;
557
- };
558
- lg: {
559
- input: string;
560
- label: string;
561
- };
562
- };
563
- prefix: {
564
- true: string;
565
- };
566
- suffix: {
567
- true: string;
568
- };
569
- required: {
570
- true: {
571
- label: string;
572
- };
573
- };
574
- error: {
575
- true: {
576
- input: string;
577
- };
578
- };
579
- rounded: {
580
- true: {
581
- input: string;
582
- };
583
- };
584
- }, {
585
- size: {
586
- sm: {
587
- input: string;
588
- label: string;
589
- };
590
- md: {
591
- input: string;
592
- label: string;
593
- };
594
- lg: {
595
- input: string;
596
- label: string;
597
- };
598
- };
599
- prefix: {
600
- true: string;
601
- };
602
- suffix: {
603
- true: string;
604
- };
605
- required: {
606
- true: {
607
- label: string;
608
- };
609
- };
610
- error: {
611
- true: {
612
- input: string;
613
- };
614
- };
615
- rounded: {
616
- true: {
617
- input: string;
618
- };
619
- };
620
- }>, unknown, unknown, undefined>>>;
296
+ }, undefined, unknown, unknown, undefined>>>;
621
297
  declare const selectClasses: import("tailwind-variants").TVReturnType<{
622
298
  size: {
623
299
  sm: {
@@ -632,55 +308,7 @@ declare const selectClasses: import("tailwind-variants").TVReturnType<{
632
308
  };
633
309
  }, {
634
310
  input: string;
635
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
636
- size: {
637
- sm: {
638
- input: string;
639
- };
640
- md: {
641
- input: string;
642
- };
643
- lg: {
644
- input: string;
645
- };
646
- };
647
- }, {
648
- size: {
649
- sm: {
650
- input: string;
651
- label: string;
652
- };
653
- md: {
654
- input: string;
655
- label: string;
656
- };
657
- lg: {
658
- input: string;
659
- label: string;
660
- };
661
- };
662
- prefix: {
663
- true: string;
664
- };
665
- suffix: {
666
- true: string;
667
- };
668
- required: {
669
- true: {
670
- label: string;
671
- };
672
- };
673
- error: {
674
- true: {
675
- input: string;
676
- };
677
- };
678
- rounded: {
679
- true: {
680
- input: string;
681
- };
682
- };
683
- }>, {
311
+ }, undefined, {
684
312
  size: {
685
313
  sm: {
686
314
  input: string;
@@ -760,79 +388,7 @@ declare const selectClasses: import("tailwind-variants").TVReturnType<{
760
388
  input: string;
761
389
  label: string;
762
390
  errorMessage: string;
763
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
764
- size: {
765
- sm: {
766
- input: string;
767
- label: string;
768
- };
769
- md: {
770
- input: string;
771
- label: string;
772
- };
773
- lg: {
774
- input: string;
775
- label: string;
776
- };
777
- };
778
- prefix: {
779
- true: string;
780
- };
781
- suffix: {
782
- true: string;
783
- };
784
- required: {
785
- true: {
786
- label: string;
787
- };
788
- };
789
- error: {
790
- true: {
791
- input: string;
792
- };
793
- };
794
- rounded: {
795
- true: {
796
- input: string;
797
- };
798
- };
799
- }, {
800
- size: {
801
- sm: {
802
- input: string;
803
- label: string;
804
- };
805
- md: {
806
- input: string;
807
- label: string;
808
- };
809
- lg: {
810
- input: string;
811
- label: string;
812
- };
813
- };
814
- prefix: {
815
- true: string;
816
- };
817
- suffix: {
818
- true: string;
819
- };
820
- required: {
821
- true: {
822
- label: string;
823
- };
824
- };
825
- error: {
826
- true: {
827
- input: string;
828
- };
829
- };
830
- rounded: {
831
- true: {
832
- input: string;
833
- };
834
- };
835
- }>, {
391
+ }, undefined, {
836
392
  size: {
837
393
  sm: {
838
394
  input: string;
@@ -912,77 +468,5 @@ declare const selectClasses: import("tailwind-variants").TVReturnType<{
912
468
  input: string;
913
469
  label: string;
914
470
  errorMessage: string;
915
- }, undefined, import("tailwind-variants/dist/config").TVConfig<{
916
- size: {
917
- sm: {
918
- input: string;
919
- label: string;
920
- };
921
- md: {
922
- input: string;
923
- label: string;
924
- };
925
- lg: {
926
- input: string;
927
- label: string;
928
- };
929
- };
930
- prefix: {
931
- true: string;
932
- };
933
- suffix: {
934
- true: string;
935
- };
936
- required: {
937
- true: {
938
- label: string;
939
- };
940
- };
941
- error: {
942
- true: {
943
- input: string;
944
- };
945
- };
946
- rounded: {
947
- true: {
948
- input: string;
949
- };
950
- };
951
- }, {
952
- size: {
953
- sm: {
954
- input: string;
955
- label: string;
956
- };
957
- md: {
958
- input: string;
959
- label: string;
960
- };
961
- lg: {
962
- input: string;
963
- label: string;
964
- };
965
- };
966
- prefix: {
967
- true: string;
968
- };
969
- suffix: {
970
- true: string;
971
- };
972
- required: {
973
- true: {
974
- label: string;
975
- };
976
- };
977
- error: {
978
- true: {
979
- input: string;
980
- };
981
- };
982
- rounded: {
983
- true: {
984
- input: string;
985
- };
986
- };
987
- }>, unknown, unknown, undefined>>>;
471
+ }, undefined, unknown, unknown, undefined>>>;
988
472
  export { inputClasses, selectClasses, textareaClasses };
package/dist/squirrel.css CHANGED
@@ -436,16 +436,16 @@ to {
436
436
  100% {
437
437
  transform: translateX(100%);
438
438
  }
439
- }.filter[data-v-cbac2434] {
439
+ }.filter[data-v-84864117] {
440
440
  background: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.5%206.73H4.5C4.36739%206.73%204.24021%206.67732%204.14645%206.58355C4.05268%206.48978%204%206.3626%204%206.23C4%206.09739%204.05268%205.97021%204.14645%205.87644C4.24021%205.78267%204.36739%205.73%204.5%205.73H15.5C15.6326%205.73%2015.7598%205.78267%2015.8536%205.87644C15.9473%205.97021%2016%206.09739%2016%206.23C16%206.3626%2015.9473%206.48978%2015.8536%206.58355C15.7598%206.67732%2015.6326%206.73%2015.5%206.73Z'%20fill='%23424E6E'/%3e%3cpath%20d='M14.33%209.245H5.67C5.53739%209.245%205.41021%209.19232%205.31644%209.09855C5.22268%209.00478%205.17%208.8776%205.17%208.745C5.17%208.61239%205.22268%208.48521%205.31644%208.39144C5.41021%208.29767%205.53739%208.245%205.67%208.245H14.33C14.4626%208.245%2014.5898%208.29767%2014.6836%208.39144C14.7773%208.48521%2014.83%208.61239%2014.83%208.745C14.83%208.8776%2014.7773%209.00478%2014.6836%209.09855C14.5898%209.19232%2014.4626%209.245%2014.33%209.245Z'%20fill='%23424E6E'/%3e%3cpath%20d='M11.605%2014.27H8.395C8.2624%2014.27%208.13522%2014.2173%208.04145%2014.1235C7.94768%2014.0298%207.895%2013.9026%207.895%2013.77C7.895%2013.6374%207.94768%2013.5102%208.04145%2013.4164C8.13522%2013.3227%208.2624%2013.27%208.395%2013.27H11.605C11.7376%2013.27%2011.8648%2013.3227%2011.9586%2013.4164C12.0523%2013.5102%2012.105%2013.6374%2012.105%2013.77C12.105%2013.9026%2012.0523%2014.0298%2011.9586%2014.1235C11.8648%2014.2173%2011.7376%2014.27%2011.605%2014.27Z'%20fill='%23424E6E'/%3e%3cpath%20d='M13.155%2011.755H6.845C6.71239%2011.755%206.58522%2011.7023%206.49145%2011.6085C6.39768%2011.5148%206.345%2011.3876%206.345%2011.255C6.345%2011.1224%206.39768%2010.9952%206.49145%2010.9014C6.58522%2010.8077%206.71239%2010.755%206.845%2010.755H13.155C13.2876%2010.755%2013.4148%2010.8077%2013.5086%2010.9014C13.6023%2010.9952%2013.655%2011.1224%2013.655%2011.255C13.655%2011.3876%2013.6023%2011.5148%2013.5086%2011.6085C13.4148%2011.7023%2013.2876%2011.755%2013.155%2011.755Z'%20fill='%23424E6E'/%3e%3c/svg%3e") no-repeat;
441
441
  }
442
- .filter[data-v-cbac2434]:hover {
442
+ .filter[data-v-84864117]:hover {
443
443
  background: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='20'%20height='20'%20rx='4'%20fill='black'%20fill-opacity='0.05'/%3e%3cpath%20d='M15.5%206.73001H4.5C4.36739%206.73001%204.24021%206.67733%204.14645%206.58356C4.05268%206.4898%204%206.36262%204%206.23001C4%206.0974%204.05268%205.97023%204.14645%205.87646C4.24021%205.78269%204.36739%205.73001%204.5%205.73001H15.5C15.6326%205.73001%2015.7598%205.78269%2015.8536%205.87646C15.9473%205.97023%2016%206.0974%2016%206.23001C16%206.36262%2015.9473%206.4898%2015.8536%206.58356C15.7598%206.67733%2015.6326%206.73001%2015.5%206.73001Z'%20fill='%23424E6E'/%3e%3cpath%20d='M14.33%209.24503H5.67C5.53739%209.24503%205.41021%209.19235%205.31644%209.09858C5.22268%209.00481%205.17%208.87763%205.17%208.74503C5.17%208.61242%205.22268%208.48524%205.31644%208.39147C5.41021%208.2977%205.53739%208.24503%205.67%208.24503H14.33C14.4626%208.24503%2014.5898%208.2977%2014.6836%208.39147C14.7773%208.48524%2014.83%208.61242%2014.83%208.74503C14.83%208.87763%2014.7773%209.00481%2014.6836%209.09858C14.5898%209.19235%2014.4626%209.24503%2014.33%209.24503Z'%20fill='%23424E6E'/%3e%3cpath%20d='M11.605%2014.27H8.395C8.2624%2014.27%208.13522%2014.2173%208.04145%2014.1236C7.94768%2014.0298%207.895%2013.9026%207.895%2013.77C7.895%2013.6374%207.94768%2013.5102%208.04145%2013.4165C8.13522%2013.3227%208.2624%2013.27%208.395%2013.27H11.605C11.7376%2013.27%2011.8648%2013.3227%2011.9586%2013.4165C12.0523%2013.5102%2012.105%2013.6374%2012.105%2013.77C12.105%2013.9026%2012.0523%2014.0298%2011.9586%2014.1236C11.8648%2014.2173%2011.7376%2014.27%2011.605%2014.27Z'%20fill='%23424E6E'/%3e%3cpath%20d='M13.155%2011.755H6.845C6.71239%2011.755%206.58522%2011.7023%206.49145%2011.6086C6.39768%2011.5148%206.345%2011.3876%206.345%2011.255C6.345%2011.1224%206.39768%2010.9952%206.49145%2010.9015C6.58522%2010.8077%206.71239%2010.755%206.845%2010.755H13.155C13.2876%2010.755%2013.4148%2010.8077%2013.5086%2010.9015C13.6023%2010.9952%2013.655%2011.1224%2013.655%2011.255C13.655%2011.3876%2013.6023%2011.5148%2013.5086%2011.6086C13.4148%2011.7023%2013.2876%2011.755%2013.155%2011.755Z'%20fill='%23424E6E'/%3e%3c/svg%3e") no-repeat;
444
444
  }
445
- .filter.active[data-v-cbac2434] {
445
+ .filter.active[data-v-84864117] {
446
446
  background: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.5%206.72998H4.5C4.36739%206.72998%204.24021%206.6773%204.14645%206.58353C4.05268%206.48977%204%206.36259%204%206.22998C4%206.09737%204.05268%205.9702%204.14645%205.87643C4.24021%205.78266%204.36739%205.72998%204.5%205.72998H15.5C15.6326%205.72998%2015.7598%205.78266%2015.8536%205.87643C15.9473%205.9702%2016%206.09737%2016%206.22998C16%206.36259%2015.9473%206.48977%2015.8536%206.58353C15.7598%206.6773%2015.6326%206.72998%2015.5%206.72998Z'%20fill='%230F45AF'/%3e%3cpath%20d='M14.33%209.245H5.67C5.53739%209.245%205.41021%209.19232%205.31644%209.09855C5.22268%209.00478%205.17%208.8776%205.17%208.745C5.17%208.61239%205.22268%208.48521%205.31644%208.39144C5.41021%208.29767%205.53739%208.245%205.67%208.245H14.33C14.4626%208.245%2014.5898%208.29767%2014.6836%208.39144C14.7773%208.48521%2014.83%208.61239%2014.83%208.745C14.83%208.8776%2014.7773%209.00478%2014.6836%209.09855C14.5898%209.19232%2014.4626%209.245%2014.33%209.245Z'%20fill='%230F45AF'/%3e%3cpath%20d='M11.605%2014.27H8.395C8.2624%2014.27%208.13522%2014.2173%208.04145%2014.1235C7.94768%2014.0297%207.895%2013.9026%207.895%2013.77C7.895%2013.6374%207.94768%2013.5102%208.04145%2013.4164C8.13522%2013.3226%208.2624%2013.27%208.395%2013.27H11.605C11.7376%2013.27%2011.8648%2013.3226%2011.9586%2013.4164C12.0523%2013.5102%2012.105%2013.6374%2012.105%2013.77C12.105%2013.9026%2012.0523%2014.0297%2011.9586%2014.1235C11.8648%2014.2173%2011.7376%2014.27%2011.605%2014.27Z'%20fill='%230F45AF'/%3e%3cpath%20d='M13.155%2011.755H6.845C6.71239%2011.755%206.58522%2011.7023%206.49145%2011.6086C6.39768%2011.5148%206.345%2011.3876%206.345%2011.255C6.345%2011.1224%206.39768%2010.9952%206.49145%2010.9015C6.58522%2010.8077%206.71239%2010.755%206.845%2010.755H13.155C13.2876%2010.755%2013.4148%2010.8077%2013.5086%2010.9015C13.6023%2010.9952%2013.655%2011.1224%2013.655%2011.255C13.655%2011.3876%2013.6023%2011.5148%2013.5086%2011.6086C13.4148%2011.7023%2013.2876%2011.755%2013.155%2011.755Z'%20fill='%230F45AF'/%3e%3c/svg%3e") no-repeat;
447
447
  }
448
- .filter.active[data-v-cbac2434]:hover {
448
+ .filter.active[data-v-84864117]:hover {
449
449
  background: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='20'%20height='20'%20rx='4'%20fill='black'%20fill-opacity='0.05'/%3e%3cpath%20d='M15.5%206.72998H4.5C4.36739%206.72998%204.24021%206.6773%204.14645%206.58353C4.05268%206.48977%204%206.36259%204%206.22998C4%206.09737%204.05268%205.9702%204.14645%205.87643C4.24021%205.78266%204.36739%205.72998%204.5%205.72998H15.5C15.6326%205.72998%2015.7598%205.78266%2015.8536%205.87643C15.9473%205.9702%2016%206.09737%2016%206.22998C16%206.36259%2015.9473%206.48977%2015.8536%206.58353C15.7598%206.6773%2015.6326%206.72998%2015.5%206.72998Z'%20fill='%230F45AF'/%3e%3cpath%20d='M14.33%209.245H5.67C5.53739%209.245%205.41021%209.19232%205.31644%209.09855C5.22268%209.00478%205.17%208.8776%205.17%208.745C5.17%208.61239%205.22268%208.48521%205.31644%208.39144C5.41021%208.29767%205.53739%208.245%205.67%208.245H14.33C14.4626%208.245%2014.5898%208.29767%2014.6836%208.39144C14.7773%208.48521%2014.83%208.61239%2014.83%208.745C14.83%208.8776%2014.7773%209.00478%2014.6836%209.09855C14.5898%209.19232%2014.4626%209.245%2014.33%209.245Z'%20fill='%230F45AF'/%3e%3cpath%20d='M11.605%2014.27H8.395C8.2624%2014.27%208.13522%2014.2173%208.04145%2014.1235C7.94768%2014.0297%207.895%2013.9026%207.895%2013.77C7.895%2013.6374%207.94768%2013.5102%208.04145%2013.4164C8.13522%2013.3226%208.2624%2013.27%208.395%2013.27H11.605C11.7376%2013.27%2011.8648%2013.3226%2011.9586%2013.4164C12.0523%2013.5102%2012.105%2013.6374%2012.105%2013.77C12.105%2013.9026%2012.0523%2014.0297%2011.9586%2014.1235C11.8648%2014.2173%2011.7376%2014.27%2011.605%2014.27Z'%20fill='%230F45AF'/%3e%3cpath%20d='M13.155%2011.755H6.845C6.71239%2011.755%206.58522%2011.7023%206.49145%2011.6086C6.39768%2011.5148%206.345%2011.3876%206.345%2011.255C6.345%2011.1224%206.39768%2010.9952%206.49145%2010.9015C6.58522%2010.8077%206.71239%2010.755%206.845%2010.755H13.155C13.2876%2010.755%2013.4148%2010.8077%2013.5086%2010.9015C13.6023%2010.9952%2013.655%2011.1224%2013.655%2011.255C13.655%2011.3876%2013.6023%2011.5148%2013.5086%2011.6086C13.4148%2011.7023%2013.2876%2011.755%2013.155%2011.755Z'%20fill='%230F45AF'/%3e%3c/svg%3e") no-repeat;
450
450
  }.td-shadow-right[data-v-c9978e26] {
451
451
  box-shadow: -1px 1px 5px 4px rgba(0, 0, 0, 0.15);
@@ -465,7 +465,7 @@ to {
465
465
  --tw-content: "";
466
466
  content: var(--tw-content);
467
467
  }
468
- .shadow-inner-toggle[data-v-152f5bf8]::after {
468
+ .shadow-inner-toggle[data-v-be9ecb77]::after {
469
469
  box-shadow:
470
470
  rgba(0, 0, 0, 0.3) 0px 1px 2px 0px,
471
471
  rgba(0, 0, 0, 0.05) 0px 0px 1px 0px inset;