@cauca-911/material 20.2.8 → 20.2.10
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
|
@@ -7,7 +7,6 @@ import { Clipboard } from '@angular/cdk/clipboard';
|
|
|
7
7
|
import { ComponentType } from '@angular/cdk/portal';
|
|
8
8
|
import * as rxjs from 'rxjs';
|
|
9
9
|
import { Observable, Subject } from 'rxjs';
|
|
10
|
-
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
11
10
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
12
11
|
import { MatAutocomplete, MatAutocompleteTrigger, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
13
12
|
import { MatSelect } from '@angular/material/select';
|
|
@@ -208,6 +207,18 @@ declare class BreadcrumbLocation {
|
|
|
208
207
|
action?: () => void;
|
|
209
208
|
}
|
|
210
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
|
+
|
|
211
222
|
declare class LoadingStateService {
|
|
212
223
|
showLoadingIndicator: Signal<boolean>;
|
|
213
224
|
showError: Signal<boolean>;
|
|
@@ -270,7 +281,6 @@ declare class IconComponent {
|
|
|
270
281
|
faIcon: string[];
|
|
271
282
|
image: string;
|
|
272
283
|
set icon(value: string);
|
|
273
|
-
constructor(library: FaIconLibrary);
|
|
274
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
275
285
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cauca-icon", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, true, never>;
|
|
276
286
|
}
|
|
@@ -350,7 +360,7 @@ declare class PasswordInputComponent implements ControlValueAccessor {
|
|
|
350
360
|
passwordControl: FormControl;
|
|
351
361
|
disabled: WritableSignal<boolean>;
|
|
352
362
|
showPassword: WritableSignal<boolean>;
|
|
353
|
-
inputType: i0.Signal<"
|
|
363
|
+
inputType: i0.Signal<"password" | "text">;
|
|
354
364
|
constructor();
|
|
355
365
|
writeValue(value: string): void;
|
|
356
366
|
registerOnChange(fn: any): void;
|
|
@@ -781,5 +791,5 @@ declare class CaucaSlideshowComponent implements OnInit {
|
|
|
781
791
|
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>;
|
|
782
792
|
}
|
|
783
793
|
|
|
784
|
-
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, provideCaucaMaterial };
|
|
794
|
+
export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, BreadcrumbService, 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, provideCaucaMaterial };
|
|
785
795
|
export type { ConfirmationOptions, DateRange, HasErrorContext, InputOptions, Option };
|