@ngrdt/gov 0.0.89 → 0.0.92
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/fesm2022/ngrdt-gov.mjs +694 -587
- package/fesm2022/ngrdt-gov.mjs.map +1 -1
- package/index.d.ts +201 -253
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1,33 +1,36 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import * as _ngrdt_button from '@ngrdt/button';
|
|
1
|
+
import { RdtCssSize, Nullable } from '@ngrdt/utils';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { Provider, EnvironmentProviders, Injector, ElementRef, Type, WritableSignal, InjectionToken, OnDestroy } from '@angular/core';
|
|
5
4
|
import { RdtButtonBase } from '@ngrdt/button';
|
|
6
|
-
import
|
|
7
|
-
import { RdtCheckboxComponent, RdtDateComponent, RdtNumericInputComponent, RdtSelectOfflineDatasourceProviderDirective, RdtBaseSelectCommonComponent, RdtTextInputComponent } from '@ngrdt/forms';
|
|
8
|
-
import * as _ngrdt_icon from '@ngrdt/icon';
|
|
5
|
+
import { RdtBooleanResult, RdtDialogServiceInt, RdtAlertDialogConfig, RdtConfirmDialogConfig, RdtNotificationServiceInt } from '@ngrdt/core';
|
|
9
6
|
import { RdtIcon, RdtIconComponent } from '@ngrdt/icon';
|
|
10
|
-
import * as _angular_core from '@angular/core';
|
|
11
|
-
import { Injector, ElementRef, Type, WritableSignal, InjectionToken, OnDestroy } from '@angular/core';
|
|
12
|
-
import { MatDatepickerIntl, MatDatepickerInputEvent } from '@angular/material/datepicker';
|
|
13
|
-
import { RdtBooleanResult } from '@ngrdt/core';
|
|
14
|
-
import { Nullable } from '@ngrdt/utils';
|
|
15
7
|
import { GovFormCheckbox, GovFormInput } from '@gov-design-system-ce/angular';
|
|
8
|
+
import { RdtCheckboxComponent, RdtDateComponent, RdtNumericInputComponent, RdtSelectOfflineDatasourceProviderDirective, RdtBaseSelectCommonComponent, RdtTextInputComponent } from '@ngrdt/forms';
|
|
16
9
|
import * as date_fns from 'date-fns';
|
|
10
|
+
import { MatDatepickerInputEvent } from '@angular/material/datepicker';
|
|
17
11
|
import { Observable } from 'rxjs';
|
|
18
12
|
import { Nullable as Nullable$1 } from '@gov-design-system-ce/components';
|
|
13
|
+
import { RdtSpinnerComponent } from '@ngrdt/loading';
|
|
19
14
|
|
|
20
15
|
type GovSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
21
16
|
type GovColor = 'primary' | 'secondary' | 'neutral' | 'success' | 'warning' | 'error';
|
|
22
17
|
type GovMessageVariant = 'success' | 'error' | 'warning' | 'secondary';
|
|
23
18
|
type GovButtonType = 'solid' | 'outlined' | 'base' | 'link';
|
|
24
19
|
type GovLabelPosition = 'left' | 'right' | 'top';
|
|
25
|
-
type GovDialogSize = 'content' | 'fullscreen' |
|
|
20
|
+
type GovDialogSize = 'content' | 'fullscreen' | RdtCssSize;
|
|
26
21
|
|
|
27
22
|
declare const DEFAULT_GOV_BUTTON_COLOR: GovColor;
|
|
28
23
|
declare const DEFAULT_GOV_BUTTON_TYPE: GovButtonType;
|
|
29
24
|
declare const DEFAULT_GOV_BUTTON_SIZE: GovSize;
|
|
30
25
|
|
|
26
|
+
declare function provideNgrdtGov(options?: {}): (Provider | EnvironmentProviders)[];
|
|
27
|
+
|
|
28
|
+
interface RdtGovConfig {
|
|
29
|
+
iconsPath?: string;
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
}
|
|
32
|
+
declare function initRdtGov(config?: RdtGovConfig): void;
|
|
33
|
+
|
|
31
34
|
declare class RdtGovButtonComponent extends RdtButtonBase<RdtIcon> {
|
|
32
35
|
protected readonly injector: Injector;
|
|
33
36
|
readonly focusElement: _angular_core.WritableSignal<HTMLElement | null>;
|
|
@@ -64,157 +67,6 @@ declare class RdtGovCheckboxComponent extends RdtCheckboxComponent {
|
|
|
64
67
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovCheckboxComponent, "rdt-gov-checkbox", never, { "labelPositionInput": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
65
68
|
}
|
|
66
69
|
|
|
67
|
-
declare class RdtDatepickerIntl extends MatDatepickerIntl {
|
|
68
|
-
private readonly translateService;
|
|
69
|
-
constructor();
|
|
70
|
-
private readonly setLabelsEffect;
|
|
71
|
-
private setLabels;
|
|
72
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtDatepickerIntl, never>;
|
|
73
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RdtDatepickerIntl>;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
declare class RdtGovIconComponent extends RdtIconComponent<string> {
|
|
77
|
-
parsedName: _angular_core.Signal<{
|
|
78
|
-
type: string;
|
|
79
|
-
name: string;
|
|
80
|
-
}>;
|
|
81
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovIconComponent, never>;
|
|
82
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovIconComponent, "rdt-gov-icon", never, {}, {}, never, never, true, never>;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
declare class RdtGovSpinnerComponent extends RdtSpinnerComponent {
|
|
86
|
-
readonly message: _angular_core.WritableSignal<string>;
|
|
87
|
-
readonly messageInput: _angular_core.InputSignal<string>;
|
|
88
|
-
readonly size: _angular_core.WritableSignal<"s" | "m" | "l">;
|
|
89
|
-
readonly sizeInput: _angular_core.InputSignal<"s" | "m" | "l">;
|
|
90
|
-
readonly mode: _angular_core.WritableSignal<"overlay" | "local">;
|
|
91
|
-
readonly modeInput: _angular_core.InputSignal<"overlay" | "local">;
|
|
92
|
-
readonly messagePositionInput: _angular_core.InputSignal<"left" | "right" | "below" | "above">;
|
|
93
|
-
readonly messagePosition: _angular_core.WritableSignal<"left" | "right" | "below" | "above">;
|
|
94
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovSpinnerComponent, never>;
|
|
95
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovSpinnerComponent, "rdt-gov-spinner", never, { "messageInput": { "alias": "message"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; "modeInput": { "alias": "mode"; "required": false; "isSignal": true; }; "messagePositionInput": { "alias": "messagePosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
declare function provideNgrdtGov(options?: {}): (_angular_core.EnvironmentProviders | _angular_core.Provider[] | {
|
|
99
|
-
provide: _angular_core.InjectionToken<_angular_core.Type<_ngrdt_icon.RdtIconBaseInt>>;
|
|
100
|
-
useValue: typeof RdtGovIconComponent;
|
|
101
|
-
useClass?: undefined;
|
|
102
|
-
} | {
|
|
103
|
-
provide: _angular_core.InjectionToken<_angular_core.Type<_ngrdt_forms.RdtCheckboxComponent<any, any>>>;
|
|
104
|
-
useValue: typeof RdtGovCheckboxComponent;
|
|
105
|
-
useClass?: undefined;
|
|
106
|
-
} | {
|
|
107
|
-
provide: _angular_core.InjectionToken<_angular_core.Type<_ngrdt_button.RdtButtonBaseInt<string>>>;
|
|
108
|
-
useValue: typeof RdtGovButtonComponent;
|
|
109
|
-
useClass?: undefined;
|
|
110
|
-
} | {
|
|
111
|
-
provide: _angular_core.InjectionToken<Record<RdtIcon, string>>;
|
|
112
|
-
useValue: {
|
|
113
|
-
"arrow-right": string;
|
|
114
|
-
"arrow-down": string;
|
|
115
|
-
"chevron-double-left": string;
|
|
116
|
-
"chevron-double-right": string;
|
|
117
|
-
"chevron-left": string;
|
|
118
|
-
"chevron-right": string;
|
|
119
|
-
"sort-down": string;
|
|
120
|
-
"sort-up": string;
|
|
121
|
-
filter: string;
|
|
122
|
-
duration?: undefined;
|
|
123
|
-
positionVert?: undefined;
|
|
124
|
-
positionHoriz?: undefined;
|
|
125
|
-
successMsg?: undefined;
|
|
126
|
-
warningMsg?: undefined;
|
|
127
|
-
errorMsg?: undefined;
|
|
128
|
-
minHeight?: undefined;
|
|
129
|
-
isDraggable?: undefined;
|
|
130
|
-
};
|
|
131
|
-
useClass?: undefined;
|
|
132
|
-
} | {
|
|
133
|
-
provide: _angular_core.InjectionToken<_ngrdt_gov.RdtGovNotificationDefaultConfig>;
|
|
134
|
-
useValue: {
|
|
135
|
-
duration: number;
|
|
136
|
-
positionVert: string;
|
|
137
|
-
positionHoriz: string;
|
|
138
|
-
successMsg: string;
|
|
139
|
-
warningMsg: string;
|
|
140
|
-
errorMsg: string;
|
|
141
|
-
"arrow-right"?: undefined;
|
|
142
|
-
"arrow-down"?: undefined;
|
|
143
|
-
"chevron-double-left"?: undefined;
|
|
144
|
-
"chevron-double-right"?: undefined;
|
|
145
|
-
"chevron-left"?: undefined;
|
|
146
|
-
"chevron-right"?: undefined;
|
|
147
|
-
"sort-down"?: undefined;
|
|
148
|
-
"sort-up"?: undefined;
|
|
149
|
-
filter?: undefined;
|
|
150
|
-
minHeight?: undefined;
|
|
151
|
-
isDraggable?: undefined;
|
|
152
|
-
};
|
|
153
|
-
useClass?: undefined;
|
|
154
|
-
} | {
|
|
155
|
-
provide: _angular_core.InjectionToken<Partial<_ngrdt_gov.RdtGovDialogAlertConfigInt>>;
|
|
156
|
-
useValue: {
|
|
157
|
-
minHeight: string;
|
|
158
|
-
"arrow-right"?: undefined;
|
|
159
|
-
"arrow-down"?: undefined;
|
|
160
|
-
"chevron-double-left"?: undefined;
|
|
161
|
-
"chevron-double-right"?: undefined;
|
|
162
|
-
"chevron-left"?: undefined;
|
|
163
|
-
"chevron-right"?: undefined;
|
|
164
|
-
"sort-down"?: undefined;
|
|
165
|
-
"sort-up"?: undefined;
|
|
166
|
-
filter?: undefined;
|
|
167
|
-
duration?: undefined;
|
|
168
|
-
positionVert?: undefined;
|
|
169
|
-
positionHoriz?: undefined;
|
|
170
|
-
successMsg?: undefined;
|
|
171
|
-
warningMsg?: undefined;
|
|
172
|
-
errorMsg?: undefined;
|
|
173
|
-
isDraggable?: undefined;
|
|
174
|
-
};
|
|
175
|
-
useClass?: undefined;
|
|
176
|
-
} | {
|
|
177
|
-
provide: _angular_core.InjectionToken<Partial<_ngrdt_gov.RdtGovDialogConfigInt<any, any>>>;
|
|
178
|
-
useValue: {
|
|
179
|
-
isDraggable: boolean;
|
|
180
|
-
minHeight: string;
|
|
181
|
-
"arrow-right"?: undefined;
|
|
182
|
-
"arrow-down"?: undefined;
|
|
183
|
-
"chevron-double-left"?: undefined;
|
|
184
|
-
"chevron-double-right"?: undefined;
|
|
185
|
-
"chevron-left"?: undefined;
|
|
186
|
-
"chevron-right"?: undefined;
|
|
187
|
-
"sort-down"?: undefined;
|
|
188
|
-
"sort-up"?: undefined;
|
|
189
|
-
filter?: undefined;
|
|
190
|
-
duration?: undefined;
|
|
191
|
-
positionVert?: undefined;
|
|
192
|
-
positionHoriz?: undefined;
|
|
193
|
-
successMsg?: undefined;
|
|
194
|
-
warningMsg?: undefined;
|
|
195
|
-
errorMsg?: undefined;
|
|
196
|
-
};
|
|
197
|
-
useClass?: undefined;
|
|
198
|
-
} | {
|
|
199
|
-
provide: _angular_core.InjectionToken<_angular_core.Type<_ngrdt_loading.RdtSpinnerComponent>>;
|
|
200
|
-
useValue: typeof RdtGovSpinnerComponent;
|
|
201
|
-
useClass?: undefined;
|
|
202
|
-
} | {
|
|
203
|
-
provide: _angular_core.InjectionToken<{}>;
|
|
204
|
-
useValue: string;
|
|
205
|
-
useClass?: undefined;
|
|
206
|
-
} | {
|
|
207
|
-
provide: typeof MatDatepickerIntl;
|
|
208
|
-
useClass: typeof RdtDatepickerIntl;
|
|
209
|
-
useValue?: undefined;
|
|
210
|
-
})[];
|
|
211
|
-
|
|
212
|
-
interface RdtGovConfig {
|
|
213
|
-
iconsPath?: string;
|
|
214
|
-
[key: string]: any;
|
|
215
|
-
}
|
|
216
|
-
declare function initRdtGov(config?: RdtGovConfig): void;
|
|
217
|
-
|
|
218
70
|
declare class RdtGovDateComponent extends RdtDateComponent<string, Date> {
|
|
219
71
|
private readonly translateService;
|
|
220
72
|
private readonly dateAdapter;
|
|
@@ -278,25 +130,37 @@ declare class RdtGovDialogContentComponent {
|
|
|
278
130
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovDialogContentComponent, "rdt-gov-dialog-content", never, {}, {}, never, ["*"], true, never>;
|
|
279
131
|
}
|
|
280
132
|
|
|
281
|
-
declare abstract class RdtGovBaseDialog<TIn = any, TOut = any> {
|
|
282
|
-
|
|
133
|
+
type BOOTSTRAP = '123' | 'alarm-fill' | 'alarm' | 'align-bottom' | 'align-center' | 'align-end' | 'align-middle' | 'align-start' | 'align-top' | 'alt' | 'app-indicator' | 'app' | 'archive-fill' | 'archive' | 'arrow-90deg-down' | 'arrow-90deg-left' | 'arrow-90deg-right' | 'arrow-90deg-up' | 'arrow-bar-down' | 'arrow-bar-left' | 'arrow-bar-right' | 'arrow-bar-up' | 'arrow-clockwise' | 'arrow-counterclockwise' | 'arrow-down-circle-fill' | 'arrow-down-circle' | 'arrow-down-left-circle-fill' | 'arrow-down-left-circle' | 'arrow-down-left-square-fill' | 'arrow-down-left-square' | 'arrow-down-left' | 'arrow-down-right-circle-fill' | 'arrow-down-right-circle' | 'arrow-down-right-square-fill' | 'arrow-down-right-square' | 'arrow-down-right' | 'arrow-down-short' | 'arrow-down-square-fill' | 'arrow-down-square' | 'arrow-down-up' | 'arrow-down' | 'arrow-left-circle-fill' | 'arrow-left-circle' | 'arrow-left-right' | 'arrow-left-short' | 'arrow-left-square-fill' | 'arrow-left-square' | 'arrow-left' | 'arrow-repeat' | 'arrow-return-left' | 'arrow-return-right' | 'arrow-right-circle-fill' | 'arrow-right-circle' | 'arrow-right-short' | 'arrow-right-square-fill' | 'arrow-right-square' | 'arrow-right' | 'arrow-up-circle-fill' | 'arrow-up-circle' | 'arrow-up-left-circle-fill' | 'arrow-up-left-circle' | 'arrow-up-left-square-fill' | 'arrow-up-left-square' | 'arrow-up-left' | 'arrow-up-right-circle-fill' | 'arrow-up-right-circle' | 'arrow-up-right-square-fill' | 'arrow-up-right-square' | 'arrow-up-right' | 'arrow-up-short' | 'arrow-up-square-fill' | 'arrow-up-square' | 'arrow-up' | 'arrows-angle-contract' | 'arrows-angle-expand' | 'arrows-collapse' | 'arrows-expand' | 'arrows-fullscreen' | 'arrows-move' | 'aspect-ratio-fill' | 'aspect-ratio' | 'asterisk' | 'at' | 'award-fill' | 'award' | 'back' | 'backspace-fill' | 'backspace-reverse-fill' | 'backspace-reverse' | 'backspace' | 'badge-3d-fill' | 'badge-3d' | 'badge-4k-fill' | 'badge-4k' | 'badge-8k-fill' | 'badge-8k' | 'badge-ad-fill' | 'badge-ad' | 'badge-ar-fill' | 'badge-ar' | 'badge-cc-fill' | 'badge-cc' | 'badge-hd-fill' | 'badge-hd' | 'badge-tm-fill' | 'badge-tm' | 'badge-vo-fill' | 'badge-vo' | 'badge-vr-fill' | 'badge-vr' | 'badge-wc-fill' | 'badge-wc' | 'bag-check-fill' | 'bag-check' | 'bag-dash-fill' | 'bag-dash' | 'bag-fill' | 'bag-plus-fill' | 'bag-plus' | 'bag-x-fill' | 'bag-x' | 'bag' | 'bar-chart-fill' | 'bar-chart-line-fill' | 'bar-chart-line' | 'bar-chart-steps' | 'bar-chart' | 'basket-fill' | 'basket' | 'basket2-fill' | 'basket2' | 'basket3-fill' | 'basket3' | 'battery-charging' | 'battery-full' | 'battery-half' | 'battery' | 'bell-fill' | 'bell' | 'bezier' | 'bezier2' | 'bicycle' | 'binoculars-fill' | 'binoculars' | 'blockquote-left' | 'blockquote-right' | 'book-fill' | 'book-half' | 'book' | 'bookmark-check-fill' | 'bookmark-check' | 'bookmark-dash-fill' | 'bookmark-dash' | 'bookmark-fill' | 'bookmark-heart-fill' | 'bookmark-heart' | 'bookmark-plus-fill' | 'bookmark-plus' | 'bookmark-star-fill' | 'bookmark-star' | 'bookmark-x-fill' | 'bookmark-x' | 'bookmark' | 'bookmarks-fill' | 'bookmarks' | 'bookshelf' | 'bootstrap-fill' | 'bootstrap-reboot' | 'bootstrap' | 'border-all' | 'border-bottom' | 'border-center' | 'border-inner' | 'border-left' | 'border-middle' | 'border-outer' | 'border-right' | 'border-style' | 'border-top' | 'border-width' | 'border' | 'bounding-box-circles' | 'bounding-box' | 'box-arrow-down-left' | 'box-arrow-down-right' | 'box-arrow-down' | 'box-arrow-in-down-left' | 'box-arrow-in-down-right' | 'box-arrow-in-down' | 'box-arrow-in-left' | 'box-arrow-in-right' | 'box-arrow-in-up-left' | 'box-arrow-in-up-right' | 'box-arrow-in-up' | 'box-arrow-left' | 'box-arrow-right' | 'box-arrow-up-left' | 'box-arrow-up-right' | 'box-arrow-up' | 'box-seam' | 'box' | 'braces' | 'bricks' | 'briefcase-fill' | 'briefcase' | 'brightness-alt-high-fill' | 'brightness-alt-high' | 'brightness-alt-low-fill' | 'brightness-alt-low' | 'brightness-high-fill' | 'brightness-high' | 'brightness-low-fill' | 'brightness-low' | 'broadcast-pin' | 'broadcast' | 'brush-fill' | 'brush' | 'bucket-fill' | 'bucket' | 'bug-fill' | 'bug' | 'building' | 'bullseye' | 'calculator-fill' | 'calculator' | 'calendar-check-fill' | 'calendar-check' | 'calendar-date-fill' | 'calendar-date' | 'calendar-day-fill' | 'calendar-day' | 'calendar-event-fill' | 'calendar-event' | 'calendar-fill' | 'calendar-minus-fill' | 'calendar-minus' | 'calendar-month-fill' | 'calendar-month' | 'calendar-plus-fill' | 'calendar-plus' | 'calendar-range-fill' | 'calendar-range' | 'calendar-week-fill' | 'calendar-week' | 'calendar-x-fill' | 'calendar-x' | 'calendar' | 'calendar2-check-fill' | 'calendar2-check' | 'calendar2-date-fill' | 'calendar2-date' | 'calendar2-day-fill' | 'calendar2-day' | 'calendar2-event-fill' | 'calendar2-event' | 'calendar2-fill' | 'calendar2-minus-fill' | 'calendar2-minus' | 'calendar2-month-fill' | 'calendar2-month' | 'calendar2-plus-fill' | 'calendar2-plus' | 'calendar2-range-fill' | 'calendar2-range' | 'calendar2-week-fill' | 'calendar2-week' | 'calendar2-x-fill' | 'calendar2-x' | 'calendar2' | 'calendar3-event-fill' | 'calendar3-event' | 'calendar3-fill' | 'calendar3-range-fill' | 'calendar3-range' | 'calendar3-week-fill' | 'calendar3-week' | 'calendar3' | 'calendar4-event' | 'calendar4-range' | 'calendar4-week' | 'calendar4' | 'camera-fill' | 'camera-reels-fill' | 'camera-reels' | 'camera-video-fill' | 'camera-video-off-fill' | 'camera-video-off' | 'camera-video' | 'camera' | 'camera2' | 'capslock-fill' | 'capslock' | 'card-checklist' | 'card-heading' | 'card-image' | 'card-list' | 'card-text' | 'caret-down-fill' | 'caret-down-square-fill' | 'caret-down-square' | 'caret-down' | 'caret-left-fill' | 'caret-left-square-fill' | 'caret-left-square' | 'caret-left' | 'caret-right-fill' | 'caret-right-square-fill' | 'caret-right-square' | 'caret-right' | 'caret-up-fill' | 'caret-up-square-fill' | 'caret-up-square' | 'caret-up' | 'cart-check-fill' | 'cart-check' | 'cart-dash-fill' | 'cart-dash' | 'cart-fill' | 'cart-plus-fill' | 'cart-plus' | 'cart-x-fill' | 'cart-x' | 'cart' | 'cart2' | 'cart3' | 'cart4' | 'cash-stack' | 'cash' | 'cast' | 'chat-dots-fill' | 'chat-dots' | 'chat-fill' | 'chat-left-dots-fill' | 'chat-left-dots' | 'chat-left-fill' | 'chat-left-quote-fill' | 'chat-left-quote' | 'chat-left-text-fill' | 'chat-left-text' | 'chat-left' | 'chat-quote-fill' | 'chat-quote' | 'chat-right-dots-fill' | 'chat-right-dots' | 'chat-right-fill' | 'chat-right-quote-fill' | 'chat-right-quote' | 'chat-right-text-fill' | 'chat-right-text' | 'chat-right' | 'chat-square-dots-fill' | 'chat-square-dots' | 'chat-square-fill' | 'chat-square-quote-fill' | 'chat-square-quote' | 'chat-square-text-fill' | 'chat-square-text' | 'chat-square' | 'chat-text-fill' | 'chat-text' | 'chat' | 'check-all' | 'check-circle-fill' | 'check-circle' | 'check-square-fill' | 'check-square' | 'check' | 'check2-all' | 'check2-circle' | 'check2-square' | 'check2' | 'chevron-bar-contract' | 'chevron-bar-down' | 'chevron-bar-expand' | 'chevron-bar-left' | 'chevron-bar-right' | 'chevron-bar-up' | 'chevron-compact-down' | 'chevron-compact-left' | 'chevron-compact-right' | 'chevron-compact-up' | 'chevron-contract' | 'chevron-double-down' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-double-up' | 'chevron-down' | 'chevron-expand' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-fill' | 'circle-half' | 'circle-square' | 'circle' | 'clipboard-check' | 'clipboard-data' | 'clipboard-minus' | 'clipboard-plus' | 'clipboard-x' | 'clipboard' | 'clock-fill' | 'clock-history' | 'clock' | 'cloud-arrow-down-fill' | 'cloud-arrow-down' | 'cloud-arrow-up-fill' | 'cloud-arrow-up' | 'cloud-check-fill' | 'cloud-check' | 'cloud-download-fill' | 'cloud-download' | 'cloud-drizzle-fill' | 'cloud-drizzle' | 'cloud-fill' | 'cloud-fog-fill' | 'cloud-fog' | 'cloud-fog2-fill' | 'cloud-fog2' | 'cloud-hail-fill' | 'cloud-hail' | 'cloud-haze-fill' | 'cloud-haze' | 'cloud-haze2-fill' | 'cloud-lightning-fill' | 'cloud-lightning-rain-fill' | 'cloud-lightning-rain' | 'cloud-lightning' | 'cloud-minus-fill' | 'cloud-minus' | 'cloud-moon-fill' | 'cloud-moon' | 'cloud-plus-fill' | 'cloud-plus' | 'cloud-rain-fill' | 'cloud-rain-heavy-fill' | 'cloud-rain-heavy' | 'cloud-rain' | 'cloud-slash-fill' | 'cloud-slash' | 'cloud-sleet-fill' | 'cloud-sleet' | 'cloud-snow-fill' | 'cloud-snow' | 'cloud-sun-fill' | 'cloud-sun' | 'cloud-upload-fill' | 'cloud-upload' | 'cloud' | 'clouds-fill' | 'clouds' | 'cloudy-fill' | 'cloudy' | 'code-slash' | 'code-square' | 'code' | 'collection-fill' | 'collection-play-fill' | 'collection-play' | 'collection' | 'columns-gap' | 'columns' | 'command' | 'compass-fill' | 'compass' | 'cone-striped' | 'cone' | 'controller' | 'cpu-fill' | 'cpu' | 'credit-card-2-back-fill' | 'credit-card-2-back' | 'credit-card-2-front-fill' | 'credit-card-2-front' | 'credit-card-fill' | 'credit-card' | 'crop' | 'cup-fill' | 'cup-straw' | 'cup' | 'cursor-fill' | 'cursor-text' | 'cursor' | 'dash-circle-dotted' | 'dash-circle-fill' | 'dash-circle' | 'dash-square-dotted' | 'dash-square-fill' | 'dash-square' | 'dash' | 'diagram-2-fill' | 'diagram-2' | 'diagram-3-fill' | 'diagram-3' | 'diamond-fill' | 'diamond-half' | 'diamond' | 'dice-1-fill' | 'dice-1' | 'dice-2-fill' | 'dice-2' | 'dice-3-fill' | 'dice-3' | 'dice-4-fill' | 'dice-4' | 'dice-5-fill' | 'dice-5' | 'dice-6-fill' | 'dice-6' | 'disc-fill' | 'disc' | 'discord' | 'display-fill' | 'display' | 'distribute-horizontal' | 'distribute-vertical' | 'door-closed-fill' | 'door-closed' | 'door-open-fill' | 'door-open' | 'dot' | 'download' | 'droplet-fill' | 'droplet-half' | 'droplet' | 'earbuds' | 'easel-fill' | 'easel' | 'egg-fill' | 'egg-fried' | 'egg' | 'eject-fill' | 'eject' | 'emoji-angry-fill' | 'emoji-angry' | 'emoji-dizzy-fill' | 'emoji-dizzy' | 'emoji-expressionless-fill' | 'emoji-expressionless' | 'emoji-frown-fill' | 'emoji-frown' | 'emoji-heart-eyes-fill' | 'emoji-heart-eyes' | 'emoji-laughing-fill' | 'emoji-laughing' | 'emoji-neutral-fill' | 'emoji-neutral' | 'emoji-smile-fill' | 'emoji-smile-upside-down-fill' | 'emoji-smile-upside-down' | 'emoji-smile' | 'emoji-sunglasses-fill' | 'emoji-sunglasses' | 'emoji-wink-fill' | 'emoji-wink' | 'envelope-fill' | 'envelope-open-fill' | 'envelope-open' | 'envelope' | 'eraser-fill' | 'eraser' | 'exclamation-circle-fill' | 'exclamation-circle' | 'exclamation-diamond-fill' | 'exclamation-diamond' | 'exclamation-octagon-fill' | 'exclamation-octagon' | 'exclamation-square-fill' | 'exclamation-square' | 'exclamation-triangle-fill' | 'exclamation-triangle' | 'exclamation' | 'exclude' | 'eye-fill' | 'eye-slash-fill' | 'eye-slash' | 'eye' | 'eyedropper' | 'eyeglasses' | 'facebook' | 'file-arrow-down-fill' | 'file-arrow-down' | 'file-arrow-up-fill' | 'file-arrow-up' | 'file-bar-graph-fill' | 'file-bar-graph' | 'file-binary-fill' | 'file-binary' | 'file-break-fill' | 'file-break' | 'file-check-fill' | 'file-check' | 'file-code-fill' | 'file-code' | 'file-diff-fill' | 'file-diff' | 'file-earmark-arrow-down-fill' | 'file-earmark-arrow-down' | 'file-earmark-arrow-up-fill' | 'file-earmark-arrow-up' | 'file-earmark-bar-graph-fill' | 'file-earmark-bar-graph' | 'file-earmark-binary-fill' | 'file-earmark-binary' | 'file-earmark-break-fill' | 'file-earmark-break' | 'file-earmark-check-fill' | 'file-earmark-check' | 'file-earmark-code-fill' | 'file-earmark-code' | 'file-earmark-diff-fill' | 'file-earmark-diff' | 'file-earmark-easel-fill' | 'file-earmark-easel' | 'file-earmark-excel-fill' | 'file-earmark-excel' | 'file-earmark-fill' | 'file-earmark-font-fill' | 'file-earmark-font' | 'file-earmark-image-fill' | 'file-earmark-image' | 'file-earmark-lock-fill' | 'file-earmark-lock' | 'file-earmark-lock2-fill' | 'file-earmark-lock2' | 'file-earmark-medical-fill' | 'file-earmark-medical' | 'file-earmark-minus-fill' | 'file-earmark-minus' | 'file-earmark-music-fill' | 'file-earmark-music' | 'file-earmark-person-fill' | 'file-earmark-person' | 'file-earmark-play-fill' | 'file-earmark-play' | 'file-earmark-plus-fill' | 'file-earmark-plus' | 'file-earmark-post-fill' | 'file-earmark-post' | 'file-earmark-ppt-fill' | 'file-earmark-ppt' | 'file-earmark-richtext-fill' | 'file-earmark-richtext' | 'file-earmark-ruled-fill' | 'file-earmark-ruled' | 'file-earmark-slides-fill' | 'file-earmark-slides' | 'file-earmark-spreadsheet-fill' | 'file-earmark-spreadsheet' | 'file-earmark-text-fill' | 'file-earmark-text' | 'file-earmark-word-fill' | 'file-earmark-word' | 'file-earmark-x-fill' | 'file-earmark-x' | 'file-earmark-zip-fill' | 'file-earmark-zip' | 'file-earmark' | 'file-easel-fill' | 'file-easel' | 'file-excel-fill' | 'file-excel' | 'file-fill' | 'file-font-fill' | 'file-font' | 'file-image-fill' | 'file-image' | 'file-lock-fill' | 'file-lock' | 'file-lock2-fill' | 'file-lock2' | 'file-medical-fill' | 'file-medical' | 'file-minus-fill' | 'file-minus' | 'file-music-fill' | 'file-music' | 'file-person-fill' | 'file-person' | 'file-play-fill' | 'file-play' | 'file-plus-fill' | 'file-plus' | 'file-post-fill' | 'file-post' | 'file-ppt-fill' | 'file-ppt' | 'file-richtext-fill' | 'file-richtext' | 'file-ruled-fill' | 'file-ruled' | 'file-slides-fill' | 'file-slides' | 'file-spreadsheet-fill' | 'file-spreadsheet' | 'file-text-fill' | 'file-text' | 'file-word-fill' | 'file-word' | 'file-x-fill' | 'file-x' | 'file-zip-fill' | 'file-zip' | 'file' | 'files-alt' | 'files' | 'film' | 'filter-circle-fill' | 'filter-circle' | 'filter-left' | 'filter-right' | 'filter-square-fill' | 'filter-square' | 'filter' | 'flag-fill' | 'flag' | 'flower1' | 'flower2' | 'flower3' | 'folder-check' | 'folder-fill' | 'folder-minus' | 'folder-plus' | 'folder-symlink-fill' | 'folder-symlink' | 'folder-x' | 'folder' | 'folder2-open' | 'folder2' | 'fonts' | 'forward-fill' | 'forward' | 'front' | 'fullscreen-exit' | 'fullscreen' | 'funnel-fill' | 'funnel' | 'gear-fill' | 'gear-wide-connected' | 'gear-wide' | 'gear' | 'gem' | 'geo-alt-fill' | 'geo-alt' | 'geo-fill' | 'geo' | 'gift-fill' | 'gift' | 'github' | 'globe' | 'globe2' | 'google' | 'graph-down' | 'graph-up' | 'grid-1x2-fill' | 'grid-1x2' | 'grid-3x2-gap-fill' | 'grid-3x2-gap' | 'grid-3x2' | 'grid-3x3-gap-fill' | 'grid-3x3-gap' | 'grid-3x3' | 'grid-fill' | 'grid' | 'grip-horizontal' | 'grip-vertical' | 'hammer' | 'hand-index-fill' | 'hand-index-thumb-fill' | 'hand-index-thumb' | 'hand-index' | 'hand-thumbs-down-fill' | 'hand-thumbs-down' | 'hand-thumbs-up-fill' | 'hand-thumbs-up' | 'handbag-fill' | 'handbag' | 'hash' | 'hdd-fill' | 'hdd-network-fill' | 'hdd-network' | 'hdd-rack-fill' | 'hdd-rack' | 'hdd-stack-fill' | 'hdd-stack' | 'hdd' | 'headphones' | 'headset' | 'heart-fill' | 'heart-half' | 'heart' | 'heptagon-fill' | 'heptagon-half' | 'heptagon' | 'hexagon-fill' | 'hexagon-half' | 'hexagon' | 'hourglass-bottom' | 'hourglass-split' | 'hourglass-top' | 'hourglass' | 'house-door-fill' | 'house-door' | 'house-fill' | 'house' | 'hr' | 'hurricane' | 'image-alt' | 'image-fill' | 'image' | 'images' | 'inbox-fill' | 'inbox' | 'inboxes-fill' | 'inboxes' | 'info-circle-fill' | 'info-circle' | 'info-square-fill' | 'info-square' | 'info' | 'input-cursor-text' | 'input-cursor' | 'instagram' | 'intersect' | 'journal-album' | 'journal-arrow-down' | 'journal-arrow-up' | 'journal-bookmark-fill' | 'journal-bookmark' | 'journal-check' | 'journal-code' | 'journal-medical' | 'journal-minus' | 'journal-plus' | 'journal-richtext' | 'journal-text' | 'journal-x' | 'journal' | 'journals' | 'joystick' | 'justify-left' | 'justify-right' | 'justify' | 'kanban-fill' | 'kanban' | 'key-fill' | 'key' | 'keyboard-fill' | 'keyboard' | 'ladder' | 'lamp-fill' | 'lamp' | 'laptop-fill' | 'laptop' | 'layer-backward' | 'layer-forward' | 'layers-fill' | 'layers-half' | 'layers' | 'layout-sidebar-inset-reverse' | 'layout-sidebar-inset' | 'layout-sidebar-reverse' | 'layout-sidebar' | 'layout-split' | 'layout-text-sidebar-reverse' | 'layout-text-sidebar' | 'layout-text-window-reverse' | 'layout-text-window' | 'layout-three-columns' | 'layout-wtf' | 'life-preserver' | 'lightbulb-fill' | 'lightbulb-off-fill' | 'lightbulb-off' | 'lightbulb' | 'lightning-charge-fill' | 'lightning-charge' | 'lightning-fill' | 'lightning' | 'link-45deg' | 'link' | 'linkedin' | 'list-check' | 'list-nested' | 'list-ol' | 'list-stars' | 'list-task' | 'list-ul' | 'list' | 'lock-fill' | 'lock' | 'mailbox' | 'mailbox2' | 'map-fill' | 'map' | 'markdown-fill' | 'markdown' | 'mask' | 'megaphone-fill' | 'megaphone' | 'menu-app-fill' | 'menu-app' | 'menu-button-fill' | 'menu-button-wide-fill' | 'menu-button-wide' | 'menu-button' | 'menu-down' | 'menu-up' | 'mic-fill' | 'mic-mute-fill' | 'mic-mute' | 'mic' | 'minecart-loaded' | 'minecart' | 'moisture' | 'moon-fill' | 'moon-stars-fill' | 'moon-stars' | 'moon' | 'mouse-fill' | 'mouse' | 'mouse2-fill' | 'mouse2' | 'mouse3-fill' | 'mouse3' | 'music-note-beamed' | 'music-note-list' | 'music-note' | 'music-player-fill' | 'music-player' | 'newspaper' | 'node-minus-fill' | 'node-minus' | 'node-plus-fill' | 'node-plus' | 'nut-fill' | 'nut' | 'octagon-fill' | 'octagon-half' | 'octagon' | 'option' | 'outlet' | 'paint-bucket' | 'palette-fill' | 'palette' | 'palette2' | 'paperclip' | 'paragraph' | 'patch-check-fill' | 'patch-check' | 'patch-exclamation-fill' | 'patch-exclamation' | 'patch-minus-fill' | 'patch-minus' | 'patch-plus-fill' | 'patch-plus' | 'patch-question-fill' | 'patch-question' | 'pause-btn-fill' | 'pause-btn' | 'pause-circle-fill' | 'pause-circle' | 'pause-fill' | 'pause' | 'peace-fill' | 'peace' | 'pen-fill' | 'pen' | 'pencil-fill' | 'pencil-square' | 'pencil' | 'pentagon-fill' | 'pentagon-half' | 'pentagon' | 'people-fill' | 'people' | 'percent' | 'person-badge-fill' | 'person-badge' | 'person-bounding-box' | 'person-check-fill' | 'person-check' | 'person-circle' | 'person-dash-fill' | 'person-dash' | 'person-fill' | 'person-lines-fill' | 'person-plus-fill' | 'person-plus' | 'person-square' | 'person-x-fill' | 'person-x' | 'person' | 'phone-fill' | 'phone-landscape-fill' | 'phone-landscape' | 'phone-vibrate-fill' | 'phone-vibrate' | 'phone' | 'pie-chart-fill' | 'pie-chart' | 'pin-angle-fill' | 'pin-angle' | 'pin-fill' | 'pin' | 'pip-fill' | 'pip' | 'play-btn-fill' | 'play-btn' | 'play-circle-fill' | 'play-circle' | 'play-fill' | 'play' | 'plug-fill' | 'plug' | 'plus-circle-dotted' | 'plus-circle-fill' | 'plus-circle' | 'plus-square-dotted' | 'plus-square-fill' | 'plus-square' | 'plus' | 'power' | 'printer-fill' | 'printer' | 'puzzle-fill' | 'puzzle' | 'question-circle-fill' | 'question-circle' | 'question-diamond-fill' | 'question-diamond' | 'question-octagon-fill' | 'question-octagon' | 'question-square-fill' | 'question-square' | 'question' | 'rainbow' | 'receipt-cutoff' | 'receipt' | 'reception-0' | 'reception-1' | 'reception-2' | 'reception-3' | 'reception-4' | 'record-btn-fill' | 'record-btn' | 'record-circle-fill' | 'record-circle' | 'record-fill' | 'record' | 'record2-fill' | 'record2' | 'reply-all-fill' | 'reply-all' | 'reply-fill' | 'reply' | 'rss-fill' | 'rss' | 'rulers' | 'save-fill' | 'save' | 'save2-fill' | 'save2' | 'scissors' | 'screwdriver' | 'search' | 'segmented-nav' | 'server' | 'share-fill' | 'share' | 'shield-check' | 'shield-exclamation' | 'shield-fill-check' | 'shield-fill-exclamation' | 'shield-fill-minus' | 'shield-fill-plus' | 'shield-fill-x' | 'shield-fill' | 'shield-lock-fill' | 'shield-lock' | 'shield-minus' | 'shield-plus' | 'shield-shaded' | 'shield-slash-fill' | 'shield-slash' | 'shield-x' | 'shield' | 'shift-fill' | 'shift' | 'shop-window' | 'shop' | 'shuffle' | 'signpost-2-fill' | 'signpost-2' | 'signpost-fill' | 'signpost-split-fill' | 'signpost-split' | 'signpost' | 'sim-fill' | 'sim' | 'skip-backward-btn-fill' | 'skip-backward-btn' | 'skip-backward-circle-fill' | 'skip-backward-circle' | 'skip-backward-fill' | 'skip-backward' | 'skip-end-btn-fill' | 'skip-end-btn' | 'skip-end-circle-fill' | 'skip-end-circle' | 'skip-end-fill' | 'skip-end' | 'skip-forward-btn-fill' | 'skip-forward-btn' | 'skip-forward-circle-fill' | 'skip-forward-circle' | 'skip-forward-fill' | 'skip-forward' | 'skip-start-btn-fill' | 'skip-start-btn' | 'skip-start-circle-fill' | 'skip-start-circle' | 'skip-start-fill' | 'skip-start' | 'slack' | 'slash-circle-fill' | 'slash-circle' | 'slash-square-fill' | 'slash-square' | 'slash' | 'sliders' | 'smartwatch' | 'snow' | 'snow2' | 'snow3' | 'sort-alpha-down-alt' | 'sort-alpha-down' | 'sort-alpha-up-alt' | 'sort-alpha-up' | 'sort-down-alt' | 'sort-down' | 'sort-numeric-down-alt' | 'sort-numeric-down' | 'sort-numeric-up-alt' | 'sort-numeric-up' | 'sort-up-alt' | 'sort-up' | 'soundwave' | 'speaker-fill' | 'speaker' | 'speedometer' | 'speedometer2' | 'spellcheck' | 'square-fill' | 'square-half' | 'square' | 'stack' | 'star-fill' | 'star-half' | 'star' | 'stars' | 'stickies-fill' | 'stickies' | 'sticky-fill' | 'sticky' | 'stop-btn-fill' | 'stop-btn' | 'stop-circle-fill' | 'stop-circle' | 'stop-fill' | 'stop' | 'stoplights-fill' | 'stoplights' | 'stopwatch-fill' | 'stopwatch' | 'subtract' | 'suit-club-fill' | 'suit-club' | 'suit-diamond-fill' | 'suit-diamond' | 'suit-heart-fill' | 'suit-heart' | 'suit-spade-fill' | 'suit-spade' | 'sun-fill' | 'sun' | 'sunglasses' | 'sunrise-fill' | 'sunrise' | 'sunset-fill' | 'sunset' | 'symmetry-horizontal' | 'symmetry-vertical' | 'table' | 'tablet-fill' | 'tablet-landscape-fill' | 'tablet-landscape' | 'tablet' | 'tag-fill' | 'tag' | 'tags-fill' | 'tags' | 'telegram' | 'telephone-fill' | 'telephone-forward-fill' | 'telephone-forward' | 'telephone-inbound-fill' | 'telephone-inbound' | 'telephone-minus-fill' | 'telephone-minus' | 'telephone-outbound-fill' | 'telephone-outbound' | 'telephone-plus-fill' | 'telephone-plus' | 'telephone-x-fill' | 'telephone-x' | 'telephone' | 'terminal-fill' | 'terminal' | 'text-center' | 'text-indent-left' | 'text-indent-right' | 'text-left' | 'text-paragraph' | 'text-right' | 'textarea-resize' | 'textarea-t' | 'textarea' | 'thermometer-half' | 'thermometer-high' | 'thermometer-low' | 'thermometer-snow' | 'thermometer-sun' | 'thermometer' | 'three-dots-vertical' | 'three-dots' | 'toggle-off' | 'toggle-on' | 'toggle2-off' | 'toggle2-on' | 'toggles' | 'toggles2' | 'tools' | 'tornado' | 'trash-fill' | 'trash' | 'trash2-fill' | 'trash2' | 'tree-fill' | 'tree' | 'triangle-fill' | 'triangle-half' | 'triangle' | 'trophy-fill' | 'trophy' | 'tropical-storm' | 'truck-flatbed' | 'truck' | 'tsunami' | 'tv-fill' | 'tv' | 'twitch' | 'twitter' | 'type-bold' | 'type-h1' | 'type-h2' | 'type-h3' | 'type-italic' | 'type-strikethrough' | 'type-underline' | 'type' | 'ui-checks-grid' | 'ui-checks' | 'ui-radios-grid' | 'ui-radios' | 'umbrella-fill' | 'umbrella' | 'union' | 'unlock-fill' | 'unlock' | 'upc-scan' | 'upc' | 'upload' | 'vector-pen' | 'view-list' | 'view-stacked' | 'vinyl-fill' | 'vinyl' | 'voicemail' | 'volume-down-fill' | 'volume-down' | 'volume-mute-fill' | 'volume-mute' | 'volume-off-fill' | 'volume-off' | 'volume-up-fill' | 'volume-up' | 'vr' | 'wallet-fill' | 'wallet' | 'wallet2' | 'watch' | 'water' | 'whatsapp' | 'wifi-1' | 'wifi-2' | 'wifi-off' | 'wifi' | 'wind' | 'window-dock' | 'window-sidebar' | 'window' | 'wrench' | 'x-circle-fill' | 'x-circle' | 'x-diamond-fill' | 'x-diamond' | 'x-octagon-fill' | 'x-octagon' | 'x-square-fill' | 'x-square' | 'x' | 'youtube' | 'zoom-in' | 'zoom-out' | 'bank' | 'bank2' | 'bell-slash-fill' | 'bell-slash' | 'cash-coin' | 'check-lg' | 'coin' | 'currency-bitcoin' | 'currency-dollar' | 'currency-euro' | 'currency-exchange' | 'currency-pound' | 'currency-yen' | 'dash-lg' | 'exclamation-lg' | 'file-earmark-pdf-fill' | 'file-earmark-pdf' | 'file-pdf-fill' | 'file-pdf' | 'gender-ambiguous' | 'gender-female' | 'gender-male' | 'gender-trans' | 'headset-vr' | 'info-lg' | 'mastodon' | 'messenger' | 'piggy-bank-fill' | 'piggy-bank' | 'pin-map-fill' | 'pin-map' | 'plus-lg' | 'question-lg' | 'recycle' | 'reddit' | 'safe-fill' | 'safe2-fill' | 'safe2' | 'sd-card-fill' | 'sd-card' | 'skype' | 'slash-lg' | 'translate' | 'x-lg' | 'safe' | 'apple' | 'microsoft' | 'windows' | 'behance' | 'dribbble' | 'line' | 'medium' | 'paypal' | 'pinterest' | 'signal' | 'snapchat' | 'spotify' | 'stack-overflow' | 'strava' | 'wordpress' | 'vimeo' | 'activity' | 'easel2-fill' | 'easel2' | 'easel3-fill' | 'easel3' | 'fan' | 'fingerprint' | 'graph-down-arrow' | 'graph-up-arrow' | 'hypnotize' | 'magic' | 'person-rolodex' | 'person-video' | 'person-video2' | 'person-video3' | 'person-workspace' | 'radioactive' | 'webcam-fill' | 'webcam' | 'yin-yang' | 'bandaid-fill' | 'bandaid' | 'bluetooth' | 'body-text' | 'boombox' | 'boxes' | 'dpad-fill' | 'dpad' | 'ear-fill' | 'ear' | 'envelope-check-fill' | 'envelope-check' | 'envelope-dash-fill' | 'envelope-dash' | 'envelope-exclamation-fill' | 'envelope-exclamation' | 'envelope-plus-fill' | 'envelope-plus' | 'envelope-slash-fill' | 'envelope-slash' | 'envelope-x-fill' | 'envelope-x' | 'explicit-fill' | 'explicit' | 'git' | 'infinity' | 'list-columns-reverse' | 'list-columns' | 'meta' | 'nintendo-switch' | 'pc-display-horizontal' | 'pc-display' | 'pc-horizontal' | 'pc' | 'playstation' | 'plus-slash-minus' | 'projector-fill' | 'projector' | 'qr-code-scan' | 'qr-code' | 'quora' | 'quote' | 'robot' | 'send-check-fill' | 'send-check' | 'send-dash-fill' | 'send-dash' | 'send-exclamation-fill' | 'send-exclamation' | 'send-fill' | 'send-plus-fill' | 'send-plus' | 'send-slash-fill' | 'send-slash' | 'send-x-fill' | 'send-x' | 'send' | 'steam' | 'terminal-dash' | 'terminal-plus' | 'terminal-split' | 'ticket-detailed-fill' | 'ticket-detailed' | 'ticket-fill' | 'ticket-perforated-fill' | 'ticket-perforated' | 'ticket' | 'tiktok' | 'window-dash' | 'window-desktop' | 'window-fullscreen' | 'window-plus' | 'window-split' | 'window-stack' | 'window-x' | 'xbox' | 'ethernet' | 'hdmi-fill' | 'hdmi' | 'usb-c-fill' | 'usb-c' | 'usb-fill' | 'usb-plug-fill' | 'usb-plug' | 'usb-symbol' | 'usb' | 'boombox-fill' | 'displayport' | 'gpu-card' | 'memory' | 'modem-fill' | 'modem' | 'motherboard-fill' | 'motherboard' | 'optical-audio-fill' | 'optical-audio' | 'pci-card' | 'router-fill' | 'router' | 'thunderbolt-fill' | 'thunderbolt' | 'usb-drive-fill' | 'usb-drive' | 'usb-micro-fill' | 'usb-micro' | 'usb-mini-fill' | 'usb-mini' | 'cloud-haze2' | 'device-hdd-fill' | 'device-hdd' | 'device-ssd-fill' | 'device-ssd' | 'displayport-fill' | 'mortarboard-fill' | 'mortarboard' | 'terminal-x' | 'arrow-through-heart-fill' | 'arrow-through-heart' | 'badge-sd-fill' | 'badge-sd' | 'bag-heart-fill' | 'bag-heart' | 'balloon-fill' | 'balloon-heart-fill' | 'balloon-heart' | 'balloon' | 'box2-fill' | 'box2-heart-fill' | 'box2-heart' | 'box2' | 'braces-asterisk' | 'calendar-heart-fill' | 'calendar-heart' | 'calendar2-heart-fill' | 'calendar2-heart' | 'chat-heart-fill' | 'chat-heart' | 'chat-left-heart-fill' | 'chat-left-heart' | 'chat-right-heart-fill' | 'chat-right-heart' | 'chat-square-heart-fill' | 'chat-square-heart' | 'clipboard-check-fill' | 'clipboard-data-fill' | 'clipboard-fill' | 'clipboard-heart-fill' | 'clipboard-heart' | 'clipboard-minus-fill' | 'clipboard-plus-fill' | 'clipboard-pulse' | 'clipboard-x-fill' | 'clipboard2-check-fill' | 'clipboard2-check' | 'clipboard2-data-fill' | 'clipboard2-data' | 'clipboard2-fill' | 'clipboard2-heart-fill' | 'clipboard2-heart' | 'clipboard2-minus-fill' | 'clipboard2-minus' | 'clipboard2-plus-fill' | 'clipboard2-plus' | 'clipboard2-pulse-fill' | 'clipboard2-pulse' | 'clipboard2-x-fill' | 'clipboard2-x' | 'clipboard2' | 'emoji-kiss-fill' | 'emoji-kiss' | 'envelope-heart-fill' | 'envelope-heart' | 'envelope-open-heart-fill' | 'envelope-open-heart' | 'envelope-paper-fill' | 'envelope-paper-heart-fill' | 'envelope-paper-heart' | 'envelope-paper' | 'filetype-aac' | 'filetype-ai' | 'filetype-bmp' | 'filetype-cs' | 'filetype-css' | 'filetype-csv' | 'filetype-doc' | 'filetype-docx' | 'filetype-exe' | 'filetype-gif' | 'filetype-heic' | 'filetype-html' | 'filetype-java' | 'filetype-jpg' | 'filetype-js' | 'filetype-jsx' | 'filetype-key' | 'filetype-m4p' | 'filetype-md' | 'filetype-mdx' | 'filetype-mov' | 'filetype-mp3' | 'filetype-mp4' | 'filetype-otf' | 'filetype-pdf' | 'filetype-php' | 'filetype-png' | 'filetype-ppt' | 'filetype-psd' | 'filetype-py' | 'filetype-raw' | 'filetype-rb' | 'filetype-sass' | 'filetype-scss' | 'filetype-sh' | 'filetype-svg' | 'filetype-tiff' | 'filetype-tsx' | 'filetype-ttf' | 'filetype-txt' | 'filetype-wav' | 'filetype-woff' | 'filetype-xls' | 'filetype-xml' | 'filetype-yml' | 'heart-arrow' | 'heart-pulse-fill' | 'heart-pulse' | 'heartbreak-fill' | 'heartbreak' | 'hearts' | 'hospital-fill' | 'hospital' | 'house-heart-fill' | 'house-heart' | 'incognito' | 'magnet-fill' | 'magnet' | 'person-heart' | 'person-hearts' | 'phone-flip' | 'plugin' | 'postage-fill' | 'postage-heart-fill' | 'postage-heart' | 'postage' | 'postcard-fill' | 'postcard-heart-fill' | 'postcard-heart' | 'postcard' | 'search-heart-fill' | 'search-heart' | 'sliders2-vertical' | 'sliders2' | 'trash3-fill' | 'trash3' | 'valentine' | 'valentine2' | 'wrench-adjustable-circle-fill' | 'wrench-adjustable-circle' | 'wrench-adjustable' | 'filetype-json' | 'filetype-pptx' | 'filetype-xlsx' | '1-circle-fill' | '1-circle' | '1-square-fill' | '1-square' | '2-circle-fill' | '2-circle' | '2-square-fill' | '2-square' | '3-circle-fill' | '3-circle' | '3-square-fill' | '3-square' | '4-circle-fill' | '4-circle' | '4-square-fill' | '4-square' | '5-circle-fill' | '5-circle' | '5-square-fill' | '5-square' | '6-circle-fill' | '6-circle' | '6-square-fill' | '6-square' | '7-circle-fill' | '7-circle' | '7-square-fill' | '7-square' | '8-circle-fill' | '8-circle' | '8-square-fill' | '8-square' | '9-circle-fill' | '9-circle' | '9-square-fill' | '9-square' | 'airplane-engines-fill' | 'airplane-engines' | 'airplane-fill' | 'airplane' | 'alexa' | 'alipay' | 'android' | 'android2' | 'box-fill' | 'box-seam-fill' | 'browser-chrome' | 'browser-edge' | 'browser-firefox' | 'browser-safari' | 'c-circle-fill' | 'c-circle' | 'c-square-fill' | 'c-square' | 'capsule-pill' | 'capsule' | 'car-front-fill' | 'car-front' | 'cassette-fill' | 'cassette' | 'cc-circle-fill' | 'cc-circle' | 'cc-square-fill' | 'cc-square' | 'cup-hot-fill' | 'cup-hot' | 'currency-rupee' | 'dropbox' | 'escape' | 'fast-forward-btn-fill' | 'fast-forward-btn' | 'fast-forward-circle-fill' | 'fast-forward-circle' | 'fast-forward-fill' | 'fast-forward' | 'filetype-sql' | 'fire' | 'google-play' | 'h-circle-fill' | 'h-circle' | 'h-square-fill' | 'h-square' | 'indent' | 'lungs-fill' | 'lungs' | 'microsoft-teams' | 'p-circle-fill' | 'p-circle' | 'p-square-fill' | 'p-square' | 'pass-fill' | 'pass' | 'prescription' | 'prescription2' | 'r-circle-fill' | 'r-circle' | 'r-square-fill' | 'r-square' | 'repeat-1' | 'repeat' | 'rewind-btn-fill' | 'rewind-btn' | 'rewind-circle-fill' | 'rewind-circle' | 'rewind-fill' | 'rewind' | 'train-freight-front-fill' | 'train-freight-front' | 'train-front-fill' | 'train-front' | 'train-lightrail-front-fill' | 'train-lightrail-front' | 'truck-front-fill' | 'truck-front' | 'ubuntu' | 'unindent' | 'unity' | 'universal-access-circle' | 'universal-access' | 'virus' | 'virus2' | 'wechat' | 'yelp' | 'sign-stop-fill' | 'sign-stop-lights-fill' | 'sign-stop-lights' | 'sign-stop' | 'sign-turn-left-fill' | 'sign-turn-left' | 'sign-turn-right-fill' | 'sign-turn-right' | 'sign-turn-slight-left-fill' | 'sign-turn-slight-left' | 'sign-turn-slight-right-fill' | 'sign-turn-slight-right' | 'sign-yield-fill' | 'sign-yield' | 'ev-station-fill' | 'ev-station' | 'fuel-pump-diesel-fill' | 'fuel-pump-diesel' | 'fuel-pump-fill' | 'fuel-pump' | '0-circle-fill' | '0-circle' | '0-square-fill' | '0-square' | 'rocket-fill' | 'rocket-takeoff-fill' | 'rocket-takeoff' | 'rocket' | 'stripe' | 'subscript' | 'superscript' | 'trello' | 'envelope-at-fill' | 'envelope-at' | 'regex' | 'text-wrap' | 'sign-dead-end-fill' | 'sign-dead-end' | 'sign-do-not-enter-fill' | 'sign-do-not-enter' | 'sign-intersection-fill' | 'sign-intersection-side-fill' | 'sign-intersection-side' | 'sign-intersection-t-fill' | 'sign-intersection-t' | 'sign-intersection-y-fill' | 'sign-intersection-y' | 'sign-intersection' | 'sign-merge-left-fill' | 'sign-merge-left' | 'sign-merge-right-fill' | 'sign-merge-right' | 'sign-no-left-turn-fill' | 'sign-no-left-turn' | 'sign-no-parking-fill' | 'sign-no-parking' | 'sign-no-right-turn-fill' | 'sign-no-right-turn' | 'sign-railroad-fill' | 'sign-railroad' | 'building-add' | 'building-check' | 'building-dash' | 'building-down' | 'building-exclamation' | 'building-fill-add' | 'building-fill-check' | 'building-fill-dash' | 'building-fill-down' | 'building-fill-exclamation' | 'building-fill-gear' | 'building-fill-lock' | 'building-fill-slash' | 'building-fill-up' | 'building-fill-x' | 'building-fill' | 'building-gear' | 'building-lock' | 'building-slash' | 'building-up' | 'building-x' | 'buildings-fill' | 'buildings' | 'bus-front-fill' | 'bus-front' | 'ev-front-fill' | 'ev-front' | 'globe-americas' | 'globe-asia-australia' | 'globe-central-south-asia' | 'globe-europe-africa' | 'house-add-fill' | 'house-add' | 'house-check-fill' | 'house-check' | 'house-dash-fill' | 'house-dash' | 'house-down-fill' | 'house-down' | 'house-exclamation-fill' | 'house-exclamation' | 'house-gear-fill' | 'house-gear' | 'house-lock-fill' | 'house-lock' | 'house-slash-fill' | 'house-slash' | 'house-up-fill' | 'house-up' | 'house-x-fill' | 'house-x' | 'person-add' | 'person-down' | 'person-exclamation' | 'person-fill-add' | 'person-fill-check' | 'person-fill-dash' | 'person-fill-down' | 'person-fill-exclamation' | 'person-fill-gear' | 'person-fill-lock' | 'person-fill-slash' | 'person-fill-up' | 'person-fill-x' | 'person-gear' | 'person-lock' | 'person-slash' | 'person-up' | 'scooter' | 'taxi-front-fill' | 'taxi-front' | 'amd' | 'database-add' | 'database-check' | 'database-dash' | 'database-down' | 'database-exclamation' | 'database-fill-add' | 'database-fill-check' | 'database-fill-dash' | 'database-fill-down' | 'database-fill-exclamation' | 'database-fill-gear' | 'database-fill-lock' | 'database-fill-slash' | 'database-fill-up' | 'database-fill-x' | 'database-fill' | 'database-gear' | 'database-lock' | 'database-slash' | 'database-up' | 'database-x' | 'database' | 'houses-fill' | 'houses' | 'nvidia' | 'person-vcard-fill' | 'person-vcard' | 'sina-weibo' | 'tencent-qq' | 'wikipedia' | 'alphabet-uppercase' | 'alphabet' | 'amazon' | 'arrows-collapse-vertical' | 'arrows-expand-vertical' | 'arrows-vertical' | 'arrows' | 'ban-fill' | 'ban' | 'bing' | 'cake' | 'cake2' | 'cookie' | 'copy' | 'crosshair' | 'crosshair2' | 'emoji-astonished-fill' | 'emoji-astonished' | 'emoji-grimace-fill' | 'emoji-grimace' | 'emoji-grin-fill' | 'emoji-grin' | 'emoji-surprise-fill' | 'emoji-surprise' | 'emoji-tear-fill' | 'emoji-tear' | 'envelope-arrow-down-fill' | 'envelope-arrow-down' | 'envelope-arrow-up-fill' | 'envelope-arrow-up' | 'feather' | 'feather2' | 'floppy-fill' | 'floppy' | 'floppy2-fill' | 'floppy2' | 'gitlab' | 'highlighter' | 'marker-tip' | 'nvme-fill' | 'nvme' | 'opencollective' | 'pci-card-network' | 'pci-card-sound' | 'radar' | 'send-arrow-down-fill' | 'send-arrow-down' | 'send-arrow-up-fill' | 'send-arrow-up' | 'sim-slash-fill' | 'sim-slash' | 'sourceforge' | 'substack' | 'threads-fill' | 'threads' | 'transparency' | 'twitter-x' | 'type-h4' | 'type-h5' | 'type-h6' | 'backpack-fill' | 'backpack' | 'backpack2-fill' | 'backpack2' | 'backpack3-fill' | 'backpack3' | 'backpack4-fill' | 'backpack4' | 'brilliance' | 'cake-fill' | 'cake2-fill' | 'duffle-fill' | 'duffle' | 'exposure' | 'gender-neuter' | 'highlights' | 'luggage-fill' | 'luggage' | 'mailbox-flag' | 'mailbox2-flag' | 'noise-reduction' | 'passport-fill' | 'passport' | 'person-arms-up' | 'person-raised-hand' | 'person-standing-dress' | 'person-standing' | 'person-walking' | 'person-wheelchair' | 'shadows' | 'suitcase-fill' | 'suitcase-lg-fill' | 'suitcase-lg' | 'suitcase' | 'suitcase2-fill' | 'suitcase2' | 'vignette' | 'bluesky' | 'tux' | 'beaker-fill' | 'beaker' | 'flask-fill' | 'flask-florence-fill' | 'flask-florence' | 'flask' | 'leaf-fill' | 'leaf' | 'measuring-cup-fill' | 'measuring-cup' | 'unlock2-fill' | 'unlock2' | 'battery-low' | 'anthropic' | 'apple-music' | 'claude' | 'openai' | 'perplexity' | 'css' | 'javascript' | 'typescript' | 'fork-knife' | 'globe-americas-fill' | 'globe-asia-australia-fill' | 'globe-central-south-asia-fill' | 'globe-europe-africa-fill';
|
|
134
|
+
type RdtGovIconBootstrap = `bs/${BOOTSTRAP}`;
|
|
135
|
+
|
|
136
|
+
type COMPLEX = '24-7' | 'all' | 'arrival' | 'bell' | 'big-help' | 'business-file' | 'businessman' | 'cactus' | 'camera' | 'car' | 'card-400' | 'card-401' | 'card-403' | 'card-404' | 'card-500' | 'card-502' | 'certification' | 'chamber-deputies-200' | 'chamber-deputies-cr' | 'chamber-deputies' | 'chat' | 'cities' | 'city-office' | 'coins' | 'communication' | 'confusion' | 'contact' | 'court' | 'covid' | 'digital' | 'disability' | 'doc-agreement' | 'doc-basic-info' | 'doc-business' | 'doc-car-point-list' | 'doc-diploma' | 'doc-driver-info' | 'doc-election' | 'doc-filled' | 'doc-health' | 'doc-judgment' | 'doc-patient' | 'doc-personal-info' | 'doc-petition' | 'doc-registers' | 'doc-review' | 'doc-search' | 'doc-stamp' | 'doc-state' | 'doc-taxes' | 'doc-universal' | 'doc-visa' | 'documents' | 'driver-file' | 'driver' | 'driving-licence' | 'email-notification' | 'energy' | 'envelope' | 'european-parliament' | 'family' | 'filename.txt' | 'globe' | 'graduate' | 'hand-400' | 'hand-401' | 'hand-403' | 'hand-404' | 'hand-500' | 'hand-502' | 'hand' | 'health' | 'healthcare' | 'help' | 'history' | 'holiday' | 'hourglass' | 'house' | 'id-card' | 'id-info' | 'id' | 'illness' | 'info-list' | 'info' | 'institute-file' | 'institution' | 'job-loss' | 'job' | 'map' | 'mobile-phone' | 'mouse' | 'my-filing' | 'my-state-data' | 'new-comments' | 'newborn' | 'news' | 'packet' | 'passport' | 'personal-file' | 'pet' | 'petrol-station' | 'pills' | 'population-register' | 'portal' | 'pregnant' | 'president' | 'presidential-election' | 'profile-settings' | 'property' | 'queue' | 'quotes' | 'region' | 'regional-elections-clear' | 'regional-elections' | 'register-of-persons' | 'retiree' | 'rings' | 'senate-81' | 'senate' | 'senior' | 'settings' | 'simple-envelope' | 'sms-notification' | 'sos' | 'state-file' | 'time' | 'tombstone' | 'vaccine';
|
|
137
|
+
type RdtGovIconComplex = `complex/${COMPLEX}`;
|
|
138
|
+
|
|
139
|
+
type COMPONENTS = 'arrow-down' | 'book' | 'bookmarks' | 'box-arrow-up-right' | 'briefcase' | 'caret-right-fill' | 'check-circle-fill' | 'check-lg' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'copy' | 'dash-lg' | 'download' | 'envelope-fill' | 'exclamation-lg' | 'exclamation-triangle-fill' | 'eye' | 'gear' | 'geo-alt-fill' | 'house-door-fill' | 'info-circle-fill' | 'info-circle' | 'info' | 'lightbulb-fill' | 'list' | 'loader' | 'moon' | 'person-fill' | 'plus-lg' | 'quote' | 'search' | 'star-fill' | 'sun' | 'telephone' | 'twitter-x' | 'upload' | 'x-lg' | 'x';
|
|
140
|
+
type RdtGovIconComponents = `components/${COMPONENTS}`;
|
|
141
|
+
|
|
142
|
+
type RdtGovIcon = RdtGovIconBootstrap | RdtGovIconComponents | RdtGovIconComplex;
|
|
143
|
+
|
|
144
|
+
declare abstract class RdtGovDialogBase<TIn = any, TOut = TIn> {
|
|
145
|
+
protected readonly dialogRef: RdtGovDialogRef<TIn, TOut>;
|
|
283
146
|
constructor();
|
|
284
147
|
protected ready(): void;
|
|
148
|
+
protected close(data?: TOut): void;
|
|
285
149
|
}
|
|
286
150
|
|
|
287
151
|
interface RdtDialogHeaderIconsInt {
|
|
288
|
-
iconStart?:
|
|
152
|
+
iconStart?: RdtGovIcon;
|
|
289
153
|
iconStartColor?: GovColor;
|
|
290
|
-
icon?:
|
|
154
|
+
icon?: RdtGovIcon;
|
|
291
155
|
iconColor?: GovColor;
|
|
292
156
|
}
|
|
293
157
|
interface RdtGovDialogConfigInt<TIn, TOut> {
|
|
294
|
-
component: Type<
|
|
158
|
+
component: Type<RdtGovDialogBase<TIn, TOut>>;
|
|
295
159
|
size?: GovDialogSize;
|
|
296
|
-
minWidth?:
|
|
297
|
-
maxWidth?:
|
|
298
|
-
minHeight?:
|
|
299
|
-
maxHeight?:
|
|
160
|
+
minWidth?: RdtCssSize;
|
|
161
|
+
maxWidth?: RdtCssSize;
|
|
162
|
+
minHeight?: RdtCssSize;
|
|
163
|
+
maxHeight?: RdtCssSize;
|
|
300
164
|
header?: string;
|
|
301
165
|
headerIcons?: RdtDialogHeaderIconsInt;
|
|
302
166
|
inputData?: TIn;
|
|
@@ -306,52 +170,48 @@ interface RdtGovDialogConfigInt<TIn, TOut> {
|
|
|
306
170
|
isDraggable?: boolean;
|
|
307
171
|
isResizable?: boolean;
|
|
308
172
|
}
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
headerIcons?: RdtDialogHeaderIconsInt;
|
|
326
|
-
okBtn?: RdtDialogInfoButtonInt;
|
|
327
|
-
}
|
|
328
|
-
interface RdtGovDialogConfimConfigInt {
|
|
329
|
-
minWidth?: `${number}px`;
|
|
330
|
-
maxWidth?: `${number}px`;
|
|
331
|
-
minHeight?: `${number}px`;
|
|
332
|
-
maxHeight?: `${number}px`;
|
|
333
|
-
message: string;
|
|
334
|
-
header?: string;
|
|
335
|
-
headerIcons?: RdtDialogHeaderIconsInt;
|
|
336
|
-
yesBtn?: RdtDialogInfoButtonInt;
|
|
337
|
-
noBtn?: RdtDialogInfoButtonInt;
|
|
173
|
+
|
|
174
|
+
interface RdtGovDialogData<TIn = any, TOut = TIn> {
|
|
175
|
+
component: Type<RdtGovDialogBase<TIn, TOut>>;
|
|
176
|
+
size: GovDialogSize;
|
|
177
|
+
initialLoading: boolean;
|
|
178
|
+
injector: Injector | undefined;
|
|
179
|
+
hasBackdrop: boolean;
|
|
180
|
+
isDraggable: boolean;
|
|
181
|
+
isResizable: boolean;
|
|
182
|
+
minWidth: RdtCssSize | undefined;
|
|
183
|
+
maxWidth: RdtCssSize | undefined;
|
|
184
|
+
minHeight: RdtCssSize | undefined;
|
|
185
|
+
maxHeight: RdtCssSize | undefined;
|
|
186
|
+
header: string | undefined;
|
|
187
|
+
headerIcons: RdtDialogHeaderIconsInt | undefined;
|
|
188
|
+
inputData: TIn;
|
|
338
189
|
}
|
|
339
190
|
|
|
340
|
-
interface RdtGovDialogRefInt<TIn, TOut
|
|
191
|
+
interface RdtGovDialogRefInt<TIn, TOut> {
|
|
341
192
|
close(data?: TOut): void;
|
|
342
193
|
ready(): void;
|
|
194
|
+
hasBackdrop: boolean;
|
|
195
|
+
isDraggable: boolean;
|
|
196
|
+
isResizable: boolean;
|
|
343
197
|
close$: Observable<TOut | undefined>;
|
|
344
198
|
open$: Observable<void>;
|
|
345
199
|
header: WritableSignal<string | null>;
|
|
346
200
|
isLoading: WritableSignal<boolean>;
|
|
347
|
-
|
|
348
|
-
isDraggable: WritableSignal<boolean>;
|
|
349
|
-
isResizable: WritableSignal<boolean>;
|
|
201
|
+
size: GovDialogSize;
|
|
350
202
|
inputData: WritableSignal<TIn>;
|
|
351
|
-
config: WritableSignal<TConfig>;
|
|
352
203
|
}
|
|
353
|
-
declare class RdtGovDialogRef<TIn = any, TOut =
|
|
354
|
-
|
|
204
|
+
declare class RdtGovDialogRef<TIn = any, TOut = TIn> implements RdtGovDialogRefInt<TIn, TOut> {
|
|
205
|
+
readonly component: Type<any>;
|
|
206
|
+
readonly injector?: Injector;
|
|
207
|
+
readonly minHeight?: RdtCssSize;
|
|
208
|
+
readonly maxHeight?: RdtCssSize;
|
|
209
|
+
readonly minWidth?: RdtCssSize;
|
|
210
|
+
readonly maxWidth?: RdtCssSize;
|
|
211
|
+
readonly size: GovDialogSize;
|
|
212
|
+
readonly hasBackdrop: boolean;
|
|
213
|
+
readonly isDraggable: boolean;
|
|
214
|
+
readonly isResizable: boolean;
|
|
355
215
|
private readonly _close$;
|
|
356
216
|
private readonly _open$;
|
|
357
217
|
readonly close$: Observable<TOut | undefined>;
|
|
@@ -359,24 +219,22 @@ declare class RdtGovDialogRef<TIn = any, TOut = any, TConfig extends RdtGovDialo
|
|
|
359
219
|
readonly header: WritableSignal<string | null>;
|
|
360
220
|
readonly headerIcons: WritableSignal<RdtDialogHeaderIconsInt | null>;
|
|
361
221
|
readonly isLoading: WritableSignal<boolean>;
|
|
362
|
-
readonly hasBackdrop: WritableSignal<boolean>;
|
|
363
|
-
readonly isDraggable: WritableSignal<boolean>;
|
|
364
|
-
readonly isResizable: WritableSignal<boolean>;
|
|
365
222
|
readonly inputData: WritableSignal<TIn>;
|
|
366
|
-
constructor(config:
|
|
223
|
+
constructor(config: RdtGovDialogData<TIn, TOut>);
|
|
367
224
|
ready(): void;
|
|
368
225
|
close(data?: TOut): void;
|
|
369
226
|
}
|
|
370
227
|
|
|
371
228
|
declare class RdtGovDialogFooterComponent {
|
|
372
|
-
readonly dialogRef: RdtGovDialogRef<any, any
|
|
229
|
+
readonly dialogRef: RdtGovDialogRef<any, any>;
|
|
373
230
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovDialogFooterComponent, never>;
|
|
374
231
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovDialogFooterComponent, "rdt-gov-dialog-footer", never, {}, {}, never, ["*"], true, never>;
|
|
375
232
|
}
|
|
376
233
|
|
|
377
234
|
declare class RdtGovDialogHeaderComponent {
|
|
378
|
-
readonly dialogRef: RdtGovDialogRef<any, any
|
|
235
|
+
readonly dialogRef: RdtGovDialogRef<any, any>;
|
|
379
236
|
readonly govIcon = RdtIcon.Close;
|
|
237
|
+
getIconColorDeclaration(color: Nullable<GovColor>): string | undefined;
|
|
380
238
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovDialogHeaderComponent, never>;
|
|
381
239
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovDialogHeaderComponent, "rdt-gov-dialog-header", never, {}, {}, never, never, true, never>;
|
|
382
240
|
}
|
|
@@ -388,59 +246,136 @@ declare class RdtGovDialogLoadingComponent {
|
|
|
388
246
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovDialogLoadingComponent, "rdt-gov-dialog-loading", never, { "messageInput": { "alias": "message"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
389
247
|
}
|
|
390
248
|
|
|
391
|
-
declare
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
249
|
+
declare class RdtGovDialogComponent<TIn = any, TOut = TIn> {
|
|
250
|
+
readonly dialogRef: RdtGovDialogRef<TIn, TOut>;
|
|
251
|
+
readonly dialogRefInjector: _angular_core.DestroyableInjector;
|
|
252
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovDialogComponent<any, any>, never>;
|
|
253
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovDialogComponent<any, any>, "rdt-gov-dialog", never, {}, {}, never, never, true, never>;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
interface RdtGovDialogButtonDataInt<T> {
|
|
257
|
+
label: string;
|
|
258
|
+
icon: RdtIcon | undefined;
|
|
259
|
+
iconStart: RdtIcon | undefined;
|
|
260
|
+
size: GovSize;
|
|
261
|
+
color: GovColor;
|
|
262
|
+
appearance: GovButtonType;
|
|
263
|
+
isAutofocused: boolean;
|
|
264
|
+
value: T;
|
|
265
|
+
}
|
|
266
|
+
interface RdtGovDialogBaseDataInt {
|
|
267
|
+
message: string;
|
|
268
|
+
header?: string;
|
|
269
|
+
headerIcons?: RdtDialogHeaderIconsInt;
|
|
270
|
+
minWidth?: RdtCssSize;
|
|
271
|
+
maxWidth?: RdtCssSize;
|
|
272
|
+
minHeight?: RdtCssSize;
|
|
273
|
+
maxHeight?: RdtCssSize;
|
|
274
|
+
}
|
|
275
|
+
interface RdtGovStandardDialogDataInt<T = any> {
|
|
276
|
+
message: string;
|
|
277
|
+
buttons: RdtGovDialogButtonDataInt<T>[];
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
declare class RdtGovStandardDialogComponent<TOut> extends RdtGovDialogBase<RdtGovStandardDialogDataInt<TOut>, TOut> {
|
|
281
|
+
readonly message: _angular_core.Signal<string>;
|
|
282
|
+
readonly buttons: _angular_core.Signal<RdtGovDialogButtonDataInt<TOut>[]>;
|
|
283
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovStandardDialogComponent<any>, never>;
|
|
284
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovStandardDialogComponent<any>, "rdt-gov-standard-dialog", never, {}, {}, never, never, true, never>;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface RdtGovDialogButtonConfigInt<T = any> extends Partial<RdtGovDialogButtonDataInt<T>> {
|
|
288
|
+
label: string;
|
|
289
|
+
}
|
|
290
|
+
interface RdtGovDialogAlertConfigInt extends RdtGovDialogBaseDataInt {
|
|
291
|
+
okBtn?: Partial<RdtGovDialogButtonConfigInt<void>>;
|
|
292
|
+
}
|
|
293
|
+
interface RdtGovDialogConfirmConfigInt extends RdtGovDialogBaseDataInt {
|
|
294
|
+
yesBtn?: Partial<RdtGovDialogButtonConfigInt<boolean>>;
|
|
295
|
+
noBtn?: Partial<RdtGovDialogButtonConfigInt<boolean>>;
|
|
296
|
+
}
|
|
297
|
+
interface RdtGovStandardDialogConfigInt<T = any> extends RdtGovDialogBaseDataInt {
|
|
298
|
+
buttons?: RdtGovDialogButtonConfigInt<T>[];
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare const RDT_GOV_BASE_DIALOG_CONFIG_PROVIDER: InjectionToken<Partial<RdtGovDialogConfigInt<any, any>>>;
|
|
302
|
+
declare const RDT_GOV_ALERT_DIALOG_CONFIG_PROVIDER: InjectionToken<Partial<RdtGovDialogAlertConfigInt>>;
|
|
303
|
+
declare const RDT_GOV_CONFIRM_DIALOG_CONFIG_PROVIDER: InjectionToken<Partial<RdtGovDialogConfirmConfigInt>>;
|
|
304
|
+
|
|
305
|
+
declare class RdtGovDialogService implements RdtDialogServiceInt {
|
|
306
|
+
private readonly overlay;
|
|
307
|
+
private readonly t;
|
|
308
|
+
private readonly confirmDefaults;
|
|
309
|
+
private readonly alertDefaults;
|
|
310
|
+
private readonly baseDefaults;
|
|
311
|
+
open<TIn = any, TOut = TIn>(config: RdtGovDialogConfigInt<TIn, TOut>): RdtGovDialogRef<TIn, TOut>;
|
|
312
|
+
openStandard<TOut = any>(config: RdtGovStandardDialogConfigInt<TOut>): RdtGovDialogRef<RdtGovStandardDialogDataInt<any>, TOut>;
|
|
313
|
+
alert(config: RdtGovDialogAlertConfigInt): RdtGovDialogRef<RdtGovStandardDialogDataInt<any>, void>;
|
|
314
|
+
confirm(config: RdtGovDialogConfirmConfigInt): RdtGovDialogRef<RdtGovStandardDialogDataInt<any>, boolean>;
|
|
315
|
+
simpleAlert(config: RdtAlertDialogConfig): Observable<void>;
|
|
316
|
+
simpleConfirm(config: RdtConfirmDialogConfig): Observable<boolean>;
|
|
317
|
+
private getButtons;
|
|
318
|
+
private getDialogDataFromStandardConfig;
|
|
319
|
+
private getDialogData;
|
|
320
|
+
private createComponentPortal;
|
|
321
|
+
private createOverlayRef;
|
|
405
322
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovDialogService, never>;
|
|
406
323
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RdtGovDialogService>;
|
|
407
324
|
}
|
|
408
325
|
|
|
409
|
-
|
|
326
|
+
declare class RdtGovIconComponent extends RdtIconComponent<RdtGovIcon> {
|
|
327
|
+
readonly size: _angular_core.InputSignal<GovSize>;
|
|
328
|
+
readonly color: _angular_core.InputSignal<GovColor | undefined>;
|
|
329
|
+
protected readonly parsed: _angular_core.Signal<{
|
|
330
|
+
type: string;
|
|
331
|
+
name: string;
|
|
332
|
+
}>;
|
|
333
|
+
protected readonly isBootstrapIcon: _angular_core.Signal<boolean>;
|
|
334
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovIconComponent, never>;
|
|
335
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovIconComponent, "rdt-gov-icon", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
interface RdtGovNotificationConfigBase {
|
|
410
339
|
duration: number;
|
|
411
340
|
positionVert: 'top' | 'bottom';
|
|
412
341
|
positionHoriz: 'left' | 'center' | 'right';
|
|
342
|
+
type: 'bold' | 'subtle';
|
|
343
|
+
closeLabel: string | undefined;
|
|
413
344
|
}
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
interface
|
|
345
|
+
declare const RDT_GOV_NOTIFICATION_DEFAULT_CONFIG: RdtGovNotificationConfigBase;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Configuration for RdtGovNotificationService.show() method
|
|
349
|
+
*/
|
|
350
|
+
interface RdtGovNotificationConfig extends Partial<RdtGovNotificationConfigBase> {
|
|
420
351
|
icon?: RdtIcon;
|
|
421
352
|
message: string;
|
|
422
353
|
color: 'success' | 'warning' | 'error' | 'primary' | 'neutral';
|
|
423
|
-
closeLabel?: string;
|
|
424
|
-
type: 'bold' | 'subtle';
|
|
425
354
|
}
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
private
|
|
436
|
-
private
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* Injection token for the default configuration of notifications.
|
|
358
|
+
*/
|
|
359
|
+
declare const RDT_GOV_NOTIFICATION_CONFIG_PROVIDER: InjectionToken<RdtGovNotificationConfigBase>;
|
|
360
|
+
|
|
361
|
+
declare class RdtGovNotificationService implements RdtNotificationServiceInt {
|
|
362
|
+
private readonly overlay;
|
|
363
|
+
private readonly injector;
|
|
364
|
+
private readonly t;
|
|
365
|
+
private readonly config;
|
|
366
|
+
show(partialConfig: RdtGovNotificationConfig): void;
|
|
367
|
+
success(message?: string): void;
|
|
368
|
+
warn(message?: string): void;
|
|
369
|
+
error(message?: string): void;
|
|
370
|
+
private mergeConfig;
|
|
371
|
+
private createPortal;
|
|
372
|
+
private createOverlayRef;
|
|
373
|
+
private getDataInjector;
|
|
437
374
|
private close;
|
|
438
375
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovNotificationService, never>;
|
|
439
376
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RdtGovNotificationService>;
|
|
440
377
|
}
|
|
441
378
|
|
|
442
|
-
declare const RDT_BASE_NOTIFICATION_PROVIDER: InjectionToken<RdtGovNotificationDefaultConfig>;
|
|
443
|
-
|
|
444
379
|
declare class RdtGovNumberInputComponent extends RdtNumericInputComponent {
|
|
445
380
|
private readonly renderer;
|
|
446
381
|
protected readonly govInput: _angular_core.Signal<ElementRef<GovFormInput> | undefined>;
|
|
@@ -513,6 +448,19 @@ declare class RdtGovSelectComponent<TItem, TId> extends RdtBaseSelectCommonCompo
|
|
|
513
448
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovSelectComponent<any, any>, "rdt-gov-select", never, { "hideErrors": { "alias": "hideErrors"; "required": false; "isSignal": true; }; "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; "showSearchInput": { "alias": "showSearch"; "required": false; "isSignal": true; }; "labelPositionInput": { "alias": "labelPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
514
449
|
}
|
|
515
450
|
|
|
451
|
+
declare class RdtGovSpinnerComponent extends RdtSpinnerComponent {
|
|
452
|
+
readonly message: _angular_core.WritableSignal<string>;
|
|
453
|
+
readonly messageInput: _angular_core.InputSignal<string>;
|
|
454
|
+
readonly size: _angular_core.WritableSignal<"s" | "m" | "l">;
|
|
455
|
+
readonly sizeInput: _angular_core.InputSignal<"s" | "m" | "l">;
|
|
456
|
+
readonly mode: _angular_core.WritableSignal<"overlay" | "local">;
|
|
457
|
+
readonly modeInput: _angular_core.InputSignal<"overlay" | "local">;
|
|
458
|
+
readonly messagePositionInput: _angular_core.InputSignal<"left" | "right" | "below" | "above">;
|
|
459
|
+
readonly messagePosition: _angular_core.WritableSignal<"left" | "right" | "below" | "above">;
|
|
460
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtGovSpinnerComponent, never>;
|
|
461
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RdtGovSpinnerComponent, "rdt-gov-spinner", never, { "messageInput": { "alias": "message"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; "modeInput": { "alias": "mode"; "required": false; "isSignal": true; }; "messagePositionInput": { "alias": "messagePosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
462
|
+
}
|
|
463
|
+
|
|
516
464
|
declare class RdtGovTextInputComponent extends RdtTextInputComponent {
|
|
517
465
|
private readonly renderer;
|
|
518
466
|
protected readonly govInput: _angular_core.Signal<ElementRef<GovFormInput> | undefined>;
|
|
@@ -546,5 +494,5 @@ declare class RdtGovThemeService {
|
|
|
546
494
|
|
|
547
495
|
declare function forceFocus(input: HTMLInputElement): void;
|
|
548
496
|
|
|
549
|
-
export { DEFAULT_GOV_BUTTON_COLOR, DEFAULT_GOV_BUTTON_SIZE, DEFAULT_GOV_BUTTON_TYPE,
|
|
550
|
-
export type { GovButtonType, GovColor, GovDialogSize, GovLabelPosition, GovMessageVariant, GovSize,
|
|
497
|
+
export { DEFAULT_GOV_BUTTON_COLOR, DEFAULT_GOV_BUTTON_SIZE, DEFAULT_GOV_BUTTON_TYPE, RDT_GOV_ALERT_DIALOG_CONFIG_PROVIDER, RDT_GOV_BASE_DIALOG_CONFIG_PROVIDER, RDT_GOV_CONFIRM_DIALOG_CONFIG_PROVIDER, RDT_GOV_NOTIFICATION_CONFIG_PROVIDER, RDT_GOV_NOTIFICATION_DEFAULT_CONFIG, RdtGovButtonComponent, RdtGovCheckboxComponent, RdtGovDateComponent, RdtGovDialogBase, RdtGovDialogComponent, RdtGovDialogContentComponent, RdtGovDialogFooterComponent, RdtGovDialogHeaderComponent, RdtGovDialogLoadingComponent, RdtGovDialogRef, RdtGovDialogService, RdtGovIconComponent, RdtGovNotificationService, RdtGovNumberInputComponent, RdtGovSelectComponent, RdtGovSelectOfflineProviderDirective, RdtGovSpinnerComponent, RdtGovStandardDialogComponent, RdtGovTextInputComponent, RdtGovThemeService, forceFocus, initRdtGov, provideNgrdtGov };
|
|
498
|
+
export type { GovButtonType, GovColor, GovDialogSize, GovLabelPosition, GovMessageVariant, GovSize, RdtDialogHeaderIconsInt, RdtGovConfig, RdtGovDialogConfigInt, RdtGovDialogRefInt, RdtGovNotificationConfig, RdtGovNotificationConfigBase };
|