@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
@@ -44,13 +44,12 @@ declare const _default: {
44
44
  };
45
45
  active: string;
46
46
  primary: string;
47
- background: {
48
- base: string;
49
- secondary: string;
50
- card: string;
51
- suggestion: string;
52
- hover: string;
53
- };
47
+ background: string;
48
+ backgroundBase: string;
49
+ backgroundSecondary: string;
50
+ backgroundCard: string;
51
+ backgroundSuggestion: string;
52
+ backgroundHover: string;
54
53
  iconWrapper: {
55
54
  wrapper: {
56
55
  orange: string;
@@ -783,19 +782,16 @@ declare const _default: {
783
782
  };
784
783
  badgeDeleteButton: {
785
784
  transition: string;
786
- height: number;
787
785
  p: number;
786
+ height: number;
788
787
  width: number;
789
- border: string;
790
788
  '&.is-focused': {
791
- backgroundColor: string;
792
789
  outline: string;
793
790
  outlineColor: string;
794
791
  outlineOffset: string;
795
792
  };
796
793
  '&.is-pressed': {
797
794
  backgroundColor: string;
798
- borderColor: string;
799
795
  path: {
800
796
  fill: string;
801
797
  };
@@ -803,29 +799,27 @@ declare const _default: {
803
799
  '&.is-hovered': {
804
800
  bg: string;
805
801
  };
806
- cursor: string;
807
- outline: string;
808
- borderRadius: string;
809
- borderColor: string;
810
802
  path: {
811
803
  fill: string;
812
804
  };
805
+ outline: string;
806
+ borderRadius: string;
807
+ border: string;
808
+ cursor: string;
809
+ boxShadow: string;
813
810
  };
814
811
  invertedBadgeDeleteButton: {
815
812
  transition: string;
816
- height: number;
817
813
  p: number;
814
+ height: number;
818
815
  width: number;
819
- border: string;
820
816
  '&.is-focused': {
821
- backgroundColor: string;
822
817
  outline: string;
823
818
  outlineColor: string;
824
819
  outlineOffset: string;
825
820
  };
826
821
  '&.is-pressed': {
827
822
  backgroundColor: string;
828
- borderColor: string;
829
823
  path: {
830
824
  fill: string;
831
825
  };
@@ -833,13 +827,14 @@ declare const _default: {
833
827
  '&.is-hovered': {
834
828
  bg: string;
835
829
  };
836
- cursor: string;
837
- outline: string;
838
- borderRadius: string;
839
- borderColor: string;
840
830
  path: {
841
831
  fill: string;
842
832
  };
833
+ outline: string;
834
+ borderRadius: string;
835
+ border: string;
836
+ cursor: string;
837
+ boxShadow: string;
843
838
  };
844
839
  clearSelectionButton: {
845
840
  top: string;
@@ -848,34 +843,26 @@ declare const _default: {
848
843
  '.is-float-label &': {
849
844
  top: string;
850
845
  };
846
+ path: {
847
+ fill: string;
848
+ };
851
849
  width: string;
852
850
  height: string;
853
- border: string;
854
851
  position: string;
855
- '& > svg': {
856
- minWidth: string;
857
- width: string;
858
- height: string;
859
- };
860
852
  '&.is-hovered': {
861
853
  bg: string;
854
+ boxShadow: string;
862
855
  };
863
856
  '&.is-pressed': {
864
857
  bg: string;
865
858
  };
866
- cursor: string;
859
+ p: string;
867
860
  transition: string;
868
861
  outline: string;
869
862
  borderRadius: string;
870
- borderColor: string;
871
- path: {
872
- fill: string;
873
- };
874
- '&.is-focused': {
875
- outline: string;
876
- outlineColor: string;
877
- outlineOffset: string;
878
- };
863
+ border: string;
864
+ cursor: string;
865
+ boxShadow: string;
879
866
  };
880
867
  };
881
868
  withIcon: {
@@ -1130,20 +1117,9 @@ declare const _default: {
1130
1117
  };
1131
1118
  iconButtons: {
1132
1119
  base: {
1133
- cursor: string;
1134
- transition: string;
1135
- outline: string;
1136
- borderRadius: string;
1137
- border: string;
1138
- borderColor: string;
1139
1120
  path: {
1140
1121
  fill: string;
1141
1122
  };
1142
- '&.is-focused': {
1143
- outline: string;
1144
- outlineColor: string;
1145
- outlineOffset: string;
1146
- };
1147
1123
  '&.is-hovered': {
1148
1124
  backgroundColor: string;
1149
1125
  path: {
@@ -1152,68 +1128,30 @@ declare const _default: {
1152
1128
  };
1153
1129
  '&.is-pressed': {
1154
1130
  backgroundColor: string;
1155
- borderColor: string;
1156
1131
  path: {
1157
1132
  fill: string;
1158
1133
  };
1159
1134
  };
1160
- };
1161
- nextGen: {
1162
- path: {
1163
- fill: string;
1164
- };
1165
- '&.is-hovered': {
1166
- backgroundColor: string;
1167
- path: {
1168
- fill: string;
1169
- };
1170
- };
1171
- '&.is-pressed': {
1172
- backgroundColor: string;
1173
- borderColor: string;
1174
- path: {
1175
- fill: string;
1176
- };
1177
- };
1178
- maxHeight: string;
1179
- maxWidth: string;
1180
- width: string;
1181
- p: string;
1182
- display: string;
1183
- alignItems: string;
1184
- justifyContent: string;
1185
- backgroundColor: string;
1186
- borderColor: string;
1187
- color: string;
1188
- flexShrink: number;
1189
- minWidth: string;
1190
- cursor: string;
1191
- fontFamily: string;
1192
- fontSize: string;
1193
- fontWeight: number;
1194
- textAlign: string;
1195
- verticalAlign: string;
1196
- lineHeight: number;
1197
- borderRadius: string;
1198
- border: string;
1199
- px: string;
1200
- py: string;
1201
- height: string;
1202
- '&.is-disabled': {
1203
- opacity: number;
1204
- };
1205
1135
  '&.is-focused': {
1206
1136
  outline: string;
1207
1137
  outlineColor: string;
1208
1138
  outlineOffset: string;
1209
1139
  };
1140
+ p: string;
1210
1141
  transition: string;
1211
1142
  outline: string;
1143
+ borderRadius: string;
1144
+ border: string;
1145
+ cursor: string;
1146
+ boxShadow: string;
1212
1147
  };
1213
1148
  onyx: {
1214
1149
  path: {
1215
1150
  fill: string;
1216
1151
  };
1152
+ display: string;
1153
+ alignItems: string;
1154
+ justifyContent: string;
1217
1155
  '&.is-hovered': {
1218
1156
  backgroundColor: string;
1219
1157
  path: {
@@ -1222,65 +1160,31 @@ declare const _default: {
1222
1160
  };
1223
1161
  '&.is-pressed': {
1224
1162
  backgroundColor: string;
1225
- borderColor: string;
1226
1163
  path: {
1227
1164
  fill: string;
1228
1165
  };
1229
1166
  };
1230
- maxHeight: string;
1231
- maxWidth: string;
1232
- width: string;
1233
- p: string;
1234
- display: string;
1235
- alignItems: string;
1236
- justifyContent: string;
1237
- backgroundColor: string;
1238
- borderColor: string;
1239
- color: string;
1240
- flexShrink: number;
1241
- minWidth: string;
1242
- cursor: string;
1243
- fontFamily: string;
1244
- fontSize: string;
1245
- fontWeight: number;
1246
- textAlign: string;
1247
- verticalAlign: string;
1248
- lineHeight: number;
1249
- borderRadius: string;
1250
- border: string;
1251
- px: string;
1252
- py: string;
1253
- height: string;
1254
- '&.is-disabled': {
1255
- opacity: number;
1256
- };
1257
1167
  '&.is-focused': {
1258
1168
  outline: string;
1259
1169
  outlineColor: string;
1260
1170
  outlineOffset: string;
1261
1171
  };
1172
+ p: string;
1262
1173
  transition: string;
1263
1174
  outline: string;
1175
+ borderRadius: string;
1176
+ border: string;
1177
+ cursor: string;
1178
+ boxShadow: string;
1264
1179
  };
1265
1180
  responseToolbar: {
1266
1181
  '&.is-not-loaded': {
1267
1182
  display: string;
1268
1183
  };
1269
1184
  display: string;
1270
- cursor: string;
1271
- transition: string;
1272
- outline: string;
1273
- borderRadius: string;
1274
- border: string;
1275
- borderColor: string;
1276
1185
  path: {
1277
1186
  fill: string;
1278
1187
  };
1279
- '&.is-focused': {
1280
- outline: string;
1281
- outlineColor: string;
1282
- outlineOffset: string;
1283
- };
1284
1188
  '&.is-hovered': {
1285
1189
  backgroundColor: string;
1286
1190
  path: {
@@ -1289,30 +1193,30 @@ declare const _default: {
1289
1193
  };
1290
1194
  '&.is-pressed': {
1291
1195
  backgroundColor: string;
1292
- borderColor: string;
1293
1196
  path: {
1294
1197
  fill: string;
1295
1198
  };
1296
1199
  };
1200
+ '&.is-focused': {
1201
+ outline: string;
1202
+ outlineColor: string;
1203
+ outlineOffset: string;
1204
+ };
1205
+ p: string;
1206
+ transition: string;
1207
+ outline: string;
1208
+ borderRadius: string;
1209
+ border: string;
1210
+ cursor: string;
1211
+ boxShadow: string;
1297
1212
  };
1298
1213
  modalCloseButton: {
1299
1214
  position: string;
1300
1215
  top: number;
1301
1216
  right: number;
1302
- cursor: string;
1303
- transition: string;
1304
- outline: string;
1305
- borderRadius: string;
1306
- border: string;
1307
- borderColor: string;
1308
1217
  path: {
1309
1218
  fill: string;
1310
1219
  };
1311
- '&.is-focused': {
1312
- outline: string;
1313
- outlineColor: string;
1314
- outlineOffset: string;
1315
- };
1316
1220
  '&.is-hovered': {
1317
1221
  backgroundColor: string;
1318
1222
  path: {
@@ -1321,11 +1225,22 @@ declare const _default: {
1321
1225
  };
1322
1226
  '&.is-pressed': {
1323
1227
  backgroundColor: string;
1324
- borderColor: string;
1325
1228
  path: {
1326
1229
  fill: string;
1327
1230
  };
1328
1231
  };
1232
+ '&.is-focused': {
1233
+ outline: string;
1234
+ outlineColor: string;
1235
+ outlineOffset: string;
1236
+ };
1237
+ p: string;
1238
+ transition: string;
1239
+ outline: string;
1240
+ borderRadius: string;
1241
+ border: string;
1242
+ cursor: string;
1243
+ boxShadow: string;
1329
1244
  };
1330
1245
  badge: {
1331
1246
  deleteButton: {
@@ -1343,14 +1258,10 @@ declare const _default: {
1343
1258
  };
1344
1259
  '&.is-pressed': {
1345
1260
  backgroundColor: string;
1346
- borderColor: string;
1347
1261
  path: {
1348
1262
  fill: string;
1349
1263
  };
1350
1264
  };
1351
- outline: string;
1352
- border: string;
1353
- borderColor: string;
1354
1265
  path: {
1355
1266
  fill: string;
1356
1267
  };
@@ -1360,6 +1271,9 @@ declare const _default: {
1360
1271
  fill: string;
1361
1272
  };
1362
1273
  };
1274
+ outline: string;
1275
+ border: string;
1276
+ boxShadow: string;
1363
1277
  };
1364
1278
  };
1365
1279
  messageCloseButton: {
@@ -1374,20 +1288,9 @@ declare const _default: {
1374
1288
  fill: string;
1375
1289
  };
1376
1290
  };
1377
- cursor: string;
1378
- transition: string;
1379
- outline: string;
1380
- borderRadius: string;
1381
- border: string;
1382
- borderColor: string;
1383
1291
  path: {
1384
1292
  fill: string;
1385
1293
  };
1386
- '&.is-focused': {
1387
- outline: string;
1388
- outlineColor: string;
1389
- outlineOffset: string;
1390
- };
1391
1294
  '&.is-hovered': {
1392
1295
  backgroundColor: string;
1393
1296
  path: {
@@ -1396,41 +1299,51 @@ declare const _default: {
1396
1299
  };
1397
1300
  '&.is-pressed': {
1398
1301
  backgroundColor: string;
1399
- borderColor: string;
1400
1302
  path: {
1401
1303
  fill: string;
1402
1304
  };
1403
1305
  };
1306
+ '&.is-focused': {
1307
+ outline: string;
1308
+ outlineColor: string;
1309
+ outlineOffset: string;
1310
+ };
1311
+ p: string;
1312
+ transition: string;
1313
+ outline: string;
1314
+ borderRadius: string;
1315
+ border: string;
1316
+ cursor: string;
1317
+ boxShadow: string;
1404
1318
  };
1405
1319
  headerNav: {
1406
- borderRadius: string;
1407
1320
  path: {
1408
1321
  fill: string;
1409
1322
  };
1410
- px: string;
1411
- py: string;
1412
- width: string;
1413
- height: string;
1414
1323
  '&.is-hovered': {
1324
+ backgroundColor: string;
1415
1325
  path: {
1416
1326
  fill: string;
1417
1327
  };
1418
1328
  };
1419
1329
  '&.is-pressed': {
1330
+ backgroundColor: string;
1420
1331
  path: {
1421
1332
  fill: string;
1422
1333
  };
1423
1334
  };
1424
1335
  '&.is-focused': {
1425
- outlineOffset: string;
1426
1336
  outline: string;
1427
1337
  outlineColor: string;
1338
+ outlineOffset: string;
1428
1339
  };
1429
- cursor: string;
1340
+ p: string;
1430
1341
  transition: string;
1431
1342
  outline: string;
1343
+ borderRadius: string;
1432
1344
  border: string;
1433
- borderColor: string;
1345
+ cursor: string;
1346
+ boxShadow: string;
1434
1347
  };
1435
1348
  copyButton: {
1436
1349
  mx: string;
@@ -1441,99 +1354,84 @@ declare const _default: {
1441
1354
  };
1442
1355
  deleteAttachment: {
1443
1356
  backgroundColor: string;
1444
- border: string;
1445
- borderColor: string;
1446
1357
  size: string;
1447
- p: string;
1448
1358
  '&.is-hovered': {
1449
1359
  backgroundColor: string;
1450
1360
  };
1451
- cursor: string;
1452
- transition: string;
1453
- outline: string;
1454
- borderRadius: string;
1455
1361
  path: {
1456
1362
  fill: string;
1457
1363
  };
1458
- '&.is-focused': {
1459
- outline: string;
1460
- outlineColor: string;
1461
- outlineOffset: string;
1462
- };
1463
1364
  '&.is-pressed': {
1464
1365
  backgroundColor: string;
1465
- borderColor: string;
1466
1366
  path: {
1467
1367
  fill: string;
1468
1368
  };
1469
1369
  };
1470
- };
1471
- inverted: {
1472
- cursor: string;
1473
- transition: string;
1474
- outline: string;
1475
- path: {
1476
- fill: string;
1477
- };
1478
1370
  '&.is-focused': {
1479
1371
  outline: string;
1480
1372
  outlineColor: string;
1481
1373
  outlineOffset: string;
1482
1374
  };
1483
- '&.is-pressed': {
1375
+ p: string;
1376
+ transition: string;
1377
+ outline: string;
1378
+ borderRadius: string;
1379
+ border: string;
1380
+ cursor: string;
1381
+ boxShadow: string;
1382
+ };
1383
+ inverted: {
1384
+ '&.is-hovered': {
1385
+ boxShadow: string;
1484
1386
  backgroundColor: string;
1485
- borderColor: string;
1486
1387
  };
1487
- '&.is-hovered': {
1488
- border: string;
1489
- borderColor: string;
1388
+ '&.is-pressed': {
1490
1389
  backgroundColor: string;
1491
- boxShadow: string;
1492
1390
  };
1493
1391
  '&.is-disabled': {
1494
1392
  backgroundColor: string;
1495
1393
  };
1394
+ '&.is-focused': {
1395
+ outline: string;
1396
+ outlineColor: string;
1397
+ outlineOffset: string;
1398
+ };
1399
+ p: string;
1400
+ transition: string;
1401
+ outline: string;
1402
+ borderRadius: string;
1403
+ border: string;
1404
+ cursor: string;
1405
+ boxShadow: string;
1496
1406
  };
1497
1407
  searchClearButton: {
1408
+ path: {
1409
+ fill: string;
1410
+ };
1498
1411
  width: string;
1499
1412
  height: string;
1500
- border: string;
1501
1413
  position: string;
1502
1414
  right: string;
1503
- '& > svg': {
1504
- minWidth: string;
1505
- width: string;
1506
- height: string;
1507
- };
1508
1415
  '&.is-hovered': {
1509
1416
  bg: string;
1417
+ boxShadow: string;
1510
1418
  };
1511
1419
  '&.is-pressed': {
1512
1420
  bg: string;
1513
1421
  };
1514
- cursor: string;
1422
+ p: string;
1515
1423
  transition: string;
1516
1424
  outline: string;
1517
1425
  borderRadius: string;
1518
- borderColor: string;
1519
- path: {
1520
- fill: string;
1521
- };
1522
- '&.is-focused': {
1523
- outline: string;
1524
- outlineColor: string;
1525
- outlineOffset: string;
1526
- };
1426
+ border: string;
1427
+ cursor: string;
1428
+ boxShadow: string;
1527
1429
  };
1528
1430
  filter: {
1529
- bg: string;
1530
- border: string;
1531
- borderColor: string;
1532
1431
  width: string;
1533
1432
  height: string;
1534
1433
  '&.is-hovered': {
1535
- border: string;
1536
- borderColor: string;
1434
+ boxShadow: string;
1537
1435
  backgroundColor: string;
1538
1436
  path: {
1539
1437
  fill: string;
@@ -1541,15 +1439,10 @@ declare const _default: {
1541
1439
  };
1542
1440
  '&.is-pressed': {
1543
1441
  backgroundColor: string;
1544
- borderColor: string;
1545
1442
  path: {
1546
1443
  fill: string;
1547
1444
  };
1548
1445
  };
1549
- cursor: string;
1550
- transition: string;
1551
- outline: string;
1552
- borderRadius: string;
1553
1446
  path: {
1554
1447
  fill: string;
1555
1448
  };
@@ -1558,43 +1451,39 @@ declare const _default: {
1558
1451
  outlineColor: string;
1559
1452
  outlineOffset: string;
1560
1453
  };
1454
+ p: string;
1455
+ transition: string;
1456
+ outline: string;
1457
+ borderRadius: string;
1458
+ border: string;
1459
+ cursor: string;
1460
+ boxShadow: string;
1561
1461
  };
1562
1462
  hintButton: {
1563
1463
  backgroundColor: string;
1564
1464
  path: {
1565
1465
  fill: string;
1566
1466
  };
1567
- '&.is-focused': {
1568
- outline: string;
1569
- outlineColor: string;
1570
- outlineOffset: string;
1571
- };
1572
1467
  '&.is-hovered': {
1573
1468
  backgroundColor: string;
1574
1469
  path: {
1575
1470
  fill: string;
1576
1471
  };
1577
1472
  };
1473
+ '&.is-focused': {
1474
+ outline: string;
1475
+ outlineColor: string;
1476
+ outlineOffset: string;
1477
+ };
1578
1478
  };
1579
1479
  };
1580
1480
  modalCloseButton: {
1581
1481
  position: string;
1582
1482
  top: number;
1583
1483
  right: number;
1584
- cursor: string;
1585
- transition: string;
1586
- outline: string;
1587
- borderRadius: string;
1588
- border: string;
1589
- borderColor: string;
1590
1484
  path: {
1591
1485
  fill: string;
1592
1486
  };
1593
- '&.is-focused': {
1594
- outline: string;
1595
- outlineColor: string;
1596
- outlineOffset: string;
1597
- };
1598
1487
  '&.is-hovered': {
1599
1488
  backgroundColor: string;
1600
1489
  path: {
@@ -1603,11 +1492,22 @@ declare const _default: {
1603
1492
  };
1604
1493
  '&.is-pressed': {
1605
1494
  backgroundColor: string;
1606
- borderColor: string;
1607
1495
  path: {
1608
1496
  fill: string;
1609
1497
  };
1610
1498
  };
1499
+ '&.is-focused': {
1500
+ outline: string;
1501
+ outlineColor: string;
1502
+ outlineOffset: string;
1503
+ };
1504
+ p: string;
1505
+ transition: string;
1506
+ outline: string;
1507
+ borderRadius: string;
1508
+ border: string;
1509
+ cursor: string;
1510
+ boxShadow: string;
1611
1511
  };
1612
1512
  aiChat: {
1613
1513
  maxWidth: string;
@@ -2827,18 +2727,9 @@ declare const _default: {
2827
2727
  height: number;
2828
2728
  p: number;
2829
2729
  width: number;
2830
- transition: string;
2831
- outline: string;
2832
- border: string;
2833
- borderColor: string;
2834
2730
  path: {
2835
2731
  fill: string;
2836
2732
  };
2837
- '&.is-focused': {
2838
- outline: string;
2839
- outlineColor: string;
2840
- outlineOffset: string;
2841
- };
2842
2733
  '&.is-hovered': {
2843
2734
  backgroundColor: string;
2844
2735
  path: {
@@ -2847,11 +2738,19 @@ declare const _default: {
2847
2738
  };
2848
2739
  '&.is-pressed': {
2849
2740
  backgroundColor: string;
2850
- borderColor: string;
2851
2741
  path: {
2852
2742
  fill: string;
2853
2743
  };
2854
2744
  };
2745
+ '&.is-focused': {
2746
+ outline: string;
2747
+ outlineColor: string;
2748
+ outlineOffset: string;
2749
+ };
2750
+ transition: string;
2751
+ outline: string;
2752
+ border: string;
2753
+ boxShadow: string;
2855
2754
  };
2856
2755
  itemBadgeWithSlot: {
2857
2756
  bg: string;
@@ -4283,6 +4182,12 @@ declare const _default: {
4283
4182
  maxWidth: string[];
4284
4183
  };
4285
4184
  };
4185
+ headingContainer: {
4186
+ borderBottom: string;
4187
+ borderBottomColor: string;
4188
+ bg: string;
4189
+ borderRadius: string;
4190
+ };
4286
4191
  container: {
4287
4192
  justifyContent: string;
4288
4193
  };