ui-core-abv 0.0.1 → 0.0.2
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 +105 -105
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/button/button.component.d.ts +3 -3
- package/lib/checkbox/checkbox.component.d.ts +3 -3
- package/lib/dynamic-form/form/dynamic-form.component.d.ts +3 -3
- package/lib/dynamic-form/form-wrapper/form-wrapper.component.d.ts +3 -3
- package/lib/inputs/input/input.component.d.ts +3 -3
- package/lib/inputs/searcher/searcher.component.d.ts +3 -3
- package/lib/inputs/select/select.component.d.ts +3 -3
- package/lib/modal/modaRef.d.ts +2 -2
- package/lib/modal/modal.service.d.ts +3 -3
- package/lib/modal/side-modal/side-modal.component.d.ts +2 -2
- package/lib/pipes/name-inits.pipe.d.ts +3 -3
- package/lib/push-alerts/alert-container/alert-container.component.d.ts +2 -2
- package/lib/push-alerts/push-alert.service.d.ts +3 -3
- package/lib/skeleton-loader/skeleton-loader.component.d.ts +3 -3
- package/lib/table/table-list/table-list.component.d.ts +3 -3
- package/lib/table/table-pagination/table-pagination.component.d.ts +3 -3
- package/lib/table/table-searcher/table-searcher.component.d.ts +3 -3
- package/lib/table/table-user/table-user.component.d.ts +3 -3
- package/lib/table/table.component.d.ts +3 -3
- package/lib/tiny-alert/tiny-alert.service.d.ts +3 -3
- package/lib/toggle-button/toggle-button.component.d.ts +3 -3
- package/lib/tooltip/tool-tip.directive.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class UicButtonComponent {
|
|
3
3
|
text: string;
|
|
4
4
|
icon: string;
|
|
5
5
|
rightIcon: string;
|
|
@@ -11,7 +11,7 @@ export declare class ButtonComponent {
|
|
|
11
11
|
color: ButtonColor;
|
|
12
12
|
buttonTypeClass: string;
|
|
13
13
|
ngOnInit(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicButtonComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicButtonComponent, "ui-button", never, { "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "iconOnly": { "alias": "iconOnly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
16
16
|
}
|
|
17
17
|
export type ButtonColor = 'primary' | 'secondary' | 'red' | 'green' | 'blue' | 'yellow' | 'black';
|
|
@@ -10,13 +10,13 @@ declare const base: abstract new () => {
|
|
|
10
10
|
setDisabledState?(isDisabled: boolean): void;
|
|
11
11
|
notifyChange(value: boolean): void;
|
|
12
12
|
};
|
|
13
|
-
export declare class
|
|
13
|
+
export declare class UicCheckboxComponent extends base {
|
|
14
14
|
label: string;
|
|
15
15
|
placeholder: string;
|
|
16
16
|
disabled: boolean;
|
|
17
17
|
loading: boolean;
|
|
18
18
|
toggle(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicCheckboxComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicCheckboxComponent, "ui-checkbox", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FormGroup } from '@angular/forms';
|
|
2
2
|
import { FormField } from '../form.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class UicDynamicFormComponent {
|
|
5
5
|
fields: FormField[];
|
|
6
6
|
form: FormGroup;
|
|
7
7
|
flag: boolean;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicDynamicFormComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicDynamicFormComponent, "app-dynamic-form", never, { "fields": { "alias": "fields"; "required": false; }; "form": { "alias": "form"; "required": true; }; }, {}, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import { FormBlock, FormResult, FormSchema } from '../form.models';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class UicFormWrapperComponent {
|
|
6
6
|
schema: FormSchema;
|
|
7
7
|
loading: boolean;
|
|
8
8
|
initialValues: Record<string, any>;
|
|
@@ -21,6 +21,6 @@ export declare class FormWrapperComponent {
|
|
|
21
21
|
nextStep(): void;
|
|
22
22
|
prevStep(): void;
|
|
23
23
|
getStepTitle(): string;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicFormWrapperComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicFormWrapperComponent, "ui-form-wrapper", never, { "schema": { "alias": "schema"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "initialValues": { "alias": "initialValues"; "required": false; }; }, { "formSubmit": "formSubmit"; }, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicInputComponent {
|
|
4
4
|
icon: string;
|
|
5
5
|
iconColor: 'primary' | 'secondary' | 'error' | 'light' | 'grey';
|
|
6
6
|
internalIcon: string;
|
|
@@ -12,6 +12,6 @@ export declare class InputComponent {
|
|
|
12
12
|
clickButton: EventEmitter<boolean>;
|
|
13
13
|
disableBtn: boolean;
|
|
14
14
|
disableButton(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicInputComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicInputComponent, "ui-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clickButton": "clickButton"; }, never, ["*"], true, never>;
|
|
17
17
|
}
|
|
@@ -2,7 +2,7 @@ import { Overlay, OverlayPositionBuilder, OverlayRef } from '@angular/cdk/overla
|
|
|
2
2
|
import { ElementRef, EventEmitter, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class UicSearcherComponent {
|
|
6
6
|
private readonly renderer;
|
|
7
7
|
private readonly overlay;
|
|
8
8
|
private readonly positionBuilder;
|
|
@@ -41,6 +41,6 @@ export declare class SearcherComponent {
|
|
|
41
41
|
overlayRef: OverlayRef;
|
|
42
42
|
closeOverlay(): void;
|
|
43
43
|
openOverlay(): void;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicSearcherComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSearcherComponent, "ui-searcher", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showSelected": { "alias": "showSelected"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "itemDisplayFn": { "alias": "itemDisplayFn"; "required": false; }; "itemIsEnabledFn": { "alias": "itemIsEnabledFn"; "required": false; }; "manualSearch": { "alias": "manualSearch"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; }, { "selectedItemChange": "selectedItemChange"; }, never, never, true, never>;
|
|
46
46
|
}
|
|
@@ -12,7 +12,7 @@ declare const base: abstract new () => {
|
|
|
12
12
|
setDisabledState?(isDisabled: boolean): void;
|
|
13
13
|
notifyChange(value: AppSelectOption | null): void;
|
|
14
14
|
};
|
|
15
|
-
export declare class
|
|
15
|
+
export declare class UicSelectComponent extends base {
|
|
16
16
|
icon: string;
|
|
17
17
|
iconColor: 'primary' | 'secondary';
|
|
18
18
|
internalIcon: string;
|
|
@@ -35,8 +35,8 @@ export declare class SelectComponent extends base {
|
|
|
35
35
|
selectOption(option: AppSelectOption | null): void;
|
|
36
36
|
closeList(): void;
|
|
37
37
|
openListOverlay(): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicSelectComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
40
40
|
}
|
|
41
41
|
export interface AppSelectOption {
|
|
42
42
|
id?: string | number | null;
|
package/lib/modal/modaRef.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { OverlayRef } from "@angular/cdk/overlay";
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
-
import {
|
|
3
|
+
import { UicModalService } from "./modal.service";
|
|
4
4
|
export declare class UiModalRef<T = any> {
|
|
5
5
|
private readonly overlayRef;
|
|
6
6
|
private readonly modalService;
|
|
7
7
|
private readonly _afterClosed;
|
|
8
|
-
constructor(overlayRef: OverlayRef, modalService:
|
|
8
|
+
constructor(overlayRef: OverlayRef, modalService: UicModalService);
|
|
9
9
|
close(result?: T | null): void;
|
|
10
10
|
closeFloating(result?: T | null): void;
|
|
11
11
|
afterClosed(): Observable<{
|
|
@@ -4,7 +4,7 @@ import { ModalConfig } from './floating-modal/modalconfig.model';
|
|
|
4
4
|
import { OverlayRef } from '@angular/cdk/overlay';
|
|
5
5
|
import { UiModalRef } from './modaRef';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class UicModalService {
|
|
8
8
|
private readonly overlay;
|
|
9
9
|
private readonly envInjector;
|
|
10
10
|
openFloatingModal<TComponent>(component: Type<TComponent>, config?: ModalConfig): UiModalRef;
|
|
@@ -17,6 +17,6 @@ export declare class UiModalService {
|
|
|
17
17
|
triggerSave(): void;
|
|
18
18
|
private createOverlayConfig;
|
|
19
19
|
private createModalInjector;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
21
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicModalService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UicModalService>;
|
|
22
22
|
}
|
|
@@ -3,7 +3,7 @@ import { Injector, Type } from '@angular/core';
|
|
|
3
3
|
import { OverlayRef } from '@angular/cdk/overlay';
|
|
4
4
|
import { SideModalConfig } from './sideModalConfig.model';
|
|
5
5
|
import { UiModalRef } from '../modaRef';
|
|
6
|
-
import {
|
|
6
|
+
import { UicModalService } from '../modal.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class SideModalComponent {
|
|
9
9
|
private readonly modalRef;
|
|
@@ -18,7 +18,7 @@ export declare class SideModalComponent {
|
|
|
18
18
|
ready: boolean;
|
|
19
19
|
title: string;
|
|
20
20
|
portalOutlet: CdkPortalOutlet;
|
|
21
|
-
constructor(modalRef: UiModalRef, component: Type<any>, congif: SideModalConfig, injector: Injector, modal:
|
|
21
|
+
constructor(modalRef: UiModalRef, component: Type<any>, congif: SideModalConfig, injector: Injector, modal: UicModalService);
|
|
22
22
|
ngOnInit(): void;
|
|
23
23
|
ngAfterViewInit(): void;
|
|
24
24
|
closeOuside(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicNameInitsPipe implements PipeTransform {
|
|
4
4
|
transform(value: string): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicNameInitsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<UicNameInitsPipe, "nameInitials", true>;
|
|
7
7
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Alert } from '../alert.model';
|
|
3
|
-
import {
|
|
3
|
+
import { UicPushAlertService } from '../push-alert.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AlertContainerComponent implements OnInit {
|
|
6
6
|
private readonly alertService;
|
|
7
7
|
alerts: Alert[];
|
|
8
|
-
constructor(alertService:
|
|
8
|
+
constructor(alertService: UicPushAlertService);
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
dismis(id: number): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertContainerComponent, never>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Alert, AlertConfigParams } from './alert.model';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicPushAlertService {
|
|
4
4
|
autoIncId: number;
|
|
5
5
|
private readonly alerts$;
|
|
6
6
|
get stream(): import("rxjs").Observable<Alert>;
|
|
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
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
11
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicPushAlertService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UicPushAlertService>;
|
|
12
12
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class UicSkeletonLoaderComponent {
|
|
3
3
|
inputs: number;
|
|
4
4
|
cols: number;
|
|
5
5
|
get gridStyle(): {
|
|
6
6
|
'grid-template-columns': string;
|
|
7
7
|
};
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicSkeletonLoaderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSkeletonLoaderComponent, "ui-skeleton-loader", never, { "inputs": { "alias": "inputs"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TableList } from '../table.models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicTableListComponent {
|
|
4
4
|
list: TableList[];
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableListComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableListComponent, "app-table-list", never, { "list": { "alias": "list"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicTablePaginationComponent {
|
|
4
4
|
currentPage: number;
|
|
5
5
|
totalPages: number;
|
|
6
6
|
size: number;
|
|
@@ -11,6 +11,6 @@ export declare class TablePaginationComponent {
|
|
|
11
11
|
sizeChange: EventEmitter<number>;
|
|
12
12
|
get pages(): (number | string)[];
|
|
13
13
|
changePage(newPage: number): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTablePaginationComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTablePaginationComponent, "app-table-pagination", never, { "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>;
|
|
16
16
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicTableUicSearcherComponent {
|
|
4
4
|
placeholder: string;
|
|
5
5
|
label: string;
|
|
6
6
|
searchOnKeydown: boolean;
|
|
@@ -8,6 +8,6 @@ export declare class TableSearcherComponent {
|
|
|
8
8
|
text: string;
|
|
9
9
|
reset(): void;
|
|
10
10
|
updateText(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableUicSearcherComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUicSearcherComponent, "table-searcher", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; }, { "search": "search"; }, never, never, true, never>;
|
|
13
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TableUser } from '../table.models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicTableUserComponent {
|
|
4
4
|
user: TableUser | undefined;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableUserComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUserComponent, "app-table-user", never, { "user": { "alias": "user"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { TableAction, TableColums, TableRow, TableFilters, TableRowData } from './table.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class UicTableComponent {
|
|
5
5
|
columns: TableColums[];
|
|
6
6
|
data: TableRow[];
|
|
7
7
|
loading: boolean;
|
|
@@ -44,6 +44,6 @@ export declare class TableComponent {
|
|
|
44
44
|
ngOnChanges(): void;
|
|
45
45
|
doAction(rowId: string | number, key: string): void;
|
|
46
46
|
resetCheckedIds(): void;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableComponent, never>;
|
|
48
|
+
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; }; "highlightedId": { "alias": "highlightedId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showEmptyMessage": { "alias": "showEmptyMessage"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; }, { "action": "action"; "update": "update"; "checkedChange": "checkedChange"; }, never, ["[actions]"], true, never>;
|
|
49
49
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { AlertData, AlertResponse } from './tiny-alert.model';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicTinyAlertService {
|
|
4
4
|
private readonly modal;
|
|
5
5
|
showAlert(data: AlertData): Promise<AlertResponse>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTinyAlertService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UicTinyAlertService>;
|
|
8
8
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicSwichComponent {
|
|
4
4
|
checked: boolean;
|
|
5
5
|
checkedChange: EventEmitter<boolean>;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
placeholder: string;
|
|
8
8
|
toggle(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicSwichComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSwichComponent, "ui-switch", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
11
11
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ApplicationRef, ElementRef, EnvironmentInjector } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicToolTipDirective {
|
|
4
4
|
private readonly elementRef;
|
|
5
5
|
private readonly appRef;
|
|
6
6
|
private readonly injector;
|
|
7
|
-
|
|
7
|
+
tip: string;
|
|
8
8
|
private componentRef;
|
|
9
9
|
constructor(elementRef: ElementRef, appRef: ApplicationRef, injector: EnvironmentInjector);
|
|
10
10
|
onMouseEnter(): void;
|
|
@@ -12,6 +12,6 @@ export declare class ToolTipDirective {
|
|
|
12
12
|
onMouseLeave(): void;
|
|
13
13
|
ngOnDestroy(): void;
|
|
14
14
|
destroy(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicToolTipDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UicToolTipDirective, "[tip]", never, { "tip": { "alias": "tip"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
17
|
}
|