@dnanpm/styleguide 1.8.1 → 2.0.1
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/build/cjs/components/Accordion/Accordion.d.ts +50 -0
- package/build/cjs/components/Accordion/Accordion.js +52 -0
- package/build/cjs/components/Accordion/AccordionItem.d.ts +30 -0
- package/build/cjs/components/Accordion/AccordionItem.js +77 -0
- package/build/cjs/components/AmountSelector/AmountSelector.js +5 -6
- package/build/cjs/components/Buttons/ButtonBasicStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/ButtonBasicStyles.js +10 -14
- package/build/cjs/components/Buttons/ButtonDefault.js +6 -2
- package/build/cjs/components/Buttons/ButtonIconPrimaryStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/ButtonIconStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/ButtonPrimary.js +6 -2
- package/build/cjs/components/Buttons/ButtonPrimaryStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/ButtonSecondary.js +7 -3
- package/build/cjs/components/Buttons/ButtonSecondaryStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/ButtonTertiary.js +7 -3
- package/build/cjs/components/Buttons/ButtonTertiaryStyles.d.ts +37 -30
- package/build/cjs/components/Buttons/CloseButton.d.ts +37 -30
- package/build/cjs/components/Card/Card.js +4 -2
- package/build/cjs/components/Card/CardRow.js +3 -3
- package/build/cjs/components/Checkbox/Checkbox.d.ts +38 -12
- package/build/cjs/components/Checkbox/Checkbox.js +37 -70
- package/build/cjs/components/DnaLogo/DnaLogo.d.ts +37 -40
- package/build/cjs/components/Footer/Components/FooterComponents.js +3 -2
- package/build/cjs/components/Helper/Helper.js +2 -1
- package/build/cjs/components/Icon/Icon.d.ts +39 -30
- package/build/cjs/components/Icon/Icons.d.ts +1 -4
- package/build/cjs/components/Icon/Icons.js +3 -7
- package/build/cjs/components/Input/Input.d.ts +102 -13
- package/build/cjs/components/Input/Input.js +57 -58
- package/build/cjs/components/Label/Label.js +2 -3
- package/build/cjs/components/LabelText/LabelText.d.ts +38 -30
- package/build/cjs/components/LabelText/LabelText.js +1 -1
- package/build/cjs/components/MainNavigation/ChildComponents/BusinessMenu.js +4 -10
- package/build/cjs/components/MainNavigation/ChildComponents/DesktopMenu.js +18 -12
- package/build/cjs/components/MainNavigation/ChildComponents/HeaderNavigationElements.d.ts +37 -30
- package/build/cjs/components/MainNavigation/ChildComponents/LanguageSelector.js +2 -2
- package/build/cjs/components/MainNavigation/ChildComponents/LinkModifier.js +2 -2
- package/build/cjs/components/MainNavigation/ChildComponents/MainNavTooltipMenuExportedStyles.d.ts +37 -30
- package/build/cjs/components/MainNavigation/ChildComponents/MainNavTooltipMenuExportedStyles.js +1 -4
- package/build/cjs/components/MainNavigation/ChildComponents/MobileMenu.js +1 -1
- package/build/cjs/components/MainNavigation/ChildComponents/Ribbon.js +1 -1
- package/build/cjs/components/MainNavigation/MainNavigation.js +1 -17
- package/build/cjs/components/MainNavigation/globalNavStyles.d.ts +148 -120
- package/build/cjs/components/Notification/Notification.d.ts +36 -17
- package/build/cjs/components/Notification/Notification.js +25 -48
- package/build/cjs/components/NotificationBadge/NotificationBadge.d.ts +37 -30
- package/build/cjs/components/NotificationBadge/NotificationBadge.js +1 -1
- package/build/cjs/components/PixelLoader/PixelLoaderStyles.d.ts +74 -60
- package/build/cjs/components/ProgressIndicator/ProgressIndicator.js +3 -3
- package/build/cjs/components/RadioButton/RadioButton.d.ts +33 -17
- package/build/cjs/components/RadioButton/RadioButton.js +12 -57
- package/build/cjs/components/ReadMore/ReadMore.js +2 -7
- package/build/cjs/components/Ribbon/Ribbon.d.ts +57 -0
- package/build/cjs/components/Ribbon/Ribbon.js +80 -0
- package/build/cjs/components/Search/Search.js +2 -1
- package/build/cjs/components/SecondaryNavigation/SecondaryNavigation.js +2 -2
- package/build/cjs/components/Selectbox/Selectbox.d.ts +102 -13
- package/build/cjs/components/Selectbox/Selectbox.js +40 -49
- package/build/cjs/components/Tabs/Tab.d.ts +37 -30
- package/build/cjs/components/Tabs/Tab.js +3 -2
- package/build/cjs/components/Tabs/Tabs.d.ts +40 -30
- package/build/cjs/components/Textarea/Textarea.js +4 -3
- package/build/cjs/components/Tooltip/Tooltip.d.ts +37 -30
- package/build/cjs/components/TooltipMenu/ChildComponents/TooltipMenuExportedStyles.d.ts +74 -60
- package/build/cjs/components/index.d.ts +4 -1
- package/build/cjs/hooks/useElementDimensions.d.ts +5 -0
- package/build/cjs/hooks/useElementDimensions.js +37 -0
- package/build/cjs/index.js +6 -0
- package/build/cjs/themes/globalStyles.d.ts +174 -60
- package/build/cjs/themes/globalStyles.js +132 -142
- package/build/cjs/themes/styled.d.ts +259 -210
- package/build/cjs/themes/theme.d.ts +37 -30
- package/build/cjs/themes/themeComponents/buttons.d.ts +1 -6
- package/build/cjs/themes/themeComponents/buttons.js +1 -6
- package/build/cjs/themes/themeComponents/fontFamily.d.ts +3 -1
- package/build/cjs/themes/themeComponents/fontFamily.js +3 -1
- package/build/cjs/themes/themeComponents/fontSize.d.ts +18 -15
- package/build/cjs/themes/themeComponents/fontSize.js +20 -14
- package/build/cjs/themes/themeComponents/lineHeight.d.ts +19 -12
- package/build/cjs/themes/themeComponents/lineHeight.js +21 -11
- package/build/es/components/Accordion/Accordion.d.ts +50 -0
- package/build/es/components/Accordion/Accordion.js +44 -0
- package/build/es/components/Accordion/AccordionItem.d.ts +30 -0
- package/build/es/components/Accordion/AccordionItem.js +68 -0
- package/build/es/components/AmountSelector/AmountSelector.js +5 -6
- package/build/es/components/Buttons/ButtonBasicStyles.d.ts +37 -30
- package/build/es/components/Buttons/ButtonBasicStyles.js +10 -14
- package/build/es/components/Buttons/ButtonDefault.js +6 -2
- package/build/es/components/Buttons/ButtonIconPrimaryStyles.d.ts +37 -30
- package/build/es/components/Buttons/ButtonIconStyles.d.ts +37 -30
- package/build/es/components/Buttons/ButtonPrimary.js +6 -2
- package/build/es/components/Buttons/ButtonPrimaryStyles.d.ts +37 -30
- package/build/es/components/Buttons/ButtonSecondary.js +7 -3
- package/build/es/components/Buttons/ButtonSecondaryStyles.d.ts +37 -30
- package/build/es/components/Buttons/ButtonTertiary.js +7 -3
- package/build/es/components/Buttons/ButtonTertiaryStyles.d.ts +37 -30
- package/build/es/components/Buttons/CloseButton.d.ts +37 -30
- package/build/es/components/Card/Card.js +4 -2
- package/build/es/components/Card/CardRow.js +3 -3
- package/build/es/components/Checkbox/Checkbox.d.ts +38 -12
- package/build/es/components/Checkbox/Checkbox.js +39 -72
- package/build/es/components/DnaLogo/DnaLogo.d.ts +37 -40
- package/build/es/components/Footer/Components/FooterComponents.js +3 -2
- package/build/es/components/Helper/Helper.js +2 -1
- package/build/es/components/Icon/Icon.d.ts +39 -30
- package/build/es/components/Icon/Icons.d.ts +1 -4
- package/build/es/components/Icon/Icons.js +3 -7
- package/build/es/components/Input/Input.d.ts +102 -13
- package/build/es/components/Input/Input.js +57 -58
- package/build/es/components/Label/Label.js +2 -3
- package/build/es/components/LabelText/LabelText.d.ts +38 -30
- package/build/es/components/LabelText/LabelText.js +1 -1
- package/build/es/components/MainNavigation/ChildComponents/BusinessMenu.js +4 -10
- package/build/es/components/MainNavigation/ChildComponents/DesktopMenu.js +18 -12
- package/build/es/components/MainNavigation/ChildComponents/HeaderNavigationElements.d.ts +37 -30
- package/build/es/components/MainNavigation/ChildComponents/LanguageSelector.js +2 -2
- package/build/es/components/MainNavigation/ChildComponents/LinkModifier.js +2 -2
- package/build/es/components/MainNavigation/ChildComponents/MainNavTooltipMenuExportedStyles.d.ts +37 -30
- package/build/es/components/MainNavigation/ChildComponents/MainNavTooltipMenuExportedStyles.js +2 -5
- package/build/es/components/MainNavigation/ChildComponents/MobileMenu.js +1 -1
- package/build/es/components/MainNavigation/ChildComponents/Ribbon.js +1 -1
- package/build/es/components/MainNavigation/MainNavigation.js +2 -17
- package/build/es/components/MainNavigation/globalNavStyles.d.ts +148 -120
- package/build/es/components/Notification/Notification.d.ts +36 -17
- package/build/es/components/Notification/Notification.js +25 -48
- package/build/es/components/NotificationBadge/NotificationBadge.d.ts +37 -30
- package/build/es/components/NotificationBadge/NotificationBadge.js +1 -1
- package/build/es/components/PixelLoader/PixelLoaderStyles.d.ts +74 -60
- package/build/es/components/ProgressIndicator/ProgressIndicator.js +3 -3
- package/build/es/components/RadioButton/RadioButton.d.ts +33 -17
- package/build/es/components/RadioButton/RadioButton.js +12 -57
- package/build/es/components/ReadMore/ReadMore.js +2 -7
- package/build/es/components/Ribbon/Ribbon.d.ts +57 -0
- package/build/es/components/Ribbon/Ribbon.js +71 -0
- package/build/es/components/Search/Search.js +2 -1
- package/build/es/components/SecondaryNavigation/SecondaryNavigation.js +2 -2
- package/build/es/components/Selectbox/Selectbox.d.ts +102 -13
- package/build/es/components/Selectbox/Selectbox.js +40 -49
- package/build/es/components/Tabs/Tab.d.ts +37 -30
- package/build/es/components/Tabs/Tab.js +3 -2
- package/build/es/components/Tabs/Tabs.d.ts +40 -30
- package/build/es/components/Textarea/Textarea.js +4 -3
- package/build/es/components/Tooltip/Tooltip.d.ts +37 -30
- package/build/es/components/TooltipMenu/ChildComponents/TooltipMenuExportedStyles.d.ts +74 -60
- package/build/es/components/index.d.ts +4 -1
- package/build/es/hooks/useElementDimensions.d.ts +5 -0
- package/build/es/hooks/useElementDimensions.js +33 -0
- package/build/es/index.js +3 -0
- package/build/es/themes/globalStyles.d.ts +174 -60
- package/build/es/themes/globalStyles.js +134 -145
- package/build/es/themes/styled.d.ts +259 -210
- package/build/es/themes/theme.d.ts +37 -30
- package/build/es/themes/themeComponents/buttons.d.ts +1 -6
- package/build/es/themes/themeComponents/buttons.js +1 -6
- package/build/es/themes/themeComponents/fontFamily.d.ts +3 -1
- package/build/es/themes/themeComponents/fontFamily.js +3 -1
- package/build/es/themes/themeComponents/fontSize.d.ts +18 -15
- package/build/es/themes/themeComponents/fontSize.js +20 -14
- package/build/es/themes/themeComponents/lineHeight.d.ts +19 -12
- package/build/es/themes/themeComponents/lineHeight.js +21 -11
- package/package.json +3 -4
|
@@ -11,12 +11,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
11
11
|
};
|
|
12
12
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
13
13
|
button: {
|
|
14
|
-
|
|
15
|
-
buttonPadding: string;
|
|
16
|
-
smallButtonPadding: string;
|
|
17
|
-
buttonLineHeight: string;
|
|
18
|
-
buttonWidth: string;
|
|
19
|
-
buttonSmallWidth: string;
|
|
14
|
+
border: string;
|
|
20
15
|
};
|
|
21
16
|
color: {
|
|
22
17
|
black: string;
|
|
@@ -47,22 +42,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
47
42
|
gray5: string;
|
|
48
43
|
};
|
|
49
44
|
fontFamily: {
|
|
50
|
-
|
|
45
|
+
default: string;
|
|
46
|
+
heading: string;
|
|
47
|
+
numerals: string;
|
|
51
48
|
};
|
|
52
49
|
fontSize: {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
50
|
+
default: string;
|
|
51
|
+
xl: string;
|
|
52
|
+
l: string;
|
|
53
|
+
s: string;
|
|
54
|
+
xs: string;
|
|
55
|
+
h1XL: string;
|
|
56
|
+
h1L: string;
|
|
57
|
+
h1M: string;
|
|
58
|
+
h1S: string;
|
|
59
|
+
h2M: string;
|
|
60
|
+
h2S: string;
|
|
61
|
+
h3: string;
|
|
62
|
+
h4: string;
|
|
63
|
+
h5: string;
|
|
64
|
+
h1: string;
|
|
65
|
+
h2: string;
|
|
66
66
|
};
|
|
67
67
|
fontWeight: {
|
|
68
68
|
book: number;
|
|
@@ -78,16 +78,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
78
78
|
gutter: string;
|
|
79
79
|
};
|
|
80
80
|
lineHeight: {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
81
|
+
default: string;
|
|
82
|
+
xl: string;
|
|
83
|
+
s: string;
|
|
84
|
+
xs: string;
|
|
85
|
+
xxs: string;
|
|
86
|
+
auto: string;
|
|
87
|
+
h1XL: string;
|
|
88
|
+
h1L: string;
|
|
89
|
+
h1M: string;
|
|
90
|
+
h1S: string;
|
|
91
|
+
h2M: string;
|
|
92
|
+
h2S: string;
|
|
93
|
+
h3: string;
|
|
94
|
+
h4: string;
|
|
95
|
+
h5: string;
|
|
96
|
+
h1: string;
|
|
97
|
+
h2: string;
|
|
91
98
|
};
|
|
92
99
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
93
100
|
}>, css: import("styled-components").ThemedCssFunction<{
|
|
@@ -103,12 +110,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
103
110
|
};
|
|
104
111
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
105
112
|
button: {
|
|
106
|
-
|
|
107
|
-
buttonPadding: string;
|
|
108
|
-
smallButtonPadding: string;
|
|
109
|
-
buttonLineHeight: string;
|
|
110
|
-
buttonWidth: string;
|
|
111
|
-
buttonSmallWidth: string;
|
|
113
|
+
border: string;
|
|
112
114
|
};
|
|
113
115
|
color: {
|
|
114
116
|
black: string;
|
|
@@ -139,22 +141,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
139
141
|
gray5: string;
|
|
140
142
|
};
|
|
141
143
|
fontFamily: {
|
|
142
|
-
|
|
144
|
+
default: string;
|
|
145
|
+
heading: string;
|
|
146
|
+
numerals: string;
|
|
143
147
|
};
|
|
144
148
|
fontSize: {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
149
|
+
default: string;
|
|
150
|
+
xl: string;
|
|
151
|
+
l: string;
|
|
152
|
+
s: string;
|
|
153
|
+
xs: string;
|
|
154
|
+
h1XL: string;
|
|
155
|
+
h1L: string;
|
|
156
|
+
h1M: string;
|
|
157
|
+
h1S: string;
|
|
158
|
+
h2M: string;
|
|
159
|
+
h2S: string;
|
|
160
|
+
h3: string;
|
|
161
|
+
h4: string;
|
|
162
|
+
h5: string;
|
|
163
|
+
h1: string;
|
|
164
|
+
h2: string;
|
|
158
165
|
};
|
|
159
166
|
fontWeight: {
|
|
160
167
|
book: number;
|
|
@@ -170,16 +177,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
170
177
|
gutter: string;
|
|
171
178
|
};
|
|
172
179
|
lineHeight: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
180
|
+
default: string;
|
|
181
|
+
xl: string;
|
|
182
|
+
s: string;
|
|
183
|
+
xs: string;
|
|
184
|
+
xxs: string;
|
|
185
|
+
auto: string;
|
|
186
|
+
h1XL: string;
|
|
187
|
+
h1L: string;
|
|
188
|
+
h1M: string;
|
|
189
|
+
h1S: string;
|
|
190
|
+
h2M: string;
|
|
191
|
+
h2S: string;
|
|
192
|
+
h3: string;
|
|
193
|
+
h4: string;
|
|
194
|
+
h5: string;
|
|
195
|
+
h1: string;
|
|
196
|
+
h2: string;
|
|
183
197
|
};
|
|
184
198
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
185
199
|
}>, createGlobalStyle: <P extends object = {}>(first: TemplateStringsArray | import("styled-components").CSSObject | import("styled-components").InterpolationFunction<import("styled-components").ThemedStyledProps<P, {
|
|
@@ -195,12 +209,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
195
209
|
};
|
|
196
210
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
197
211
|
button: {
|
|
198
|
-
|
|
199
|
-
buttonPadding: string;
|
|
200
|
-
smallButtonPadding: string;
|
|
201
|
-
buttonLineHeight: string;
|
|
202
|
-
buttonWidth: string;
|
|
203
|
-
buttonSmallWidth: string;
|
|
212
|
+
border: string;
|
|
204
213
|
};
|
|
205
214
|
color: {
|
|
206
215
|
black: string;
|
|
@@ -231,22 +240,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
231
240
|
gray5: string;
|
|
232
241
|
};
|
|
233
242
|
fontFamily: {
|
|
234
|
-
|
|
243
|
+
default: string;
|
|
244
|
+
heading: string;
|
|
245
|
+
numerals: string;
|
|
235
246
|
};
|
|
236
247
|
fontSize: {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
248
|
+
default: string;
|
|
249
|
+
xl: string;
|
|
250
|
+
l: string;
|
|
251
|
+
s: string;
|
|
252
|
+
xs: string;
|
|
253
|
+
h1XL: string;
|
|
254
|
+
h1L: string;
|
|
255
|
+
h1M: string;
|
|
256
|
+
h1S: string;
|
|
257
|
+
h2M: string;
|
|
258
|
+
h2S: string;
|
|
259
|
+
h3: string;
|
|
260
|
+
h4: string;
|
|
261
|
+
h5: string;
|
|
262
|
+
h1: string;
|
|
263
|
+
h2: string;
|
|
250
264
|
};
|
|
251
265
|
fontWeight: {
|
|
252
266
|
book: number;
|
|
@@ -262,16 +276,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
262
276
|
gutter: string;
|
|
263
277
|
};
|
|
264
278
|
lineHeight: {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
279
|
+
default: string;
|
|
280
|
+
xl: string;
|
|
281
|
+
s: string;
|
|
282
|
+
xs: string;
|
|
283
|
+
xxs: string;
|
|
284
|
+
auto: string;
|
|
285
|
+
h1XL: string;
|
|
286
|
+
h1L: string;
|
|
287
|
+
h1M: string;
|
|
288
|
+
h1S: string;
|
|
289
|
+
h2M: string;
|
|
290
|
+
h2S: string;
|
|
291
|
+
h3: string;
|
|
292
|
+
h4: string;
|
|
293
|
+
h5: string;
|
|
294
|
+
h1: string;
|
|
295
|
+
h2: string;
|
|
275
296
|
};
|
|
276
297
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
277
298
|
}>>, ...interpolations: import("styled-components").Interpolation<import("styled-components").ThemedStyledProps<P, {
|
|
@@ -287,12 +308,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
287
308
|
};
|
|
288
309
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
289
310
|
button: {
|
|
290
|
-
|
|
291
|
-
buttonPadding: string;
|
|
292
|
-
smallButtonPadding: string;
|
|
293
|
-
buttonLineHeight: string;
|
|
294
|
-
buttonWidth: string;
|
|
295
|
-
buttonSmallWidth: string;
|
|
311
|
+
border: string;
|
|
296
312
|
};
|
|
297
313
|
color: {
|
|
298
314
|
black: string;
|
|
@@ -323,22 +339,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
323
339
|
gray5: string;
|
|
324
340
|
};
|
|
325
341
|
fontFamily: {
|
|
326
|
-
|
|
342
|
+
default: string;
|
|
343
|
+
heading: string;
|
|
344
|
+
numerals: string;
|
|
327
345
|
};
|
|
328
346
|
fontSize: {
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
347
|
+
default: string;
|
|
348
|
+
xl: string;
|
|
349
|
+
l: string;
|
|
350
|
+
s: string;
|
|
351
|
+
xs: string;
|
|
352
|
+
h1XL: string;
|
|
353
|
+
h1L: string;
|
|
354
|
+
h1M: string;
|
|
355
|
+
h1S: string;
|
|
356
|
+
h2M: string;
|
|
357
|
+
h2S: string;
|
|
358
|
+
h3: string;
|
|
359
|
+
h4: string;
|
|
360
|
+
h5: string;
|
|
361
|
+
h1: string;
|
|
362
|
+
h2: string;
|
|
342
363
|
};
|
|
343
364
|
fontWeight: {
|
|
344
365
|
book: number;
|
|
@@ -354,16 +375,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
354
375
|
gutter: string;
|
|
355
376
|
};
|
|
356
377
|
lineHeight: {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
378
|
+
default: string;
|
|
379
|
+
xl: string;
|
|
380
|
+
s: string;
|
|
381
|
+
xs: string;
|
|
382
|
+
xxs: string;
|
|
383
|
+
auto: string;
|
|
384
|
+
h1XL: string;
|
|
385
|
+
h1L: string;
|
|
386
|
+
h1M: string;
|
|
387
|
+
h1S: string;
|
|
388
|
+
h2M: string;
|
|
389
|
+
h2S: string;
|
|
390
|
+
h3: string;
|
|
391
|
+
h4: string;
|
|
392
|
+
h5: string;
|
|
393
|
+
h1: string;
|
|
394
|
+
h2: string;
|
|
367
395
|
};
|
|
368
396
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
369
397
|
}>>[]) => import("styled-components").GlobalStyleComponent<P, {
|
|
@@ -379,12 +407,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
379
407
|
};
|
|
380
408
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
381
409
|
button: {
|
|
382
|
-
|
|
383
|
-
buttonPadding: string;
|
|
384
|
-
smallButtonPadding: string;
|
|
385
|
-
buttonLineHeight: string;
|
|
386
|
-
buttonWidth: string;
|
|
387
|
-
buttonSmallWidth: string;
|
|
410
|
+
border: string;
|
|
388
411
|
};
|
|
389
412
|
color: {
|
|
390
413
|
black: string;
|
|
@@ -415,22 +438,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
415
438
|
gray5: string;
|
|
416
439
|
};
|
|
417
440
|
fontFamily: {
|
|
418
|
-
|
|
441
|
+
default: string;
|
|
442
|
+
heading: string;
|
|
443
|
+
numerals: string;
|
|
419
444
|
};
|
|
420
445
|
fontSize: {
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
446
|
+
default: string;
|
|
447
|
+
xl: string;
|
|
448
|
+
l: string;
|
|
449
|
+
s: string;
|
|
450
|
+
xs: string;
|
|
451
|
+
h1XL: string;
|
|
452
|
+
h1L: string;
|
|
453
|
+
h1M: string;
|
|
454
|
+
h1S: string;
|
|
455
|
+
h2M: string;
|
|
456
|
+
h2S: string;
|
|
457
|
+
h3: string;
|
|
458
|
+
h4: string;
|
|
459
|
+
h5: string;
|
|
460
|
+
h1: string;
|
|
461
|
+
h2: string;
|
|
434
462
|
};
|
|
435
463
|
fontWeight: {
|
|
436
464
|
book: number;
|
|
@@ -446,16 +474,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
446
474
|
gutter: string;
|
|
447
475
|
};
|
|
448
476
|
lineHeight: {
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
477
|
+
default: string;
|
|
478
|
+
xl: string;
|
|
479
|
+
s: string;
|
|
480
|
+
xs: string;
|
|
481
|
+
xxs: string;
|
|
482
|
+
auto: string;
|
|
483
|
+
h1XL: string;
|
|
484
|
+
h1L: string;
|
|
485
|
+
h1M: string;
|
|
486
|
+
h1S: string;
|
|
487
|
+
h2M: string;
|
|
488
|
+
h2S: string;
|
|
489
|
+
h3: string;
|
|
490
|
+
h4: string;
|
|
491
|
+
h5: string;
|
|
492
|
+
h1: string;
|
|
493
|
+
h2: string;
|
|
459
494
|
};
|
|
460
495
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
461
496
|
}>, keyframes: (strings: TemplateStringsArray | import("styled-components").CSSKeyframes, ...interpolations: import("styled-components").SimpleInterpolation[]) => import("styled-components").Keyframes, ThemeProvider: import("styled-components").BaseThemeProviderComponent<{
|
|
@@ -471,12 +506,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
471
506
|
};
|
|
472
507
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
473
508
|
button: {
|
|
474
|
-
|
|
475
|
-
buttonPadding: string;
|
|
476
|
-
smallButtonPadding: string;
|
|
477
|
-
buttonLineHeight: string;
|
|
478
|
-
buttonWidth: string;
|
|
479
|
-
buttonSmallWidth: string;
|
|
509
|
+
border: string;
|
|
480
510
|
};
|
|
481
511
|
color: {
|
|
482
512
|
black: string;
|
|
@@ -507,22 +537,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
507
537
|
gray5: string;
|
|
508
538
|
};
|
|
509
539
|
fontFamily: {
|
|
510
|
-
|
|
540
|
+
default: string;
|
|
541
|
+
heading: string;
|
|
542
|
+
numerals: string;
|
|
511
543
|
};
|
|
512
544
|
fontSize: {
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
545
|
+
default: string;
|
|
546
|
+
xl: string;
|
|
547
|
+
l: string;
|
|
548
|
+
s: string;
|
|
549
|
+
xs: string;
|
|
550
|
+
h1XL: string;
|
|
551
|
+
h1L: string;
|
|
552
|
+
h1M: string;
|
|
553
|
+
h1S: string;
|
|
554
|
+
h2M: string;
|
|
555
|
+
h2S: string;
|
|
556
|
+
h3: string;
|
|
557
|
+
h4: string;
|
|
558
|
+
h5: string;
|
|
559
|
+
h1: string;
|
|
560
|
+
h2: string;
|
|
526
561
|
};
|
|
527
562
|
fontWeight: {
|
|
528
563
|
book: number;
|
|
@@ -538,16 +573,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
538
573
|
gutter: string;
|
|
539
574
|
};
|
|
540
575
|
lineHeight: {
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
576
|
+
default: string;
|
|
577
|
+
xl: string;
|
|
578
|
+
s: string;
|
|
579
|
+
xs: string;
|
|
580
|
+
xxs: string;
|
|
581
|
+
auto: string;
|
|
582
|
+
h1XL: string;
|
|
583
|
+
h1L: string;
|
|
584
|
+
h1M: string;
|
|
585
|
+
h1S: string;
|
|
586
|
+
h2M: string;
|
|
587
|
+
h2S: string;
|
|
588
|
+
h3: string;
|
|
589
|
+
h4: string;
|
|
590
|
+
h5: string;
|
|
591
|
+
h1: string;
|
|
592
|
+
h2: string;
|
|
551
593
|
};
|
|
552
594
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
553
595
|
}, {
|
|
@@ -563,12 +605,7 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
563
605
|
};
|
|
564
606
|
breakpoints: import("./themeComponents/breakpoints").ViewBreakpoints;
|
|
565
607
|
button: {
|
|
566
|
-
|
|
567
|
-
buttonPadding: string;
|
|
568
|
-
smallButtonPadding: string;
|
|
569
|
-
buttonLineHeight: string;
|
|
570
|
-
buttonWidth: string;
|
|
571
|
-
buttonSmallWidth: string;
|
|
608
|
+
border: string;
|
|
572
609
|
};
|
|
573
610
|
color: {
|
|
574
611
|
black: string;
|
|
@@ -599,22 +636,27 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
599
636
|
gray5: string;
|
|
600
637
|
};
|
|
601
638
|
fontFamily: {
|
|
602
|
-
|
|
639
|
+
default: string;
|
|
640
|
+
heading: string;
|
|
641
|
+
numerals: string;
|
|
603
642
|
};
|
|
604
643
|
fontSize: {
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
644
|
+
default: string;
|
|
645
|
+
xl: string;
|
|
646
|
+
l: string;
|
|
647
|
+
s: string;
|
|
648
|
+
xs: string;
|
|
649
|
+
h1XL: string;
|
|
650
|
+
h1L: string;
|
|
651
|
+
h1M: string;
|
|
652
|
+
h1S: string;
|
|
653
|
+
h2M: string;
|
|
654
|
+
h2S: string;
|
|
655
|
+
h3: string;
|
|
656
|
+
h4: string;
|
|
657
|
+
h5: string;
|
|
658
|
+
h1: string;
|
|
659
|
+
h2: string;
|
|
618
660
|
};
|
|
619
661
|
fontWeight: {
|
|
620
662
|
book: number;
|
|
@@ -630,16 +672,23 @@ declare const styled: import("styled-components").ThemedStyledInterface<{
|
|
|
630
672
|
gutter: string;
|
|
631
673
|
};
|
|
632
674
|
lineHeight: {
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
675
|
+
default: string;
|
|
676
|
+
xl: string;
|
|
677
|
+
s: string;
|
|
678
|
+
xs: string;
|
|
679
|
+
xxs: string;
|
|
680
|
+
auto: string;
|
|
681
|
+
h1XL: string;
|
|
682
|
+
h1L: string;
|
|
683
|
+
h1M: string;
|
|
684
|
+
h1S: string;
|
|
685
|
+
h2M: string;
|
|
686
|
+
h2S: string;
|
|
687
|
+
h3: string;
|
|
688
|
+
h4: string;
|
|
689
|
+
h5: string;
|
|
690
|
+
h1: string;
|
|
691
|
+
h2: string;
|
|
643
692
|
};
|
|
644
693
|
media: Record<string | number, (l: TemplateStringsArray, ...p: any[]) => string>;
|
|
645
694
|
}>, ServerStyleSheet: typeof import("styled-components").ServerStyleSheet;
|