@cauca-911/material 21.0.1-beta.3 → 21.0.1-beta.5
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/.eslintrc.json +79 -0
- package/README_PACKAGE.md +5 -0
- package/karma.conf.js +50 -0
- package/ng-package.json +7 -0
- package/package.json +2 -17
- package/src/assets/i18n/cauca/en-material.json +104 -0
- package/src/assets/i18n/cauca/es-material.json +104 -0
- package/src/assets/i18n/cauca/fr-material.json +106 -0
- package/src/assets/images/loading.gif +0 -0
- package/src/lib/cauca-material.component.html +1 -0
- package/src/lib/cauca-material.component.spec.ts +29 -0
- package/src/lib/cauca-material.component.ts +12 -0
- package/src/lib/cauca-material.service.spec.ts +16 -0
- package/src/lib/cauca-material.service.ts +7 -0
- package/src/lib/components/button/button.component.html +52 -0
- package/src/lib/components/button/button.component.scss +6 -0
- package/src/lib/components/button/button.component.spec.ts +142 -0
- package/src/lib/components/button/button.component.ts +22 -0
- package/src/lib/components/buttons/base-button.ts +35 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.html +5 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.scss +12 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.spec.ts +106 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.ts +17 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.html +3 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.scss +12 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.spec.ts +82 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.ts +16 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.html +5 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.scss +12 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.spec.ts +106 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.ts +17 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.html +3 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.scss +23 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.spec.ts +38 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.ts +15 -0
- package/src/lib/components/buttons/link-button/link-button.component.html +1 -0
- package/src/lib/components/buttons/link-button/link-button.component.scss +3 -0
- package/src/lib/components/buttons/link-button/link-button.component.spec.ts +97 -0
- package/src/lib/components/buttons/link-button/link-button.component.ts +25 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.html +5 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.scss +6 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.spec.ts +66 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.ts +19 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.html +5 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.scss +12 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.spec.ts +108 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.ts +17 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.html +1 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.scss +0 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.spec.ts +81 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.ts +19 -0
- package/src/lib/components/buttons/round-button/round-button.component.html +3 -0
- package/src/lib/components/buttons/round-button/round-button.component.scss +34 -0
- package/src/lib/components/buttons/round-button/round-button.component.spec.ts +26 -0
- package/src/lib/components/buttons/round-button/round-button.component.ts +14 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.html +5 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.scss +23 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.spec.ts +114 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.ts +17 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.html +9 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.scss +7 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.spec.ts +68 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.ts +155 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.html +6 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.scss +25 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.spec.ts +23 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.ts +23 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.html +77 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.scss +124 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.spec.ts +96 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.ts +228 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.html +9 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.scss +15 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.spec.ts +105 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.ts +48 -0
- package/src/lib/components/cauca-date-time-picker/models/dialog-date-time-picker-data.ts +29 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.html +14 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.scss +3 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.ts +87 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.html +12 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.scss +3 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.spec.ts +35 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.ts +57 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.html +49 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.ts +56 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.html +11 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.scss +4 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.spec.ts +39 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.ts +20 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.html +7 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.scss +41 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.spec.ts +24 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.ts +67 -0
- package/src/lib/components/deprecated-components/shared/models/menu-item.ts +11 -0
- package/src/lib/components/deprecated-components/shared/models/simple-dialog-data.ts +5 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.html +10 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.scss +14 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.spec.ts +90 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.ts +41 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.html +11 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.scss +29 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.spec.ts +137 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.ts +47 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.html +17 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.scss +14 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.spec.ts +96 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.ts +40 -0
- package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.spec.ts +7 -0
- package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.ts +5 -0
- package/src/lib/components/dialogs/dialog-styles.css +9 -0
- package/src/lib/components/dialogs/dialog-styles.scss +9 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.html +10 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.scss +10 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.spec.ts +91 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.ts +32 -0
- package/src/lib/components/dialogs/services/dialog.service.spec.ts +82 -0
- package/src/lib/components/dialogs/services/dialog.service.ts +107 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.html +24 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.scss +22 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.spec.ts +126 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.ts +66 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.html +9 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.scss +0 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.spec.ts +29 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.ts +111 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.html +13 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.scss +0 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.spec.ts +80 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.ts +46 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.html +40 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.scss +39 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.spec.ts +135 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.ts +263 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.html +6 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.scss +27 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.spec.ts +90 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.ts +17 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.html +5 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.scss +8 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.spec.ts +98 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.ts +16 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.html +11 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.scss +12 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.spec.ts +141 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.ts +67 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.html +15 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.scss +32 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.spec.ts +138 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.ts +101 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.html +19 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.scss +0 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.spec.ts +215 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.ts +108 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.html +14 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.scss +48 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.spec.ts +48 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.ts +19 -0
- package/src/lib/components/layout/group-container/group-container.component.html +6 -0
- package/src/lib/components/layout/group-container/group-container.component.scss +22 -0
- package/src/lib/components/layout/group-container/group-container.component.spec.ts +34 -0
- package/src/lib/components/layout/group-container/group-container.component.ts +14 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.html +13 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.scss +27 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.spec.ts +144 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.ts +52 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.html +4 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.scss +10 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.spec.ts +80 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.ts +28 -0
- package/src/lib/components/layout/page-title/page-title.component.html +35 -0
- package/src/lib/components/layout/page-title/page-title.component.scss +40 -0
- package/src/lib/components/layout/page-title/page-title.component.spec.ts +162 -0
- package/src/lib/components/layout/page-title/page-title.component.ts +28 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.html +6 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.scss +27 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.spec.ts +42 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.ts +13 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.html +3 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.scss +18 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.spec.ts +35 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.ts +12 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.html +21 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.scss +44 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.spec.ts +74 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.ts +22 -0
- package/src/lib/components/list-paginator/list-paginator.component.html +16 -0
- package/src/lib/components/list-paginator/list-paginator.component.scss +46 -0
- package/src/lib/components/list-paginator/list-paginator.component.spec.ts +248 -0
- package/src/lib/components/list-paginator/list-paginator.component.ts +81 -0
- package/src/lib/components/misc/loading-error/loading-error.component.html +11 -0
- package/src/lib/components/misc/loading-error/loading-error.component.scss +0 -0
- package/src/lib/components/misc/loading-error/loading-error.component.spec.ts +75 -0
- package/src/lib/components/misc/loading-error/loading-error.component.ts +18 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.html +3 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.scss +0 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.spec.ts +43 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.ts +16 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.html +16 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.scss +84 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.spec.ts +136 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.ts +39 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.html +11 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.scss +0 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.spec.ts +67 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.ts +15 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.html +11 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.scss +0 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.spec.ts +77 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.ts +17 -0
- package/src/lib/components/presenters/badge/badge.component.html +6 -0
- package/src/lib/components/presenters/badge/badge.component.scss +10 -0
- package/src/lib/components/presenters/badge/badge.component.spec.ts +41 -0
- package/src/lib/components/presenters/badge/badge.component.ts +18 -0
- package/src/lib/components/presenters/icon/icon.component.scss +9 -0
- package/src/lib/components/presenters/icon/icon.component.spec.ts +38 -0
- package/src/lib/components/presenters/icon/icon.component.ts +37 -0
- package/src/lib/core/breadcrumb.service.spec.ts +35 -0
- package/src/lib/core/breadcrumb.service.ts +24 -0
- package/src/lib/core/directives/auto-trim-and-lower.directive.spec.ts +22 -0
- package/src/lib/core/directives/auto-trim-and-lower.directive.ts +19 -0
- package/src/lib/core/directives/form-error/form-error.module.ts +21 -0
- package/src/lib/core/directives/form-error/has-error-root.directive.ts +31 -0
- package/src/lib/core/directives/form-error/has-error.directive.ts +95 -0
- package/src/lib/core/loading-state.service.spec.ts +57 -0
- package/src/lib/core/loading-state.service.ts +44 -0
- package/src/lib/core/models/breadcrumb-location.ts +6 -0
- package/src/lib/core/models/password-validation.ts +20 -0
- package/src/lib/core/validators/password/password-validator.spec.ts +155 -0
- package/src/lib/core/validators/password/password-validator.ts +30 -0
- package/src/lib/provide-cauca-material.ts +10 -0
- package/src/public-api.ts +70 -0
- package/src/test.ts +17 -0
- package/tsconfig.lib.json +18 -0
- package/tsconfig.lib.prod.json +4 -0
- package/tsconfig.spec.json +17 -0
- package/fesm2022/cauca-911-material.mjs +0 -4321
- package/fesm2022/cauca-911-material.mjs.map +0 -1
- package/types/cauca-911-material.d.ts +0 -755
|
@@ -1,755 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, EventEmitter, InputSignal, OutputEmitterRef, Signal, WritableSignal, OnDestroy, DoCheck, ElementRef, TemplateRef, ModelSignal, AfterContentInit, ViewContainerRef, Provider, EnvironmentProviders } from '@angular/core';
|
|
3
|
-
import * as i4 from '@angular/forms';
|
|
4
|
-
import { ControlValueAccessor, AbstractControl, ValidatorFn, UntypedFormGroup, UntypedFormBuilder, FormControl, FormGroup, NgControl, NgForm, FormGroupDirective, FormControlDirective, FormControlName, UntypedFormControl } from '@angular/forms';
|
|
5
|
-
import { SubscriptSizing, MatFormFieldControl } from '@angular/material/form-field';
|
|
6
|
-
import { Clipboard } from '@angular/cdk/clipboard';
|
|
7
|
-
import { ComponentType } from '@angular/cdk/portal';
|
|
8
|
-
import * as rxjs from 'rxjs';
|
|
9
|
-
import { Observable, Subject } from 'rxjs';
|
|
10
|
-
import { BooleanInput } from '@angular/cdk/coercion';
|
|
11
|
-
import { MatAutocomplete, MatAutocompleteTrigger, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
12
|
-
import { MatSelect } from '@angular/material/select';
|
|
13
|
-
import * as i3 from '@angular/common';
|
|
14
|
-
import { Configuration } from '@cauca-911/core';
|
|
15
|
-
|
|
16
|
-
declare class CaucaMaterialService {
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaMaterialService, never>;
|
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CaucaMaterialService>;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
declare class CaucaMaterialComponent {
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaMaterialComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaMaterialComponent, "cauca-material", never, {}, {}, never, never, true, never>;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
declare class CaucaDateTimePickerComponent implements ControlValueAccessor, OnInit {
|
|
27
|
-
subscriptSizing: SubscriptSizing;
|
|
28
|
-
showTime: boolean;
|
|
29
|
-
label: string;
|
|
30
|
-
translateLabel: boolean;
|
|
31
|
-
stepHours: number;
|
|
32
|
-
stepMinutes: number;
|
|
33
|
-
stepSecondes: number;
|
|
34
|
-
minimumDate: Date;
|
|
35
|
-
maximumDate: Date;
|
|
36
|
-
showSeconds: boolean;
|
|
37
|
-
showFormat: string;
|
|
38
|
-
showClearButton: boolean;
|
|
39
|
-
showButtonIcons: boolean;
|
|
40
|
-
selectedChange: EventEmitter<Date>;
|
|
41
|
-
control: AbstractControl;
|
|
42
|
-
stringDate: string;
|
|
43
|
-
private readonly injector;
|
|
44
|
-
private readonly elementRef;
|
|
45
|
-
private readonly dialog;
|
|
46
|
-
private readonly datePipe;
|
|
47
|
-
private selectedDate;
|
|
48
|
-
set value(value: Date);
|
|
49
|
-
get isRequired(): boolean;
|
|
50
|
-
ngOnInit(): void;
|
|
51
|
-
showDialog(): void;
|
|
52
|
-
writeValue(date: Date): void;
|
|
53
|
-
registerOnChange(fn: any): void;
|
|
54
|
-
registerOnTouched(fn: any): void;
|
|
55
|
-
onChange: (value: Date) => Date;
|
|
56
|
-
onTouched: () => void;
|
|
57
|
-
private getDateTimePickerOptions;
|
|
58
|
-
private stringifyDate;
|
|
59
|
-
private getDialogPosition;
|
|
60
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaDateTimePickerComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaDateTimePickerComponent, "cauca-date-time-picker", never, { "subscriptSizing": { "alias": "subscriptSizing"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "label": { "alias": "label"; "required": false; }; "translateLabel": { "alias": "translateLabel"; "required": false; }; "stepHours": { "alias": "stepHours"; "required": false; }; "stepMinutes": { "alias": "stepMinutes"; "required": false; }; "stepSecondes": { "alias": "stepSecondes"; "required": false; }; "minimumDate": { "alias": "minimumDate"; "required": false; }; "maximumDate": { "alias": "maximumDate"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "showFormat": { "alias": "showFormat"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "showButtonIcons": { "alias": "showButtonIcons"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
declare abstract class BaseButton {
|
|
65
|
-
colorOnHover: InputSignal<string>;
|
|
66
|
-
color: InputSignal<string>;
|
|
67
|
-
icon: InputSignal<string>;
|
|
68
|
-
iconAlignment: InputSignal<'left' | 'right'>;
|
|
69
|
-
isDisabled: InputSignal<boolean>;
|
|
70
|
-
isInProgress: InputSignal<boolean>;
|
|
71
|
-
iconColor: i0.Signal<string>;
|
|
72
|
-
showIcon: i0.Signal<boolean>;
|
|
73
|
-
iconToShow: i0.Signal<string>;
|
|
74
|
-
buttonDisabled: i0.Signal<boolean>;
|
|
75
|
-
buttonClick: OutputEmitterRef<void>;
|
|
76
|
-
isHovered: i0.WritableSignal<boolean>;
|
|
77
|
-
onMouseEnter(): void;
|
|
78
|
-
onMouseLeave(): void;
|
|
79
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseButton, never>;
|
|
80
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButton, never, never, { "colorOnHover": { "alias": "colorOnHover"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconAlignment": { "alias": "iconAlignment"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isInProgress": { "alias": "isInProgress"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
81
|
-
}
|
|
82
|
-
declare abstract class BaseButtonWithLabel extends BaseButton {
|
|
83
|
-
translateLabel: InputSignal<boolean>;
|
|
84
|
-
label: InputSignal<string>;
|
|
85
|
-
small: InputSignal<boolean>;
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseButtonWithLabel, never>;
|
|
87
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButtonWithLabel, never, never, { "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "small": { "alias": "small"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
declare class BasicButtonComponent extends BaseButtonWithLabel {
|
|
91
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BasicButtonComponent, never>;
|
|
92
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicButtonComponent, "cauca-basic-button", never, {}, {}, never, never, true, never>;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
declare class FabButtonComponent extends BaseButtonWithLabel {
|
|
96
|
-
iconColor: i0.Signal<string>;
|
|
97
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FabButtonComponent, never>;
|
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FabButtonComponent, "cauca-fab-button", never, {}, {}, never, never, true, never>;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
declare class FlatButtonComponent extends BaseButtonWithLabel {
|
|
102
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlatButtonComponent, never>;
|
|
103
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlatButtonComponent, "cauca-flat-button", never, {}, {}, never, never, true, never>;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
declare class IconButtonComponent extends BaseButton {
|
|
107
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonComponent, never>;
|
|
108
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconButtonComponent, "cauca-icon-button", never, {}, {}, never, never, true, never>;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
declare class LinkButtonComponent {
|
|
112
|
-
private readonly clipboard;
|
|
113
|
-
readonly segments: i0.InputSignal<string[]>;
|
|
114
|
-
constructor(clipboard: Clipboard);
|
|
115
|
-
copyLink(): void;
|
|
116
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinkButtonComponent, never>;
|
|
117
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "cauca-link-button", never, { "segments": { "alias": "segments"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
declare class MenuItemComponent extends BaseButtonWithLabel {
|
|
121
|
-
translateLabel: InputSignal<boolean>;
|
|
122
|
-
trigger: InputSignal<any>;
|
|
123
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemComponent, never>;
|
|
124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "cauca-menu-item", never, { "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "trigger": { "alias": "trigger"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
declare class RaisedButtonComponent extends BaseButtonWithLabel {
|
|
128
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RaisedButtonComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RaisedButtonComponent, "cauca-raised-button", never, {}, {}, never, never, true, never>;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
declare class RefreshButtonComponent {
|
|
133
|
-
inProgress: boolean;
|
|
134
|
-
refreshEvent: EventEmitter<void>;
|
|
135
|
-
refresh(): void;
|
|
136
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RefreshButtonComponent, never>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RefreshButtonComponent, "cauca-refresh-button", never, { "inProgress": { "alias": "inProgress"; "required": false; }; }, { "refreshEvent": "refreshEvent"; }, never, never, true, never>;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
declare class RoundButtonComponent extends BaseButtonWithLabel {
|
|
141
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoundButtonComponent, never>;
|
|
142
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoundButtonComponent, "cauca-round-button", never, {}, {}, never, never, true, never>;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
declare class StrokedButtonComponent extends BaseButtonWithLabel {
|
|
146
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StrokedButtonComponent, never>;
|
|
147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StrokedButtonComponent, "cauca-stroked-button", never, {}, {}, never, never, true, never>;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
declare class ButtonComponent {
|
|
151
|
-
class: i0.InputSignal<string>;
|
|
152
|
-
inProgress: i0.InputSignal<boolean>;
|
|
153
|
-
disable: i0.InputSignal<boolean>;
|
|
154
|
-
label: i0.InputSignal<string>;
|
|
155
|
-
icon: i0.InputSignal<string>;
|
|
156
|
-
color: i0.InputSignal<string>;
|
|
157
|
-
type: i0.InputSignal<"flat" | "basic" | "raised" | "stroked" | "icon" | "fab">;
|
|
158
|
-
buttonClick: i0.OutputEmitterRef<void>;
|
|
159
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
160
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cauca-button", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "inProgress": { "alias": "inProgress"; "required": false; "isSignal": true; }; "disable": { "alias": "disable"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
declare class DialogService {
|
|
164
|
-
private readonly defaultConfirmationOptions;
|
|
165
|
-
private readonly translate;
|
|
166
|
-
private readonly dialog;
|
|
167
|
-
showDialog(title: string, message: string): Promise<any>;
|
|
168
|
-
showCustomDialog(component: ComponentType<unknown>, args: any, options?: any): Promise<any>;
|
|
169
|
-
askForConfirmation(title: string, message: string, args?: Partial<ConfirmationOptions>, options?: any): Promise<ConfirmationResult>;
|
|
170
|
-
askForDeleteConfirmation(name: string, type: string, translateType?: boolean): Promise<any>;
|
|
171
|
-
showDeletionError(name: string): Promise<any>;
|
|
172
|
-
input(inputOptions: InputOptions, optionsDialog?: any, value?: string, suffix?: string): Promise<{
|
|
173
|
-
result: ConfirmationResult;
|
|
174
|
-
value: string;
|
|
175
|
-
}>;
|
|
176
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
177
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
178
|
-
}
|
|
179
|
-
interface ConfirmationOptions {
|
|
180
|
-
noText: string;
|
|
181
|
-
noColor: string;
|
|
182
|
-
noType?: 'basic' | 'raised' | 'stroked' | 'flat' | 'icon';
|
|
183
|
-
yesText: string;
|
|
184
|
-
yesColor: string;
|
|
185
|
-
yesType?: 'basic' | 'raised' | 'stroked' | 'flat' | 'icon';
|
|
186
|
-
messageArgs: any;
|
|
187
|
-
titleArgs: any;
|
|
188
|
-
}
|
|
189
|
-
declare enum ConfirmationResult {
|
|
190
|
-
Cancel = 0,
|
|
191
|
-
Yes = 1,
|
|
192
|
-
No = 2
|
|
193
|
-
}
|
|
194
|
-
interface InputOptions {
|
|
195
|
-
titleLabel: string;
|
|
196
|
-
validateButtonLabel: string;
|
|
197
|
-
cancelButtonLabel: string;
|
|
198
|
-
inputLabel: string;
|
|
199
|
-
useTextArea?: boolean;
|
|
200
|
-
validators?: ValidatorFn | ValidatorFn[];
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
declare class BreadcrumbLocation {
|
|
204
|
-
link?: string;
|
|
205
|
-
title: string;
|
|
206
|
-
translate?: boolean;
|
|
207
|
-
action?: () => void;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
declare class BreadcrumbService {
|
|
211
|
-
showBreadcrumb: Signal<boolean>;
|
|
212
|
-
location: WritableSignal<BreadcrumbLocation[]>;
|
|
213
|
-
breadcrumb: WritableSignal<string>;
|
|
214
|
-
translateBreadcrumb: WritableSignal<boolean>;
|
|
215
|
-
private readonly isShown;
|
|
216
|
-
show(breadcrumb: string, location?: BreadcrumbLocation[], translateBreadcrumb?: boolean): void;
|
|
217
|
-
hide(): void;
|
|
218
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
|
|
219
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
declare class LoadingStateService {
|
|
223
|
-
showLoadingIndicator: Signal<boolean>;
|
|
224
|
-
showError: Signal<boolean>;
|
|
225
|
-
private readonly isLoading;
|
|
226
|
-
private readonly hasError;
|
|
227
|
-
showLoading(): void;
|
|
228
|
-
hideLoading(): void;
|
|
229
|
-
withLoadingIndicator<T>(observable$: Observable<T>): Observable<T>;
|
|
230
|
-
setAsInError(): void;
|
|
231
|
-
private startLoading;
|
|
232
|
-
private handleError;
|
|
233
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingStateService, never>;
|
|
234
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingStateService>;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
declare class LoadingErrorComponent {
|
|
238
|
-
retryRequest: EventEmitter<void>;
|
|
239
|
-
readonly loadingState: LoadingStateService;
|
|
240
|
-
showError: i0.Signal<boolean>;
|
|
241
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingErrorComponent, never>;
|
|
242
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingErrorComponent, "cauca-loading-error", never, {}, { "retryRequest": "retryRequest"; }, never, never, true, never>;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
declare class LoadingSpinnerIndicatorComponent {
|
|
246
|
-
diameter: InputSignal<number>;
|
|
247
|
-
loadingState: LoadingStateService;
|
|
248
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerIndicatorComponent, never>;
|
|
249
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingSpinnerIndicatorComponent, "cauca-loading-spinner-indicator", never, { "diameter": { "alias": "diameter"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
declare class SnackBarComponent {
|
|
253
|
-
icon: InputSignal<string>;
|
|
254
|
-
caption: InputSignal<string>;
|
|
255
|
-
showCloseButton: InputSignal<boolean>;
|
|
256
|
-
type: InputSignal<'info' | 'success' | 'warning' | 'error'>;
|
|
257
|
-
variant: InputSignal<'filled' | 'outlined' | 'standard'>;
|
|
258
|
-
appearanceClasses: Signal<("error" | "info" | "success" | "warning" | "filled" | "outlined" | "standard")[]>;
|
|
259
|
-
buttonSpecificColor: InputSignal<string>;
|
|
260
|
-
buttonIcon: InputSignal<string>;
|
|
261
|
-
inProgress: InputSignal<boolean>;
|
|
262
|
-
showButton: InputSignal<boolean>;
|
|
263
|
-
buttonLabel: InputSignal<string>;
|
|
264
|
-
buttonColor: Signal<string>;
|
|
265
|
-
closeClick: EventEmitter<void>;
|
|
266
|
-
buttonClick: EventEmitter<void>;
|
|
267
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SnackBarComponent, never>;
|
|
268
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SnackBarComponent, "cauca-snackbar", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "buttonSpecificColor": { "alias": "buttonSpecificColor"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "inProgress": { "alias": "inProgress"; "required": false; "isSignal": true; }; "showButton": { "alias": "showButton"; "required": false; "isSignal": true; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; "isSignal": true; }; }, { "closeClick": "closeClick"; "buttonClick": "buttonClick"; }, never, ["*"], true, never>;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
declare class BadgeComponent {
|
|
272
|
-
icon: i0.InputSignal<string>;
|
|
273
|
-
label: i0.InputSignal<string>;
|
|
274
|
-
color: i0.InputSignal<string>;
|
|
275
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
276
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cauca-badge", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
declare class IconComponent {
|
|
280
|
-
isFontAwesome: boolean;
|
|
281
|
-
faIcon: string[];
|
|
282
|
-
image: string;
|
|
283
|
-
set icon(value: string);
|
|
284
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
285
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cauca-icon", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, true, never>;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
declare class ListPaginatorComponent {
|
|
289
|
-
itemsCount: InputSignal<number>;
|
|
290
|
-
showTotalPage: InputSignal<number>;
|
|
291
|
-
pageSize: InputSignal<number>;
|
|
292
|
-
pageCount: Signal<number>;
|
|
293
|
-
pages: Signal<number[]>;
|
|
294
|
-
currentPage: WritableSignal<number>;
|
|
295
|
-
previousDisabled: Signal<boolean>;
|
|
296
|
-
nextDisabled: Signal<boolean>;
|
|
297
|
-
pagesToShow: Signal<number[]>;
|
|
298
|
-
pageChange: EventEmitter<number>;
|
|
299
|
-
get pageSplitter(): string;
|
|
300
|
-
get pageSplitterValue(): number;
|
|
301
|
-
changePage(page: number): void;
|
|
302
|
-
moveToFirst(): void;
|
|
303
|
-
tryMoveToFirst(): void;
|
|
304
|
-
tryMoveToLast(): void;
|
|
305
|
-
tryMoveToPrevious(): void;
|
|
306
|
-
tryMoveToNext(): void;
|
|
307
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ListPaginatorComponent, never>;
|
|
308
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListPaginatorComponent, "cauca-list-paginator", never, { "itemsCount": { "alias": "itemsCount"; "required": false; "isSignal": true; }; "showTotalPage": { "alias": "showTotalPage"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
declare class PasswordValidation {
|
|
312
|
-
hasMinimumCharacters: boolean;
|
|
313
|
-
hasMinimumNumeric: boolean;
|
|
314
|
-
hasLowerAndUppercase: boolean;
|
|
315
|
-
hasSpecialCharacter: boolean;
|
|
316
|
-
hasIdenticalPassword: boolean;
|
|
317
|
-
constructor(hasMinimumCharacters?: boolean, hasMinimumNumeric?: boolean, hasLowerAndUppercase?: boolean, hasSpecialCharacter?: boolean, hasIdenticalPassword?: boolean);
|
|
318
|
-
isValid(): boolean;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
declare class PasswordCriteriaViewerComponent {
|
|
322
|
-
passwordValidation: InputSignal<PasswordValidation>;
|
|
323
|
-
disabled: InputSignal<boolean>;
|
|
324
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordCriteriaViewerComponent, never>;
|
|
325
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordCriteriaViewerComponent, "cauca-password-criteria-viewer", never, { "passwordValidation": { "alias": "passwordValidation"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
declare class PasswordSelectionComponent implements ControlValueAccessor {
|
|
329
|
-
form: UntypedFormGroup;
|
|
330
|
-
passwordValidation: PasswordValidation;
|
|
331
|
-
disabled: i0.WritableSignal<boolean>;
|
|
332
|
-
direction: 'row' | 'column';
|
|
333
|
-
formWidth: string;
|
|
334
|
-
showCriteriaOnlyWhenPasswordHasValue: i0.InputSignal<boolean>;
|
|
335
|
-
alwaysShowCriteria: i0.InputSignal<boolean>;
|
|
336
|
-
showCriteria: i0.WritableSignal<boolean>;
|
|
337
|
-
passwordLabel: i0.InputSignal<string>;
|
|
338
|
-
passwordConfirmationLabel: i0.InputSignal<string>;
|
|
339
|
-
hasValueChange: i0.OutputEmitterRef<boolean>;
|
|
340
|
-
private lastPasswordValidationSent;
|
|
341
|
-
constructor(formBuilder: UntypedFormBuilder);
|
|
342
|
-
writeValue(value: string): void;
|
|
343
|
-
registerOnChange(fn: any): void;
|
|
344
|
-
registerOnTouched(fn: any): void;
|
|
345
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
346
|
-
onChange: (value: string) => string;
|
|
347
|
-
onTouched: () => void;
|
|
348
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordSelectionComponent, never>;
|
|
349
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordSelectionComponent, "cauca-password-selection", never, { "direction": { "alias": "direction"; "required": false; }; "formWidth": { "alias": "formWidth"; "required": false; }; "showCriteriaOnlyWhenPasswordHasValue": { "alias": "showCriteriaOnlyWhenPasswordHasValue"; "required": false; "isSignal": true; }; "alwaysShowCriteria": { "alias": "alwaysShowCriteria"; "required": false; "isSignal": true; }; "passwordLabel": { "alias": "passwordLabel"; "required": false; "isSignal": true; }; "passwordConfirmationLabel": { "alias": "passwordConfirmationLabel"; "required": false; "isSignal": true; }; }, { "hasValueChange": "hasValueChange"; }, never, ["*"], true, never>;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
declare class PasswordInputComponent implements ControlValueAccessor {
|
|
353
|
-
autocomplete: InputSignal<string>;
|
|
354
|
-
translateLabel: InputSignal<boolean>;
|
|
355
|
-
label: InputSignal<string>;
|
|
356
|
-
translatePlaceholder: InputSignal<boolean>;
|
|
357
|
-
placeholder: InputSignal<string>;
|
|
358
|
-
required: InputSignal<boolean>;
|
|
359
|
-
enterKeyDown: i0.OutputEmitterRef<void>;
|
|
360
|
-
passwordControl: FormControl;
|
|
361
|
-
disabled: WritableSignal<boolean>;
|
|
362
|
-
showPassword: WritableSignal<boolean>;
|
|
363
|
-
inputType: i0.Signal<"password" | "text">;
|
|
364
|
-
constructor();
|
|
365
|
-
writeValue(value: string): void;
|
|
366
|
-
registerOnChange(fn: any): void;
|
|
367
|
-
registerOnTouched(fn: any): void;
|
|
368
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
369
|
-
onChange: (value: string) => string;
|
|
370
|
-
onTouched: () => void;
|
|
371
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordInputComponent, never>;
|
|
372
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordInputComponent, "cauca-password-input", never, { "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "translatePlaceholder": { "alias": "translatePlaceholder"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "enterKeyDown": "enterKeyDown"; }, never, never, true, never>;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
declare class DateRangePickerComponent implements OnInit {
|
|
376
|
-
range: i0.ModelSignal<DateRange>;
|
|
377
|
-
readonly form: FormGroup<{
|
|
378
|
-
from: FormControl<any>;
|
|
379
|
-
to: FormControl<any>;
|
|
380
|
-
}>;
|
|
381
|
-
constructor();
|
|
382
|
-
ngOnInit(): void;
|
|
383
|
-
clear(): void;
|
|
384
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
385
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "cauca-date-range-picker", never, { "range": { "alias": "range"; "required": false; "isSignal": true; }; }, { "range": "rangeChange"; }, never, never, true, never>;
|
|
386
|
-
}
|
|
387
|
-
interface DateRange {
|
|
388
|
-
from: Date | null;
|
|
389
|
-
to: Date | null;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
declare class DropdownChipAutocompleteComponent implements ControlValueAccessor, MatFormFieldControl<any[]>, OnDestroy, DoCheck {
|
|
393
|
-
ngControl: NgControl;
|
|
394
|
-
private readonly parentForm;
|
|
395
|
-
private readonly parentFormGroup;
|
|
396
|
-
private readonly elementRef;
|
|
397
|
-
id: string;
|
|
398
|
-
matAutocomplete: MatAutocomplete;
|
|
399
|
-
matChipInput: ElementRef<HTMLInputElement>;
|
|
400
|
-
matAutocompletePanel: MatAutocompleteTrigger;
|
|
401
|
-
clearAll: EventEmitter<void>;
|
|
402
|
-
listAutoComplete: object[];
|
|
403
|
-
keyValue: string;
|
|
404
|
-
displayValue: string;
|
|
405
|
-
allowRemove: boolean;
|
|
406
|
-
ariaDescribedBy: string;
|
|
407
|
-
canRemoveAll: i0.InputSignal<boolean>;
|
|
408
|
-
hasOptionTemplate: i0.InputSignal<boolean>;
|
|
409
|
-
optionTemplate: TemplateRef<any>;
|
|
410
|
-
stateChanges: Subject<void>;
|
|
411
|
-
static nextId: number;
|
|
412
|
-
focused: boolean;
|
|
413
|
-
touched: boolean;
|
|
414
|
-
errorState: boolean;
|
|
415
|
-
controlType: string;
|
|
416
|
-
separatorKeysCodes: any;
|
|
417
|
-
filteredListAutoComplete: Observable<object[]>;
|
|
418
|
-
private _required;
|
|
419
|
-
private _disabled;
|
|
420
|
-
private _placeholder;
|
|
421
|
-
private _searchValue;
|
|
422
|
-
private selectedValues;
|
|
423
|
-
get searchValue(): string;
|
|
424
|
-
set searchValue(newValue: string);
|
|
425
|
-
get shouldLabelFloat(): boolean;
|
|
426
|
-
get value(): any[];
|
|
427
|
-
set value(values: any[]);
|
|
428
|
-
get required(): boolean;
|
|
429
|
-
set required(req: BooleanInput);
|
|
430
|
-
get disabled(): boolean;
|
|
431
|
-
set disabled(value: BooleanInput);
|
|
432
|
-
get empty(): boolean;
|
|
433
|
-
get placeholder(): string;
|
|
434
|
-
set placeholder(plh: string);
|
|
435
|
-
constructor(ngControl: NgControl, parentForm: NgForm, parentFormGroup: FormGroupDirective, elementRef: ElementRef<HTMLElement>);
|
|
436
|
-
ngDoCheck(): void;
|
|
437
|
-
ngOnDestroy(): void;
|
|
438
|
-
onChange: (_: any) => void;
|
|
439
|
-
onTouched: () => void;
|
|
440
|
-
onFocusIn(): void;
|
|
441
|
-
markAsClean(): void;
|
|
442
|
-
onFocusOut(event: FocusEvent): void;
|
|
443
|
-
setDisabledState(isDisabled: boolean): void;
|
|
444
|
-
setDescribedByIds(ids: string[]): void;
|
|
445
|
-
onContainerClick(event: MouseEvent): void;
|
|
446
|
-
writeValue(value: string[] | []): void;
|
|
447
|
-
registerOnChange(fn: any): void;
|
|
448
|
-
registerOnTouched(fn: any): void;
|
|
449
|
-
selectItemOnAutocomplete(e: MatAutocompleteSelectedEvent): void;
|
|
450
|
-
removeSelectedItem(key: any): void;
|
|
451
|
-
getValueDisplay(key: any): string;
|
|
452
|
-
onClearAll(): void;
|
|
453
|
-
private updateErrorState;
|
|
454
|
-
private filterSelectedItem;
|
|
455
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownChipAutocompleteComponent, [{ optional: true; self: true; }, { optional: true; }, { optional: true; }, null]>;
|
|
456
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownChipAutocompleteComponent, "cauca-dropdown-chip-autocomplete", never, { "listAutoComplete": { "alias": "listAutoComplete"; "required": false; }; "keyValue": { "alias": "keyValue"; "required": false; }; "displayValue": { "alias": "displayValue"; "required": false; }; "allowRemove": { "alias": "allowRemove"; "required": false; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; }; "canRemoveAll": { "alias": "canRemoveAll"; "required": false; "isSignal": true; }; "hasOptionTemplate": { "alias": "hasOptionTemplate"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "clearAll": "clearAll"; }, ["optionTemplate"], never, true, never>;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
declare class ColorPickerComponent implements ControlValueAccessor, MatFormFieldControl<string>, OnDestroy {
|
|
460
|
-
private elementRef;
|
|
461
|
-
ngControl: NgControl;
|
|
462
|
-
stateChanges: Subject<void>;
|
|
463
|
-
static nextId: number;
|
|
464
|
-
id: string;
|
|
465
|
-
placeholder: string;
|
|
466
|
-
focused: boolean;
|
|
467
|
-
touched: boolean;
|
|
468
|
-
required: boolean;
|
|
469
|
-
disabled: boolean;
|
|
470
|
-
errorState: boolean;
|
|
471
|
-
controlType?: string;
|
|
472
|
-
autofilled?: boolean;
|
|
473
|
-
userAriaDescribedBy?: string;
|
|
474
|
-
valueChanged: EventEmitter<string>;
|
|
475
|
-
private _value;
|
|
476
|
-
get shouldLabelFloat(): boolean;
|
|
477
|
-
get empty(): boolean;
|
|
478
|
-
get value(): string | null;
|
|
479
|
-
set value(newValue: string | null);
|
|
480
|
-
constructor(elementRef: ElementRef<HTMLElement>, ngControl: NgControl);
|
|
481
|
-
onFocusIn(_: FocusEvent): void;
|
|
482
|
-
onFocusOut(event: FocusEvent): void;
|
|
483
|
-
ngOnDestroy(): void;
|
|
484
|
-
setDescribedByIds(_: string[]): void;
|
|
485
|
-
onContainerClick(_: MouseEvent): void;
|
|
486
|
-
writeValue(value: string): void;
|
|
487
|
-
registerOnChange(fn: any): void;
|
|
488
|
-
registerOnTouched(fn: any): void;
|
|
489
|
-
onChange: (_: any) => void;
|
|
490
|
-
onTouched: () => void;
|
|
491
|
-
onChangeColor(color: string): void;
|
|
492
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, [null, { optional: true; self: true; }]>;
|
|
493
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "cauca-color-picker", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
interface Option {
|
|
497
|
-
id: string | null;
|
|
498
|
-
name: string;
|
|
499
|
-
}
|
|
500
|
-
declare class SelectWithSearchComponent {
|
|
501
|
-
label: string;
|
|
502
|
-
selectFirstOptionByDefault: boolean;
|
|
503
|
-
optionFilterControl: FormControl<string>;
|
|
504
|
-
singleSelect: MatSelect;
|
|
505
|
-
isDisabled: i0.InputSignal<boolean>;
|
|
506
|
-
hasOptions: i0.WritableSignal<boolean>;
|
|
507
|
-
disableControl: i0.Signal<boolean>;
|
|
508
|
-
allowMultiSelection: i0.InputSignal<boolean>;
|
|
509
|
-
showClearOption: i0.InputSignal<boolean>;
|
|
510
|
-
enableSearch: i0.InputSignal<boolean>;
|
|
511
|
-
filteredOptions: i0.ResourceRef<Option[]>;
|
|
512
|
-
valueChanged: EventEmitter<any>;
|
|
513
|
-
private selectedOptionId;
|
|
514
|
-
private readonly allOptions;
|
|
515
|
-
private readonly filterText;
|
|
516
|
-
set options(newOptions: Option[]);
|
|
517
|
-
get options(): Option[];
|
|
518
|
-
set value(newValue: string | null);
|
|
519
|
-
get value(): string | null;
|
|
520
|
-
private setInitialSelectedOption;
|
|
521
|
-
private selectFirstOption;
|
|
522
|
-
private computeFilteredOptions;
|
|
523
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectWithSearchComponent, never>;
|
|
524
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectWithSearchComponent, "cauca-select-with-search", never, { "label": { "alias": "label"; "required": true; }; "selectFirstOptionByDefault": { "alias": "selectFirstOptionByDefault"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "allowMultiSelection": { "alias": "allowMultiSelection"; "required": false; "isSignal": true; }; "showClearOption": { "alias": "showClearOption"; "required": false; "isSignal": true; }; "enableSearch": { "alias": "enableSearch"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChanged": "valueChanged"; }, never, ["*"], true, never>;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
declare class GroupContainerComponent {
|
|
528
|
-
caption: i0.InputSignal<string>;
|
|
529
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GroupContainerComponent, never>;
|
|
530
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupContainerComponent, "cauca-group-container", never, { "caption": { "alias": "caption"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
declare class MainSectionComponent {
|
|
534
|
-
title: InputSignal<string>;
|
|
535
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MainSectionComponent, never>;
|
|
536
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainSectionComponent, "cauca-main-section", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
declare class SectionColumnComponent {
|
|
540
|
-
showBigGap: i0.InputSignal<boolean>;
|
|
541
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SectionColumnComponent, never>;
|
|
542
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SectionColumnComponent, "cauca-section-column", never, { "showBigGap": { "alias": "showBigGap"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
declare class SectionFieldComponent {
|
|
546
|
-
autoTranslateLabel: i0.InputSignal<boolean>;
|
|
547
|
-
label: i0.InputSignal<string>;
|
|
548
|
-
value: i0.InputSignal<unknown>;
|
|
549
|
-
values: i0.InputSignal<unknown[]>;
|
|
550
|
-
fieldName: i0.InputSignal<string>;
|
|
551
|
-
useMultipleValues: i0.Signal<boolean>;
|
|
552
|
-
showLink: i0.InputSignal<boolean>;
|
|
553
|
-
linkClick: i0.OutputEmitterRef<void>;
|
|
554
|
-
splitEqually: i0.InputSignal<boolean>;
|
|
555
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SectionFieldComponent, never>;
|
|
556
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SectionFieldComponent, "cauca-section-field", never, { "autoTranslateLabel": { "alias": "autoTranslateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "fieldName": { "alias": "fieldName"; "required": false; "isSignal": true; }; "showLink": { "alias": "showLink"; "required": false; "isSignal": true; }; "splitEqually": { "alias": "splitEqually"; "required": false; "isSignal": true; }; }, { "linkClick": "linkClick"; }, never, never, true, never>;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
declare class PageTitleComponent {
|
|
560
|
-
caption: i0.InputSignal<string>;
|
|
561
|
-
showBreadcrumb: i0.InputSignal<boolean>;
|
|
562
|
-
location: i0.InputSignal<BreadcrumbLocation[]>;
|
|
563
|
-
breadcrumb: i0.InputSignal<string>;
|
|
564
|
-
baseCrumb: i0.InputSignal<string>;
|
|
565
|
-
translateBreadcrumb: i0.InputSignal<boolean>;
|
|
566
|
-
displayBreadcrumb: i0.Signal<boolean>;
|
|
567
|
-
breadcrumbLocation: i0.Signal<BreadcrumbLocation[]>;
|
|
568
|
-
currentBreadcrumb: i0.Signal<string>;
|
|
569
|
-
mustTranslateBreadcrumb: i0.Signal<boolean>;
|
|
570
|
-
private readonly breadcrumbService;
|
|
571
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PageTitleComponent, never>;
|
|
572
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageTitleComponent, "cauca-page-title", never, { "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "showBreadcrumb": { "alias": "showBreadcrumb"; "required": false; "isSignal": true; }; "location": { "alias": "location"; "required": false; "isSignal": true; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; "baseCrumb": { "alias": "baseCrumb"; "required": false; "isSignal": true; }; "translateBreadcrumb": { "alias": "translateBreadcrumb"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
declare class ExpandablePanelComponent {
|
|
576
|
-
isCollapsed: ModelSignal<boolean>;
|
|
577
|
-
caption: InputSignal<string>;
|
|
578
|
-
subCaption: InputSignal<string>;
|
|
579
|
-
changeState(): void;
|
|
580
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandablePanelComponent, never>;
|
|
581
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandablePanelComponent, "cauca-expandable-panel", never, { "isCollapsed": { "alias": "isCollapsed"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "subCaption": { "alias": "subCaption"; "required": false; "isSignal": true; }; }, { "isCollapsed": "isCollapsedChange"; }, never, ["*"], true, never>;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
declare class MenuExpandablePanelComponent {
|
|
585
|
-
caption: InputSignal<string>;
|
|
586
|
-
isSubItem: InputSignal<boolean>;
|
|
587
|
-
subCaption: InputSignal<string>;
|
|
588
|
-
menuIcon: InputSignal<string>;
|
|
589
|
-
showExpansionIcon: InputSignal<boolean>;
|
|
590
|
-
addTopBorderRadius: InputSignal<boolean>;
|
|
591
|
-
bottomBorder: InputSignal<boolean>;
|
|
592
|
-
addBottomBorderRadius: InputSignal<boolean>;
|
|
593
|
-
route: InputSignal<string[]>;
|
|
594
|
-
items: InputSignal<{
|
|
595
|
-
icon: string;
|
|
596
|
-
title: string;
|
|
597
|
-
route?: string[];
|
|
598
|
-
action?: () => void;
|
|
599
|
-
}[]>;
|
|
600
|
-
opened: WritableSignal<boolean>;
|
|
601
|
-
private readonly router;
|
|
602
|
-
get topLeftRadius(): string;
|
|
603
|
-
get topRightRadius(): string;
|
|
604
|
-
get bottomLeftRadius(): string;
|
|
605
|
-
get bottomRightRadius(): string;
|
|
606
|
-
get bottomBorderClass(): boolean;
|
|
607
|
-
handleClick(): void;
|
|
608
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuExpandablePanelComponent, never>;
|
|
609
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuExpandablePanelComponent, "cauca-menu-expandable-panel", never, { "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "isSubItem": { "alias": "isSubItem"; "required": false; "isSignal": true; }; "subCaption": { "alias": "subCaption"; "required": false; "isSignal": true; }; "menuIcon": { "alias": "menuIcon"; "required": false; "isSignal": true; }; "showExpansionIcon": { "alias": "showExpansionIcon"; "required": false; "isSignal": true; }; "addTopBorderRadius": { "alias": "addTopBorderRadius"; "required": false; "isSignal": true; }; "bottomBorder": { "alias": "bottomBorder"; "required": false; "isSignal": true; }; "addBottomBorderRadius": { "alias": "addBottomBorderRadius"; "required": false; "isSignal": true; }; "route": { "alias": "route"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
declare class MenuExpandablePanelItemComponent {
|
|
613
|
-
icon: InputSignal<string>;
|
|
614
|
-
caption: InputSignal<string>;
|
|
615
|
-
route: InputSignal<string[]>;
|
|
616
|
-
isSubItem: InputSignal<boolean>;
|
|
617
|
-
action: InputSignal<() => void | null>;
|
|
618
|
-
private readonly router;
|
|
619
|
-
openRoute(): void;
|
|
620
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuExpandablePanelItemComponent, never>;
|
|
621
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuExpandablePanelItemComponent, "cauca-menu-expandable-panel-item", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "route": { "alias": "route"; "required": false; "isSignal": true; }; "isSubItem": { "alias": "isSubItem"; "required": false; "isSignal": true; }; "action": { "alias": "action"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
declare class SavingConfirmedBoxComponent {
|
|
625
|
-
show: i0.ModelSignal<boolean>;
|
|
626
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SavingConfirmedBoxComponent, never>;
|
|
627
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SavingConfirmedBoxComponent, "cauca-saving-confirmed-box", never, { "show": { "alias": "show"; "required": false; "isSignal": true; }; }, { "show": "showChange"; }, never, never, true, never>;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
declare class SavingErrorBoxComponent {
|
|
631
|
-
show: i0.ModelSignal<boolean>;
|
|
632
|
-
specificError: i0.InputSignal<string>;
|
|
633
|
-
error: i0.Signal<string>;
|
|
634
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SavingErrorBoxComponent, never>;
|
|
635
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SavingErrorBoxComponent, "cauca-saving-error-box", never, { "show": { "alias": "show"; "required": false; "isSignal": true; }; "specificError": { "alias": "specificError"; "required": false; "isSignal": true; }; }, { "show": "showChange"; }, never, never, true, never>;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
declare class AutoTrimAndLowerDirective {
|
|
639
|
-
private readonly el;
|
|
640
|
-
constructor(el: ElementRef);
|
|
641
|
-
onBlur(_: KeyboardEvent): void;
|
|
642
|
-
private trimText;
|
|
643
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutoTrimAndLowerDirective, never>;
|
|
644
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoTrimAndLowerDirective, "[appAutoTrimAndLower]", never, {}, {}, never, never, true, never>;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
declare class HasErrorRootDirective {
|
|
648
|
-
private readonly _formControl$;
|
|
649
|
-
set formControl(formControlDirective: FormControlDirective);
|
|
650
|
-
set formControlName(formControlName: FormControlName);
|
|
651
|
-
get formControl$(): rxjs.Observable<FormControl<any>>;
|
|
652
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HasErrorRootDirective, never>;
|
|
653
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HasErrorRootDirective, "mat-form-field", never, {}, {}, ["formControl", "formControlName"], never, false, never>;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
interface HasErrorContext {
|
|
657
|
-
$implicit: any;
|
|
658
|
-
}
|
|
659
|
-
declare class HasErrorDirective implements AfterContentInit, OnDestroy {
|
|
660
|
-
private readonly hasErrorRoot;
|
|
661
|
-
private readonly templateRef;
|
|
662
|
-
private readonly vcr;
|
|
663
|
-
private readonly errorName$;
|
|
664
|
-
private readonly ctrl$;
|
|
665
|
-
private readonly status$;
|
|
666
|
-
private readonly error$;
|
|
667
|
-
private view?;
|
|
668
|
-
private subscription?;
|
|
669
|
-
set hasError(errorName: string);
|
|
670
|
-
constructor(hasErrorRoot: HasErrorRootDirective, templateRef: TemplateRef<HasErrorContext>, vcr: ViewContainerRef);
|
|
671
|
-
static ngTemplateContextGuard(_dir: HasErrorDirective, ctx: unknown): ctx is HasErrorContext;
|
|
672
|
-
ngAfterContentInit(): void;
|
|
673
|
-
ngOnDestroy(): void;
|
|
674
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HasErrorDirective, never>;
|
|
675
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HasErrorDirective, "[hasError]", never, { "hasError": { "alias": "hasError"; "required": false; }; }, {}, never, never, false, never>;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
declare class FormErrorModule {
|
|
679
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorModule, never>;
|
|
680
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormErrorModule, [typeof HasErrorDirective, typeof HasErrorRootDirective], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule], [typeof HasErrorDirective, typeof HasErrorRootDirective]>;
|
|
681
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FormErrorModule>;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
declare function provideCaucaMaterial(): (Provider | EnvironmentProviders)[];
|
|
685
|
-
|
|
686
|
-
declare class CaucaInputFileComponent implements OnInit {
|
|
687
|
-
file: ElementRef;
|
|
688
|
-
readend: EventEmitter<any>;
|
|
689
|
-
accept: string;
|
|
690
|
-
multiple: boolean;
|
|
691
|
-
icon: string;
|
|
692
|
-
text: string;
|
|
693
|
-
private labels;
|
|
694
|
-
private readonly translateService;
|
|
695
|
-
private readonly dialog;
|
|
696
|
-
ngOnInit(): void;
|
|
697
|
-
onSelectFile(e: any): void;
|
|
698
|
-
openDialog(event: any): void;
|
|
699
|
-
private onError;
|
|
700
|
-
private onReadEnd;
|
|
701
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaInputFileComponent, never>;
|
|
702
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaInputFileComponent, "cauca-input-file", never, { "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "readend": "readend"; }, never, never, true, never>;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
declare class CaucaInputMultipleLangueComponent implements OnInit {
|
|
706
|
-
value: string[];
|
|
707
|
-
config: Configuration;
|
|
708
|
-
forms: UntypedFormControl[];
|
|
709
|
-
labels: string[];
|
|
710
|
-
selectedIndex: number;
|
|
711
|
-
private readonly translate;
|
|
712
|
-
constructor();
|
|
713
|
-
ngOnInit(): void;
|
|
714
|
-
onTagChanged(tabIndex: number): void;
|
|
715
|
-
getErrorMessage(index: any): string;
|
|
716
|
-
private initializeForms;
|
|
717
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaInputMultipleLangueComponent, never>;
|
|
718
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaInputMultipleLangueComponent, "cauca-input-multiple-langue", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
declare class SimpleDialogData {
|
|
722
|
-
title: string;
|
|
723
|
-
message: string;
|
|
724
|
-
buttons: string[];
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
declare class CaucaSimpleDialogComponent {
|
|
728
|
-
readonly data: SimpleDialogData;
|
|
729
|
-
private readonly dialogRef;
|
|
730
|
-
onClick(buttonIndex: number): void;
|
|
731
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaSimpleDialogComponent, never>;
|
|
732
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaSimpleDialogComponent, "cauca-simple-dialog", never, {}, {}, never, never, true, never>;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
declare class CaucaSlideshowComponent implements OnInit {
|
|
736
|
-
container: ElementRef;
|
|
737
|
-
height: string;
|
|
738
|
-
autoPlay: boolean;
|
|
739
|
-
states: any[];
|
|
740
|
-
selectedIndex: number;
|
|
741
|
-
private timer;
|
|
742
|
-
private items;
|
|
743
|
-
set images(list: string[]);
|
|
744
|
-
get images(): string[];
|
|
745
|
-
ngOnInit(): void;
|
|
746
|
-
getState(index: number): string;
|
|
747
|
-
restart(): void;
|
|
748
|
-
next(): void;
|
|
749
|
-
private changed;
|
|
750
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaSlideshowComponent, never>;
|
|
751
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaSlideshowComponent, "cauca-slideshow", never, { "height": { "alias": "height"; "required": false; }; "autoPlay": { "alias": "autoPlay"; "required": false; }; "images": { "alias": "images"; "required": false; }; }, {}, never, never, true, never>;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, BreadcrumbService, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent, provideCaucaMaterial };
|
|
755
|
-
export type { ConfirmationOptions, DateRange, HasErrorContext, InputOptions, Option };
|