@agnos-ui/angular-bootstrap 0.6.0 → 0.7.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.
- package/components/accordion/accordion.component.d.ts +39 -46
- package/components/alert/alert.component.d.ts +18 -22
- package/components/collapse/collapse.component.d.ts +11 -15
- package/components/modal/modal.component.d.ts +30 -36
- package/components/pagination/pagination.component.d.ts +38 -44
- package/components/progressbar/progressbar.component.d.ts +16 -21
- package/components/rating/rating.component.d.ts +17 -23
- package/components/select/select.component.d.ts +24 -27
- package/components/slider/slider.component.d.ts +22 -31
- package/components/slider/slider.gen.d.ts +5 -1
- package/components/toast/toast.component.d.ts +21 -27
- package/components/tree/tree.component.d.ts +16 -16
- package/components/tree/tree.gen.d.ts +1 -1
- package/fesm2022/agnos-ui-angular-bootstrap.mjs +1452 -1057
- package/fesm2022/agnos-ui-angular-bootstrap.mjs.map +1 -1
- package/package.json +6 -6
- package/esm2022/agnos-ui-angular-bootstrap.mjs +0 -5
- package/esm2022/agnos-ui-angular.module.mjs +0 -174
- package/esm2022/components/accordion/accordion.component.mjs +0 -586
- package/esm2022/components/accordion/accordion.gen.mjs +0 -33
- package/esm2022/components/accordion/index.mjs +0 -3
- package/esm2022/components/alert/alert.component.mjs +0 -270
- package/esm2022/components/alert/alert.gen.mjs +0 -15
- package/esm2022/components/alert/index.mjs +0 -3
- package/esm2022/components/collapse/collapse.component.mjs +0 -89
- package/esm2022/components/collapse/collapse.gen.mjs +0 -15
- package/esm2022/components/collapse/index.mjs +0 -3
- package/esm2022/components/modal/index.mjs +0 -4
- package/esm2022/components/modal/modal.component.mjs +0 -460
- package/esm2022/components/modal/modal.gen.mjs +0 -27
- package/esm2022/components/modal/modal.service.mjs +0 -57
- package/esm2022/components/pagination/index.mjs +0 -3
- package/esm2022/components/pagination/pagination.component.mjs +0 -600
- package/esm2022/components/pagination/pagination.gen.mjs +0 -15
- package/esm2022/components/progressbar/index.mjs +0 -3
- package/esm2022/components/progressbar/progressbar.component.mjs +0 -219
- package/esm2022/components/progressbar/progressbar.gen.mjs +0 -15
- package/esm2022/components/rating/index.mjs +0 -3
- package/esm2022/components/rating/rating.component.mjs +0 -205
- package/esm2022/components/rating/rating.gen.mjs +0 -15
- package/esm2022/components/select/index.mjs +0 -3
- package/esm2022/components/select/select.component.mjs +0 -282
- package/esm2022/components/select/select.gen.mjs +0 -15
- package/esm2022/components/slider/index.mjs +0 -3
- package/esm2022/components/slider/slider.component.mjs +0 -463
- package/esm2022/components/slider/slider.gen.mjs +0 -15
- package/esm2022/components/toast/index.mjs +0 -3
- package/esm2022/components/toast/toast.component.mjs +0 -324
- package/esm2022/components/toast/toast.gen.mjs +0 -15
- package/esm2022/components/tree/index.mjs +0 -3
- package/esm2022/components/tree/tree.component.mjs +0 -450
- package/esm2022/components/tree/tree.gen.mjs +0 -15
- package/esm2022/config.gen.mjs +0 -2
- package/esm2022/config.mjs +0 -21
- package/esm2022/index.mjs +0 -30
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { SlotContent, TransitionFn } from '@agnos-ui/angular-headless';
|
|
2
2
|
import { BaseWidgetDirective } from '@agnos-ui/angular-headless';
|
|
3
3
|
import type { ModalContext, ModalWidget, ModalBeforeCloseEvent } from './modal.gen';
|
|
4
|
-
import {
|
|
4
|
+
import { TemplateRef } from '@angular/core';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
7
7
|
* Directive to provide the slot structure for the modal widget.
|
|
@@ -70,37 +70,37 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
70
70
|
*
|
|
71
71
|
* @defaultValue `true`
|
|
72
72
|
*/
|
|
73
|
-
animated: boolean | undefined
|
|
73
|
+
readonly animated: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
74
74
|
/**
|
|
75
75
|
* The transition to use for the backdrop behind the modal (if present).
|
|
76
76
|
*
|
|
77
77
|
* @defaultValue `fadeTransition`
|
|
78
78
|
*/
|
|
79
|
-
backdropTransition: TransitionFn | undefined
|
|
79
|
+
readonly backdropTransition: import("@angular/core").InputSignal<TransitionFn | undefined>;
|
|
80
80
|
/**
|
|
81
81
|
* The transition to use for the modal.
|
|
82
82
|
*
|
|
83
83
|
* @defaultValue `fadeTransition`
|
|
84
84
|
*/
|
|
85
|
-
modalTransition: TransitionFn | undefined
|
|
85
|
+
readonly modalTransition: import("@angular/core").InputSignal<TransitionFn | undefined>;
|
|
86
86
|
/**
|
|
87
87
|
* Whether the modal should be visible when the transition is completed.
|
|
88
88
|
*
|
|
89
89
|
* @defaultValue `false`
|
|
90
90
|
*/
|
|
91
|
-
visible: boolean | undefined
|
|
91
|
+
readonly visible: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
92
92
|
/**
|
|
93
93
|
* Whether a backdrop should be created behind the modal.
|
|
94
94
|
*
|
|
95
95
|
* @defaultValue `true`
|
|
96
96
|
*/
|
|
97
|
-
backdrop: boolean | undefined
|
|
97
|
+
readonly backdrop: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
98
98
|
/**
|
|
99
99
|
* Whether the modal should be closed when clicking on the viewport outside the modal.
|
|
100
100
|
*
|
|
101
101
|
* @defaultValue `true`
|
|
102
102
|
*/
|
|
103
|
-
closeOnOutsideClick: boolean | undefined
|
|
103
|
+
readonly closeOnOutsideClick: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
104
104
|
/**
|
|
105
105
|
* Which element should contain the modal and backdrop DOM elements.
|
|
106
106
|
* If it is not null, the modal and backdrop DOM elements are moved to the specified container.
|
|
@@ -111,67 +111,67 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
111
111
|
* typeof window !== 'undefined' ? document.body : null
|
|
112
112
|
* ```
|
|
113
113
|
*/
|
|
114
|
-
container: HTMLElement | null | undefined
|
|
114
|
+
readonly container: import("@angular/core").InputSignal<HTMLElement | null | undefined>;
|
|
115
115
|
/**
|
|
116
116
|
* Value of the aria-label attribute to put on the close button.
|
|
117
117
|
*
|
|
118
118
|
* @defaultValue `'Close'`
|
|
119
119
|
*/
|
|
120
|
-
ariaCloseButtonLabel: string | undefined
|
|
120
|
+
readonly ariaCloseButtonLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
121
121
|
/**
|
|
122
122
|
* Classes to add on the backdrop DOM element.
|
|
123
123
|
*
|
|
124
124
|
* @defaultValue `''`
|
|
125
125
|
*/
|
|
126
|
-
backdropClass: string | undefined
|
|
126
|
+
readonly backdropClass: import("@angular/core").InputSignal<string | undefined>;
|
|
127
127
|
/**
|
|
128
128
|
* Whether to display the close button.
|
|
129
129
|
*
|
|
130
130
|
* @defaultValue `true`
|
|
131
131
|
*/
|
|
132
|
-
closeButton: boolean | undefined
|
|
132
|
+
readonly closeButton: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
133
133
|
/**
|
|
134
134
|
* CSS classes to be applied on the widget main container
|
|
135
135
|
*
|
|
136
136
|
* @defaultValue `''`
|
|
137
137
|
*/
|
|
138
|
-
className: string | undefined
|
|
138
|
+
readonly className: import("@angular/core").InputSignal<string | undefined>;
|
|
139
139
|
/**
|
|
140
140
|
* Option to create a fullscreen modal, according to the bootstrap documentation.
|
|
141
141
|
*
|
|
142
142
|
* @defaultValue `false`
|
|
143
143
|
*/
|
|
144
|
-
fullscreen: boolean | undefined
|
|
144
|
+
readonly fullscreen: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
145
145
|
/**
|
|
146
146
|
* Structure of the modal.
|
|
147
147
|
* The default structure uses {@link ModalProps.header|header}, {@link ModalProps.children|children} and {@link ModalProps.footer|footer}.
|
|
148
148
|
*/
|
|
149
|
-
structure: SlotContent<ModalContext<Data
|
|
150
|
-
slotStructureFromContent: ModalStructureDirective<
|
|
149
|
+
readonly structure: import("@angular/core").InputSignal<SlotContent<ModalContext<Data>>>;
|
|
150
|
+
readonly slotStructureFromContent: import("@angular/core").Signal<ModalStructureDirective<any> | undefined>;
|
|
151
151
|
/**
|
|
152
152
|
* Header of the modal. The default header includes {@link ModalProps.title|title}.
|
|
153
153
|
*/
|
|
154
|
-
header: SlotContent<ModalContext<Data
|
|
155
|
-
slotHeaderFromContent: ModalHeaderDirective<
|
|
154
|
+
readonly header: import("@angular/core").InputSignal<SlotContent<ModalContext<Data>>>;
|
|
155
|
+
readonly slotHeaderFromContent: import("@angular/core").Signal<ModalHeaderDirective<any> | undefined>;
|
|
156
156
|
/**
|
|
157
157
|
* Title of the modal.
|
|
158
158
|
*/
|
|
159
|
-
title: SlotContent<ModalContext<Data
|
|
160
|
-
slotTitleFromContent: ModalTitleDirective<
|
|
159
|
+
readonly title: import("@angular/core").InputSignal<SlotContent<ModalContext<Data>>>;
|
|
160
|
+
readonly slotTitleFromContent: import("@angular/core").Signal<ModalTitleDirective<any> | undefined>;
|
|
161
161
|
/**
|
|
162
162
|
* Body of the modal.
|
|
163
163
|
*/
|
|
164
|
-
children: SlotContent<ModalContext<Data
|
|
165
|
-
slotDefaultFromContent: ModalBodyDirective<
|
|
164
|
+
readonly children: import("@angular/core").InputSignal<SlotContent<ModalContext<Data>>>;
|
|
165
|
+
readonly slotDefaultFromContent: import("@angular/core").Signal<ModalBodyDirective<any> | undefined>;
|
|
166
166
|
/**
|
|
167
167
|
* Footer of the modal.
|
|
168
168
|
*/
|
|
169
|
-
footer: SlotContent<ModalContext<Data
|
|
170
|
-
slotFooterFromContent: ModalFooterDirective<
|
|
169
|
+
readonly footer: import("@angular/core").InputSignal<SlotContent<ModalContext<Data>>>;
|
|
170
|
+
readonly slotFooterFromContent: import("@angular/core").Signal<ModalFooterDirective<any> | undefined>;
|
|
171
171
|
/**
|
|
172
172
|
* Data to use in content slots
|
|
173
173
|
*/
|
|
174
|
-
contentData: Data | undefined
|
|
174
|
+
readonly contentData: import("@angular/core").InputSignal<Data | undefined>;
|
|
175
175
|
/**
|
|
176
176
|
* Event to be triggered when the visible property changes.
|
|
177
177
|
*
|
|
@@ -182,7 +182,7 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
182
182
|
* () => {}
|
|
183
183
|
* ```
|
|
184
184
|
*/
|
|
185
|
-
visibleChange:
|
|
185
|
+
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
186
186
|
/**
|
|
187
187
|
* Event to be triggered when the modal is about to be closed (i.e. the {@link ModalApi.close|close} method was called).
|
|
188
188
|
*
|
|
@@ -194,7 +194,7 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
194
194
|
* () => {}
|
|
195
195
|
* ```
|
|
196
196
|
*/
|
|
197
|
-
beforeClose:
|
|
197
|
+
readonly beforeClose: import("@angular/core").OutputEmitterRef<ModalBeforeCloseEvent>;
|
|
198
198
|
/**
|
|
199
199
|
* Event to be triggered when the transition is completed and the modal is not visible.
|
|
200
200
|
*
|
|
@@ -203,7 +203,7 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
203
203
|
* () => {}
|
|
204
204
|
* ```
|
|
205
205
|
*/
|
|
206
|
-
hidden:
|
|
206
|
+
readonly hidden: import("@angular/core").OutputEmitterRef<void>;
|
|
207
207
|
/**
|
|
208
208
|
* Event to be triggered when the transition is completed and the modal is visible.
|
|
209
209
|
*
|
|
@@ -212,15 +212,9 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
|
|
|
212
212
|
* () => {}
|
|
213
213
|
* ```
|
|
214
214
|
*/
|
|
215
|
-
shown:
|
|
216
|
-
slotChildren
|
|
215
|
+
readonly shown: import("@angular/core").OutputEmitterRef<void>;
|
|
216
|
+
readonly slotChildren: import("@angular/core").Signal<TemplateRef<void> | undefined>;
|
|
217
217
|
constructor();
|
|
218
218
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent<any>, never>;
|
|
219
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent<any>, "[auModal]", never, { "animated": { "alias": "auAnimated"; "required": false; }; "backdropTransition": { "alias": "auBackdropTransition"; "required": false; }; "modalTransition": { "alias": "auModalTransition"; "required": false; }; "visible": { "alias": "auVisible"; "required": false; }; "backdrop": { "alias": "auBackdrop"; "required": false; }; "closeOnOutsideClick": { "alias": "auCloseOnOutsideClick"; "required": false; }; "container": { "alias": "auContainer"; "required": false; }; "ariaCloseButtonLabel": { "alias": "auAriaCloseButtonLabel"; "required": false; }; "backdropClass": { "alias": "auBackdropClass"; "required": false; }; "closeButton": { "alias": "auCloseButton"; "required": false; }; "className": { "alias": "auClassName"; "required": false; }; "fullscreen": { "alias": "auFullscreen"; "required": false; }; "structure": { "alias": "auStructure"; "required": false; }; "header": { "alias": "auHeader"; "required": false; }; "title": { "alias": "auTitle"; "required": false; }; "children": { "alias": "auChildren"; "required": false; }; "footer": { "alias": "auFooter"; "required": false; }; "contentData": { "alias": "auContentData"; "required": false; }; }, { "visibleChange": "auVisibleChange"; "beforeClose": "auBeforeClose"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotStructureFromContent", "slotHeaderFromContent", "slotTitleFromContent", "slotDefaultFromContent", "slotFooterFromContent"], ["*"], true, never>;
|
|
220
|
-
static ngAcceptInputType_animated: unknown;
|
|
221
|
-
static ngAcceptInputType_visible: unknown;
|
|
222
|
-
static ngAcceptInputType_backdrop: unknown;
|
|
223
|
-
static ngAcceptInputType_closeOnOutsideClick: unknown;
|
|
224
|
-
static ngAcceptInputType_closeButton: unknown;
|
|
225
|
-
static ngAcceptInputType_fullscreen: unknown;
|
|
219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent<any>, "[auModal]", never, { "animated": { "alias": "auAnimated"; "required": false; "isSignal": true; }; "backdropTransition": { "alias": "auBackdropTransition"; "required": false; "isSignal": true; }; "modalTransition": { "alias": "auModalTransition"; "required": false; "isSignal": true; }; "visible": { "alias": "auVisible"; "required": false; "isSignal": true; }; "backdrop": { "alias": "auBackdrop"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "auCloseOnOutsideClick"; "required": false; "isSignal": true; }; "container": { "alias": "auContainer"; "required": false; "isSignal": true; }; "ariaCloseButtonLabel": { "alias": "auAriaCloseButtonLabel"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "auBackdropClass"; "required": false; "isSignal": true; }; "closeButton": { "alias": "auCloseButton"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "auFullscreen"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "header": { "alias": "auHeader"; "required": false; "isSignal": true; }; "title": { "alias": "auTitle"; "required": false; "isSignal": true; }; "children": { "alias": "auChildren"; "required": false; "isSignal": true; }; "footer": { "alias": "auFooter"; "required": false; "isSignal": true; }; "contentData": { "alias": "auContentData"; "required": false; "isSignal": true; }; }, { "visibleChange": "auVisibleChange"; "beforeClose": "auBeforeClose"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotStructureFromContent", "slotHeaderFromContent", "slotTitleFromContent", "slotDefaultFromContent", "slotFooterFromContent"], ["*"], true, never>;
|
|
226
220
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { SlotContent } from '@agnos-ui/angular-headless';
|
|
2
2
|
import { BaseWidgetDirective } from '@agnos-ui/angular-headless';
|
|
3
|
-
import {
|
|
3
|
+
import { TemplateRef } from '@angular/core';
|
|
4
4
|
import type { PaginationContext, PaginationNumberContext, PaginationWidget } from './pagination.gen';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
@@ -110,7 +110,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
110
110
|
* (processPage: number, pageCount: number) => `Page ${processPage} of ${pageCount}`
|
|
111
111
|
* ```
|
|
112
112
|
*/
|
|
113
|
-
ariaPageLabel: ((processPage: number, pageCount: number) => string) | undefined
|
|
113
|
+
readonly ariaPageLabel: import("@angular/core").InputSignal<((processPage: number, pageCount: number) => string) | undefined>;
|
|
114
114
|
/**
|
|
115
115
|
* Provide the label for the aria-live element
|
|
116
116
|
* This is used for accessibility purposes.
|
|
@@ -124,7 +124,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
124
124
|
* (currentPage: number) => `Current page is ${currentPage}`
|
|
125
125
|
* ```
|
|
126
126
|
*/
|
|
127
|
-
ariaLiveLabel: ((currentPage: number, pageCount: number) => string) | undefined
|
|
127
|
+
readonly ariaLiveLabel: import("@angular/core").InputSignal<((currentPage: number, pageCount: number) => string) | undefined>;
|
|
128
128
|
/**
|
|
129
129
|
* The label for the nav element.
|
|
130
130
|
*
|
|
@@ -133,7 +133,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
133
133
|
*
|
|
134
134
|
* @defaultValue `'Page navigation'`
|
|
135
135
|
*/
|
|
136
|
-
ariaLabel: string | undefined
|
|
136
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
137
137
|
/**
|
|
138
138
|
* The label for the "active" page.
|
|
139
139
|
* for I18n, we suggest to use the global configuration
|
|
@@ -144,7 +144,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
144
144
|
* '(current)'
|
|
145
145
|
* ```
|
|
146
146
|
*/
|
|
147
|
-
activeLabel: string | undefined
|
|
147
|
+
readonly activeLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
148
148
|
/**
|
|
149
149
|
* The label for the "First" page button.
|
|
150
150
|
* for I18n, we suggest to use the global configuration
|
|
@@ -155,7 +155,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
155
155
|
* 'Action link for first page'
|
|
156
156
|
* ```
|
|
157
157
|
*/
|
|
158
|
-
ariaFirstLabel: string | undefined
|
|
158
|
+
readonly ariaFirstLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
159
159
|
/**
|
|
160
160
|
* The label for the "Previous" page button.
|
|
161
161
|
* for I18n, we suggest to use the global configuration
|
|
@@ -166,7 +166,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
166
166
|
* 'Action link for previous page'
|
|
167
167
|
* ```
|
|
168
168
|
*/
|
|
169
|
-
ariaPreviousLabel: string | undefined
|
|
169
|
+
readonly ariaPreviousLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
170
170
|
/**
|
|
171
171
|
* The label for the "Next" page button.
|
|
172
172
|
* for I18n, we suggest to use the global configuration
|
|
@@ -177,7 +177,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
177
177
|
* 'Action link for next page'
|
|
178
178
|
* ```
|
|
179
179
|
*/
|
|
180
|
-
ariaNextLabel: string | undefined
|
|
180
|
+
readonly ariaNextLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
181
181
|
/**
|
|
182
182
|
* The label for the "Last" page button.
|
|
183
183
|
* for I18n, we suggest to use the global configuration
|
|
@@ -188,7 +188,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
188
188
|
* 'Action link for last page'
|
|
189
189
|
* ```
|
|
190
190
|
*/
|
|
191
|
-
ariaLastLabel: string | undefined
|
|
191
|
+
readonly ariaLastLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
192
192
|
/**
|
|
193
193
|
* The label for the "Ellipsis" page.
|
|
194
194
|
* for I18n, we suggest to use the global configuration
|
|
@@ -196,7 +196,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
196
196
|
*
|
|
197
197
|
* @defaultValue `'Ellipsis page element'`
|
|
198
198
|
*/
|
|
199
|
-
ariaEllipsisLabel: string | undefined
|
|
199
|
+
readonly ariaEllipsisLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
200
200
|
/**
|
|
201
201
|
* Factory function providing the href for a "Page" page anchor,
|
|
202
202
|
* based on the current page number
|
|
@@ -207,7 +207,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
207
207
|
* (_page: number) => PAGE_LINK_DEFAULT
|
|
208
208
|
* ```
|
|
209
209
|
*/
|
|
210
|
-
pageLink: ((pageNumber: number) => string) | undefined
|
|
210
|
+
readonly pageLink: import("@angular/core").InputSignal<((pageNumber: number) => string) | undefined>;
|
|
211
211
|
/**
|
|
212
212
|
* The template to use for the ellipsis slot
|
|
213
213
|
* for I18n, we suggest to use the global configuration
|
|
@@ -215,8 +215,8 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
215
215
|
*
|
|
216
216
|
* @defaultValue `'…'`
|
|
217
217
|
*/
|
|
218
|
-
ellipsisLabel: SlotContent<PaginationContext
|
|
219
|
-
slotEllipsisFromContent: PaginationEllipsisDirective | undefined
|
|
218
|
+
readonly ellipsisLabel: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
219
|
+
readonly slotEllipsisFromContent: import("@angular/core").Signal<PaginationEllipsisDirective | undefined>;
|
|
220
220
|
/**
|
|
221
221
|
* The template to use for the first slot
|
|
222
222
|
* for I18n, we suggest to use the global configuration
|
|
@@ -224,8 +224,8 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
224
224
|
*
|
|
225
225
|
* @defaultValue `'«'`
|
|
226
226
|
*/
|
|
227
|
-
firstPageLabel: SlotContent<PaginationContext
|
|
228
|
-
slotFirstFromContent: PaginationFirstDirective | undefined
|
|
227
|
+
readonly firstPageLabel: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
228
|
+
readonly slotFirstFromContent: import("@angular/core").Signal<PaginationFirstDirective | undefined>;
|
|
229
229
|
/**
|
|
230
230
|
* The template to use for the previous slot
|
|
231
231
|
* for I18n, we suggest to use the global configuration
|
|
@@ -233,8 +233,8 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
233
233
|
*
|
|
234
234
|
* @defaultValue `'‹'`
|
|
235
235
|
*/
|
|
236
|
-
previousPageLabel: SlotContent<PaginationContext
|
|
237
|
-
slotPreviousFromContent: PaginationPreviousDirective | undefined
|
|
236
|
+
readonly previousPageLabel: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
237
|
+
readonly slotPreviousFromContent: import("@angular/core").Signal<PaginationPreviousDirective | undefined>;
|
|
238
238
|
/**
|
|
239
239
|
* The template to use for the next slot
|
|
240
240
|
* for I18n, we suggest to use the global configuration
|
|
@@ -242,8 +242,8 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
242
242
|
*
|
|
243
243
|
* @defaultValue `'›'`
|
|
244
244
|
*/
|
|
245
|
-
nextPageLabel: SlotContent<PaginationContext
|
|
246
|
-
slotNextFromContent: PaginationNextDirective | undefined
|
|
245
|
+
readonly nextPageLabel: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
246
|
+
readonly slotNextFromContent: import("@angular/core").Signal<PaginationNextDirective | undefined>;
|
|
247
247
|
/**
|
|
248
248
|
* The template to use for the last slot
|
|
249
249
|
* for I18n, we suggest to use the global configuration
|
|
@@ -251,15 +251,15 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
251
251
|
*
|
|
252
252
|
* @defaultValue `'»'`
|
|
253
253
|
*/
|
|
254
|
-
lastPageLabel: SlotContent<PaginationContext
|
|
255
|
-
slotLastFromContent: PaginationLastDirective | undefined
|
|
254
|
+
readonly lastPageLabel: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
255
|
+
readonly slotLastFromContent: import("@angular/core").Signal<PaginationLastDirective | undefined>;
|
|
256
256
|
/**
|
|
257
257
|
* The template to use for the pages slot
|
|
258
258
|
* To use to customize the pages view
|
|
259
259
|
* override any configuration parameters provided for this
|
|
260
260
|
*/
|
|
261
|
-
pagesDisplay: SlotContent<PaginationContext
|
|
262
|
-
slotPagesFromContent: PaginationPagesDirective | undefined
|
|
261
|
+
readonly pagesDisplay: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
262
|
+
readonly slotPagesFromContent: import("@angular/core").Signal<PaginationPagesDirective | undefined>;
|
|
263
263
|
/**
|
|
264
264
|
* The template to use for the number slot
|
|
265
265
|
* override any configuration parameters provided for this
|
|
@@ -271,8 +271,8 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
271
271
|
* ({displayedPage}: PaginationNumberContext) => `${displayedPage}`
|
|
272
272
|
* ```
|
|
273
273
|
*/
|
|
274
|
-
numberLabel: SlotContent<PaginationNumberContext
|
|
275
|
-
slotNumberLabelFromContent: PaginationNumberDirective | undefined
|
|
274
|
+
readonly numberLabel: import("@angular/core").InputSignal<SlotContent<PaginationNumberContext>>;
|
|
275
|
+
readonly slotNumberLabelFromContent: import("@angular/core").Signal<PaginationNumberDirective | undefined>;
|
|
276
276
|
/**
|
|
277
277
|
* The template to use for the structure of the pagination component
|
|
278
278
|
* The default structure uses {@link PaginationProps.ellipsisLabel|ellipsisLabel}, {@link PaginationProps.firstPageLabel|firstPageLabel},
|
|
@@ -280,26 +280,26 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
280
280
|
* {@link PaginationProps.lastPageLabel|lastPageLabel}, {@link PaginationProps.pagesDisplay|pagesDisplay},
|
|
281
281
|
* {@link PaginationProps.numberLabel|numberLabel},
|
|
282
282
|
*/
|
|
283
|
-
structure: SlotContent<PaginationContext
|
|
284
|
-
slotStructureFromContent: PaginationStructureDirective | undefined
|
|
283
|
+
readonly structure: import("@angular/core").InputSignal<SlotContent<PaginationContext>>;
|
|
284
|
+
readonly slotStructureFromContent: import("@angular/core").Signal<PaginationStructureDirective | undefined>;
|
|
285
285
|
/**
|
|
286
286
|
* If `true`, pagination links will be disabled.
|
|
287
287
|
*
|
|
288
288
|
* @defaultValue `false`
|
|
289
289
|
*/
|
|
290
|
-
disabled: boolean | undefined
|
|
290
|
+
readonly disabled: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
291
291
|
/**
|
|
292
292
|
* If `true`, the "First" and "Last" page links are shown.
|
|
293
293
|
*
|
|
294
294
|
* @defaultValue `false`
|
|
295
295
|
*/
|
|
296
|
-
boundaryLinks: boolean | undefined
|
|
296
|
+
readonly boundaryLinks: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
297
297
|
/**
|
|
298
298
|
* If `true`, the "Next" and "Previous" page links are shown.
|
|
299
299
|
*
|
|
300
300
|
* @defaultValue `true`
|
|
301
301
|
*/
|
|
302
|
-
directionLinks: boolean | undefined
|
|
302
|
+
readonly directionLinks: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
303
303
|
/**
|
|
304
304
|
* The number of items in your paginated collection.
|
|
305
305
|
*
|
|
@@ -312,7 +312,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
312
312
|
*
|
|
313
313
|
* @defaultValue `0`
|
|
314
314
|
*/
|
|
315
|
-
collectionSize: number | undefined
|
|
315
|
+
readonly collectionSize: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
316
316
|
/**
|
|
317
317
|
* The current page.
|
|
318
318
|
*
|
|
@@ -320,14 +320,14 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
320
320
|
*
|
|
321
321
|
* @defaultValue `1`
|
|
322
322
|
*/
|
|
323
|
-
page: number | undefined
|
|
323
|
+
readonly page: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
324
324
|
/**
|
|
325
325
|
* The number of items per page.
|
|
326
326
|
* @remarks min value is 1
|
|
327
327
|
*
|
|
328
328
|
* @defaultValue `10`
|
|
329
329
|
*/
|
|
330
|
-
pageSize: number | undefined
|
|
330
|
+
readonly pageSize: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
331
331
|
/**
|
|
332
332
|
* The pagination display size.
|
|
333
333
|
*
|
|
@@ -335,7 +335,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
335
335
|
*
|
|
336
336
|
* @defaultValue `null`
|
|
337
337
|
*/
|
|
338
|
-
size:
|
|
338
|
+
readonly size: import("@angular/core").InputSignal<"sm" | "lg" | null | undefined>;
|
|
339
339
|
/**
|
|
340
340
|
* pagesFactory returns a function computing the array of pages to be displayed
|
|
341
341
|
* as number (-1 are treated as ellipsis).
|
|
@@ -354,7 +354,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
354
354
|
* }
|
|
355
355
|
* ```
|
|
356
356
|
*/
|
|
357
|
-
pagesFactory: ((page: number, pageCount: number) => number[]) | undefined
|
|
357
|
+
readonly pagesFactory: import("@angular/core").InputSignal<((page: number, pageCount: number) => number[]) | undefined>;
|
|
358
358
|
/**
|
|
359
359
|
* An event fired when the page is changed.
|
|
360
360
|
*
|
|
@@ -366,20 +366,14 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
|
|
|
366
366
|
* () => {}
|
|
367
367
|
* ```
|
|
368
368
|
*/
|
|
369
|
-
pageChange:
|
|
369
|
+
readonly pageChange: import("@angular/core").OutputEmitterRef<number>;
|
|
370
370
|
/**
|
|
371
371
|
* CSS classes to be applied on the widget main container
|
|
372
372
|
*
|
|
373
373
|
* @defaultValue `''`
|
|
374
374
|
*/
|
|
375
|
-
className: string | undefined
|
|
375
|
+
readonly className: import("@angular/core").InputSignal<string | undefined>;
|
|
376
376
|
constructor();
|
|
377
377
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
378
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "[auPagination]", never, { "ariaPageLabel": { "alias": "auAriaPageLabel"; "required": false; }; "ariaLiveLabel": { "alias": "auAriaLiveLabel"; "required": false; }; "ariaLabel": { "alias": "auAriaLabel"; "required": false; }; "activeLabel": { "alias": "auActiveLabel"; "required": false; }; "ariaFirstLabel": { "alias": "auAriaFirstLabel"; "required": false; }; "ariaPreviousLabel": { "alias": "auAriaPreviousLabel"; "required": false; }; "ariaNextLabel": { "alias": "auAriaNextLabel"; "required": false; }; "ariaLastLabel": { "alias": "auAriaLastLabel"; "required": false; }; "ariaEllipsisLabel": { "alias": "auAriaEllipsisLabel"; "required": false; }; "pageLink": { "alias": "auPageLink"; "required": false; }; "ellipsisLabel": { "alias": "auEllipsisLabel"; "required": false; }; "firstPageLabel": { "alias": "auFirstPageLabel"; "required": false; }; "previousPageLabel": { "alias": "auPreviousPageLabel"; "required": false; }; "nextPageLabel": { "alias": "auNextPageLabel"; "required": false; }; "lastPageLabel": { "alias": "auLastPageLabel"; "required": false; }; "pagesDisplay": { "alias": "auPagesDisplay"; "required": false; }; "numberLabel": { "alias": "auNumberLabel"; "required": false; }; "structure": { "alias": "auStructure"; "required": false; }; "disabled": { "alias": "auDisabled"; "required": false; }; "boundaryLinks": { "alias": "auBoundaryLinks"; "required": false; }; "directionLinks": { "alias": "auDirectionLinks"; "required": false; }; "collectionSize": { "alias": "auCollectionSize"; "required": false; }; "page": { "alias": "auPage"; "required": false; }; "pageSize": { "alias": "auPageSize"; "required": false; }; "size": { "alias": "auSize"; "required": false; }; "pagesFactory": { "alias": "auPagesFactory"; "required": false; }; "className": { "alias": "auClassName"; "required": false; }; }, { "pageChange": "auPageChange"; }, ["slotEllipsisFromContent", "slotFirstFromContent", "slotPreviousFromContent", "slotNextFromContent", "slotLastFromContent", "slotPagesFromContent", "slotNumberLabelFromContent", "slotStructureFromContent"], never, true, never>;
|
|
379
|
-
static ngAcceptInputType_disabled: unknown;
|
|
380
|
-
static ngAcceptInputType_boundaryLinks: unknown;
|
|
381
|
-
static ngAcceptInputType_directionLinks: unknown;
|
|
382
|
-
static ngAcceptInputType_collectionSize: unknown;
|
|
383
|
-
static ngAcceptInputType_page: unknown;
|
|
384
|
-
static ngAcceptInputType_pageSize: unknown;
|
|
378
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "[auPagination]", never, { "ariaPageLabel": { "alias": "auAriaPageLabel"; "required": false; "isSignal": true; }; "ariaLiveLabel": { "alias": "auAriaLiveLabel"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "auAriaLabel"; "required": false; "isSignal": true; }; "activeLabel": { "alias": "auActiveLabel"; "required": false; "isSignal": true; }; "ariaFirstLabel": { "alias": "auAriaFirstLabel"; "required": false; "isSignal": true; }; "ariaPreviousLabel": { "alias": "auAriaPreviousLabel"; "required": false; "isSignal": true; }; "ariaNextLabel": { "alias": "auAriaNextLabel"; "required": false; "isSignal": true; }; "ariaLastLabel": { "alias": "auAriaLastLabel"; "required": false; "isSignal": true; }; "ariaEllipsisLabel": { "alias": "auAriaEllipsisLabel"; "required": false; "isSignal": true; }; "pageLink": { "alias": "auPageLink"; "required": false; "isSignal": true; }; "ellipsisLabel": { "alias": "auEllipsisLabel"; "required": false; "isSignal": true; }; "firstPageLabel": { "alias": "auFirstPageLabel"; "required": false; "isSignal": true; }; "previousPageLabel": { "alias": "auPreviousPageLabel"; "required": false; "isSignal": true; }; "nextPageLabel": { "alias": "auNextPageLabel"; "required": false; "isSignal": true; }; "lastPageLabel": { "alias": "auLastPageLabel"; "required": false; "isSignal": true; }; "pagesDisplay": { "alias": "auPagesDisplay"; "required": false; "isSignal": true; }; "numberLabel": { "alias": "auNumberLabel"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "disabled": { "alias": "auDisabled"; "required": false; "isSignal": true; }; "boundaryLinks": { "alias": "auBoundaryLinks"; "required": false; "isSignal": true; }; "directionLinks": { "alias": "auDirectionLinks"; "required": false; "isSignal": true; }; "collectionSize": { "alias": "auCollectionSize"; "required": false; "isSignal": true; }; "page": { "alias": "auPage"; "required": false; "isSignal": true; }; "pageSize": { "alias": "auPageSize"; "required": false; "isSignal": true; }; "size": { "alias": "auSize"; "required": false; "isSignal": true; }; "pagesFactory": { "alias": "auPagesFactory"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; }, { "pageChange": "auPageChange"; }, ["slotEllipsisFromContent", "slotFirstFromContent", "slotPreviousFromContent", "slotNextFromContent", "slotLastFromContent", "slotPagesFromContent", "slotNumberLabelFromContent", "slotStructureFromContent"], never, true, never>;
|
|
385
379
|
}
|
|
@@ -41,60 +41,60 @@ export declare class ProgressbarComponent extends BaseWidgetDirective<Progressba
|
|
|
41
41
|
*
|
|
42
42
|
* @defaultValue `'Progressbar'`
|
|
43
43
|
*/
|
|
44
|
-
ariaLabel: string | undefined
|
|
44
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
45
45
|
/**
|
|
46
46
|
* The minimum value.
|
|
47
47
|
*
|
|
48
48
|
* @defaultValue `0`
|
|
49
49
|
*/
|
|
50
|
-
min: number | undefined
|
|
50
|
+
readonly min: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
51
51
|
/**
|
|
52
52
|
* The maximum value.
|
|
53
53
|
*
|
|
54
54
|
* @defaultValue `100`
|
|
55
55
|
*/
|
|
56
|
-
max: number | undefined
|
|
56
|
+
readonly max: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
57
57
|
/**
|
|
58
58
|
* The current value.
|
|
59
59
|
*
|
|
60
60
|
* @defaultValue `0`
|
|
61
61
|
*/
|
|
62
|
-
value: number | undefined
|
|
62
|
+
readonly value: import("@angular/core").InputSignalWithTransform<number | undefined, unknown>;
|
|
63
63
|
/**
|
|
64
64
|
* CSS classes to be applied on the widget main container
|
|
65
65
|
*
|
|
66
66
|
* @defaultValue `''`
|
|
67
67
|
*/
|
|
68
|
-
className: string | undefined
|
|
68
|
+
readonly className: import("@angular/core").InputSignal<string | undefined>;
|
|
69
69
|
/**
|
|
70
70
|
* Label of the progress.
|
|
71
71
|
*/
|
|
72
|
-
children: SlotContent<ProgressbarContext
|
|
73
|
-
slotDefaultFromContent: ProgressbarBodyDirective | undefined
|
|
72
|
+
readonly children: import("@angular/core").InputSignal<SlotContent<ProgressbarContext>>;
|
|
73
|
+
readonly slotDefaultFromContent: import("@angular/core").Signal<ProgressbarBodyDirective | undefined>;
|
|
74
74
|
/**
|
|
75
75
|
* Global template for the Progressbar.
|
|
76
76
|
*/
|
|
77
|
-
structure: SlotContent<ProgressbarContext
|
|
78
|
-
slotStructureFromContent: ProgressbarStructureDirective | undefined
|
|
77
|
+
readonly structure: import("@angular/core").InputSignal<SlotContent<ProgressbarContext>>;
|
|
78
|
+
readonly slotStructureFromContent: import("@angular/core").Signal<ProgressbarStructureDirective | undefined>;
|
|
79
79
|
/**
|
|
80
80
|
* Height of the progressbar, can be any valid css height value.
|
|
81
81
|
*
|
|
82
82
|
* @defaultValue `''`
|
|
83
83
|
*/
|
|
84
|
-
height: string | undefined
|
|
84
|
+
readonly height: import("@angular/core").InputSignal<string | undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* If `true`, animates a striped progressbar.
|
|
87
87
|
* Takes effect only for browsers supporting CSS3 animations, and if `striped` is `true`.
|
|
88
88
|
*
|
|
89
89
|
* @defaultValue `false`
|
|
90
90
|
*/
|
|
91
|
-
animated: boolean | undefined
|
|
91
|
+
readonly animated: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
92
92
|
/**
|
|
93
93
|
* If `true`, shows a striped progressbar.
|
|
94
94
|
*
|
|
95
95
|
* @defaultValue `false`
|
|
96
96
|
*/
|
|
97
|
-
striped: boolean | undefined
|
|
97
|
+
readonly striped: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
98
98
|
/**
|
|
99
99
|
* Return the value for the 'aria-valuetext' attribute.
|
|
100
100
|
* @param value - current value
|
|
@@ -106,18 +106,13 @@ export declare class ProgressbarComponent extends BaseWidgetDirective<Progressba
|
|
|
106
106
|
* () => undefined
|
|
107
107
|
* ```
|
|
108
108
|
*/
|
|
109
|
-
ariaValueTextFn: ((value: number, minimum: number, maximum: number) => string | undefined) | undefined
|
|
109
|
+
readonly ariaValueTextFn: import("@angular/core").InputSignal<((value: number, minimum: number, maximum: number) => string | undefined) | undefined>;
|
|
110
110
|
/**
|
|
111
111
|
* Type of the progressbar, following bootstrap types.
|
|
112
112
|
*/
|
|
113
|
-
type: BSContextualClass | undefined
|
|
114
|
-
slotChildren
|
|
113
|
+
readonly type: import("@angular/core").InputSignal<BSContextualClass | undefined>;
|
|
114
|
+
readonly slotChildren: import("@angular/core").Signal<TemplateRef<void> | undefined>;
|
|
115
115
|
constructor();
|
|
116
116
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressbarComponent, never>;
|
|
117
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressbarComponent, "[auProgressbar]", never, { "ariaLabel": { "alias": "auAriaLabel"; "required": false; }; "min": { "alias": "auMin"; "required": false; }; "max": { "alias": "auMax"; "required": false; }; "value": { "alias": "auValue"; "required": false; }; "className": { "alias": "auClassName"; "required": false; }; "children": { "alias": "auChildren"; "required": false; }; "structure": { "alias": "auStructure"; "required": false; }; "height": { "alias": "auHeight"; "required": false; }; "animated": { "alias": "auAnimated"; "required": false; }; "striped": { "alias": "auStriped"; "required": false; }; "ariaValueTextFn": { "alias": "auAriaValueTextFn"; "required": false; }; "type": { "alias": "auType"; "required": false; }; }, {}, ["slotDefaultFromContent", "slotStructureFromContent"], ["*"], true, never>;
|
|
118
|
-
static ngAcceptInputType_min: unknown;
|
|
119
|
-
static ngAcceptInputType_max: unknown;
|
|
120
|
-
static ngAcceptInputType_value: unknown;
|
|
121
|
-
static ngAcceptInputType_animated: unknown;
|
|
122
|
-
static ngAcceptInputType_striped: unknown;
|
|
117
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressbarComponent, "[auProgressbar]", never, { "ariaLabel": { "alias": "auAriaLabel"; "required": false; "isSignal": true; }; "min": { "alias": "auMin"; "required": false; "isSignal": true; }; "max": { "alias": "auMax"; "required": false; "isSignal": true; }; "value": { "alias": "auValue"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; "children": { "alias": "auChildren"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "height": { "alias": "auHeight"; "required": false; "isSignal": true; }; "animated": { "alias": "auAnimated"; "required": false; "isSignal": true; }; "striped": { "alias": "auStriped"; "required": false; "isSignal": true; }; "ariaValueTextFn": { "alias": "auAriaValueTextFn"; "required": false; "isSignal": true; }; "type": { "alias": "auType"; "required": false; "isSignal": true; }; }, {}, ["slotDefaultFromContent", "slotStructureFromContent"], ["*"], true, never>;
|
|
123
118
|
}
|