ui-core-abv 0.3.5 → 0.3.7
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 +114 -22
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/inputs/select/select.component.d.ts +3 -1
- package/lib/components/kpi-card/kpi-card.component.d.ts +2 -1
- package/lib/components/overlay-card/overlay-card.component.d.ts +17 -0
- package/lib/components/table/table.component.d.ts +1 -0
- package/lib/components/table/table.models.d.ts +1 -0
- package/lib/components/tabs-button/tabs-button.component.d.ts +6 -1
- package/lib/components/work-panel/work-panel.component.d.ts +1 -0
- package/lib/pipes/first-capital.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -25,6 +25,8 @@ export declare class UicSelectComponent extends base {
|
|
|
25
25
|
tip: string;
|
|
26
26
|
showSubtitle: boolean;
|
|
27
27
|
disabled: boolean;
|
|
28
|
+
nonSelectedText: string;
|
|
29
|
+
noneText: string;
|
|
28
30
|
emptyText: string;
|
|
29
31
|
loading: boolean;
|
|
30
32
|
nullable: boolean;
|
|
@@ -42,7 +44,7 @@ export declare class UicSelectComponent extends base {
|
|
|
42
44
|
closeList(): void;
|
|
43
45
|
writeValue(value: string | number | null): void;
|
|
44
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicSelectComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", 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; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", 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; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "nonSelectedText": { "alias": "nonSelectedText"; "required": false; }; "noneText": { "alias": "noneText"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
46
48
|
}
|
|
47
49
|
export interface AppSelectOption {
|
|
48
50
|
id?: string | number | null;
|
|
@@ -2,8 +2,9 @@ import { ButtonColor } from '../button/button.component';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class UicKpiCardComponent {
|
|
4
4
|
data: UicKpiContet;
|
|
5
|
+
loading: boolean;
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicKpiCardComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicKpiCardComponent, "ui-kpi-card", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicKpiCardComponent, "ui-kpi-card", never, { "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
8
|
}
|
|
8
9
|
export interface UicKpiContet {
|
|
9
10
|
label: string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UicOverlayCardComponent {
|
|
5
|
+
menuTemplate: TemplateRef<any>;
|
|
6
|
+
private overlayRef;
|
|
7
|
+
private readonly overlay;
|
|
8
|
+
private readonly vcr;
|
|
9
|
+
private readonly host;
|
|
10
|
+
selectedSet: Set<string | number>;
|
|
11
|
+
allSelected: boolean;
|
|
12
|
+
overlayPositions: ConnectedPosition[];
|
|
13
|
+
openMenu(): void;
|
|
14
|
+
close(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicOverlayCardComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicOverlayCardComponent, "ui-overlay-card", never, {}, {}, never, ["[button]", "[content]"], true, never>;
|
|
17
|
+
}
|
|
@@ -44,6 +44,7 @@ export declare class UicTableComponent {
|
|
|
44
44
|
filter: string;
|
|
45
45
|
page: number;
|
|
46
46
|
getValue(data: TableRowData[], key: string): string;
|
|
47
|
+
getSubtext(data: TableRowData[], key: string): string;
|
|
47
48
|
isChecked(data: TableRowData[], key: string): boolean;
|
|
48
49
|
getMoreActions(actions: TableButton[], row: TableRowData[]): ActionMenuOption[];
|
|
49
50
|
getFontColor(data: TableRowData[], key: string): string;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class UicTabsButtonComponent {
|
|
4
|
-
tabs:
|
|
4
|
+
tabs: UiBtnTab[];
|
|
5
5
|
activeTab: string;
|
|
6
6
|
activeTabChange: EventEmitter<string>;
|
|
7
7
|
selectTab(tab: string): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTabsButtonComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<UicTabsButtonComponent, "ui-tabs-button", never, { "tabs": { "alias": "tabs"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; }, { "activeTabChange": "activeTabChange"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
11
|
+
export interface UiBtnTab {
|
|
12
|
+
key: string;
|
|
13
|
+
text: string;
|
|
14
|
+
icon: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FirstCapitalPipe implements PipeTransform {
|
|
4
|
+
transform(str: string, max?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FirstCapitalPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FirstCapitalPipe, "firstCapital", true>;
|
|
7
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './lib/components/kpi-card/kpi-card.component';
|
|
|
28
28
|
export * from './lib/components/uic-portlet-card/uic-portlet-card.component';
|
|
29
29
|
export * from './lib/components/tabs-button/tabs-button.component';
|
|
30
30
|
export * from './lib/components/work-panel/work-panel.component';
|
|
31
|
+
export * from './lib/components/overlay-card/overlay-card.component';
|
|
31
32
|
export * from './lib/animations/animatios.index';
|
|
32
33
|
export * from './lib/components/dynamic-form/form.models';
|
|
33
34
|
export * from './lib/services/modal.service';
|
|
@@ -37,5 +38,6 @@ export * from './lib/services/tiny-alert.service';
|
|
|
37
38
|
export * from './lib/components/tiny-alert/tiny-alert.model';
|
|
38
39
|
export * from './lib/services/push-alert.service';
|
|
39
40
|
export * from './lib/pipes/name-inits.pipe';
|
|
41
|
+
export * from './lib/pipes/first-capital.pipe';
|
|
40
42
|
export * from './lib/directives/tool-tip.directive';
|
|
41
43
|
export * from './lib/helpers';
|