@cauca-911/material 20.2.2 → 20.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -200,6 +200,13 @@ interface InputOptions {
|
|
|
200
200
|
validators?: ValidatorFn | ValidatorFn[];
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
declare class BreadcrumbLocation {
|
|
204
|
+
link?: string;
|
|
205
|
+
title: string;
|
|
206
|
+
translate?: boolean;
|
|
207
|
+
action?: () => void;
|
|
208
|
+
}
|
|
209
|
+
|
|
203
210
|
declare class LoadingStateService {
|
|
204
211
|
showLoadingIndicator: Signal<boolean>;
|
|
205
212
|
showError: Signal<boolean>;
|
|
@@ -208,6 +215,7 @@ declare class LoadingStateService {
|
|
|
208
215
|
showLoading(): void;
|
|
209
216
|
hideLoading(): void;
|
|
210
217
|
withLoadingIndicator<T>(observable$: Observable<T>): Observable<T>;
|
|
218
|
+
setAsInError(): void;
|
|
211
219
|
private startLoading;
|
|
212
220
|
private handleError;
|
|
213
221
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingStateService, never>;
|
|
@@ -536,13 +544,6 @@ declare class SectionFieldComponent {
|
|
|
536
544
|
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>;
|
|
537
545
|
}
|
|
538
546
|
|
|
539
|
-
declare class BreadcrumbLocation {
|
|
540
|
-
link?: string;
|
|
541
|
-
title: string;
|
|
542
|
-
translate?: boolean;
|
|
543
|
-
action?: () => void;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
547
|
declare class PageTitleComponent {
|
|
547
548
|
caption: i0.InputSignal<string>;
|
|
548
549
|
showBreadcrumb: i0.InputSignal<boolean>;
|
|
@@ -776,5 +777,5 @@ declare class CaucaSlideshowComponent implements OnInit {
|
|
|
776
777
|
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>;
|
|
777
778
|
}
|
|
778
779
|
|
|
779
|
-
export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaMenuSidebarComponent, CaucaMenuVerticalComponent, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItem, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent };
|
|
780
|
+
export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaMenuSidebarComponent, CaucaMenuVerticalComponent, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItem, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent };
|
|
780
781
|
export type { ConfirmationOptions, DateRange, HasErrorContext, InputOptions, Option };
|