@pingux/astro 2.217.0-alpha.0 → 2.217.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 (49) hide show
  1. package/lib/cjs/components/TableBase/TableBase.styles.d.ts +3 -3
  2. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +5 -5
  3. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +74 -74
  4. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +5 -5
  5. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/avatar.d.ts +1 -1
  6. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/badges.d.ts +16 -16
  7. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +44 -44
  8. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/cards.d.ts +1 -1
  9. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.d.ts +9 -9
  10. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +9 -9
  11. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.d.ts +7 -7
  12. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/menu.d.ts +8 -8
  13. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.d.ts +3 -3
  14. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.d.ts +12 -12
  15. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +56 -56
  16. package/lib/cjs/styles/themeOverrides/onyxUiLibraryOverride.d.ts +7 -7
  17. package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +143 -143
  18. package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.d.ts +30 -30
  19. package/lib/cjs/styles/themes/next-gen/colors/twoTone.d.ts +30 -30
  20. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +5 -5
  21. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.d.ts +5 -5
  22. package/lib/cjs/styles/themes/next-gen/forms.d.ts +28 -28
  23. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +525 -507
  24. package/lib/cjs/styles/themes/next-gen/sizes.d.ts +5 -5
  25. package/lib/cjs/styles/themes/next-gen/spacing.d.ts +5 -5
  26. package/lib/cjs/styles/themes/next-gen/text.js +1 -1
  27. package/lib/cjs/styles/themes/next-gen/variants/accordionGrid.d.ts +1 -1
  28. package/lib/cjs/styles/themes/next-gen/variants/avatar.d.ts +5 -5
  29. package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +22 -22
  30. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +164 -146
  31. package/lib/cjs/styles/themes/next-gen/variants/cards.d.ts +5 -5
  32. package/lib/cjs/styles/themes/next-gen/variants/dataTable.d.ts +3 -3
  33. package/lib/cjs/styles/themes/next-gen/variants/footer.d.ts +1 -1
  34. package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.d.ts +5 -5
  35. package/lib/cjs/styles/themes/next-gen/variants/input.d.ts +11 -11
  36. package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +34 -34
  37. package/lib/cjs/styles/themes/next-gen/variants/listview.d.ts +14 -14
  38. package/lib/cjs/styles/themes/next-gen/variants/menu.d.ts +3 -3
  39. package/lib/cjs/styles/themes/next-gen/variants/messages.d.ts +11 -11
  40. package/lib/cjs/styles/themes/next-gen/variants/navbar.d.ts +18 -18
  41. package/lib/cjs/styles/themes/next-gen/variants/popoverMenu.d.ts +7 -7
  42. package/lib/cjs/styles/themes/next-gen/variants/rangeCalendar.d.ts +3 -3
  43. package/lib/cjs/styles/themes/next-gen/variants/stepper.d.ts +4 -4
  44. package/lib/cjs/styles/themes/next-gen/variants/tableBase.d.ts +11 -11
  45. package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +25 -25
  46. package/lib/cjs/styles/themes/next-gen/variants/tooltip.d.ts +2 -2
  47. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +121 -121
  48. package/lib/styles/themes/next-gen/text.js +1 -1
  49. package/package.json +2 -2
@@ -29,8 +29,8 @@ declare const buttons: {
29
29
  borderRadius: string;
30
30
  border: string;
31
31
  borderColor: string;
32
- px: any;
33
- py: any;
32
+ px: number;
33
+ py: number;
34
34
  maxHeight: string;
35
35
  height: string;
36
36
  '&.is-disabled': {
@@ -48,17 +48,17 @@ declare const buttons: {
48
48
  backgroundColor: string;
49
49
  borderColor: string;
50
50
  '&.is-pressed': {
51
- backgroundColor: any;
52
- borderColor: any;
51
+ backgroundColor: string;
52
+ borderColor: string;
53
53
  };
54
54
  '&.is-hovered': {
55
55
  boxShadow: string;
56
- backgroundColor: any;
57
- borderColor: any;
56
+ backgroundColor: string;
57
+ borderColor: string;
58
58
  };
59
59
  '&.is-focused': {
60
- backgroundColor: any;
61
- borderColor: any;
60
+ backgroundColor: string;
61
+ borderColor: string;
62
62
  outline: string;
63
63
  };
64
64
  alignItems: string;
@@ -76,8 +76,8 @@ declare const buttons: {
76
76
  lineHeight: number;
77
77
  borderRadius: string;
78
78
  border: string;
79
- px: any;
80
- py: any;
79
+ px: number;
80
+ py: number;
81
81
  maxHeight: string;
82
82
  height: string;
83
83
  '&.is-disabled': {
@@ -87,11 +87,11 @@ declare const buttons: {
87
87
  };
88
88
  default: {
89
89
  backgroundColor: string;
90
- borderColor: any;
91
- color: any;
90
+ borderColor: string;
91
+ color: string;
92
92
  '&.is-pressed': {
93
- backgroundColor: any;
94
- borderColor: any;
93
+ backgroundColor: string;
94
+ borderColor: string;
95
95
  color: string;
96
96
  path: {
97
97
  fill: string;
@@ -99,8 +99,8 @@ declare const buttons: {
99
99
  };
100
100
  '&.is-hovered': {
101
101
  boxShadow: string;
102
- backgroundColor: any;
103
- borderColor: any;
102
+ backgroundColor: string;
103
+ borderColor: string;
104
104
  color: string;
105
105
  path: {
106
106
  fill: string;
@@ -121,8 +121,8 @@ declare const buttons: {
121
121
  lineHeight: number;
122
122
  borderRadius: string;
123
123
  border: string;
124
- px: any;
125
- py: any;
124
+ px: number;
125
+ py: number;
126
126
  maxHeight: string;
127
127
  height: string;
128
128
  '&.is-disabled': {
@@ -138,7 +138,7 @@ declare const buttons: {
138
138
  tertiary: {
139
139
  backgroundColor: string;
140
140
  borderColor: string;
141
- color: any;
141
+ color: string;
142
142
  '&.is-focused': {
143
143
  outlineColor: string;
144
144
  backgroundColor: string;
@@ -147,12 +147,12 @@ declare const buttons: {
147
147
  };
148
148
  '&.is-pressed': {
149
149
  backgroundColor: string;
150
- color: any;
150
+ color: string;
151
151
  };
152
152
  '&.is-hovered': {
153
153
  boxShadow: string;
154
154
  backgroundColor: string;
155
- color: any;
155
+ color: string;
156
156
  };
157
157
  alignItems: string;
158
158
  justifyContent: string;
@@ -169,8 +169,8 @@ declare const buttons: {
169
169
  lineHeight: number;
170
170
  borderRadius: string;
171
171
  border: string;
172
- px: any;
173
- py: any;
172
+ px: number;
173
+ py: number;
174
174
  maxHeight: string;
175
175
  height: string;
176
176
  '&.is-disabled': {
@@ -197,8 +197,8 @@ declare const buttons: {
197
197
  lineHeight: number;
198
198
  borderRadius: string;
199
199
  border: string;
200
- px: any;
201
- py: any;
200
+ px: number;
201
+ py: number;
202
202
  maxHeight: string;
203
203
  height: string;
204
204
  '&.is-disabled': {
@@ -225,13 +225,13 @@ declare const buttons: {
225
225
  outlineOffset: string;
226
226
  };
227
227
  '&.is-pressed': {
228
- backgroundColor: any;
229
- borderColor: any;
228
+ backgroundColor: string;
229
+ borderColor: string;
230
230
  };
231
231
  '&.is-hovered': {
232
232
  boxShadow: string;
233
- backgroundColor: any;
234
- borderColor: any;
233
+ backgroundColor: string;
234
+ borderColor: string;
235
235
  color: string;
236
236
  };
237
237
  alignItems: string;
@@ -249,8 +249,8 @@ declare const buttons: {
249
249
  lineHeight: number;
250
250
  borderRadius: string;
251
251
  border: string;
252
- px: any;
253
- py: any;
252
+ px: number;
253
+ py: number;
254
254
  maxHeight: string;
255
255
  height: string;
256
256
  '&.is-disabled': {
@@ -269,17 +269,17 @@ declare const buttons: {
269
269
  paddingTop: string;
270
270
  paddingBottom: string;
271
271
  backgroundColor: string;
272
- color: any;
273
- borderColor: any;
272
+ color: string;
273
+ borderColor: string;
274
274
  '&.is-pressed': {
275
- backgroundColor: any;
276
- borderColor: any;
275
+ backgroundColor: string;
276
+ borderColor: string;
277
277
  color: string;
278
278
  };
279
279
  '&.is-hovered': {
280
280
  boxShadow: string;
281
- backgroundColor: any;
282
- borderColor: any;
281
+ backgroundColor: string;
282
+ borderColor: string;
283
283
  color: string;
284
284
  path: {
285
285
  fill: string;
@@ -295,8 +295,8 @@ declare const buttons: {
295
295
  fontWeight: number;
296
296
  textAlign: string;
297
297
  verticalAlign: string;
298
- px: any;
299
- py: any;
298
+ px: number;
299
+ py: number;
300
300
  maxHeight: string;
301
301
  '&.is-disabled': {
302
302
  opacity: number;
@@ -322,17 +322,23 @@ declare const buttons: {
322
322
  color: string;
323
323
  borderColor: string;
324
324
  '&.is-pressed': {
325
- backgroundColor: any;
326
- borderColor: any;
325
+ backgroundColor: string;
326
+ borderColor: string;
327
327
  };
328
328
  '&.is-hovered': {
329
329
  boxShadow: string;
330
- backgroundColor: any;
331
- borderColor: any;
330
+ backgroundColor: {
331
+ bg: string;
332
+ border: string;
333
+ };
334
+ borderColor: {
335
+ bg: string;
336
+ border: string;
337
+ };
332
338
  };
333
339
  '&.is-focused': {
334
- backgroundColor: any;
335
- borderColor: any;
340
+ backgroundColor: string;
341
+ borderColor: string;
336
342
  outline: string;
337
343
  };
338
344
  alignItems: string;
@@ -345,8 +351,8 @@ declare const buttons: {
345
351
  fontWeight: number;
346
352
  textAlign: string;
347
353
  verticalAlign: string;
348
- px: any;
349
- py: any;
354
+ px: number;
355
+ py: number;
350
356
  maxHeight: string;
351
357
  '&.is-disabled': {
352
358
  opacity: number;
@@ -372,8 +378,8 @@ declare const buttons: {
372
378
  lineHeight: number;
373
379
  borderRadius: string;
374
380
  border: string;
375
- px: any;
376
- py: any;
381
+ px: number;
382
+ py: number;
377
383
  maxHeight: string;
378
384
  height: string;
379
385
  '&.is-disabled': {
@@ -408,8 +414,8 @@ declare const buttons: {
408
414
  borderRadius: string;
409
415
  border: string;
410
416
  borderColor: string;
411
- px: any;
412
- py: any;
417
+ px: number;
418
+ py: number;
413
419
  maxHeight: string;
414
420
  height: string;
415
421
  '&.is-disabled': {
@@ -461,8 +467,8 @@ declare const buttons: {
461
467
  lineHeight: number;
462
468
  borderRadius: string;
463
469
  border: string;
464
- px: any;
465
- py: any;
470
+ px: number;
471
+ py: number;
466
472
  maxHeight: string;
467
473
  height: string;
468
474
  '&.is-disabled': {
@@ -474,7 +480,7 @@ declare const buttons: {
474
480
  transition: string;
475
481
  };
476
482
  link: {
477
- color: any;
483
+ color: string;
478
484
  transition: string;
479
485
  fontSize: string;
480
486
  textDecoration: string;
@@ -533,7 +539,7 @@ declare const buttons: {
533
539
  outlineOffset: string;
534
540
  };
535
541
  '&.is-pressed': {
536
- backgroundColor: any;
542
+ backgroundColor: string;
537
543
  path: {
538
544
  fill: string;
539
545
  };
@@ -562,7 +568,7 @@ declare const buttons: {
562
568
  outlineOffset: string;
563
569
  };
564
570
  '&.is-pressed': {
565
- backgroundColor: any;
571
+ backgroundColor: string;
566
572
  path: {
567
573
  fill: string;
568
574
  };
@@ -613,14 +619,14 @@ declare const buttons: {
613
619
  withIcon: {
614
620
  display: string;
615
621
  path: {
616
- fill: any;
622
+ fill: string;
617
623
  };
618
624
  backgroundColor: string;
619
- borderColor: any;
620
- color: any;
625
+ borderColor: string;
626
+ color: string;
621
627
  '&.is-pressed': {
622
- backgroundColor: any;
623
- borderColor: any;
628
+ backgroundColor: string;
629
+ borderColor: string;
624
630
  color: string;
625
631
  path: {
626
632
  fill: string;
@@ -628,8 +634,8 @@ declare const buttons: {
628
634
  };
629
635
  '&.is-hovered': {
630
636
  boxShadow: string;
631
- backgroundColor: any;
632
- borderColor: any;
637
+ backgroundColor: string;
638
+ borderColor: string;
633
639
  color: string;
634
640
  path: {
635
641
  fill: string;
@@ -649,8 +655,8 @@ declare const buttons: {
649
655
  lineHeight: number;
650
656
  borderRadius: string;
651
657
  border: string;
652
- px: any;
653
- py: any;
658
+ px: number;
659
+ py: number;
654
660
  maxHeight: string;
655
661
  height: string;
656
662
  '&.is-disabled': {
@@ -669,17 +675,17 @@ declare const buttons: {
669
675
  backgroundColor: string;
670
676
  borderColor: string;
671
677
  '&.is-pressed': {
672
- backgroundColor: any;
673
- borderColor: any;
678
+ backgroundColor: string;
679
+ borderColor: string;
674
680
  };
675
681
  '&.is-hovered': {
676
682
  boxShadow: string;
677
- backgroundColor: any;
678
- borderColor: any;
683
+ backgroundColor: string;
684
+ borderColor: string;
679
685
  };
680
686
  '&.is-focused': {
681
- backgroundColor: any;
682
- borderColor: any;
687
+ backgroundColor: string;
688
+ borderColor: string;
683
689
  outline: string;
684
690
  };
685
691
  alignItems: string;
@@ -696,8 +702,8 @@ declare const buttons: {
696
702
  lineHeight: number;
697
703
  borderRadius: string;
698
704
  border: string;
699
- px: any;
700
- py: any;
705
+ px: number;
706
+ py: number;
701
707
  maxHeight: string;
702
708
  height: string;
703
709
  '&.is-disabled': {
@@ -708,7 +714,7 @@ declare const buttons: {
708
714
  inlineWithIcon: {
709
715
  display: string;
710
716
  path: {
711
- fill: any;
717
+ fill: string;
712
718
  };
713
719
  height: string;
714
720
  lineHeight: number;
@@ -719,17 +725,17 @@ declare const buttons: {
719
725
  paddingTop: string;
720
726
  paddingBottom: string;
721
727
  backgroundColor: string;
722
- color: any;
723
- borderColor: any;
728
+ color: string;
729
+ borderColor: string;
724
730
  '&.is-pressed': {
725
- backgroundColor: any;
726
- borderColor: any;
731
+ backgroundColor: string;
732
+ borderColor: string;
727
733
  color: string;
728
734
  };
729
735
  '&.is-hovered': {
730
736
  boxShadow: string;
731
- backgroundColor: any;
732
- borderColor: any;
737
+ backgroundColor: string;
738
+ borderColor: string;
733
739
  color: string;
734
740
  path: {
735
741
  fill: string;
@@ -745,8 +751,8 @@ declare const buttons: {
745
751
  fontWeight: number;
746
752
  textAlign: string;
747
753
  verticalAlign: string;
748
- px: any;
749
- py: any;
754
+ px: number;
755
+ py: number;
750
756
  maxHeight: string;
751
757
  '&.is-disabled': {
752
758
  opacity: number;
@@ -772,17 +778,23 @@ declare const buttons: {
772
778
  backgroundColor: string;
773
779
  borderColor: string;
774
780
  '&.is-pressed': {
775
- backgroundColor: any;
776
- borderColor: any;
781
+ backgroundColor: string;
782
+ borderColor: string;
777
783
  };
778
784
  '&.is-hovered': {
779
785
  boxShadow: string;
780
- backgroundColor: any;
781
- borderColor: any;
786
+ backgroundColor: {
787
+ bg: string;
788
+ border: string;
789
+ };
790
+ borderColor: {
791
+ bg: string;
792
+ border: string;
793
+ };
782
794
  };
783
795
  '&.is-focused': {
784
- backgroundColor: any;
785
- borderColor: any;
796
+ backgroundColor: string;
797
+ borderColor: string;
786
798
  outline: string;
787
799
  };
788
800
  alignItems: string;
@@ -795,8 +807,8 @@ declare const buttons: {
795
807
  fontWeight: number;
796
808
  textAlign: string;
797
809
  verticalAlign: string;
798
- px: any;
799
- py: any;
810
+ px: number;
811
+ py: number;
800
812
  maxHeight: string;
801
813
  '&.is-disabled': {
802
814
  opacity: number;
@@ -804,16 +816,16 @@ declare const buttons: {
804
816
  transition: string;
805
817
  };
806
818
  colorBlock: {
807
- bg: any;
808
- borderColor: any;
819
+ bg: string;
820
+ borderColor: string;
809
821
  borderRadius: string;
810
822
  width: number;
811
823
  height: number;
812
824
  p: string;
813
825
  '&.is-hovered': {
814
826
  boxShadow: string;
815
- bg: any;
816
- borderColor: any;
827
+ bg: string;
828
+ borderColor: string;
817
829
  };
818
830
  '&.is-focused': {
819
831
  outline: string;
@@ -821,8 +833,8 @@ declare const buttons: {
821
833
  outlineOffset: string;
822
834
  };
823
835
  '&.is-pressed': {
824
- bg: any;
825
- borderColor: any;
836
+ bg: string;
837
+ borderColor: string;
826
838
  };
827
839
  '&>svg': {
828
840
  color: string;
@@ -830,25 +842,31 @@ declare const buttons: {
830
842
  };
831
843
  };
832
844
  colorBlockPrimary: {
833
- bg: any;
834
- borderColor: any;
845
+ bg: string;
846
+ borderColor: string;
835
847
  '& span': {
836
848
  color: string;
837
849
  textAlign: string;
838
850
  };
839
851
  '&.is-hovered': {
840
852
  boxShadow: string;
841
- backgroundColor: any;
842
- borderColor: any;
853
+ backgroundColor: {
854
+ bg: string;
855
+ border: string;
856
+ };
857
+ borderColor: {
858
+ bg: string;
859
+ border: string;
860
+ };
843
861
  color: string;
844
862
  };
845
863
  '&.is-pressed': {
846
- backgroundColor: any;
847
- borderColor: any;
864
+ backgroundColor: string;
865
+ borderColor: string;
848
866
  };
849
867
  '&.is-focused': {
850
- backgroundColor: any;
851
- borderColor: any;
868
+ backgroundColor: string;
869
+ borderColor: string;
852
870
  outline: string;
853
871
  };
854
872
  borderRadius: string;
@@ -866,13 +884,13 @@ declare const buttons: {
866
884
  fill: string;
867
885
  };
868
886
  '&.is-hovered': {
869
- backgroundColor: any;
887
+ backgroundColor: string;
870
888
  path: {
871
889
  fill: string;
872
890
  };
873
891
  };
874
892
  '&.is-pressed': {
875
- backgroundColor: any;
893
+ backgroundColor: string;
876
894
  path: {
877
895
  fill: string;
878
896
  };
@@ -933,13 +951,13 @@ declare const buttons: {
933
951
  fill: string;
934
952
  };
935
953
  '&.is-hovered': {
936
- backgroundColor: any;
954
+ backgroundColor: string;
937
955
  path: {
938
956
  fill: string;
939
957
  };
940
958
  };
941
959
  '&.is-pressed': {
942
- backgroundColor: any;
960
+ backgroundColor: string;
943
961
  path: {
944
962
  fill: string;
945
963
  };
@@ -963,13 +981,13 @@ declare const buttons: {
963
981
  fill: string;
964
982
  };
965
983
  '&.is-hovered': {
966
- backgroundColor: any;
984
+ backgroundColor: string;
967
985
  path: {
968
986
  fill: string;
969
987
  };
970
988
  };
971
989
  '&.is-pressed': {
972
- backgroundColor: any;
990
+ backgroundColor: string;
973
991
  path: {
974
992
  fill: string;
975
993
  };
@@ -996,13 +1014,13 @@ declare const buttons: {
996
1014
  fill: string;
997
1015
  };
998
1016
  '&.is-hovered': {
999
- backgroundColor: any;
1017
+ backgroundColor: string;
1000
1018
  path: {
1001
1019
  fill: string;
1002
1020
  };
1003
1021
  };
1004
1022
  '&.is-pressed': {
1005
- backgroundColor: any;
1023
+ backgroundColor: string;
1006
1024
  path: {
1007
1025
  fill: string;
1008
1026
  };
@@ -1030,13 +1048,13 @@ declare const buttons: {
1030
1048
  p: number;
1031
1049
  width: number;
1032
1050
  '&.is-focused': {
1033
- backgroundColor: any;
1051
+ backgroundColor: string;
1034
1052
  outline: string;
1035
1053
  outlineColor: string;
1036
1054
  outlineOffset: string;
1037
1055
  };
1038
1056
  '&.is-pressed': {
1039
- backgroundColor: any;
1057
+ backgroundColor: string;
1040
1058
  path: {
1041
1059
  fill: string;
1042
1060
  };
@@ -1045,7 +1063,7 @@ declare const buttons: {
1045
1063
  fill: string;
1046
1064
  };
1047
1065
  '&.is-hovered': {
1048
- backgroundColor: any;
1066
+ backgroundColor: string;
1049
1067
  path: {
1050
1068
  fill: string;
1051
1069
  };
@@ -1072,13 +1090,13 @@ declare const buttons: {
1072
1090
  fill: string;
1073
1091
  };
1074
1092
  '&.is-hovered': {
1075
- backgroundColor: any;
1093
+ backgroundColor: string;
1076
1094
  path: {
1077
1095
  fill: string;
1078
1096
  };
1079
1097
  };
1080
1098
  '&.is-pressed': {
1081
- backgroundColor: any;
1099
+ backgroundColor: string;
1082
1100
  path: {
1083
1101
  fill: string;
1084
1102
  };
@@ -1102,13 +1120,13 @@ declare const buttons: {
1102
1120
  fill: string;
1103
1121
  };
1104
1122
  '&.is-hovered': {
1105
- backgroundColor: any;
1123
+ backgroundColor: string;
1106
1124
  path: {
1107
1125
  fill: string;
1108
1126
  };
1109
1127
  };
1110
1128
  '&.is-pressed': {
1111
- backgroundColor: any;
1129
+ backgroundColor: string;
1112
1130
  path: {
1113
1131
  fill: string;
1114
1132
  };
@@ -1153,7 +1171,7 @@ declare const buttons: {
1153
1171
  fill: string;
1154
1172
  };
1155
1173
  '&.is-pressed': {
1156
- backgroundColor: any;
1174
+ backgroundColor: string;
1157
1175
  path: {
1158
1176
  fill: string;
1159
1177
  };
@@ -1175,13 +1193,13 @@ declare const buttons: {
1175
1193
  inverted: {
1176
1194
  '&.is-hovered': {
1177
1195
  boxShadow: string;
1178
- backgroundColor: any;
1196
+ backgroundColor: string;
1179
1197
  };
1180
1198
  '&.is-pressed': {
1181
- backgroundColor: any;
1199
+ backgroundColor: string;
1182
1200
  };
1183
1201
  '&.is-disabled': {
1184
- backgroundColor: any;
1202
+ backgroundColor: string;
1185
1203
  };
1186
1204
  '&.is-focused': {
1187
1205
  outline: string;
@@ -1226,13 +1244,13 @@ declare const buttons: {
1226
1244
  height: string;
1227
1245
  '&.is-hovered': {
1228
1246
  boxShadow: string;
1229
- backgroundColor: any;
1247
+ backgroundColor: string;
1230
1248
  path: {
1231
1249
  fill: string;
1232
1250
  };
1233
1251
  };
1234
1252
  '&.is-pressed': {
1235
- backgroundColor: any;
1253
+ backgroundColor: string;
1236
1254
  path: {
1237
1255
  fill: string;
1238
1256
  };
@@ -1263,7 +1281,7 @@ declare const buttons: {
1263
1281
  fill: string;
1264
1282
  };
1265
1283
  '&.is-hovered': {
1266
- backgroundColor: any;
1284
+ backgroundColor: string;
1267
1285
  path: {
1268
1286
  fill: string;
1269
1287
  };
@@ -1276,8 +1294,8 @@ declare const buttons: {
1276
1294
  };
1277
1295
  passwordVisibilityIcon: {
1278
1296
  right: number;
1279
- py: any;
1280
- px: any;
1297
+ py: number;
1298
+ px: number;
1281
1299
  border: string;
1282
1300
  '&:hover, &.is-pressed': {
1283
1301
  background: string;
@@ -1286,7 +1304,7 @@ declare const buttons: {
1286
1304
  '&.is-focused': {
1287
1305
  outline: string;
1288
1306
  outlineOffset: string;
1289
- outlineColor: any;
1307
+ outlineColor: string;
1290
1308
  };
1291
1309
  position: string;
1292
1310
  top: string;
@@ -1298,13 +1316,13 @@ declare const buttons: {
1298
1316
  fill: string;
1299
1317
  };
1300
1318
  '&.is-hovered': {
1301
- backgroundColor: any;
1319
+ backgroundColor: string;
1302
1320
  path: {
1303
1321
  fill: string;
1304
1322
  };
1305
1323
  };
1306
1324
  '&.is-pressed': {
1307
- backgroundColor: any;
1325
+ backgroundColor: string;
1308
1326
  path: {
1309
1327
  fill: string;
1310
1328
  };
@@ -1323,13 +1341,13 @@ declare const buttons: {
1323
1341
  path: {
1324
1342
  fill: string;
1325
1343
  };
1326
- backgroundColor: any;
1344
+ backgroundColor: string;
1327
1345
  };
1328
1346
  path: {
1329
1347
  fill: string;
1330
1348
  };
1331
1349
  '&.is-pressed': {
1332
- backgroundColor: any;
1350
+ backgroundColor: string;
1333
1351
  path: {
1334
1352
  fill: string;
1335
1353
  };
@@ -1355,13 +1373,13 @@ declare const buttons: {
1355
1373
  fill: string;
1356
1374
  };
1357
1375
  '&.is-hovered': {
1358
- backgroundColor: any;
1376
+ backgroundColor: string;
1359
1377
  path: {
1360
1378
  fill: string;
1361
1379
  };
1362
1380
  };
1363
1381
  '&.is-pressed': {
1364
- backgroundColor: any;
1382
+ backgroundColor: string;
1365
1383
  path: {
1366
1384
  fill: string;
1367
1385
  };
@@ -1395,7 +1413,7 @@ declare const buttons: {
1395
1413
  outlineOffset: string;
1396
1414
  };
1397
1415
  '&.is-hovered': {
1398
- backgroundColor: any;
1416
+ backgroundColor: string;
1399
1417
  path: {
1400
1418
  fill: string;
1401
1419
  };
@@ -1407,7 +1425,7 @@ declare const buttons: {
1407
1425
  };
1408
1426
  };
1409
1427
  display: string;
1410
- borderColor: any;
1428
+ borderColor: string;
1411
1429
  alignItems: string;
1412
1430
  justifyContent: string;
1413
1431
  flexShrink: number;
@@ -1420,8 +1438,8 @@ declare const buttons: {
1420
1438
  verticalAlign: string;
1421
1439
  lineHeight: number;
1422
1440
  borderRadius: string;
1423
- px: any;
1424
- py: any;
1441
+ px: number;
1442
+ py: number;
1425
1443
  maxHeight: string;
1426
1444
  height: string;
1427
1445
  '&.is-disabled': {
@@ -1448,13 +1466,13 @@ declare const buttons: {
1448
1466
  };
1449
1467
  ButtonInputGroupContentRight: {
1450
1468
  right: number;
1451
- py: any;
1452
- px: any;
1469
+ py: number;
1470
+ px: number;
1453
1471
  borderRadius: string;
1454
1472
  borderWidth: string;
1455
1473
  borderLeftWidth: string;
1456
1474
  borderRightWidth: string;
1457
- borderLeftColor: any;
1475
+ borderLeftColor: string;
1458
1476
  position: string;
1459
1477
  top: string;
1460
1478
  transform: string;
@@ -1463,7 +1481,7 @@ declare const buttons: {
1463
1481
  justifyContent: string;
1464
1482
  backgroundColor: string;
1465
1483
  borderColor: string;
1466
- color: any;
1484
+ color: string;
1467
1485
  '&.is-focused': {
1468
1486
  outlineColor: string;
1469
1487
  backgroundColor: string;
@@ -1472,12 +1490,12 @@ declare const buttons: {
1472
1490
  };
1473
1491
  '&.is-pressed': {
1474
1492
  backgroundColor: string;
1475
- color: any;
1493
+ color: string;
1476
1494
  };
1477
1495
  '&.is-hovered': {
1478
1496
  boxShadow: string;
1479
1497
  backgroundColor: string;
1480
- color: any;
1498
+ color: string;
1481
1499
  };
1482
1500
  alignItems: string;
1483
1501
  flexShrink: number;
@@ -1518,7 +1536,7 @@ declare const buttons: {
1518
1536
  textDecoration: string;
1519
1537
  };
1520
1538
  };
1521
- color: any;
1539
+ color: string;
1522
1540
  transition: string;
1523
1541
  fontSize: string;
1524
1542
  py: string;