@kaizen/components 1.4.16 → 1.4.17

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/KaizenProvider/ThemeProvider/index.d.ts +7 -16
  3. package/dist/KaizenProvider/ThemeProvider/index.js +11 -2
  4. package/dist/KaizenProvider/ThemeProvider/themes/heart.d.ts +6 -0
  5. package/dist/KaizenProvider/ThemeProvider/themes/heart.js +8 -0
  6. package/dist/KaizenProvider/ThemeProvider/themes/index.d.ts +8 -0
  7. package/dist/KaizenProvider/ThemeProvider/themes/index.js +11 -0
  8. package/dist/KaizenProvider/ThemeProvider/themes/types.d.ts +231 -0
  9. package/dist/KaizenProvider/ThemeProvider/themes/types.js +1 -0
  10. package/dist/KaizenProvider/index.d.ts +5 -1
  11. package/dist/KaizenProvider/index.js +23 -4
  12. package/dist/ThemeProvider-7786826c.d.ts +17 -0
  13. package/dist/chunk-7T4E5A7M.js +315 -0
  14. package/dist/{chunk-HO4BDPVX.js → chunk-7ZAJ7755.js} +2 -2
  15. package/dist/chunk-FBL47PXS.js +1 -0
  16. package/dist/{chunk-RZK3BIEO.js → chunk-MXW3YHBE.js} +5 -3
  17. package/dist/chunk-WDAFEOSV.js +10 -0
  18. package/dist/esm/KaizenProvider/ThemeProvider/index.js +10 -1
  19. package/dist/esm/KaizenProvider/ThemeProvider/themes/heart.js +8 -0
  20. package/dist/esm/KaizenProvider/ThemeProvider/themes/index.js +11 -0
  21. package/dist/esm/KaizenProvider/ThemeProvider/themes/types.js +1 -0
  22. package/dist/esm/KaizenProvider/index.js +23 -4
  23. package/dist/esm/chunk-7T4E5A7M.js +315 -0
  24. package/dist/esm/{chunk-HO4BDPVX.js → chunk-7ZAJ7755.js} +1 -1
  25. package/dist/esm/chunk-FBL47PXS.js +0 -0
  26. package/dist/esm/{chunk-RZK3BIEO.js → chunk-MXW3YHBE.js} +3 -1
  27. package/dist/esm/chunk-WDAFEOSV.js +10 -0
  28. package/dist/esm/index.js +23 -6
  29. package/dist/iife/KaizenProvider/ThemeProvider/ThemeManager.js +2968 -62
  30. package/dist/iife/KaizenProvider/ThemeProvider/ThemeManager.spec.js +2968 -369
  31. package/dist/iife/KaizenProvider/ThemeProvider/index.js +824 -124
  32. package/dist/iife/KaizenProvider/ThemeProvider/themes/heart.js +313 -0
  33. package/dist/iife/KaizenProvider/ThemeProvider/themes/index.js +315 -0
  34. package/dist/iife/KaizenProvider/ThemeProvider/themes/types.js +3 -0
  35. package/dist/iife/KaizenProvider/index.js +825 -124
  36. package/dist/iife/index.js +2516 -1948
  37. package/dist/index.d.ts +5 -3
  38. package/dist/index.js +23 -6
  39. package/dist/styles.css +98 -0
  40. package/package.json +2 -2
@@ -0,0 +1,313 @@
1
+ "use strict";
2
+ (() => {
3
+ // src/KaizenProvider/ThemeProvider/themes/heart.ts
4
+ var heartTheme = {
5
+ themeKey: "heart",
6
+ animation: {
7
+ easingFunction: {
8
+ easeInOut: "cubic-bezier(0.455, 0.03, 0.515, 0.955)",
9
+ easeIn: "cubic-bezier(0.55, 0.085, 0.68, 0.53)",
10
+ easeOut: "cubic-bezier(0.25, 0.46, 0.45, 0.94)",
11
+ linear: "linear",
12
+ bounceIn: "cubic-bezier(0.485, 0.155, 0.24, 1.245)",
13
+ bounceOut: "cubic-bezier(0.485, 0.155, 0.515, 0.845)",
14
+ bounceInOut: "cubic-bezier(0.76, -0.245, 0.24, 1.245)"
15
+ },
16
+ duration: {
17
+ instant: "0ms",
18
+ immediate: "100ms",
19
+ rapid: "200ms",
20
+ fast: "300ms",
21
+ slow: "400ms",
22
+ deliberate: "700ms"
23
+ }
24
+ },
25
+ border: {
26
+ solid: {
27
+ borderWidth: "2px",
28
+ borderRadius: "7px",
29
+ borderStyle: "solid",
30
+ borderColor: "#e1e2ea"
31
+ },
32
+ dashed: {
33
+ borderWidth: "2px",
34
+ borderRadius: "7px",
35
+ borderStyle: "dashed"
36
+ },
37
+ borderless: {
38
+ borderWidth: "2px",
39
+ borderRadius: "7px",
40
+ borderStyle: "solid",
41
+ borderColor: "transparent"
42
+ },
43
+ focusRing: {
44
+ borderWidth: "2px",
45
+ borderRadius: "10px",
46
+ borderStyle: "solid"
47
+ }
48
+ },
49
+ color: {
50
+ purple: {
51
+ 100: "#f4edf8",
52
+ 200: "#dfc9ea",
53
+ 300: "#c9a5dd",
54
+ 400: "#ae67b1",
55
+ 500: "#844587",
56
+ 600: "#5f3361",
57
+ 700: "#4a234d",
58
+ 800: "#2f2438"
59
+ },
60
+ blue: {
61
+ 100: "#e6f6ff",
62
+ 200: "#bde2f5",
63
+ 300: "#73c0e8",
64
+ 400: "#008bd6",
65
+ 500: "#0168b3",
66
+ 600: "#004970",
67
+ 700: "#003157"
68
+ },
69
+ green: {
70
+ 100: "#e8f8f4",
71
+ 200: "#c4ede2",
72
+ 300: "#8fdbc7",
73
+ 400: "#5dcbad",
74
+ 500: "#44a289",
75
+ 600: "#2c7d67",
76
+ 700: "#22594a"
77
+ },
78
+ yellow: {
79
+ 100: "#fff9e4",
80
+ 200: "#ffeeb3",
81
+ 300: "#ffe36e",
82
+ 400: "#ffca4d",
83
+ 500: "#ffb600",
84
+ 600: "#c68600",
85
+ 700: "#876400"
86
+ },
87
+ red: {
88
+ 100: "#fdeaee",
89
+ 200: "#f9c2cb",
90
+ 300: "#f597a8",
91
+ 400: "#e0707d",
92
+ 500: "#c93b55",
93
+ 600: "#a82433",
94
+ 700: "#6c1e20"
95
+ },
96
+ orange: {
97
+ 100: "#fff0e8",
98
+ 200: "#ffd1b9",
99
+ 300: "#ffb08a",
100
+ 400: "#ff9461",
101
+ 500: "#e96c2f",
102
+ 600: "#b74302",
103
+ 700: "#903c00"
104
+ },
105
+ gray: {
106
+ 100: "#f9f9f9",
107
+ 200: "#f4f4f5",
108
+ 300: "#eaeaec",
109
+ 400: "#cdcdd0",
110
+ 500: "#8c8c97",
111
+ 600: "#524e56"
112
+ },
113
+ white: "#ffffff"
114
+ },
115
+ dataViz: {
116
+ favorable: "#7dd5bd",
117
+ unfavorable: "#e68d97"
118
+ },
119
+ layout: {
120
+ contentMaxWidth: "1392px",
121
+ contentMaxWidthWithSidebar: "1080px",
122
+ contentSideMargin: "72px",
123
+ mobileActionsDrawerHeight: "60px",
124
+ navigationBarHeight: "72px",
125
+ breakpoints: {
126
+ medium: "768px",
127
+ large: "1080px"
128
+ }
129
+ },
130
+ shadow: {
131
+ small: {
132
+ boxShadow: "0px 3px 16px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1)"
133
+ },
134
+ large: {
135
+ boxShadow: "0px 8px 40px rgba(0, 0, 0, 0.08), 0px 3px 9px rgba(0, 0, 0, 0.1)"
136
+ }
137
+ },
138
+ spacing: {
139
+ xs: "0.375rem",
140
+ sm: "0.75rem",
141
+ md: "1.5rem",
142
+ lg: "2.25rem",
143
+ xl: "3rem",
144
+ xxl: "3.75rem",
145
+ xxxl: "4.5rem",
146
+ xxxxl: "5.25rem",
147
+ xxxxxl: "6rem",
148
+ 0: "0",
149
+ 1: ".0625rem",
150
+ 2: ".125rem",
151
+ 4: ".25rem",
152
+ 6: ".375rem",
153
+ 8: ".5rem",
154
+ 12: ".75rem",
155
+ 16: "1rem",
156
+ 24: "1.5rem",
157
+ 32: "2rem",
158
+ 40: "2.5rem",
159
+ 48: "3rem",
160
+ 56: "3.5rem",
161
+ 64: "4rem",
162
+ 72: "4.5rem",
163
+ 80: "5rem",
164
+ 96: "6rem",
165
+ 112: "7rem",
166
+ 128: "8rem",
167
+ 160: "10rem",
168
+ 200: "12.5rem",
169
+ 240: "15rem",
170
+ 280: "17.5rem",
171
+ 320: "20rem"
172
+ },
173
+ typography: {
174
+ dataLarge: {
175
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
176
+ fontWeight: 700,
177
+ fontSize: "5.25rem",
178
+ lineHeight: "5.25rem",
179
+ letterSpacing: "normal"
180
+ },
181
+ dataLargeUnits: {
182
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
183
+ fontWeight: 700,
184
+ fontSize: "2.625rem",
185
+ lineHeight: "5.25rem",
186
+ letterSpacing: "normal"
187
+ },
188
+ dataMedium: {
189
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
190
+ fontWeight: 700,
191
+ fontSize: "3rem",
192
+ lineHeight: "5rem",
193
+ letterSpacing: "normal"
194
+ },
195
+ dataMediumUnits: {
196
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
197
+ fontWeight: 700,
198
+ fontSize: "1.5rem",
199
+ lineHeight: "5rem",
200
+ letterSpacing: "normal"
201
+ },
202
+ dataSmall: {
203
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
204
+ fontWeight: 700,
205
+ fontSize: "1.5rem",
206
+ lineHeight: "1.5rem",
207
+ letterSpacing: "normal"
208
+ },
209
+ dataSmallUnits: {
210
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
211
+ fontWeight: 700,
212
+ fontSize: "1.125rem",
213
+ lineHeight: "1.5rem",
214
+ letterSpacing: "normal"
215
+ },
216
+ display0: {
217
+ fontFamily: '"Tiempos Headline", Georgia, serif',
218
+ fontWeight: 800,
219
+ fontSize: "4.5rem",
220
+ lineHeight: "5.25rem",
221
+ letterSpacing: "0em"
222
+ },
223
+ heading1: {
224
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
225
+ fontWeight: 700,
226
+ fontSize: "2.125rem",
227
+ lineHeight: "2.625rem",
228
+ letterSpacing: "normal"
229
+ },
230
+ heading2: {
231
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
232
+ fontWeight: 700,
233
+ fontSize: "1.75rem",
234
+ lineHeight: "2.25rem",
235
+ letterSpacing: "normal"
236
+ },
237
+ heading3: {
238
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
239
+ fontWeight: 700,
240
+ fontSize: "1.375rem",
241
+ lineHeight: "1.875rem",
242
+ letterSpacing: "normal"
243
+ },
244
+ heading4: {
245
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
246
+ fontWeight: 600,
247
+ fontSize: "1.125rem",
248
+ lineHeight: "1.5rem",
249
+ letterSpacing: "normal"
250
+ },
251
+ heading5: {
252
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
253
+ fontWeight: 600,
254
+ fontSize: "1rem",
255
+ lineHeight: "1.5rem",
256
+ letterSpacing: "normal"
257
+ },
258
+ heading6: {
259
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
260
+ fontWeight: 700,
261
+ fontSize: "0.875rem",
262
+ lineHeight: "1.5rem",
263
+ letterSpacing: "normal"
264
+ },
265
+ paragraphIntroLede: {
266
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
267
+ fontWeight: 400,
268
+ fontSize: "1.25rem",
269
+ lineHeight: "1.875rem",
270
+ letterSpacing: "0"
271
+ },
272
+ paragraphBody: {
273
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
274
+ fontWeight: 400,
275
+ fontSize: "1rem",
276
+ lineHeight: "1.5rem",
277
+ letterSpacing: "normal"
278
+ },
279
+ paragraphSmall: {
280
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
281
+ fontWeight: 400,
282
+ fontSize: "0.875rem",
283
+ lineHeight: "1.125rem",
284
+ letterSpacing: "normal"
285
+ },
286
+ paragraphExtraSmall: {
287
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
288
+ fontWeight: 400,
289
+ fontSize: "0.75rem",
290
+ lineHeight: "1.125rem",
291
+ letterSpacing: "normal"
292
+ },
293
+ paragraphBold: {
294
+ fontWeight: 600
295
+ },
296
+ buttonPrimary: {
297
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
298
+ fontWeight: 700,
299
+ fontSize: "1.125rem",
300
+ lineHeight: "1.5rem",
301
+ letterSpacing: "normal"
302
+ },
303
+ buttonSecondary: {
304
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
305
+ fontWeight: 500,
306
+ fontSize: "1rem",
307
+ lineHeight: "1.5rem",
308
+ letterSpacing: "normal"
309
+ }
310
+ }
311
+ };
312
+ var heart_default = heartTheme;
313
+ })();
@@ -0,0 +1,315 @@
1
+ "use strict";
2
+ (() => {
3
+ // src/KaizenProvider/ThemeProvider/themes/heart.ts
4
+ var heartTheme = {
5
+ themeKey: "heart",
6
+ animation: {
7
+ easingFunction: {
8
+ easeInOut: "cubic-bezier(0.455, 0.03, 0.515, 0.955)",
9
+ easeIn: "cubic-bezier(0.55, 0.085, 0.68, 0.53)",
10
+ easeOut: "cubic-bezier(0.25, 0.46, 0.45, 0.94)",
11
+ linear: "linear",
12
+ bounceIn: "cubic-bezier(0.485, 0.155, 0.24, 1.245)",
13
+ bounceOut: "cubic-bezier(0.485, 0.155, 0.515, 0.845)",
14
+ bounceInOut: "cubic-bezier(0.76, -0.245, 0.24, 1.245)"
15
+ },
16
+ duration: {
17
+ instant: "0ms",
18
+ immediate: "100ms",
19
+ rapid: "200ms",
20
+ fast: "300ms",
21
+ slow: "400ms",
22
+ deliberate: "700ms"
23
+ }
24
+ },
25
+ border: {
26
+ solid: {
27
+ borderWidth: "2px",
28
+ borderRadius: "7px",
29
+ borderStyle: "solid",
30
+ borderColor: "#e1e2ea"
31
+ },
32
+ dashed: {
33
+ borderWidth: "2px",
34
+ borderRadius: "7px",
35
+ borderStyle: "dashed"
36
+ },
37
+ borderless: {
38
+ borderWidth: "2px",
39
+ borderRadius: "7px",
40
+ borderStyle: "solid",
41
+ borderColor: "transparent"
42
+ },
43
+ focusRing: {
44
+ borderWidth: "2px",
45
+ borderRadius: "10px",
46
+ borderStyle: "solid"
47
+ }
48
+ },
49
+ color: {
50
+ purple: {
51
+ 100: "#f4edf8",
52
+ 200: "#dfc9ea",
53
+ 300: "#c9a5dd",
54
+ 400: "#ae67b1",
55
+ 500: "#844587",
56
+ 600: "#5f3361",
57
+ 700: "#4a234d",
58
+ 800: "#2f2438"
59
+ },
60
+ blue: {
61
+ 100: "#e6f6ff",
62
+ 200: "#bde2f5",
63
+ 300: "#73c0e8",
64
+ 400: "#008bd6",
65
+ 500: "#0168b3",
66
+ 600: "#004970",
67
+ 700: "#003157"
68
+ },
69
+ green: {
70
+ 100: "#e8f8f4",
71
+ 200: "#c4ede2",
72
+ 300: "#8fdbc7",
73
+ 400: "#5dcbad",
74
+ 500: "#44a289",
75
+ 600: "#2c7d67",
76
+ 700: "#22594a"
77
+ },
78
+ yellow: {
79
+ 100: "#fff9e4",
80
+ 200: "#ffeeb3",
81
+ 300: "#ffe36e",
82
+ 400: "#ffca4d",
83
+ 500: "#ffb600",
84
+ 600: "#c68600",
85
+ 700: "#876400"
86
+ },
87
+ red: {
88
+ 100: "#fdeaee",
89
+ 200: "#f9c2cb",
90
+ 300: "#f597a8",
91
+ 400: "#e0707d",
92
+ 500: "#c93b55",
93
+ 600: "#a82433",
94
+ 700: "#6c1e20"
95
+ },
96
+ orange: {
97
+ 100: "#fff0e8",
98
+ 200: "#ffd1b9",
99
+ 300: "#ffb08a",
100
+ 400: "#ff9461",
101
+ 500: "#e96c2f",
102
+ 600: "#b74302",
103
+ 700: "#903c00"
104
+ },
105
+ gray: {
106
+ 100: "#f9f9f9",
107
+ 200: "#f4f4f5",
108
+ 300: "#eaeaec",
109
+ 400: "#cdcdd0",
110
+ 500: "#8c8c97",
111
+ 600: "#524e56"
112
+ },
113
+ white: "#ffffff"
114
+ },
115
+ dataViz: {
116
+ favorable: "#7dd5bd",
117
+ unfavorable: "#e68d97"
118
+ },
119
+ layout: {
120
+ contentMaxWidth: "1392px",
121
+ contentMaxWidthWithSidebar: "1080px",
122
+ contentSideMargin: "72px",
123
+ mobileActionsDrawerHeight: "60px",
124
+ navigationBarHeight: "72px",
125
+ breakpoints: {
126
+ medium: "768px",
127
+ large: "1080px"
128
+ }
129
+ },
130
+ shadow: {
131
+ small: {
132
+ boxShadow: "0px 3px 16px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1)"
133
+ },
134
+ large: {
135
+ boxShadow: "0px 8px 40px rgba(0, 0, 0, 0.08), 0px 3px 9px rgba(0, 0, 0, 0.1)"
136
+ }
137
+ },
138
+ spacing: {
139
+ xs: "0.375rem",
140
+ sm: "0.75rem",
141
+ md: "1.5rem",
142
+ lg: "2.25rem",
143
+ xl: "3rem",
144
+ xxl: "3.75rem",
145
+ xxxl: "4.5rem",
146
+ xxxxl: "5.25rem",
147
+ xxxxxl: "6rem",
148
+ 0: "0",
149
+ 1: ".0625rem",
150
+ 2: ".125rem",
151
+ 4: ".25rem",
152
+ 6: ".375rem",
153
+ 8: ".5rem",
154
+ 12: ".75rem",
155
+ 16: "1rem",
156
+ 24: "1.5rem",
157
+ 32: "2rem",
158
+ 40: "2.5rem",
159
+ 48: "3rem",
160
+ 56: "3.5rem",
161
+ 64: "4rem",
162
+ 72: "4.5rem",
163
+ 80: "5rem",
164
+ 96: "6rem",
165
+ 112: "7rem",
166
+ 128: "8rem",
167
+ 160: "10rem",
168
+ 200: "12.5rem",
169
+ 240: "15rem",
170
+ 280: "17.5rem",
171
+ 320: "20rem"
172
+ },
173
+ typography: {
174
+ dataLarge: {
175
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
176
+ fontWeight: 700,
177
+ fontSize: "5.25rem",
178
+ lineHeight: "5.25rem",
179
+ letterSpacing: "normal"
180
+ },
181
+ dataLargeUnits: {
182
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
183
+ fontWeight: 700,
184
+ fontSize: "2.625rem",
185
+ lineHeight: "5.25rem",
186
+ letterSpacing: "normal"
187
+ },
188
+ dataMedium: {
189
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
190
+ fontWeight: 700,
191
+ fontSize: "3rem",
192
+ lineHeight: "5rem",
193
+ letterSpacing: "normal"
194
+ },
195
+ dataMediumUnits: {
196
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
197
+ fontWeight: 700,
198
+ fontSize: "1.5rem",
199
+ lineHeight: "5rem",
200
+ letterSpacing: "normal"
201
+ },
202
+ dataSmall: {
203
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
204
+ fontWeight: 700,
205
+ fontSize: "1.5rem",
206
+ lineHeight: "1.5rem",
207
+ letterSpacing: "normal"
208
+ },
209
+ dataSmallUnits: {
210
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
211
+ fontWeight: 700,
212
+ fontSize: "1.125rem",
213
+ lineHeight: "1.5rem",
214
+ letterSpacing: "normal"
215
+ },
216
+ display0: {
217
+ fontFamily: '"Tiempos Headline", Georgia, serif',
218
+ fontWeight: 800,
219
+ fontSize: "4.5rem",
220
+ lineHeight: "5.25rem",
221
+ letterSpacing: "0em"
222
+ },
223
+ heading1: {
224
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
225
+ fontWeight: 700,
226
+ fontSize: "2.125rem",
227
+ lineHeight: "2.625rem",
228
+ letterSpacing: "normal"
229
+ },
230
+ heading2: {
231
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
232
+ fontWeight: 700,
233
+ fontSize: "1.75rem",
234
+ lineHeight: "2.25rem",
235
+ letterSpacing: "normal"
236
+ },
237
+ heading3: {
238
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
239
+ fontWeight: 700,
240
+ fontSize: "1.375rem",
241
+ lineHeight: "1.875rem",
242
+ letterSpacing: "normal"
243
+ },
244
+ heading4: {
245
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
246
+ fontWeight: 600,
247
+ fontSize: "1.125rem",
248
+ lineHeight: "1.5rem",
249
+ letterSpacing: "normal"
250
+ },
251
+ heading5: {
252
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
253
+ fontWeight: 600,
254
+ fontSize: "1rem",
255
+ lineHeight: "1.5rem",
256
+ letterSpacing: "normal"
257
+ },
258
+ heading6: {
259
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
260
+ fontWeight: 700,
261
+ fontSize: "0.875rem",
262
+ lineHeight: "1.5rem",
263
+ letterSpacing: "normal"
264
+ },
265
+ paragraphIntroLede: {
266
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
267
+ fontWeight: 400,
268
+ fontSize: "1.25rem",
269
+ lineHeight: "1.875rem",
270
+ letterSpacing: "0"
271
+ },
272
+ paragraphBody: {
273
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
274
+ fontWeight: 400,
275
+ fontSize: "1rem",
276
+ lineHeight: "1.5rem",
277
+ letterSpacing: "normal"
278
+ },
279
+ paragraphSmall: {
280
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
281
+ fontWeight: 400,
282
+ fontSize: "0.875rem",
283
+ lineHeight: "1.125rem",
284
+ letterSpacing: "normal"
285
+ },
286
+ paragraphExtraSmall: {
287
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
288
+ fontWeight: 400,
289
+ fontSize: "0.75rem",
290
+ lineHeight: "1.125rem",
291
+ letterSpacing: "normal"
292
+ },
293
+ paragraphBold: {
294
+ fontWeight: 600
295
+ },
296
+ buttonPrimary: {
297
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
298
+ fontWeight: 700,
299
+ fontSize: "1.125rem",
300
+ lineHeight: "1.5rem",
301
+ letterSpacing: "normal"
302
+ },
303
+ buttonSecondary: {
304
+ fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
305
+ fontWeight: 500,
306
+ fontSize: "1rem",
307
+ lineHeight: "1.5rem",
308
+ letterSpacing: "normal"
309
+ }
310
+ }
311
+ };
312
+
313
+ // src/KaizenProvider/ThemeProvider/themes/index.ts
314
+ var defaultTheme = heartTheme;
315
+ })();
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ (() => {
3
+ })();