@aiconomy/aico-components 0.0.187 → 0.0.197

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/README.md CHANGED
@@ -108,3 +108,521 @@ div.sc-aico-news-list-item {
108
108
  /* styles for all the divs used by the list item */
109
109
  }
110
110
  ```
111
+
112
+ # Available components
113
+
114
+ # aico-article-detail
115
+
116
+
117
+
118
+
119
+
120
+ ## Properties
121
+
122
+ | Property | Attribute | Description | Type | Default |
123
+ | ---------------------- | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ----------- |
124
+ | `article` _(required)_ | -- | | `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` | `undefined` |
125
+ | `hideCategoryAndTags` | `hide-category-and-tags` | Determines if the article category and tags are shown or not. | `boolean` | `false` |
126
+ | `hideDateAndAuthor` | `hide-date-and-author` | Determines if the article date and author are shown or not. | `boolean` | `false` |
127
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
128
+
129
+
130
+ ----------------------------------------------
131
+
132
+ # aico-fetch-article-detail
133
+
134
+
135
+
136
+
137
+
138
+ ## Properties
139
+
140
+ | Property | Attribute | Description | Type | Default |
141
+ | ------------------------------ | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ----------- |
142
+ | `aicoBearerToken` _(required)_ | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `undefined` |
143
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
144
+ | `articleId` | `article-id` | The id will be used to fetch the article. If both the 'articleId' and 'articleUrlHandle' are provided, the latter will be used. If neither are provided, an error is thrown. | `string \| undefined` | `undefined` |
145
+ | `articleUrlHandle` | `article-url-handle` | The url handle will be used to fetch the article. If both the 'articleId' and 'articleUrlHandle' are provided, the latter will be used. If neither are provided, an error is thrown. | `string \| undefined` | `undefined` |
146
+ | `hideCategoryAndTags` | `hide-category-and-tags` | Determines if the article category and tags are shown or not. | `boolean` | `false` |
147
+ | `hideDateAndAuthor` | `hide-date-and-author` | Determines if the article date and author are shown or not. | `boolean` | `false` |
148
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
149
+
150
+
151
+ ----------------------------------------------
152
+
153
+ # aico-news-list-item
154
+
155
+
156
+
157
+
158
+
159
+ ## Properties
160
+
161
+ | Property | Attribute | Description | Type | Default |
162
+ | ---------------------- | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ----------- |
163
+ | `article` _(required)_ | -- | | `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` | `undefined` |
164
+ | `articleIndex` | `article-index` | | `number` | `0` |
165
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
166
+
167
+
168
+ ## Events
169
+
170
+ | Event | Description | Type |
171
+ | -------------- | ----------- | ----------------------------------------------------------------------------------------------------- |
172
+ | `articleClick` | | `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>` |
173
+
174
+
175
+ ----------------------------------------------
176
+
177
+ # aico-news-list
178
+
179
+
180
+
181
+
182
+
183
+ ## Properties
184
+
185
+ | Property | Attribute | Description | Type | Default |
186
+ | ---------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ------------ |
187
+ | `aicoBearerToken` | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `''` |
188
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
189
+ | `allBrands` | `all-brands` | Determines wheter we show brand specific or general latest news | `boolean` | `false` |
190
+ | `hideSpecialArticles` | `hide-special-articles` | Determines wheter special articles will be included in the list or not. | `boolean` | `false` |
191
+ | `hideTopArticles` | `hide-top-articles` | Determines wheter top articles will be included in the list or not. | `boolean` | `true` |
192
+ | `latestNews` | `latest-news` | Determines wheter special articles will be included in the list or not. | `boolean` | `false` |
193
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
194
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
195
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
196
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
197
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
198
+ | `nextButtonText` | `next-button-text` | The text used by the next button in the pagination component. | `string` | `'Next'` |
199
+ | `pageSize` | `page-size` | The page size. Prefer this number to be even. | `number` | `16` |
200
+ | `previousButtonText` | `previous-button-text` | The text used by the previous button in the pagination component. | `string` | `'Previous'` |
201
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
202
+
203
+
204
+ ## Events
205
+
206
+ | Event | Description | Type |
207
+ | -------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
208
+ | `articleClick` | Event emitted when a user clicks an article. The handler receives the entire Article entity. | `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>` |
209
+
210
+
211
+ ----------------------------------------------
212
+
213
+ # aico-special-news-carousel
214
+
215
+
216
+
217
+
218
+
219
+ ## Properties
220
+
221
+ | Property | Attribute | Description | Type | Default |
222
+ | ---------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
223
+ | `aicoBearerToken` | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `''` |
224
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
225
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
226
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
227
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
228
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
229
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
230
+ | `numberOfArticles` | `number-of-articles` | The number of articles shown in the carousel. Prefer this number to be small. | `number` | `6` |
231
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
232
+
233
+
234
+ ## Events
235
+
236
+ | Event | Description | Type |
237
+ | ---------------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
238
+ | `articleClicked` | Event emitted when a user clicks an article title. The handler receives the entire Article entity. | `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>` |
239
+
240
+
241
+ ----------------------------------------------
242
+
243
+ # aico-top-news-carousel
244
+
245
+
246
+
247
+
248
+
249
+ ## Properties
250
+
251
+ | Property | Attribute | Description | Type | Default |
252
+ | ---------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
253
+ | `aicoBearerToken` | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `''` |
254
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
255
+ | `locale` | `locale` | The article translation that will be used to render the content. If the locale specified is not present in the article's translations, most content will not be shown. | `string` | `'de'` |
256
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
257
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
258
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
259
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
260
+ | `numberOfArticles` | `number-of-articles` | The number of articles shown in the carousel. Prefer this number to be small. | `number` | `6` |
261
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
262
+
263
+
264
+ ## Events
265
+
266
+ | Event | Description | Type |
267
+ | ---------------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
268
+ | `articleClicked` | Event emitted when a user clicks an article title. The handler receives the entire Article entity. | `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>` |
269
+
270
+
271
+ ----------------------------------------------
272
+
273
+ # aico-album-content
274
+
275
+
276
+
277
+
278
+
279
+ ## Properties
280
+
281
+ | Property | Attribute | Description | Type | Default |
282
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
283
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { textColor?: string \| undefined; buttonBackgroundColor?: string \| undefined; backgroundColor?: string \| undefined; buttonHoverColor?: string \| undefined; buttonTextColor?: string \| undefined; borderColor?: string \| undefined; album: { id: string \| number; createdAt: Date; updatedAt: Date; } & { name?: string \| undefined; images: ({ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { name?: string \| undefined; alternativeText?: string \| undefined; caption?: string \| undefined; description?: string \| undefined; alternative_text?: string \| undefined; })[]; url?: string \| undefined; type?: string \| undefined; order?: number \| undefined; optimizedImage?: string \| undefined; })[]; }; }` | `undefined` |
284
+
285
+
286
+ ----------------------------------------------
287
+
288
+ # aico-asking-content
289
+
290
+
291
+
292
+
293
+
294
+ ## Properties
295
+
296
+ | Property | Attribute | Description | Type | Default |
297
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
298
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; asking: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; isActive: boolean; startsAt: Date; startTime: Date; location?: string \| null \| undefined; description?: string \| null \| undefined; endTime?: Date \| null \| undefined; meetingPoint?: string \| null \| undefined; recipents?: string \| null \| undefined; clothingEquipment?: string \| null \| undefined; coaching?: string \| null \| undefined; catering?: string \| null \| undefined; furtherInfo?: string \| null \| undefined; }; }` | `undefined` |
299
+ | `locale` | `locale` | | `string` | `'de'` |
300
+
301
+
302
+ ----------------------------------------------
303
+
304
+ # aico-asking-list-content
305
+
306
+
307
+
308
+
309
+
310
+ ----------------------------------------------
311
+
312
+ # aico-block-quote-content
313
+
314
+
315
+
316
+
317
+
318
+ ## Properties
319
+
320
+ | Property | Attribute | Description | Type | Default |
321
+ | ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
322
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { quoteText: string; quoteAuthorLine: string; })[]; textColor?: string \| undefined; quotesColor?: string \| undefined; authorColor?: string \| undefined; }` | `undefined` |
323
+ | `locale` | `locale` | | `string` | `'de'` |
324
+
325
+
326
+ ----------------------------------------------
327
+
328
+ # aico-bullet-content
329
+
330
+
331
+
332
+
333
+
334
+ ## Properties
335
+
336
+ | Property | Attribute | Description | Type | Default |
337
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
338
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; sort: number; titleSize?: string \| undefined; fontSize?: string \| undefined; fontFamily?: string \| undefined; bulletBullets: BulletBullet[]; }` | `undefined` |
339
+ | `locale` | `locale` | | `string` | `'de'` |
340
+
341
+
342
+ ----------------------------------------------
343
+
344
+ # aico-carousel-content
345
+
346
+
347
+
348
+
349
+
350
+ ## Properties
351
+
352
+ | Property | Attribute | Description | Type | Default |
353
+ | ---------------------- | ------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
354
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; arrowsBackground?: string \| undefined; contentCarouselImages: CarouselImage[]; }` | `undefined` |
355
+ | `hasArrows` | `has-arrows` | | `boolean` | `true` |
356
+ | `locale` | `locale` | | `string` | `'de'` |
357
+
358
+
359
+ ----------------------------------------------
360
+
361
+ # aico-collection-content
362
+
363
+
364
+
365
+
366
+
367
+ ----------------------------------------------
368
+
369
+ # aico-content-card-content
370
+
371
+
372
+
373
+
374
+
375
+ ## Properties
376
+
377
+ | Property | Attribute | Description | Type | Default |
378
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
379
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { linkText?: string \| undefined; })[]; picture?: string \| undefined; link?: string \| undefined; titleSize?: string \| undefined; }` | `undefined` |
380
+ | `locale` | `locale` | | `string` | `'de'` |
381
+
382
+
383
+ ----------------------------------------------
384
+
385
+ # aico-divider-content
386
+
387
+
388
+
389
+
390
+
391
+ ## Properties
392
+
393
+ | Property | Attribute | Description | Type | Default |
394
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
395
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { isOnlyMargin: boolean; })[]; isOnlyMargin: boolean; }` | `undefined` |
396
+ | `locale` | `locale` | | `string` | `'de'` |
397
+
398
+
399
+ ----------------------------------------------
400
+
401
+ # aico-document-content
402
+
403
+
404
+
405
+
406
+
407
+ ## Properties
408
+
409
+ | Property | Attribute | Description | Type | Default |
410
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
411
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { document?: string \| undefined; picture?: string \| undefined; })[]; document: null; picture: null; title: null; link?: string \| undefined; isDocumentDisplayedAsButton: boolean; buttonBackgroundColor?: string \| undefined; buttonTextColor?: string \| undefined; buttonHoverColor?: string \| undefined; buttonBorderColor?: string \| undefined; fontSize?: string \| undefined; fontFamily?: string \| undefined; }` | `undefined` |
412
+ | `locale` | `locale` | | `string` | `'de'` |
413
+
414
+
415
+ ----------------------------------------------
416
+
417
+ # aico-faq-content
418
+
419
+
420
+
421
+
422
+
423
+ ## Properties
424
+
425
+ | Property | Attribute | Description | Type | Default |
426
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
427
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; faqItems: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; question?: string \| null \| undefined; answer?: string \| null \| undefined; }[]; }[]; }` | `undefined` |
428
+ | `locale` | `locale` | | `string` | `'de'` |
429
+
430
+
431
+ ----------------------------------------------
432
+
433
+ # aico-heading-content
434
+
435
+
436
+
437
+
438
+
439
+ ## Properties
440
+
441
+ | Property | Attribute | Description | Type | Default |
442
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
443
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { description?: string \| undefined; })[]; picture?: string \| undefined; titleSize?: string \| undefined; textColor?: string \| undefined; textBackgroundColor: string; isImageHeightHalfSize: boolean; isHeadingAlignedWithText: boolean; isTextAtMiddleOfImage: boolean; fontFamily?: string \| undefined; fontSize?: number \| undefined; }` | `undefined` |
444
+ | `locale` | `locale` | | `string` | `'de'` |
445
+
446
+
447
+ ----------------------------------------------
448
+
449
+ # aico-html-content
450
+
451
+
452
+
453
+
454
+
455
+ ## Properties
456
+
457
+ | Property | Attribute | Description | Type | Default |
458
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
459
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; }` | `undefined` |
460
+ | `locale` | `locale` | | `string` | `'de'` |
461
+
462
+
463
+ ----------------------------------------------
464
+
465
+ # aico-link-content
466
+
467
+
468
+
469
+
470
+
471
+ ## Properties
472
+
473
+ | Property | Attribute | Description | Type | Default |
474
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
475
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { link?: string \| undefined; linkText?: string \| undefined; imageUrl?: string \| undefined; })[]; link?: string \| undefined; linkText?: string \| undefined; title?: string \| undefined; imageUrl?: string \| undefined; pictureSize: string; picturePosition?: string \| undefined; isButtonLink: boolean; isImageFullSize: boolean; isImageLink?: boolean \| undefined; backgroundButtonColor?: string \| undefined; textButtonColor?: string \| undefined; hoverColor?: string \| undefined; fontSize?: number \| undefined; fontFamily?: string \| undefined; }` | `undefined` |
476
+ | `locale` | `locale` | | `string` | `'de'` |
477
+
478
+
479
+ ----------------------------------------------
480
+
481
+ # aico-news-content
482
+
483
+
484
+
485
+
486
+
487
+ ## Properties
488
+
489
+ | Property | Attribute | Description | Type | Default |
490
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
491
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; titleSize: string; maxPerRow: number; maxToDisplay: number; aicoShopNews: { id: string \| number; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; shouldShowTranslation: boolean; name?: string \| null \| undefined; title?: string \| null \| undefined; image?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; excerpt?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; }[]; isActive: boolean; isSpecialArticle: boolean; brandIds: (string \| number)[]; sellerIds: (string \| number)[]; newsCategory: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; webName?: string \| null \| undefined; smallDescription?: string \| null \| undefined; }[]; isActive: boolean; sortingNumber: number; sorting_number: number; is_active: boolean; image?: string \| null \| undefined; }; newsTags: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; webName?: string \| null \| undefined; }; }[]; album: { id: string \| number; createdAt: Date; updatedAt: Date; images: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; caption?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; type?: string \| null \| undefined; order?: number \| null \| undefined; url?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; image?: string \| null \| undefined; description?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; excerpt?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; headlineImage?: string \| null \| undefined; contentBuilder?: any; }[]; title?: string \| null \| undefined; text?: string \| null \| undefined; landscapePicture?: string \| null \| undefined; portraitPicture?: string \| null \| undefined; textColor?: string \| null \| undefined; textBackgroundColor?: string \| null \| undefined; textHoverColor?: string \| null \| undefined; IMPORTANT?: string \| null \| undefined; text_hover_color?: string \| null \| undefined; }` | `undefined` |
492
+
493
+
494
+ ## Events
495
+
496
+ | Event | Description | Type |
497
+ | -------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
498
+ | `newsArticleClicked` | | `CustomEvent<{ id: string \| number; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; shouldShowTranslation: boolean; name?: string \| null \| undefined; title?: string \| null \| undefined; image?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; excerpt?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; }[]; isActive: boolean; isSpecialArticle: boolean; brandIds: (string \| number)[]; sellerIds: (string \| number)[]; newsCategory: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; webName?: string \| null \| undefined; smallDescription?: string \| null \| undefined; }[]; isActive: boolean; sortingNumber: number; sorting_number: number; is_active: boolean; image?: string \| null \| undefined; }; newsTags: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; webName?: string \| null \| undefined; }; }[]; album: { id: string \| number; createdAt: Date; updatedAt: Date; images: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; caption?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; type?: string \| null \| undefined; order?: number \| null \| undefined; url?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; image?: string \| null \| undefined; description?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; excerpt?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; headlineImage?: string \| null \| undefined; contentBuilder?: any; }>` |
499
+
500
+
501
+ ----------------------------------------------
502
+
503
+ # aico-no-content
504
+
505
+
506
+
507
+
508
+
509
+ ----------------------------------------------
510
+
511
+ # aico-page-content
512
+
513
+
514
+
515
+
516
+
517
+ ## Properties
518
+
519
+ | Property | Attribute | Description | Type | Default |
520
+ | ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
521
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; openExternalLink: boolean; isImageZoomedIn: boolean; landingPage: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; excerpt?: string \| null \| undefined; imageAlt?: string \| null \| undefined; buttonText?: string \| null \| undefined; }[]; isTemplate: boolean; isPublic: boolean; image?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; lastSyncAt?: Date \| null \| undefined; focusXCoordinate?: number \| null \| undefined; focusYCoordinate?: number \| null \| undefined; focusXPercentage?: number \| null \| undefined; focusYPercentage?: number \| null \| undefined; }; textColor?: string \| null \| undefined; buttonBackgroundColor?: string \| null \| undefined; buttonTextColor?: string \| null \| undefined; backgroundColor?: string \| null \| undefined; externalLink?: string \| null \| undefined; fontType?: string \| null \| undefined; fontSize?: number \| null \| undefined; borderColor?: string \| null \| undefined; titleColor?: string \| null \| undefined; }` | `undefined` |
522
+ | `locale` | `locale` | | `string` | `'de'` |
523
+
524
+
525
+ ## Events
526
+
527
+ | Event | Description | Type |
528
+ | ------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
529
+ | `pageClicked` | | `CustomEvent<{ id: string \| number; createdAt: Date; updatedAt: Date; openExternalLink: boolean; isImageZoomedIn: boolean; landingPage: { id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; name?: string \| null \| undefined; title?: string \| null \| undefined; text?: string \| null \| undefined; excerpt?: string \| null \| undefined; imageAlt?: string \| null \| undefined; buttonText?: string \| null \| undefined; }[]; isTemplate: boolean; isPublic: boolean; image?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; lastSyncAt?: Date \| null \| undefined; focusXCoordinate?: number \| null \| undefined; focusYCoordinate?: number \| null \| undefined; focusXPercentage?: number \| null \| undefined; focusYPercentage?: number \| null \| undefined; }; textColor?: string \| null \| undefined; buttonBackgroundColor?: string \| null \| undefined; buttonTextColor?: string \| null \| undefined; backgroundColor?: string \| null \| undefined; externalLink?: string \| null \| undefined; fontType?: string \| null \| undefined; fontSize?: number \| null \| undefined; borderColor?: string \| null \| undefined; titleColor?: string \| null \| undefined; }>` |
530
+
531
+
532
+ ----------------------------------------------
533
+
534
+ # aico-table-content
535
+
536
+
537
+
538
+
539
+
540
+ ## Properties
541
+
542
+ | Property | Attribute | Description | Type | Default |
543
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
544
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { additionalText?: string \| undefined; })[]; sort: number; titleSize?: string \| undefined; firstColor?: string \| undefined; secondColor?: string \| undefined; tableRows: TableContentRow[]; IMPORTANT?: string \| undefined; bulletBullets?: object[] \| undefined; }` | `undefined` |
545
+ | `locale` | `locale` | | `string` | `'de'` |
546
+
547
+
548
+ ----------------------------------------------
549
+
550
+ # aico-testimonial-content
551
+
552
+
553
+
554
+
555
+
556
+ ## Properties
557
+
558
+ | Property | Attribute | Description | Type | Default |
559
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
560
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { testimonial: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { image?: string \| undefined; link?: string \| undefined; rating?: number \| undefined; }; }` | `undefined` |
561
+
562
+
563
+ ----------------------------------------------
564
+
565
+ # aico-text-content
566
+
567
+
568
+
569
+
570
+
571
+ ## Properties
572
+
573
+ | Property | Attribute | Description | Type | Default |
574
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
575
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: TextContentTranslation[]; sort?: number \| undefined; picturePosition?: string \| undefined; pictureSize?: string \| undefined; pictureLabelPosition?: string \| undefined; titleSize?: string \| undefined; fontSize?: string \| undefined; fontFamily?: string \| undefined; verticalAlign: string; alignmentEnabled: boolean; hasBackgroundColor: boolean; backgroundColor?: string \| undefined; shouldJustifyText: boolean; textColor?: string \| undefined; isButtonRightUnderText: boolean; isContentDisplayedAsPrompt: boolean; pictureFontOption: string; addBorder: boolean; borderColor?: string \| undefined; focusXCoordinate?: number \| undefined; focusYCoordinate?: number \| undefined; focusXPercentage?: number \| undefined; focusYPercentage?: number \| undefined; promptText?: string \| undefined; link?: string \| undefined; picture?: string \| undefined; IMPORTANT?: string \| undefined; }` | `undefined` |
576
+ | `locale` | `locale` | | `string` | `'de'` |
577
+
578
+
579
+ ----------------------------------------------
580
+
581
+ # aico-title-content
582
+
583
+
584
+
585
+
586
+
587
+ ## Properties
588
+
589
+ | Property | Attribute | Description | Type | Default |
590
+ | ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
591
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; size?: string \| undefined; hasUnderscore: boolean; underscoreColor?: string \| undefined; titleColor?: string \| undefined; }` | `undefined` |
592
+ | `locale` | `locale` | | `string` | `'de'` |
593
+
594
+
595
+ ----------------------------------------------
596
+
597
+ # aico-upload-content
598
+
599
+
600
+
601
+
602
+
603
+ ## Properties
604
+
605
+ | Property | Attribute | Description | Type | Default |
606
+ | ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
607
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; }[]; shouldHideFile: boolean; uploads: { name?: string \| null \| undefined; path?: string \| null \| undefined; }[]; videoUrl?: string \| null \| undefined; }` | `undefined` |
608
+ | `locale` | `locale` | | `string` | `'de'` |
609
+
610
+
611
+ ----------------------------------------------
612
+
613
+ # aico-video-content
614
+
615
+
616
+
617
+
618
+
619
+ ## Properties
620
+
621
+ | Property | Attribute | Description | Type | Default |
622
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
623
+ | `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; title?: string \| null \| undefined; text?: string \| null \| undefined; } & { videoUrl?: string \| undefined; })[]; sort?: number \| undefined; titleSize?: string \| undefined; isVideoMinimized: boolean; localVideoUrl?: string \| undefined; IMPORTANT?: string \| undefined; videoUrl?: string \| undefined; video?: string \| undefined; }` | `undefined` |
624
+ | `locale` | `locale` | | `string` | `'de'` |
625
+
626
+
627
+ ----------------------------------------------
628
+