@agnos-ui/angular-bootstrap 0.3.0 → 0.4.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.
- package/agnos-ui-angular.module.d.ts +1 -1
- package/components/accordion/accordion.component.d.ts +63 -97
- package/components/accordion/accordion.d.ts +5 -10
- package/components/accordion/accordion.gen.d.ts +342 -0
- package/components/alert/alert.component.d.ts +11 -5
- package/components/alert/alert.d.ts +4 -6
- package/components/alert/alert.gen.d.ts +118 -0
- package/components/modal/modal.component.d.ts +24 -8
- package/components/modal/modal.d.ts +5 -8
- package/components/modal/modal.gen.d.ts +238 -0
- package/components/pagination/pagination.component.d.ts +42 -0
- package/components/pagination/pagination.d.ts +4 -7
- package/components/pagination/pagination.gen.d.ts +394 -0
- package/components/progressbar/progressbar.component.d.ts +8 -2
- package/components/progressbar/progressbar.d.ts +4 -6
- package/components/progressbar/progressbar.gen.d.ts +126 -0
- package/components/rating/rating.component.d.ts +6 -3
- package/components/rating/rating.d.ts +4 -5
- package/components/rating/rating.gen.d.ts +179 -0
- package/components/select/select.component.d.ts +16 -8
- package/components/select/select.d.ts +4 -7
- package/components/select/select.gen.d.ts +291 -0
- package/components/slider/slider.component.d.ts +13 -4
- package/components/slider/slider.d.ts +4 -8
- package/components/slider/slider.gen.d.ts +293 -0
- package/components/toast/toast.component.d.ts +15 -6
- package/components/toast/toast.d.ts +4 -6
- package/components/toast/toast.gen.d.ts +145 -0
- package/config.d.ts +3 -5
- package/config.gen.d.ts +47 -0
- package/esm2022/agnos-ui-angular.module.mjs +5 -5
- package/esm2022/components/accordion/accordion.component.mjs +121 -155
- package/esm2022/components/accordion/accordion.gen.mjs +2 -0
- package/esm2022/components/accordion/accordion.mjs +4 -3
- package/esm2022/components/alert/alert.component.mjs +20 -20
- package/esm2022/components/alert/alert.gen.mjs +2 -0
- package/esm2022/components/alert/alert.mjs +3 -3
- package/esm2022/components/modal/modal.component.mjs +18 -18
- package/esm2022/components/modal/modal.gen.mjs +2 -0
- package/esm2022/components/modal/modal.mjs +4 -3
- package/esm2022/components/pagination/pagination.component.mjs +25 -25
- package/esm2022/components/pagination/pagination.gen.mjs +2 -0
- package/esm2022/components/pagination/pagination.mjs +3 -3
- package/esm2022/components/progressbar/progressbar.component.mjs +12 -12
- package/esm2022/components/progressbar/progressbar.gen.mjs +2 -0
- package/esm2022/components/progressbar/progressbar.mjs +3 -3
- package/esm2022/components/rating/rating.component.mjs +11 -12
- package/esm2022/components/rating/rating.gen.mjs +2 -0
- package/esm2022/components/rating/rating.mjs +3 -3
- package/esm2022/components/select/select.component.mjs +24 -24
- package/esm2022/components/select/select.gen.mjs +2 -0
- package/esm2022/components/select/select.mjs +3 -3
- package/esm2022/components/slider/slider.component.mjs +42 -42
- package/esm2022/components/slider/slider.gen.mjs +2 -0
- package/esm2022/components/slider/slider.mjs +3 -3
- package/esm2022/components/toast/toast.component.mjs +31 -31
- package/esm2022/components/toast/toast.gen.mjs +2 -0
- package/esm2022/components/toast/toast.mjs +3 -3
- package/esm2022/config.gen.mjs +2 -0
- package/esm2022/config.mjs +1 -1
- package/esm2022/index.mjs +1 -1
- package/fesm2022/agnos-ui-angular-bootstrap.mjs +319 -362
- package/fesm2022/agnos-ui-angular-bootstrap.mjs.map +1 -1
- package/index.d.ts +9 -9
- package/package.json +7 -7
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
import type { WidgetSlotContext, SlotContent, Widget, Directive } from '@agnos-ui/angular-headless';
|
|
2
|
+
export type SliderContext = WidgetSlotContext<SliderWidget>;
|
|
3
|
+
export type SliderSlotLabelContext = SliderContext & {
|
|
4
|
+
value: number;
|
|
5
|
+
};
|
|
6
|
+
export type SliderSlotHandleContext = SliderContext & {
|
|
7
|
+
item: SliderHandle;
|
|
8
|
+
};
|
|
9
|
+
export interface SliderState {
|
|
10
|
+
/**
|
|
11
|
+
* Sorted slider values
|
|
12
|
+
*/
|
|
13
|
+
sortedValues: number[];
|
|
14
|
+
/**
|
|
15
|
+
* Combined label left offset in %
|
|
16
|
+
*/
|
|
17
|
+
combinedLabelPositionLeft: number;
|
|
18
|
+
/**
|
|
19
|
+
* Combined label top offset in %
|
|
20
|
+
*/
|
|
21
|
+
combinedLabelPositionTop: number;
|
|
22
|
+
/**
|
|
23
|
+
* If true, the minimum label will be visible
|
|
24
|
+
*/
|
|
25
|
+
minValueLabelDisplay: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* If true, the maximum label will be visible
|
|
28
|
+
*/
|
|
29
|
+
maxValueLabelDisplay: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* If true, the label when the handles are close is visible
|
|
32
|
+
*/
|
|
33
|
+
combinedLabelDisplay: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Array of the sorted handles to display
|
|
36
|
+
*/
|
|
37
|
+
sortedHandles: SliderHandle[];
|
|
38
|
+
/**
|
|
39
|
+
* Array of objects representing progress display options
|
|
40
|
+
*/
|
|
41
|
+
progressDisplayOptions: ProgressDisplayOptions[];
|
|
42
|
+
/**
|
|
43
|
+
* Array of objects representing handle display options
|
|
44
|
+
*/
|
|
45
|
+
handleDisplayOptions: HandleDisplayOptions[];
|
|
46
|
+
/**
|
|
47
|
+
* Check if the slider is interactive, meaning it is not disabled or readonly
|
|
48
|
+
*/
|
|
49
|
+
interactive: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Minimum value that can be assigned to the slider
|
|
52
|
+
*/
|
|
53
|
+
min: number;
|
|
54
|
+
/**
|
|
55
|
+
* Maximum value that can be assigned to the slider
|
|
56
|
+
*/
|
|
57
|
+
max: number;
|
|
58
|
+
/**
|
|
59
|
+
* Unit value between slider steps
|
|
60
|
+
*/
|
|
61
|
+
stepSize: number;
|
|
62
|
+
/**
|
|
63
|
+
* If `true` slider value cannot be changed but the slider is still focusable
|
|
64
|
+
*/
|
|
65
|
+
readonly: boolean;
|
|
66
|
+
/**
|
|
67
|
+
* If `true` slider value cannot be changed and the slider cannot be focused
|
|
68
|
+
*/
|
|
69
|
+
disabled: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* If `true` is vertically positioned otherwise it is horizontal
|
|
72
|
+
*/
|
|
73
|
+
vertical: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* Current slider values
|
|
76
|
+
*/
|
|
77
|
+
values: number[];
|
|
78
|
+
/**
|
|
79
|
+
* If `true` the value labels are displayed on the slider
|
|
80
|
+
*/
|
|
81
|
+
showValueLabels: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* If `true` the min and max labels are displayed on the slider
|
|
84
|
+
*/
|
|
85
|
+
showMinMaxLabels: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* It `true` slider display is inversed
|
|
88
|
+
*/
|
|
89
|
+
rtl: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* CSS classes to be applied on the widget main container
|
|
92
|
+
*/
|
|
93
|
+
className: string;
|
|
94
|
+
/**
|
|
95
|
+
* Slot to change the default display of the slider
|
|
96
|
+
*/
|
|
97
|
+
structure: SlotContent<SliderContext>;
|
|
98
|
+
/**
|
|
99
|
+
* Slot to change the default labels of the slider
|
|
100
|
+
*/
|
|
101
|
+
label: SlotContent<SliderSlotLabelContext>;
|
|
102
|
+
/**
|
|
103
|
+
* Slot to change the handlers
|
|
104
|
+
*/
|
|
105
|
+
handle: SlotContent<SliderSlotHandleContext>;
|
|
106
|
+
}
|
|
107
|
+
export interface SliderProps {
|
|
108
|
+
/**
|
|
109
|
+
* Return the value for the 'aria-label' attribute for the handle
|
|
110
|
+
*/
|
|
111
|
+
ariaLabelHandle: (value: number, sortedIndex: number, index: number) => string;
|
|
112
|
+
/**
|
|
113
|
+
* Return the value for the 'aria-valuetext' attribute for the handle
|
|
114
|
+
*/
|
|
115
|
+
ariaValueText: (value: number, sortedIndex: number, index: number) => string;
|
|
116
|
+
/**
|
|
117
|
+
* An event emitted when slider values are changed
|
|
118
|
+
*
|
|
119
|
+
* Event payload equals to the updated slider values
|
|
120
|
+
*/
|
|
121
|
+
onValuesChange: (values: number[]) => void;
|
|
122
|
+
/**
|
|
123
|
+
* Minimum value that can be assigned to the slider
|
|
124
|
+
*/
|
|
125
|
+
min: number;
|
|
126
|
+
/**
|
|
127
|
+
* Maximum value that can be assigned to the slider
|
|
128
|
+
*/
|
|
129
|
+
max: number;
|
|
130
|
+
/**
|
|
131
|
+
* Unit value between slider steps
|
|
132
|
+
*/
|
|
133
|
+
stepSize: number;
|
|
134
|
+
/**
|
|
135
|
+
* If `true` slider value cannot be changed but the slider is still focusable
|
|
136
|
+
*/
|
|
137
|
+
readonly: boolean;
|
|
138
|
+
/**
|
|
139
|
+
* If `true` slider value cannot be changed and the slider cannot be focused
|
|
140
|
+
*/
|
|
141
|
+
disabled: boolean;
|
|
142
|
+
/**
|
|
143
|
+
* If `true` is vertically positioned otherwise it is horizontal
|
|
144
|
+
*/
|
|
145
|
+
vertical: boolean;
|
|
146
|
+
/**
|
|
147
|
+
* Current slider values
|
|
148
|
+
*/
|
|
149
|
+
values: number[];
|
|
150
|
+
/**
|
|
151
|
+
* If `true` the value labels are displayed on the slider
|
|
152
|
+
*/
|
|
153
|
+
showValueLabels: boolean;
|
|
154
|
+
/**
|
|
155
|
+
* If `true` the min and max labels are displayed on the slider
|
|
156
|
+
*/
|
|
157
|
+
showMinMaxLabels: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* It `true` slider display is inversed
|
|
160
|
+
*/
|
|
161
|
+
rtl: boolean;
|
|
162
|
+
/**
|
|
163
|
+
* CSS classes to be applied on the widget main container
|
|
164
|
+
*/
|
|
165
|
+
className: string;
|
|
166
|
+
/**
|
|
167
|
+
* Slot to change the default display of the slider
|
|
168
|
+
*/
|
|
169
|
+
structure: SlotContent<SliderContext>;
|
|
170
|
+
/**
|
|
171
|
+
* Slot to change the default labels of the slider
|
|
172
|
+
*/
|
|
173
|
+
label: SlotContent<SliderSlotLabelContext>;
|
|
174
|
+
/**
|
|
175
|
+
* Slot to change the handlers
|
|
176
|
+
*/
|
|
177
|
+
handle: SlotContent<SliderSlotHandleContext>;
|
|
178
|
+
}
|
|
179
|
+
export type SliderWidget = Widget<SliderProps, SliderState, SliderApi, SliderActions, SliderDirectives>;
|
|
180
|
+
export interface ProgressDisplayOptions {
|
|
181
|
+
/**
|
|
182
|
+
* Right offset of the progress in %
|
|
183
|
+
*/
|
|
184
|
+
left: number | null;
|
|
185
|
+
/**
|
|
186
|
+
* Left offset of the progress in %
|
|
187
|
+
*/
|
|
188
|
+
right: number | null;
|
|
189
|
+
/**
|
|
190
|
+
* Top offset of the progress in %
|
|
191
|
+
*/
|
|
192
|
+
top: number | null;
|
|
193
|
+
/**
|
|
194
|
+
* Bottom offset of the progress in %
|
|
195
|
+
*/
|
|
196
|
+
bottom: number | null;
|
|
197
|
+
/**
|
|
198
|
+
* Width of the progress in %
|
|
199
|
+
*/
|
|
200
|
+
width: number;
|
|
201
|
+
/**
|
|
202
|
+
* Height of hte progress in %
|
|
203
|
+
*/
|
|
204
|
+
height: number;
|
|
205
|
+
}
|
|
206
|
+
export interface HandleDisplayOptions {
|
|
207
|
+
/**
|
|
208
|
+
* Left offset of the handle in %
|
|
209
|
+
*/
|
|
210
|
+
left: number | null;
|
|
211
|
+
/**
|
|
212
|
+
* Top offset of the handle in %
|
|
213
|
+
*/
|
|
214
|
+
top: number | null;
|
|
215
|
+
}
|
|
216
|
+
export interface SliderHandle {
|
|
217
|
+
/**
|
|
218
|
+
* Value of the handle
|
|
219
|
+
*/
|
|
220
|
+
value: number;
|
|
221
|
+
/**
|
|
222
|
+
* Handle id
|
|
223
|
+
*/
|
|
224
|
+
id: number;
|
|
225
|
+
/**
|
|
226
|
+
* ariaLabel of the handle
|
|
227
|
+
*/
|
|
228
|
+
ariaLabel: string;
|
|
229
|
+
/**
|
|
230
|
+
* ariaValueText of the handle
|
|
231
|
+
*/
|
|
232
|
+
ariaValueText: string;
|
|
233
|
+
}
|
|
234
|
+
export interface SliderApi {
|
|
235
|
+
}
|
|
236
|
+
export interface SliderDirectives {
|
|
237
|
+
/**
|
|
238
|
+
* Directive to get the slider component elementRef
|
|
239
|
+
*/
|
|
240
|
+
sliderDirective: Directive;
|
|
241
|
+
/**
|
|
242
|
+
* Directive used to style the progress display for each handle
|
|
243
|
+
*/
|
|
244
|
+
progressDisplayDirective: Directive<{
|
|
245
|
+
option: ProgressDisplayOptions;
|
|
246
|
+
}>;
|
|
247
|
+
/**
|
|
248
|
+
* Directive to apply to the slider clickable area, to directly move the handle to a given specific position
|
|
249
|
+
*/
|
|
250
|
+
clickableAreaDirective: Directive;
|
|
251
|
+
/**
|
|
252
|
+
* Directive to apply to the slider handle if any
|
|
253
|
+
*/
|
|
254
|
+
handleDirective: Directive<{
|
|
255
|
+
item: SliderHandle;
|
|
256
|
+
}>;
|
|
257
|
+
/**
|
|
258
|
+
* Directive to get the minLabel elementRef
|
|
259
|
+
*/
|
|
260
|
+
minLabelDirective: Directive;
|
|
261
|
+
/**
|
|
262
|
+
* Directive to get the maxLabel elementRef
|
|
263
|
+
*/
|
|
264
|
+
maxLabelDirective: Directive;
|
|
265
|
+
/**
|
|
266
|
+
* Directive to apply to the handle when combined label display is active
|
|
267
|
+
*/
|
|
268
|
+
combinedHandleLabelDisplayDirective: Directive;
|
|
269
|
+
/**
|
|
270
|
+
* Directive to apply to the handle when combined label display is not active
|
|
271
|
+
*/
|
|
272
|
+
handleLabelDisplayDirective: Directive<{
|
|
273
|
+
index: number;
|
|
274
|
+
}>;
|
|
275
|
+
}
|
|
276
|
+
export interface SliderActions {
|
|
277
|
+
/**
|
|
278
|
+
* Method to handle click on the slider
|
|
279
|
+
*/
|
|
280
|
+
click(event: MouseEvent): void;
|
|
281
|
+
/**
|
|
282
|
+
* Method to process the keyboard event
|
|
283
|
+
*/
|
|
284
|
+
keydown(event: KeyboardEvent, handleNumber: number): void;
|
|
285
|
+
/**
|
|
286
|
+
* Method describing the behavior of the slider handle on mouse down event
|
|
287
|
+
*/
|
|
288
|
+
mouseDown(event: MouseEvent, handleId: number): void;
|
|
289
|
+
/**
|
|
290
|
+
* Method describing the behavior of the slider handle on touch start event
|
|
291
|
+
*/
|
|
292
|
+
touchStart(event: TouchEvent, handleId: number): void;
|
|
293
|
+
}
|
|
@@ -37,7 +37,7 @@ export declare class ToastComponent extends BaseWidgetDirective<ToastWidget> imp
|
|
|
37
37
|
dismissible: boolean | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* The transition function will be executed when the alert is displayed or hidden.
|
|
40
|
-
* Depending on the value of
|
|
40
|
+
* Depending on the value of `animatedOnInit`, the animation can be optionally skipped during the showing process.
|
|
41
41
|
*/
|
|
42
42
|
transition: TransitionFn | undefined;
|
|
43
43
|
/**
|
|
@@ -70,11 +70,20 @@ export declare class ToastComponent extends BaseWidgetDirective<ToastWidget> imp
|
|
|
70
70
|
* Accessibility close button label
|
|
71
71
|
*/
|
|
72
72
|
ariaCloseButtonLabel: string | undefined;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
73
|
+
/**
|
|
74
|
+
* Template for the toast content
|
|
75
|
+
*/
|
|
76
|
+
children: SlotContent<ToastContext>;
|
|
77
|
+
slotDefaultFromContent: ToastBodyDirective | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* Global template for the toast component
|
|
80
|
+
*/
|
|
81
|
+
structure: SlotContent<ToastContext>;
|
|
76
82
|
slotStructureFromContent: ToastStructureDirective | undefined;
|
|
77
|
-
|
|
83
|
+
/**
|
|
84
|
+
* Header template for the toast component
|
|
85
|
+
*/
|
|
86
|
+
header: SlotContent<ToastContext>;
|
|
78
87
|
slotHeaderFromContent: ToastHeaderDirective | undefined;
|
|
79
88
|
/**
|
|
80
89
|
* Callback called when the alert visibility changed.
|
|
@@ -96,7 +105,7 @@ export declare class ToastComponent extends BaseWidgetDirective<ToastWidget> imp
|
|
|
96
105
|
readonly _widget: import("@agnos-ui/angular-headless").AngularWidget<ToastWidget>;
|
|
97
106
|
ngAfterContentChecked(): void;
|
|
98
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "[auToast]", never, { "dismissible": { "alias": "auDismissible"; "required": false; }; "transition": { "alias": "auTransition"; "required": false; }; "visible": { "alias": "auVisible"; "required": false; }; "animatedOnInit": { "alias": "auAnimatedOnInit"; "required": false; }; "animated": { "alias": "auAnimated"; "required": false; }; "autoHide": { "alias": "auAutoHide"; "required": false; }; "delay": { "alias": "auDelay"; "required": false; }; "ariaCloseButtonLabel": { "alias": "auAriaCloseButtonLabel"; "required": false; }; "
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "[auToast]", never, { "dismissible": { "alias": "auDismissible"; "required": false; }; "transition": { "alias": "auTransition"; "required": false; }; "visible": { "alias": "auVisible"; "required": false; }; "animatedOnInit": { "alias": "auAnimatedOnInit"; "required": false; }; "animated": { "alias": "auAnimated"; "required": false; }; "autoHide": { "alias": "auAutoHide"; "required": false; }; "delay": { "alias": "auDelay"; "required": false; }; "ariaCloseButtonLabel": { "alias": "auAriaCloseButtonLabel"; "required": false; }; "children": { "alias": "auChildren"; "required": false; }; "structure": { "alias": "auStructure"; "required": false; }; "header": { "alias": "auHeader"; "required": false; }; "className": { "alias": "auClassName"; "required": false; }; }, { "visibleChange": "auVisibleChange"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotDefaultFromContent", "slotStructureFromContent", "slotHeaderFromContent"], ["*"], true, never>;
|
|
100
109
|
static ngAcceptInputType_dismissible: unknown;
|
|
101
110
|
static ngAcceptInputType_visible: unknown;
|
|
102
111
|
static ngAcceptInputType_animatedOnInit: unknown;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
export type
|
|
4
|
-
export type ToastProps = WidgetProps<ToastWidget>;
|
|
5
|
-
export type ToastState = WidgetState<ToastWidget>;
|
|
6
|
-
export type ToastContext = AdaptSlotContentProps<import('@agnos-ui/core-bootstrap/components/toast').ToastContext>;
|
|
1
|
+
import type { WidgetFactory } from '@agnos-ui/angular-headless';
|
|
2
|
+
import type { ToastProps, ToastWidget } from './toast.gen';
|
|
3
|
+
export type * from './toast.gen';
|
|
7
4
|
export declare const createToast: WidgetFactory<ToastWidget>;
|
|
5
|
+
export declare const getToastDefaultConfig: () => ToastProps;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import type { WidgetSlotContext, SlotContent, TransitionFn, Widget, Directive } from '@agnos-ui/angular-headless';
|
|
2
|
+
export type ToastContext = WidgetSlotContext<ToastWidget>;
|
|
3
|
+
export interface ToastState {
|
|
4
|
+
/**
|
|
5
|
+
* Is `true` when the alert is hidden. Compared to `visible`, this is updated after the transition is executed.
|
|
6
|
+
*/
|
|
7
|
+
hidden: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* If `true`, alert can be dismissed by the user.
|
|
10
|
+
* The close button (×) will be displayed and you can be notified of the event with the (close) output.
|
|
11
|
+
*/
|
|
12
|
+
dismissible: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* If `true` the alert is visible to the user
|
|
15
|
+
*/
|
|
16
|
+
visible: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Accessibility close button label
|
|
19
|
+
*/
|
|
20
|
+
ariaCloseButtonLabel: string;
|
|
21
|
+
/**
|
|
22
|
+
* CSS classes to be applied on the widget main container
|
|
23
|
+
*/
|
|
24
|
+
className: string;
|
|
25
|
+
/**
|
|
26
|
+
* If `true` automatically hides the toast after the delay.
|
|
27
|
+
*/
|
|
28
|
+
autoHide: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Delay in milliseconds before hiding the toast.
|
|
31
|
+
*/
|
|
32
|
+
delay: number;
|
|
33
|
+
/**
|
|
34
|
+
* Global template for the toast component
|
|
35
|
+
*/
|
|
36
|
+
structure: SlotContent<ToastContext>;
|
|
37
|
+
/**
|
|
38
|
+
* Template for the toast content
|
|
39
|
+
*/
|
|
40
|
+
children: SlotContent<ToastContext>;
|
|
41
|
+
/**
|
|
42
|
+
* Header template for the toast component
|
|
43
|
+
*/
|
|
44
|
+
header: SlotContent<ToastContext>;
|
|
45
|
+
}
|
|
46
|
+
export interface ToastProps {
|
|
47
|
+
/**
|
|
48
|
+
* Callback called when the alert visibility changed.
|
|
49
|
+
*/
|
|
50
|
+
onVisibleChange: (visible: boolean) => void;
|
|
51
|
+
/**
|
|
52
|
+
* Callback called when the alert is hidden.
|
|
53
|
+
*/
|
|
54
|
+
onHidden: () => void;
|
|
55
|
+
/**
|
|
56
|
+
* Callback called when the alert is shown.
|
|
57
|
+
*/
|
|
58
|
+
onShown: () => void;
|
|
59
|
+
/**
|
|
60
|
+
* The transition function will be executed when the alert is displayed or hidden.
|
|
61
|
+
*
|
|
62
|
+
* Depending on the value of `animatedOnInit`, the animation can be optionally skipped during the showing process.
|
|
63
|
+
*/
|
|
64
|
+
transition: TransitionFn;
|
|
65
|
+
/**
|
|
66
|
+
* If `true`, alert opening will be animated.
|
|
67
|
+
*
|
|
68
|
+
* Animation is triggered when the `.open()` function is called
|
|
69
|
+
* or the visible prop is changed
|
|
70
|
+
*/
|
|
71
|
+
animatedOnInit: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* If `true`, alert closing will be animated.
|
|
74
|
+
*
|
|
75
|
+
* Animation is triggered when clicked on the close button (×),
|
|
76
|
+
* via the `.close()` function or the visible prop is changed
|
|
77
|
+
*/
|
|
78
|
+
animated: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* If `true`, alert can be dismissed by the user.
|
|
81
|
+
* The close button (×) will be displayed and you can be notified of the event with the (close) output.
|
|
82
|
+
*/
|
|
83
|
+
dismissible: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* If `true` the alert is visible to the user
|
|
86
|
+
*/
|
|
87
|
+
visible: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* Accessibility close button label
|
|
90
|
+
*/
|
|
91
|
+
ariaCloseButtonLabel: string;
|
|
92
|
+
/**
|
|
93
|
+
* CSS classes to be applied on the widget main container
|
|
94
|
+
*/
|
|
95
|
+
className: string;
|
|
96
|
+
/**
|
|
97
|
+
* If `true` automatically hides the toast after the delay.
|
|
98
|
+
*/
|
|
99
|
+
autoHide: boolean;
|
|
100
|
+
/**
|
|
101
|
+
* Delay in milliseconds before hiding the toast.
|
|
102
|
+
*/
|
|
103
|
+
delay: number;
|
|
104
|
+
/**
|
|
105
|
+
* Global template for the toast component
|
|
106
|
+
*/
|
|
107
|
+
structure: SlotContent<ToastContext>;
|
|
108
|
+
/**
|
|
109
|
+
* Template for the toast content
|
|
110
|
+
*/
|
|
111
|
+
children: SlotContent<ToastContext>;
|
|
112
|
+
/**
|
|
113
|
+
* Header template for the toast component
|
|
114
|
+
*/
|
|
115
|
+
header: SlotContent<ToastContext>;
|
|
116
|
+
}
|
|
117
|
+
export type ToastWidget = Widget<ToastProps, ToastState, ToastApi, object, ToastDirectives>;
|
|
118
|
+
export interface ToastApi {
|
|
119
|
+
/**
|
|
120
|
+
* Triggers alert closing programmatically (same as clicking on the close button (×)).
|
|
121
|
+
*/
|
|
122
|
+
close(): void;
|
|
123
|
+
/**
|
|
124
|
+
* Triggers the alert to be displayed for the user.
|
|
125
|
+
*/
|
|
126
|
+
open(): void;
|
|
127
|
+
}
|
|
128
|
+
export interface ToastDirectives {
|
|
129
|
+
/**
|
|
130
|
+
* the transition directive, piloting what is the visual effect of going from hidden to visible
|
|
131
|
+
*/
|
|
132
|
+
transitionDirective: Directive;
|
|
133
|
+
/**
|
|
134
|
+
* Directive that handles the autohide of the toast component
|
|
135
|
+
*/
|
|
136
|
+
autoHideDirective: Directive;
|
|
137
|
+
/**
|
|
138
|
+
* Directive that adds all the necessary attributes to the body
|
|
139
|
+
*/
|
|
140
|
+
bodyDirective: Directive;
|
|
141
|
+
/**
|
|
142
|
+
* Directive that adds all the necessary attributes to the close button depending on the presence of the header
|
|
143
|
+
*/
|
|
144
|
+
closeButtonDirective: Directive;
|
|
145
|
+
}
|
package/config.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AngularWidget, Partial2Levels, Widget, WidgetFactory, WidgetProps, WidgetsConfigStore } from '@agnos-ui/angular-headless';
|
|
2
2
|
import type { BootstrapWidgetsConfig } from '@agnos-ui/core-bootstrap/config';
|
|
3
3
|
import type { ReadableSignal } from '@amadeus-it-group/tansu';
|
|
4
4
|
import type { FactoryProvider } from '@angular/core';
|
|
5
5
|
import { InjectionToken } from '@angular/core';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
6
|
+
import type { WidgetsConfig } from './config.gen';
|
|
7
|
+
export type { WidgetsConfig };
|
|
9
8
|
type AdaptParentConfig = (config: Partial2Levels<WidgetsConfig>) => Partial2Levels<WidgetsConfig>;
|
|
10
9
|
type InjectWidgetsConfig = (config?: Partial2Levels<WidgetsConfig>) => WidgetsConfigStore<WidgetsConfig>;
|
|
11
10
|
export declare const widgetsConfigInjectionToken: InjectionToken<WidgetsConfigStore<WidgetsConfig>>, provideWidgetsConfig: (adaptParentConfig?: AdaptParentConfig | undefined) => FactoryProvider, injectWidgetConfig: <N extends keyof BootstrapWidgetsConfig>(widgetName: N) => ReadableSignal<Partial<WidgetsConfig[N]> | undefined>, injectWidgetsConfig: InjectWidgetsConfig, callWidgetFactory: <W extends Widget<object, object, object, object, object>>({ factory, widgetName, defaultConfig, events, afterInit, }: {
|
|
@@ -15,4 +14,3 @@ export declare const widgetsConfigInjectionToken: InjectionToken<WidgetsConfigSt
|
|
|
15
14
|
events?: Pick<WidgetProps<W>, keyof WidgetProps<W> & `on${string}`>;
|
|
16
15
|
afterInit?: (() => void) | undefined;
|
|
17
16
|
}) => AngularWidget<W>;
|
|
18
|
-
export {};
|
package/config.gen.d.ts
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { AccordionProps } from './components/accordion';
|
|
2
|
+
import type { AlertProps } from './components/alert';
|
|
3
|
+
import type { ModalProps } from './components/modal';
|
|
4
|
+
import type { PaginationProps } from './components/pagination';
|
|
5
|
+
import type { ProgressbarProps } from './components/progressbar';
|
|
6
|
+
import type { RatingProps } from './components/rating';
|
|
7
|
+
import type { SelectProps } from './components/select';
|
|
8
|
+
import type { SliderProps } from './components/slider';
|
|
9
|
+
import type { ToastProps } from './components/toast';
|
|
10
|
+
export type WidgetsConfig = {
|
|
11
|
+
/**
|
|
12
|
+
* the accordion widget config
|
|
13
|
+
*/
|
|
14
|
+
accordion: AccordionProps;
|
|
15
|
+
/**
|
|
16
|
+
* the alert widget config
|
|
17
|
+
*/
|
|
18
|
+
alert: AlertProps;
|
|
19
|
+
/**
|
|
20
|
+
* the modal widget config
|
|
21
|
+
*/
|
|
22
|
+
modal: ModalProps<any>;
|
|
23
|
+
/**
|
|
24
|
+
* the pagination widget config
|
|
25
|
+
*/
|
|
26
|
+
pagination: PaginationProps;
|
|
27
|
+
/**
|
|
28
|
+
* the progressbar widget config
|
|
29
|
+
*/
|
|
30
|
+
progressbar: ProgressbarProps;
|
|
31
|
+
/**
|
|
32
|
+
* the rating widget config
|
|
33
|
+
*/
|
|
34
|
+
rating: RatingProps;
|
|
35
|
+
/**
|
|
36
|
+
* the select widget config
|
|
37
|
+
*/
|
|
38
|
+
select: SelectProps<any>;
|
|
39
|
+
/**
|
|
40
|
+
* the slider widget config
|
|
41
|
+
*/
|
|
42
|
+
slider: SliderProps;
|
|
43
|
+
/**
|
|
44
|
+
* the toast widget config
|
|
45
|
+
*/
|
|
46
|
+
toast: ToastProps;
|
|
47
|
+
};
|
|
@@ -3,7 +3,7 @@ import { NgModule } from '@angular/core';
|
|
|
3
3
|
import { ModalBodyDirective, ModalComponent, ModalFooterDirective, ModalHeaderDirective, ModalStructureDirective, ModalTitleDirective, } from './components/modal/modal.component';
|
|
4
4
|
import { PaginationComponent, PaginationEllipsisDirective, PaginationFirstDirective, PaginationLastDirective, PaginationNextDirective, PaginationNumberDirective, PaginationPagesDirective, PaginationStructureDirective, PaginationPreviousDirective, } from './components/pagination/pagination.component';
|
|
5
5
|
import { RatingComponent, RatingStarDirective } from './components/rating/rating.component';
|
|
6
|
-
import { SelectBadgeLabelDirective, SelectComponent,
|
|
6
|
+
import { SelectBadgeLabelDirective, SelectComponent, SelectItemLabelDirective } from './components/select/select.component';
|
|
7
7
|
import { AlertBodyDirective, AlertComponent, AlertStructureDirective } from './components/alert/alert.component';
|
|
8
8
|
import { AccordionDirective, AccordionItemComponent, AccordionHeaderDirective, AccordionBodyDirective, AccordionItemStructureDirective, } from './components/accordion/accordion.component';
|
|
9
9
|
import { SliderComponent, SliderHandleDirective, SliderLabelDirective, SliderStructureDirective } from './components/slider/slider.component';
|
|
@@ -15,7 +15,7 @@ const components = [
|
|
|
15
15
|
SlotDirective,
|
|
16
16
|
SelectComponent,
|
|
17
17
|
SelectBadgeLabelDirective,
|
|
18
|
-
|
|
18
|
+
SelectItemLabelDirective,
|
|
19
19
|
UseDirective,
|
|
20
20
|
UseMultiDirective,
|
|
21
21
|
RatingComponent,
|
|
@@ -70,7 +70,7 @@ export class AgnosUIAngularModule {
|
|
|
70
70
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AgnosUIAngularModule, { imports: [SlotDirective,
|
|
71
71
|
SelectComponent,
|
|
72
72
|
SelectBadgeLabelDirective,
|
|
73
|
-
|
|
73
|
+
SelectItemLabelDirective,
|
|
74
74
|
UseDirective,
|
|
75
75
|
UseMultiDirective,
|
|
76
76
|
RatingComponent,
|
|
@@ -110,7 +110,7 @@ export class AgnosUIAngularModule {
|
|
|
110
110
|
ToastHeaderDirective], exports: [SlotDirective,
|
|
111
111
|
SelectComponent,
|
|
112
112
|
SelectBadgeLabelDirective,
|
|
113
|
-
|
|
113
|
+
SelectItemLabelDirective,
|
|
114
114
|
UseDirective,
|
|
115
115
|
UseMultiDirective,
|
|
116
116
|
RatingComponent,
|
|
@@ -148,4 +148,4 @@ export class AgnosUIAngularModule {
|
|
|
148
148
|
ToastStructureDirective,
|
|
149
149
|
ToastBodyDirective,
|
|
150
150
|
ToastHeaderDirective] }); })();
|
|
151
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
151
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWdub3MtdWktYW5ndWxhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYWdub3MtdWktYW5ndWxhci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLGFBQWEsRUFBRSxZQUFZLEVBQUUsaUJBQWlCLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQztBQUMxRixPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFDTixrQkFBa0IsRUFDbEIsY0FBYyxFQUNkLG9CQUFvQixFQUNwQixvQkFBb0IsRUFDcEIsdUJBQXVCLEVBQ3ZCLG1CQUFtQixHQUNuQixNQUFNLG9DQUFvQyxDQUFDO0FBQzVDLE9BQU8sRUFDTixtQkFBbUIsRUFDbkIsMkJBQTJCLEVBQzNCLHdCQUF3QixFQUN4Qix1QkFBdUIsRUFDdkIsdUJBQXVCLEVBQ3ZCLHlCQUF5QixFQUN6Qix3QkFBd0IsRUFDeEIsNEJBQTRCLEVBQzVCLDJCQUEyQixHQUMzQixNQUFNLDhDQUE4QyxDQUFDO0FBQ3RELE9BQU8sRUFBQyxlQUFlLEVBQUUsbUJBQW1CLEVBQUMsTUFBTSxzQ0FBc0MsQ0FBQztBQUMxRixPQUFPLEVBQUMseUJBQXlCLEVBQUUsZUFBZSxFQUFFLHdCQUF3QixFQUFDLE1BQU0sc0NBQXNDLENBQUM7QUFDMUgsT0FBTyxFQUFDLGtCQUFrQixFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBQyxNQUFNLG9DQUFvQyxDQUFDO0FBQy9HLE9BQU8sRUFDTixrQkFBa0IsRUFDbEIsc0JBQXNCLEVBQ3RCLHdCQUF3QixFQUN4QixzQkFBc0IsRUFDdEIsK0JBQStCLEdBQy9CLE1BQU0sNENBQTRDLENBQUM7QUFDcEQsT0FBTyxFQUFDLGVBQWUsRUFBRSxxQkFBcUIsRUFBRSxvQkFBb0IsRUFBRSx3QkFBd0IsRUFBQyxNQUFNLHNDQUFzQyxDQUFDO0FBQzVJLE9BQU8sRUFBQyxvQkFBb0IsRUFBRSw2QkFB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N0IsY0FBYztRQUNkLHVCQUF1QjtRQUN2QixrQkFBa0I7UUFDbEIsb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtTbG90RGlyZWN0aXZlLCBVc2VEaXJlY3RpdmUsIFVzZU11bHRpRGlyZWN0aXZlfSBmcm9tICdAYWdub3MtdWkvYW5ndWxhci1oZWFkbGVzcyc7XG5pbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG5cdE1vZGFsQm9keURpcmVjdGl2ZSxcblx0TW9kYWxDb21wb25lbnQsXG5cdE1vZGFsRm9vdGVyRGlyZWN0aXZlLFxuXHRNb2RhbEhlYWRlckRpcmVjdGl2ZSxcblx0TW9kYWxTdHJ1Y3R1cmVEaXJlY3RpdmUsXG5cdE1vZGFsVGl0bGVEaXJlY3RpdmUsXG59IGZyb20gJy4vY29tcG9uZW50cy9tb2RhbC9tb2RhbC5jb21wb25lbnQnO1xuaW1wb3J0IHtcblx0UGFnaW5hdGlvbkNvbXBvbmVudCxcblx0UGFnaW5hdGlvbkVsbGlwc2lzRGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uRmlyc3REaXJlY3RpdmUsXG5cdFBhZ2luYXRpb25MYXN0RGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uTmV4dERpcmVjdGl2ZSxcblx0UGFnaW5hdGlvbk51bWJlckRpcmVjdGl2ZSxcblx0UGFnaW5hdGlvblBhZ2VzRGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uU3RydWN0dXJlRGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uUHJldmlvdXNEaXJlY3RpdmUsXG59IGZyb20gJy4vY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50JztcbmltcG9ydCB7UmF0aW5nQ29tcG9uZW50LCBSYXRpbmdTdGFyRGlyZWN0aXZlfSBmcm9tICcuL2NvbXBvbmVudHMvcmF0aW5nL3JhdGluZy5jb21wb25lbnQnO1xuaW1wb3J0IHtTZWxlY3RCYWRnZUxhYmVsRGlyZWN0aXZlLCBTZWxlY3RDb21wb25lbnQsIFNlbGVjdEl0ZW1MYWJlbERpcmVjdGl2ZX0gZnJvbSAnLi9jb21wb25lbnRzL3NlbGVjdC9zZWxlY3QuY29tcG9uZW50JztcbmltcG9ydCB7QWxlcnRCb2R5RGlyZWN0aXZlLCBBbGVydENvbXBvbmVudCwgQWxlcnRTdHJ1Y3R1cmVEaXJlY3RpdmV9IGZyb20gJy4vY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQnO1xuaW1wb3J0IHtcblx0QWNjb3JkaW9uRGlyZWN0aXZlLFxuXHRBY2NvcmRpb25JdGVtQ29tcG9uZW50LFxuXHRBY2NvcmRpb25IZWFkZXJEaXJlY3RpdmUsXG5cdEFjY29yZGlvbkJvZHlEaXJlY3RpdmUsXG5cdEFjY29yZGlvbkl0ZW1TdHJ1Y3R1cmVEaXJlY3RpdmUsXG59IGZyb20gJy4vY29tcG9uZW50cy9hY2NvcmRpb24vYWNjb3JkaW9uLmNvbXBvbmVudCc7XG5pbXBvcnQge1NsaWRlckNvbXBvbmVudCwgU2xpZGVySGFuZGxlRGlyZWN0aXZlLCBTbGlkZXJMYWJlbERpcmVjdGl2ZSwgU2xpZGVyU3RydWN0dXJlRGlyZWN0aXZlfSBmcm9tICcuL2NvbXBvbmVudHMvc2xpZGVyL3NsaWRlci5jb21wb25lbnQnO1xuaW1wb3J0IHtQcm9ncmVzc2JhckNvbXBvbmVudCwgUHJvZ3Jlc3NiYXJTdHJ1Y3R1cmVEaXJlY3RpdmV9IGZyb20gJy4vY29tcG9uZW50cy9wcm9ncmVzc2Jhci9wcm9ncmVzc2Jhci5jb21wb25lbnQnO1xuaW1wb3J0IHtUb2FzdEJvZHlEaXJlY3RpdmUsIFRvYXN0Q29tcG9uZW50LCBUb2FzdEhlYWRlckRpcmVjdGl2ZSwgVG9hc3RTdHJ1Y3R1cmVEaXJlY3RpdmV9IGZyb20gJy4vY29tcG9uZW50cy90b2FzdC90b2FzdC5jb21wb25lbnQnO1xuLyogaXN0YW5idWwgaWdub3JlIG5leHQgKi9cbmNvbnN0IGNvbXBvbmVudHMgPSBbXG5cdFNsb3REaXJlY3RpdmUsXG5cdFNlbGVjdENvbXBvbmVudCxcblx0U2VsZWN0QmFkZ2VMYWJlbERpcmVjdGl2ZSxcblx0U2VsZWN0SXRlbUxhYmVsRGlyZWN0aXZlLFxuXHRVc2VEaXJlY3RpdmUsXG5cdFVzZU11bHRpRGlyZWN0aXZlLFxuXHRSYXRpbmdDb21wb25lbnQsXG5cdFJhdGluZ1N0YXJEaXJlY3RpdmUsXG5cdFBhZ2luYXRpb25Db21wb25lbnQsXG5cdFBhZ2luYXRpb25FbGxpcHNpc0RpcmVjdGl2ZSxcblx0UGFnaW5hdGlvbkZpcnN0RGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uTGFzdERpcmVjdGl2ZSxcblx0UGFnaW5hdGlvbk5leHREaXJlY3RpdmUsXG5cdFBhZ2luYXRpb25OdW1iZXJEaXJlY3RpdmUsXG5cdFBhZ2luYXRpb25QcmV2aW91c0RpcmVjdGl2ZSxcblx0UGFnaW5hdGlvblBhZ2VzRGlyZWN0aXZlLFxuXHRQYWdpbmF0aW9uU3RydWN0dXJlRGlyZWN0aXZlLFxuXHRNb2RhbENvbXBvbmVudCxcblx0TW9kYWxTdHJ1Y3R1cmVEaXJlY3RpdmUsXG5cdE1vZGFsSGVhZGVyRGlyZWN0aXZlLFxuXHRNb2RhbFRpdGxlRGlyZWN0aXZlLFxuXHRNb2RhbEJvZHlEaXJlY3RpdmUsXG5cdE1vZGFsRm9vdGVyRGlyZWN0aXZlLFxuXHRBbGVydENvbXBvbmVudCxcblx0QWxlcnRTdHJ1Y3R1cmVEaXJlY3RpdmUsXG5cdEFsZXJ0Qm9keURpcmVjdGl2ZSxcblx0QWNjb3JkaW9uRGlyZWN0aXZlLFxuXHRBY2NvcmRpb25JdGVtQ29tcG9uZW50LFxuXHRBY2NvcmRpb25IZWFkZXJEaXJlY3RpdmUsXG5cdEFjY29yZGlvbkJvZHlEaXJlY3RpdmUsXG5cdEFjY29yZGlvbkl0ZW1TdHJ1Y3R1cmVEaXJlY3RpdmUsXG5cdFNsaWRlckNvbXBvbmVudCxcblx0U2xpZGVySGFuZGxlRGlyZWN0aXZlLFxuXHRTbGlkZXJMYWJlbERpcmVjdGl2ZSxcblx0U2xpZGVyU3RydWN0dXJlRGlyZWN0aXZlLFxuXHRQcm9ncmVzc2JhckNvbXBvbmVudCxcblx0UHJvZ3Jlc3NiYXJTdHJ1Y3R1cmVEaXJlY3RpdmUsXG5cdFRvYXN0Q29tcG9uZW50LFxuXHRUb2FzdFN0cnVjdHVyZURpcmVjdGl2ZSxcblx0VG9hc3RCb2R5RGlyZWN0aXZlLFxuXHRUb2FzdEhlYWRlckRpcmVjdGl2ZSxcbl07XG5cbkBOZ01vZHVsZSh7XG5cdGRlY2xhcmF0aW9uczogW10sXG5cdGltcG9ydHM6IGNvbXBvbmVudHMsXG5cdGV4cG9ydHM6IGNvbXBvbmVudHMsXG59KVxuZXhwb3J0IGNsYXNzIEFnbm9zVUlBbmd1bGFyTW9kdWxlIHt9XG4iXX0=
|