@js-smart/ng-kit 19.7.0 → 20.0.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.
Files changed (40) hide show
  1. package/fesm2022/js-smart-ng-kit.mjs +252 -259
  2. package/fesm2022/js-smart-ng-kit.mjs.map +1 -1
  3. package/index.d.ts +939 -3
  4. package/package.json +1 -1
  5. package/lib/components/alert/alert.component.d.ts +0 -73
  6. package/lib/components/autocomplete/autocomplete.component.d.ts +0 -92
  7. package/lib/components/buttons/base-button/base-button.component.d.ts +0 -69
  8. package/lib/components/buttons/bs-link-button/bs-link-button.component.d.ts +0 -10
  9. package/lib/components/buttons/delete-button/delete-button.component.d.ts +0 -11
  10. package/lib/components/buttons/edit-bs-button/edit-bs-button.component.d.ts +0 -9
  11. package/lib/components/buttons/edit-button/edit-button.component.d.ts +0 -10
  12. package/lib/components/buttons/edit-svg-icon-button/edit-svg-icon-button.component.d.ts +0 -10
  13. package/lib/components/buttons/excel-export-button/excel-export-button.component.d.ts +0 -5
  14. package/lib/components/buttons/manage-button/manage-button.component.d.ts +0 -10
  15. package/lib/components/buttons/pdf-export-button/pdf-export-button.component.d.ts +0 -5
  16. package/lib/components/buttons/primary-button/primary-button.component.d.ts +0 -12
  17. package/lib/components/buttons/save-primary-button/save-primary-button.component.d.ts +0 -11
  18. package/lib/components/buttons/search-button/search-button.component.d.ts +0 -11
  19. package/lib/components/buttons/success-button/success-button.component.d.ts +0 -11
  20. package/lib/components/buttons/view-button/view-button.component.d.ts +0 -9
  21. package/lib/components/buttons/view-primary-button/view-primary-button.component.d.ts +0 -10
  22. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +0 -20
  23. package/lib/components/ngx-spinner/ngx-spinner.component.d.ts +0 -109
  24. package/lib/components/ngx-spinner/ngx-spinner.enum.d.ts +0 -37
  25. package/lib/components/ngx-spinner/ngx-spinner.service.d.ts +0 -34
  26. package/lib/components/ngx-spinner/safe-html.pipe.d.ts +0 -10
  27. package/lib/components/snack-bar/error-snack-bar/error-snack-bar.component.d.ts +0 -22
  28. package/lib/components/snack-bar/success-snack-bar/success-snack-bar.component.d.ts +0 -22
  29. package/lib/components/spinner/spinner.component.d.ts +0 -22
  30. package/lib/directives/ngx-print.directive.d.ts +0 -157
  31. package/lib/directives/prevent-multiple-clicks.directive.d.ts +0 -21
  32. package/lib/pipes/type-of.pipe.d.ts +0 -7
  33. package/lib/services/mat-snack-bar.service.d.ts +0 -61
  34. package/lib/store/entity-store.d.ts +0 -61
  35. package/lib/store/store.d.ts +0 -22
  36. package/lib/svg-icons/edit-solid-svg/edit-solid-svg.component.d.ts +0 -8
  37. package/lib/types/id-type.d.ts +0 -3
  38. package/lib/types/progress-state.d.ts +0 -7
  39. package/lib/util/progress-util.d.ts +0 -39
  40. package/public-api.d.ts +0 -29
package/index.d.ts CHANGED
@@ -1,5 +1,941 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { OnInit, ChangeDetectorRef, OnDestroy, OnChanges, AfterContentChecked, ElementRef, SimpleChanges, WritableSignal } from '@angular/core';
3
+ import { ThemePalette, MatOptionSelectionChange } from '@angular/material/core';
4
+ import { BehaviorSubject, Observable, Subject } from 'rxjs';
5
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
6
+ import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
7
+ import { MatTableDataSource } from '@angular/material/table';
8
+ import { MatPaginator } from '@angular/material/paginator';
9
+ import { MatDialogRef } from '@angular/material/dialog';
10
+ import { MatIconRegistry } from '@angular/material/icon';
11
+ import { DomSanitizer } from '@angular/platform-browser';
12
+ import { MatSnackBar, MatSnackBarHorizontalPosition, MatSnackBarVerticalPosition } from '@angular/material/snack-bar';
13
+
14
+ interface ProgressState {
15
+ isLoading: boolean;
16
+ isSuccess: boolean;
17
+ isError: boolean;
18
+ isComplete?: boolean;
19
+ message: string;
20
+ }
21
+
22
+ type AlertType = 'info' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'dark' | 'light';
1
23
  /**
2
- * Generated bundle index. Do not edit.
24
+ * Boostrap Alert component that can be used to alert messages to the user
25
+ *
26
+ * @author Pavan Kumar Jadda
27
+ * @since 12.0.0
3
28
  */
4
- /// <amd-module name="@js-smart/ng-kit" />
5
- export * from './public-api';
29
+ declare class AlertComponent implements OnInit {
30
+ cdr: ChangeDetectorRef;
31
+ /**
32
+ * Type of the BootStrap Alert. Following values are supported. See BootStrap docs for more information
33
+ */
34
+ type: _angular_core.InputSignal<AlertType>;
35
+ /**
36
+ * Is alert visible or open
37
+ */
38
+ isOpen: _angular_core.InputSignal<boolean>;
39
+ /**
40
+ * Writable signal for isOpen
41
+ */
42
+ open: _angular_core.WritableSignal<boolean>;
43
+ /**
44
+ * If set, displays an inline “Close” button
45
+ */
46
+ dismissible: _angular_core.InputSignal<boolean>;
47
+ /**
48
+ * If set, dismisses the alert after Dismiss Timeout
49
+ */
50
+ dismissOnTimeout: _angular_core.InputSignal<boolean>;
51
+ /**
52
+ * Number in milliseconds, after which alert will be closed. Default value is 5000 ms
53
+ */
54
+ dismissTimeout: _angular_core.InputSignal<number>;
55
+ /**
56
+ * Additional classes to be added to the alert. This can be used to add custom styles to the alert
57
+ */
58
+ class: _angular_core.InputSignal<string>;
59
+ /**
60
+ * Emits when the alert is closed.
61
+ */
62
+ closed: _angular_core.OutputEmitterRef<void>;
63
+ constructor();
64
+ /**
65
+ * Initialize the component and settings
66
+ *
67
+ * @author Pavan Kumar Jadda
68
+ * @since 12.0.0
69
+ */
70
+ ngOnInit(): void;
71
+ /**
72
+ * Closes BootStrap Alert if not open
73
+ *
74
+ * @author Pavan Kumar Jadda
75
+ * @since 12.0.0
76
+ */
77
+ closeAlert(): void;
78
+ /**
79
+ * Opens Bootstrap Alert
80
+ *
81
+ * @author Pavan Kumar Jadda
82
+ * @since 12.0.0
83
+ */
84
+ private openAlert;
85
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertComponent, never>;
86
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "lib-alert, alert", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "dismissOnTimeout": { "alias": "dismissOnTimeout"; "required": false; "isSignal": true; }; "dismissTimeout": { "alias": "dismissTimeout"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, ["*"], true, never>;
87
+ }
88
+
89
+ declare class SpinnerComponent {
90
+ /**
91
+ * Use Boostrap Spinner. Default `true`
92
+ */
93
+ bootstrapSpinner: _angular_core.InputSignal<boolean>;
94
+ /**
95
+ * Diameter of the Angular Material spinner
96
+ */
97
+ diameter: _angular_core.InputSignal<number>;
98
+ /**
99
+ * Color of the Angular Material spinner
100
+ */
101
+ color: _angular_core.InputSignal<ThemePalette>;
102
+ /**
103
+ * Stroke Width of the Angular Material spinner
104
+ */
105
+ strokeWidth: _angular_core.InputSignal<number>;
106
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SpinnerComponent, never>;
107
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SpinnerComponent, "spinner,lib-spinner", never, { "bootstrapSpinner": { "alias": "bootstrapSpinner"; "required": false; "isSignal": true; }; "diameter": { "alias": "diameter"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
108
+ }
109
+
110
+ type Size = 'default' | 'small' | 'medium' | 'large';
111
+ interface Spinner {
112
+ bdColor?: string;
113
+ size?: Size;
114
+ color?: string;
115
+ type?: string;
116
+ fullScreen?: boolean;
117
+ zIndex?: number;
118
+ template?: string;
119
+ showSpinner?: boolean;
120
+ }
121
+ declare class NgxSpinner {
122
+ name?: string;
123
+ bdColor?: string;
124
+ size?: Size;
125
+ color?: string;
126
+ type?: string;
127
+ class?: string;
128
+ divCount?: number;
129
+ divArray?: number[];
130
+ fullScreen?: boolean;
131
+ show?: boolean;
132
+ zIndex?: number;
133
+ template?: string;
134
+ showSpinner?: boolean;
135
+ constructor(init?: Partial<NgxSpinner>);
136
+ }
137
+
138
+ declare class NgxSpinnerService {
139
+ /**
140
+ * Spinner observable
141
+ *
142
+ * @memberof NgxSpinnerService
143
+ */
144
+ spinnerObservable: BehaviorSubject<NgxSpinner | undefined>;
145
+ /**
146
+ * Creates an instance of NgxSpinnerService.
147
+ * @memberof NgxSpinnerService
148
+ */
149
+ /**
150
+ * Get subscription of desired spinner
151
+ * @memberof NgxSpinnerService
152
+ **/
153
+ getSpinner(name: string): Observable<NgxSpinner>;
154
+ /**
155
+ * To show spinner
156
+ *
157
+ * @memberof NgxSpinnerService
158
+ */
159
+ show(name?: string, spinner?: Spinner): Promise<unknown>;
160
+ /**
161
+ * To hide spinner
162
+ *
163
+ * @memberof NgxSpinnerService
164
+ */
165
+ hide(name?: string, debounce?: number): Promise<unknown>;
166
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgxSpinnerService, never>;
167
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<NgxSpinnerService>;
168
+ }
169
+
170
+ declare class NgxSpinnerComponent implements OnDestroy, OnInit {
171
+ private readonly spinnerService;
172
+ private readonly changeDetector;
173
+ /**
174
+ * To set backdrop color
175
+ * Only supports RGBA color format
176
+ */
177
+ bdColor: _angular_core.InputSignal<string>;
178
+ /**
179
+ * To set spinner size
180
+ */
181
+ size: _angular_core.InputSignal<Size>;
182
+ /**
183
+ * To set spinner color(DEFAULTS.SPINNER_COLOR)
184
+ */
185
+ color: _angular_core.InputSignal<string>;
186
+ /**
187
+ * To set type of spinner
188
+ */
189
+ type: _angular_core.InputSignal<string>;
190
+ /**
191
+ * To toggle fullscreen mode
192
+ */
193
+ fullScreen: _angular_core.InputSignal<boolean>;
194
+ /**
195
+ * Spinner name
196
+ */
197
+ name: _angular_core.InputSignal<string>;
198
+ /**
199
+ * z-index value
200
+ */
201
+ zIndex: _angular_core.InputSignal<number>;
202
+ /**
203
+ * Custom template for spinner/loader
204
+ */
205
+ template: _angular_core.InputSignal<string>;
206
+ /**
207
+ * Show/Hide the spinner
208
+ */
209
+ showSpinner: _angular_core.InputSignal<boolean>;
210
+ /**
211
+ * To enable/disable animation
212
+ */
213
+ disableAnimation: _angular_core.InputSignal<boolean>;
214
+ /**
215
+ * Spinner Object
216
+ */
217
+ spinner: NgxSpinner;
218
+ /**
219
+ * Array for spinner's div
220
+ */
221
+ divArray: number[];
222
+ /**
223
+ * Counter for div
224
+ */
225
+ divCount: number;
226
+ /**
227
+ * Show spinner
228
+ **/
229
+ show: boolean;
230
+ /**
231
+ * Unsubscribe from spinner's observable
232
+ **/
233
+ ngUnsubscribe: Subject<void>;
234
+ /**
235
+ * Element Reference
236
+ */
237
+ spinnerDOM: any;
238
+ /**
239
+ * Creates an instance of NgxSpinnerComponent.
240
+ */
241
+ constructor(spinnerService: NgxSpinnerService, changeDetector: ChangeDetectorRef);
242
+ handleKeyboardEvent(event: KeyboardEvent): void;
243
+ /**
244
+ * Initialization method
245
+ */
246
+ ngOnInit(): void;
247
+ /**
248
+ * To set default ngx-spinner options
249
+ */
250
+ setDefaultOptions: () => void;
251
+ /**
252
+ * To get class for spinner
253
+ */
254
+ getClass(type: string, size: Size): string;
255
+ /**
256
+ * Check if input variables have changed
257
+ */
258
+ onInputChange(): void;
259
+ /**
260
+ * Component destroy event
261
+ */
262
+ ngOnDestroy(): void;
263
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgxSpinnerComponent, never>;
264
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NgxSpinnerComponent, "ngx-spinner", never, { "bdColor": { "alias": "bdColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "fullScreen": { "alias": "fullScreen"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "template": { "alias": "template"; "required": false; "isSignal": true; }; "showSpinner": { "alias": "showSpinner"; "required": false; "isSignal": true; }; "disableAnimation": { "alias": "disableAnimation"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
265
+ }
266
+
267
+ /**
268
+ * Reusable Auto Complete component that extends MatAutoComplete to show Clear icon and Arrow buttons
269
+ *
270
+ * @author Pavan Kumar Jadda
271
+ * @since 12.0.0
272
+ */
273
+ declare class AutocompleteComponent implements OnInit, OnChanges, AfterContentChecked, ControlValueAccessor {
274
+ /**
275
+ * Gets reference inputAutoComplete HTML attribute
276
+ */
277
+ inputAutoComplete: ElementRef;
278
+ cdRef: ChangeDetectorRef;
279
+ /**
280
+ * Internal form control for the autocomplete
281
+ */
282
+ control: FormControl<string | null>;
283
+ /**
284
+ * Label of the AutoComplete
285
+ */
286
+ label: _angular_core.InputSignal<string>;
287
+ /**
288
+ * Placeholder of the AutoComplete
289
+ */
290
+ placeHolder: _angular_core.InputSignal<string>;
291
+ /**
292
+ * Appearance of the AutoComplete, defaults to `fill`
293
+ */
294
+ appearance: _angular_core.InputSignal<string>;
295
+ /**
296
+ * List of CSS classes that need to applied to autocomplete
297
+ */
298
+ classes: _angular_core.InputSignal<string>;
299
+ /**
300
+ * Attribute of the Object whose value would be shown when searching for data. Defaults to `ID`
301
+ */
302
+ bindLabel: _angular_core.InputSignal<string>;
303
+ /**
304
+ * Attribute of the Object whose value would be used for search
305
+ */
306
+ bindValue: _angular_core.InputSignal<string>;
307
+ /**
308
+ * Function that maps an option's control value to its display value in the trigger.
309
+ */
310
+ displayWith: ((value: any) => string) | null;
311
+ /**
312
+ * Specifies if the autocomplete is required. Default is not required.
313
+ */
314
+ required: _angular_core.InputSignal<boolean>;
315
+ /**
316
+ * Specifies if the autocomplete is disabled. Default is not required.
317
+ */
318
+ disabled: _angular_core.InputSignal<boolean>;
319
+ /**
320
+ * List of Objects that need to be bind and searched for
321
+ */
322
+ data: _angular_core.InputSignal<any[] | string[] | undefined>;
323
+ /**
324
+ * Emit selected value on selection changes
325
+ */
326
+ onSelectionChange: _angular_core.OutputEmitterRef<any>;
327
+ /**
328
+ * BehaviorSubject that shows the current active arrow icon
329
+ */
330
+ arrowIconSubject: BehaviorSubject<string>;
331
+ /**
332
+ * Filtered options when user types
333
+ */
334
+ filteredOptions: Observable<any[] | undefined> | undefined;
335
+ writeValue(value: any): void;
336
+ registerOnChange(fn: any): void;
337
+ registerOnTouched(fn: any): void;
338
+ setDisabledState(isDisabled: boolean): void;
339
+ ngAfterContentChecked(): void;
340
+ ngOnInit(): void;
341
+ ngOnChanges(_changes: SimpleChanges): void;
342
+ clearInput(evt: any): void;
343
+ openOrClosePanel(evt: any, trigger: MatAutocompleteTrigger): void;
344
+ displayFn(object: any): string;
345
+ emitSelectedValue($event: MatOptionSelectionChange): void;
346
+ private onChange;
347
+ private onTouched;
348
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
349
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent, "autocomplete, lib-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeHolder": { "alias": "placeHolder"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "displayWith": { "alias": "displayWith"; "required": false; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; }, { "onSelectionChange": "onSelectionChange"; }, never, never, true, never>;
350
+ }
351
+
352
+ declare class PrintOptions {
353
+ printSectionId: string;
354
+ printTitle: string;
355
+ useExistingCss: boolean;
356
+ bodyClass: string;
357
+ openNewTab: boolean;
358
+ previewOnly: boolean;
359
+ closeWindow: boolean;
360
+ printDelay: number;
361
+ constructor(options?: Partial<PrintOptions>);
362
+ }
363
+
364
+ /**
365
+ * Reusable Angular directory that prints given contents of HTML element
366
+ *
367
+ * @since 12.0.0
368
+ * @author Pavan Kumar Jadda
369
+ */
370
+ declare class NgxPrintDirective {
371
+ /**
372
+ * ID of the HTML element those contents need to be printed
373
+ *
374
+ * @since 12.0.0
375
+ * @author Pavan Kumar Jadda
376
+ */
377
+ printSectionId: string | undefined;
378
+ /**
379
+ * Title of the HTML element those contents need to be printed
380
+ *
381
+ * @since 12.0.0
382
+ * @author Pavan Kumar Jadda
383
+ */
384
+ printTitle: string | undefined;
385
+ /**
386
+ * If `true`, uses CSS of HTMl element, otherwise no CSS applied
387
+ *
388
+ * @since 12.0.0
389
+ * @author Pavan Kumar Jadda
390
+ */
391
+ useExistingCss: boolean;
392
+ /**
393
+ * A delay in milliseconds to force the print dialog to wait before opened. Default: 0
394
+ *
395
+ * @since 12.0.0
396
+ * @author Pavan Kumar Jadda
397
+ */
398
+ printDelay: number;
399
+ /**
400
+ * Instance of the Mat Table Data Source
401
+ *
402
+ * @since 12.0.0
403
+ * @author Pavan Kumar Jadda
404
+ */
405
+ matTableDataSource: MatTableDataSource<any>;
406
+ /**
407
+ * Instance of the Mat Paginator
408
+ *
409
+ * @since 12.0.0
410
+ * @author Pavan Kumar Jadda
411
+ */
412
+ paginator: MatPaginator;
413
+ /**
414
+ * ID of the Mat Paginator
415
+ *
416
+ * @since 12.0.0
417
+ * @author Pavan Kumar Jadda
418
+ */
419
+ paginatorId: string;
420
+ /**
421
+ * HTML tag ID of the Mat-Table Input Filter
422
+ *
423
+ * @since 12.0.0
424
+ * @author Pavan Kumar Jadda
425
+ */
426
+ inputFilterId: string;
427
+ /**
428
+ * If `true`, referenced table is Mat-Table
429
+ *
430
+ * @since 12.0.0
431
+ * @author Pavan Kumar Jadda
432
+ */
433
+ isMatTable: boolean;
434
+ /**
435
+ * If `true` Mat-Table paginator will be hidden
436
+ *
437
+ * @since 12.0.0
438
+ * @author Pavan Kumar Jadda
439
+ */
440
+ hideMatTablePaginator: boolean;
441
+ printStyleArray: never[];
442
+ printOptions: PrintOptions;
443
+ /**
444
+ * List of Style sheet files
445
+ *
446
+ * @since 12.0.0
447
+ * @author Pavan Kumar Jadda
448
+ */
449
+ private styleSheetFileArray;
450
+ /**
451
+ * Prevents the print dialog from opening on the window
452
+ *
453
+ * @memberof NgxPrintDirective
454
+ */
455
+ set previewOnly(value: boolean);
456
+ /**
457
+ * List of CSS properties that needs to be applied while printing the document
458
+ *
459
+ * @since 12.0.0
460
+ * @author Pavan Kumar Jadda
461
+ */
462
+ set printStyle({ values }: PrintStyleParams);
463
+ /**
464
+ * Sets given style sheet files to print document
465
+ *
466
+ * @param cssList Comma separated value of CSS file names
467
+ *
468
+ * @since 12.0.0
469
+ * @author Pavan Kumar Jadda
470
+ */
471
+ set styleSheetFile(cssList: string);
472
+ /**
473
+ * Build link HTMl tag based on given file name
474
+ *
475
+ * @since 12.0.0
476
+ * @author Pavan Kumar Jadda
477
+ */
478
+ private static linkTagFn;
479
+ /**
480
+ * Gets HTML element by tag name
481
+ *
482
+ * @since 12.0.0
483
+ * @author Pavan Kumar Jadda
484
+ */
485
+ private static getElementTag;
486
+ /**
487
+ * Print the element upon clicking the button
488
+ *
489
+ * @since 12.0.0
490
+ * @author Pavan Kumar Jadda
491
+ */
492
+ print(): void;
493
+ /**
494
+ * Hide Mat Paginator before Printing
495
+ *
496
+ * @since 12.0.1
497
+ * @author Pavan Kumar Jadda
498
+ */
499
+ private hideMatPaginatorBeforePrinting;
500
+ /**
501
+ * Show Mat Paginator after Printing
502
+ *
503
+ * @since 12.0.1
504
+ * @author Pavan Kumar Jadda
505
+ */
506
+ private showMatPaginatorAfterPrinting;
507
+ /**
508
+ * @returns the string that create the stylesheet which will be injected later within <style></style> tag. Join/replace to transform an array objects to css-styled string
509
+ *
510
+ * @since 12.0.0
511
+ * @author Pavan Kumar Jadda
512
+ */
513
+ private returnStyleValues;
514
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NgxPrintDirective, never>;
515
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NgxPrintDirective, "button[ngxPrint], button[print]", never, { "printSectionId": { "alias": "printSectionId"; "required": false; }; "printTitle": { "alias": "printTitle"; "required": false; }; "useExistingCss": { "alias": "useExistingCss"; "required": false; }; "printDelay": { "alias": "printDelay"; "required": false; }; "matTableDataSource": { "alias": "matTableDataSource"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "paginatorId": { "alias": "paginatorId"; "required": false; }; "inputFilterId": { "alias": "inputFilterId"; "required": false; }; "isMatTable": { "alias": "isMatTable"; "required": false; }; "hideMatTablePaginator": { "alias": "hideMatTablePaginator"; "required": false; }; "previewOnly": { "alias": "previewOnly"; "required": false; }; "printStyle": { "alias": "printStyle"; "required": false; }; "styleSheetFile": { "alias": "styleSheetFile"; "required": false; }; }, {}, never, never, true, never>;
516
+ }
517
+ interface PrintStyleParams {
518
+ values: Record<string, Record<string, string>>;
519
+ }
520
+
521
+ declare class PreventMultipleClicksDirective implements OnInit, OnDestroy {
522
+ throttleTime: _angular_core.InputSignal<number>;
523
+ throttleClick: _angular_core.OutputEmitterRef<Event>;
524
+ private readonly clicks;
525
+ private subscription;
526
+ /**
527
+ * Intercepts click event and stops default navigation. After first click set {@link throttleTime} to 2000 to prevent duplicate clicks
528
+ *
529
+ * @param event DOM event
530
+ *
531
+ * @author Pavan Kumar Jadda
532
+ * @since 2.3.27
533
+ */
534
+ clickEvent(event: Event): void;
535
+ ngOnInit(): void;
536
+ ngOnDestroy(): void;
537
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PreventMultipleClicksDirective, never>;
538
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PreventMultipleClicksDirective, "[preventMultipleClicks]", never, { "throttleTime": { "alias": "throttleTime"; "required": false; "isSignal": true; }; }, { "throttleClick": "throttleClick"; }, never, never, true, never>;
539
+ }
540
+
541
+ declare class BaseButtonComponent {
542
+ /**
543
+ * Is search in progress and loading the data
544
+ */
545
+ loading: _angular_core.InputSignalWithTransform<boolean, boolean | undefined>;
546
+ /**
547
+ * Is button disabled
548
+ */
549
+ disabled: _angular_core.InputSignal<boolean>;
550
+ /**
551
+ * Type of the button. Following values are supported. See BootStrap docs for more information
552
+ * <pre>
553
+ * 1. button
554
+ * 2. submit
555
+ * </pre>
556
+ */
557
+ type: _angular_core.InputSignal<string>;
558
+ /**
559
+ * If set, shows when action in Progress
560
+ */
561
+ loadingLabel: _angular_core.InputSignal<string>;
562
+ /**
563
+ * If set, shows when Delete is not in progress
564
+ */
565
+ label: _angular_core.InputSignal<string>;
566
+ /**
567
+ * If set, shows the icon. Otherwise, shows delete icon
568
+ */
569
+ icon: _angular_core.InputSignal<string>;
570
+ /**
571
+ * If set, shows material icon otherwise hides the icons
572
+ */
573
+ showIcon: _angular_core.InputSignal<boolean>;
574
+ /**
575
+ * If set, sets the style of the button
576
+ */
577
+ style: _angular_core.InputSignal<any>;
578
+ /**
579
+ * If set, sets the class of the button
580
+ */
581
+ classes: _angular_core.InputSignal<string>;
582
+ /**
583
+ * If set, sets the data-cy attribute for the button
584
+ */
585
+ dataCy: _angular_core.InputSignal<string>;
586
+ /**
587
+ * Output event when button is clicked
588
+ */
589
+ onClick: _angular_core.OutputEmitterRef<MouseEvent>;
590
+ /**
591
+ * Output event when button is focused
592
+ */
593
+ onFocus: _angular_core.OutputEmitterRef<FocusEvent>;
594
+ /**
595
+ * Output event when button is blurred
596
+ */
597
+ onBlur: _angular_core.OutputEmitterRef<FocusEvent>;
598
+ /**
599
+ * Output event when key is pressed
600
+ */
601
+ onKeyDown: _angular_core.OutputEmitterRef<KeyboardEvent>;
602
+ /**
603
+ * Output event when key is up
604
+ */
605
+ onKeyUp: _angular_core.OutputEmitterRef<KeyboardEvent>;
606
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseButtonComponent, never>;
607
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BaseButtonComponent, "ng-component", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; "dataCy": { "alias": "dataCy"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; }, never, never, true, never>;
608
+ }
609
+
610
+ declare class BsLinkButtonComponent extends BaseButtonComponent {
611
+ label: _angular_core.InputSignal<string>;
612
+ icon: _angular_core.InputSignal<string>;
613
+ classes: _angular_core.InputSignal<string>;
614
+ constructor();
615
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsLinkButtonComponent, never>;
616
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BsLinkButtonComponent, "bs-link-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
617
+ }
618
+
619
+ declare class DeleteButtonComponent extends BaseButtonComponent {
620
+ loadingLabel: _angular_core.InputSignal<string>;
621
+ label: _angular_core.InputSignal<string>;
622
+ icon: _angular_core.InputSignal<string>;
623
+ classes: _angular_core.InputSignal<string>;
624
+ constructor();
625
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeleteButtonComponent, never>;
626
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeleteButtonComponent, "delete-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
627
+ }
628
+
629
+ declare class EditButtonComponent extends BaseButtonComponent {
630
+ label: _angular_core.InputSignal<string>;
631
+ icon: _angular_core.InputSignal<string>;
632
+ classes: _angular_core.InputSignal<string>;
633
+ constructor();
634
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditButtonComponent, never>;
635
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditButtonComponent, "edit-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
636
+ }
637
+
638
+ declare class EditBsButtonComponent extends BaseButtonComponent {
639
+ label: _angular_core.InputSignal<string>;
640
+ classes: _angular_core.InputSignal<string>;
641
+ constructor();
642
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditBsButtonComponent, never>;
643
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditBsButtonComponent, "edit-bs-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
644
+ }
645
+
646
+ declare class EditSvgIconButtonComponent extends BaseButtonComponent {
647
+ label: _angular_core.InputSignal<string>;
648
+ icon: _angular_core.InputSignal<string>;
649
+ classes: _angular_core.InputSignal<string>;
650
+ constructor();
651
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSvgIconButtonComponent, never>;
652
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSvgIconButtonComponent, "edit-svg-icon-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
653
+ }
654
+
655
+ declare class ManageButtonComponent extends BaseButtonComponent {
656
+ label: _angular_core.InputSignal<string>;
657
+ icon: _angular_core.InputSignal<string>;
658
+ classes: _angular_core.InputSignal<string>;
659
+ constructor();
660
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ManageButtonComponent, never>;
661
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ManageButtonComponent, "manage-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
662
+ }
663
+
664
+ declare class SavePrimaryButtonComponent extends BaseButtonComponent {
665
+ loadingLabel: _angular_core.InputSignal<string>;
666
+ label: _angular_core.InputSignal<string>;
667
+ icon: _angular_core.InputSignal<string>;
668
+ classes: _angular_core.InputSignal<string>;
669
+ constructor();
670
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SavePrimaryButtonComponent, never>;
671
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SavePrimaryButtonComponent, "save-primary-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
672
+ }
673
+
674
+ declare class SearchButtonComponent extends BaseButtonComponent {
675
+ loadingLabel: _angular_core.InputSignal<string>;
676
+ label: _angular_core.InputSignal<string>;
677
+ icon: _angular_core.InputSignal<string>;
678
+ classes: _angular_core.InputSignal<string>;
679
+ constructor();
680
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchButtonComponent, never>;
681
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchButtonComponent, "search-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
682
+ }
683
+
684
+ declare class SuccessButtonComponent extends BaseButtonComponent {
685
+ loadingLabel: _angular_core.InputSignal<string>;
686
+ label: _angular_core.InputSignal<string>;
687
+ icon: _angular_core.InputSignal<string>;
688
+ classes: _angular_core.InputSignal<string>;
689
+ constructor();
690
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SuccessButtonComponent, never>;
691
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SuccessButtonComponent, "success-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
692
+ }
693
+
694
+ declare class ViewButtonComponent extends BaseButtonComponent {
695
+ label: _angular_core.InputSignal<string>;
696
+ icon: _angular_core.InputSignal<string>;
697
+ constructor();
698
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewButtonComponent, never>;
699
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewButtonComponent, "view-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
700
+ }
701
+
702
+ declare class ViewPrimaryButtonComponent extends BaseButtonComponent {
703
+ label: _angular_core.InputSignal<string>;
704
+ icon: _angular_core.InputSignal<string>;
705
+ classes: _angular_core.InputSignal<string>;
706
+ constructor();
707
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewPrimaryButtonComponent, never>;
708
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewPrimaryButtonComponent, "view-primary-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
709
+ }
710
+
711
+ declare class PrimaryButtonComponent extends BaseButtonComponent {
712
+ loadingLabel: _angular_core.InputSignal<string>;
713
+ label: _angular_core.InputSignal<string>;
714
+ icon: _angular_core.InputSignal<string>;
715
+ showIcon: _angular_core.InputSignal<boolean>;
716
+ classes: _angular_core.InputSignal<string>;
717
+ constructor();
718
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PrimaryButtonComponent, never>;
719
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PrimaryButtonComponent, "primary-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
720
+ }
721
+
722
+ declare class PdfExportButtonComponent {
723
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfExportButtonComponent, never>;
724
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdfExportButtonComponent, "pdf-export-button", never, {}, {}, never, never, true, never>;
725
+ }
726
+
727
+ declare class ExcelExportButtonComponent {
728
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExcelExportButtonComponent, never>;
729
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExcelExportButtonComponent, "excel-export-button", never, {}, {}, never, never, true, never>;
730
+ }
731
+
732
+ declare class ConfirmDialogComponent {
733
+ data: ConfirmDialogData;
734
+ dialogRef: MatDialogRef<ConfirmDialogComponent>;
735
+ title: string;
736
+ message: string;
737
+ constructor(data: ConfirmDialogData, dialogRef: MatDialogRef<ConfirmDialogComponent>);
738
+ onDismiss(): void;
739
+ onConfirm(): void;
740
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfirmDialogComponent, never>;
741
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfirmDialogComponent, "app-confirm-dialog", never, {}, {}, never, never, true, never>;
742
+ }
743
+ /**
744
+ * Class to represent confirm dialog model.
745
+ */
746
+ interface ConfirmDialogData {
747
+ title: string;
748
+ message: string;
749
+ }
750
+
751
+ declare class EditSolidSvgComponent {
752
+ constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
753
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSolidSvgComponent, never>;
754
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSolidSvgComponent, "edit-solid-svg", never, {}, {}, never, never, true, never>;
755
+ }
756
+
757
+ declare class MatSnackBarService {
758
+ snackBar: MatSnackBar;
759
+ /**
760
+ * Duration (in milliseconds) of the Snack Bar to be open. Defaults to 5 seconds (5000 milliseconds)
761
+ */
762
+ duration: number;
763
+ /**
764
+ * Horizontal Position of the MatSnackBar. Defaults to right side
765
+ */
766
+ horizontalPosition: MatSnackBarHorizontalPosition;
767
+ /**
768
+ * Vertical Position of the MatSnackBar. Defaults to top of the page
769
+ */
770
+ verticalPosition: MatSnackBarVerticalPosition;
771
+ /**
772
+ * Opens Success Snack Bar
773
+ *
774
+ * @param message Message to display on Snack Bar
775
+ * @param options Options of the Snack Bar
776
+ *
777
+ * @author Pavan Kumar Jadda
778
+ * @since 2.2.3
779
+ */
780
+ success(message: string, options?: MatSnackBarOptions): void;
781
+ /**
782
+ * Opens Error Snack Bar
783
+ *
784
+ * @param message Message to display on Snack Bar
785
+ * @param options Options of the Snack Bar
786
+ *
787
+ * @author Pavan Kumar Jadda
788
+ * @since 2.2.3
789
+ */
790
+ error(message: string, options?: MatSnackBarOptions): void;
791
+ /**
792
+ * Opens Generic Snack Bar
793
+ *
794
+ * @param message Message to display on Snack Bar
795
+ *
796
+ * @author Pavan Kumar Jadda
797
+ * @since 2.2.3
798
+ */
799
+ open(message: string): void;
800
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MatSnackBarService, never>;
801
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<MatSnackBarService>;
802
+ }
803
+ /**
804
+ * MatSnackBarOptions for Snack Bar
805
+ *
806
+ * @author Pavan Kumar Jadda
807
+ * @since 2.7.19
808
+ */
809
+ interface MatSnackBarOptions {
810
+ duration?: number;
811
+ horizontalPosition?: MatSnackBarHorizontalPosition;
812
+ verticalPosition?: MatSnackBarVerticalPosition;
813
+ panelClass?: string;
814
+ }
815
+
816
+ /**
817
+ * A core store class that can be used to store any object
818
+ *
819
+ * @author Pavan Kumar Jadda
820
+ * @since 17.1.0
821
+ */
822
+ declare class Store<T extends object> {
823
+ _data: _angular_core.WritableSignal<T | undefined>;
824
+ data: _angular_core.Signal<T | undefined>;
825
+ /**
826
+ * Update the data in the store with the new data
827
+ *
828
+ * @param newData The new data to be stored/updated
829
+ *
830
+ * @author Pavan Kumar Jadda
831
+ * @since 17.1.0
832
+ */
833
+ update(newData: T): void;
834
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<Store<any>, never>;
835
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<Store<any>>;
836
+ }
837
+
838
+ interface IdType {
839
+ id: number;
840
+ }
841
+
842
+ /**
843
+ * A core entity store class that stores a list of objects. This has list of methods to perform CRUD operations on the list of objects.
844
+ *
845
+ * @author Pavan Kumar Jadda
846
+ * @since 17.1.0
847
+ */
848
+ declare class EntityStore<T extends IdType> {
849
+ _data: _angular_core.WritableSignal<T[]>;
850
+ data: _angular_core.Signal<T[]>;
851
+ /**
852
+ * Find an item in the store by id
853
+ *
854
+ * @param id The id of the item to be found
855
+ *
856
+ * @returns The item if found, undefined otherwise
857
+ *
858
+ * @author Pavan Kumar Jadda
859
+ * @since 17.1.0
860
+ */
861
+ findById(id: number): T | undefined;
862
+ /**
863
+ * Set the list of items in the store with the new data
864
+ *
865
+ * @param data The new list of items to be stored
866
+ *
867
+ * @author Pavan Kumar Jadda
868
+ * @since 17.1.0
869
+ */
870
+ setData(data: T[]): void;
871
+ /**
872
+ * Update an item in the store. If the item does not exist in new list, add it. Otherwise, update it.
873
+ *
874
+ * @param data The item to added or updated
875
+ *
876
+ * @author Pavan Kumar Jadda
877
+ * @since 17.1.0
878
+ */
879
+ upsert(data: T): void;
880
+ /**
881
+ * Update or insert the given list of items in the store
882
+ *
883
+ * @param newData The list of items to be updated or inserted
884
+ *
885
+ * @author Pavan Kumar Jadda
886
+ * @since 17.1.0
887
+ */
888
+ upsertMulti(newData: T[]): void;
889
+ /**
890
+ * Remove an item from the store
891
+ *
892
+ * @param id The id of the item to be removed
893
+ *
894
+ * @author Pavan Kumar Jadda
895
+ * @since 17.1.0
896
+ */
897
+ remove(id: number): void;
898
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntityStore<any>, never>;
899
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<EntityStore<any>>;
900
+ }
901
+
902
+ /**
903
+ * Initialize Loading or Update ProgressState
904
+ *
905
+ * @return Updated State Object
906
+ *
907
+ * @author Pavan Kumar Jadda
908
+ * @since 2.7.16
909
+ */
910
+ declare const initializeState: () => WritableSignal<ProgressState>;
911
+ /**
912
+ * Initialize Loading or Update ProgressState
913
+ *
914
+ * @param progressState Object to initialize
915
+ * @return ProgressState Updated State Object
916
+ *
917
+ * @author Pavan Kumar Jadda
918
+ * @since 2.7.16
919
+ */
920
+ declare const markLoading: (progressState: WritableSignal<ProgressState>) => void;
921
+ /**
922
+ * Update state as isSuccess
923
+ *
924
+ * @return ProgressState Updated State Object
925
+ *
926
+ * @author Pavan Kumar Jadda
927
+ * @since 2.7.16
928
+ */
929
+ declare const markSuccess: (progressState: WritableSignal<ProgressState>, message?: string) => void;
930
+ /**
931
+ * Update state as failure or isError
932
+ *
933
+ * @return ProgressState Updated State Object
934
+ *
935
+ * @author Pavan Kumar Jadda
936
+ * @since 2.7.16
937
+ */
938
+ declare const markError: (progressState: WritableSignal<ProgressState>, message?: string) => void;
939
+
940
+ export { AlertComponent, AutocompleteComponent, BsLinkButtonComponent, ConfirmDialogComponent, DeleteButtonComponent, EditBsButtonComponent, EditButtonComponent, EditSolidSvgComponent, EditSvgIconButtonComponent, EntityStore, ExcelExportButtonComponent, ManageButtonComponent, MatSnackBarService, NgxPrintDirective, NgxSpinnerComponent, NgxSpinnerService, PdfExportButtonComponent, PreventMultipleClicksDirective, PrimaryButtonComponent, SavePrimaryButtonComponent, SearchButtonComponent, SpinnerComponent, Store, SuccessButtonComponent, ViewButtonComponent, ViewPrimaryButtonComponent, initializeState, markError, markLoading, markSuccess };
941
+ export type { AlertType, ConfirmDialogData, MatSnackBarOptions, ProgressState };