@20minutes/hela 0.1.59 → 0.1.60
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/atoms/Overlay/Overlay.d.ts +4 -0
- package/dist/components/atoms/Overlay/index.d.ts +1 -0
- package/dist/components/atoms/index.d.ts +1 -0
- package/dist/components/organisms/Footer/Footer.d.ts +3 -0
- package/dist/components/organisms/Footer/FooterDesktop.d.ts +2 -5
- package/dist/components/organisms/Footer/FooterMobile.d.ts +2 -5
- package/dist/constants/tokenVariables.d.ts +12 -15
- package/dist/index.es.js +668 -662
- package/dist/index.umd.js +49 -49
- package/dist/js/main.min.js +1 -1
- package/dist/scss/abstracts/variables/_old-colors.scss +0 -2
- package/dist/scss/abstracts/variables/_token-variables.scss +30 -27
- package/dist/scss/abstracts/variables/_variables.scss +25 -25
- package/dist/style.css +1 -1
- package/dist/types/tokenTypes.d.ts +5 -2
- package/package.json +6 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Overlay';
|
|
@@ -3,5 +3,8 @@ import { LayoutType } from '../../../types';
|
|
|
3
3
|
import { FooterCategoriesProps, FooterLinksProps, SocialIconsProps } from '../../../components';
|
|
4
4
|
export interface FooterProps extends FooterCategoriesProps, FooterLinksProps, SocialIconsProps {
|
|
5
5
|
layout?: LayoutType;
|
|
6
|
+
logoLink: string;
|
|
7
|
+
copyrightText: string;
|
|
8
|
+
copyrightDescription: string;
|
|
6
9
|
}
|
|
7
10
|
export declare const Footer: React.FC<FooterProps>;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
4
|
-
logoLink: string;
|
|
5
|
-
}
|
|
6
|
-
export declare const FooterDesktop: React.FC<FooterDesktopProps>;
|
|
2
|
+
import { FooterProps } from '../../../components';
|
|
3
|
+
export declare const FooterDesktop: React.FC<FooterProps>;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
4
|
-
logoLink: string;
|
|
5
|
-
}
|
|
6
|
-
export declare const FooterMobile: React.FC<FooterMobileProps>;
|
|
2
|
+
import { FooterProps } from '../../../components';
|
|
3
|
+
export declare const FooterMobile: React.FC<FooterProps>;
|
|
@@ -50,49 +50,43 @@ export declare const tokenVariables: {
|
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
color: {
|
|
53
|
-
|
|
53
|
+
primary: {
|
|
54
54
|
ultramarine: {
|
|
55
55
|
value: string;
|
|
56
56
|
};
|
|
57
57
|
'ultramarine-light': {
|
|
58
58
|
value: string;
|
|
59
59
|
};
|
|
60
|
+
};
|
|
61
|
+
secondary: {
|
|
60
62
|
orange: {
|
|
61
63
|
value: string;
|
|
62
64
|
};
|
|
63
|
-
'orange-light': {
|
|
64
|
-
value: string;
|
|
65
|
-
};
|
|
66
65
|
yellow: {
|
|
67
66
|
value: string;
|
|
68
67
|
};
|
|
69
68
|
green: {
|
|
70
69
|
value: string;
|
|
71
70
|
};
|
|
72
|
-
'green-dark': {
|
|
73
|
-
value: string;
|
|
74
|
-
};
|
|
75
71
|
purple: {
|
|
76
72
|
value: string;
|
|
77
73
|
};
|
|
78
|
-
|
|
74
|
+
red: {
|
|
79
75
|
value: string;
|
|
80
76
|
};
|
|
81
77
|
cyan: {
|
|
82
78
|
value: string;
|
|
83
79
|
};
|
|
84
|
-
|
|
85
|
-
value: string;
|
|
86
|
-
};
|
|
87
|
-
red: {
|
|
80
|
+
sponsoring: {
|
|
88
81
|
value: string;
|
|
89
82
|
};
|
|
83
|
+
};
|
|
84
|
+
status: {
|
|
90
85
|
error: {
|
|
91
86
|
value: string;
|
|
92
87
|
};
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
};
|
|
88
|
+
};
|
|
89
|
+
greyscale: {
|
|
96
90
|
black: {
|
|
97
91
|
value: string;
|
|
98
92
|
};
|
|
@@ -149,6 +143,9 @@ export declare const tokenVariables: {
|
|
|
149
143
|
c2c: {
|
|
150
144
|
value: string;
|
|
151
145
|
};
|
|
146
|
+
tempo: {
|
|
147
|
+
value: string;
|
|
148
|
+
};
|
|
152
149
|
};
|
|
153
150
|
};
|
|
154
151
|
'font-family': {
|