ui-core-abv 0.5.51 → 0.5.71
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 +133 -35
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/form/dynamic-form.component.d.ts +1 -1
- package/lib/components/excel-table/excel-table.component.d.ts +14 -0
- package/lib/components/work-panel/work-panel.component.d.ts +1 -0
- package/lib/directives/tool-tip.directive.d.ts +1 -0
- package/package.json +3 -2
- package/public-api.d.ts +1 -0
|
@@ -19,7 +19,7 @@ export declare class UicDynamicFormComponent {
|
|
|
19
19
|
isListening(fieldName: string): boolean;
|
|
20
20
|
private readonly errorMessages;
|
|
21
21
|
getInputColor(field: FormField, value: string): ButtonColor;
|
|
22
|
-
getIconByColor(field: FormField, color: string):
|
|
22
|
+
getIconByColor(field: FormField, color: string): ButtonColor;
|
|
23
23
|
private recognition;
|
|
24
24
|
private voiceStopTimer;
|
|
25
25
|
private clearVoiceStopTimer;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UicExcelTableComponent {
|
|
4
|
+
title: string;
|
|
5
|
+
headers: string[];
|
|
6
|
+
rows: Array<Record<string, unknown>>;
|
|
7
|
+
jsonData: Array<Record<string, unknown>>;
|
|
8
|
+
fileName: string;
|
|
9
|
+
jsonDataChange: EventEmitter<Record<string, unknown>[]>;
|
|
10
|
+
onFileSelected(event: Event): void;
|
|
11
|
+
private resetData;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicExcelTableComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicExcelTableComponent, "ui-excel-table", never, { "title": { "alias": "title"; "required": false; }; }, { "jsonDataChange": "jsonDataChange"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -40,6 +40,7 @@ export declare class UicWorkPanelComponent implements AfterViewInit {
|
|
|
40
40
|
private initializeTabs;
|
|
41
41
|
changeSizeBtn(b: boolean): void;
|
|
42
42
|
addTab(tabConfig: WorkPanelTabConfig): string;
|
|
43
|
+
openTab(id: string): void;
|
|
43
44
|
selectTab(id: string): void;
|
|
44
45
|
closeActiveTab(omitWarning?: boolean): string | undefined;
|
|
45
46
|
closeTab(id: string, omitWarning?: boolean): void;
|
|
@@ -8,6 +8,7 @@ export declare class UicToolTipDirective {
|
|
|
8
8
|
private componentRef;
|
|
9
9
|
constructor(elementRef: ElementRef, appRef: ApplicationRef, injector: EnvironmentInjector);
|
|
10
10
|
onMouseEnter(): void;
|
|
11
|
+
private isTouchDevice;
|
|
11
12
|
private setTooltipComponentProperties;
|
|
12
13
|
onMouseLeave(): void;
|
|
13
14
|
ngOnDestroy(): void;
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui-core-abv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.71",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19.2.0 <21.0.0",
|
|
6
6
|
"@angular/core": ">=19.2.0 <21.0.0",
|
|
7
7
|
"@angular/cdk": ">=19.2.19 <21.0.0",
|
|
8
8
|
"@angular/animations": ">=19.2.14 <21.0.0",
|
|
9
|
-
"remixicon": "^4.6.0"
|
|
9
|
+
"remixicon": "^4.6.0",
|
|
10
|
+
"xlsx": "^0.18.5"
|
|
10
11
|
},
|
|
11
12
|
"dependencies": {
|
|
12
13
|
"tslib": "^2.3.0"
|
package/public-api.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export * from './lib/components/overlay-card/overlay-card.component';
|
|
|
33
33
|
export * from './lib/components/accordion/accordion.component';
|
|
34
34
|
export * from './lib/components/pool-options/pool-options.component';
|
|
35
35
|
export * from './lib/components/tree-admin/tree-admin.component';
|
|
36
|
+
export * from './lib/components/excel-table/excel-table.component';
|
|
36
37
|
export * from './lib/components/tag-selector/tag-selector.component';
|
|
37
38
|
export * from './lib/components/progress-bar/progress-bar.component';
|
|
38
39
|
export * from './lib/animations/animatios.index';
|