@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
@@ -1,159 +1,159 @@
1
1
  export declare const critical: {
2
- bright: any;
3
- dark: any;
4
- light: any;
2
+ bright: string;
3
+ dark: string;
4
+ light: string;
5
5
  };
6
6
  export declare const success: {
7
- bright: any;
8
- dark: any;
9
- light: any;
7
+ bright: string;
8
+ dark: string;
9
+ light: string;
10
10
  };
11
11
  export declare const warning: {
12
- bright: any;
13
- dark: any;
14
- light: any;
12
+ bright: string;
13
+ dark: string;
14
+ light: string;
15
15
  };
16
16
  export declare const info: {
17
- bright: any;
18
- dark: any;
19
- light: any;
17
+ bright: string;
18
+ dark: string;
19
+ light: string;
20
20
  };
21
21
  declare const colors: {
22
22
  badge: {
23
- textColor: any;
24
- background: any;
23
+ textColor: string;
24
+ background: string;
25
25
  };
26
26
  card: {
27
- blue: any;
28
- gray: any;
27
+ blue: string;
28
+ gray: string;
29
29
  };
30
30
  critical: {
31
- bright: any;
32
- dark: any;
33
- light: any;
31
+ bright: string;
32
+ dark: string;
33
+ light: string;
34
34
  };
35
35
  success: {
36
- bright: any;
37
- dark: any;
38
- light: any;
36
+ bright: string;
37
+ dark: string;
38
+ light: string;
39
39
  };
40
40
  warning: {
41
- bright: any;
42
- dark: any;
43
- light: any;
41
+ bright: string;
42
+ dark: string;
43
+ light: string;
44
44
  };
45
45
  info: {
46
- bright: any;
47
- dark: any;
48
- light: any;
46
+ bright: string;
47
+ dark: string;
48
+ light: string;
49
49
  };
50
50
  text: {
51
- primary: any;
52
- secondary: any;
53
- error: any;
54
- message: any;
55
- fieldHelper: any;
51
+ primary: string;
52
+ secondary: string;
53
+ error: string;
54
+ message: string;
55
+ fieldHelper: string;
56
56
  };
57
57
  border: {
58
- base: any;
59
- input: any;
60
- separator: any;
61
- hairline: any;
58
+ base: string;
59
+ input: string;
60
+ separator: string;
61
+ hairline: string;
62
62
  };
63
- active: any;
64
- primary: any;
65
- background: any;
63
+ active: string;
64
+ primary: string;
65
+ background: string;
66
66
  backgroundBase: string;
67
- backgroundSecondary: any;
68
- backgroundCard: any;
67
+ backgroundSecondary: string;
68
+ backgroundCard: string;
69
69
  backgroundSuggestion: string;
70
- backgroundHover: any;
70
+ backgroundHover: string;
71
71
  iconWrapper: {
72
72
  wrapper: {
73
- orange: any;
74
- cyan: any;
75
- green: any;
76
- purple: any;
77
- pink: any;
78
- red: any;
79
- yellow: any;
80
- teal: any;
81
- blue: any;
82
- indigo: any;
83
- lightBlue: any;
84
- lightPink: any;
85
- lightGreen: any;
86
- lightYellow: any;
87
- lightIndigo: any;
73
+ orange: string;
74
+ cyan: string;
75
+ green: string;
76
+ purple: string;
77
+ pink: string;
78
+ red: string;
79
+ yellow: string;
80
+ teal: string;
81
+ blue: string;
82
+ indigo: string;
83
+ lightBlue: string;
84
+ lightPink: string;
85
+ lightGreen: string;
86
+ lightYellow: string;
87
+ lightIndigo: string;
88
88
  };
89
89
  icon: {
90
- orange: any;
91
- cyan: any;
92
- green: any;
93
- purple: any;
94
- pink: any;
95
- red: any;
96
- yellow: any;
97
- teal: any;
98
- blue: any;
99
- indigo: any;
100
- lightBlue: any;
101
- lightPink: any;
102
- lightGreen: any;
103
- lightYellow: any;
104
- lightIndigo: any;
90
+ orange: string;
91
+ cyan: string;
92
+ green: string;
93
+ purple: string;
94
+ pink: string;
95
+ red: string;
96
+ yellow: string;
97
+ teal: string;
98
+ blue: string;
99
+ indigo: string;
100
+ lightBlue: string;
101
+ lightPink: string;
102
+ lightGreen: string;
103
+ lightYellow: string;
104
+ lightIndigo: string;
105
105
  };
106
106
  };
107
107
  tooltip: string;
108
108
  environmentBadge: {
109
- text: any;
110
- background: any;
109
+ text: string;
110
+ background: string;
111
111
  };
112
112
  codeEditor: {
113
- backgroundColor: any;
114
- headerColor: any;
113
+ backgroundColor: string;
114
+ headerColor: string;
115
115
  };
116
116
  twoTone: {
117
117
  bg: {
118
- orange: any;
119
- cyan: any;
120
- green: any;
121
- purple: any;
122
- pink: any;
123
- red: any;
124
- yellow: any;
125
- teal: any;
126
- blue: any;
127
- indigo: any;
128
- lightBlue: any;
129
- lightPink: any;
130
- lightGreen: any;
131
- lightYellow: any;
132
- lightIndigo: any;
118
+ orange: string;
119
+ cyan: string;
120
+ green: string;
121
+ purple: string;
122
+ pink: string;
123
+ red: string;
124
+ yellow: string;
125
+ teal: string;
126
+ blue: string;
127
+ indigo: string;
128
+ lightBlue: string;
129
+ lightPink: string;
130
+ lightGreen: string;
131
+ lightYellow: string;
132
+ lightIndigo: string;
133
133
  };
134
134
  text: {
135
- orange: any;
136
- cyan: any;
137
- green: any;
138
- purple: any;
139
- pink: any;
140
- red: any;
141
- yellow: any;
142
- teal: any;
143
- blue: any;
144
- indigo: any;
145
- lightBlue: any;
146
- lightPink: any;
147
- lightGreen: any;
148
- lightYellow: any;
149
- lightIndigo: any;
135
+ orange: string;
136
+ cyan: string;
137
+ green: string;
138
+ purple: string;
139
+ pink: string;
140
+ red: string;
141
+ yellow: string;
142
+ teal: string;
143
+ blue: string;
144
+ indigo: string;
145
+ lightBlue: string;
146
+ lightPink: string;
147
+ lightGreen: string;
148
+ lightYellow: string;
149
+ lightIndigo: string;
150
150
  };
151
151
  };
152
152
  neutral: {
153
153
  80: string;
154
154
  };
155
- focus: any;
156
- disabled: any;
155
+ focus: string;
156
+ disabled: string;
157
157
  white: string;
158
158
  'blue-100': string;
159
159
  'blue-200': string;
@@ -289,39 +289,39 @@ declare const colors: {
289
289
  critical_pressed: string;
290
290
  critical_light: string;
291
291
  warning_light: string;
292
- lightblue: any;
293
- lightindigo: any;
294
- lightpurple: any;
295
- lightpink: any;
296
- lightred: any;
297
- lightorange: any;
298
- lightyellow: any;
299
- lightgreen: any;
300
- lightteal: any;
301
- lightcyan: any;
302
- darkblue: any;
303
- darkindigo: any;
304
- darkpurple: any;
305
- darkpink: any;
306
- darkred: any;
307
- darkorange: any;
308
- darkyellow: any;
309
- darkgreen: any;
310
- darkteal: any;
311
- darkcyan: any;
312
- mediumblue: any;
313
- mediumindigo: any;
314
- mediumpurple: any;
315
- mediumpink: any;
316
- mediumred: any;
317
- mediumorange: any;
318
- mediumyellow: any;
319
- mediumgreen: any;
320
- mediumteal: any;
321
- mediumcyan: any;
322
- secondary: any;
323
- danger: any;
324
- light: any;
325
- dark: any;
292
+ lightblue: string;
293
+ lightindigo: string;
294
+ lightpurple: string;
295
+ lightpink: string;
296
+ lightred: string;
297
+ lightorange: string;
298
+ lightyellow: string;
299
+ lightgreen: string;
300
+ lightteal: string;
301
+ lightcyan: string;
302
+ darkblue: string;
303
+ darkindigo: string;
304
+ darkpurple: string;
305
+ darkpink: string;
306
+ darkred: string;
307
+ darkorange: string;
308
+ darkyellow: string;
309
+ darkgreen: string;
310
+ darkteal: string;
311
+ darkcyan: string;
312
+ mediumblue: string;
313
+ mediumindigo: string;
314
+ mediumpurple: string;
315
+ mediumpink: string;
316
+ mediumred: string;
317
+ mediumorange: string;
318
+ mediumyellow: string;
319
+ mediumgreen: string;
320
+ mediumteal: string;
321
+ mediumcyan: string;
322
+ secondary: string;
323
+ danger: string;
324
+ light: string;
325
+ dark: string;
326
326
  };
327
327
  export default colors;
@@ -1,36 +1,36 @@
1
1
  export declare const iconWrapper: {
2
2
  wrapper: {
3
- orange: any;
4
- cyan: any;
5
- green: any;
6
- purple: any;
7
- pink: any;
8
- red: any;
9
- yellow: any;
10
- teal: any;
11
- blue: any;
12
- indigo: any;
13
- lightBlue: any;
14
- lightPink: any;
15
- lightGreen: any;
16
- lightYellow: any;
17
- lightIndigo: any;
3
+ orange: string;
4
+ cyan: string;
5
+ green: string;
6
+ purple: string;
7
+ pink: string;
8
+ red: string;
9
+ yellow: string;
10
+ teal: string;
11
+ blue: string;
12
+ indigo: string;
13
+ lightBlue: string;
14
+ lightPink: string;
15
+ lightGreen: string;
16
+ lightYellow: string;
17
+ lightIndigo: string;
18
18
  };
19
19
  icon: {
20
- orange: any;
21
- cyan: any;
22
- green: any;
23
- purple: any;
24
- pink: any;
25
- red: any;
26
- yellow: any;
27
- teal: any;
28
- blue: any;
29
- indigo: any;
30
- lightBlue: any;
31
- lightPink: any;
32
- lightGreen: any;
33
- lightYellow: any;
34
- lightIndigo: any;
20
+ orange: string;
21
+ cyan: string;
22
+ green: string;
23
+ purple: string;
24
+ pink: string;
25
+ red: string;
26
+ yellow: string;
27
+ teal: string;
28
+ blue: string;
29
+ indigo: string;
30
+ lightBlue: string;
31
+ lightPink: string;
32
+ lightGreen: string;
33
+ lightYellow: string;
34
+ lightIndigo: string;
35
35
  };
36
36
  };
@@ -1,37 +1,37 @@
1
1
  declare const twoTone: {
2
2
  bg: {
3
- orange: any;
4
- cyan: any;
5
- green: any;
6
- purple: any;
7
- pink: any;
8
- red: any;
9
- yellow: any;
10
- teal: any;
11
- blue: any;
12
- indigo: any;
13
- lightBlue: any;
14
- lightPink: any;
15
- lightGreen: any;
16
- lightYellow: any;
17
- lightIndigo: any;
3
+ orange: string;
4
+ cyan: string;
5
+ green: string;
6
+ purple: string;
7
+ pink: string;
8
+ red: string;
9
+ yellow: string;
10
+ teal: string;
11
+ blue: string;
12
+ indigo: string;
13
+ lightBlue: string;
14
+ lightPink: string;
15
+ lightGreen: string;
16
+ lightYellow: string;
17
+ lightIndigo: string;
18
18
  };
19
19
  text: {
20
- orange: any;
21
- cyan: any;
22
- green: any;
23
- purple: any;
24
- pink: any;
25
- red: any;
26
- yellow: any;
27
- teal: any;
28
- blue: any;
29
- indigo: any;
30
- lightBlue: any;
31
- lightPink: any;
32
- lightGreen: any;
33
- lightYellow: any;
34
- lightIndigo: any;
20
+ orange: string;
21
+ cyan: string;
22
+ green: string;
23
+ purple: string;
24
+ pink: string;
25
+ red: string;
26
+ yellow: string;
27
+ teal: string;
28
+ blue: string;
29
+ indigo: string;
30
+ lightBlue: string;
31
+ lightPink: string;
32
+ lightGreen: string;
33
+ lightYellow: string;
34
+ lightIndigo: string;
35
35
  };
36
36
  };
37
37
  export default twoTone;
@@ -91,11 +91,11 @@ export declare const nextGenThemeValues: {
91
91
  };
92
92
  iconBadgeCircleColor: string;
93
93
  iconWrapperSizes: {
94
- xs: any;
95
- sm: any;
96
- md: any;
97
- lg: any;
98
- xl: any;
94
+ xs: number;
95
+ sm: number;
96
+ md: number;
97
+ lg: number;
98
+ xl: number;
99
99
  };
100
100
  defaultIconColor: string;
101
101
  accordionItemDefaultLabelTag: string;
@@ -17,9 +17,9 @@ declare const _default: {
17
17
  };
18
18
  export default _default;
19
19
  export declare const iconWrapperSizes: {
20
- xs: any;
21
- sm: any;
22
- md: any;
23
- lg: any;
24
- xl: any;
20
+ xs: number;
21
+ sm: number;
22
+ md: number;
23
+ lg: number;
24
+ xl: number;
25
25
  };
@@ -8,10 +8,10 @@ export declare const checkbox: {
8
8
  };
9
9
  };
10
10
  export declare const select: {
11
- borderRadius: any;
11
+ borderRadius: number;
12
12
  borderColor: string;
13
13
  color: string;
14
- height: any;
14
+ height: number;
15
15
  '&.is-disabled': {
16
16
  opacity: number;
17
17
  borderColor: string;
@@ -44,7 +44,7 @@ export declare const comboBox: {
44
44
  input: {
45
45
  borderStyle: string;
46
46
  borderWidth: string;
47
- borderRadius: any;
47
+ borderRadius: number;
48
48
  height: string;
49
49
  };
50
50
  button: {
@@ -54,7 +54,7 @@ export declare const comboBox: {
54
54
  export declare const numberField: {
55
55
  arrowsWrapper: {
56
56
  '> textarea': {
57
- borderRadius: any;
57
+ borderRadius: number;
58
58
  border: string;
59
59
  borderColor: string;
60
60
  outline: string;
@@ -65,16 +65,16 @@ export declare const numberField: {
65
65
  };
66
66
  opacity: number;
67
67
  '> input': {
68
- backgroundColor: any;
68
+ backgroundColor: string;
69
69
  border: string;
70
- borderColor: any;
70
+ borderColor: string;
71
71
  opacity: number;
72
72
  fontWeight: number;
73
73
  };
74
74
  '> textarea': {
75
- backgroundColor: any;
75
+ backgroundColor: string;
76
76
  border: string;
77
- borderColor: any;
77
+ borderColor: string;
78
78
  opacity: number;
79
79
  fontWeight: number;
80
80
  };
@@ -90,20 +90,20 @@ export declare const numberField: {
90
90
  };
91
91
  '> button': {
92
92
  borderLeftWidth: number;
93
- borderRadius: any;
93
+ borderRadius: number;
94
94
  border: string;
95
- borderColor: any;
95
+ borderColor: string;
96
96
  };
97
97
  '&.is-read-only': {
98
98
  '> input': {
99
- backgroundColor: any;
99
+ backgroundColor: string;
100
100
  border: string;
101
- borderColor: any;
101
+ borderColor: string;
102
102
  };
103
103
  '> textarea': {
104
- backgroundColor: any;
104
+ backgroundColor: string;
105
105
  border: string;
106
- borderColor: any;
106
+ borderColor: string;
107
107
  };
108
108
  '&:after': {
109
109
  display: string;
@@ -1065,7 +1065,7 @@ declare const _default: {
1065
1065
  input: {
1066
1066
  borderStyle: string;
1067
1067
  borderWidth: string;
1068
- borderRadius: any;
1068
+ borderRadius: number;
1069
1069
  height: string;
1070
1070
  };
1071
1071
  button: {
@@ -1073,10 +1073,10 @@ declare const _default: {
1073
1073
  };
1074
1074
  };
1075
1075
  select: {
1076
- borderRadius: any;
1076
+ borderRadius: number;
1077
1077
  borderColor: string;
1078
1078
  color: string;
1079
- height: any;
1079
+ height: number;
1080
1080
  '&.is-disabled': {
1081
1081
  opacity: number;
1082
1082
  borderColor: string;
@@ -1171,7 +1171,7 @@ declare const _default: {
1171
1171
  numberField: {
1172
1172
  arrowsWrapper: {
1173
1173
  '> textarea': {
1174
- borderRadius: any;
1174
+ borderRadius: number;
1175
1175
  border: string;
1176
1176
  borderColor: string;
1177
1177
  outline: string;
@@ -1182,16 +1182,16 @@ declare const _default: {
1182
1182
  };
1183
1183
  opacity: number;
1184
1184
  '> input': {
1185
- backgroundColor: any;
1185
+ backgroundColor: string;
1186
1186
  border: string;
1187
- borderColor: any;
1187
+ borderColor: string;
1188
1188
  opacity: number;
1189
1189
  fontWeight: number;
1190
1190
  };
1191
1191
  '> textarea': {
1192
- backgroundColor: any;
1192
+ backgroundColor: string;
1193
1193
  border: string;
1194
- borderColor: any;
1194
+ borderColor: string;
1195
1195
  opacity: number;
1196
1196
  fontWeight: number;
1197
1197
  };
@@ -1207,20 +1207,20 @@ declare const _default: {
1207
1207
  };
1208
1208
  '> button': {
1209
1209
  borderLeftWidth: number;
1210
- borderRadius: any;
1210
+ borderRadius: number;
1211
1211
  border: string;
1212
- borderColor: any;
1212
+ borderColor: string;
1213
1213
  };
1214
1214
  '&.is-read-only': {
1215
1215
  '> input': {
1216
- backgroundColor: any;
1216
+ backgroundColor: string;
1217
1217
  border: string;
1218
- borderColor: any;
1218
+ borderColor: string;
1219
1219
  };
1220
1220
  '> textarea': {
1221
- backgroundColor: any;
1221
+ backgroundColor: string;
1222
1222
  border: string;
1223
- borderColor: any;
1223
+ borderColor: string;
1224
1224
  };
1225
1225
  '&:after': {
1226
1226
  display: string;