sapenlinea-components 0.9.77 → 0.9.78
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
|
@@ -1018,7 +1018,7 @@ interface TitleFilterConfig {
|
|
|
1018
1018
|
type: FilterType;
|
|
1019
1019
|
filters: FilterItem[];
|
|
1020
1020
|
}
|
|
1021
|
-
type FilterButtonMode = 'toggle' | 'action' | 'click' | 'clickRight';
|
|
1021
|
+
type FilterButtonMode = 'toggle' | 'action' | 'click' | 'clickRight' | 'none';
|
|
1022
1022
|
declare class TitleFilters {
|
|
1023
1023
|
filtersContainer: ElementRef<HTMLElement>;
|
|
1024
1024
|
submitBtn?: ElementRef<HTMLElement>;
|
|
@@ -2122,5 +2122,27 @@ declare class DocumentUpload {
|
|
|
2122
2122
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocumentUpload, "lib-document-upload", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "helperText": { "alias": "helperText"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "maxSizeMB": { "alias": "maxSizeMB"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, never, true, never>;
|
|
2123
2123
|
}
|
|
2124
2124
|
|
|
2125
|
-
|
|
2126
|
-
|
|
2125
|
+
interface DataCard {
|
|
2126
|
+
title: string;
|
|
2127
|
+
time: string;
|
|
2128
|
+
date: string;
|
|
2129
|
+
previousStatus: string;
|
|
2130
|
+
currentStatus: string;
|
|
2131
|
+
type: string;
|
|
2132
|
+
responsible: string;
|
|
2133
|
+
description: string;
|
|
2134
|
+
}
|
|
2135
|
+
declare class CardHistory {
|
|
2136
|
+
DataCard: _angular_core.InputSignal<DataCard | undefined>;
|
|
2137
|
+
isExpanded: _angular_core.WritableSignal<boolean>;
|
|
2138
|
+
private months;
|
|
2139
|
+
toggleExpanded(): void;
|
|
2140
|
+
formatDate(isoDate: string): string;
|
|
2141
|
+
private readonly statusData;
|
|
2142
|
+
getBadgeClass(status: string): string;
|
|
2143
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardHistory, never>;
|
|
2144
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardHistory, "lib-card-history", never, { "DataCard": { "alias": "DataCard"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
export { BarChart, BaseChart, Button, ButtonCards, CARD_BG, CardContent, CardHistory, Colors, DateTimeFilter, DateTimePicker, DevicesCarousel, DialogAlertComponent, DialogConfirmation, DocumentUpload, DonutChart, DynamicFormFields, FeatureCard, Footer, GeoAPIMaps, Heatmap, InfoGroup, Input, InputNumberFilter, InputSelectFilter, InputTextFilter, InputTimeFilter, KpiCard, LineChart, LoadImage, Loader, MapGeo, ModalForm, NotFoundModal, NotFoundSection, NotificationModal, OptionCard, PaginationComponent, PdfViewer, PdfViewerService, ProcessingOverlay, ProgressBar, ProgressFormService, QuickAccessCards, SelectCustomSearch, SideCard, SideCardDetail, TOAST_EVENTS, Table, TableChart, Tabs, TitleFilters, Toast, ToastHelper, ToastService, ToggleCustom, UI_CHART_TOKENS, WizardForm };
|
|
2148
|
+
export type { BarSeries, CardBgPreset, ChartItem, ColumnGroup, ColumnGroupItem, DataCard, DateFilterSelection, DateTimeMode, DeviceCard, DeviceStatus, DialogItem, Feature, FeatureType, FieldConfig, FileViewerDoc, FileViewerType, FilterItem, FilterOption, FilterType, GeoMapResponse, GeoPoint, GeoPointCameras, HeatmapConfig, HeatmapDataItem, Hour12, InfoItem, KpiColorType, LineSeries, MeasurementUnit, ModalFormStep, OpcionButtonVariant, Option, QuickAccessItem, SectionConfig, SelectedDatesMap, SideCardItem, SideCardSection, StatusTone, StatusToneMap, SubColumn, TabCardConfig, TabId, TabItem, TabSearchConfig, TabTogglesConfig, TableAction, TableColumn, TableRow, TitleFilterConfig, ToastData, ToggleCustomChange, ToggleCustomKey };
|