@aiconomy/aico-components 0.0.187 → 0.0.191

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,520 @@ 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
+ | `hideSpecialArticles` | `hide-special-articles` | Determines wheter special articles will be included in the list or not. | `boolean` | `false` |
190
+ | `hideTopArticles` | `hide-top-articles` | Determines wheter top articles will be included in the list or not. | `boolean` | `true` |
191
+ | `latestNews` | `latest-news` | Determines wheter special articles will be included in the list or not. | `boolean` | `false` |
192
+ | `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'` |
193
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
194
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
195
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
196
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
197
+ | `nextButtonText` | `next-button-text` | The text used by the next button in the pagination component. | `string` | `'Next'` |
198
+ | `pageSize` | `page-size` | The page size. Prefer this number to be even. | `number` | `16` |
199
+ | `previousButtonText` | `previous-button-text` | The text used by the previous button in the pagination component. | `string` | `'Previous'` |
200
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
201
+
202
+
203
+ ## Events
204
+
205
+ | Event | Description | Type |
206
+ | -------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
207
+ | `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; }>` |
208
+
209
+
210
+ ----------------------------------------------
211
+
212
+ # aico-special-news-carousel
213
+
214
+
215
+
216
+
217
+
218
+ ## Properties
219
+
220
+ | Property | Attribute | Description | Type | Default |
221
+ | ---------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
222
+ | `aicoBearerToken` | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `''` |
223
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
224
+ | `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'` |
225
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
226
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
227
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
228
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
229
+ | `numberOfArticles` | `number-of-articles` | The number of articles shown in the carousel. Prefer this number to be small. | `number` | `6` |
230
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
231
+
232
+
233
+ ## Events
234
+
235
+ | Event | Description | Type |
236
+ | ---------------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
237
+ | `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; }>` |
238
+
239
+
240
+ ----------------------------------------------
241
+
242
+ # aico-top-news-carousel
243
+
244
+
245
+
246
+
247
+
248
+ ## Properties
249
+
250
+ | Property | Attribute | Description | Type | Default |
251
+ | ---------------------- | ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
252
+ | `aicoBearerToken` | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `''` |
253
+ | `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
254
+ | `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'` |
255
+ | `newsBrandIds` | `news-brand-ids` | Brand ids as a comma separated list used to filter the results. | `string` | `''` |
256
+ | `newsChannels` | `news-channels` | Channel names as a comma separated list used to filter the results. | `string` | `''` |
257
+ | `newsLanguageLocales` | `news-language-locales` | Language locales as a comma separated list used to filter the results. | `string` | `''` |
258
+ | `newsSellerIds` | `news-seller-ids` | Seller ids as a comma separated list used to filter the results. | `string` | `''` |
259
+ | `numberOfArticles` | `number-of-articles` | The number of articles shown in the carousel. Prefer this number to be small. | `number` | `6` |
260
+ | `userAccessToken` | `user-access-token` | The user access token | `string` | `''` |
261
+
262
+
263
+ ## Events
264
+
265
+ | Event | Description | Type |
266
+ | ---------------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
267
+ | `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; }>` |
268
+
269
+
270
+ ----------------------------------------------
271
+
272
+ # aico-album-content
273
+
274
+
275
+
276
+
277
+
278
+ ## Properties
279
+
280
+ | Property | Attribute | Description | Type | Default |
281
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
282
+ | `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` |
283
+
284
+
285
+ ----------------------------------------------
286
+
287
+ # aico-asking-content
288
+
289
+
290
+
291
+
292
+
293
+ ## Properties
294
+
295
+ | Property | Attribute | Description | Type | Default |
296
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
297
+ | `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` |
298
+ | `locale` | `locale` | | `string` | `'de'` |
299
+
300
+
301
+ ----------------------------------------------
302
+
303
+ # aico-asking-list-content
304
+
305
+
306
+
307
+
308
+
309
+ ----------------------------------------------
310
+
311
+ # aico-block-quote-content
312
+
313
+
314
+
315
+
316
+
317
+ ## Properties
318
+
319
+ | Property | Attribute | Description | Type | Default |
320
+ | ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
321
+ | `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` |
322
+ | `locale` | `locale` | | `string` | `'de'` |
323
+
324
+
325
+ ----------------------------------------------
326
+
327
+ # aico-bullet-content
328
+
329
+
330
+
331
+
332
+
333
+ ## Properties
334
+
335
+ | Property | Attribute | Description | Type | Default |
336
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
337
+ | `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` |
338
+ | `locale` | `locale` | | `string` | `'de'` |
339
+
340
+
341
+ ----------------------------------------------
342
+
343
+ # aico-carousel-content
344
+
345
+
346
+
347
+
348
+
349
+ ## Properties
350
+
351
+ | Property | Attribute | Description | Type | Default |
352
+ | ---------------------- | ------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
353
+ | `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` |
354
+ | `hasArrows` | `has-arrows` | | `boolean` | `true` |
355
+ | `locale` | `locale` | | `string` | `'de'` |
356
+
357
+
358
+ ----------------------------------------------
359
+
360
+ # aico-collection-content
361
+
362
+
363
+
364
+
365
+
366
+ ----------------------------------------------
367
+
368
+ # aico-content-card-content
369
+
370
+
371
+
372
+
373
+
374
+ ## Properties
375
+
376
+ | Property | Attribute | Description | Type | Default |
377
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
378
+ | `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` |
379
+ | `locale` | `locale` | | `string` | `'de'` |
380
+
381
+
382
+ ----------------------------------------------
383
+
384
+ # aico-divider-content
385
+
386
+
387
+
388
+
389
+
390
+ ## Properties
391
+
392
+ | Property | Attribute | Description | Type | Default |
393
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
394
+ | `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` |
395
+ | `locale` | `locale` | | `string` | `'de'` |
396
+
397
+
398
+ ----------------------------------------------
399
+
400
+ # aico-document-content
401
+
402
+
403
+
404
+
405
+
406
+ ## Properties
407
+
408
+ | Property | Attribute | Description | Type | Default |
409
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
410
+ | `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` |
411
+ | `locale` | `locale` | | `string` | `'de'` |
412
+
413
+
414
+ ----------------------------------------------
415
+
416
+ # aico-faq-content
417
+
418
+
419
+
420
+
421
+
422
+ ## Properties
423
+
424
+ | Property | Attribute | Description | Type | Default |
425
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
426
+ | `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` |
427
+ | `locale` | `locale` | | `string` | `'de'` |
428
+
429
+
430
+ ----------------------------------------------
431
+
432
+ # aico-heading-content
433
+
434
+
435
+
436
+
437
+
438
+ ## Properties
439
+
440
+ | Property | Attribute | Description | Type | Default |
441
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
442
+ | `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` |
443
+ | `locale` | `locale` | | `string` | `'de'` |
444
+
445
+
446
+ ----------------------------------------------
447
+
448
+ # aico-html-content
449
+
450
+
451
+
452
+
453
+
454
+ ## Properties
455
+
456
+ | Property | Attribute | Description | Type | Default |
457
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
458
+ | `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` |
459
+ | `locale` | `locale` | | `string` | `'de'` |
460
+
461
+
462
+ ----------------------------------------------
463
+
464
+ # aico-link-content
465
+
466
+
467
+
468
+
469
+
470
+ ## Properties
471
+
472
+ | Property | Attribute | Description | Type | Default |
473
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
474
+ | `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` |
475
+ | `locale` | `locale` | | `string` | `'de'` |
476
+
477
+
478
+ ----------------------------------------------
479
+
480
+ # aico-news-content
481
+
482
+
483
+
484
+
485
+
486
+ ## Properties
487
+
488
+ | Property | Attribute | Description | Type | Default |
489
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
490
+ | `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` |
491
+
492
+
493
+ ## Events
494
+
495
+ | Event | Description | Type |
496
+ | -------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
497
+ | `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; }>` |
498
+
499
+
500
+ ----------------------------------------------
501
+
502
+ # aico-no-content
503
+
504
+
505
+
506
+
507
+
508
+ ----------------------------------------------
509
+
510
+ # aico-page-content
511
+
512
+
513
+
514
+
515
+
516
+ ## Properties
517
+
518
+ | Property | Attribute | Description | Type | Default |
519
+ | ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
520
+ | `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` |
521
+ | `locale` | `locale` | | `string` | `'de'` |
522
+
523
+
524
+ ## Events
525
+
526
+ | Event | Description | Type |
527
+ | ------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
528
+ | `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; }>` |
529
+
530
+
531
+ ----------------------------------------------
532
+
533
+ # aico-table-content
534
+
535
+
536
+
537
+
538
+
539
+ ## Properties
540
+
541
+ | Property | Attribute | Description | Type | Default |
542
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
543
+ | `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` |
544
+ | `locale` | `locale` | | `string` | `'de'` |
545
+
546
+
547
+ ----------------------------------------------
548
+
549
+ # aico-testimonial-content
550
+
551
+
552
+
553
+
554
+
555
+ ## Properties
556
+
557
+ | Property | Attribute | Description | Type | Default |
558
+ | ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
559
+ | `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` |
560
+
561
+
562
+ ----------------------------------------------
563
+
564
+ # aico-text-content
565
+
566
+
567
+
568
+
569
+
570
+ ## Properties
571
+
572
+ | Property | Attribute | Description | Type | Default |
573
+ | ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
574
+ | `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` |
575
+ | `locale` | `locale` | | `string` | `'de'` |
576
+
577
+
578
+ ----------------------------------------------
579
+
580
+ # aico-title-content
581
+
582
+
583
+
584
+
585
+
586
+ ## Properties
587
+
588
+ | Property | Attribute | Description | Type | Default |
589
+ | ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
590
+ | `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` |
591
+ | `locale` | `locale` | | `string` | `'de'` |
592
+
593
+
594
+ ----------------------------------------------
595
+
596
+ # aico-upload-content
597
+
598
+
599
+
600
+
601
+
602
+ ## Properties
603
+
604
+ | Property | Attribute | Description | Type | Default |
605
+ | ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
606
+ | `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` |
607
+ | `locale` | `locale` | | `string` | `'de'` |
608
+
609
+
610
+ ----------------------------------------------
611
+
612
+ # aico-video-content
613
+
614
+
615
+
616
+
617
+
618
+ ## Properties
619
+
620
+ | Property | Attribute | Description | Type | Default |
621
+ | ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
622
+ | `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` |
623
+ | `locale` | `locale` | | `string` | `'de'` |
624
+
625
+
626
+ ----------------------------------------------
627
+