gantri-components 2.48.1 → 2.50.0
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.
- package/dist/components/box/box.types.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/styles/index.d.ts +1 -1
- package/dist/styles/theme.d.ts +7 -0
- package/package.json +1 -1
package/dist/styles/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { getButtonsColors, getThemeColor, getThemeSpacing, palette, lightTheme, darkTheme, createTheme, } from './theme';
|
|
1
|
+
export { getButtonsColors, getThemeColor, getThemeSpacing, palette, spacing, lightTheme, darkTheme, createTheme, } from './theme';
|
|
2
2
|
export { type PaletteColor as Color } from './theme';
|
|
3
3
|
export { ThemeProvider } from './theme-provider';
|
|
4
4
|
export * from './animations';
|
package/dist/styles/theme.d.ts
CHANGED
|
@@ -126,8 +126,14 @@ declare module 'styled-components' {
|
|
|
126
126
|
'10x': string;
|
|
127
127
|
'11x': string;
|
|
128
128
|
'12x': string;
|
|
129
|
+
'13x': string;
|
|
130
|
+
'14x': string;
|
|
131
|
+
'15x': string;
|
|
129
132
|
'16x': string;
|
|
133
|
+
'17x': string;
|
|
130
134
|
'18x': string;
|
|
135
|
+
'19x': string;
|
|
136
|
+
'20x': string;
|
|
131
137
|
'24x': string;
|
|
132
138
|
'2x': string;
|
|
133
139
|
'3x': string;
|
|
@@ -178,6 +184,7 @@ declare module 'styled-components' {
|
|
|
178
184
|
};
|
|
179
185
|
}
|
|
180
186
|
}
|
|
187
|
+
export declare const spacing: DefaultTheme['dimensions']['spacing'];
|
|
181
188
|
export declare const allProductColorCodes: readonly ["blossompink", "canyon", "carbon", "coral", "fog", "forest", "glossysnowwhite", "meadow", "midnight", "olive", "peach", "persimmon", "sage", "sand", "sedona", "sky", "snow", "sproutgreen", "stone", "sunrise"];
|
|
182
189
|
export type ProductColorCode = typeof allProductColorCodes[number];
|
|
183
190
|
/** Color codes that are no longer available for as product options. */
|