ui-core-abv 0.3.1 → 0.3.4
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/fesm2022/ui-core-abv.mjs +534 -57
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/form-wrapper/form-wrapper.component.d.ts +1 -0
- package/lib/components/inputs/phone-input/phone-input.component.d.ts +7 -1
- package/lib/components/push-alerts/tynyalert.helpers.d.ts +6 -0
- package/lib/components/signature-pad/signature-pad.component.d.ts +36 -0
- package/lib/components/table/table-pagination/table-pagination.component.d.ts +2 -1
- package/lib/components/table/table.component.d.ts +13 -3
- package/lib/components/table/table.models.d.ts +2 -1
- package/lib/components/tiny-alert/tiny-alert.model.d.ts +1 -0
- package/lib/components/uic-portlet-card/uic-portlet-card.component.d.ts +5 -2
- package/lib/components/work-panel/work-panel.component.d.ts +52 -0
- package/lib/services/push-alert.service.d.ts +1 -0
- package/lib/services/tiny-alert.service.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/lib/styles/_mixins.scss +3 -3
|
@@ -17,6 +17,7 @@ export declare class UicFormWrapperComponent implements OnChanges {
|
|
|
17
17
|
formSubmit: EventEmitter<FormResult>;
|
|
18
18
|
formChange: EventEmitter<uicFormValuesRecord>;
|
|
19
19
|
private readonly destroy$;
|
|
20
|
+
ngOnInit(): void;
|
|
20
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
22
|
private buildForm;
|
|
22
23
|
ngOnDestroy(): void;
|
|
@@ -44,6 +44,8 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
44
44
|
selectedCountry: PhoneCountry;
|
|
45
45
|
filteredCountries: PhoneCountry[];
|
|
46
46
|
readonly dropdownId: string;
|
|
47
|
+
private pendingNormalizedValue;
|
|
48
|
+
private changeRegistered;
|
|
47
49
|
private _countries;
|
|
48
50
|
private readonly host;
|
|
49
51
|
private readonly overlay;
|
|
@@ -53,7 +55,8 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
53
55
|
constructor();
|
|
54
56
|
ngOnChanges(changes: SimpleChanges): void;
|
|
55
57
|
ngOnDestroy(): void;
|
|
56
|
-
writeValue(value: PhoneInputModel): void;
|
|
58
|
+
writeValue(value: PhoneInputModel | string): void;
|
|
59
|
+
registerOnChange(fn: any): void;
|
|
57
60
|
toggleDropdown(): void;
|
|
58
61
|
selectCountry(country: PhoneCountry): void;
|
|
59
62
|
onNumberInput(event: Event): void;
|
|
@@ -67,6 +70,9 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
67
70
|
private resetSearch;
|
|
68
71
|
private resetCountryLists;
|
|
69
72
|
private getDefaultCountry;
|
|
73
|
+
private parseStringValue;
|
|
74
|
+
private findCountryByPrefix;
|
|
75
|
+
private propagateNormalizedValue;
|
|
70
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicPhoneInputComponent, never>;
|
|
71
77
|
static ɵcmp: i0.ɵɵComponentDeclaration<UicPhoneInputComponent, "ui-phone-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "flagPath": { "alias": "flagPath"; "required": false; }; "countries": { "alias": "countries"; "required": false; }; }, {}, never, never, true, never>;
|
|
72
78
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AlertData } from '../tiny-alert/tiny-alert.model';
|
|
2
|
+
export declare function createTinySuccess(body: string, options?: Partial<AlertData>): AlertData;
|
|
3
|
+
export declare function createTinyError(body: string, options?: Partial<AlertData>): AlertData;
|
|
4
|
+
export declare function createTinyDelete(body: string, options?: Partial<AlertData>): AlertData;
|
|
5
|
+
export declare function createTinyWarning(body: string, options?: Partial<AlertData>): AlertData;
|
|
6
|
+
export declare function createTinyInfo(body: string, options?: Partial<AlertData>): AlertData;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
declare const base: abstract new () => {
|
|
4
|
+
value: Blob | null;
|
|
5
|
+
valueChange: EventEmitter<Blob | null>;
|
|
6
|
+
onChange: (value: Blob | null) => void;
|
|
7
|
+
onTouched: () => void;
|
|
8
|
+
writeValue(obj: Blob | null): void;
|
|
9
|
+
registerOnChange(fn: any): void;
|
|
10
|
+
registerOnTouched(fn: any): void;
|
|
11
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
12
|
+
notifyChange(value: Blob | null): void;
|
|
13
|
+
};
|
|
14
|
+
export declare class UicSignaturePadComponent extends base implements AfterViewInit {
|
|
15
|
+
width: number;
|
|
16
|
+
height: number;
|
|
17
|
+
strokeColor: string;
|
|
18
|
+
strokeWidth: number;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
imageChange: EventEmitter<Blob | null>;
|
|
21
|
+
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
22
|
+
private ctx;
|
|
23
|
+
private drawing;
|
|
24
|
+
ngAfterViewInit(): void;
|
|
25
|
+
startDraw(event: PointerEvent): void;
|
|
26
|
+
draw(event: PointerEvent): void;
|
|
27
|
+
endDraw(event: PointerEvent): void;
|
|
28
|
+
clear(): void;
|
|
29
|
+
private emitSignature;
|
|
30
|
+
private relativePosition;
|
|
31
|
+
writeValue(value: Blob | null): void;
|
|
32
|
+
private resetCanvas;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicSignaturePadComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSignaturePadComponent, "ui-signature-pad", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "imageChange": "imageChange"; }, never, never, true, never>;
|
|
35
|
+
}
|
|
36
|
+
export {};
|
|
@@ -6,6 +6,7 @@ export declare class UicTablePaginationComponent {
|
|
|
6
6
|
totalPages: number;
|
|
7
7
|
size: number;
|
|
8
8
|
loading: boolean;
|
|
9
|
+
showText: boolean;
|
|
9
10
|
visiblePages: number;
|
|
10
11
|
pagesInView: number[];
|
|
11
12
|
pageChange: EventEmitter<number>;
|
|
@@ -13,5 +14,5 @@ export declare class UicTablePaginationComponent {
|
|
|
13
14
|
get pages(): (number | string)[];
|
|
14
15
|
changePage(newPage: number): void;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTablePaginationComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicTablePaginationComponent, "uic-table-pagination", never, { "buttonSize": { "alias": "buttonSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "pageChange": "pageChange"; "sizeChange": "sizeChange"; }, never, never, true, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTablePaginationComponent, "uic-table-pagination", never, { "buttonSize": { "alias": "buttonSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; }, { "pageChange": "pageChange"; "sizeChange": "sizeChange"; }, never, never, true, never>;
|
|
17
18
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { TableAction, TableColums, TableRow, TableFilters, TableRowData, TableButton } from './table.models';
|
|
3
3
|
import { ButtonColor } from '../button/button.component';
|
|
4
4
|
import { ActionMenuOption } from '../uic-action-button/uic-action-button.component';
|
|
@@ -7,6 +7,7 @@ export declare class UicTableComponent {
|
|
|
7
7
|
columns: TableColums[];
|
|
8
8
|
data: TableRow[];
|
|
9
9
|
loading: boolean;
|
|
10
|
+
disabled: boolean;
|
|
10
11
|
pages: number;
|
|
11
12
|
size: number;
|
|
12
13
|
squeletonRows: number;
|
|
@@ -22,13 +23,20 @@ export declare class UicTableComponent {
|
|
|
22
23
|
headerBackgroundColor: ButtonColor;
|
|
23
24
|
striped: boolean;
|
|
24
25
|
showPagination: boolean;
|
|
26
|
+
searchOnKeydown: boolean;
|
|
25
27
|
showEmptyMessage: boolean;
|
|
26
28
|
showSearchButton: boolean;
|
|
29
|
+
showTextPagination: boolean;
|
|
27
30
|
emptyMessage: string;
|
|
28
31
|
searcherShowButtonText: boolean;
|
|
29
32
|
action: EventEmitter<TableAction>;
|
|
30
33
|
update: EventEmitter<TableFilters>;
|
|
31
34
|
checkedChange: EventEmitter<(string | number)[]>;
|
|
35
|
+
switchChange: EventEmitter<{
|
|
36
|
+
key: string | number;
|
|
37
|
+
value: boolean;
|
|
38
|
+
columName: string;
|
|
39
|
+
}>;
|
|
32
40
|
allSelected: boolean;
|
|
33
41
|
checkedIds: Set<string | number>;
|
|
34
42
|
sortKey: string;
|
|
@@ -36,6 +44,7 @@ export declare class UicTableComponent {
|
|
|
36
44
|
filter: string;
|
|
37
45
|
page: number;
|
|
38
46
|
getValue(data: TableRowData[], key: string): string;
|
|
47
|
+
isChecked(data: TableRowData[], key: string): boolean;
|
|
39
48
|
getMoreActions(actions: TableButton[], row: TableRowData[]): ActionMenuOption[];
|
|
40
49
|
getFontColor(data: TableRowData[], key: string): string;
|
|
41
50
|
getBackgroundColor(data: TableRowData[], key: string): import("ui-core-abv").BackgroundColors;
|
|
@@ -51,9 +60,10 @@ export declare class UicTableComponent {
|
|
|
51
60
|
toggleSelection(id: string | number, checked: boolean): void;
|
|
52
61
|
toggleAll(checked: boolean): void;
|
|
53
62
|
areAllSelected(): void;
|
|
54
|
-
ngOnChanges(): void;
|
|
63
|
+
ngOnChanges(change: SimpleChanges): void;
|
|
55
64
|
doAction(rowId: string | number, key: string): void;
|
|
56
65
|
resetCheckedIds(): void;
|
|
66
|
+
switchHandler(key: string | number, value: boolean, columName: string): void;
|
|
57
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "squeletonRows": { "alias": "squeletonRows"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "highlightedId": { "alias": "highlightedId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showEmptyMessage": { "alias": "showEmptyMessage"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "searcherShowButtonText": { "alias": "searcherShowButtonText"; "required": false; }; }, { "action": "action"; "update": "update"; "checkedChange": "checkedChange"; }, never, ["[actions]", "[filters]"], true, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "squeletonRows": { "alias": "squeletonRows"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "highlightedId": { "alias": "highlightedId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; "showEmptyMessage": { "alias": "showEmptyMessage"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "showTextPagination": { "alias": "showTextPagination"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "searcherShowButtonText": { "alias": "searcherShowButtonText"; "required": false; }; }, { "action": "action"; "update": "update"; "checkedChange": "checkedChange"; "switchChange": "switchChange"; }, never, ["[actions]", "[filters]"], true, never>;
|
|
59
69
|
}
|
|
@@ -29,6 +29,7 @@ export interface TableRow {
|
|
|
29
29
|
export interface TableRowData {
|
|
30
30
|
key: string;
|
|
31
31
|
value?: string | number;
|
|
32
|
+
checked?: boolean;
|
|
32
33
|
list?: TableList[];
|
|
33
34
|
user?: TableUser;
|
|
34
35
|
icon?: string;
|
|
@@ -53,7 +54,7 @@ export interface TableAction {
|
|
|
53
54
|
rowId: number | string;
|
|
54
55
|
key: string;
|
|
55
56
|
}
|
|
56
|
-
export type ColumnTypes = 'actions' | 'text' | 'list' | 'user' | 'checkbox' | 'icon-list' | 'status';
|
|
57
|
+
export type ColumnTypes = 'actions' | 'text' | 'list' | 'user' | 'checkbox' | 'icon-list' | 'status' | 'switch';
|
|
57
58
|
export type TableTextColors = 'primary' | 'red' | 'green' | 'blue' | 'yellow' | 'black' | 'grey';
|
|
58
59
|
export type BackgroundColors = 'primary' | 'secondary' | 'red' | 'green' | 'blue' | 'yellow' | 'black' | 'grey' | 'transparent' | 'white';
|
|
59
60
|
export interface TableFilters {
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
import { ButtonColor } from '../button/button.component';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class UicPortletCardComponent {
|
|
4
|
+
title: string;
|
|
4
5
|
data: UicPortletData[];
|
|
5
6
|
/** Layout mode: horizontal keeps label/value in a row; vertical stacks label over value. */
|
|
6
7
|
layout: 'horizontal' | 'vertical';
|
|
7
8
|
/** Columns for vertical grid layout. */
|
|
8
9
|
cols: number;
|
|
10
|
+
gap: number;
|
|
9
11
|
get gridTemplateColumns(): string | null;
|
|
12
|
+
copyText(text: string): void;
|
|
10
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicPortletCardComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicPortletCardComponent, "ui-portlet-card", never, { "data": { "alias": "data"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicPortletCardComponent, "ui-portlet-card", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
15
|
}
|
|
13
16
|
export interface UicPortletData {
|
|
14
17
|
label: string;
|
|
15
18
|
value: string | number | boolean;
|
|
16
19
|
subtext?: string;
|
|
17
|
-
type: 'text' | 'money' | 'status' | 'tag' | 'date';
|
|
20
|
+
type: 'text' | 'money' | 'status' | 'tag' | 'date' | 'copy';
|
|
18
21
|
color?: ButtonColor;
|
|
19
22
|
icon?: string;
|
|
20
23
|
currencyCode?: string;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ComponentRef, EventEmitter, Type, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface WorkPanelTabConfig {
|
|
4
|
+
id?: string;
|
|
5
|
+
label: string;
|
|
6
|
+
componentType: Type<any>;
|
|
7
|
+
componentInputs?: Record<string, any>;
|
|
8
|
+
}
|
|
9
|
+
export declare class UicWorkPanelComponent implements AfterViewInit {
|
|
10
|
+
private cdr;
|
|
11
|
+
host: ViewContainerRef;
|
|
12
|
+
/**
|
|
13
|
+
* Compatibilidad con la version previa (un unico componente inicial).
|
|
14
|
+
* Si se envia, se crea como primera pestana.
|
|
15
|
+
*/
|
|
16
|
+
componentType?: Type<any>;
|
|
17
|
+
componentInputs: Record<string, any>;
|
|
18
|
+
/**
|
|
19
|
+
* Lista inicial de pestanas a renderizar.
|
|
20
|
+
*/
|
|
21
|
+
tabs: WorkPanelTabConfig[];
|
|
22
|
+
tabsChange: EventEmitter<WorkPanelTabConfig[]>;
|
|
23
|
+
tabClosed: EventEmitter<string>;
|
|
24
|
+
tabSelected: EventEmitter<string>;
|
|
25
|
+
tabAdded: EventEmitter<string>;
|
|
26
|
+
addTabRequest: EventEmitter<void>;
|
|
27
|
+
minPosition: number;
|
|
28
|
+
showAddButton: boolean;
|
|
29
|
+
fullView: boolean;
|
|
30
|
+
isMinimized: boolean;
|
|
31
|
+
activeTabId?: string;
|
|
32
|
+
tabInstances: Array<WorkPanelTabConfig & {
|
|
33
|
+
id: string;
|
|
34
|
+
componentRef: ComponentRef<any>;
|
|
35
|
+
}>;
|
|
36
|
+
private idCounter;
|
|
37
|
+
private initialized;
|
|
38
|
+
constructor(cdr: ChangeDetectorRef);
|
|
39
|
+
ngAfterViewInit(): void;
|
|
40
|
+
private initializeTabs;
|
|
41
|
+
addTab(tabConfig: WorkPanelTabConfig): string;
|
|
42
|
+
requestNewTab(): void;
|
|
43
|
+
selectTab(id: string): void;
|
|
44
|
+
closeTab(id: string): void;
|
|
45
|
+
close(): void;
|
|
46
|
+
minimizePanel(): void;
|
|
47
|
+
private createTab;
|
|
48
|
+
private renderActiveTab;
|
|
49
|
+
private emitTabsChange;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicWorkPanelComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicWorkPanelComponent, "ui-work-panel", never, { "componentType": { "alias": "componentType"; "required": false; }; "componentInputs": { "alias": "componentInputs"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "minPosition": { "alias": "minPosition"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; }, { "tabsChange": "tabsChange"; "tabClosed": "tabClosed"; "tabSelected": "tabSelected"; "tabAdded": "tabAdded"; "addTabRequest": "addTabRequest"; }, never, never, true, never>;
|
|
52
|
+
}
|
|
@@ -7,6 +7,7 @@ export declare class UicPushAlertService {
|
|
|
7
7
|
show(alertData: AlertConfigParams): void;
|
|
8
8
|
success(message: string, options?: Partial<Alert>): void;
|
|
9
9
|
error(message: string, options?: Partial<Alert>): void;
|
|
10
|
+
warning(message: string, options?: Partial<Alert>): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicPushAlertService, never>;
|
|
11
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<UicPushAlertService>;
|
|
12
13
|
}
|
|
@@ -3,6 +3,11 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class UicTinyAlertService {
|
|
4
4
|
private readonly modal;
|
|
5
5
|
showAlert(data: AlertData): Promise<AlertResponse>;
|
|
6
|
+
success(message: string, options?: Partial<AlertData>): Promise<AlertResponse>;
|
|
7
|
+
error(message: string, options?: Partial<AlertData>): Promise<AlertResponse>;
|
|
8
|
+
warning(message: string, options?: Partial<AlertData>): Promise<AlertResponse>;
|
|
9
|
+
info(message: string, options?: Partial<AlertData>): Promise<AlertResponse>;
|
|
10
|
+
deleteConfirmation(message: string, options?: Partial<AlertData>): Promise<AlertResponse>;
|
|
6
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTinyAlertService, never>;
|
|
7
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<UicTinyAlertService>;
|
|
8
13
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -22,10 +22,12 @@ export * from './lib/components/skeleton-loader/skeleton-loader.component';
|
|
|
22
22
|
export * from './lib/components/push-alerts/alert-container/alert-container.component';
|
|
23
23
|
export * from './lib/components/inputs/ui-slider/ui-slider.component';
|
|
24
24
|
export * from './lib/components/uic-action-button/uic-action-button.component';
|
|
25
|
+
export * from './lib/components/signature-pad/signature-pad.component';
|
|
25
26
|
export * from './lib/components/dropdown-container/dropdown-container.component';
|
|
26
27
|
export * from './lib/components/kpi-card/kpi-card.component';
|
|
27
28
|
export * from './lib/components/uic-portlet-card/uic-portlet-card.component';
|
|
28
29
|
export * from './lib/components/tabs-button/tabs-button.component';
|
|
30
|
+
export * from './lib/components/work-panel/work-panel.component';
|
|
29
31
|
export * from './lib/animations/animatios.index';
|
|
30
32
|
export * from './lib/components/dynamic-form/form.models';
|
|
31
33
|
export * from './lib/services/modal.service';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
$breakpoint-md:
|
|
2
|
-
$breakpoint-tablet: 768px !default;
|
|
1
|
+
$breakpoint-md: 480px !default;
|
|
2
|
+
$breakpoint-tablet: 768px !default;
|
|
3
3
|
|
|
4
4
|
@mixin mobile {
|
|
5
5
|
@media (max-width: #{$breakpoint-md - 1}) {
|
|
@@ -17,4 +17,4 @@ $breakpoint-tablet: 768px !default;
|
|
|
17
17
|
@media (min-width: #{$breakpoint-tablet}) {
|
|
18
18
|
@content;
|
|
19
19
|
}
|
|
20
|
-
}
|
|
20
|
+
}
|