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