@haloduck/ui 2.0.48 → 2.1.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/index.d.ts DELETED
@@ -1,924 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { FormGroup, FormBuilder, ControlValueAccessor } from '@angular/forms';
3
- import * as i0 from '@angular/core';
4
- import { OnInit, EventEmitter, AfterViewInit, OnChanges, ElementRef, SimpleChanges, OnDestroy, Type, Renderer2, Injector, TemplateRef } from '@angular/core';
5
- import * as rxjs from 'rxjs';
6
- import { Observable, Subject } from 'rxjs';
7
- import { LngLat, MenuItemEx, SearchParams, TableRowProperty } from '@haloduck/core';
8
- import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
9
- import * as THREE from 'three';
10
- import { STLLoader, OrbitControls } from 'three-stdlib';
11
- import * as _haloduck_ui from '@haloduck/ui';
12
- import { OverlayRef, Overlay } from '@angular/cdk/overlay';
13
- import * as _jsverse_transloco from '@jsverse/transloco';
14
-
15
- interface SocialLoginProvider {
16
- name: 'google' | 'apple' | 'kakao';
17
- enabled: boolean;
18
- clientId?: string;
19
- redirectUrl?: string;
20
- state?: {
21
- [key: string]: string;
22
- };
23
- }
24
- declare class AuthenticateComponent {
25
- private fb;
26
- private http;
27
- private notificationService;
28
- metaData?: any;
29
- socialLoginProviders: SocialLoginProvider[];
30
- showSocialLogin: boolean;
31
- showDivider: boolean;
32
- loginForm: FormGroup;
33
- signupForm: FormGroup;
34
- resetForm: FormGroup;
35
- newPasswordForm: FormGroup;
36
- otpForm: FormGroup;
37
- stage: 'login' | 'signup' | 'reset' | 'newPassword' | 'otpVerify';
38
- emailForReset: string;
39
- constructor(fb: FormBuilder, http: HttpClient);
40
- switchStage(stage: 'login' | 'signup' | 'reset' | 'newPassword' | 'otpVerify'): void;
41
- login(): void;
42
- confirmNewPassword(): void;
43
- signup(): void;
44
- reset(): void;
45
- verifyOtp(): void;
46
- get passwordValue(): string;
47
- get isMinLength(): boolean;
48
- get hasUppercase(): boolean;
49
- get hasLowercase(): boolean;
50
- get hasNumber(): boolean;
51
- get hasSpecialChar(): boolean;
52
- get isPasswordValid(): boolean;
53
- get passwordRules(): {
54
- label: string;
55
- valid: boolean;
56
- }[];
57
- get enabledSocialProviders(): SocialLoginProvider[];
58
- isProviderEnabled(providerName: 'google' | 'apple' | 'kakao'): boolean;
59
- loginWithGoogle(): void;
60
- loginWithApple(): void;
61
- loginWithKakao(): void;
62
- getSocialLoginIcon(provider: string): string;
63
- getSocialLoginLabel(provider: string): string;
64
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticateComponent, never>;
65
- static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticateComponent, "haloduck-authenticate", never, { "metaData": { "alias": "metaData"; "required": false; }; "socialLoginProviders": { "alias": "socialLoginProviders"; "required": false; }; "showSocialLogin": { "alias": "showSocialLogin"; "required": false; }; "showDivider": { "alias": "showDivider"; "required": false; }; }, {}, never, never, true, never>;
66
- }
67
-
68
- interface ProcessCognitoUserResponse {
69
- email: string;
70
- authResult: {
71
- AccessToken: string;
72
- ExpiresIn: number;
73
- IdToken: string;
74
- RefreshToken: string;
75
- TokenType: string;
76
- };
77
- }
78
- declare class AuthenticateCallbackComponent implements OnInit {
79
- private route;
80
- private router;
81
- private notificationService;
82
- isProcessing: boolean;
83
- error: string | null;
84
- success: boolean;
85
- ngOnInit(): void;
86
- private handleSocialCallback;
87
- private decodeBase64;
88
- private processAmplifyLogin;
89
- private getClientId;
90
- redirectToLogin(): void;
91
- private redirectAfterLogin;
92
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticateCallbackComponent, never>;
93
- static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticateCallbackComponent, "haloduck-authenticate-callback", never, {}, {}, never, never, true, never>;
94
- }
95
-
96
- type ButtonVariant = 'primary' | 'secondary' | 'danger' | 'none';
97
- declare class ButtonComponent {
98
- disabled: boolean | null;
99
- variant: ButtonVariant;
100
- static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
101
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "haloduck-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
102
- }
103
-
104
- interface Option {
105
- id?: string;
106
- value: string;
107
- isSticky?: boolean;
108
- isExclusive?: boolean;
109
- shouldManualInput?: boolean;
110
- manualPrefix?: string;
111
- }
112
- declare class SelectDropdownComponent {
113
- protected _filteredOptions: i0.WritableSignal<Option[]>;
114
- protected _options: Option[];
115
- protected _selectedOptionIds: string[];
116
- protected manualInputValues: Record<string, string>;
117
- protected activeManualKey: string | null;
118
- protected isComposing: boolean;
119
- selectedChange: EventEmitter<string[]>;
120
- closeDropdown: EventEmitter<void>;
121
- useFilter: boolean;
122
- multiselect: boolean;
123
- atLeastOne: boolean;
124
- asButton: boolean;
125
- set options(value: Option[] | null);
126
- get options(): Option[] | null;
127
- set selectedOptionIds(value: string[] | null);
128
- get selectedOptions(): string[] | null;
129
- onFilterInput(event: Event): void;
130
- onToggleOption(option: Option): void;
131
- onEditManualInput(option: Option): void;
132
- getManualInputDisplayValue(option: Option): string;
133
- isOptionSelected(option: Option): boolean;
134
- private isIdExclusive;
135
- private getManualKey;
136
- private seedManualInputs;
137
- onManualInputChange(option: Option, value: string): void;
138
- onCompositionStart(): void;
139
- onCompositionEnd(option: Option, event: Event): void;
140
- onManualInputKeydown(option: Option, event: KeyboardEvent): void;
141
- onManualInputConfirm(option: Option): void;
142
- onManualInputBlur(option: Option): void;
143
- private emitSelectedChange;
144
- private setSelected;
145
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectDropdownComponent, never>;
146
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectDropdownComponent, "haloduck-select-dropdown", never, { "useFilter": { "alias": "useFilter"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "atLeastOne": { "alias": "atLeastOne"; "required": false; }; "asButton": { "alias": "asButton"; "required": false; }; "options": { "alias": "options"; "required": false; }; "selectedOptionIds": { "alias": "selectedOptionIds"; "required": false; }; }, { "selectedChange": "selectedChange"; "closeDropdown": "closeDropdown"; }, never, never, true, never>;
147
- }
148
-
149
- declare class SelectComponent implements ControlValueAccessor, AfterViewInit, OnChanges {
150
- private readonly translateService;
151
- private readonly overlay;
152
- private readonly viewContainerRef;
153
- private readonly cdr;
154
- private overlayRef;
155
- private static instanceCounter;
156
- readonly radioGroupName: string;
157
- selectedChange: EventEmitter<string | string[]>;
158
- disabled: boolean | null;
159
- loading: boolean;
160
- variant: 'primary' | 'secondary' | 'danger' | 'none';
161
- asButton: boolean;
162
- useIcon: boolean;
163
- useFilter: boolean;
164
- multiselect: boolean;
165
- placeholder: string;
166
- atLeastOne: boolean;
167
- showAll: boolean;
168
- showAllItems: boolean;
169
- options: Option[] | null;
170
- layout: 'horizontal' | 'vertical';
171
- labelWidth: string;
172
- set value(value: string[] | string);
173
- get value(): string | string[] | null;
174
- origin: ElementRef;
175
- label: ElementRef;
176
- isDropdownOpen: i0.WritableSignal<boolean>;
177
- selectedOptionIds: string[];
178
- displayedSelectedOptions: Option[];
179
- private selectedIdToDisplayOption;
180
- manualInputValues: Record<string, string>;
181
- activeManualKey: string | null;
182
- isComposing: boolean;
183
- onClick(event: MouseEvent): void;
184
- onKeyDown(event: KeyboardEvent): void;
185
- onDeselectOption(event: Event, option: Option): void;
186
- onToggleOption(option: Option): void;
187
- isOptionSelected(option: Option): boolean;
188
- private isIdExclusive;
189
- getSelectedValue(): string | string[] | null;
190
- onChange: (_value: any) => void;
191
- onTouched: () => void;
192
- writeValue(value: string[] | string): void;
193
- registerOnChange(fn: any): void;
194
- registerOnTouched(fn: any): void;
195
- setDisabledState?(isDisabled: boolean): void;
196
- ngAfterViewInit(): void;
197
- constructor();
198
- ngOnChanges(changes: SimpleChanges): void;
199
- private recomputeSelectedOptions;
200
- private isManualSelection;
201
- getManualKey(option: Option): string;
202
- seedManualInputs(): void;
203
- onManualInputChange(option: Option, value: string): void;
204
- onCompositionStart(): void;
205
- onCompositionEnd(option: Option, event: Event): void;
206
- onManualInputKeydown(option: Option, event: KeyboardEvent): void;
207
- onManualInputBlur(option: Option): void;
208
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
209
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "haloduck-select", never, { "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "asButton": { "alias": "asButton"; "required": false; }; "useIcon": { "alias": "useIcon"; "required": false; }; "useFilter": { "alias": "useFilter"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "atLeastOne": { "alias": "atLeastOne"; "required": false; }; "showAll": { "alias": "showAll"; "required": false; }; "showAllItems": { "alias": "showAllItems"; "required": false; }; "options": { "alias": "options"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "labelWidth": { "alias": "labelWidth"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedChange": "selectedChange"; }, never, ["*", "buttonIcon"], true, never>;
210
- }
211
-
212
- interface DateRange {
213
- from: string;
214
- to: string;
215
- }
216
- interface DateRangeDropdown {
217
- currentYear: number;
218
- currentMonth: number;
219
- from?: string;
220
- listCalendarDate: CalendarDate[];
221
- }
222
- interface CalendarDate {
223
- datetime: string;
224
- date: string;
225
- isToday: boolean;
226
- isTheDate: boolean;
227
- isCurrentMonth: boolean;
228
- }
229
- declare class CalendarComponent implements OnInit {
230
- private readonly translateService;
231
- monthSelect: SelectComponent;
232
- singleDate: boolean;
233
- firstDayOfWeek: number;
234
- selectedDate?: string;
235
- selectedDateRange?: DateRange;
236
- dateChange: EventEmitter<CalendarDate>;
237
- dateRangeChange: EventEmitter<DateRange>;
238
- currentYear: number;
239
- currentMonth: number;
240
- listCalendarDate: CalendarDate[];
241
- isFromSelected: boolean;
242
- yearList: Option[];
243
- monthList: Option[];
244
- onAdjustYear(amount: number): void;
245
- onAdjustMonth(amount: number): void;
246
- onSelectCalendarDate(date: CalendarDate): void;
247
- onCalenderOpen(value: string | DateRange): void;
248
- calculateDateRangeDropdown(): void;
249
- onSelectYear(year: string | string[]): void;
250
- onSelectMonth(month: string | string[]): void;
251
- ngOnInit(): void;
252
- constructor();
253
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
254
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "haloduck-calendar", never, { "singleDate": { "alias": "singleDate"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "selectedDateRange": { "alias": "selectedDateRange"; "required": false; }; }, { "dateChange": "dateChange"; "dateRangeChange": "dateRangeChange"; }, never, never, true, never>;
255
- }
256
- declare function dateToString(date: Date): string;
257
-
258
- interface Button {
259
- id: string;
260
- label: string;
261
- variant: ButtonVariant;
262
- }
263
-
264
- declare class ConfirmDialogService {
265
- private readonly dialogService;
266
- private clickedButton$;
267
- confirm(title: string, message: string, buttons: Button[]): Observable<string>;
268
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogService, never>;
269
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmDialogService>;
270
- }
271
-
272
- declare class CopyButtonComponent {
273
- text: string;
274
- isAnimating: boolean;
275
- copyToClipboard($event: Event): void;
276
- static ɵfac: i0.ɵɵFactoryDeclaration<CopyButtonComponent, never>;
277
- static ɵcmp: i0.ɵɵComponentDeclaration<CopyButtonComponent, "haloduck-copy-button", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
278
- }
279
-
280
- declare class DatePickerComponent implements ControlValueAccessor, OnInit, OnDestroy {
281
- destroy$: Subject<void>;
282
- private readonly translateService;
283
- private readonly overlay;
284
- disabled: boolean;
285
- placeholder: string;
286
- firstDayOfWeek: number;
287
- origin: ElementRef;
288
- selectedDate?: string;
289
- private overlayRef?;
290
- onClick(): void;
291
- onDateChange(date: CalendarDate): void;
292
- openCalendar(): void;
293
- closeCalendar(): void;
294
- onChange: (value: any) => void;
295
- onTouched: () => void;
296
- writeValue(value: string): void;
297
- registerOnChange(fn: any): void;
298
- registerOnTouched(fn: any): void;
299
- setDisabledState?(isDisabled: boolean): void;
300
- ngOnInit(): void;
301
- ngOnDestroy(): void;
302
- constructor();
303
- static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
304
- static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "haloduck-date-picker", never, { "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; }, {}, never, ["*"], true, never>;
305
- }
306
-
307
- declare class DateRangeComponent implements ControlValueAccessor, OnDestroy {
308
- destroy$: Subject<void>;
309
- private readonly translateService;
310
- private readonly overlay;
311
- dateRangeOptions: Option[];
312
- disabled: boolean;
313
- placeholder: string;
314
- firstDayOfWeek: number;
315
- origin: ElementRef;
316
- selectedDateRangeOptionId?: string;
317
- dateRange?: DateRange;
318
- private overlayRef?;
319
- getSelectedDateRangeString(): any;
320
- onClick(): void;
321
- onDateRangeOptionChange(selectedOptionId: string): void;
322
- onDateRangeChange(dateRange: DateRange): void;
323
- calculateDateRange(): void;
324
- getDateRangeOptionId(dateRange: DateRange): string;
325
- openCalendar(): void;
326
- closeCalendar(): void;
327
- onChange: (value: any) => void;
328
- onTouched: () => void;
329
- writeValue(value: DateRange): void;
330
- registerOnChange(fn: any): void;
331
- registerOnTouched(fn: any): void;
332
- setDisabledState?(isDisabled: boolean): void;
333
- ngOnDestroy(): void;
334
- constructor();
335
- static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeComponent, never>;
336
- static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeComponent, "haloduck-date-range", never, { "dateRangeOptions": { "alias": "dateRangeOptions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; }, {}, never, ["*"], true, never>;
337
- }
338
-
339
- declare class DrawCanvasComponent implements AfterViewInit, ControlValueAccessor {
340
- imagePath: string;
341
- lineColor: string;
342
- canvasRef: ElementRef<HTMLCanvasElement>;
343
- private ctx;
344
- private isDrawing;
345
- private onChange;
346
- private onTouched;
347
- ngAfterViewInit(): void;
348
- private loadImage;
349
- private setupCanvas;
350
- private startMouseDrawing;
351
- private mouseDraw;
352
- private startTouchDrawing;
353
- private touchDraw;
354
- private stopDrawing;
355
- saveDrawing(): void;
356
- private dataURLToBlob;
357
- writeValue(file: File | null): void;
358
- registerOnChange(fn: (file: File | null) => void): void;
359
- registerOnTouched(fn: () => void): void;
360
- setDisabledState?(isDisabled: boolean): void;
361
- onReset(): void;
362
- static ɵfac: i0.ɵɵFactoryDeclaration<DrawCanvasComponent, never>;
363
- static ɵcmp: i0.ɵɵComponentDeclaration<DrawCanvasComponent, "haloduck-draw-canvas", never, { "imagePath": { "alias": "imagePath"; "required": false; }; "lineColor": { "alias": "lineColor"; "required": false; }; }, {}, never, never, true, never>;
364
- }
365
-
366
- declare const ERROR_NOT_ACCEPTABLE_FILE_TYPE = "NOT_ACCEPTABLE_FILE_TYPE";
367
- declare const ERROR_OVER_SIZE = "OVER_SIZE";
368
- declare const ERROR_OVER_COUNT = "OVER_COUNT";
369
- declare const ERROR_UPLOAD = "UPLOAD";
370
- interface FileEx extends File {
371
- isUploading: boolean;
372
- isUploaded: boolean;
373
- key: string;
374
- name: string;
375
- size: number;
376
- type: string;
377
- tag: string[];
378
- previewUrl?: string;
379
- }
380
- declare class FileUploaderComponent implements ControlValueAccessor {
381
- disabled: boolean;
382
- urlPrefix: string;
383
- keyPrefix: string;
384
- uploadApi: (file: File, keyPrefix: string) => Observable<string>;
385
- multiple: boolean;
386
- maxCount: number;
387
- maxSize: number;
388
- accept: string[];
389
- filesAdded: EventEmitter<FileEx[]>;
390
- fileRemoved: EventEmitter<FileEx>;
391
- error: EventEmitter<{
392
- error: string;
393
- file: FileEx;
394
- }[]>;
395
- private readonly cdr;
396
- private readonly zone;
397
- files: FileEx[];
398
- isUploading: boolean;
399
- isDragOver: boolean;
400
- private onChange;
401
- private onTouched;
402
- writeValue(files: FileEx[]): void;
403
- registerOnChange(fn: (files: FileEx[]) => void): void;
404
- registerOnTouched(fn: () => void): void;
405
- setDisabledState?(isDisabled: boolean): void;
406
- onFileSelected(event: Event): void;
407
- removeFile(index: number): void;
408
- onFileTagChanged(index: number, tags: string[]): void;
409
- onDragOver(event: DragEvent): void;
410
- onDragLeave(event: DragEvent): void;
411
- onDrop(event: DragEvent): void;
412
- getFilePreview(file: FileEx): string;
413
- addFiles(addedFiles: FileEx[]): void;
414
- isAcceptableFileType(file: File): boolean;
415
- startUpload(): Observable<FileEx[]>;
416
- static ɵfac: i0.ɵɵFactoryDeclaration<FileUploaderComponent, never>;
417
- static ɵcmp: i0.ɵɵComponentDeclaration<FileUploaderComponent, "haloduck-file-uploader", never, { "disabled": { "alias": "disabled"; "required": false; }; "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "keyPrefix": { "alias": "keyPrefix"; "required": false; }; "uploadApi": { "alias": "uploadApi"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "maxCount": { "alias": "maxCount"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; }, { "filesAdded": "filesAdded"; "fileRemoved": "fileRemoved"; "error": "error"; }, never, never, true, never>;
418
- }
419
-
420
- declare class FlipComponent {
421
- title: string;
422
- set isOpen(value: boolean);
423
- _isOpen: i0.WritableSignal<boolean>;
424
- toggle(): void;
425
- static ɵfac: i0.ɵɵFactoryDeclaration<FlipComponent, never>;
426
- static ɵcmp: i0.ɵɵComponentDeclaration<FlipComponent, "haloduck-flip", never, { "title": { "alias": "title"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, {}, never, ["*"], true, never>;
427
- }
428
-
429
- declare class ImageUploaderComponent implements ControlValueAccessor, OnInit {
430
- disabled: boolean;
431
- id: string;
432
- alt: string;
433
- urlPrefix: string;
434
- keyPrefix: string;
435
- uploadApi: (file: File, keyPrefix: string) => Observable<string>;
436
- backgroundImage: string;
437
- shouldPassToSibling: boolean;
438
- passToSibling: EventEmitter<FileEx[]>;
439
- fileAdded: EventEmitter<FileEx>;
440
- fileRemoved: EventEmitter<FileEx>;
441
- error: EventEmitter<{
442
- error: string;
443
- file: FileEx;
444
- }[]>;
445
- imageUrl: string | null;
446
- file: FileEx | null;
447
- isDragOver: boolean;
448
- isUploading: boolean;
449
- private readonly dialogService;
450
- private onChange;
451
- private onTouched;
452
- writeValue(key: string | null): void;
453
- registerOnChange(fn: (url: string | null) => void): void;
454
- registerOnTouched(fn: () => void): void;
455
- setDisabledState?(isDisabled: boolean): void;
456
- startUpload(): Observable<FileEx>;
457
- onFileSelected(event: Event): void;
458
- onDrop(event: DragEvent): void;
459
- onDragOver(event: DragEvent): void;
460
- onDragLeave(event: DragEvent): void;
461
- onDragStart(event: DragEvent): void;
462
- onDragEnd(event: DragEvent): void;
463
- removeImage(): void;
464
- setFiles(listFile: FileEx[]): void;
465
- previewImage(imageUrl: string): void;
466
- ngOnInit(): void;
467
- static ɵfac: i0.ɵɵFactoryDeclaration<ImageUploaderComponent, never>;
468
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageUploaderComponent, "haloduck-image-uploader", never, { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "keyPrefix": { "alias": "keyPrefix"; "required": false; }; "uploadApi": { "alias": "uploadApi"; "required": false; }; "backgroundImage": { "alias": "backgroundImage"; "required": false; }; "shouldPassToSibling": { "alias": "shouldPassToSibling"; "required": false; }; }, { "passToSibling": "passToSibling"; "fileAdded": "fileAdded"; "fileRemoved": "fileRemoved"; "error": "error"; }, never, ["*"], true, never>;
469
- }
470
-
471
- declare class ImageViewerComponent {
472
- context: any;
473
- imageUrl: string;
474
- imageAlt: string;
475
- private readonly dialogService;
476
- onClose(): void;
477
- static ɵfac: i0.ɵɵFactoryDeclaration<ImageViewerComponent, never>;
478
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageViewerComponent, "haloduck-image-viewer", never, { "context": { "alias": "context"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "imageAlt": { "alias": "imageAlt"; "required": false; }; }, {}, never, never, true, never>;
479
- }
480
-
481
- declare class InputComponent implements ControlValueAccessor, AfterViewInit {
482
- private readonly cdr;
483
- label: ElementRef;
484
- private inputElement;
485
- placeholder: string;
486
- type: string;
487
- disabled: boolean;
488
- rows: number;
489
- autofocus: boolean;
490
- value: string;
491
- onChange: (value: any) => void;
492
- onTouched: () => void;
493
- writeValue(value: any): void;
494
- registerOnChange(fn: any): void;
495
- registerOnTouched(fn: any): void;
496
- setDisabledState?(isDisabled: boolean): void;
497
- focus(): void;
498
- onInput(event: Event): void;
499
- onKeydown($event: KeyboardEvent): void;
500
- ngAfterViewInit(): void;
501
- static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
502
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "haloduck-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
503
- }
504
-
505
- declare class LanguageSelectorComponent implements OnInit {
506
- origin: ElementRef;
507
- private readonly destroy$;
508
- private readonly translateService;
509
- private readonly overlay;
510
- language: i0.WritableSignal<string>;
511
- private overlayRef?;
512
- showLanguageOptions(): void;
513
- hideLanguageOptions(): void;
514
- ngOnInit(): void;
515
- static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSelectorComponent, never>;
516
- static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSelectorComponent, "haloduck-language-selector", never, {}, {}, never, never, true, never>;
517
- }
518
-
519
- declare const google: any;
520
- interface Location {
521
- plusCode: string;
522
- postalCode: string;
523
- countryCode: string;
524
- country: string;
525
- area1: string;
526
- area2: string;
527
- area3: string;
528
- formatted: string;
529
- lat: number;
530
- lng: number;
531
- }
532
- declare class MapToAddressComponent implements OnInit, ControlValueAccessor {
533
- private readonly coreService;
534
- mapId: string;
535
- defaultLngLat: LngLat;
536
- disabled: boolean;
537
- language: string;
538
- currentLngLat?: LngLat;
539
- private _currentAddress?;
540
- private _isGoogleLoaded;
541
- private _loadError?;
542
- get isGoogleLoaded(): boolean;
543
- get loadError(): string | undefined;
544
- set currentAddress(value: string);
545
- locationChanged: EventEmitter<Location>;
546
- map: any;
547
- marker: any;
548
- location: Location;
549
- private onChange;
550
- private onTouched;
551
- ngOnInit(): Promise<void>;
552
- initScript(): Promise<void>;
553
- initMap(): void;
554
- initializeMap(lngLat: LngLat): void;
555
- onClick(event: any): void;
556
- setMapToAddress(): void;
557
- getAddress(): void;
558
- parseAddress(results: any): Location;
559
- getComponentLongName(results: any[], type: string): string;
560
- getComponentShortName(results: any[], type: string): string;
561
- writeValue(value: Location): void;
562
- registerOnChange(fn: (value: Location) => void): void;
563
- registerOnTouched(fn: () => void): void;
564
- setDisabledState?(isDisabled: boolean): void;
565
- static ɵfac: i0.ɵɵFactoryDeclaration<MapToAddressComponent, never>;
566
- static ɵcmp: i0.ɵɵComponentDeclaration<MapToAddressComponent, "haloduck-map-to-address", never, { "disabled": { "alias": "disabled"; "required": false; }; "language": { "alias": "language"; "required": false; }; "currentLngLat": { "alias": "currentLngLat"; "required": false; }; "currentAddress": { "alias": "currentAddress"; "required": false; }; }, { "locationChanged": "locationChanged"; }, never, never, true, never>;
567
- }
568
-
569
- declare class SideMenuComponent {
570
- menuItems: Array<MenuItemEx>;
571
- depth: number;
572
- menuItemSelected: EventEmitter<MenuItemEx>;
573
- static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuComponent, never>;
574
- static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuComponent, "haloduck-side-menu", never, { "menuItems": { "alias": "menuItems"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; }, { "menuItemSelected": "menuItemSelected"; }, never, never, true, never>;
575
- }
576
-
577
- declare class SideMenuItemComponent implements OnInit {
578
- private sanitizer;
579
- private readonly router;
580
- menuItem: MenuItemEx;
581
- depth: number;
582
- menuItemSelectHandler?: EventEmitter<MenuItemEx>;
583
- iconSvg: SafeHtml;
584
- constructor(sanitizer: DomSanitizer);
585
- ngOnInit(): void;
586
- onMenuItemSelected(menuItem: MenuItemEx): void;
587
- navigateTo(link: string[]): void;
588
- static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuItemComponent, never>;
589
- static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuItemComponent, "haloduck-side-menu-item", never, { "menuItem": { "alias": "menuItem"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "menuItemSelectHandler": { "alias": "menuItemSelectHandler"; "required": false; }; }, {}, never, never, true, never>;
590
- }
591
-
592
- declare class StlViewerComponent implements OnInit, AfterViewInit, OnDestroy {
593
- fileUrl: string;
594
- filename: string;
595
- context: any;
596
- containerRef: ElementRef;
597
- private readonly dialogService;
598
- isPopup: boolean;
599
- scene: THREE.Scene;
600
- camera: THREE.PerspectiveCamera;
601
- renderer: THREE.WebGLRenderer;
602
- loader: STLLoader;
603
- controls: OrbitControls;
604
- loadingPercentage: number;
605
- showStl(): void;
606
- download(): void;
607
- closeDialog(): void;
608
- animate: () => void;
609
- ngAfterViewInit(): void;
610
- ngOnDestroy(): void;
611
- ngOnInit(): void;
612
- static ɵfac: i0.ɵɵFactoryDeclaration<StlViewerComponent, never>;
613
- static ɵcmp: i0.ɵɵComponentDeclaration<StlViewerComponent, "haloduck-stl-viewer", never, { "fileUrl": { "alias": "fileUrl"; "required": false; }; "filename": { "alias": "filename"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
614
- }
615
-
616
- interface TableColumn {
617
- key: string | string[];
618
- label: string;
619
- width?: string;
620
- align?: 'text-left' | 'text-center' | 'text-right';
621
- sortable?: boolean;
622
- sort?: SearchParams.Sort;
623
- type?: 'number' | 'date' | 'datetime' | 'time' | 'custom';
624
- breakpoint?: string;
625
- hidden?: Observable<boolean>;
626
- customRenderFn?: (data: any) => Observable<string>;
627
- customRenderTemplate?: string;
628
- }
629
- interface TableRow extends TableRowProperty {
630
- [key: string]: any;
631
- }
632
- declare class TableComponent implements OnInit, AfterViewInit {
633
- private readonly coreService;
634
- private readonly tableSettingService;
635
- loadMoreRowRef?: ElementRef;
636
- tableLayout: 'fixed' | 'auto';
637
- tableName: string;
638
- useLoadMore: boolean;
639
- private defaultAutoLoad;
640
- private defaultShowHeader;
641
- columns: TableColumn[];
642
- rows: Observable<TableRow[]>;
643
- isLoading: Observable<boolean>;
644
- isPaging: Observable<boolean>;
645
- sort: Observable<SearchParams.Sort[]>;
646
- expandedTemplate?: any;
647
- customTemplates: {
648
- [key: string]: any;
649
- };
650
- onSortChange: EventEmitter<SearchParams.Sort>;
651
- lastEvaluatedKey: Observable<any>;
652
- onLoadMore: EventEmitter<any>;
653
- onRowClick: EventEmitter<TableRow>;
654
- onRowDblClick: EventEmitter<TableRow>;
655
- settings$: Observable<_haloduck_ui.TableSettings>;
656
- showHeader$: Observable<boolean>;
657
- autoLoad$: Observable<boolean>;
658
- getColumnValue(row: TableRow, column: TableColumn): Observable<string>;
659
- getColumnValueRaw(row: TableRow, column: TableColumn): any;
660
- getColumnValueRawWithArrayKey(row: TableRow, column: TableColumn): any;
661
- getNumber(data: any): Observable<string>;
662
- getDate(data: any): Observable<string>;
663
- getDateTime(data: any): Observable<string>;
664
- getTime(data: any): Observable<string>;
665
- onUpdateSort(field: string | string[], direction: SearchParams.SortDirection): void;
666
- getSortDirection(field: string | string[]): Observable<string | undefined>;
667
- onLoadMoreClicked(): void;
668
- onAutoLoadTriggered(): void;
669
- onRowClicked(row: TableRow): void;
670
- onRowDblClicked(row: TableRow): void;
671
- ngOnInit(): void;
672
- openSettings(): void;
673
- ngAfterViewInit(): void;
674
- static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
675
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "haloduck-table", never, { "tableLayout": { "alias": "tableLayout"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "useLoadMore": { "alias": "useLoadMore"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isPaging": { "alias": "isPaging"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "expandedTemplate": { "alias": "expandedTemplate"; "required": false; }; "customTemplates": { "alias": "customTemplates"; "required": false; }; "lastEvaluatedKey": { "alias": "lastEvaluatedKey"; "required": false; }; }, { "onSortChange": "onSortChange"; "onLoadMore": "onLoadMore"; "onRowClick": "onRowClick"; "onRowDblClick": "onRowDblClick"; }, never, never, true, never>;
676
- }
677
-
678
- interface TableSettings {
679
- showHeader: boolean;
680
- autoLoad: boolean;
681
- }
682
- declare class TableSettingService {
683
- private dialogService;
684
- private currentOverlayRef?;
685
- private currentTableNameSubject;
686
- private settingsSubjects;
687
- private defaultSettings;
688
- get currentTableName$(): Observable<string>;
689
- show(tableName: string): void;
690
- hide(): void;
691
- getSettings(tableName: string): Observable<TableSettings>;
692
- setCurrentTableName(tableName: string): void;
693
- updateSettings(tableName: string, settings: TableSettings): void;
694
- private loadSettingsFromStorage;
695
- private saveSettingsToStorage;
696
- static ɵfac: i0.ɵɵFactoryDeclaration<TableSettingService, never>;
697
- static ɵprov: i0.ɵɵInjectableDeclaration<TableSettingService>;
698
- }
699
-
700
- declare class TableSettingComponent implements OnInit {
701
- private readonly tableSettingService;
702
- context?: {
703
- tableName: string;
704
- overlayRef: OverlayRef;
705
- };
706
- get currentSettings$(): rxjs.Observable<TableSettings>;
707
- ngOnInit(): void;
708
- close(): void;
709
- onSettingChange(settings: TableSettings): void;
710
- static ɵfac: i0.ɵɵFactoryDeclaration<TableSettingComponent, never>;
711
- static ɵcmp: i0.ɵɵComponentDeclaration<TableSettingComponent, "haloduck-table-setting", never, { "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
712
- }
713
-
714
- declare class ToggleComponent implements ControlValueAccessor, AfterViewInit {
715
- layout: 'horizontal' | 'vertical';
716
- value: boolean | null;
717
- disabled: boolean;
718
- nullable: boolean;
719
- toggled: EventEmitter<boolean | null>;
720
- label: ElementRef;
721
- onChange: (value: any) => void;
722
- onTouched: () => void;
723
- writeValue(value: any): void;
724
- registerOnChange(fn: any): void;
725
- registerOnTouched(fn: any): void;
726
- setDisabledState?(isDisabled: boolean): void;
727
- onToggle(): void;
728
- ngAfterViewInit(): void;
729
- static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
730
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "haloduck-toggle", never, { "layout": { "alias": "layout"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; }, { "toggled": "toggled"; }, never, ["*"], true, never>;
731
- }
732
-
733
- interface TabItem {
734
- id?: string;
735
- label: string;
736
- component: Type<any>;
737
- inputs?: Record<string, any>;
738
- }
739
- declare class TabsComponent implements OnChanges, AfterViewInit {
740
- tabs: TabItem[];
741
- selectedIndex: number;
742
- layout: 'horizontal' | 'vertical';
743
- labelWidth: string;
744
- selectedIndexChange: EventEmitter<number>;
745
- label: ElementRef;
746
- ngOnChanges(changes: SimpleChanges): void;
747
- ngAfterViewInit(): void;
748
- get current(): TabItem | null;
749
- select(index: number): void;
750
- private ensureSelectedInRange;
751
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
752
- static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "haloduck-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "labelWidth": { "alias": "labelWidth"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; }, never, ["[slot=label]"], true, never>;
753
- }
754
-
755
- declare class TagInputComponent implements ControlValueAccessor, AfterViewInit {
756
- label: ElementRef;
757
- inputEl: ElementRef<HTMLInputElement>;
758
- placeholder: string;
759
- disabled: boolean;
760
- allowDuplicates: boolean;
761
- set value(tags: string[] | null);
762
- valueChange: EventEmitter<string[]>;
763
- tags: string[];
764
- inputValue: string;
765
- onChange: (value: any) => void;
766
- onTouched: () => void;
767
- writeValue(value: string[] | null): void;
768
- registerOnChange(fn: any): void;
769
- registerOnTouched(fn: any): void;
770
- setDisabledState(isDisabled: boolean): void;
771
- ngAfterViewInit(): void;
772
- focus(): void;
773
- onInput(event: Event): void;
774
- onBlur(): void;
775
- onKeydown(event: KeyboardEvent): void;
776
- removeTag(index: number): void;
777
- private commitCurrentInput;
778
- private addTag;
779
- private emitChanges;
780
- static ɵfac: i0.ɵɵFactoryDeclaration<TagInputComponent, never>;
781
- static ɵcmp: i0.ɵɵComponentDeclaration<TagInputComponent, "haloduck-tag-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowDuplicates": { "alias": "allowDuplicates"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, ["*"], true, never>;
782
- }
783
-
784
- declare class TagViewerComponent implements AfterViewInit {
785
- label: ElementRef;
786
- tags: string[];
787
- shouldWrap: boolean;
788
- set value(tags: string[] | null);
789
- ngAfterViewInit(): void;
790
- static ɵfac: i0.ɵɵFactoryDeclaration<TagViewerComponent, never>;
791
- static ɵcmp: i0.ɵɵComponentDeclaration<TagViewerComponent, "haloduck-tag-viewer", never, { "shouldWrap": { "alias": "shouldWrap"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
792
- }
793
-
794
- interface GroupedConfig {
795
- layoutClasses?: string;
796
- bgClasses?: string;
797
- borderClasses?: string;
798
- labelText?: string;
799
- labelClasses?: string;
800
- labelOffset?: string;
801
- }
802
- declare class GroupedDirective implements OnInit {
803
- private elementRef;
804
- private renderer;
805
- haloduckGrouped: GroupedConfig | string;
806
- layoutClasses: string;
807
- bgClasses: string;
808
- borderClasses: string;
809
- labelText: string;
810
- labelClasses: string;
811
- labelOffset: string;
812
- hostClasses: string;
813
- private labelElement;
814
- constructor(elementRef: ElementRef, renderer: Renderer2);
815
- ngOnInit(): void;
816
- private applyConfig;
817
- private createLayout;
818
- private createBorder;
819
- private createLabel;
820
- private addClasses;
821
- private removeBorderClasses;
822
- updateLabel(text: string): void;
823
- toggleLabel(show: boolean): void;
824
- static ɵfac: i0.ɵɵFactoryDeclaration<GroupedDirective, never>;
825
- static ɵdir: i0.ɵɵDirectiveDeclaration<GroupedDirective, "[haloduckGrouped]", never, { "haloduckGrouped": { "alias": "haloduckGrouped"; "required": false; }; "layoutClasses": { "alias": "layoutClasses"; "required": false; }; "bgClasses": { "alias": "bgClasses"; "required": false; }; "borderClasses": { "alias": "borderClasses"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "labelClasses": { "alias": "labelClasses"; "required": false; }; "labelOffset": { "alias": "labelOffset"; "required": false; }; }, {}, never, never, true, never>;
826
- }
827
-
828
- declare class AutoLoadDirective implements OnInit, OnDestroy, OnChanges {
829
- private readonly elementRef;
830
- private readonly ngZone;
831
- private observer?;
832
- private isLoading;
833
- autoLoadEnabled: boolean;
834
- autoLoadThreshold: number;
835
- autoLoadRootMargin: string;
836
- autoLoadTrigger: EventEmitter<void>;
837
- ngOnInit(): void;
838
- ngOnChanges(changes: SimpleChanges): void;
839
- ngOnDestroy(): void;
840
- private setupObserver;
841
- private initializeObserver;
842
- private triggerLoad;
843
- private temporarilyDisableObserver;
844
- private disconnect;
845
- setLoadingState(loading: boolean): void;
846
- resetAutoLoad(): void;
847
- static ɵfac: i0.ɵɵFactoryDeclaration<AutoLoadDirective, never>;
848
- static ɵdir: i0.ɵɵDirectiveDeclaration<AutoLoadDirective, "[haloduckAutoLoad]", never, { "autoLoadEnabled": { "alias": "autoLoadEnabled"; "required": false; }; "autoLoadThreshold": { "alias": "autoLoadThreshold"; "required": false; }; "autoLoadRootMargin": { "alias": "autoLoadRootMargin"; "required": false; }; }, { "autoLoadTrigger": "autoLoadTrigger"; }, never, never, true, never>;
849
- }
850
-
851
- declare class BreadcrumbComponent implements OnInit {
852
- private readonly breadcrumbService;
853
- listBreadcrumb: {
854
- label: string;
855
- url: string;
856
- }[];
857
- ngOnInit(): void;
858
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
859
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "haloduck-breadcrumb", never, {}, {}, never, never, true, never>;
860
- }
861
-
862
- declare class DialogService {
863
- private overlay;
864
- private injector;
865
- private dialogStack;
866
- constructor(overlay: Overlay, injector: Injector);
867
- open<T>(component: Type<T> | TemplateRef<any>, data?: any, classList?: string[]): OverlayRef;
868
- close(overlayRef?: OverlayRef): void;
869
- closeAll(): void;
870
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
871
- static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
872
- }
873
-
874
- declare class NotificationComponent {
875
- private readonly notificationService;
876
- listNotification$: rxjs.Observable<_haloduck_ui.Notification[]>;
877
- removeNotification(id: string): void;
878
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
879
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "haloduck-notification", never, {}, {}, never, never, true, never>;
880
- }
881
-
882
- declare global {
883
- interface Window {
884
- FlutterApp?: {
885
- postMessage: (message: string) => void;
886
- };
887
- }
888
- }
889
- type NotificationType = 'success' | 'error' | 'warning' | 'info';
890
- interface Notification {
891
- id: string;
892
- type: NotificationType;
893
- message: string;
894
- timeout?: number;
895
- timeoutRef?: number;
896
- }
897
- declare class NotificationService {
898
- private listNotification$;
899
- private listNotification;
900
- showNotification(title: string, body: string, timeout?: number, payload?: any): void;
901
- _showNotification(type: NotificationType, message: string, timeout?: number): string;
902
- getListNotification(): Observable<Notification[]>;
903
- removeNotificationById(id: string): void;
904
- constructor();
905
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
906
- static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
907
- }
908
-
909
- declare class PictureNameComponent {
910
- name?: string;
911
- pictureKey?: string;
912
- cdnUrl?: string;
913
- static ɵfac: i0.ɵɵFactoryDeclaration<PictureNameComponent, never>;
914
- static ɵcmp: i0.ɵɵComponentDeclaration<PictureNameComponent, "haloduck-picture-name", never, { "name": { "alias": "name"; "required": false; }; "pictureKey": { "alias": "pictureKey"; "required": false; }; "cdnUrl": { "alias": "cdnUrl"; "required": false; }; }, {}, never, never, true, never>;
915
- }
916
-
917
- declare const provideHaloduckTransloco: () => {
918
- provide: i0.InjectionToken<_jsverse_transloco.TranslocoScope>;
919
- useValue: _jsverse_transloco.TranslocoScope;
920
- multi: boolean;
921
- }[];
922
-
923
- export { AuthenticateCallbackComponent, AuthenticateComponent, AutoLoadDirective, BreadcrumbComponent, ButtonComponent, CalendarComponent, ConfirmDialogService, CopyButtonComponent, DatePickerComponent, DateRangeComponent, DialogService, DrawCanvasComponent, ERROR_NOT_ACCEPTABLE_FILE_TYPE, ERROR_OVER_COUNT, ERROR_OVER_SIZE, ERROR_UPLOAD, FileUploaderComponent, FlipComponent, GroupedDirective, ImageUploaderComponent, ImageViewerComponent, InputComponent, LanguageSelectorComponent, MapToAddressComponent, NotificationComponent, NotificationService, PictureNameComponent, SelectComponent, SelectDropdownComponent, SideMenuComponent, SideMenuItemComponent, StlViewerComponent, TableComponent, TableSettingComponent, TableSettingService, TabsComponent, TagInputComponent, TagViewerComponent, ToggleComponent, dateToString, google, provideHaloduckTransloco };
924
- export type { ButtonVariant, CalendarDate, DateRange, DateRangeDropdown, FileEx, GroupedConfig, Location, Notification, NotificationType, Option, ProcessCognitoUserResponse, SocialLoginProvider, TabItem, TableColumn, TableRow, TableSettings };