@pingux/astro 2.149.2-alpha.1 → 2.150.0-alpha.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 (93) hide show
  1. package/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
  2. package/lib/cjs/components/AstroProvider/AstroProvider.js +4 -4
  3. package/lib/cjs/components/Box/Box.stories.d.ts +1 -0
  4. package/lib/cjs/components/Box/Box.stories.js +18 -1
  5. package/lib/cjs/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
  6. package/lib/cjs/components/Icon/Icon.js +2 -2
  7. package/lib/cjs/components/IconButton/IconButton.stories.js +18 -28
  8. package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +1 -1
  9. package/lib/cjs/components/Modal/Modal.styles.js +1 -1
  10. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
  11. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
  12. package/lib/cjs/styles/colors.d.ts +6 -0
  13. package/lib/cjs/styles/colors.js +6 -0
  14. package/lib/cjs/styles/theme.js +1 -3
  15. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +5 -6
  16. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
  17. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
  18. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +7 -45
  19. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
  20. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
  21. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
  22. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
  23. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
  24. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
  25. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
  26. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +20 -0
  27. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
  28. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
  29. package/lib/cjs/styles/themes/astro/customProperties/index.js +2 -0
  30. package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +6 -7
  31. package/lib/cjs/styles/themes/next-gen/colors/colors.js +12 -8
  32. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
  33. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +4 -2
  34. package/lib/cjs/styles/themes/next-gen/customProperties/index.js +2 -0
  35. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
  36. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +157 -252
  37. package/lib/cjs/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
  38. package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +18 -20
  39. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +136 -235
  40. package/lib/cjs/styles/themes/next-gen/variants/button.js +48 -105
  41. package/lib/cjs/styles/themes/next-gen/variants/callout.js +1 -1
  42. package/lib/cjs/styles/themes/next-gen/variants/cards.js +1 -1
  43. package/lib/cjs/styles/themes/next-gen/variants/dataTable.js +1 -1
  44. package/lib/cjs/styles/themes/next-gen/variants/input.js +2 -2
  45. package/lib/cjs/styles/themes/next-gen/variants/listview.js +1 -1
  46. package/lib/cjs/styles/themes/next-gen/variants/navbar.js +1 -1
  47. package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.js +3 -3
  48. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +1 -1
  49. package/lib/cjs/styles/themes/next-gen/variants/stepper.js +3 -3
  50. package/lib/cjs/styles/themes/next-gen/variants/table.js +2 -2
  51. package/lib/cjs/styles/themes/next-gen/variants/tableBase.js +4 -4
  52. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +15 -10
  53. package/lib/cjs/styles/themes/next-gen/variants/variants.js +18 -12
  54. package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
  55. package/lib/components/AstroProvider/AstroProvider.js +4 -4
  56. package/lib/components/Box/Box.stories.js +16 -0
  57. package/lib/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
  58. package/lib/components/Icon/Icon.js +2 -2
  59. package/lib/components/IconButton/IconButton.stories.js +18 -28
  60. package/lib/components/ListView/stories/ListViewNextGenComponent.js +1 -1
  61. package/lib/components/Modal/Modal.styles.js +1 -1
  62. package/lib/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
  63. package/lib/styles/colors.js +6 -0
  64. package/lib/styles/theme.js +1 -3
  65. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
  66. package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
  67. package/lib/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
  68. package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
  69. package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
  70. package/lib/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
  71. package/lib/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
  72. package/lib/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
  73. package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
  74. package/lib/styles/themes/astro/customProperties/index.js +2 -0
  75. package/lib/styles/themes/next-gen/colors/colors.js +12 -8
  76. package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
  77. package/lib/styles/themes/next-gen/customProperties/index.js +2 -0
  78. package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
  79. package/lib/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
  80. package/lib/styles/themes/next-gen/variants/button.js +48 -105
  81. package/lib/styles/themes/next-gen/variants/callout.js +1 -1
  82. package/lib/styles/themes/next-gen/variants/cards.js +1 -1
  83. package/lib/styles/themes/next-gen/variants/dataTable.js +1 -1
  84. package/lib/styles/themes/next-gen/variants/input.js +2 -2
  85. package/lib/styles/themes/next-gen/variants/listview.js +1 -1
  86. package/lib/styles/themes/next-gen/variants/navbar.js +1 -1
  87. package/lib/styles/themes/next-gen/variants/navigationHeader.js +3 -3
  88. package/lib/styles/themes/next-gen/variants/panelHeader.js +1 -1
  89. package/lib/styles/themes/next-gen/variants/stepper.js +3 -3
  90. package/lib/styles/themes/next-gen/variants/table.js +2 -2
  91. package/lib/styles/themes/next-gen/variants/tableBase.js +4 -4
  92. package/lib/styles/themes/next-gen/variants/variants.js +18 -12
  93. package/package.json +1 -1
@@ -490,19 +490,16 @@ declare const buttons: {
490
490
  };
491
491
  badgeDeleteButton: {
492
492
  transition: string;
493
- height: number;
494
493
  p: number;
494
+ height: number;
495
495
  width: number;
496
- border: string;
497
496
  '&.is-focused': {
498
- backgroundColor: string;
499
497
  outline: string;
500
498
  outlineColor: string;
501
499
  outlineOffset: string;
502
500
  };
503
501
  '&.is-pressed': {
504
502
  backgroundColor: string;
505
- borderColor: string;
506
503
  path: {
507
504
  fill: string;
508
505
  };
@@ -510,29 +507,27 @@ declare const buttons: {
510
507
  '&.is-hovered': {
511
508
  bg: string;
512
509
  };
513
- cursor: string;
514
- outline: string;
515
- borderRadius: string;
516
- borderColor: string;
517
510
  path: {
518
511
  fill: string;
519
512
  };
513
+ outline: string;
514
+ borderRadius: string;
515
+ border: string;
516
+ cursor: string;
517
+ boxShadow: string;
520
518
  };
521
519
  invertedBadgeDeleteButton: {
522
520
  transition: string;
523
- height: number;
524
521
  p: number;
522
+ height: number;
525
523
  width: number;
526
- border: string;
527
524
  '&.is-focused': {
528
- backgroundColor: string;
529
525
  outline: string;
530
526
  outlineColor: string;
531
527
  outlineOffset: string;
532
528
  };
533
529
  '&.is-pressed': {
534
530
  backgroundColor: string;
535
- borderColor: string;
536
531
  path: {
537
532
  fill: string;
538
533
  };
@@ -540,13 +535,14 @@ declare const buttons: {
540
535
  '&.is-hovered': {
541
536
  bg: string;
542
537
  };
543
- cursor: string;
544
- outline: string;
545
- borderRadius: string;
546
- borderColor: string;
547
538
  path: {
548
539
  fill: string;
549
540
  };
541
+ outline: string;
542
+ borderRadius: string;
543
+ border: string;
544
+ cursor: string;
545
+ boxShadow: string;
550
546
  };
551
547
  clearSelectionButton: {
552
548
  top: string;
@@ -555,34 +551,26 @@ declare const buttons: {
555
551
  '.is-float-label &': {
556
552
  top: string;
557
553
  };
554
+ path: {
555
+ fill: string;
556
+ };
558
557
  width: string;
559
558
  height: string;
560
- border: string;
561
559
  position: string;
562
- '& > svg': {
563
- minWidth: string;
564
- width: string;
565
- height: string;
566
- };
567
560
  '&.is-hovered': {
568
561
  bg: string;
562
+ boxShadow: string;
569
563
  };
570
564
  '&.is-pressed': {
571
565
  bg: string;
572
566
  };
573
- cursor: string;
567
+ p: string;
574
568
  transition: string;
575
569
  outline: string;
576
570
  borderRadius: string;
577
- borderColor: string;
578
- path: {
579
- fill: string;
580
- };
581
- '&.is-focused': {
582
- outline: string;
583
- outlineColor: string;
584
- outlineOffset: string;
585
- };
571
+ border: string;
572
+ cursor: string;
573
+ boxShadow: string;
586
574
  };
587
575
  };
588
576
  withIcon: {
@@ -837,20 +825,9 @@ declare const buttons: {
837
825
  };
838
826
  iconButtons: {
839
827
  base: {
840
- cursor: string;
841
- transition: string;
842
- outline: string;
843
- borderRadius: string;
844
- border: string;
845
- borderColor: string;
846
828
  path: {
847
829
  fill: string;
848
830
  };
849
- '&.is-focused': {
850
- outline: string;
851
- outlineColor: string;
852
- outlineOffset: string;
853
- };
854
831
  '&.is-hovered': {
855
832
  backgroundColor: string;
856
833
  path: {
@@ -859,68 +836,30 @@ declare const buttons: {
859
836
  };
860
837
  '&.is-pressed': {
861
838
  backgroundColor: string;
862
- borderColor: string;
863
839
  path: {
864
840
  fill: string;
865
841
  };
866
842
  };
867
- };
868
- nextGen: {
869
- path: {
870
- fill: string;
871
- };
872
- '&.is-hovered': {
873
- backgroundColor: string;
874
- path: {
875
- fill: string;
876
- };
877
- };
878
- '&.is-pressed': {
879
- backgroundColor: string;
880
- borderColor: string;
881
- path: {
882
- fill: string;
883
- };
884
- };
885
- maxHeight: string;
886
- maxWidth: string;
887
- width: string;
888
- p: string;
889
- display: string;
890
- alignItems: string;
891
- justifyContent: string;
892
- backgroundColor: string;
893
- borderColor: string;
894
- color: string;
895
- flexShrink: number;
896
- minWidth: string;
897
- cursor: string;
898
- fontFamily: string;
899
- fontSize: string;
900
- fontWeight: number;
901
- textAlign: string;
902
- verticalAlign: string;
903
- lineHeight: number;
904
- borderRadius: string;
905
- border: string;
906
- px: string;
907
- py: string;
908
- height: string;
909
- '&.is-disabled': {
910
- opacity: number;
911
- };
912
843
  '&.is-focused': {
913
844
  outline: string;
914
845
  outlineColor: string;
915
846
  outlineOffset: string;
916
847
  };
848
+ p: string;
917
849
  transition: string;
918
850
  outline: string;
851
+ borderRadius: string;
852
+ border: string;
853
+ cursor: string;
854
+ boxShadow: string;
919
855
  };
920
856
  onyx: {
921
857
  path: {
922
858
  fill: string;
923
859
  };
860
+ display: string;
861
+ alignItems: string;
862
+ justifyContent: string;
924
863
  '&.is-hovered': {
925
864
  backgroundColor: string;
926
865
  path: {
@@ -929,65 +868,31 @@ declare const buttons: {
929
868
  };
930
869
  '&.is-pressed': {
931
870
  backgroundColor: string;
932
- borderColor: string;
933
871
  path: {
934
872
  fill: string;
935
873
  };
936
874
  };
937
- maxHeight: string;
938
- maxWidth: string;
939
- width: string;
940
- p: string;
941
- display: string;
942
- alignItems: string;
943
- justifyContent: string;
944
- backgroundColor: string;
945
- borderColor: string;
946
- color: string;
947
- flexShrink: number;
948
- minWidth: string;
949
- cursor: string;
950
- fontFamily: string;
951
- fontSize: string;
952
- fontWeight: number;
953
- textAlign: string;
954
- verticalAlign: string;
955
- lineHeight: number;
956
- borderRadius: string;
957
- border: string;
958
- px: string;
959
- py: string;
960
- height: string;
961
- '&.is-disabled': {
962
- opacity: number;
963
- };
964
875
  '&.is-focused': {
965
876
  outline: string;
966
877
  outlineColor: string;
967
878
  outlineOffset: string;
968
879
  };
880
+ p: string;
969
881
  transition: string;
970
882
  outline: string;
883
+ borderRadius: string;
884
+ border: string;
885
+ cursor: string;
886
+ boxShadow: string;
971
887
  };
972
888
  responseToolbar: {
973
889
  '&.is-not-loaded': {
974
890
  display: string;
975
891
  };
976
892
  display: string;
977
- cursor: string;
978
- transition: string;
979
- outline: string;
980
- borderRadius: string;
981
- border: string;
982
- borderColor: string;
983
893
  path: {
984
894
  fill: string;
985
895
  };
986
- '&.is-focused': {
987
- outline: string;
988
- outlineColor: string;
989
- outlineOffset: string;
990
- };
991
896
  '&.is-hovered': {
992
897
  backgroundColor: string;
993
898
  path: {
@@ -996,30 +901,30 @@ declare const buttons: {
996
901
  };
997
902
  '&.is-pressed': {
998
903
  backgroundColor: string;
999
- borderColor: string;
1000
904
  path: {
1001
905
  fill: string;
1002
906
  };
1003
907
  };
908
+ '&.is-focused': {
909
+ outline: string;
910
+ outlineColor: string;
911
+ outlineOffset: string;
912
+ };
913
+ p: string;
914
+ transition: string;
915
+ outline: string;
916
+ borderRadius: string;
917
+ border: string;
918
+ cursor: string;
919
+ boxShadow: string;
1004
920
  };
1005
921
  modalCloseButton: {
1006
922
  position: string;
1007
923
  top: number;
1008
924
  right: number;
1009
- cursor: string;
1010
- transition: string;
1011
- outline: string;
1012
- borderRadius: string;
1013
- border: string;
1014
- borderColor: string;
1015
925
  path: {
1016
926
  fill: string;
1017
927
  };
1018
- '&.is-focused': {
1019
- outline: string;
1020
- outlineColor: string;
1021
- outlineOffset: string;
1022
- };
1023
928
  '&.is-hovered': {
1024
929
  backgroundColor: string;
1025
930
  path: {
@@ -1028,11 +933,22 @@ declare const buttons: {
1028
933
  };
1029
934
  '&.is-pressed': {
1030
935
  backgroundColor: string;
1031
- borderColor: string;
1032
936
  path: {
1033
937
  fill: string;
1034
938
  };
1035
939
  };
940
+ '&.is-focused': {
941
+ outline: string;
942
+ outlineColor: string;
943
+ outlineOffset: string;
944
+ };
945
+ p: string;
946
+ transition: string;
947
+ outline: string;
948
+ borderRadius: string;
949
+ border: string;
950
+ cursor: string;
951
+ boxShadow: string;
1036
952
  };
1037
953
  badge: {
1038
954
  deleteButton: {
@@ -1050,14 +966,10 @@ declare const buttons: {
1050
966
  };
1051
967
  '&.is-pressed': {
1052
968
  backgroundColor: string;
1053
- borderColor: string;
1054
969
  path: {
1055
970
  fill: string;
1056
971
  };
1057
972
  };
1058
- outline: string;
1059
- border: string;
1060
- borderColor: string;
1061
973
  path: {
1062
974
  fill: string;
1063
975
  };
@@ -1067,6 +979,9 @@ declare const buttons: {
1067
979
  fill: string;
1068
980
  };
1069
981
  };
982
+ outline: string;
983
+ border: string;
984
+ boxShadow: string;
1070
985
  };
1071
986
  };
1072
987
  messageCloseButton: {
@@ -1081,20 +996,9 @@ declare const buttons: {
1081
996
  fill: string;
1082
997
  };
1083
998
  };
1084
- cursor: string;
1085
- transition: string;
1086
- outline: string;
1087
- borderRadius: string;
1088
- border: string;
1089
- borderColor: string;
1090
999
  path: {
1091
1000
  fill: string;
1092
1001
  };
1093
- '&.is-focused': {
1094
- outline: string;
1095
- outlineColor: string;
1096
- outlineOffset: string;
1097
- };
1098
1002
  '&.is-hovered': {
1099
1003
  backgroundColor: string;
1100
1004
  path: {
@@ -1103,41 +1007,51 @@ declare const buttons: {
1103
1007
  };
1104
1008
  '&.is-pressed': {
1105
1009
  backgroundColor: string;
1106
- borderColor: string;
1107
1010
  path: {
1108
1011
  fill: string;
1109
1012
  };
1110
1013
  };
1014
+ '&.is-focused': {
1015
+ outline: string;
1016
+ outlineColor: string;
1017
+ outlineOffset: string;
1018
+ };
1019
+ p: string;
1020
+ transition: string;
1021
+ outline: string;
1022
+ borderRadius: string;
1023
+ border: string;
1024
+ cursor: string;
1025
+ boxShadow: string;
1111
1026
  };
1112
1027
  headerNav: {
1113
- borderRadius: string;
1114
1028
  path: {
1115
1029
  fill: string;
1116
1030
  };
1117
- px: string;
1118
- py: string;
1119
- width: string;
1120
- height: string;
1121
1031
  '&.is-hovered': {
1032
+ backgroundColor: string;
1122
1033
  path: {
1123
1034
  fill: string;
1124
1035
  };
1125
1036
  };
1126
1037
  '&.is-pressed': {
1038
+ backgroundColor: string;
1127
1039
  path: {
1128
1040
  fill: string;
1129
1041
  };
1130
1042
  };
1131
1043
  '&.is-focused': {
1132
- outlineOffset: string;
1133
1044
  outline: string;
1134
1045
  outlineColor: string;
1046
+ outlineOffset: string;
1135
1047
  };
1136
- cursor: string;
1048
+ p: string;
1137
1049
  transition: string;
1138
1050
  outline: string;
1051
+ borderRadius: string;
1139
1052
  border: string;
1140
- borderColor: string;
1053
+ cursor: string;
1054
+ boxShadow: string;
1141
1055
  };
1142
1056
  copyButton: {
1143
1057
  mx: string;
@@ -1148,99 +1062,84 @@ declare const buttons: {
1148
1062
  };
1149
1063
  deleteAttachment: {
1150
1064
  backgroundColor: string;
1151
- border: string;
1152
- borderColor: string;
1153
1065
  size: string;
1154
- p: string;
1155
1066
  '&.is-hovered': {
1156
1067
  backgroundColor: string;
1157
1068
  };
1158
- cursor: string;
1159
- transition: string;
1160
- outline: string;
1161
- borderRadius: string;
1162
1069
  path: {
1163
1070
  fill: string;
1164
1071
  };
1165
- '&.is-focused': {
1166
- outline: string;
1167
- outlineColor: string;
1168
- outlineOffset: string;
1169
- };
1170
1072
  '&.is-pressed': {
1171
1073
  backgroundColor: string;
1172
- borderColor: string;
1173
1074
  path: {
1174
1075
  fill: string;
1175
1076
  };
1176
1077
  };
1177
- };
1178
- inverted: {
1179
- cursor: string;
1180
- transition: string;
1181
- outline: string;
1182
- path: {
1183
- fill: string;
1184
- };
1185
1078
  '&.is-focused': {
1186
1079
  outline: string;
1187
1080
  outlineColor: string;
1188
1081
  outlineOffset: string;
1189
1082
  };
1190
- '&.is-pressed': {
1083
+ p: string;
1084
+ transition: string;
1085
+ outline: string;
1086
+ borderRadius: string;
1087
+ border: string;
1088
+ cursor: string;
1089
+ boxShadow: string;
1090
+ };
1091
+ inverted: {
1092
+ '&.is-hovered': {
1093
+ boxShadow: string;
1191
1094
  backgroundColor: string;
1192
- borderColor: string;
1193
1095
  };
1194
- '&.is-hovered': {
1195
- border: string;
1196
- borderColor: string;
1096
+ '&.is-pressed': {
1197
1097
  backgroundColor: string;
1198
- boxShadow: string;
1199
1098
  };
1200
1099
  '&.is-disabled': {
1201
1100
  backgroundColor: string;
1202
1101
  };
1102
+ '&.is-focused': {
1103
+ outline: string;
1104
+ outlineColor: string;
1105
+ outlineOffset: string;
1106
+ };
1107
+ p: string;
1108
+ transition: string;
1109
+ outline: string;
1110
+ borderRadius: string;
1111
+ border: string;
1112
+ cursor: string;
1113
+ boxShadow: string;
1203
1114
  };
1204
1115
  searchClearButton: {
1116
+ path: {
1117
+ fill: string;
1118
+ };
1205
1119
  width: string;
1206
1120
  height: string;
1207
- border: string;
1208
1121
  position: string;
1209
1122
  right: string;
1210
- '& > svg': {
1211
- minWidth: string;
1212
- width: string;
1213
- height: string;
1214
- };
1215
1123
  '&.is-hovered': {
1216
1124
  bg: string;
1125
+ boxShadow: string;
1217
1126
  };
1218
1127
  '&.is-pressed': {
1219
1128
  bg: string;
1220
1129
  };
1221
- cursor: string;
1130
+ p: string;
1222
1131
  transition: string;
1223
1132
  outline: string;
1224
1133
  borderRadius: string;
1225
- borderColor: string;
1226
- path: {
1227
- fill: string;
1228
- };
1229
- '&.is-focused': {
1230
- outline: string;
1231
- outlineColor: string;
1232
- outlineOffset: string;
1233
- };
1134
+ border: string;
1135
+ cursor: string;
1136
+ boxShadow: string;
1234
1137
  };
1235
1138
  filter: {
1236
- bg: string;
1237
- border: string;
1238
- borderColor: string;
1239
1139
  width: string;
1240
1140
  height: string;
1241
1141
  '&.is-hovered': {
1242
- border: string;
1243
- borderColor: string;
1142
+ boxShadow: string;
1244
1143
  backgroundColor: string;
1245
1144
  path: {
1246
1145
  fill: string;
@@ -1248,15 +1147,10 @@ declare const buttons: {
1248
1147
  };
1249
1148
  '&.is-pressed': {
1250
1149
  backgroundColor: string;
1251
- borderColor: string;
1252
1150
  path: {
1253
1151
  fill: string;
1254
1152
  };
1255
1153
  };
1256
- cursor: string;
1257
- transition: string;
1258
- outline: string;
1259
- borderRadius: string;
1260
1154
  path: {
1261
1155
  fill: string;
1262
1156
  };
@@ -1265,43 +1159,39 @@ declare const buttons: {
1265
1159
  outlineColor: string;
1266
1160
  outlineOffset: string;
1267
1161
  };
1162
+ p: string;
1163
+ transition: string;
1164
+ outline: string;
1165
+ borderRadius: string;
1166
+ border: string;
1167
+ cursor: string;
1168
+ boxShadow: string;
1268
1169
  };
1269
1170
  hintButton: {
1270
1171
  backgroundColor: string;
1271
1172
  path: {
1272
1173
  fill: string;
1273
1174
  };
1274
- '&.is-focused': {
1275
- outline: string;
1276
- outlineColor: string;
1277
- outlineOffset: string;
1278
- };
1279
1175
  '&.is-hovered': {
1280
1176
  backgroundColor: string;
1281
1177
  path: {
1282
1178
  fill: string;
1283
1179
  };
1284
1180
  };
1181
+ '&.is-focused': {
1182
+ outline: string;
1183
+ outlineColor: string;
1184
+ outlineOffset: string;
1185
+ };
1285
1186
  };
1286
1187
  };
1287
1188
  modalCloseButton: {
1288
1189
  position: string;
1289
1190
  top: number;
1290
1191
  right: number;
1291
- cursor: string;
1292
- transition: string;
1293
- outline: string;
1294
- borderRadius: string;
1295
- border: string;
1296
- borderColor: string;
1297
1192
  path: {
1298
1193
  fill: string;
1299
1194
  };
1300
- '&.is-focused': {
1301
- outline: string;
1302
- outlineColor: string;
1303
- outlineOffset: string;
1304
- };
1305
1195
  '&.is-hovered': {
1306
1196
  backgroundColor: string;
1307
1197
  path: {
@@ -1310,11 +1200,22 @@ declare const buttons: {
1310
1200
  };
1311
1201
  '&.is-pressed': {
1312
1202
  backgroundColor: string;
1313
- borderColor: string;
1314
1203
  path: {
1315
1204
  fill: string;
1316
1205
  };
1317
1206
  };
1207
+ '&.is-focused': {
1208
+ outline: string;
1209
+ outlineColor: string;
1210
+ outlineOffset: string;
1211
+ };
1212
+ p: string;
1213
+ transition: string;
1214
+ outline: string;
1215
+ borderRadius: string;
1216
+ border: string;
1217
+ cursor: string;
1218
+ boxShadow: string;
1318
1219
  };
1319
1220
  aiChat: {
1320
1221
  maxWidth: string;