@agnos-ui/angular-bootstrap 0.4.0-next.0 → 0.4.0-next.1

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.
@@ -122,19 +122,19 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
122
122
  fullscreen: boolean | undefined;
123
123
  /**
124
124
  * Structure of the modal.
125
- * The default structure uses ModalCommonPropsAndState.slotHeader slotHeader, ModalCommonPropsAndState.children children and ModalCommonPropsAndState.slotFooter slotFooter.
125
+ * The default structure uses ModalCommonPropsAndState.header header, ModalCommonPropsAndState.children children and ModalCommonPropsAndState.footer footer.
126
126
  */
127
- slotStructure: SlotContent<ModalContext<Data>>;
127
+ structure: SlotContent<ModalContext<Data>>;
128
128
  slotStructureFromContent: ModalStructureDirective<Data> | undefined;
129
129
  /**
130
- * Header of the modal. The default header includes ModalCommonPropsAndState.slotTitle slotTitle.
130
+ * Header of the modal. The default header includes ModalCommonPropsAndState.title title.
131
131
  */
132
- slotHeader: SlotContent<ModalContext<Data>>;
132
+ header: SlotContent<ModalContext<Data>>;
133
133
  slotHeaderFromContent: ModalHeaderDirective<Data> | undefined;
134
134
  /**
135
135
  * Title of the modal.
136
136
  */
137
- slotTitle: SlotContent<ModalContext<Data>>;
137
+ title: SlotContent<ModalContext<Data>>;
138
138
  slotTitleFromContent: ModalTitleDirective<Data> | undefined;
139
139
  /**
140
140
  * Body of the modal.
@@ -144,7 +144,7 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
144
144
  /**
145
145
  * Footer of the modal.
146
146
  */
147
- slotFooter: SlotContent<ModalContext<Data>>;
147
+ footer: SlotContent<ModalContext<Data>>;
148
148
  slotFooterFromContent: ModalFooterDirective<Data> | undefined;
149
149
  /**
150
150
  * Data to use in content slots
@@ -170,7 +170,7 @@ export declare class ModalComponent<Data> extends BaseWidgetDirective<ModalWidge
170
170
  readonly _widget: import("@agnos-ui/angular-headless").AngularWidget<ModalWidget<Data>>;
171
171
  ngAfterContentChecked(): void;
172
172
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent<any>, never>;
173
- 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; }; "slotStructure": { "alias": "auSlotStructure"; "required": false; }; "slotHeader": { "alias": "auSlotHeader"; "required": false; }; "slotTitle": { "alias": "auSlotTitle"; "required": false; }; "children": { "alias": "auChildren"; "required": false; }; "slotFooter": { "alias": "auSlotFooter"; "required": false; }; "contentData": { "alias": "auContentData"; "required": false; }; }, { "visibleChange": "auVisibleChange"; "beforeClose": "auBeforeClose"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotStructureFromContent", "slotHeaderFromContent", "slotTitleFromContent", "slotDefaultFromContent", "slotFooterFromContent"], ["*"], true, never>;
173
+ 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>;
174
174
  static ngAcceptInputType_animated: unknown;
175
175
  static ngAcceptInputType_visible: unknown;
176
176
  static ngAcceptInputType_backdrop: unknown;
@@ -55,20 +55,20 @@ export interface ModalState<Data> {
55
55
  /**
56
56
  * Footer of the modal.
57
57
  */
58
- slotFooter: SlotContent<ModalContext<Data>>;
58
+ footer: SlotContent<ModalContext<Data>>;
59
59
  /**
60
- * Header of the modal. The default header includes {@link ModalCommonPropsAndState.slotTitle slotTitle}.
60
+ * Header of the modal. The default header includes {@link ModalCommonPropsAndState.title title}.
61
61
  */
62
- slotHeader: SlotContent<ModalContext<Data>>;
62
+ header: SlotContent<ModalContext<Data>>;
63
63
  /**
64
64
  * Structure of the modal.
65
- * The default structure uses {@link ModalCommonPropsAndState.slotHeader slotHeader}, {@link ModalCommonPropsAndState.children children} and {@link ModalCommonPropsAndState.slotFooter slotFooter}.
65
+ * The default structure uses {@link ModalCommonPropsAndState.header header}, {@link ModalCommonPropsAndState.children children} and {@link ModalCommonPropsAndState.footer footer}.
66
66
  */
67
- slotStructure: SlotContent<ModalContext<Data>>;
67
+ structure: SlotContent<ModalContext<Data>>;
68
68
  /**
69
69
  * Title of the modal.
70
70
  */
71
- slotTitle: SlotContent<ModalContext<Data>>;
71
+ title: SlotContent<ModalContext<Data>>;
72
72
  /**
73
73
  * Option to create a fullscreen modal, according to the bootstrap documentation.
74
74
  */
@@ -148,20 +148,20 @@ export interface ModalProps<Data> {
148
148
  /**
149
149
  * Footer of the modal.
150
150
  */
151
- slotFooter: SlotContent<ModalContext<Data>>;
151
+ footer: SlotContent<ModalContext<Data>>;
152
152
  /**
153
- * Header of the modal. The default header includes {@link ModalCommonPropsAndState.slotTitle slotTitle}.
153
+ * Header of the modal. The default header includes {@link ModalCommonPropsAndState.title title}.
154
154
  */
155
- slotHeader: SlotContent<ModalContext<Data>>;
155
+ header: SlotContent<ModalContext<Data>>;
156
156
  /**
157
157
  * Structure of the modal.
158
- * The default structure uses {@link ModalCommonPropsAndState.slotHeader slotHeader}, {@link ModalCommonPropsAndState.children children} and {@link ModalCommonPropsAndState.slotFooter slotFooter}.
158
+ * The default structure uses {@link ModalCommonPropsAndState.header header}, {@link ModalCommonPropsAndState.children children} and {@link ModalCommonPropsAndState.footer footer}.
159
159
  */
160
- slotStructure: SlotContent<ModalContext<Data>>;
160
+ structure: SlotContent<ModalContext<Data>>;
161
161
  /**
162
162
  * Title of the modal.
163
163
  */
164
- slotTitle: SlotContent<ModalContext<Data>>;
164
+ title: SlotContent<ModalContext<Data>>;
165
165
  /**
166
166
  * Option to create a fullscreen modal, according to the bootstrap documentation.
167
167
  */
@@ -170,58 +170,58 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
170
170
  * for I18n, we suggest to use the global configuration
171
171
  * override any configuration parameters provided for this
172
172
  */
173
- slotEllipsis: SlotContent<PaginationContext>;
173
+ ellipsisLabel: SlotContent<PaginationContext>;
174
174
  slotEllipsisFromContent: PaginationEllipsisDirective | undefined;
175
175
  /**
176
176
  * The template to use for the first slot
177
177
  * for I18n, we suggest to use the global configuration
178
178
  * override any configuration parameters provided for this
179
179
  */
180
- slotFirst: SlotContent<PaginationContext>;
180
+ firstPageLabel: SlotContent<PaginationContext>;
181
181
  slotFirstFromContent: PaginationFirstDirective | undefined;
182
182
  /**
183
183
  * The template to use for the previous slot
184
184
  * for I18n, we suggest to use the global configuration
185
185
  * override any configuration parameters provided for this
186
186
  */
187
- slotPrevious: SlotContent<PaginationContext>;
187
+ previousPageLabel: SlotContent<PaginationContext>;
188
188
  slotPreviousFromContent: PaginationPreviousDirective | undefined;
189
189
  /**
190
190
  * The template to use for the next slot
191
191
  * for I18n, we suggest to use the global configuration
192
192
  * override any configuration parameters provided for this
193
193
  */
194
- slotNext: SlotContent<PaginationContext>;
194
+ nextPageLabel: SlotContent<PaginationContext>;
195
195
  slotNextFromContent: PaginationNextDirective | undefined;
196
196
  /**
197
197
  * The template to use for the last slot
198
198
  * for I18n, we suggest to use the global configuration
199
199
  * override any configuration parameters provided for this
200
200
  */
201
- slotLast: SlotContent<PaginationContext>;
201
+ lastPageLabel: SlotContent<PaginationContext>;
202
202
  slotLastFromContent: PaginationLastDirective | undefined;
203
203
  /**
204
204
  * The template to use for the pages slot
205
205
  * To use to customize the pages view
206
206
  * override any configuration parameters provided for this
207
207
  */
208
- slotPages: SlotContent<PaginationContext>;
208
+ pagesDisplay: SlotContent<PaginationContext>;
209
209
  slotPagesFromContent: PaginationPagesDirective | undefined;
210
210
  /**
211
211
  * The template to use for the number slot
212
212
  * override any configuration parameters provided for this
213
213
  * for I18n, we suggest to use the global configuration
214
214
  */
215
- slotNumberLabel: SlotContent<PaginationNumberContext>;
215
+ numberLabel: SlotContent<PaginationNumberContext>;
216
216
  slotNumberLabelFromContent: PaginationNumberDirective | undefined;
217
217
  /**
218
218
  * The template to use for the structure of the pagination component
219
- * The default structure uses PaginationCommonPropsAndState.slotEllipsis slotEllipsis, PaginationCommonPropsAndState.slotFirst slotFirst,
220
- * PaginationCommonPropsAndState.slotPrevious slotPrevious, PaginationCommonPropsAndState.slotNext slotNext,
221
- * PaginationCommonPropsAndState.slotLast slotLast, PaginationCommonPropsAndState.slotPages slotPages,
222
- * PaginationCommonPropsAndState.slotNumberLabel slotNumberLabel,
219
+ * The default structure uses PaginationProps.ellipsisLabelellipsisLabel , PaginationProps.firstPageLabelfirstPageLabel ,
220
+ * PaginationProps.previousPageLabelpreviousPageLabel , PaginationProps.nextPageLabelnextPageLabel ,
221
+ * PaginationProps.lastPageLabellastPageLabel , PaginationProps.pagesDisplaypagesDisplay ,
222
+ * PaginationProps.numberLabelnumberLabel ,
223
223
  */
224
- slotStructure: SlotContent<PaginationContext>;
224
+ structure: SlotContent<PaginationContext>;
225
225
  slotStructureFromContent: PaginationStructureDirective | undefined;
226
226
  /**
227
227
  * If `true`, pagination links will be disabled.
@@ -284,7 +284,7 @@ export declare class PaginationComponent extends BaseWidgetDirective<PaginationW
284
284
  className: string | undefined;
285
285
  ngAfterContentChecked(): void;
286
286
  static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
287
- 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; }; "slotEllipsis": { "alias": "auSlotEllipsis"; "required": false; }; "slotFirst": { "alias": "auSlotFirst"; "required": false; }; "slotPrevious": { "alias": "auSlotPrevious"; "required": false; }; "slotNext": { "alias": "auSlotNext"; "required": false; }; "slotLast": { "alias": "auSlotLast"; "required": false; }; "slotPages": { "alias": "auSlotPages"; "required": false; }; "slotNumberLabel": { "alias": "auSlotNumberLabel"; "required": false; }; "slotStructure": { "alias": "auSlotStructure"; "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>;
287
+ 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>;
288
288
  static ngAcceptInputType_disabled: unknown;
289
289
  static ngAcceptInputType_boundaryLinks: unknown;
290
290
  static ngAcceptInputType_directionLinks: unknown;
@@ -112,54 +112,54 @@ export interface PaginationState {
112
112
  className: string;
113
113
  /**
114
114
  * The template to use for the structure of the pagination component
115
- * The default structure uses {@link PaginationCommonPropsAndState.slotEllipsis slotEllipsis}, {@link PaginationCommonPropsAndState.slotFirst slotFirst},
116
- * {@link PaginationCommonPropsAndState.slotPrevious slotPrevious}, {@link PaginationCommonPropsAndState.slotNext slotNext},
117
- * {@link PaginationCommonPropsAndState.slotLast slotLast}, {@link PaginationCommonPropsAndState.slotPages slotPages},
118
- * {@link PaginationCommonPropsAndState.slotNumberLabel slotNumberLabel},
115
+ * The default structure uses {@link PaginationProps.ellipsisLabelellipsisLabel}, {@link PaginationProps.firstPageLabelfirstPageLabel},
116
+ * {@link PaginationProps.previousPageLabelpreviousPageLabel}, {@link PaginationProps.nextPageLabelnextPageLabel},
117
+ * {@link PaginationProps.lastPageLabellastPageLabel}, {@link PaginationProps.pagesDisplaypagesDisplay},
118
+ * {@link PaginationProps.numberLabelnumberLabel},
119
119
  */
120
- slotStructure: SlotContent<PaginationContext>;
120
+ structure: SlotContent<PaginationContext>;
121
121
  /**
122
122
  * The template to use for the ellipsis slot
123
123
  * for I18n, we suggest to use the global configuration
124
124
  * override any configuration parameters provided for this
125
125
  */
126
- slotEllipsis: SlotContent<PaginationContext>;
126
+ ellipsisLabel: SlotContent<PaginationContext>;
127
127
  /**
128
128
  * The template to use for the first slot
129
129
  * for I18n, we suggest to use the global configuration
130
130
  * override any configuration parameters provided for this
131
131
  */
132
- slotFirst: SlotContent<PaginationContext>;
132
+ firstPageLabel: SlotContent<PaginationContext>;
133
133
  /**
134
134
  * The template to use for the previous slot
135
135
  * for I18n, we suggest to use the global configuration
136
136
  * override any configuration parameters provided for this
137
137
  */
138
- slotPrevious: SlotContent<PaginationContext>;
138
+ previousPageLabel: SlotContent<PaginationContext>;
139
139
  /**
140
140
  * The template to use for the next slot
141
141
  * for I18n, we suggest to use the global configuration
142
142
  * override any configuration parameters provided for this
143
143
  */
144
- slotNext: SlotContent<PaginationContext>;
144
+ nextPageLabel: SlotContent<PaginationContext>;
145
145
  /**
146
146
  * The template to use for the last slot
147
147
  * for I18n, we suggest to use the global configuration
148
148
  * override any configuration parameters provided for this
149
149
  */
150
- slotLast: SlotContent<PaginationContext>;
150
+ lastPageLabel: SlotContent<PaginationContext>;
151
151
  /**
152
152
  * The template to use for the pages slot
153
153
  * To use to customize the pages view
154
154
  * override any configuration parameters provided for this
155
155
  */
156
- slotPages: SlotContent<PaginationContext>;
156
+ pagesDisplay: SlotContent<PaginationContext>;
157
157
  /**
158
158
  * The template to use for the number slot
159
159
  * override any configuration parameters provided for this
160
160
  * for I18n, we suggest to use the global configuration
161
161
  */
162
- slotNumberLabel: SlotContent<PaginationNumberContext>;
162
+ numberLabel: SlotContent<PaginationNumberContext>;
163
163
  }
164
164
  export interface PaginationProps {
165
165
  /**
@@ -283,54 +283,54 @@ export interface PaginationProps {
283
283
  className: string;
284
284
  /**
285
285
  * The template to use for the structure of the pagination component
286
- * The default structure uses {@link PaginationCommonPropsAndState.slotEllipsis slotEllipsis}, {@link PaginationCommonPropsAndState.slotFirst slotFirst},
287
- * {@link PaginationCommonPropsAndState.slotPrevious slotPrevious}, {@link PaginationCommonPropsAndState.slotNext slotNext},
288
- * {@link PaginationCommonPropsAndState.slotLast slotLast}, {@link PaginationCommonPropsAndState.slotPages slotPages},
289
- * {@link PaginationCommonPropsAndState.slotNumberLabel slotNumberLabel},
286
+ * The default structure uses {@link PaginationProps.ellipsisLabelellipsisLabel}, {@link PaginationProps.firstPageLabelfirstPageLabel},
287
+ * {@link PaginationProps.previousPageLabelpreviousPageLabel}, {@link PaginationProps.nextPageLabelnextPageLabel},
288
+ * {@link PaginationProps.lastPageLabellastPageLabel}, {@link PaginationProps.pagesDisplaypagesDisplay},
289
+ * {@link PaginationProps.numberLabelnumberLabel},
290
290
  */
291
- slotStructure: SlotContent<PaginationContext>;
291
+ structure: SlotContent<PaginationContext>;
292
292
  /**
293
293
  * The template to use for the ellipsis slot
294
294
  * for I18n, we suggest to use the global configuration
295
295
  * override any configuration parameters provided for this
296
296
  */
297
- slotEllipsis: SlotContent<PaginationContext>;
297
+ ellipsisLabel: SlotContent<PaginationContext>;
298
298
  /**
299
299
  * The template to use for the first slot
300
300
  * for I18n, we suggest to use the global configuration
301
301
  * override any configuration parameters provided for this
302
302
  */
303
- slotFirst: SlotContent<PaginationContext>;
303
+ firstPageLabel: SlotContent<PaginationContext>;
304
304
  /**
305
305
  * The template to use for the previous slot
306
306
  * for I18n, we suggest to use the global configuration
307
307
  * override any configuration parameters provided for this
308
308
  */
309
- slotPrevious: SlotContent<PaginationContext>;
309
+ previousPageLabel: SlotContent<PaginationContext>;
310
310
  /**
311
311
  * The template to use for the next slot
312
312
  * for I18n, we suggest to use the global configuration
313
313
  * override any configuration parameters provided for this
314
314
  */
315
- slotNext: SlotContent<PaginationContext>;
315
+ nextPageLabel: SlotContent<PaginationContext>;
316
316
  /**
317
317
  * The template to use for the last slot
318
318
  * for I18n, we suggest to use the global configuration
319
319
  * override any configuration parameters provided for this
320
320
  */
321
- slotLast: SlotContent<PaginationContext>;
321
+ lastPageLabel: SlotContent<PaginationContext>;
322
322
  /**
323
323
  * The template to use for the pages slot
324
324
  * To use to customize the pages view
325
325
  * override any configuration parameters provided for this
326
326
  */
327
- slotPages: SlotContent<PaginationContext>;
327
+ pagesDisplay: SlotContent<PaginationContext>;
328
328
  /**
329
329
  * The template to use for the number slot
330
330
  * override any configuration parameters provided for this
331
331
  * for I18n, we suggest to use the global configuration
332
332
  */
333
- slotNumberLabel: SlotContent<PaginationNumberContext>;
333
+ numberLabel: SlotContent<PaginationNumberContext>;
334
334
  }
335
335
  export type PaginationWidget = Widget<PaginationProps, PaginationState, PaginationApi, PaginationActions, PaginationDirectives>;
336
336
  export interface DirectionsHrefs {
@@ -48,7 +48,7 @@ export declare class ProgressbarComponent extends BaseWidgetDirective<Progressba
48
48
  /**
49
49
  * Global template for the Progressbar.
50
50
  */
51
- slotStructure: SlotContent<ProgressbarContext>;
51
+ structure: SlotContent<ProgressbarContext>;
52
52
  slotStructureFromContent: ProgressbarStructureDirective | undefined;
53
53
  /**
54
54
  * Height of the progressbar, can be any valid css height value.
@@ -74,7 +74,7 @@ export declare class ProgressbarComponent extends BaseWidgetDirective<Progressba
74
74
  readonly _widget: import("@agnos-ui/angular-headless").AngularWidget<ProgressbarWidget>;
75
75
  ngAfterContentChecked(): void;
76
76
  static ɵfac: i0.ɵɵFactoryDeclaration<ProgressbarComponent, never>;
77
- 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; }; "slotStructure": { "alias": "auSlotStructure"; "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; }; }, {}, ["slotStructureFromContent"], ["*"], true, never>;
77
+ 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; }; }, {}, ["slotStructureFromContent"], ["*"], true, never>;
78
78
  static ngAcceptInputType_min: unknown;
79
79
  static ngAcceptInputType_max: unknown;
80
80
  static ngAcceptInputType_value: unknown;
@@ -41,7 +41,7 @@ export interface ProgressbarState {
41
41
  /**
42
42
  * Global template for the Progressbar.
43
43
  */
44
- slotStructure: SlotContent<ProgressbarContext>;
44
+ structure: SlotContent<ProgressbarContext>;
45
45
  /**
46
46
  * Label of the progress.
47
47
  */
@@ -92,7 +92,7 @@ export interface ProgressbarProps {
92
92
  /**
93
93
  * Global template for the Progressbar.
94
94
  */
95
- slotStructure: SlotContent<ProgressbarContext>;
95
+ structure: SlotContent<ProgressbarContext>;
96
96
  /**
97
97
  * Label of the progress.
98
98
  */