sapenlinea-components 0.0.33 → 0.0.35
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
|
@@ -493,7 +493,9 @@ declare class DynamicFormFields implements OnInit, OnDestroy {
|
|
|
493
493
|
onCheckboxChange(event: Event, fieldKey: string, optionIndex: number): void;
|
|
494
494
|
ngOnDestroy(): void;
|
|
495
495
|
onCancel(): void;
|
|
496
|
+
onEnter(event: KeyboardEvent): void;
|
|
496
497
|
onUppercaseInput(event: Event, fieldType: string, key: string): void;
|
|
498
|
+
private focusNextElement;
|
|
497
499
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DynamicFormFields, never>;
|
|
498
500
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicFormFields, "lib-dynamic-form-fields", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
499
501
|
}
|
|
@@ -766,6 +768,7 @@ declare class SideCardDetail implements AfterViewInit, OnDestroy {
|
|
|
766
768
|
isCompact: boolean;
|
|
767
769
|
nowLabel: string;
|
|
768
770
|
agoLabel: string;
|
|
771
|
+
showMessageModal: boolean;
|
|
769
772
|
title: string;
|
|
770
773
|
subtitle: string;
|
|
771
774
|
btnClickIcon: EventEmitter<"back" | "location" | "message">;
|
|
@@ -811,7 +814,7 @@ declare class DevicesCarousel implements AfterViewInit {
|
|
|
811
814
|
agoLabel: string;
|
|
812
815
|
canScrollLeft: boolean;
|
|
813
816
|
canScrollRight: boolean;
|
|
814
|
-
btnClickIcon: EventEmitter<
|
|
817
|
+
btnClickIcon: EventEmitter<DeviceCard>;
|
|
815
818
|
listRef: ElementRef<HTMLElement>;
|
|
816
819
|
onResize(): void;
|
|
817
820
|
onScroll(el: HTMLElement): void;
|
|
@@ -843,6 +846,10 @@ declare class TitleFilters {
|
|
|
843
846
|
selectedTextFilters: _angular_core.WritableSignal<Record<string, string>>;
|
|
844
847
|
buttonMode: _angular_core.InputSignal<FilterButtonMode>;
|
|
845
848
|
filterButtonClicked: _angular_core.OutputEmitterRef<void>;
|
|
849
|
+
private emitAllFilters;
|
|
850
|
+
private normalizeSelectOptions;
|
|
851
|
+
private normalizeFilters;
|
|
852
|
+
normalizedFiltersConfig: _angular_core.Signal<TitleFilterConfig[]>;
|
|
846
853
|
onFilterButtonClick(): void;
|
|
847
854
|
toggleFilters(): void;
|
|
848
855
|
clearAllFilters(): void;
|
|
@@ -856,5 +863,22 @@ declare class TitleFilters {
|
|
|
856
863
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TitleFilters, "lib-title-filters", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "filtersConfig": { "alias": "filtersConfig"; "required": false; "isSignal": true; }; "buttonMode": { "alias": "buttonMode"; "required": false; "isSignal": true; }; }, { "filtersChange": "filtersChange"; "applyFilters": "applyFilters"; "filterButtonClicked": "filterButtonClicked"; }, never, never, true, never>;
|
|
857
864
|
}
|
|
858
865
|
|
|
859
|
-
|
|
866
|
+
declare class NotificationModal {
|
|
867
|
+
messageInput: ElementRef<HTMLTextAreaElement>;
|
|
868
|
+
mode: 'list' | 'edit';
|
|
869
|
+
titulo: string;
|
|
870
|
+
buttonClick: EventEmitter<void>;
|
|
871
|
+
itemLabel: string;
|
|
872
|
+
btnLabel: string;
|
|
873
|
+
defaultMessages: string[];
|
|
874
|
+
messageValue: string;
|
|
875
|
+
selectDefaultMessage(message: string): void;
|
|
876
|
+
customMessage(): void;
|
|
877
|
+
btnClick(): void;
|
|
878
|
+
backToList(): void;
|
|
879
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationModal, never>;
|
|
880
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationModal, "lib-notification-modal", never, { "titulo": { "alias": "titulo"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
export { DateTimeFilter, DateTimePicker, DevicesCarousel, DialogAlertComponent, DialogConfirmation, DynamicFormFields, FeatureCard, InfoGroup, Input, InputNumberFilter, InputSelectFilter, InputTextFilter, Loader, ModalForm, NotFoundModal, NotificationModal, PaginationComponent, ProcessingOverlay, ProgressBar, ProgressFormService, SelectCustomSearch, SideCard, SideCardDetail, TOAST_EVENTS, Table, TitleFilters, ToastHelper, WizardForm };
|
|
860
884
|
export type { DateFilterSelection, DateTimeMode, DeviceCard, DeviceStatus, DialogItem, Feature, FieldConfig, FilterItem, FilterOption, FilterType, Hour12, InfoItem, ModalFormStep, Option, SectionConfig, SelectedDatesMap, SideCardItem, SideCardSection, StatusTone, StatusToneMap, TableAction, TableColumn, TableRow, TitleFilterConfig, ToastData };
|