@aiconomy/aico-components 0.0.114 → 0.0.124
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 +275 -423
- package/dist/aico-components/aico-components.esm.js +1 -1
- package/dist/aico-components/p-eedb0ba1.entry.js +2 -0
- package/dist/aico-components/p-eedb0ba1.entry.js.map +1 -0
- package/dist/cjs/aico-article-detail.cjs.entry.js +2 -2
- package/dist/cjs/aico-article-detail.cjs.entry.js.map +1 -1
- package/dist/collection/components/aico-article-detail/aico-article-detail.js +2 -2
- package/dist/collection/components/aico-article-detail/aico-article-detail.js.map +1 -1
- package/dist/collection/model/Article.js.map +1 -1
- package/dist/components/aico-article-detail2.js +2 -2
- package/dist/components/aico-article-detail2.js.map +1 -1
- package/dist/esm/aico-article-detail.entry.js +2 -2
- package/dist/esm/aico-article-detail.entry.js.map +1 -1
- package/dist/types/model/Article.d.ts +2 -1
- package/package.json +1 -1
- package/dist/aico-components/p-b61bc8e9.entry.js +0 -2
- package/dist/aico-components/p-b61bc8e9.entry.js.map +0 -1
package/README.md
CHANGED
|
@@ -87,652 +87,504 @@ Check the [docs](docs/) directory.
|
|
|
87
87
|
</script>
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
## Custom styling
|
|
91
|
+
|
|
92
|
+
The components exported are using [scoped styles](https://stenciljs.com/docs/styling#scoped-css). The following selector methods can be used:
|
|
93
|
+
|
|
94
|
+
- **element selector**: Every component in this library is prefixed with `aico-`. Thus, you can select the `aico-news-list` as follows:
|
|
92
95
|
|
|
93
|
-
```
|
|
94
|
-
|
|
96
|
+
```css
|
|
97
|
+
aico-news-list-item {
|
|
98
|
+
/* styles for the list item element */
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
aico-news-list-item > div {
|
|
102
|
+
/* styles for all the immediate divs of the list item element */
|
|
103
|
+
}
|
|
95
104
|
```
|
|
96
|
-
## Properties
|
|
97
105
|
|
|
98
|
-
|
|
99
|
-
Property Attribute Description Type Default
|
|
100
|
-
----------------------- -------------------------- -------------------------------------- ------------------------------------------------------------------------------------------ -------------
|
|
101
|
-
`article` *(required)* -- `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` `undefined`
|
|
106
|
+
- **class selector**: Due to the scoped component export, each child `html` element has a class with the following pattern `sc-<component_name>` (i.e., for `aico-news-list-item` is `sc-aico-news-list-item`):
|
|
102
107
|
|
|
103
|
-
|
|
104
|
-
|
|
108
|
+
```css
|
|
109
|
+
div.sc-aico-news-list-item {
|
|
110
|
+
/* styles for all the divs used by the list item */
|
|
111
|
+
}
|
|
112
|
+
```
|
|
105
113
|
|
|
106
|
-
|
|
107
|
-
|
|
114
|
+
# Available components
|
|
115
|
+
|
|
116
|
+
# aico-article-detail
|
|
108
117
|
|
|
109
|
-
`locale` `locale` The article translation that will be `string` `'de'`
|
|
110
|
-
used to render the content. If the
|
|
111
|
-
locale specified is not present in the
|
|
112
|
-
article's translations, most content
|
|
113
|
-
will not be shown.
|
|
114
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
115
118
|
|
|
116
|
-
------------------------------------------------------------------------
|
|
117
119
|
|
|
118
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
119
120
|
|
|
120
|
-
# aico-fetch-article-detail
|
|
121
121
|
|
|
122
|
-
```{=html}
|
|
123
|
-
<!-- Auto Generated Below -->
|
|
124
|
-
```
|
|
125
122
|
## Properties
|
|
126
123
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
124
|
+
| Property | Attribute | Description | Type | Default |
|
|
125
|
+
| ---------------------- | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ----------- |
|
|
126
|
+
| `article` _(required)_ | -- | | `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` | `undefined` |
|
|
127
|
+
| `hideCategoryAndTags` | `hide-category-and-tags` | Determines if the article category and tags are shown or not. | `boolean` | `false` |
|
|
128
|
+
| `hideDateAndAuthor` | `hide-date-and-author` | Determines if the article date and author are shown or not. | `boolean` | `false` |
|
|
129
|
+
| `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'` |
|
|
132
130
|
|
|
133
|
-
`aicoUrl` *(required)* `aico-url` The url of the Aico Api that will be used to `string` `undefined`
|
|
134
|
-
retrieve the article.
|
|
135
131
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
132
|
+
----------------------------------------------
|
|
133
|
+
|
|
134
|
+
# aico-fetch-article-detail
|
|
135
|
+
|
|
140
136
|
|
|
141
|
-
`articleUrlHandle` `article-url-handle` The url handle will be used to fetch the `string \| undefined` `undefined`
|
|
142
|
-
article. If both the 'articleId' and
|
|
143
|
-
'articleUrlHandle' are provided, the latter will
|
|
144
|
-
be used. If neither are provided, an error is
|
|
145
|
-
thrown.
|
|
146
137
|
|
|
147
|
-
`hideCategoryAndTags` `hide-category-and-tags` Determines if the article category and tags are `boolean` `false`
|
|
148
|
-
shown or not.
|
|
149
138
|
|
|
150
|
-
`hideDateAndAuthor` `hide-date-and-author` Determines if the article date and author are `boolean` `false`
|
|
151
|
-
shown or not.
|
|
152
139
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
140
|
+
## Properties
|
|
141
|
+
|
|
142
|
+
| Property | Attribute | Description | Type | Default |
|
|
143
|
+
| ------------------------------ | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ----------- |
|
|
144
|
+
| `aicoBearerToken` _(required)_ | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `undefined` |
|
|
145
|
+
| `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
|
|
146
|
+
| `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` |
|
|
147
|
+
| `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` |
|
|
148
|
+
| `hideCategoryAndTags` | `hide-category-and-tags` | Determines if the article category and tags are shown or not. | `boolean` | `false` |
|
|
149
|
+
| `hideDateAndAuthor` | `hide-date-and-author` | Determines if the article date and author are shown or not. | `boolean` | `false` |
|
|
150
|
+
| `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'` |
|
|
158
151
|
|
|
159
|
-
------------------------------------------------------------------------
|
|
160
152
|
|
|
161
|
-
|
|
153
|
+
----------------------------------------------
|
|
162
154
|
|
|
163
155
|
# aico-news-list-item
|
|
164
156
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
168
161
|
## Properties
|
|
169
162
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
`article` -- `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` `undefined`
|
|
174
|
-
*(required)*
|
|
163
|
+
| Property | Attribute | Description | Type | Default |
|
|
164
|
+
| ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------- | ----------- |
|
|
165
|
+
| `article` _(required)_ | -- | | `{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }` | `undefined` |
|
|
175
166
|
|
|
176
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------
|
|
177
167
|
|
|
178
168
|
## Events
|
|
179
169
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
`articleClick` `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>`
|
|
170
|
+
| Event | Description | Type |
|
|
171
|
+
| -------------- | ----------- | ----------------------------------------------------------------------------------------------------- |
|
|
172
|
+
| `articleClick` | | `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>` |
|
|
184
173
|
|
|
185
|
-
--------------------------------------------------------------------------------------------------------------------------------------
|
|
186
174
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
175
|
+
----------------------------------------------
|
|
190
176
|
|
|
191
177
|
# aico-news-list
|
|
192
178
|
|
|
193
|
-
```{=html}
|
|
194
|
-
<!-- Auto Generated Below -->
|
|
195
|
-
```
|
|
196
|
-
## Properties
|
|
197
179
|
|
|
198
|
-
--------------------------------------------------------------------------------------------------------------
|
|
199
|
-
Property Attribute Description Type Default
|
|
200
|
-
----------------------- ------------------------ --------------------------------- ------------ --------------
|
|
201
|
-
`aicoBearerToken` `aico-bearer-token` The token used to authenticate `string` `undefined`
|
|
202
|
-
*(required)* against he Aico Api.
|
|
203
180
|
|
|
204
|
-
`aicoUrl` *(required)* `aico-url` The url of the Aico Api that will `string` `undefined`
|
|
205
|
-
be used to retrieve the article.
|
|
206
181
|
|
|
207
|
-
`newsBrandIds` -- Brands used to filter the `string[]` `[]`
|
|
208
|
-
results.
|
|
209
182
|
|
|
210
|
-
|
|
211
|
-
results.
|
|
183
|
+
## Properties
|
|
212
184
|
|
|
213
|
-
|
|
214
|
-
|
|
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
|
+
| `newsBrandIds` | -- | Brands used to filter the results. | `string[]` | `[]` |
|
|
190
|
+
| `newsChannels` | -- | Channel names used to filter the results. | `string[]` | `[]` |
|
|
191
|
+
| `newsLanguageLocales` | -- | Language locales used to filter the results. | `string[]` | `[]` |
|
|
192
|
+
| `newsSellerIds` | -- | Sellers used to filter the results. | `string[]` | `[]` |
|
|
193
|
+
| `nextButtonText` | `next-button-text` | The text used by the next button in the pagination component. | `string` | `'Next'` |
|
|
194
|
+
| `pageSize` | `page-size` | The page size. Prefer this number to be even. | `number` | `16` |
|
|
195
|
+
| `previousButtonText` | `previous-button-text` | The text used by the previous button in the pagination component. | `string` | `'Previous'` |
|
|
215
196
|
|
|
216
|
-
`newsSellerIds` -- Sellers used to filter the `string[]` `[]`
|
|
217
|
-
results.
|
|
218
197
|
|
|
219
|
-
|
|
220
|
-
in the pagination component.
|
|
198
|
+
## Events
|
|
221
199
|
|
|
222
|
-
|
|
223
|
-
|
|
200
|
+
| Event | Description | Type |
|
|
201
|
+
| -------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
|
|
202
|
+
| `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; }>` |
|
|
224
203
|
|
|
225
|
-
`previousButtonText` `previous-button-text` The text used by the previous `string` `'Previous'`
|
|
226
|
-
button in the pagination
|
|
227
|
-
component.
|
|
228
|
-
--------------------------------------------------------------------------------------------------------------
|
|
229
204
|
|
|
230
|
-
|
|
205
|
+
----------------------------------------------
|
|
231
206
|
|
|
232
|
-
|
|
233
|
-
Event Description Type
|
|
234
|
-
---------------- ------------------------------- -------------------------------------------------------------------------------------------------------
|
|
235
|
-
`articleClick` Event emitted when a user `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>`
|
|
236
|
-
clicks an article. The handler
|
|
237
|
-
receives the entire Article
|
|
238
|
-
entity.
|
|
207
|
+
# aico-special-news-carousel
|
|
239
208
|
|
|
240
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
241
209
|
|
|
242
|
-
------------------------------------------------------------------------
|
|
243
210
|
|
|
244
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
245
211
|
|
|
246
|
-
# aico-special-news-carousel
|
|
247
212
|
|
|
248
|
-
```{=html}
|
|
249
|
-
<!-- Auto Generated Below -->
|
|
250
|
-
```
|
|
251
213
|
## Properties
|
|
252
214
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
215
|
+
| Property | Attribute | Description | Type | Default |
|
|
216
|
+
| ------------------------------ | -------------------- | ----------------------------------------------------------------------------- | ---------- | ----------- |
|
|
217
|
+
| `aicoBearerToken` _(required)_ | `aico-bearer-token` | The token used to authenticate against he Aico Api. | `string` | `undefined` |
|
|
218
|
+
| `aicoUrl` _(required)_ | `aico-url` | The url of the Aico Api that will be used to retrieve the article. | `string` | `undefined` |
|
|
219
|
+
| `newsBrandIds` | -- | Brands used to filter the results. | `string[]` | `[]` |
|
|
220
|
+
| `newsChannels` | -- | Channel names used to filter the results. | `string[]` | `[]` |
|
|
221
|
+
| `newsLanguageLocales` | -- | Language locales used to filter the results. | `string[]` | `[]` |
|
|
222
|
+
| `newsSellerIds` | -- | Sellers used to filter the results. | `string[]` | `[]` |
|
|
223
|
+
| `numberOfArticles` | `number-of-articles` | The number of articles shown in the carousel. Prefer this number to be small. | `number` | `6` |
|
|
258
224
|
|
|
259
|
-
`aicoUrl` *(required)* `aico-url` The url of the Aico Api that will be `string` `undefined`
|
|
260
|
-
used to retrieve the article.
|
|
261
225
|
|
|
262
|
-
|
|
226
|
+
## Events
|
|
263
227
|
|
|
264
|
-
|
|
265
|
-
|
|
228
|
+
| Event | Description | Type |
|
|
229
|
+
| ---------------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
|
|
230
|
+
| `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; }>` |
|
|
266
231
|
|
|
267
|
-
`newsLanguageLocales` -- Language locales used to filter the `string[]` `[]`
|
|
268
|
-
results.
|
|
269
232
|
|
|
270
|
-
|
|
233
|
+
----------------------------------------------
|
|
271
234
|
|
|
272
|
-
|
|
273
|
-
carousel. Prefer this number to be
|
|
274
|
-
small.
|
|
275
|
-
--------------------------------------------------------------------------------------------------------------
|
|
235
|
+
# aico-album-content
|
|
276
236
|
|
|
277
|
-
## Events
|
|
278
237
|
|
|
279
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
280
|
-
Event Description Type
|
|
281
|
-
------------------ -------------------------------- -------------------------------------------------------------------------------------------------------
|
|
282
|
-
`articleClicked` Event emitted when a user clicks `CustomEvent<{ id: string; type: string; links: { self: string; }; attributes: ArticleAttributes; }>`
|
|
283
|
-
an article title. The handler
|
|
284
|
-
receives the entire Article
|
|
285
|
-
entity.
|
|
286
238
|
|
|
287
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
288
239
|
|
|
289
|
-
------------------------------------------------------------------------
|
|
290
240
|
|
|
291
|
-
|
|
241
|
+
## Properties
|
|
292
242
|
|
|
293
|
-
|
|
243
|
+
| Property | Attribute | Description | Type | Default |
|
|
244
|
+
| ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
|
|
245
|
+
| `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; text?: string \| null \| undefined; title?: 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` |
|
|
294
246
|
|
|
295
|
-
```{=html}
|
|
296
|
-
<!-- Auto Generated Below -->
|
|
297
|
-
```
|
|
298
|
-
## Properties
|
|
299
247
|
|
|
300
|
-
|
|
301
|
-
Property Attribute Description Type Default
|
|
302
|
-
-------------- ----------- ------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
303
|
-
`content` -- `{ 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; text?: string \| null \| undefined; title?: 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`
|
|
304
|
-
*(required)*
|
|
248
|
+
----------------------------------------------
|
|
305
249
|
|
|
306
|
-
|
|
250
|
+
# aico-asking-content
|
|
307
251
|
|
|
308
|
-
------------------------------------------------------------------------
|
|
309
252
|
|
|
310
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
311
253
|
|
|
312
|
-
# aico-asking-content
|
|
313
254
|
|
|
314
|
-
```{=html}
|
|
315
|
-
<!-- Auto Generated Below -->
|
|
316
|
-
```
|
|
317
|
-
## Properties
|
|
318
255
|
|
|
319
|
-
|
|
320
|
-
Property Attribute Description Type Default
|
|
321
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
322
|
-
`content` -- `{ 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; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; isActive: boolean; startsAt: Date; startTime: Date; endTime?: Date \| null \| undefined; meetingPoint?: string \| null \| undefined; location?: string \| null \| undefined; recipents?: string \| null \| undefined; clothingEquipment?: string \| null \| undefined; coaching?: string \| null \| undefined; catering?: string \| null \| undefined; description?: string \| null \| undefined; furtherInfo?: string \| null \| undefined; }; }` `undefined`
|
|
323
|
-
*(required)*
|
|
256
|
+
## Properties
|
|
324
257
|
|
|
325
|
-
|
|
326
|
-
|
|
258
|
+
| Property | Attribute | Description | Type | Default |
|
|
259
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
260
|
+
| `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; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; isActive: boolean; startsAt: Date; startTime: Date; endTime?: Date \| null \| undefined; meetingPoint?: string \| null \| undefined; location?: string \| null \| undefined; recipents?: string \| null \| undefined; clothingEquipment?: string \| null \| undefined; coaching?: string \| null \| undefined; catering?: string \| null \| undefined; description?: string \| null \| undefined; furtherInfo?: string \| null \| undefined; }; }` | `undefined` |
|
|
261
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
327
262
|
|
|
328
|
-
------------------------------------------------------------------------
|
|
329
263
|
|
|
330
|
-
|
|
264
|
+
----------------------------------------------
|
|
331
265
|
|
|
332
266
|
# aico-asking-list-content
|
|
333
267
|
|
|
334
|
-
```{=html}
|
|
335
|
-
<!-- Auto Generated Below -->
|
|
336
|
-
```
|
|
337
268
|
|
|
338
|
-
------------------------------------------------------------------------
|
|
339
269
|
|
|
340
|
-
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
----------------------------------------------
|
|
341
273
|
|
|
342
274
|
# aico-block-quote-content
|
|
343
275
|
|
|
344
|
-
```{=html}
|
|
345
|
-
<!-- Auto Generated Below -->
|
|
346
|
-
```
|
|
347
|
-
## Properties
|
|
348
276
|
|
|
349
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
350
|
-
Property Attribute Description Type Default
|
|
351
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -------------
|
|
352
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { quoteText: string; quoteAuthorLine: string; })[]; textColor?: string \| undefined; quotesColor?: string \| undefined; authorColor?: string \| undefined; }` `undefined`
|
|
353
|
-
*(required)*
|
|
354
277
|
|
|
355
|
-
`locale` `locale` `string` `'de'`
|
|
356
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
357
278
|
|
|
358
|
-
------------------------------------------------------------------------
|
|
359
279
|
|
|
360
|
-
|
|
280
|
+
## Properties
|
|
281
|
+
|
|
282
|
+
| Property | Attribute | Description | Type | Default |
|
|
283
|
+
| ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
284
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { quoteText: string; quoteAuthorLine: string; })[]; textColor?: string \| undefined; quotesColor?: string \| undefined; authorColor?: string \| undefined; }` | `undefined` |
|
|
285
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
----------------------------------------------
|
|
361
289
|
|
|
362
290
|
# aico-bullet-content
|
|
363
291
|
|
|
364
|
-
```{=html}
|
|
365
|
-
<!-- Auto Generated Below -->
|
|
366
|
-
```
|
|
367
|
-
## Properties
|
|
368
292
|
|
|
369
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
370
|
-
Property Attribute Description Type Default
|
|
371
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
372
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; sort: number; titleSize?: string \| undefined; fontSize?: string \| undefined; fontFamily?: string \| undefined; bulletBullets: BulletBullet[]; }` `undefined`
|
|
373
|
-
*(required)*
|
|
374
293
|
|
|
375
|
-
`locale` `locale` `string` `'de'`
|
|
376
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
377
294
|
|
|
378
|
-
------------------------------------------------------------------------
|
|
379
295
|
|
|
380
|
-
|
|
296
|
+
## Properties
|
|
297
|
+
|
|
298
|
+
| Property | Attribute | Description | Type | Default |
|
|
299
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
300
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; sort: number; titleSize?: string \| undefined; fontSize?: string \| undefined; fontFamily?: string \| undefined; bulletBullets: BulletBullet[]; }` | `undefined` |
|
|
301
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
----------------------------------------------
|
|
381
305
|
|
|
382
306
|
# aico-carousel-content
|
|
383
307
|
|
|
384
|
-
```{=html}
|
|
385
|
-
<!-- Auto Generated Below -->
|
|
386
|
-
```
|
|
387
|
-
## Properties
|
|
388
308
|
|
|
389
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
390
|
-
Property Attribute Description Type Default
|
|
391
|
-
-------------- -------------- ------------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
392
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; arrowsBackground?: string \| undefined; contentCarouselImages: CarouselImage[]; }` `undefined`
|
|
393
|
-
*(required)*
|
|
394
309
|
|
|
395
|
-
`hasArrows` `has-arrows` `boolean` `true`
|
|
396
310
|
|
|
397
|
-
`locale` `locale` `string` `'de'`
|
|
398
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
399
311
|
|
|
400
|
-
|
|
312
|
+
## Properties
|
|
401
313
|
|
|
402
|
-
|
|
314
|
+
| Property | Attribute | Description | Type | Default |
|
|
315
|
+
| ---------------------- | ------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
316
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; arrowsBackground?: string \| undefined; contentCarouselImages: CarouselImage[]; }` | `undefined` |
|
|
317
|
+
| `hasArrows` | `has-arrows` | | `boolean` | `true` |
|
|
318
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
----------------------------------------------
|
|
403
322
|
|
|
404
323
|
# aico-collection-content
|
|
405
324
|
|
|
406
|
-
```{=html}
|
|
407
|
-
<!-- Auto Generated Below -->
|
|
408
|
-
```
|
|
409
325
|
|
|
410
|
-
------------------------------------------------------------------------
|
|
411
326
|
|
|
412
|
-
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
----------------------------------------------
|
|
413
330
|
|
|
414
331
|
# aico-content-card-content
|
|
415
332
|
|
|
416
|
-
```{=html}
|
|
417
|
-
<!-- Auto Generated Below -->
|
|
418
|
-
```
|
|
419
|
-
## Properties
|
|
420
333
|
|
|
421
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
422
|
-
Property Attribute Description Type Default
|
|
423
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
424
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { linkText?: string \| undefined; })[]; picture?: string \| undefined; link?: string \| undefined; titleSize?: string \| undefined; }` `undefined`
|
|
425
|
-
*(required)*
|
|
426
334
|
|
|
427
|
-
`locale` `locale` `string` `'de'`
|
|
428
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
429
335
|
|
|
430
|
-
------------------------------------------------------------------------
|
|
431
336
|
|
|
432
|
-
|
|
337
|
+
## Properties
|
|
338
|
+
|
|
339
|
+
| Property | Attribute | Description | Type | Default |
|
|
340
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
341
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { linkText?: string \| undefined; })[]; picture?: string \| undefined; link?: string \| undefined; titleSize?: string \| undefined; }` | `undefined` |
|
|
342
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
----------------------------------------------
|
|
433
346
|
|
|
434
347
|
# aico-divider-content
|
|
435
348
|
|
|
436
|
-
```{=html}
|
|
437
|
-
<!-- Auto Generated Below -->
|
|
438
|
-
```
|
|
439
|
-
## Properties
|
|
440
349
|
|
|
441
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
442
|
-
Property Attribute Description Type Default
|
|
443
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
444
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { isOnlyMargin: boolean; })[]; isOnlyMargin: boolean; }` `undefined`
|
|
445
|
-
*(required)*
|
|
446
350
|
|
|
447
|
-
`locale` `locale` `string` `'de'`
|
|
448
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
449
351
|
|
|
450
|
-
------------------------------------------------------------------------
|
|
451
352
|
|
|
452
|
-
|
|
353
|
+
## Properties
|
|
354
|
+
|
|
355
|
+
| Property | Attribute | Description | Type | Default |
|
|
356
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
357
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { isOnlyMargin: boolean; })[]; isOnlyMargin: boolean; }` | `undefined` |
|
|
358
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
----------------------------------------------
|
|
453
362
|
|
|
454
363
|
# aico-document-content
|
|
455
364
|
|
|
456
|
-
```{=html}
|
|
457
|
-
<!-- Auto Generated Below -->
|
|
458
|
-
```
|
|
459
|
-
## Properties
|
|
460
365
|
|
|
461
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
462
|
-
Property Attribute Description Type Default
|
|
463
|
-
-------------- ----------- ------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
464
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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`
|
|
465
|
-
*(required)*
|
|
466
366
|
|
|
467
|
-
`locale` `locale` `string` `'de'`
|
|
468
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
469
367
|
|
|
470
|
-
------------------------------------------------------------------------
|
|
471
368
|
|
|
472
|
-
|
|
369
|
+
## Properties
|
|
370
|
+
|
|
371
|
+
| Property | Attribute | Description | Type | Default |
|
|
372
|
+
| ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
373
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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` |
|
|
374
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
----------------------------------------------
|
|
473
378
|
|
|
474
379
|
# aico-faq-content
|
|
475
380
|
|
|
476
|
-
```{=html}
|
|
477
|
-
<!-- Auto Generated Below -->
|
|
478
|
-
```
|
|
479
|
-
## Properties
|
|
480
381
|
|
|
481
|
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
482
|
-
Property Attribute Description Type Default
|
|
483
|
-
-------------- ----------- ------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
484
|
-
`content` -- `{ 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`
|
|
485
|
-
*(required)*
|
|
486
382
|
|
|
487
|
-
`locale` `locale` `string` `'de'`
|
|
488
|
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
489
383
|
|
|
490
|
-
------------------------------------------------------------------------
|
|
491
384
|
|
|
492
|
-
|
|
385
|
+
## Properties
|
|
386
|
+
|
|
387
|
+
| Property | Attribute | Description | Type | Default |
|
|
388
|
+
| ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
|
|
389
|
+
| `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` |
|
|
390
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
----------------------------------------------
|
|
493
394
|
|
|
494
395
|
# aico-heading-content
|
|
495
396
|
|
|
496
|
-
```{=html}
|
|
497
|
-
<!-- Auto Generated Below -->
|
|
498
|
-
```
|
|
499
|
-
## Properties
|
|
500
397
|
|
|
501
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
502
|
-
Property Attribute Description Type Default
|
|
503
|
-
-------------- ----------- ------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
504
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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`
|
|
505
|
-
*(required)*
|
|
506
398
|
|
|
507
|
-
`locale` `locale` `string` `'de'`
|
|
508
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
509
399
|
|
|
510
|
-
------------------------------------------------------------------------
|
|
511
400
|
|
|
512
|
-
|
|
401
|
+
## Properties
|
|
402
|
+
|
|
403
|
+
| Property | Attribute | Description | Type | Default |
|
|
404
|
+
| ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
405
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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` |
|
|
406
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
----------------------------------------------
|
|
513
410
|
|
|
514
411
|
# aico-html-content
|
|
515
412
|
|
|
516
|
-
```{=html}
|
|
517
|
-
<!-- Auto Generated Below -->
|
|
518
|
-
```
|
|
519
|
-
## Properties
|
|
520
413
|
|
|
521
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
522
|
-
Property Attribute Description Type Default
|
|
523
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
524
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; }` `undefined`
|
|
525
|
-
*(required)*
|
|
526
414
|
|
|
527
|
-
`locale` `locale` `string` `'de'`
|
|
528
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
529
415
|
|
|
530
|
-
------------------------------------------------------------------------
|
|
531
416
|
|
|
532
|
-
|
|
417
|
+
## Properties
|
|
418
|
+
|
|
419
|
+
| Property | Attribute | Description | Type | Default |
|
|
420
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
421
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; }` | `undefined` |
|
|
422
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
----------------------------------------------
|
|
533
426
|
|
|
534
427
|
# aico-link-content
|
|
535
428
|
|
|
536
|
-
```{=html}
|
|
537
|
-
<!-- Auto Generated Below -->
|
|
538
|
-
```
|
|
539
|
-
## Properties
|
|
540
429
|
|
|
541
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
542
|
-
Property Attribute Description Type Default
|
|
543
|
-
-------------- ----------- ------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
544
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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`
|
|
545
|
-
*(required)*
|
|
546
430
|
|
|
547
|
-
`locale` `locale` `string` `'de'`
|
|
548
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
549
431
|
|
|
550
|
-
------------------------------------------------------------------------
|
|
551
432
|
|
|
552
|
-
|
|
433
|
+
## Properties
|
|
434
|
+
|
|
435
|
+
| Property | Attribute | Description | Type | Default |
|
|
436
|
+
| ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
437
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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` |
|
|
438
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
----------------------------------------------
|
|
553
442
|
|
|
554
443
|
# aico-news-content
|
|
555
444
|
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
559
449
|
## Properties
|
|
560
450
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
`content` -- `{ 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; excerpt?: string \| null \| undefined; image?: string \| null \| undefined; optimizedImage?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; webName?: string \| null \| undefined; description?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; caption?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; url?: string \| null \| undefined; type?: string \| null \| undefined; order?: number \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; description?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; excerpt?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; image?: string \| null \| undefined; headlineImage?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; contentBuilder?: any; }[]; landscapePicture?: string \| null \| undefined; portraitPicture?: string \| null \| undefined; title?: string \| null \| undefined; text?: 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`
|
|
565
|
-
*(required)*
|
|
451
|
+
| Property | Attribute | Description | Type | Default |
|
|
452
|
+
| ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
453
|
+
| `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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; excerpt?: string \| null \| undefined; image?: string \| null \| undefined; optimizedImage?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; webName?: string \| null \| undefined; description?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; caption?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; url?: string \| null \| undefined; type?: string \| null \| undefined; order?: number \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; description?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; excerpt?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; image?: string \| null \| undefined; headlineImage?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; contentBuilder?: any; }[]; landscapePicture?: string \| null \| undefined; portraitPicture?: string \| null \| undefined; title?: string \| null \| undefined; text?: 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` |
|
|
566
454
|
|
|
567
|
-
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
568
455
|
|
|
569
456
|
## Events
|
|
570
457
|
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
`newsArticleClicked` `CustomEvent<{ id: string \| number; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; shouldShowTranslation: boolean; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; excerpt?: string \| null \| undefined; image?: string \| null \| undefined; optimizedImage?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; webName?: string \| null \| undefined; description?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; caption?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; url?: string \| null \| undefined; type?: string \| null \| undefined; order?: number \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; description?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; excerpt?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; image?: string \| null \| undefined; headlineImage?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; contentBuilder?: any; }>`
|
|
458
|
+
| Event | Description | Type |
|
|
459
|
+
| -------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
460
|
+
| `newsArticleClicked` | | `CustomEvent<{ id: string \| number; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; shouldShowTranslation: boolean; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; excerpt?: string \| null \| undefined; image?: string \| null \| undefined; optimizedImage?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; webName?: string \| null \| undefined; description?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: 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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; description?: string \| null \| undefined; alternativeText?: string \| null \| undefined; caption?: string \| null \| undefined; alternative_text?: string \| null \| undefined; }[]; url?: string \| null \| undefined; type?: string \| null \| undefined; order?: number \| null \| undefined; optimizedImage?: string \| null \| undefined; }[]; name?: string \| null \| undefined; }; name?: string \| null \| undefined; description?: string \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; excerpt?: string \| null \| undefined; publishDate?: Date \| null \| undefined; author?: string \| null \| undefined; videoUrl?: string \| null \| undefined; image?: string \| null \| undefined; headlineImage?: string \| null \| undefined; portraitImage?: string \| null \| undefined; optimizedPortraitImage?: string \| null \| undefined; optimizedImage?: string \| null \| undefined; optimizedListImage?: string \| null \| undefined; contentBuilder?: any; }>` |
|
|
575
461
|
|
|
576
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
577
462
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
463
|
+
----------------------------------------------
|
|
581
464
|
|
|
582
465
|
# aico-no-content
|
|
583
466
|
|
|
584
|
-
```{=html}
|
|
585
|
-
<!-- Auto Generated Below -->
|
|
586
|
-
```
|
|
587
467
|
|
|
588
|
-
------------------------------------------------------------------------
|
|
589
468
|
|
|
590
|
-
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
----------------------------------------------
|
|
591
472
|
|
|
592
473
|
# aico-page-content
|
|
593
474
|
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
597
479
|
## Properties
|
|
598
480
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
*(required)*
|
|
481
|
+
| Property | Attribute | Description | Type | Default |
|
|
482
|
+
| ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
483
|
+
| `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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; imageAlt?: string \| null \| undefined; excerpt?: string \| null \| undefined; buttonText?: string \| null \| undefined; }[]; isTemplate: boolean; isPublic: boolean; lastSyncAt?: Date \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; image?: string \| null \| undefined; focusXCoordinate?: number \| null \| undefined; focusYCoordinate?: number \| null \| undefined; focusXPercentage?: number \| null \| undefined; focusYPercentage?: number \| null \| undefined; }; buttonBackgroundColor?: string \| null \| undefined; buttonTextColor?: string \| null \| undefined; textColor?: 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` |
|
|
484
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
604
485
|
|
|
605
|
-
`locale` `locale` `string` `'de'`
|
|
606
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
607
486
|
|
|
608
487
|
## Events
|
|
609
488
|
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
`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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; imageAlt?: string \| null \| undefined; excerpt?: string \| null \| undefined; buttonText?: string \| null \| undefined; }[]; isTemplate: boolean; isPublic: boolean; lastSyncAt?: Date \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; image?: string \| null \| undefined; focusXCoordinate?: number \| null \| undefined; focusYCoordinate?: number \| null \| undefined; focusXPercentage?: number \| null \| undefined; focusYPercentage?: number \| null \| undefined; }; buttonBackgroundColor?: string \| null \| undefined; buttonTextColor?: string \| null \| undefined; textColor?: 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; }>`
|
|
489
|
+
| Event | Description | Type |
|
|
490
|
+
| ------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
491
|
+
| `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; title?: string \| null \| undefined; text?: string \| null \| undefined; name?: string \| null \| undefined; imageAlt?: string \| null \| undefined; excerpt?: string \| null \| undefined; buttonText?: string \| null \| undefined; }[]; isTemplate: boolean; isPublic: boolean; lastSyncAt?: Date \| null \| undefined; pageTitle?: string \| null \| undefined; metaDescription?: string \| null \| undefined; urlHandle?: string \| null \| undefined; image?: string \| null \| undefined; focusXCoordinate?: number \| null \| undefined; focusYCoordinate?: number \| null \| undefined; focusXPercentage?: number \| null \| undefined; focusYPercentage?: number \| null \| undefined; }; buttonBackgroundColor?: string \| null \| undefined; buttonTextColor?: string \| null \| undefined; textColor?: 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; }>` |
|
|
614
492
|
|
|
615
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
616
493
|
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|
|
494
|
+
----------------------------------------------
|
|
620
495
|
|
|
621
496
|
# aico-table-content
|
|
622
497
|
|
|
623
|
-
```{=html}
|
|
624
|
-
<!-- Auto Generated Below -->
|
|
625
|
-
```
|
|
626
|
-
## Properties
|
|
627
498
|
|
|
628
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
629
|
-
Property Attribute Description Type Default
|
|
630
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
631
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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`
|
|
632
|
-
*(required)*
|
|
633
499
|
|
|
634
|
-
`locale` `locale` `string` `'de'`
|
|
635
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
636
500
|
|
|
637
|
-
------------------------------------------------------------------------
|
|
638
501
|
|
|
639
|
-
|
|
502
|
+
## Properties
|
|
503
|
+
|
|
504
|
+
| Property | Attribute | Description | Type | Default |
|
|
505
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
506
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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` |
|
|
507
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
----------------------------------------------
|
|
640
511
|
|
|
641
512
|
# aico-testimonial-content
|
|
642
513
|
|
|
643
|
-
```{=html}
|
|
644
|
-
<!-- Auto Generated Below -->
|
|
645
|
-
```
|
|
646
|
-
## Properties
|
|
647
514
|
|
|
648
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
649
|
-
Property Attribute Description Type Default
|
|
650
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
651
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { testimonial: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { image?: string \| undefined; link?: string \| undefined; rating?: number \| undefined; }; }` `undefined`
|
|
652
|
-
*(required)*
|
|
653
515
|
|
|
654
|
-
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
655
516
|
|
|
656
|
-
------------------------------------------------------------------------
|
|
657
517
|
|
|
658
|
-
|
|
518
|
+
## Properties
|
|
519
|
+
|
|
520
|
+
| Property | Attribute | Description | Type | Default |
|
|
521
|
+
| ---------------------- | --------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
522
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { testimonial: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; } & { image?: string \| undefined; link?: string \| undefined; rating?: number \| undefined; }; }` | `undefined` |
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
----------------------------------------------
|
|
659
526
|
|
|
660
527
|
# aico-text-content
|
|
661
528
|
|
|
662
|
-
```{=html}
|
|
663
|
-
<!-- Auto Generated Below -->
|
|
664
|
-
```
|
|
665
|
-
## Properties
|
|
666
529
|
|
|
667
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
668
|
-
Property Attribute Description Type Default
|
|
669
|
-
-------------- ----------- ------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
670
|
-
`content` -- `{ 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`
|
|
671
|
-
*(required)*
|
|
672
530
|
|
|
673
|
-
`locale` `locale` `string` `'de'`
|
|
674
|
-
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
675
531
|
|
|
676
|
-
------------------------------------------------------------------------
|
|
677
532
|
|
|
678
|
-
|
|
533
|
+
## Properties
|
|
534
|
+
|
|
535
|
+
| Property | Attribute | Description | Type | Default |
|
|
536
|
+
| ---------------------- | --------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
537
|
+
| `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` |
|
|
538
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
----------------------------------------------
|
|
679
542
|
|
|
680
543
|
# aico-title-content
|
|
681
544
|
|
|
682
|
-
```{=html}
|
|
683
|
-
<!-- Auto Generated Below -->
|
|
684
|
-
```
|
|
685
|
-
## Properties
|
|
686
545
|
|
|
687
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
688
|
-
Property Attribute Description Type Default
|
|
689
|
-
-------------- ----------- ------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -------------
|
|
690
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; size?: string \| undefined; hasUnderscore: boolean; underscoreColor?: string \| undefined; titleColor?: string \| undefined; }` `undefined`
|
|
691
|
-
*(required)*
|
|
692
546
|
|
|
693
|
-
`locale` `locale` `string` `'de'`
|
|
694
|
-
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
695
547
|
|
|
696
|
-
------------------------------------------------------------------------
|
|
697
548
|
|
|
698
|
-
|
|
549
|
+
## Properties
|
|
550
|
+
|
|
551
|
+
| Property | Attribute | Description | Type | Default |
|
|
552
|
+
| ---------------------- | --------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
553
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; size?: string \| undefined; hasUnderscore: boolean; underscoreColor?: string \| undefined; titleColor?: string \| undefined; }` | `undefined` |
|
|
554
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
----------------------------------------------
|
|
699
558
|
|
|
700
559
|
# aico-upload-content
|
|
701
560
|
|
|
702
|
-
```{=html}
|
|
703
|
-
<!-- Auto Generated Below -->
|
|
704
|
-
```
|
|
705
|
-
## Properties
|
|
706
561
|
|
|
707
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
708
|
-
Property Attribute Description Type Default
|
|
709
|
-
-------------- ----------- ------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------
|
|
710
|
-
`content` -- `{ id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; shouldHideFile: boolean; uploads: { name?: string \| null \| undefined; path?: string \| null \| undefined; }[]; videoUrl?: string \| null \| undefined; }` `undefined`
|
|
711
|
-
*(required)*
|
|
712
562
|
|
|
713
|
-
`locale` `locale` `string` `'de'`
|
|
714
|
-
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
715
563
|
|
|
716
|
-
------------------------------------------------------------------------
|
|
717
564
|
|
|
718
|
-
|
|
565
|
+
## Properties
|
|
566
|
+
|
|
567
|
+
| Property | Attribute | Description | Type | Default |
|
|
568
|
+
| ---------------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
569
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; translations: { id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: string \| null \| undefined; }[]; shouldHideFile: boolean; uploads: { name?: string \| null \| undefined; path?: string \| null \| undefined; }[]; videoUrl?: string \| null \| undefined; }` | `undefined` |
|
|
570
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
----------------------------------------------
|
|
719
574
|
|
|
720
575
|
# aico-video-content
|
|
721
576
|
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
725
581
|
## Properties
|
|
726
582
|
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
*(required)*
|
|
583
|
+
| Property | Attribute | Description | Type | Default |
|
|
584
|
+
| ---------------------- | --------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
|
|
585
|
+
| `content` _(required)_ | -- | | `{ id: string \| number; createdAt: Date; updatedAt: Date; } & { translations: ({ id: string \| number; createdAt: Date; updatedAt: Date; locale: string; text?: string \| null \| undefined; title?: 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` |
|
|
586
|
+
| `locale` | `locale` | | `string` | `'de'` |
|
|
732
587
|
|
|
733
|
-
`locale` `locale` `string` `'de'`
|
|
734
|
-
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
735
588
|
|
|
736
|
-
|
|
589
|
+
----------------------------------------------
|
|
737
590
|
|
|
738
|
-
*Built with [StencilJS](https://stenciljs.com/)*
|