@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
@@ -15,12 +15,12 @@ declare const _default: {
15
15
  xl: string;
16
16
  };
17
17
  avatarFontSize: {
18
- xs: any;
19
- sm: any;
20
- md: any;
18
+ xs: number;
19
+ sm: number;
20
+ md: number;
21
21
  xmd: string;
22
- lg: any;
23
- xl: any;
22
+ lg: number;
23
+ xl: number;
24
24
  };
25
25
  container: {
26
26
  xs: string[];
@@ -1,9 +1,9 @@
1
1
  declare const scale: {
2
- xs: any;
3
- sm: any;
4
- md: any;
5
- lg: any;
6
- xl: any;
2
+ xs: number;
3
+ sm: number;
4
+ md: number;
5
+ lg: number;
6
+ xl: number;
7
7
  xx: string;
8
8
  };
9
9
  export default scale;
@@ -20,7 +20,7 @@ var fontSizes = exports.fontSizes = {
20
20
  },
21
21
  'xs': '11px',
22
22
  'tiny': "".concat(fontSize.tiny, "px"),
23
- 'sm': "".concat(fontSize.small || fontSize.sm, "px"),
23
+ 'sm': "".concat(fontSize.small, "px"),
24
24
  'small': "".concat(fontSize.small, "px"),
25
25
  'md': "".concat(fontSizeBase * 1, "rem"),
26
26
  'lg': "".concat(fontSizeBase * 1.25, "rem"),
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  minHeight: string;
6
6
  border: string;
7
7
  '&.is-hovered': {
8
- backgroundColor: any;
8
+ backgroundColor: string;
9
9
  };
10
10
  '&.is-focused': {
11
11
  outline: string;
@@ -61,19 +61,19 @@ export declare const avatar: {
61
61
  height: string;
62
62
  };
63
63
  '&.font-size-sm': {
64
- fontSize: any;
64
+ fontSize: number;
65
65
  };
66
66
  '&.font-size-md': {
67
- fontSize: any;
67
+ fontSize: number;
68
68
  };
69
69
  '&.font-size-xmd': {
70
70
  fontSize: string;
71
71
  };
72
72
  '&.font-size-lg': {
73
- fontSize: any;
73
+ fontSize: number;
74
74
  };
75
75
  '&.font-size-xl': {
76
- fontSize: any;
76
+ fontSize: number;
77
77
  };
78
78
  '&.is-square': {
79
79
  borderRadius: string;
@@ -87,7 +87,7 @@ export declare const avatar: {
87
87
  '&.is-logo': {
88
88
  borderWidth: string;
89
89
  borderStyle: string;
90
- borderColor: any;
90
+ borderColor: string;
91
91
  backgroundColor: string;
92
92
  '&.size-sm': {
93
93
  img: {
@@ -8,13 +8,13 @@ export declare const badgeDeleteButton: {
8
8
  fill: string;
9
9
  };
10
10
  '&.is-hovered': {
11
- backgroundColor: any;
11
+ backgroundColor: string;
12
12
  path: {
13
13
  fill: string;
14
14
  };
15
15
  };
16
16
  '&.is-pressed': {
17
- backgroundColor: any;
17
+ backgroundColor: string;
18
18
  path: {
19
19
  fill: string;
20
20
  };
@@ -102,7 +102,7 @@ export declare const badges: {
102
102
  primary: {
103
103
  backgroundColor: string;
104
104
  '& span': {
105
- color: any;
105
+ color: string;
106
106
  fontWeight: string;
107
107
  };
108
108
  '& button': {
@@ -170,7 +170,7 @@ export declare const badges: {
170
170
  countNeutral: {
171
171
  backgroundColor: string;
172
172
  '& span': {
173
- color: any;
173
+ color: string;
174
174
  fontWeight: string;
175
175
  };
176
176
  '& button': {
@@ -204,7 +204,7 @@ export declare const badges: {
204
204
  secondary: {
205
205
  backgroundColor: string;
206
206
  '& span': {
207
- color: any;
207
+ color: string;
208
208
  fontWeight: string;
209
209
  };
210
210
  '& button': {
@@ -237,7 +237,7 @@ export declare const badges: {
237
237
  };
238
238
  success: {
239
239
  '& span': {
240
- color: any;
240
+ color: string;
241
241
  fontWeight: string;
242
242
  };
243
243
  backgroundColor: string;
@@ -272,7 +272,7 @@ export declare const badges: {
272
272
  danger: {
273
273
  backgroundColor: string;
274
274
  '& span': {
275
- color: any;
275
+ color: string;
276
276
  fontWeight: string;
277
277
  };
278
278
  '& button': {
@@ -306,7 +306,7 @@ export declare const badges: {
306
306
  warning: {
307
307
  backgroundColor: string;
308
308
  '& span': {
309
- color: any;
309
+ color: string;
310
310
  fontWeight: string;
311
311
  };
312
312
  '& button': {
@@ -443,7 +443,7 @@ export declare const badges: {
443
443
  selected: {
444
444
  backgroundColor: string;
445
445
  '& span': {
446
- color: any;
446
+ color: string;
447
447
  fontWeight: string;
448
448
  };
449
449
  '& button': {
@@ -552,7 +552,7 @@ export declare const badges: {
552
552
  activeStatusBadge: {
553
553
  backgroundColor: string;
554
554
  '& span': {
555
- color: any;
555
+ color: string;
556
556
  fontWeight: string;
557
557
  };
558
558
  '& button': {
@@ -587,7 +587,7 @@ export declare const badges: {
587
587
  warningStatusBadge: {
588
588
  backgroundColor: string;
589
589
  '& span': {
590
- color: any;
590
+ color: string;
591
591
  fontWeight: string;
592
592
  };
593
593
  '& button': {
@@ -622,7 +622,7 @@ export declare const badges: {
622
622
  criticalStatusBadge: {
623
623
  backgroundColor: string;
624
624
  '& span': {
625
- color: any;
625
+ color: string;
626
626
  fontWeight: string;
627
627
  };
628
628
  '& button': {
@@ -656,7 +656,7 @@ export declare const badges: {
656
656
  };
657
657
  healthyStatusBadge: {
658
658
  '& span': {
659
- color: any;
659
+ color: string;
660
660
  fontWeight: string;
661
661
  };
662
662
  backgroundColor: string;
@@ -692,7 +692,7 @@ export declare const badges: {
692
692
  secondaryStatusBadge: {
693
693
  backgroundColor: string;
694
694
  '& span': {
695
- color: any;
695
+ color: string;
696
696
  fontWeight: string;
697
697
  };
698
698
  '& button': {
@@ -734,13 +734,13 @@ export declare const badges: {
734
734
  fill: string;
735
735
  };
736
736
  '&.is-hovered': {
737
- backgroundColor: any;
737
+ backgroundColor: string;
738
738
  path: {
739
739
  fill: string;
740
740
  };
741
741
  };
742
742
  '&.is-pressed': {
743
- backgroundColor: any;
743
+ backgroundColor: string;
744
744
  path: {
745
745
  fill: string;
746
746
  };
@@ -794,7 +794,7 @@ export declare const badges: {
794
794
  border: string;
795
795
  backgroundColor: string;
796
796
  '& span': {
797
- color: any;
797
+ color: string;
798
798
  fontWeight: string;
799
799
  };
800
800
  '& button': {
@@ -879,7 +879,7 @@ export declare const badges: {
879
879
  active: {
880
880
  backgroundColor: string;
881
881
  '& > span': {
882
- color: any;
882
+ color: string;
883
883
  fontSize: string;
884
884
  lineHeight: string;
885
885
  };
@@ -919,7 +919,7 @@ export declare const badges: {
919
919
  warning: {
920
920
  backgroundColor: string;
921
921
  '& > span': {
922
- color: any;
922
+ color: string;
923
923
  fontSize: string;
924
924
  lineHeight: string;
925
925
  };
@@ -959,7 +959,7 @@ export declare const badges: {
959
959
  critical: {
960
960
  backgroundColor: string;
961
961
  '& > span': {
962
- color: any;
962
+ color: string;
963
963
  fontSize: string;
964
964
  lineHeight: string;
965
965
  };
@@ -999,7 +999,7 @@ export declare const badges: {
999
999
  healthy: {
1000
1000
  backgroundColor: string;
1001
1001
  '& > span': {
1002
- color: any;
1002
+ color: string;
1003
1003
  fontSize: string;
1004
1004
  lineHeight: string;
1005
1005
  };
@@ -1039,7 +1039,7 @@ export declare const badges: {
1039
1039
  secondary: {
1040
1040
  backgroundColor: string;
1041
1041
  '& > span': {
1042
- color: any;
1042
+ color: string;
1043
1043
  fontSize: string;
1044
1044
  lineHeight: string;
1045
1045
  };