@blateral/b.kit 2.0.0-beta.1 → 2.0.0-beta.2
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/lib/components/base/icons/AngleRight.d.ts.map +1 -1
- package/lib/components/base/icons/ExclamationMark.d.ts.map +1 -1
- package/lib/components/blocks/Alert.d.ts +19 -3
- package/lib/components/blocks/Alert.d.ts.map +1 -1
- package/lib/components/blocks/NavBlock.d.ts +24 -0
- package/lib/components/blocks/NavBlock.d.ts.map +1 -0
- package/lib/components/sections/AlertList.d.ts +385 -4
- package/lib/components/sections/AlertList.d.ts.map +1 -1
- package/lib/components/sections/NavList.d.ts +390 -0
- package/lib/components/sections/NavList.d.ts.map +1 -0
- package/lib/components/sections/news/NewsList.d.ts +34 -7
- package/lib/components/sections/news/NewsList.d.ts.map +1 -1
- package/lib/components/sections/news/NewsOverview.d.ts +5 -4
- package/lib/components/sections/news/NewsOverview.d.ts.map +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +2 -2
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { NavBlockProps } from "../blocks/NavBlock";
|
|
3
|
+
export declare type NavItem = Omit<NavBlockProps, 'isInverted' | 'customIcon' | 'customTitleIcon' | 'className'>;
|
|
4
|
+
export declare const NavListComponent: React.FC<{
|
|
5
|
+
/** Array of navigation item settings */
|
|
6
|
+
items?: NavItem[] | undefined;
|
|
7
|
+
/** Section backgrounds */
|
|
8
|
+
bgMode?: "full" | "inverted" | undefined;
|
|
9
|
+
/** Function to inject custom alert icon */
|
|
10
|
+
customIcon?: ((props: {
|
|
11
|
+
isInverted?: boolean;
|
|
12
|
+
}) => React.ReactNode) | undefined;
|
|
13
|
+
/** Function to inject custom title decorator icon */
|
|
14
|
+
customTitleIcon?: ((props: {
|
|
15
|
+
isInverted?: boolean;
|
|
16
|
+
}) => React.ReactNode) | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
declare const _default: React.FC<{
|
|
19
|
+
/** Array of navigation item settings */
|
|
20
|
+
items?: NavItem[] | undefined;
|
|
21
|
+
/** Section backgrounds */
|
|
22
|
+
bgMode?: "full" | "inverted" | undefined;
|
|
23
|
+
/** Function to inject custom alert icon */
|
|
24
|
+
customIcon?: ((props: {
|
|
25
|
+
isInverted?: boolean | undefined;
|
|
26
|
+
}) => React.ReactNode) | undefined;
|
|
27
|
+
/** Function to inject custom title decorator icon */
|
|
28
|
+
customTitleIcon?: ((props: {
|
|
29
|
+
isInverted?: boolean | undefined;
|
|
30
|
+
}) => React.ReactNode) | undefined;
|
|
31
|
+
} & {
|
|
32
|
+
theme?: {
|
|
33
|
+
colors?: {
|
|
34
|
+
dark?: string | undefined;
|
|
35
|
+
light?: string | undefined;
|
|
36
|
+
mono?: {
|
|
37
|
+
light?: string | undefined;
|
|
38
|
+
medium?: string | undefined;
|
|
39
|
+
dark?: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
primary?: {
|
|
42
|
+
light?: string | undefined;
|
|
43
|
+
medium?: string | undefined;
|
|
44
|
+
dark?: string | undefined;
|
|
45
|
+
} | undefined;
|
|
46
|
+
secondary?: {
|
|
47
|
+
light?: string | undefined;
|
|
48
|
+
medium?: string | undefined;
|
|
49
|
+
dark?: string | undefined;
|
|
50
|
+
} | undefined;
|
|
51
|
+
error?: string | undefined;
|
|
52
|
+
new?: {
|
|
53
|
+
text?: {
|
|
54
|
+
default?: string | undefined;
|
|
55
|
+
inverted?: string | undefined;
|
|
56
|
+
error?: string | undefined;
|
|
57
|
+
heading?: string | undefined;
|
|
58
|
+
headingInverted?: string | undefined;
|
|
59
|
+
copy?: string | undefined;
|
|
60
|
+
copyInverted?: string | undefined;
|
|
61
|
+
} | undefined;
|
|
62
|
+
sectionBg?: {
|
|
63
|
+
light?: string | undefined;
|
|
64
|
+
medium?: string | undefined;
|
|
65
|
+
dark?: string | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
elementBg?: {
|
|
68
|
+
light?: string | undefined;
|
|
69
|
+
lightHover?: string | undefined;
|
|
70
|
+
medium?: string | undefined;
|
|
71
|
+
mediumHover?: string | undefined;
|
|
72
|
+
dark?: string | undefined;
|
|
73
|
+
darkHover?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
75
|
+
primary?: {
|
|
76
|
+
default?: string | undefined;
|
|
77
|
+
inverted?: string | undefined;
|
|
78
|
+
hover?: string | undefined;
|
|
79
|
+
invertedHover?: string | undefined;
|
|
80
|
+
} | undefined;
|
|
81
|
+
secondary?: {
|
|
82
|
+
default?: string | undefined;
|
|
83
|
+
inverted?: string | undefined;
|
|
84
|
+
hover?: string | undefined;
|
|
85
|
+
invertedHover?: string | undefined;
|
|
86
|
+
} | undefined;
|
|
87
|
+
error?: string | undefined;
|
|
88
|
+
} | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
fonts?: {
|
|
91
|
+
base?: {
|
|
92
|
+
family?: string | undefined;
|
|
93
|
+
weight?: string | undefined;
|
|
94
|
+
style?: string | undefined;
|
|
95
|
+
lineHeight?: string | undefined;
|
|
96
|
+
letterSpacing?: string | undefined;
|
|
97
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
98
|
+
textTransform?: string | undefined;
|
|
99
|
+
color?: string | undefined;
|
|
100
|
+
colorInverted?: string | undefined;
|
|
101
|
+
colorGradient?: string | undefined;
|
|
102
|
+
colorGradientInverted?: string | undefined;
|
|
103
|
+
} | undefined;
|
|
104
|
+
types?: {
|
|
105
|
+
copy?: {
|
|
106
|
+
small?: {
|
|
107
|
+
family?: string | undefined;
|
|
108
|
+
weight?: string | undefined;
|
|
109
|
+
style?: string | undefined;
|
|
110
|
+
lineHeight?: string | undefined;
|
|
111
|
+
letterSpacing?: string | undefined;
|
|
112
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
113
|
+
textTransform?: string | undefined;
|
|
114
|
+
color?: string | undefined;
|
|
115
|
+
colorInverted?: string | undefined;
|
|
116
|
+
colorGradient?: string | undefined;
|
|
117
|
+
colorGradientInverted?: string | undefined;
|
|
118
|
+
} | undefined;
|
|
119
|
+
medium?: {
|
|
120
|
+
family?: string | undefined;
|
|
121
|
+
weight?: string | undefined;
|
|
122
|
+
style?: string | undefined;
|
|
123
|
+
lineHeight?: string | undefined;
|
|
124
|
+
letterSpacing?: string | undefined;
|
|
125
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
126
|
+
textTransform?: string | undefined;
|
|
127
|
+
color?: string | undefined;
|
|
128
|
+
colorInverted?: string | undefined;
|
|
129
|
+
colorGradient?: string | undefined;
|
|
130
|
+
colorGradientInverted?: string | undefined;
|
|
131
|
+
} | undefined;
|
|
132
|
+
big?: {
|
|
133
|
+
family?: string | undefined;
|
|
134
|
+
weight?: string | undefined;
|
|
135
|
+
style?: string | undefined;
|
|
136
|
+
lineHeight?: string | undefined;
|
|
137
|
+
letterSpacing?: string | undefined;
|
|
138
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
139
|
+
textTransform?: string | undefined;
|
|
140
|
+
color?: string | undefined;
|
|
141
|
+
colorInverted?: string | undefined;
|
|
142
|
+
colorGradient?: string | undefined;
|
|
143
|
+
colorGradientInverted?: string | undefined;
|
|
144
|
+
} | undefined;
|
|
145
|
+
} | undefined;
|
|
146
|
+
'copy-i'?: {
|
|
147
|
+
small?: {
|
|
148
|
+
family?: string | undefined;
|
|
149
|
+
weight?: string | undefined;
|
|
150
|
+
style?: string | undefined;
|
|
151
|
+
lineHeight?: string | undefined;
|
|
152
|
+
letterSpacing?: string | undefined;
|
|
153
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
154
|
+
textTransform?: string | undefined;
|
|
155
|
+
color?: string | undefined;
|
|
156
|
+
colorInverted?: string | undefined;
|
|
157
|
+
colorGradient?: string | undefined;
|
|
158
|
+
colorGradientInverted?: string | undefined;
|
|
159
|
+
} | undefined;
|
|
160
|
+
medium?: {
|
|
161
|
+
family?: string | undefined;
|
|
162
|
+
weight?: string | undefined;
|
|
163
|
+
style?: string | undefined;
|
|
164
|
+
lineHeight?: string | undefined;
|
|
165
|
+
letterSpacing?: string | undefined;
|
|
166
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
167
|
+
textTransform?: string | undefined;
|
|
168
|
+
color?: string | undefined;
|
|
169
|
+
colorInverted?: string | undefined;
|
|
170
|
+
colorGradient?: string | undefined;
|
|
171
|
+
colorGradientInverted?: string | undefined;
|
|
172
|
+
} | undefined;
|
|
173
|
+
big?: {
|
|
174
|
+
family?: string | undefined;
|
|
175
|
+
weight?: string | undefined;
|
|
176
|
+
style?: string | undefined;
|
|
177
|
+
lineHeight?: string | undefined;
|
|
178
|
+
letterSpacing?: string | undefined;
|
|
179
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
180
|
+
textTransform?: string | undefined;
|
|
181
|
+
color?: string | undefined;
|
|
182
|
+
colorInverted?: string | undefined;
|
|
183
|
+
colorGradient?: string | undefined;
|
|
184
|
+
colorGradientInverted?: string | undefined;
|
|
185
|
+
} | undefined;
|
|
186
|
+
} | undefined;
|
|
187
|
+
'copy-b'?: {
|
|
188
|
+
small?: {
|
|
189
|
+
family?: string | undefined;
|
|
190
|
+
weight?: string | undefined;
|
|
191
|
+
style?: string | undefined;
|
|
192
|
+
lineHeight?: string | undefined;
|
|
193
|
+
letterSpacing?: string | undefined;
|
|
194
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
195
|
+
textTransform?: string | undefined;
|
|
196
|
+
color?: string | undefined;
|
|
197
|
+
colorInverted?: string | undefined;
|
|
198
|
+
colorGradient?: string | undefined;
|
|
199
|
+
colorGradientInverted?: string | undefined;
|
|
200
|
+
} | undefined;
|
|
201
|
+
medium?: {
|
|
202
|
+
family?: string | undefined;
|
|
203
|
+
weight?: string | undefined;
|
|
204
|
+
style?: string | undefined;
|
|
205
|
+
lineHeight?: string | undefined;
|
|
206
|
+
letterSpacing?: string | undefined;
|
|
207
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
208
|
+
textTransform?: string | undefined;
|
|
209
|
+
color?: string | undefined;
|
|
210
|
+
colorInverted?: string | undefined;
|
|
211
|
+
colorGradient?: string | undefined;
|
|
212
|
+
colorGradientInverted?: string | undefined;
|
|
213
|
+
} | undefined;
|
|
214
|
+
big?: {
|
|
215
|
+
family?: string | undefined;
|
|
216
|
+
weight?: string | undefined;
|
|
217
|
+
style?: string | undefined;
|
|
218
|
+
lineHeight?: string | undefined;
|
|
219
|
+
letterSpacing?: string | undefined;
|
|
220
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
221
|
+
textTransform?: string | undefined;
|
|
222
|
+
color?: string | undefined;
|
|
223
|
+
colorInverted?: string | undefined;
|
|
224
|
+
colorGradient?: string | undefined;
|
|
225
|
+
colorGradientInverted?: string | undefined;
|
|
226
|
+
} | undefined;
|
|
227
|
+
} | undefined;
|
|
228
|
+
super?: {
|
|
229
|
+
family?: string | undefined;
|
|
230
|
+
weight?: string | undefined;
|
|
231
|
+
style?: string | undefined;
|
|
232
|
+
lineHeight?: string | undefined;
|
|
233
|
+
letterSpacing?: string | undefined;
|
|
234
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
235
|
+
textTransform?: string | undefined;
|
|
236
|
+
color?: string | undefined;
|
|
237
|
+
colorInverted?: string | undefined;
|
|
238
|
+
colorGradient?: string | undefined;
|
|
239
|
+
colorGradientInverted?: string | undefined;
|
|
240
|
+
} | undefined;
|
|
241
|
+
'heading-1'?: {
|
|
242
|
+
family?: string | undefined;
|
|
243
|
+
weight?: string | undefined;
|
|
244
|
+
style?: string | undefined;
|
|
245
|
+
lineHeight?: string | undefined;
|
|
246
|
+
letterSpacing?: string | undefined;
|
|
247
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
248
|
+
textTransform?: string | undefined;
|
|
249
|
+
color?: string | undefined;
|
|
250
|
+
colorInverted?: string | undefined;
|
|
251
|
+
colorGradient?: string | undefined;
|
|
252
|
+
colorGradientInverted?: string | undefined;
|
|
253
|
+
} | undefined;
|
|
254
|
+
'heading-2'?: {
|
|
255
|
+
family?: string | undefined;
|
|
256
|
+
weight?: string | undefined;
|
|
257
|
+
style?: string | undefined;
|
|
258
|
+
lineHeight?: string | undefined;
|
|
259
|
+
letterSpacing?: string | undefined;
|
|
260
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
261
|
+
textTransform?: string | undefined;
|
|
262
|
+
color?: string | undefined;
|
|
263
|
+
colorInverted?: string | undefined;
|
|
264
|
+
colorGradient?: string | undefined;
|
|
265
|
+
colorGradientInverted?: string | undefined;
|
|
266
|
+
} | undefined;
|
|
267
|
+
'heading-3'?: {
|
|
268
|
+
family?: string | undefined;
|
|
269
|
+
weight?: string | undefined;
|
|
270
|
+
style?: string | undefined;
|
|
271
|
+
lineHeight?: string | undefined;
|
|
272
|
+
letterSpacing?: string | undefined;
|
|
273
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
274
|
+
textTransform?: string | undefined;
|
|
275
|
+
color?: string | undefined;
|
|
276
|
+
colorInverted?: string | undefined;
|
|
277
|
+
colorGradient?: string | undefined;
|
|
278
|
+
colorGradientInverted?: string | undefined;
|
|
279
|
+
} | undefined;
|
|
280
|
+
'heading-4'?: {
|
|
281
|
+
family?: string | undefined;
|
|
282
|
+
weight?: string | undefined;
|
|
283
|
+
style?: string | undefined;
|
|
284
|
+
lineHeight?: string | undefined;
|
|
285
|
+
letterSpacing?: string | undefined;
|
|
286
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
287
|
+
textTransform?: string | undefined;
|
|
288
|
+
color?: string | undefined;
|
|
289
|
+
colorInverted?: string | undefined;
|
|
290
|
+
colorGradient?: string | undefined;
|
|
291
|
+
colorGradientInverted?: string | undefined;
|
|
292
|
+
} | undefined;
|
|
293
|
+
callout?: {
|
|
294
|
+
small?: {
|
|
295
|
+
family?: string | undefined;
|
|
296
|
+
weight?: string | undefined;
|
|
297
|
+
style?: string | undefined;
|
|
298
|
+
lineHeight?: string | undefined;
|
|
299
|
+
letterSpacing?: string | undefined;
|
|
300
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
301
|
+
textTransform?: string | undefined;
|
|
302
|
+
color?: string | undefined;
|
|
303
|
+
colorInverted?: string | undefined;
|
|
304
|
+
colorGradient?: string | undefined;
|
|
305
|
+
colorGradientInverted?: string | undefined;
|
|
306
|
+
} | undefined;
|
|
307
|
+
medium?: {
|
|
308
|
+
family?: string | undefined;
|
|
309
|
+
weight?: string | undefined;
|
|
310
|
+
style?: string | undefined;
|
|
311
|
+
lineHeight?: string | undefined;
|
|
312
|
+
letterSpacing?: string | undefined;
|
|
313
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
314
|
+
textTransform?: string | undefined;
|
|
315
|
+
color?: string | undefined;
|
|
316
|
+
colorInverted?: string | undefined;
|
|
317
|
+
colorGradient?: string | undefined;
|
|
318
|
+
colorGradientInverted?: string | undefined;
|
|
319
|
+
} | undefined;
|
|
320
|
+
big?: {
|
|
321
|
+
family?: string | undefined;
|
|
322
|
+
weight?: string | undefined;
|
|
323
|
+
style?: string | undefined;
|
|
324
|
+
lineHeight?: string | undefined;
|
|
325
|
+
letterSpacing?: string | undefined;
|
|
326
|
+
size?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
327
|
+
textTransform?: string | undefined;
|
|
328
|
+
color?: string | undefined;
|
|
329
|
+
colorInverted?: string | undefined;
|
|
330
|
+
colorGradient?: string | undefined;
|
|
331
|
+
colorGradientInverted?: string | undefined;
|
|
332
|
+
} | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
} | undefined;
|
|
335
|
+
} | undefined;
|
|
336
|
+
globals?: {
|
|
337
|
+
sections?: {
|
|
338
|
+
seperation?: {
|
|
339
|
+
forcePadding?: boolean | undefined;
|
|
340
|
+
padding?: {
|
|
341
|
+
default?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
342
|
+
stackable?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
343
|
+
} | undefined;
|
|
344
|
+
margin?: {
|
|
345
|
+
default?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
346
|
+
stackable?: [(number | undefined)?, (number | undefined)?] | undefined;
|
|
347
|
+
} | undefined;
|
|
348
|
+
} | undefined;
|
|
349
|
+
edgeRadius?: (string | null) | undefined;
|
|
350
|
+
imageTextGradient?: string | undefined;
|
|
351
|
+
imagePlaceholderBg?: {
|
|
352
|
+
default?: string | undefined;
|
|
353
|
+
inverted?: string | undefined;
|
|
354
|
+
} | undefined;
|
|
355
|
+
newsDateFormat?: string | undefined;
|
|
356
|
+
newsTimeFormat?: string | undefined;
|
|
357
|
+
newsLocaleKey?: ("de" | "en") | undefined;
|
|
358
|
+
datepickerLocaleKey?: ("de" | "en") | undefined;
|
|
359
|
+
datepickerDateFormat?: string | undefined;
|
|
360
|
+
} | undefined;
|
|
361
|
+
navigation?: {
|
|
362
|
+
navBar?: {
|
|
363
|
+
isTopNavVisible?: boolean | undefined;
|
|
364
|
+
topNavHeight?: {
|
|
365
|
+
mobile?: {
|
|
366
|
+
small?: number | undefined;
|
|
367
|
+
large?: number | undefined;
|
|
368
|
+
} | undefined;
|
|
369
|
+
desktop?: {
|
|
370
|
+
small?: number | undefined;
|
|
371
|
+
large?: number | undefined;
|
|
372
|
+
} | undefined;
|
|
373
|
+
} | undefined;
|
|
374
|
+
height?: {
|
|
375
|
+
mobile?: {
|
|
376
|
+
small?: number | undefined;
|
|
377
|
+
large?: number | undefined;
|
|
378
|
+
} | undefined;
|
|
379
|
+
desktop?: {
|
|
380
|
+
small?: number | undefined;
|
|
381
|
+
large?: number | undefined;
|
|
382
|
+
} | undefined;
|
|
383
|
+
} | undefined;
|
|
384
|
+
} | undefined;
|
|
385
|
+
} | undefined;
|
|
386
|
+
} | undefined;
|
|
387
|
+
} | undefined;
|
|
388
|
+
}>;
|
|
389
|
+
export default _default;
|
|
390
|
+
//# sourceMappingURL=NavList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavList.d.ts","sourceRoot":"","sources":["../../../src/components/sections/NavList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAiB,EAAE,aAAa,EAAE,2BAAmC;AAsCrE,oBAAY,OAAO,GAAG,IAAI,CACtB,aAAa,EACb,YAAY,GAAG,YAAY,GAAG,iBAAiB,GAAG,WAAW,CAChE,CAAC;AAkDF,eAAO,MAAM,gBAAgB;IA/CzB,wCAAwC;;IAGxC,0BAA0B;;IAG1B,2CAA2C;0BACtB;QAAE,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,MAAM,SAAS;IAEjE,qDAAqD;+BAC3B;QAAE,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,MAAM,SAAS;EAqCnC,CAAC;;IA/CpC,wCAAwC;;IAGxC,0BAA0B;;IAG1B,2CAA2C;;;;IAG3C,qDAAqD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCzD,wBAAqC"}
|
|
@@ -1,16 +1,43 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { NewsCardProps } from "../../blocks/NewsCard";
|
|
3
|
+
export declare type NewsItem = Omit<NewsCardProps, 'isInverted' | 'onTagClick' | 'customTag'>;
|
|
3
4
|
export declare const NewsListComponent: React.FC<{
|
|
4
|
-
news
|
|
5
|
-
|
|
5
|
+
/** Show a short version of three or a expanded version of six news items */
|
|
6
|
+
mode?: "short" | "expanded" | undefined;
|
|
7
|
+
/** Array of news card settings */
|
|
8
|
+
news?: NewsItem[] | undefined;
|
|
9
|
+
/** Sections background */
|
|
6
10
|
bgMode?: "full" | "inverted" | undefined;
|
|
7
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Callback function to handle tag click outside of component
|
|
13
|
+
* */
|
|
14
|
+
onTagClick?: ((tag: string) => void) | undefined;
|
|
15
|
+
/** Function to inject custom tag node */
|
|
16
|
+
customTag?: ((props: {
|
|
17
|
+
name: string;
|
|
18
|
+
isInverted?: boolean | undefined;
|
|
19
|
+
isActive?: boolean | undefined;
|
|
20
|
+
clickHandler?: ((ev?: React.SyntheticEvent<HTMLButtonElement, Event> | undefined) => void) | undefined;
|
|
21
|
+
}) => React.ReactNode) | undefined;
|
|
8
22
|
}>;
|
|
9
23
|
declare const _default: React.FC<{
|
|
10
|
-
news
|
|
11
|
-
|
|
24
|
+
/** Show a short version of three or a expanded version of six news items */
|
|
25
|
+
mode?: "short" | "expanded" | undefined;
|
|
26
|
+
/** Array of news card settings */
|
|
27
|
+
news?: NewsItem[] | undefined;
|
|
28
|
+
/** Sections background */
|
|
12
29
|
bgMode?: "full" | "inverted" | undefined;
|
|
13
|
-
|
|
30
|
+
/**
|
|
31
|
+
* Callback function to handle tag click outside of component
|
|
32
|
+
* */
|
|
33
|
+
onTagClick?: ((tag: string) => void) | undefined;
|
|
34
|
+
/** Function to inject custom tag node */
|
|
35
|
+
customTag?: ((props: {
|
|
36
|
+
name: string;
|
|
37
|
+
isInverted?: boolean | undefined;
|
|
38
|
+
isActive?: boolean | undefined;
|
|
39
|
+
clickHandler?: ((ev?: React.SyntheticEvent<HTMLButtonElement, Event> | undefined) => void) | undefined;
|
|
40
|
+
}) => React.ReactNode) | undefined;
|
|
14
41
|
} & {
|
|
15
42
|
theme?: {
|
|
16
43
|
colors?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NewsList.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/news/NewsList.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"NewsList.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/news/NewsList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAMvC,OAAiB,EAAE,aAAa,EAAE,8BAAmC;AAoCrE,oBAAY,QAAQ,GAAG,IAAI,CACvB,aAAa,EACb,YAAY,GAAG,YAAY,GAAG,WAAW,CAC5C,CAAC;AAmFF,eAAO,MAAM,iBAAiB;IAhF1B,4EAA4E;;IAG5E,kCAAkC;;IAGlC,0BAA0B;;IAG1B;;SAEK;wBACc,MAAM,KAAK,IAAI;IAElC,yCAAyC;;cAE/B,MAAM;;;6FAGqD,IAAI;UACnE,MAAM,SAAS;EA4DgB,CAAC;;IAhFtC,4EAA4E;;IAG5E,kCAAkC;;IAGlC,0BAA0B;;IAG1B;;SAEK;;IAGL,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmE7C,wBAAsC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { NewsCardProps } from "../../blocks/NewsCard";
|
|
3
|
+
export declare type NewsItem = Omit<NewsCardProps, 'customTag' | 'isInverted' | 'onTagClick'>;
|
|
3
4
|
export declare const NewsOverviewComponent: React.FC<{
|
|
4
5
|
/** Array of news item settings */
|
|
5
|
-
news?:
|
|
6
|
+
news?: NewsItem[] | undefined;
|
|
6
7
|
/** Tags for news filtering */
|
|
7
8
|
tags?: string[] | undefined;
|
|
8
9
|
/** Initial active tags in filter */
|
|
@@ -12,7 +13,7 @@ export declare const NewsOverviewComponent: React.FC<{
|
|
|
12
13
|
/** Section background */
|
|
13
14
|
bgMode?: "full" | "inverted" | undefined;
|
|
14
15
|
/**
|
|
15
|
-
* Callback function to handle tag click outside of component
|
|
16
|
+
* Callback function to handle tag click outside of component
|
|
16
17
|
* If no callback is defined filtering is controlled on client
|
|
17
18
|
* */
|
|
18
19
|
onTagClick?: ((tag: string, insideList?: boolean | undefined) => void) | undefined;
|
|
@@ -26,7 +27,7 @@ export declare const NewsOverviewComponent: React.FC<{
|
|
|
26
27
|
}>;
|
|
27
28
|
declare const _default: React.FC<{
|
|
28
29
|
/** Array of news item settings */
|
|
29
|
-
news?:
|
|
30
|
+
news?: NewsItem[] | undefined;
|
|
30
31
|
/** Tags for news filtering */
|
|
31
32
|
tags?: string[] | undefined;
|
|
32
33
|
/** Initial active tags in filter */
|
|
@@ -36,7 +37,7 @@ declare const _default: React.FC<{
|
|
|
36
37
|
/** Section background */
|
|
37
38
|
bgMode?: "full" | "inverted" | undefined;
|
|
38
39
|
/**
|
|
39
|
-
* Callback function to handle tag click outside of component
|
|
40
|
+
* Callback function to handle tag click outside of component
|
|
40
41
|
* If no callback is defined filtering is controlled on client
|
|
41
42
|
* */
|
|
42
43
|
onTagClick?: ((tag: string, insideList?: boolean | undefined) => void) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NewsOverview.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/news/NewsOverview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAM3D,OAAiB,EAAE,aAAa,EAAE,8BAAmC;
|
|
1
|
+
{"version":3,"file":"NewsOverview.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/news/NewsOverview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAM3D,OAAiB,EAAE,aAAa,EAAE,8BAAmC;AA4ErE,oBAAY,QAAQ,GAAG,IAAI,CACvB,aAAa,EACb,WAAW,GAAG,YAAY,GAAG,YAAY,CAC5C,CAAC;AAiUF,eAAO,MAAM,qBAAqB;IA9T9B,kCAAkC;;IAGlC,8BAA8B;;IAG9B,oCAAoC;;IAGpC,+FAA+F;;IAG/F,yBAAyB;;IAGzB;;;SAGK;wBACc,MAAM,uCAA2B,IAAI;IAExD,yCAAyC;;cAE/B,MAAM;;;6FAGqD,IAAI;UACnE,MAAM,SAAS;EAmSwB,CAAC;;IA9T9C,kCAAkC;;IAGlC,8BAA8B;;IAG9B,oCAAoC;;IAGpC,+FAA+F;;IAG/F,yBAAyB;;IAGzB;;;SAGK;;IAGL,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0S7C,wBAA0C"}
|
package/lib/index.d.ts
CHANGED
|
@@ -77,7 +77,9 @@ export { default as ParallaxBackground } from "./components/sections/ParallaxBac
|
|
|
77
77
|
export { default as PriceList } from "./components/sections/PriceList";
|
|
78
78
|
export { default as SimpleImage } from "./components/sections/SimpleImage";
|
|
79
79
|
export { default as PriceTable } from "./components/sections/PriceTable";
|
|
80
|
-
export { default as Quote
|
|
80
|
+
export { default as Quote } from "./components/sections/Quote";
|
|
81
|
+
export { default as AlertList } from "./components/sections/AlertList";
|
|
82
|
+
export { default as NavList } from "./components/sections/NavList";
|
|
81
83
|
/***** Buttons *****/
|
|
82
84
|
export { default as Button } from "./components/buttons/Button";
|
|
83
85
|
export { default as ButtonGhost } from "./components/buttons/ButtonGhost";
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,mCAAmC;AAEnC,OAAO,mBAAmB,CAAC;AAC3B,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE,uBAAqB;AAEvE,6CAA6C;AAC7C,OAAO,QAAQ,mBAAmB,CAAC;IAC/B,UAAiB,YAAY;QACzB,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE;YACH,IAAI,CAAC,EAAE,QAAQ,CAAC;YAChB,KAAK,EAAE,KAAK,CAAC;SAChB,CAAC;QACF,OAAO,EAAE,cAAc,CAAC;KAC3B;CACJ;AAED,gCAAgC;AAChC,OAAO,EACH,SAAS,EACT,QAAQ,EACR,SAAS,IAAI,YAAY,EACzB,UAAU,EACV,SAAS,EACT,QAAQ,EACR,EAAE,GACL,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|