ui-core-abv 0.2.29 → 0.2.65
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 +78 -26
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/form-wrapper/form-wrapper.component.d.ts +0 -1
- package/lib/components/kpi-card/kpi-card.component.d.ts +14 -0
- package/lib/components/status-label/status-label.component.d.ts +2 -1
- package/lib/components/table/table.component.d.ts +1 -1
- package/lib/components/table/table.models.d.ts +1 -0
- package/lib/components/tabs-button/tabs-button.component.d.ts +10 -0
- package/lib/components/uic-portlet-card/uic-portlet-card.component.d.ts +16 -0
- package/package.json +5 -5
- package/public-api.d.ts +3 -0
|
@@ -17,7 +17,6 @@ export declare class UicFormWrapperComponent implements OnChanges {
|
|
|
17
17
|
formChange: EventEmitter<uicFormValuesRecord>;
|
|
18
18
|
private readonly destroy$;
|
|
19
19
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
|
-
private handleNgOnChange;
|
|
21
20
|
private buildForm;
|
|
22
21
|
ngOnDestroy(): void;
|
|
23
22
|
private updateDisabledState;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ButtonColor } from '../button/button.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UicKpiCardComponent {
|
|
4
|
+
data: UicKpiContet;
|
|
5
|
+
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
|
+
}
|
|
8
|
+
export interface UicKpiContet {
|
|
9
|
+
label: string;
|
|
10
|
+
value: string;
|
|
11
|
+
icon?: string;
|
|
12
|
+
iconColor?: ButtonColor;
|
|
13
|
+
textColor?: ButtonColor;
|
|
14
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class UicStatusLabelComponent {
|
|
3
3
|
color: string;
|
|
4
|
+
type: 'status' | 'tag';
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicStatusLabelComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicStatusLabelComponent, "ui-status-label", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicStatusLabelComponent, "ui-status-label", never, { "color": { "alias": "color"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
6
7
|
}
|
|
@@ -31,7 +31,7 @@ export declare class UicTableComponent {
|
|
|
31
31
|
filter: string;
|
|
32
32
|
page: number;
|
|
33
33
|
getValue(data: TableRowData[], key: string): string;
|
|
34
|
-
getMoreActions(actions: TableButton[]): ActionMenuOption[];
|
|
34
|
+
getMoreActions(actions: TableButton[], row: TableRowData[]): ActionMenuOption[];
|
|
35
35
|
getFontColor(data: TableRowData[], key: string): string;
|
|
36
36
|
getBackgroundColor(data: TableRowData[], key: string): import("ui-core-abv").BackgroundColors;
|
|
37
37
|
isValidRule(data: TableRowData[], key: string[] | undefined): boolean;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UicTabsButtonComponent {
|
|
4
|
+
tabs: string[];
|
|
5
|
+
activeTab: string;
|
|
6
|
+
activeTabChange: EventEmitter<string>;
|
|
7
|
+
selectTab(tab: string): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicTabsButtonComponent, never>;
|
|
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
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ButtonColor } from '../button/button.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UicPortletCardComponent {
|
|
4
|
+
data: UicPortletData[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicPortletCardComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicPortletCardComponent, "ui-portlet-card", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
8
|
+
export interface UicPortletData {
|
|
9
|
+
label: string;
|
|
10
|
+
value: string | number | boolean;
|
|
11
|
+
subtext?: string;
|
|
12
|
+
type: 'text' | 'money' | 'status' | 'tag' | 'date';
|
|
13
|
+
color?: ButtonColor;
|
|
14
|
+
icon?: string;
|
|
15
|
+
currencyCode?: string;
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui-core-abv",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.65",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "
|
|
6
|
-
"@angular/core": "
|
|
7
|
-
"@angular/cdk": "
|
|
8
|
-
"@angular/animations": "
|
|
5
|
+
"@angular/common": ">=19.2.0 <21.0.0",
|
|
6
|
+
"@angular/core": ">=19.2.0 <21.0.0",
|
|
7
|
+
"@angular/cdk": ">=19.2.19 <21.0.0",
|
|
8
|
+
"@angular/animations": ">=19.2.14 <21.0.0",
|
|
9
9
|
"remixicon": "^4.6.0"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
package/public-api.d.ts
CHANGED
|
@@ -23,6 +23,9 @@ export * from './lib/components/push-alerts/alert-container/alert-container.comp
|
|
|
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
25
|
export * from './lib/components/dropdown-container/dropdown-container.component';
|
|
26
|
+
export * from './lib/components/kpi-card/kpi-card.component';
|
|
27
|
+
export * from './lib/components/uic-portlet-card/uic-portlet-card.component';
|
|
28
|
+
export * from './lib/components/tabs-button/tabs-button.component';
|
|
26
29
|
export * from './lib/animations/animatios.index';
|
|
27
30
|
export * from './lib/components/dynamic-form/form.models';
|
|
28
31
|
export * from './lib/services/modal.service';
|