@wavemaker/foundation-css 11.10.0-next.25079
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.
- foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.eot +0 -0
- foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.svg +686 -0
- foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.ttf +0 -0
- foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.woff +0 -0
- foundation-css/foundation/fonts/icons/material/materialicon.eot +0 -0
- foundation-css/foundation/fonts/icons/material/materialicon.svg +97 -0
- foundation-css/foundation/fonts/icons/material/materialicon.ttf +0 -0
- foundation-css/foundation/fonts/icons/material/materialicon.woff +0 -0
- foundation-css/foundation/fonts/icons/summernote/summernote.eot +0 -0
- foundation-css/foundation/fonts/icons/summernote/summernote.svg +63 -0
- foundation-css/foundation/fonts/icons/summernote/summernote.ttf +0 -0
- foundation-css/foundation/fonts/icons/summernote/summernote.woff +0 -0
- foundation-css/foundation/fonts/icons/wavicon/wavicon.eot +0 -0
- foundation-css/foundation/fonts/icons/wavicon/wavicon.svg +1160 -0
- foundation-css/foundation/fonts/icons/wavicon/wavicon.ttf +0 -0
- foundation-css/foundation/fonts/icons/wavicon/wavicon.woff +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.eot +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.svg +244 -0
- foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.ttf +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.woff +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.eot +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.svg +216 -0
- foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.ttf +0 -0
- foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.woff +0 -0
- foundation-css/foundation/foundation.css +24748 -0
- foundation-css/foundation/foundation.min.css +1 -0
- foundation-css/index.d.ts +30 -0
- foundation-css/index.js +46 -0
- foundation-css/npm-shrinkwrap.json +2657 -0
- foundation-css/package-lock.json +2657 -0
- foundation-css/package.json +30 -0
- foundation-css/tokens/primitives/border/border.json +10 -0
- foundation-css/tokens/primitives/colors/color.dark.json +124 -0
- foundation-css/tokens/primitives/colors/color.json +163 -0
- foundation-css/tokens/primitives/colors/color.light.json +1 -0
- foundation-css/tokens/primitives/font/font.json +20 -0
- foundation-css/tokens/primitives/radius/radius.json +14 -0
- foundation-css/tokens/primitives/space/space.json +57 -0
- foundation-css/tokens/primitives/spacer/spacer.json +45 -0
- foundation-css/tokens/semantics/box-shadow/box-shadow.json +8 -0
- foundation-css/tokens/semantics/colors/color.json +948 -0
- foundation-css/tokens/semantics/font/font.json +113 -0
- foundation-css/tokens/semantics/icon/icon.json +39 -0
- foundation-css/tokens/semantics/opacity/opacity.json +7 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// TokenSet Interface
|
|
2
|
+
export interface TokenSet {
|
|
3
|
+
default: Record<string, any>;
|
|
4
|
+
light?: Record<string, any>;
|
|
5
|
+
dark?: Record<string, any>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// Tokens Interface
|
|
9
|
+
export interface Tokens {
|
|
10
|
+
reference: {
|
|
11
|
+
color: TokenSet;
|
|
12
|
+
font: TokenSet;
|
|
13
|
+
space: TokenSet;
|
|
14
|
+
radius: TokenSet;
|
|
15
|
+
};
|
|
16
|
+
system: {
|
|
17
|
+
color: TokenSet;
|
|
18
|
+
font: TokenSet;
|
|
19
|
+
space: TokenSet;
|
|
20
|
+
opacity: TokenSet;
|
|
21
|
+
};
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Primitives
|
|
26
|
+
export declare const reference: Tokens['reference'];
|
|
27
|
+
|
|
28
|
+
// Semantics
|
|
29
|
+
export declare const system: Tokens['system'];
|
|
30
|
+
|
foundation-css/index.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// Primitives
|
|
2
|
+
import colorDefault from './tokens/primitives/colors/color.json';
|
|
3
|
+
import colorLight from './tokens/primitives/colors/color.light.json';
|
|
4
|
+
import colorDark from './tokens/primitives/colors/color.dark.json';
|
|
5
|
+
|
|
6
|
+
import fontDefault from './tokens/primitives/font/font.json';
|
|
7
|
+
import spacingDefault from './tokens/primitives/space/space.json';
|
|
8
|
+
import radiusDefault from './tokens/primitives/radius/radius.json';
|
|
9
|
+
|
|
10
|
+
// Semantics
|
|
11
|
+
import semanticColorDefault from './tokens/semantics/colors/color.json';
|
|
12
|
+
import semanticFontDefault from './tokens/semantics/font/font.json';
|
|
13
|
+
import opacityDefault from './tokens/semantics/opacity/opacity.json';
|
|
14
|
+
|
|
15
|
+
// Organized Tokens
|
|
16
|
+
export const reference = {
|
|
17
|
+
color: {
|
|
18
|
+
default: colorDefault,
|
|
19
|
+
light: colorLight,
|
|
20
|
+
dark: colorDark,
|
|
21
|
+
},
|
|
22
|
+
font: {
|
|
23
|
+
default: fontDefault,
|
|
24
|
+
},
|
|
25
|
+
space: {
|
|
26
|
+
default: spacingDefault,
|
|
27
|
+
},
|
|
28
|
+
radius: {
|
|
29
|
+
default: radiusDefault,
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export const system = {
|
|
34
|
+
color: {
|
|
35
|
+
default: semanticColorDefault,
|
|
36
|
+
},
|
|
37
|
+
font: {
|
|
38
|
+
default: semanticFontDefault,
|
|
39
|
+
},
|
|
40
|
+
space: {
|
|
41
|
+
default: spacingDefault,
|
|
42
|
+
},
|
|
43
|
+
opacity: {
|
|
44
|
+
default: opacityDefault,
|
|
45
|
+
},
|
|
46
|
+
};
|