sapenlinea-components 0.3.62 → 0.4.62
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
|
@@ -1300,5 +1300,16 @@ declare class ToggleCustom implements ControlValueAccessor {
|
|
|
1300
1300
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleCustom, "lib-toggle-custom", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "key": { "alias": "key"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "toggleChange": "toggleChange"; }, never, never, true, never>;
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
|
-
|
|
1303
|
+
declare class OptionCard {
|
|
1304
|
+
label: _angular_core.InputSignal<string>;
|
|
1305
|
+
description: _angular_core.InputSignal<string>;
|
|
1306
|
+
buttonBg: _angular_core.InputSignal<string | undefined>;
|
|
1307
|
+
iconBg: _angular_core.InputSignal<string | undefined>;
|
|
1308
|
+
clickAction: _angular_core.OutputEmitterRef<void>;
|
|
1309
|
+
onClick(): void;
|
|
1310
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OptionCard, never>;
|
|
1311
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OptionCard, "lib-option-card", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "buttonBg": { "alias": "buttonBg"; "required": false; "isSignal": true; }; "iconBg": { "alias": "iconBg"; "required": false; "isSignal": true; }; }, { "clickAction": "clickAction"; }, never, ["[icon]"], true, never>;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
export { Button, ButtonCards, CARD_BG, CardContent, DateTimeFilter, DateTimePicker, DevicesCarousel, DialogAlertComponent, DialogConfirmation, DynamicFormFields, FeatureCard, Footer, InfoGroup, Input, InputNumberFilter, InputSelectFilter, InputTextFilter, InputTimeFilter, Loader, ModalForm, NotFoundModal, NotFoundSection, NotificationModal, OptionCard, PaginationComponent, ProcessingOverlay, ProgressBar, ProgressFormService, SelectCustomSearch, SideCard, SideCardDetail, TOAST_EVENTS, Table, Tabs, TitleFilters, Toast, ToastHelper, ToastService, ToggleCustom, WizardForm };
|
|
1304
1315
|
export type { CardBgPreset, DateFilterSelection, DateTimeMode, DeviceCard, DeviceStatus, DialogItem, Feature, FeatureType, FieldConfig, FilterItem, FilterOption, FilterType, Hour12, InfoItem, MeasurementUnit, ModalFormStep, OpcionButtonVariant, Option, SectionConfig, SelectedDatesMap, SideCardItem, SideCardSection, StatusTone, StatusToneMap, SubColumn, TabCardConfig, TabId, TabItem, TabSearchConfig, TabTogglesConfig, TableAction, TableColumn, TableRow, TitleFilterConfig, ToastData, ToggleCustomChange, ToggleCustomKey };
|