@agnos-ui/angular-bootstrap 0.8.0 → 0.9.0-next.0

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.
Files changed (46) hide show
  1. package/fesm2022/agnos-ui-angular-bootstrap.mjs +154 -92
  2. package/fesm2022/agnos-ui-angular-bootstrap.mjs.map +1 -1
  3. package/index.d.ts +6450 -40
  4. package/package.json +5 -5
  5. package/agnos-ui-angular.module.d.ts +0 -20
  6. package/components/accordion/accordion.component.d.ts +0 -257
  7. package/components/accordion/accordion.gen.d.ts +0 -442
  8. package/components/accordion/index.d.ts +0 -2
  9. package/components/alert/alert.component.d.ts +0 -140
  10. package/components/alert/alert.gen.d.ts +0 -191
  11. package/components/alert/index.d.ts +0 -2
  12. package/components/carousel/carousel.component.d.ts +0 -205
  13. package/components/carousel/carousel.gen.d.ts +0 -358
  14. package/components/carousel/index.d.ts +0 -2
  15. package/components/collapse/collapse.component.d.ts +0 -83
  16. package/components/collapse/collapse.gen.d.ts +0 -150
  17. package/components/collapse/index.d.ts +0 -2
  18. package/components/modal/index.d.ts +0 -3
  19. package/components/modal/modal.component.d.ts +0 -220
  20. package/components/modal/modal.gen.d.ts +0 -355
  21. package/components/modal/modal.service.d.ts +0 -21
  22. package/components/pagination/index.d.ts +0 -2
  23. package/components/pagination/pagination.component.d.ts +0 -379
  24. package/components/pagination/pagination.gen.d.ts +0 -584
  25. package/components/progressbar/index.d.ts +0 -2
  26. package/components/progressbar/progressbar.component.d.ts +0 -118
  27. package/components/progressbar/progressbar.gen.d.ts +0 -196
  28. package/components/rating/index.d.ts +0 -2
  29. package/components/rating/rating.component.d.ts +0 -144
  30. package/components/rating/rating.gen.d.ts +0 -270
  31. package/components/select/index.d.ts +0 -2
  32. package/components/select/select.component.d.ts +0 -198
  33. package/components/select/select.gen.d.ts +0 -433
  34. package/components/slider/index.d.ts +0 -2
  35. package/components/slider/slider.component.d.ts +0 -234
  36. package/components/slider/slider.gen.d.ts +0 -511
  37. package/components/toast/index.d.ts +0 -4
  38. package/components/toast/toast.component.d.ts +0 -155
  39. package/components/toast/toast.gen.d.ts +0 -308
  40. package/components/toast/toaster.component.d.ts +0 -17
  41. package/components/toast/toaster.service.d.ts +0 -7
  42. package/components/tree/index.d.ts +0 -2
  43. package/components/tree/tree.component.d.ts +0 -145
  44. package/components/tree/tree.gen.d.ts +0 -216
  45. package/config.d.ts +0 -27
  46. package/config.gen.d.ts +0 -62
@@ -1,442 +0,0 @@
1
- import type { WidgetSlotContext, SlotContent, TransitionFn, Widget, WidgetFactory, ConfigValidator, PropsConfig, Directive } from '@agnos-ui/angular-headless';
2
- /**
3
- * Retrieve a shallow copy of the default accordion config
4
- * @returns the default accordion config
5
- */
6
- declare const export_getAccordionDefaultConfig: () => AccordionProps;
7
- export { export_getAccordionDefaultConfig as getAccordionDefaultConfig };
8
- /**
9
- * Represents the context for an accordion item within the accordion component.
10
- */
11
- export interface AccordionItemContext extends WidgetSlotContext<AccordionItemWidget> {
12
- }
13
- /**
14
- * Represents the state of an Accordion component.
15
- */
16
- export interface AccordionState {
17
- /**
18
- * Array containing all the accordion-items contained in the accordion.
19
- */
20
- itemWidgets: AccordionItemWidget[];
21
- /**
22
- * CSS classes to be applied on the widget main container
23
- *
24
- * @defaultValue `''`
25
- */
26
- className: string;
27
- /**
28
- * Structure of the accordion-item. The default item structure is: accordion-item
29
- * contains accordion header and accordion-item body container; the accordion header contains the accordion button
30
- * (that contains `header`), while the accordion-item body container contains the accordion body (that contains `children`).
31
- * The itemTransition is applied on this element.
32
- *
33
- * It is a prop of the accordion-item.
34
- */
35
- itemStructure: SlotContent<AccordionItemContext>;
36
- }
37
- /**
38
- * Represents the state of an AccordionItem component.
39
- */
40
- export interface AccordionProps {
41
- /**
42
- * The transition to use for the accordion-item body-container when the accordion-item is toggled.
43
- *
44
- * @defaultValue
45
- * ```ts
46
- * collapseVerticalTransition
47
- * ```
48
- */
49
- itemTransition: TransitionFn;
50
- /**
51
- * If `true`, only one accordion-item at the time can stay open.
52
- *
53
- * @defaultValue `false`
54
- */
55
- closeOthers: boolean;
56
- /**
57
- * An event fired when an item is shown.
58
- *
59
- * Event payload is the id of the item.
60
- *
61
- * @defaultValue
62
- * ```ts
63
- * () => {}
64
- * ```
65
- */
66
- onItemShown: (itemId: string) => void;
67
- /**
68
- * An event fired when an item is hidden.
69
- *
70
- * Event payload is the id of the item.
71
- *
72
- * @defaultValue
73
- * ```ts
74
- * () => {}
75
- * ```
76
- */
77
- onItemHidden: (itemId: string) => void;
78
- /**
79
- * If `true`, the accordion-item body container will be removed from the DOM when the accordion-item is collapsed. It will be just hidden otherwise.
80
- *
81
- * @defaultValue `true`
82
- */
83
- itemDestroyOnHide: boolean;
84
- /**
85
- * If `true`, accordion-item will be animated.
86
- *
87
- * @defaultValue `true`
88
- */
89
- itemAnimated: boolean;
90
- /**
91
- * CSS classes to add on the accordion-item DOM element.
92
- *
93
- * @defaultValue `''`
94
- */
95
- itemClassName: string;
96
- /**
97
- * CSS classes to add on the accordion-item header DOM element.
98
- *
99
- * @defaultValue `''`
100
- */
101
- itemHeaderClassName: string;
102
- /**
103
- * CSS classes to add on the accordion-item toggle button DOM element.
104
- *
105
- * @defaultValue `''`
106
- */
107
- itemButtonClassName: string;
108
- /**
109
- * CSS classes to add on the accordion-item body container DOM element.
110
- * The accordion-item body container is the DOM element on what the itemTransition is applied.
111
- *
112
- * @defaultValue `''`
113
- */
114
- itemBodyContainerClassName: string;
115
- /**
116
- * CSS classes to add on the accordion-item body DOM element.
117
- *
118
- * @defaultValue `''`
119
- */
120
- itemBodyClassName: string;
121
- /**
122
- * The html tag to use for the accordion-item-header.
123
- *
124
- * @defaultValue `''`
125
- */
126
- itemHeadingTag: string;
127
- /**
128
- * CSS classes to be applied on the widget main container
129
- *
130
- * @defaultValue `''`
131
- */
132
- className: string;
133
- /**
134
- * Structure of the accordion-item. The default item structure is: accordion-item
135
- * contains accordion header and accordion-item body container; the accordion header contains the accordion button
136
- * (that contains `header`), while the accordion-item body container contains the accordion body (that contains `children`).
137
- * The itemTransition is applied on this element.
138
- *
139
- * It is a prop of the accordion-item.
140
- */
141
- itemStructure: SlotContent<AccordionItemContext>;
142
- }
143
- /**
144
- * Represents an Accordion widget type.
145
- */
146
- export type AccordionWidget = Widget<AccordionProps, AccordionState, AccordionApi, AccordionDirectives>;
147
- /**
148
- * Represents the state of an accordion item, extending the core item state and additional properties specific to the accordion item.
149
- */
150
- export interface AccordionItemState {
151
- /**
152
- * If `true` the content of the accordion-item collapse should be in DOM. Its value depends on the
153
- * value of the `visible` and `destroyOnHide`.
154
- */
155
- shouldBeInDOM: boolean;
156
- /**
157
- * If `true`, the accordion-item will be visible (expanded). Otherwise, it will be hidden (collapsed).
158
- */
159
- visible: boolean;
160
- /**
161
- * If `true`, the accordion-item will be disabled.
162
- * It will not react to user's clicks, but still will be possible to toggle programmatically.
163
- */
164
- disabled: boolean;
165
- /**
166
- * The id of the accordion-item. It can be used for controlling the accordion-item via the accordion api.
167
- */
168
- id: string;
169
- /**
170
- * CSS classes to add on the accordion-item header DOM element.
171
- */
172
- headerClassName: string;
173
- /**
174
- * CSS classes to add on the accordion-item collapse DOM element.
175
- */
176
- buttonClassName: string;
177
- /**
178
- * CSS classes to add on the accordion-item body container DOM element.
179
- * The accordion-item body container is the DOM element on what the itemTransition is applied.
180
- */
181
- bodyContainerClassName: string;
182
- /**
183
- * CSS classes to add on the accordion-item body DOM element.
184
- */
185
- bodyClassName: string;
186
- /**
187
- * The html tag to use for the accordion-item-header.
188
- */
189
- headingTag: string;
190
- /**
191
- * CSS classes to be applied on the widget main container
192
- *
193
- * @defaultValue `''`
194
- */
195
- className: string;
196
- /**
197
- * Structure of the accordion-item. The default item structure is: accordion-item
198
- * contains accordion header and accordion-item body container; the accordion header contains the accordion button
199
- * (that contains `header`), while the accordion-item body container contains the accordion body (that contains `children`).
200
- * The itemTransition is applied on this element.
201
- *
202
- * It is a prop of the accordion-item.
203
- */
204
- structure: SlotContent<AccordionItemContext>;
205
- /**
206
- * Content present in the accordion body.
207
- *
208
- * It is a prop of the accordion-item.
209
- */
210
- children: SlotContent<AccordionItemContext>;
211
- /**
212
- * Content present in the accordion button inside the accordion header.
213
- *
214
- * It is a prop of the accordion-item.
215
- */
216
- header: SlotContent<AccordionItemContext>;
217
- }
218
- /**
219
- * Represents the properties for an Accordion item component.
220
- */
221
- export interface AccordionItemProps {
222
- /**
223
- * If `true`, accordion-item will be animated.
224
- */
225
- animated: boolean;
226
- /**
227
- * The transition to use for the accordion-item body-container when the accordion-item is toggled.
228
- */
229
- transition: TransitionFn;
230
- /**
231
- * If `true`, the accordion-item body container will be removed from the DOM when the accordion-item is collapsed. It will be just hidden otherwise.
232
- */
233
- destroyOnHide: boolean;
234
- /**
235
- * An event fired when an item is shown.
236
- */
237
- onShown: () => void;
238
- /**
239
- * An event fired when an item is hidden.
240
- */
241
- onHidden: () => void;
242
- /**
243
- * An event fired when the `visible` value changes.
244
- *
245
- * Event payload is the new value of visible.
246
- */
247
- onVisibleChange: (visible: boolean) => void;
248
- /**
249
- * If `true`, the accordion-item will be visible (expanded). Otherwise, it will be hidden (collapsed).
250
- */
251
- visible: boolean;
252
- /**
253
- * If `true`, the accordion-item will be disabled.
254
- * It will not react to user's clicks, but still will be possible to toggle programmatically.
255
- */
256
- disabled: boolean;
257
- /**
258
- * The id of the accordion-item. It can be used for controlling the accordion-item via the accordion api.
259
- */
260
- id: string;
261
- /**
262
- * CSS classes to add on the accordion-item header DOM element.
263
- */
264
- headerClassName: string;
265
- /**
266
- * CSS classes to add on the accordion-item collapse DOM element.
267
- */
268
- buttonClassName: string;
269
- /**
270
- * CSS classes to add on the accordion-item body container DOM element.
271
- * The accordion-item body container is the DOM element on what the itemTransition is applied.
272
- */
273
- bodyContainerClassName: string;
274
- /**
275
- * CSS classes to add on the accordion-item body DOM element.
276
- */
277
- bodyClassName: string;
278
- /**
279
- * The html tag to use for the accordion-item-header.
280
- */
281
- headingTag: string;
282
- /**
283
- * CSS classes to be applied on the widget main container
284
- *
285
- * @defaultValue `''`
286
- */
287
- className: string;
288
- /**
289
- * Structure of the accordion-item. The default item structure is: accordion-item
290
- * contains accordion header and accordion-item body container; the accordion header contains the accordion button
291
- * (that contains `header`), while the accordion-item body container contains the accordion body (that contains `children`).
292
- * The itemTransition is applied on this element.
293
- *
294
- * It is a prop of the accordion-item.
295
- */
296
- structure: SlotContent<AccordionItemContext>;
297
- /**
298
- * Content present in the accordion body.
299
- *
300
- * It is a prop of the accordion-item.
301
- */
302
- children: SlotContent<AccordionItemContext>;
303
- /**
304
- * Content present in the accordion button inside the accordion header.
305
- *
306
- * It is a prop of the accordion-item.
307
- */
308
- header: SlotContent<AccordionItemContext>;
309
- }
310
- /**
311
- * Represents a widget for an accordion item.
312
- */
313
- export type AccordionItemWidget = Widget<AccordionItemProps, AccordionItemState, AccordionItemApi, AccordionItemDirectives>;
314
- /**
315
- * Create an AccordionItemWidget with given config props
316
- * @param config - an optional AccordionItem config
317
- * @returns an AccordionItemWidget
318
- */
319
- declare const export_createAccordionItem: WidgetFactory<AccordionItemWidget>;
320
- export { export_createAccordionItem as createAccordionItem };
321
- /**
322
- * Create an AccordionWidget with given config props
323
- * @param config - an optional accordion config
324
- * @returns an AccordionWidget
325
- */
326
- declare const export_createAccordion: WidgetFactory<AccordionWidget>;
327
- export { export_createAccordion as createAccordion };
328
- /**
329
- * Create an accordion WidgetFactory based on a item factory and the list of item props that should inherit from the parent accordion
330
- *
331
- * @param itemFactory - the item factory
332
- * @param accordionItemProps - the list of item props
333
- * @param accordionConfig - the default accordion config
334
- * @param accordionValidator - the validator of props
335
- * @returns the accordion widget factory
336
- */
337
- declare const export_factoryCreateAccordion: (itemFactory?: WidgetFactory<AccordionItemWidget>, accordionItemProps?: string[], accordionConfig?: AccordionProps, accordionValidator?: ConfigValidator<AccordionProps>) => WidgetFactory<AccordionWidget>;
338
- export { export_factoryCreateAccordion as factoryCreateAccordion };
339
- /**
340
- * Interface representing the API for an accordion component.
341
- */
342
- export interface AccordionApi {
343
- /**
344
- * Given the itemId, will expand the corresponding accordion-item.
345
- *
346
- * If the itemId is not valid, nothing will happen.
347
- */
348
- expand(itemId: string): void;
349
- /**
350
- * Given the itemId, will collapse the corresponding accordion-item.
351
- *
352
- * If the itemId is not valid, nothing will happen.
353
- */
354
- collapse(itemId: string): void;
355
- /**
356
- * Given the itemId, will toggle the corresponding accordion-item.
357
- *
358
- * If the itemId is not valid, nothing will happen.
359
- */
360
- toggle(itemId: string): void;
361
- /**
362
- * It will expand all the items in the accordion.
363
- *
364
- * If `closeOthers` is `true` it will expand only the last accordion-item.
365
- */
366
- expandAll(): void;
367
- /**
368
- * It will collapse all the accordion-items in the accordion.
369
- */
370
- collapseAll(): void;
371
- /**
372
- * Creates a new accordionItem.
373
- */
374
- registerItem(itemConfig?: PropsConfig<AccordionItemProps>): AccordionItemWidget;
375
- }
376
- /**
377
- * Interface representing the directives used in the Accordion component.
378
- */
379
- export interface AccordionDirectives {
380
- /**
381
- * Directive to put on the accordion DOM element
382
- */
383
- accordionDirective: Directive;
384
- }
385
- /**
386
- * Interface representing the API for an accordion item.
387
- */
388
- export interface AccordionItemApi {
389
- /**
390
- * It will collapse the accordion-item.
391
- */
392
- collapse(): void;
393
- /**
394
- * It will expand the accordion-item.
395
- */
396
- expand(): void;
397
- /**
398
- * It will toggle the accordion-item.
399
- */
400
- toggle(): void;
401
- /**
402
- * Method to be called after the initialization to allow animations.
403
- */
404
- initDone(): void;
405
- }
406
- /**
407
- * Interface representing the directives used in an accordion item.
408
- */
409
- export interface AccordionItemDirectives {
410
- /**
411
- * Directive to use in special cases, if the accordion header does not use a button element to control the collapsing.
412
- */
413
- toggleDirective: Directive;
414
- /**
415
- * Directive to put on the button element that will control the collapsing of the accordion-item.
416
- */
417
- buttonDirective: Directive;
418
- /**
419
- * Directive to put on the accordion-item header that will contain the button element.
420
- */
421
- headerDirective: Directive;
422
- /**
423
- * Directive to put on the accordion-item body.
424
- */
425
- bodyDirective: Directive;
426
- /**
427
- * Directive to apply the itemTransition
428
- */
429
- transitionDirective: Directive;
430
- /**
431
- * Directive to apply aria attributes to the expanded body panel
432
- */
433
- bodyContainerAttrsDirective: Directive;
434
- /**
435
- * Directive to be put on the accordion-item body container. It will handle the animation.
436
- */
437
- bodyContainerDirective: Directive;
438
- /**
439
- * Directive to be put on the accordion-item. It will handle adding the accordion-item to the accordion.
440
- */
441
- itemDirective: Directive;
442
- }
@@ -1,2 +0,0 @@
1
- export * from './accordion.component';
2
- export * from './accordion.gen';
@@ -1,140 +0,0 @@
1
- import type { SlotContent, TransitionFn } from '@agnos-ui/angular-headless';
2
- import { BaseWidgetDirective } from '@agnos-ui/angular-headless';
3
- import type { AlertContext, AlertWidget } from './alert.gen';
4
- import { TemplateRef } from '@angular/core';
5
- import type { BSContextualClass } from '@agnos-ui/core-bootstrap/types';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * Directive to be used as a structural directive for the body of an alert component.
9
- *
10
- * This directive allows the use of a template reference for the alert body content, with type {@link AlertContext}.
11
- */
12
- export declare class AlertBodyDirective {
13
- templateRef: TemplateRef<any>;
14
- static ngTemplateContextGuard(_dir: AlertBodyDirective, context: unknown): context is AlertContext;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertBodyDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<AlertBodyDirective, "ng-template[auAlertBody]", never, {}, {}, never, never, true, never>;
17
- }
18
- /**
19
- * Directive to define the structure of an alert component.
20
- *
21
- * This directive uses a `TemplateRef` to inject the template reference of the {@link AlertContext}.
22
- */
23
- export declare class AlertStructureDirective {
24
- templateRef: TemplateRef<any>;
25
- static ngTemplateContextGuard(_dir: AlertStructureDirective, context: unknown): context is AlertContext;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertStructureDirective, never>;
27
- static ɵdir: i0.ɵɵDirectiveDeclaration<AlertStructureDirective, "ng-template[auAlertStructure]", never, {}, {}, never, never, true, never>;
28
- }
29
- /**
30
- * Represents the default slot structure for the alert component.
31
- */
32
- export declare const alertDefaultSlotStructure: SlotContent<AlertContext>;
33
- /**
34
- * AlertComponent is a UI component that extends BaseWidgetDirective to provide
35
- * an alert box with various customizable properties and behaviors.
36
- *
37
- * @remarks
38
- * This component is designed to be used with Bootstrap styles and supports
39
- * various Bootstrap contextual classes for different alert types.
40
- */
41
- export declare class AlertComponent extends BaseWidgetDirective<AlertWidget> {
42
- /**
43
- * Type of the alert, following bootstrap types.
44
- *
45
- * @defaultValue `'primary'`
46
- */
47
- readonly type: import("@angular/core").InputSignal<BSContextualClass | undefined>;
48
- /**
49
- * If `true`, alert can be dismissed by the user.
50
- * The close button (×) will be displayed and you can be notified of the event with the (close) output.
51
- *
52
- * @defaultValue `true`
53
- */
54
- readonly dismissible: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
55
- /**
56
- * The transition function will be executed when the alert is displayed or hidden.
57
- *
58
- * Depending on the value of `animatedOnInit`, the animation can be optionally skipped during the showing process.
59
- *
60
- * @defaultValue `fadeTransition`
61
- */
62
- readonly transition: import("@angular/core").InputSignal<TransitionFn | undefined>;
63
- /**
64
- * If `true` the alert is visible to the user
65
- *
66
- * @defaultValue `true`
67
- */
68
- readonly visible: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
69
- /**
70
- * If `true`, alert opening will be animated.
71
- *
72
- * Animation is triggered when the `.open()` function is called
73
- * or the visible prop is changed
74
- *
75
- * @defaultValue `false`
76
- */
77
- readonly animatedOnInit: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
78
- /**
79
- * If `true`, alert closing will be animated.
80
- *
81
- * Animation is triggered when clicked on the close button (×),
82
- * via the `.close()` function or the visible prop is changed
83
- *
84
- * @defaultValue `true`
85
- */
86
- readonly animated: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
87
- /**
88
- * Accessibility close button label
89
- *
90
- * @defaultValue `'Close'`
91
- */
92
- readonly ariaCloseButtonLabel: import("@angular/core").InputSignal<string | undefined>;
93
- /**
94
- * Template for the alert content
95
- */
96
- readonly children: import("@angular/core").InputSignal<SlotContent<AlertContext>>;
97
- readonly slotDefaultFromContent: import("@angular/core").Signal<AlertBodyDirective | undefined>;
98
- /**
99
- * Global template for the alert component
100
- */
101
- readonly structure: import("@angular/core").InputSignal<SlotContent<AlertContext>>;
102
- readonly slotStructureFromContent: import("@angular/core").Signal<AlertStructureDirective | undefined>;
103
- /**
104
- * Callback called when the alert visibility changed.
105
- *
106
- * @defaultValue
107
- * ```ts
108
- * () => {}
109
- * ```
110
- */
111
- readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
112
- /**
113
- * Callback called when the alert is hidden.
114
- *
115
- * @defaultValue
116
- * ```ts
117
- * () => {}
118
- * ```
119
- */
120
- readonly hidden: import("@angular/core").OutputEmitterRef<void>;
121
- /**
122
- * Callback called when the alert is shown.
123
- *
124
- * @defaultValue
125
- * ```ts
126
- * () => {}
127
- * ```
128
- */
129
- readonly shown: import("@angular/core").OutputEmitterRef<void>;
130
- /**
131
- * CSS classes to be applied on the widget main container
132
- *
133
- * @defaultValue `''`
134
- */
135
- readonly className: import("@angular/core").InputSignal<string | undefined>;
136
- readonly slotChildren: import("@angular/core").Signal<TemplateRef<void> | undefined>;
137
- constructor();
138
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
139
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "[auAlert]", never, { "type": { "alias": "auType"; "required": false; "isSignal": true; }; "dismissible": { "alias": "auDismissible"; "required": false; "isSignal": true; }; "transition": { "alias": "auTransition"; "required": false; "isSignal": true; }; "visible": { "alias": "auVisible"; "required": false; "isSignal": true; }; "animatedOnInit": { "alias": "auAnimatedOnInit"; "required": false; "isSignal": true; }; "animated": { "alias": "auAnimated"; "required": false; "isSignal": true; }; "ariaCloseButtonLabel": { "alias": "auAriaCloseButtonLabel"; "required": false; "isSignal": true; }; "children": { "alias": "auChildren"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; }, { "visibleChange": "auVisibleChange"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotDefaultFromContent", "slotStructureFromContent"], ["*"], true, never>;
140
- }