sapenlinea-components 0.0.33 → 0.0.34
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
|
@@ -390,7 +390,7 @@ declare class InputTextFilter implements ControlValueAccessor, OnDestroy {
|
|
|
390
390
|
}
|
|
391
391
|
|
|
392
392
|
declare class Input {
|
|
393
|
-
mode: _angular_core.InputSignal<"
|
|
393
|
+
mode: _angular_core.InputSignal<"select" | "search">;
|
|
394
394
|
placeholder: _angular_core.InputSignal<string | undefined>;
|
|
395
395
|
type: _angular_core.InputSignal<string>;
|
|
396
396
|
value: _angular_core.ModelSignal<string>;
|
|
@@ -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
|
}
|
|
@@ -676,7 +678,7 @@ interface InfoItem {
|
|
|
676
678
|
value: string | boolean | null | undefined;
|
|
677
679
|
}
|
|
678
680
|
declare class InfoGroup {
|
|
679
|
-
type: _angular_core.InputSignal<"
|
|
681
|
+
type: _angular_core.InputSignal<"error" | "success" | "info">;
|
|
680
682
|
showBox: _angular_core.InputSignal<boolean>;
|
|
681
683
|
items: _angular_core.InputSignal<InfoItem[]>;
|
|
682
684
|
title: _angular_core.InputSignal<string | null>;
|
|
@@ -726,7 +728,7 @@ declare class SideCard implements AfterViewInit, OnChanges, OnDestroy {
|
|
|
726
728
|
valueChange: EventEmitter<string>;
|
|
727
729
|
typeChange: EventEmitter<"radial" | "poligonal">;
|
|
728
730
|
statusValue: 1 | 2;
|
|
729
|
-
statusChange: EventEmitter<
|
|
731
|
+
statusChange: EventEmitter<2 | 1>;
|
|
730
732
|
sections: SideCardSection[];
|
|
731
733
|
sectionButtonClick: EventEmitter<SideCardSection>;
|
|
732
734
|
min: number;
|
|
@@ -766,11 +768,12 @@ 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">;
|
|
772
775
|
statusValue: 1 | 2;
|
|
773
|
-
statusChange: EventEmitter<
|
|
776
|
+
statusChange: EventEmitter<2 | 1>;
|
|
774
777
|
sections: SideCardSection[];
|
|
775
778
|
activeTab: 'principal' | 'historial';
|
|
776
779
|
tabChange: EventEmitter<"principal" | "historial">;
|
|
@@ -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 };
|