oddsgate-ds 1.0.46 → 1.0.48
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/package.json +1 -1
- package/rollup.config.js +1 -1
- package/types.d.ts +79 -0
package/package.json
CHANGED
package/rollup.config.js
CHANGED
package/types.d.ts
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
declare const pxToRem: (size: number) => string;
|
|
2
|
+
declare const fontName = "MD Nichrome";
|
|
3
|
+
declare const alternativeFont = "Red Hat Display";
|
|
4
|
+
declare const gutter: string;
|
|
5
|
+
declare const desktop_width = "1620";
|
|
6
|
+
declare const tablet_width = "768";
|
|
7
|
+
declare const mobile_width = "375";
|
|
8
|
+
declare const responsiveMedia = "980px";
|
|
9
|
+
declare const mobileMedia = "360px";
|
|
10
|
+
declare const easeOutExpo = "cubic-bezier(.32,.94,.6,1);";
|
|
11
|
+
type IBreakpoints = {
|
|
12
|
+
$xs?: string;
|
|
13
|
+
$sm?: string;
|
|
14
|
+
$md?: string;
|
|
15
|
+
$lg?: string;
|
|
16
|
+
$xl?: string;
|
|
17
|
+
$xxl?: string;
|
|
18
|
+
};
|
|
19
|
+
declare const colors: Record<string, string>;
|
|
20
|
+
declare const spaces: Record<string, string>;
|
|
21
|
+
declare const spacesNegative: Record<string, string>;
|
|
22
|
+
declare const typography: Record<string, Record<string, unknown>>;
|
|
23
|
+
declare const radius: Record<string, string>;
|
|
24
|
+
declare const shadows: Record<string, string>;
|
|
25
|
+
declare const zIndexes: Record<string, string>;
|
|
26
|
+
declare const grid_conf: {
|
|
27
|
+
gridSize: number;
|
|
28
|
+
gutter: number;
|
|
29
|
+
mediaQuery: string;
|
|
30
|
+
container: IBreakpoints;
|
|
31
|
+
breakpoints: IBreakpoints;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
type variables_IBreakpoints = IBreakpoints;
|
|
35
|
+
declare const variables_alternativeFont: typeof alternativeFont;
|
|
36
|
+
declare const variables_colors: typeof colors;
|
|
37
|
+
declare const variables_desktop_width: typeof desktop_width;
|
|
38
|
+
declare const variables_easeOutExpo: typeof easeOutExpo;
|
|
39
|
+
declare const variables_fontName: typeof fontName;
|
|
40
|
+
declare const variables_grid_conf: typeof grid_conf;
|
|
41
|
+
declare const variables_gutter: typeof gutter;
|
|
42
|
+
declare const variables_mobileMedia: typeof mobileMedia;
|
|
43
|
+
declare const variables_mobile_width: typeof mobile_width;
|
|
44
|
+
declare const variables_pxToRem: typeof pxToRem;
|
|
45
|
+
declare const variables_radius: typeof radius;
|
|
46
|
+
declare const variables_responsiveMedia: typeof responsiveMedia;
|
|
47
|
+
declare const variables_shadows: typeof shadows;
|
|
48
|
+
declare const variables_spaces: typeof spaces;
|
|
49
|
+
declare const variables_spacesNegative: typeof spacesNegative;
|
|
50
|
+
declare const variables_tablet_width: typeof tablet_width;
|
|
51
|
+
declare const variables_typography: typeof typography;
|
|
52
|
+
declare const variables_zIndexes: typeof zIndexes;
|
|
53
|
+
declare namespace variables {
|
|
54
|
+
export {
|
|
55
|
+
variables_IBreakpoints as IBreakpoints,
|
|
56
|
+
variables_alternativeFont as alternativeFont,
|
|
57
|
+
variables_colors as colors,
|
|
58
|
+
variables_desktop_width as desktop_width,
|
|
59
|
+
variables_easeOutExpo as easeOutExpo,
|
|
60
|
+
variables_fontName as fontName,
|
|
61
|
+
variables_grid_conf as grid_conf,
|
|
62
|
+
variables_gutter as gutter,
|
|
63
|
+
variables_mobileMedia as mobileMedia,
|
|
64
|
+
variables_mobile_width as mobile_width,
|
|
65
|
+
variables_pxToRem as pxToRem,
|
|
66
|
+
variables_radius as radius,
|
|
67
|
+
variables_responsiveMedia as responsiveMedia,
|
|
68
|
+
variables_shadows as shadows,
|
|
69
|
+
variables_spaces as spaces,
|
|
70
|
+
variables_spacesNegative as spacesNegative,
|
|
71
|
+
variables_tablet_width as tablet_width,
|
|
72
|
+
variables_typography as typography,
|
|
73
|
+
variables_zIndexes as zIndexes,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
declare function export_default(): void;
|
|
78
|
+
|
|
79
|
+
export { export_default as default, variables };
|