gantri-components 1.8.1 → 1.9.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.
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { PaletteColor } from './theme';
|
|
2
|
+
export { combinationsByColor, getThemeColor, getThemeSpacing, palette, lightTheme, darkTheme, } from './theme';
|
|
2
3
|
export { ThemeProvider } from './theme-provider';
|
|
3
4
|
export { media } from './media';
|
|
5
|
+
export type { PaletteColor };
|
|
@@ -93,11 +93,11 @@ declare module 'styled-components' {
|
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
declare const lightTheme: DefaultTheme;
|
|
97
|
-
declare const darkTheme: DefaultTheme;
|
|
96
|
+
export declare const lightTheme: DefaultTheme;
|
|
97
|
+
export declare const darkTheme: DefaultTheme;
|
|
98
98
|
export declare const getThemeColor: (color: PaletteColor, currentTheme?: DefaultTheme) => string;
|
|
99
99
|
export declare const getThemeSpacing: (property: string, currentTheme?: DefaultTheme) => any;
|
|
100
|
-
declare const combinationsByColor: (appTheme?: DefaultTheme) => {
|
|
100
|
+
export declare const combinationsByColor: (appTheme?: DefaultTheme) => {
|
|
101
101
|
alert: {
|
|
102
102
|
background: string;
|
|
103
103
|
color: string;
|
|
@@ -177,4 +177,3 @@ declare const combinationsByColor: (appTheme?: DefaultTheme) => {
|
|
|
177
177
|
selected: string;
|
|
178
178
|
};
|
|
179
179
|
};
|
|
180
|
-
export { lightTheme, darkTheme, combinationsByColor };
|