wuic-framework-lib 0.0.1
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/README.md +24 -0
- package/fesm2022/wuic-framework-lib.mjs +45009 -0
- package/fesm2022/wuic-framework-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/app.routes.d.ts +2 -0
- package/lib/class/IBindable.d.ts +17 -0
- package/lib/class/IDesigner.d.ts +4 -0
- package/lib/class/IDesignerProperties.d.ts +7 -0
- package/lib/class/IFieldEditor.d.ts +21 -0
- package/lib/class/aggregationInfo.d.ts +5 -0
- package/lib/class/carouselOptions.d.ts +27 -0
- package/lib/class/chartOptions.d.ts +31 -0
- package/lib/class/comboParams.d.ts +12 -0
- package/lib/class/customException.d.ts +6 -0
- package/lib/class/designerTool.d.ts +57 -0
- package/lib/class/filterInfo.d.ts +6 -0
- package/lib/class/filterItem.d.ts +14 -0
- package/lib/class/formOptions.d.ts +5 -0
- package/lib/class/groupInfo.d.ts +7 -0
- package/lib/class/lingua.d.ts +5 -0
- package/lib/class/mapOptions.d.ts +31 -0
- package/lib/class/metaInfo.d.ts +26 -0
- package/lib/class/metadati_colonna.d.ts +234 -0
- package/lib/class/metadati_condition_group.d.ts +30 -0
- package/lib/class/metadati_custom_actions_tabelle.d.ts +19 -0
- package/lib/class/metadati_tabella.d.ts +214 -0
- package/lib/class/metadati_ui_stili_colonna.d.ts +8 -0
- package/lib/class/metadati_ui_stili_tabella.d.ts +7 -0
- package/lib/class/metadati_utenti_autorizzazioni_colonna.d.ts +10 -0
- package/lib/class/rawPagedResult.d.ts +7 -0
- package/lib/class/resultInfo.d.ts +14 -0
- package/lib/class/schedulerOptions.d.ts +14 -0
- package/lib/class/sortInfo.d.ts +5 -0
- package/lib/class/trackedChanges.d.ts +13 -0
- package/lib/class/translation.d.ts +7 -0
- package/lib/class/treeOptions.d.ts +15 -0
- package/lib/class/updateInfo.d.ts +9 -0
- package/lib/class/userInfo.d.ts +19 -0
- package/lib/class/validationRule.d.ts +10 -0
- package/lib/class/widgetDefinition.d.ts +28 -0
- package/lib/component/archetype-configurator/archetype-configurator.component.d.ts +28 -0
- package/lib/component/bounded-repeater/bounded-repeater.component.d.ts +32 -0
- package/lib/component/carousel-list/carousel-list.component.d.ts +66 -0
- package/lib/component/chart-list/chart-list.component.d.ts +135 -0
- package/lib/component/code-editor/code-editor.component.d.ts +86 -0
- package/lib/component/code-editor/editor-options.d.ts +12 -0
- package/lib/component/code-editor/html-parser.d.ts +27 -0
- package/lib/component/code-editor/sql-model.d.ts +87 -0
- package/lib/component/code-editor/sql-parser.d.ts +157 -0
- package/lib/component/code-editor/ts-parser.d.ts +93 -0
- package/lib/component/code-editor/wuic-component-bindings.d.ts +7 -0
- package/lib/component/code-editor/wuic-component-selectors.d.ts +1 -0
- package/lib/component/css-sheet-editor/css-sheet-editor.component.d.ts +71 -0
- package/lib/component/dashboard/dashboard.component.d.ts +12 -0
- package/lib/component/data-action-button/data-action-button.component.d.ts +45 -0
- package/lib/component/data-repeater/data-repeater.component.d.ts +32 -0
- package/lib/component/data-source/data-source.component.d.ts +147 -0
- package/lib/component/designer/designer.component.d.ts +269 -0
- package/lib/component/dynamic-dashboard-template/dynamic-dashboard-template.component.d.ts +39 -0
- package/lib/component/dynamic-form-template/dynamic-form-template.component.d.ts +11 -0
- package/lib/component/dynamic-generic-template/dynamic-generic-template.component.d.ts +20 -0
- package/lib/component/dynamic-repeater-template/dynamic-repeater-template.component.d.ts +15 -0
- package/lib/component/dynamic-template/dynamic-template.component.d.ts +31 -0
- package/lib/component/edit-form/edit-form.component.d.ts +62 -0
- package/lib/component/field/boolean-editor/boolean-editor.component.d.ts +23 -0
- package/lib/component/field/button-editor/button-editor.component.d.ts +25 -0
- package/lib/component/field/code-area-editor/code-area-editor.component.d.ts +20 -0
- package/lib/component/field/color-editor/color-editor.component.d.ts +23 -0
- package/lib/component/field/date-editor/date-editor.component.d.ts +25 -0
- package/lib/component/field/dictionary-editor/dictionary-editor.component.d.ts +35 -0
- package/lib/component/field/field-editor/field-editor.component.d.ts +65 -0
- package/lib/component/field/field-filter/field-filter.component.d.ts +43 -0
- package/lib/component/field/html-editor/html-editor.component.d.ts +24 -0
- package/lib/component/field/lookup-editor/lookup-editor.component.d.ts +35 -0
- package/lib/component/field/number-editor/number-editor.component.d.ts +26 -0
- package/lib/component/field/point-filter/point-filter.component.d.ts +34 -0
- package/lib/component/field/property-array-editor/property-array-editor.component.d.ts +27 -0
- package/lib/component/field/property-object-editor/property-object-editor.component.d.ts +26 -0
- package/lib/component/field/text-area-editor/text-area-editor.component.d.ts +24 -0
- package/lib/component/field/text-editor/text-editor.component.d.ts +25 -0
- package/lib/component/field/tree-view-selector/tree-view-selector.component.d.ts +22 -0
- package/lib/component/field/upload-editor/upload-editor.component.d.ts +38 -0
- package/lib/component/filter-bar/filter-bar.component.d.ts +67 -0
- package/lib/component/image-wrapper/image-wrapper.component.d.ts +15 -0
- package/lib/component/list-grid/list-grid.component.d.ts +238 -0
- package/lib/component/map-list/map-list.component.d.ts +137 -0
- package/lib/component/meta-menu/meta-menu.component.d.ts +97 -0
- package/lib/component/metadata-editor/metadata-editor.component.d.ts +125 -0
- package/lib/component/pager/pager.component.d.ts +41 -0
- package/lib/component/parametric-dialog/parametric-dialog.component.d.ts +44 -0
- package/lib/component/report-designer/report-designer.component.d.ts +19 -0
- package/lib/component/report-viewer/report-viewer.component.d.ts +20 -0
- package/lib/component/scheduler-list/scheduler-list.component.d.ts +54 -0
- package/lib/component/split/gutter/gutter-num-token.d.ts +7 -0
- package/lib/component/split/gutter/split-gutter-dynamic-injector.directive.d.ts +19 -0
- package/lib/component/split/gutter/split-gutter.directive.d.ts +54 -0
- package/lib/component/split/helpers/angular-split-config.token.d.ts +20 -0
- package/lib/component/split/helpers/models.d.ts +11 -0
- package/lib/component/split/helpers/split-custom-events-behavior.directive.d.ts +22 -0
- package/lib/component/split/helpers/utils.d.ts +30 -0
- package/lib/component/split/helpers/validations.d.ts +3 -0
- package/lib/component/split/split.component.d.ts +65 -0
- package/lib/component/split-area/split-area.component.d.ts +36 -0
- package/lib/component/spreadsheet-list/spreadsheet-list.component.d.ts +132 -0
- package/lib/component/tab-panel-wrapper/tab-panel-wrapper.component.d.ts +6 -0
- package/lib/component/tab-view-wrapper/tab-view-wrapper.component.d.ts +8 -0
- package/lib/component/tree-list/tree-list.component.d.ts +43 -0
- package/lib/component/workflow-designer/workflow-designer-node.component.d.ts +50 -0
- package/lib/component/workflow-designer/workflow-designer.component.d.ts +262 -0
- package/lib/component/workflow-runner/workflow-runner.component.d.ts +91 -0
- package/lib/directive/angular-resizable.directive.d.ts +153 -0
- package/lib/directive/classes/ngx-draggable-point.d.ts +5 -0
- package/lib/directive/classes/ngx-draggable-rect.d.ts +27 -0
- package/lib/directive/data-bound.directive.d.ts +16 -0
- package/lib/directive/events/ngx-draggable-dom-bounds-check-event.d.ts +32 -0
- package/lib/directive/events/ngx-draggable-dom-move-event.d.ts +28 -0
- package/lib/directive/helpers/helper-block.d.ts +12 -0
- package/lib/directive/helpers/ngx-draggable-dom-math.d.ts +65 -0
- package/lib/directive/helpers/ngx-draggable-dom-utilities.d.ts +26 -0
- package/lib/directive/helpers/resize-handle.d.ts +14 -0
- package/lib/directive/models/position.d.ts +21 -0
- package/lib/directive/models/resize-event.d.ts +16 -0
- package/lib/directive/models/resize-handle-type.d.ts +11 -0
- package/lib/directive/models/size.d.ts +12 -0
- package/lib/directive/ngx-draggable-dom.directive.d.ts +175 -0
- package/lib/handler/GlobalHandler.d.ts +11 -0
- package/lib/handler/mime.d.ts +11 -0
- package/lib/pipe/async-callback.pipe.d.ts +11 -0
- package/lib/pipe/available-operators.pipe.d.ts +8 -0
- package/lib/pipe/callback.pipe.d.ts +7 -0
- package/lib/pipe/callback2.pipe.d.ts +7 -0
- package/lib/pipe/format-grid-view-value.pipe.d.ts +8 -0
- package/lib/pipe/get-src-upload-preview.pipe.d.ts +9 -0
- package/lib/pipe/is-selected-row.pipe.d.ts +8 -0
- package/lib/pipe/prop-converter.pipe.d.ts +7 -0
- package/lib/pipe/show-filter-bar.pipe.d.ts +9 -0
- package/lib/pipe/to-date.pipe.d.ts +7 -0
- package/lib/pipe/visible-field-list.pipe.d.ts +7 -0
- package/lib/service/auth-session.service.d.ts +52 -0
- package/lib/service/client-side-crud.service.d.ts +35 -0
- package/lib/service/data-provider-meta.service.d.ts +32 -0
- package/lib/service/data-provider-odata.service.d.ts +18 -0
- package/lib/service/data-provider-webservice.service.d.ts +15 -0
- package/lib/service/data-provider.service.d.ts +64 -0
- package/lib/service/metadata-editor.service.d.ts +16 -0
- package/lib/service/metadata-provider.service.d.ts +160 -0
- package/lib/service/translation-manager.service.d.ts +38 -0
- package/lib/service/user-info.service.d.ts +24 -0
- package/lib/service/workflow-runtime-menu.service.d.ts +15 -0
- package/lib/service/workflow-runtime-metadata.service.d.ts +28 -0
- package/lib/service/wtoolbox.service.d.ts +145 -0
- package/package.json +63 -0
- package/public-api.d.ts +48 -0
- package/styles/styles.scss +87 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { MetadataProviderService } from './metadata-provider.service';
|
|
3
|
+
import { ResultInfo } from '../class/resultInfo';
|
|
4
|
+
import { MetadatiColonna } from '../class/metadati_colonna';
|
|
5
|
+
import { DataSourceComponent } from '../component/data-source/data-source.component';
|
|
6
|
+
import { ComboParams } from '../class/comboParams';
|
|
7
|
+
import { DataProviderOdataService } from './data-provider-odata.service';
|
|
8
|
+
import { DataProviderMetaService } from './data-provider-meta.service';
|
|
9
|
+
import { DataProviderWebserviceService } from './data-provider-webservice.service';
|
|
10
|
+
import { UserInfoService } from './user-info.service';
|
|
11
|
+
import { SortInfo } from '../class/sortInfo';
|
|
12
|
+
import { FilterItem } from '../class/filterItem';
|
|
13
|
+
import { UpdateInfo } from '../class/updateInfo';
|
|
14
|
+
import { ClientSideCrudService } from './client-side-crud.service';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
export declare class DataProviderService {
|
|
17
|
+
private http;
|
|
18
|
+
private metaSrv;
|
|
19
|
+
private odataSrv;
|
|
20
|
+
private dataMetaSrv;
|
|
21
|
+
private webDataSrv;
|
|
22
|
+
private userInfo;
|
|
23
|
+
private clientCrudSrv;
|
|
24
|
+
private readonly defaultClientCrudBatchSize;
|
|
25
|
+
private readonly defaultClientCrudMaxPages;
|
|
26
|
+
private readonly clientCrudLookupKeyPrefix;
|
|
27
|
+
constructor(http: HttpClient, metaSrv: MetadataProviderService, odataSrv: DataProviderOdataService, dataMetaSrv: DataProviderMetaService, webDataSrv: DataProviderWebserviceService, userInfo: UserInfoService, clientCrudSrv: ClientSideCrudService);
|
|
28
|
+
private getClientSideCrudConfig;
|
|
29
|
+
private getLookupRouteStorageKey;
|
|
30
|
+
private saveLookupRoutesForScope;
|
|
31
|
+
private getLookupRoutesForScope;
|
|
32
|
+
private clearLookupRoutesForScope;
|
|
33
|
+
private getLookupRoutes;
|
|
34
|
+
private fetchAllRowsByRoute;
|
|
35
|
+
private isClientSideCrudActive;
|
|
36
|
+
selectByRoute(route: string, filters?: FilterItem[], sortInfo?: SortInfo[], pageSize?: number, currentPage?: number): Promise<ResultInfo>;
|
|
37
|
+
select(scope: DataSourceComponent, all: boolean, resultInfo?: ResultInfo, hideBusy?: any, forceRemote?: boolean): Promise<ResultInfo>;
|
|
38
|
+
getComboData(scope: ComboParams, currentRecord: any, field: MetadatiColonna, filterString: string): Promise<import("../class/rawPagedResult").rawPagedResult>;
|
|
39
|
+
insert(entity: any, scope: DataSourceComponent, forceRemote?: boolean): Promise<UpdateInfo>;
|
|
40
|
+
update(entity: any, pristine: any, scope: DataSourceComponent, forceRemote?: boolean): Promise<UpdateInfo>;
|
|
41
|
+
delete(entity: any, scope: DataSourceComponent, forceRemote?: boolean): Promise<UpdateInfo>;
|
|
42
|
+
clone(entity: any, scope: DataSourceComponent, relatedRouteToClone: any[]): Promise<UpdateInfo>;
|
|
43
|
+
enableClientSideCrud(scope: DataSourceComponent): Promise<void>;
|
|
44
|
+
restoreClientSideCrudState(scope: DataSourceComponent): Promise<boolean>;
|
|
45
|
+
disableClientSideCrud(scope: DataSourceComponent): Promise<{
|
|
46
|
+
inserted: number;
|
|
47
|
+
updated: number;
|
|
48
|
+
deleted: number;
|
|
49
|
+
}>;
|
|
50
|
+
disableClientSideCrudWithoutSync(scope: DataSourceComponent): Promise<void>;
|
|
51
|
+
exportXls(route: any, filterInfo: any, progressGuid: any): Promise<any>;
|
|
52
|
+
saveDashboard(payload: any): Promise<any>;
|
|
53
|
+
loadDashboard(payload: any): Promise<any[]>;
|
|
54
|
+
saveWorkflowGraph(payload: any): Promise<any>;
|
|
55
|
+
loadWorkflowGraph(payload: any): Promise<any>;
|
|
56
|
+
getWorkflowGraphs(payload: any): Promise<any>;
|
|
57
|
+
renameWorkflowGraph(payload: any): Promise<any>;
|
|
58
|
+
deleteWorkflowGraph(payload: any): Promise<any>;
|
|
59
|
+
loadAllDashboards(): Promise<any[]>;
|
|
60
|
+
getCssClassesFromSheets(sheetPaths: string[]): Promise<any[]>;
|
|
61
|
+
writeChangesToCssFile(sheet: any): Promise<void>;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataProviderService, never>;
|
|
63
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DataProviderService>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { MetadatiColonna } from '../class/metadati_colonna';
|
|
2
|
+
import { DataProviderService } from './data-provider.service';
|
|
3
|
+
import { TranslationManagerService } from './translation-manager.service';
|
|
4
|
+
import { UserInfoService } from './user-info.service';
|
|
5
|
+
import { WorkflowRuntimeMetadataService } from './workflow-runtime-metadata.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MetadataEditorService {
|
|
8
|
+
private dataSrv;
|
|
9
|
+
private trslSrv;
|
|
10
|
+
private userInfo;
|
|
11
|
+
private workflowRuntimeMetadata;
|
|
12
|
+
constructor(dataSrv: DataProviderService, trslSrv: TranslationManagerService, userInfo: UserInfoService, workflowRuntimeMetadata: WorkflowRuntimeMetadataService);
|
|
13
|
+
openMetadataColumnEditor(field: MetadatiColonna, metaSrv: any): Promise<void>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataEditorService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MetadataEditorService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { MetadatiColonna } from '../class/metadati_colonna';
|
|
3
|
+
import { MetaInfo } from '../class/metaInfo';
|
|
4
|
+
import { UserInfoService } from './user-info.service';
|
|
5
|
+
import { MenuItem } from 'primeng/api';
|
|
6
|
+
import { WidgetDefinition } from '../class/widgetDefinition';
|
|
7
|
+
import { Dexie, EntityTable } from 'dexie';
|
|
8
|
+
import { MetadatiTabella } from '../class/metadati_tabella';
|
|
9
|
+
import { MetadatiCustomActionTabella } from '../class/metadati_custom_actions_tabelle';
|
|
10
|
+
import { MetadatiUiStiliTabella } from '../class/metadati_ui_stili_tabella';
|
|
11
|
+
import { MetadatiUiStiliColonna } from '../class/metadati_ui_stili_colonna';
|
|
12
|
+
import { MetadatiUtentiAutorizzazioniColonna } from '../class/metadati_utenti_autorizzazioni_colonna';
|
|
13
|
+
import { MetadatiConditionGroup, MetadatiConditionGroupAction } from '../class/metadati_condition_group';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class MetadataProviderService {
|
|
16
|
+
private http;
|
|
17
|
+
private userInfo;
|
|
18
|
+
contentType: string;
|
|
19
|
+
dataType: string;
|
|
20
|
+
type: string;
|
|
21
|
+
getMetadataUri: string;
|
|
22
|
+
getMetadataVersionUri: string;
|
|
23
|
+
static readUri: any;
|
|
24
|
+
static storedUri: any;
|
|
25
|
+
static readUriCmb: any;
|
|
26
|
+
static readDistinctUriCmb: any;
|
|
27
|
+
static updateUri: any;
|
|
28
|
+
static createUri: any;
|
|
29
|
+
static deleteUri: any;
|
|
30
|
+
static restoreUri: any;
|
|
31
|
+
static cloneUri: any;
|
|
32
|
+
static getDistinctValuesUri: any;
|
|
33
|
+
static batchEditUri: any;
|
|
34
|
+
static exportUri: any;
|
|
35
|
+
static exportFromStoredUri: any;
|
|
36
|
+
static exportPdfUri: any;
|
|
37
|
+
static flushCacheUri: any;
|
|
38
|
+
static removeColumnUri: any;
|
|
39
|
+
static checkInstallUri: any;
|
|
40
|
+
static installUri: any;
|
|
41
|
+
static getRealPathUri: any;
|
|
42
|
+
static getMenuByUserIDUri: any;
|
|
43
|
+
static getMenuAdminMethodsUri: any;
|
|
44
|
+
static removeMenuUri: any;
|
|
45
|
+
static addMenuUri: any;
|
|
46
|
+
static addMenuFullUri: any;
|
|
47
|
+
static reorderMenuUri: any;
|
|
48
|
+
static nestMenuUri: any;
|
|
49
|
+
static getConnectionsUri: any;
|
|
50
|
+
static getAppSettingsUri: any;
|
|
51
|
+
static updateConnectionsUri: any;
|
|
52
|
+
static deleteConnectionsUri: any;
|
|
53
|
+
static insertConnectionsUri: any;
|
|
54
|
+
static updateAppSettingsUri: any;
|
|
55
|
+
static getLoggedUsersUri: any;
|
|
56
|
+
static GetUserListTestUri: any;
|
|
57
|
+
static readCustomSettingsUri: any;
|
|
58
|
+
static saveCustomSettingsUri: any;
|
|
59
|
+
static saveDashboardUri: any;
|
|
60
|
+
static loadDashboardUri: any;
|
|
61
|
+
static saveWorkflowGraphUri: any;
|
|
62
|
+
static loadWorkflowGraphUri: any;
|
|
63
|
+
static getWorkflowGraphsUri: any;
|
|
64
|
+
static renameWorkflowGraphUri: any;
|
|
65
|
+
static deleteWorkflowGraphUri: any;
|
|
66
|
+
static getCssClassesFromSheetsUri: any;
|
|
67
|
+
static writeChangesToCssFileUri: any;
|
|
68
|
+
static scaffoldODataUri: any;
|
|
69
|
+
static metaTableRoute: any;
|
|
70
|
+
static metaColumnRoute: any;
|
|
71
|
+
static metaMenuRoute: any;
|
|
72
|
+
static metatableActionRoute: any;
|
|
73
|
+
static metatableStyleRoute: any;
|
|
74
|
+
static metatableColumnStyleRoute: any;
|
|
75
|
+
static metatableAuthRoute: any;
|
|
76
|
+
static metatableColumnAuthRoute: any;
|
|
77
|
+
private static metadataVersionInFlight?;
|
|
78
|
+
private static lastMetadataVersionCheckAtMs;
|
|
79
|
+
private static readonly minMetadataVersionIntervalMs;
|
|
80
|
+
private static readonly minReportListIntervalMs;
|
|
81
|
+
private static reportListInFlightByRoute;
|
|
82
|
+
private static reportListCacheByRoute;
|
|
83
|
+
private static reportListLastCheckAtByRoute;
|
|
84
|
+
private static customSettingsInFlightByRequest;
|
|
85
|
+
static widgetDefinition: WidgetDefinition;
|
|
86
|
+
static widgetMap: {
|
|
87
|
+
[key: string]: {
|
|
88
|
+
component: any;
|
|
89
|
+
width?: string;
|
|
90
|
+
height?: string;
|
|
91
|
+
hide?: boolean;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
static baseLibs: string[];
|
|
95
|
+
static MetaDB: Dexie & {
|
|
96
|
+
MetadatiColonna: EntityTable<MetadatiColonna, "mc_id">;
|
|
97
|
+
MetadatiTabella: EntityTable<MetadatiTabella, "md_id">;
|
|
98
|
+
MetadatiCustomActionTabella: EntityTable<MetadatiCustomActionTabella, "Id">;
|
|
99
|
+
MetadatiUiStiliTabella: EntityTable<MetadatiUiStiliTabella, "must_id">;
|
|
100
|
+
MetadatiUiStiliColonna: EntityTable<MetadatiUiStiliColonna, "musc_id">;
|
|
101
|
+
MetadatiUtentiAutorizzazioniColonna: EntityTable<MetadatiUtentiAutorizzazioniColonna, "muac_id">;
|
|
102
|
+
MetadatiConditionGroup: EntityTable<MetadatiConditionGroup, "CG_Id">;
|
|
103
|
+
MetadatiConditionGroupAction: EntityTable<MetadatiConditionGroupAction, "CAG_Id">;
|
|
104
|
+
};
|
|
105
|
+
static generateLocalDB(version: number): void;
|
|
106
|
+
static getSchemaFromClass(classIntance: any, pKey: string, autoIncrement: boolean, keys?: string[], append?: string): string;
|
|
107
|
+
static isMetaRoute(route: any): boolean;
|
|
108
|
+
static getPKeys(columns: MetadatiColonna[]): MetadatiColonna[];
|
|
109
|
+
static getAggregates(metas: MetadatiColonna[]): any[];
|
|
110
|
+
private isClientSideCrudModeEnabled;
|
|
111
|
+
private getMenuCacheKey;
|
|
112
|
+
private clearMenuCache;
|
|
113
|
+
private clearMenuCacheByPrefix;
|
|
114
|
+
private getMenuAdminMethodsCacheKey;
|
|
115
|
+
private clearMenuAdminMethodsCache;
|
|
116
|
+
invalidateMenuByUserIdCache(userId?: number | string, clearAdminMethods?: boolean): void;
|
|
117
|
+
constructor(http: HttpClient, userInfo: UserInfoService);
|
|
118
|
+
getMetadatiById(md_id: number): Promise<MetadatiColonna[]>;
|
|
119
|
+
getMetadati(route: string, md_id?: number): Promise<MetadatiColonna[]>;
|
|
120
|
+
getMetas(route: string, userId: number, md_id?: number): Promise<any[]>;
|
|
121
|
+
static getResources(): any;
|
|
122
|
+
static translate_meta(metadati: any[], resources: any): void;
|
|
123
|
+
static getTSTypeFromMetaColumn(col: MetadatiColonna): "any" | "boolean" | "string" | "number" | "Date";
|
|
124
|
+
static mapMetadata(metas: MetadatiColonna[]): MetadatiColonna[];
|
|
125
|
+
reorderField(field: MetadatiColonna, upDown: any, metaInfo: MetaInfo): void;
|
|
126
|
+
hideColumn(field: MetadatiColonna, show: boolean, edit: boolean, metaInfo?: MetaInfo): void;
|
|
127
|
+
suggest(field: MetadatiColonna, record: any): void;
|
|
128
|
+
getMenuByUserID(forceRefresh?: boolean): Promise<MenuItem[]>;
|
|
129
|
+
getMenuAdminMethods(forceRefresh?: boolean): Promise<string[]>;
|
|
130
|
+
removeMenu(menuId: number, preserveChilds: boolean): Promise<void>;
|
|
131
|
+
addMenu(menuId: number, before: boolean, nested: boolean, mm_id: number[]): Promise<number>;
|
|
132
|
+
reorderMenu(source: number, target: number, after: boolean, newParentId: number, mm_id: number[]): Promise<void>;
|
|
133
|
+
nestMenu(newChild: number, newParent: number): Promise<void>;
|
|
134
|
+
addMenuFull(caption: string, url: string): Promise<number>;
|
|
135
|
+
mapMenu(results: any[], items: MenuItem[], parent?: MenuItem): void;
|
|
136
|
+
private normalizeMenuRoute;
|
|
137
|
+
private static buildAsmxEndpoint;
|
|
138
|
+
scaffoldOdata(): Promise<void>;
|
|
139
|
+
private getCustomSettingsStorageKey;
|
|
140
|
+
private getCustomSettingsRequestKey;
|
|
141
|
+
readCustomSettings(userId: number | string, key?: string): Promise<any>;
|
|
142
|
+
saveCustomSettings(userId: number | string, settings: any, key: string): Promise<any>;
|
|
143
|
+
bootstrapCustomSettingsToLocalStorage(userId?: number | string): Promise<void>;
|
|
144
|
+
clearCustomSettingsLocalStorage(userId?: number | string): void;
|
|
145
|
+
getCustomSettingFromLocalStorage<T = any>(key: string, userId?: number | string): T | null;
|
|
146
|
+
setCustomSettingInLocalStorage(key: string, value: any, userId?: number | string): void;
|
|
147
|
+
getReportList(route: string): Promise<{
|
|
148
|
+
path: string;
|
|
149
|
+
name: string;
|
|
150
|
+
}[]>;
|
|
151
|
+
private getProjectMetadataVersionIfExpired;
|
|
152
|
+
getReportVariables(route: string, reportName: string): Promise<Array<{
|
|
153
|
+
name: string;
|
|
154
|
+
alias: string;
|
|
155
|
+
value: string;
|
|
156
|
+
type: string;
|
|
157
|
+
}>>;
|
|
158
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataProviderService, never>;
|
|
159
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MetadataProviderService>;
|
|
160
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { Lingua } from '../class/lingua';
|
|
4
|
+
import { Translation } from '../class/translation';
|
|
5
|
+
import { BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { UserInfoService } from './user-info.service';
|
|
7
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TranslationManagerService {
|
|
10
|
+
private http;
|
|
11
|
+
private inj;
|
|
12
|
+
private authSrv;
|
|
13
|
+
private ngxTranslate;
|
|
14
|
+
private readonly translationCacheKey;
|
|
15
|
+
private readonly likelyMojibakePattern;
|
|
16
|
+
httpOptions: {
|
|
17
|
+
withCredentials: boolean;
|
|
18
|
+
};
|
|
19
|
+
translationTable: Translation[];
|
|
20
|
+
translationsLoaded$: BehaviorSubject<boolean>;
|
|
21
|
+
private loadPromise?;
|
|
22
|
+
private backendRetryTimer?;
|
|
23
|
+
constructor(http: HttpClient, inj: Injector, authSrv: UserInfoService, ngxTranslate: TranslateService);
|
|
24
|
+
setEndPoint(): Promise<void>;
|
|
25
|
+
ensureTranslationsLoaded(forceReload?: boolean): Promise<void>;
|
|
26
|
+
getLingue(): Array<Lingua>;
|
|
27
|
+
loadTranslations(): Promise<void>;
|
|
28
|
+
private syncNgxTranslate;
|
|
29
|
+
instant(resource: string): string;
|
|
30
|
+
format(stringa: string, ...args: any[]): string;
|
|
31
|
+
getResourcesByLang(lang?: string): any;
|
|
32
|
+
getTranslation(value: string): string;
|
|
33
|
+
updateTranslations(translationObj: any): Promise<Object>;
|
|
34
|
+
private normalizeTranslations;
|
|
35
|
+
private repairMojibake;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslationManagerService, never>;
|
|
37
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TranslationManagerService>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
2
|
+
import { UserInfo } from '../class/userInfo';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UserInfoService {
|
|
5
|
+
private cookieService;
|
|
6
|
+
constructor(cookieService: CookieService);
|
|
7
|
+
hasStoredUserInfo(): boolean;
|
|
8
|
+
getStoredUserInfo(): UserInfo | null;
|
|
9
|
+
clearUserInfo(): void;
|
|
10
|
+
isUserAdmin(userLike: any): boolean;
|
|
11
|
+
isCurrentUserAdmin(): boolean;
|
|
12
|
+
isAuthAdmin(auth?: {
|
|
13
|
+
legacyRole?: string;
|
|
14
|
+
claims?: {
|
|
15
|
+
type?: string;
|
|
16
|
+
value?: string;
|
|
17
|
+
}[];
|
|
18
|
+
} | null): boolean;
|
|
19
|
+
setUserInfoCookie(userLike: any): void;
|
|
20
|
+
setDummyUserInfo(): string;
|
|
21
|
+
getuserInfo(): UserInfo;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserInfoService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserInfoService>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MenuItem } from 'primeng/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type WorkflowRuntimeMenuState = {
|
|
4
|
+
items: MenuItem[];
|
|
5
|
+
exclusive: boolean;
|
|
6
|
+
};
|
|
7
|
+
export declare class WorkflowRuntimeMenuService {
|
|
8
|
+
private readonly runtimeMenusSubject;
|
|
9
|
+
readonly runtimeMenus$: import("rxjs").Observable<WorkflowRuntimeMenuState>;
|
|
10
|
+
get snapshot(): WorkflowRuntimeMenuState;
|
|
11
|
+
setRuntimeMenus(items: MenuItem[], exclusive?: boolean): void;
|
|
12
|
+
clearRuntimeMenus(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowRuntimeMenuService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowRuntimeMenuService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type WorkflowRuntimeRouteMetadataEntry = {
|
|
3
|
+
route: string;
|
|
4
|
+
action?: string;
|
|
5
|
+
metadata: any;
|
|
6
|
+
};
|
|
7
|
+
export type WorkflowRuntimeLinkedActionRouteMetadataEntry = {
|
|
8
|
+
sourceRoute: string;
|
|
9
|
+
tableActionId: number;
|
|
10
|
+
targetRoute: string;
|
|
11
|
+
targetAction?: string;
|
|
12
|
+
metadata: any;
|
|
13
|
+
};
|
|
14
|
+
export declare class WorkflowRuntimeMetadataService {
|
|
15
|
+
private readonly byRouteAction;
|
|
16
|
+
private readonly byRoute;
|
|
17
|
+
private readonly linkedBySourceAction;
|
|
18
|
+
private readonly pendingByRouteAction;
|
|
19
|
+
private readonly pendingByRoute;
|
|
20
|
+
setRouteMetadata(entries: WorkflowRuntimeRouteMetadataEntry[]): void;
|
|
21
|
+
getRouteMetadata(route: string, action?: string): any | null;
|
|
22
|
+
clear(): void;
|
|
23
|
+
setLinkedActionRouteMetadata(entries: WorkflowRuntimeLinkedActionRouteMetadataEntry[]): void;
|
|
24
|
+
activateLinkedNavigationMetadata(sourceRoute: string, tableActionId: number): void;
|
|
25
|
+
consumePendingRouteMetadata(route: string, action?: string): any | null;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowRuntimeMetadataService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowRuntimeMetadataService>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { ConfirmationService, MessageService, Confirmation } from 'primeng/api';
|
|
2
|
+
import { DataProviderService } from './data-provider.service';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { MetadatiColonna } from '../class/metadati_colonna';
|
|
6
|
+
import { MetaInfo } from '../class/metaInfo';
|
|
7
|
+
import { DialogService } from 'primeng/dynamicdialog';
|
|
8
|
+
import { TranslationManagerService } from './translation-manager.service';
|
|
9
|
+
import { GlobalHandler } from '../handler/GlobalHandler';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class WtoolboxService {
|
|
12
|
+
_http: HttpClient;
|
|
13
|
+
static appSettings: any;
|
|
14
|
+
static myFunctions: any;
|
|
15
|
+
static dialogService: DialogService;
|
|
16
|
+
static messageNotificationService: MessageService;
|
|
17
|
+
static confirmationService: ConfirmationService;
|
|
18
|
+
static dataService: DataProviderService;
|
|
19
|
+
static translationService: TranslationManagerService;
|
|
20
|
+
static errorHandler: GlobalHandler;
|
|
21
|
+
static http: HttpClient;
|
|
22
|
+
static isBusy: BehaviorSubject<boolean>;
|
|
23
|
+
static menuUpdated: BehaviorSubject<boolean>;
|
|
24
|
+
constructor(_http: HttpClient);
|
|
25
|
+
static safeAssign(target: any, propPath: string, parentConstructors: any[], value: any, nestedIndex?: number, async?: boolean): void;
|
|
26
|
+
static deepMerge(target: any, source: any): any;
|
|
27
|
+
static uuidv4(): string;
|
|
28
|
+
static getTimestamp(): string;
|
|
29
|
+
static confirm(payload: Confirmation): Promise<boolean>;
|
|
30
|
+
static promptDialog(title: string, fields: {
|
|
31
|
+
name: string;
|
|
32
|
+
caption: string;
|
|
33
|
+
value?: any;
|
|
34
|
+
type: string;
|
|
35
|
+
tooltip?: string;
|
|
36
|
+
required?: boolean;
|
|
37
|
+
route?: {
|
|
38
|
+
lookupRoute?: string;
|
|
39
|
+
lookupValueField?: string;
|
|
40
|
+
lookupDesField?: string;
|
|
41
|
+
lookupFilter?: string;
|
|
42
|
+
};
|
|
43
|
+
dictionaryData?: {
|
|
44
|
+
label: string;
|
|
45
|
+
value: any;
|
|
46
|
+
items?: any;
|
|
47
|
+
}[];
|
|
48
|
+
serverSide?: boolean;
|
|
49
|
+
selectionChanged?: (record: {
|
|
50
|
+
[key: string]: BehaviorSubject<any>;
|
|
51
|
+
}, field: MetadatiColonna, metaInfo: MetaInfo, newValue: any, oldValue: any, wtoolbox: typeof WtoolboxService, nestedIndex?: number, nodes?: any[]) => void;
|
|
52
|
+
propsBag?: any;
|
|
53
|
+
hide?: boolean;
|
|
54
|
+
}[], width?: string, height?: string, customValidation?: any): Promise<any>;
|
|
55
|
+
static safeStringify: (obj: any, replacer: (key: any, value: any) => any) => string;
|
|
56
|
+
static createHierarchicalDataModel(data: any, pKeyName: any, parentKeyName: any, flattenedTreeDataSource: any, addCallback?: any, nullParentValue?: any): any[];
|
|
57
|
+
static trasverseDataModel(data: any, el: any, pKeyName: any, parentKeyName: any, hdata: any, flattenedTreeDataSource: any, nestingProp: string, currentParents: number[], addCallback?: any): void;
|
|
58
|
+
static suggestions: {
|
|
59
|
+
suggestBeforeSave(md_id: number, record: {
|
|
60
|
+
[key: string]: BehaviorSubject<any>;
|
|
61
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
62
|
+
suggestAfterSave(md_id: number, record: {
|
|
63
|
+
[key: string]: BehaviorSubject<any>;
|
|
64
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
65
|
+
suggestDetails(md_id: number, record: {
|
|
66
|
+
[key: string]: BehaviorSubject<any>;
|
|
67
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
68
|
+
suggestFilters(route: string, record: {
|
|
69
|
+
[key: string]: BehaviorSubject<any>;
|
|
70
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
71
|
+
suggestAfterLoad(md_id: number, record: {
|
|
72
|
+
[key: string]: BehaviorSubject<any>;
|
|
73
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
74
|
+
suggestJoinOverride(route: string, record: {
|
|
75
|
+
[key: string]: BehaviorSubject<any>;
|
|
76
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
77
|
+
suggestConditionalGridTemplate(route: string, record: {
|
|
78
|
+
[key: string]: BehaviorSubject<any>;
|
|
79
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
80
|
+
suggestEditTemplate(route: string, record: {
|
|
81
|
+
[key: string]: BehaviorSubject<any>;
|
|
82
|
+
}, field: MetadatiColonna, editDetail?: "edit" | "detail"): Promise<void>;
|
|
83
|
+
suggestDetailTemplate(route: string, record: {
|
|
84
|
+
[key: string]: BehaviorSubject<any>;
|
|
85
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
86
|
+
suggestGridRowtemplate(route: string, record: {
|
|
87
|
+
[key: string]: BehaviorSubject<any>;
|
|
88
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
89
|
+
suggestColumnMD(record: {
|
|
90
|
+
[key: string]: BehaviorSubject<any>;
|
|
91
|
+
}, field: MetadatiColonna, type: string, routeRef?: string): Promise<void>;
|
|
92
|
+
suggestComputedFormula(record: {
|
|
93
|
+
[key: string]: BehaviorSubject<any>;
|
|
94
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
95
|
+
getClauseByLookupHierarchy(model: any[], record: {
|
|
96
|
+
[key: string]: BehaviorSubject<any>;
|
|
97
|
+
}, field: MetadatiColonna, appendOnly: 0 | 1 | 2): Promise<void>;
|
|
98
|
+
checkParentTables(newValue: any, arr: any, nodes: any): void;
|
|
99
|
+
getLookupListByRoute(record: {
|
|
100
|
+
[key: string]: BehaviorSubject<any>;
|
|
101
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
102
|
+
suggestDefaultValue(record: {
|
|
103
|
+
[key: string]: BehaviorSubject<any>;
|
|
104
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
105
|
+
suggestDefaultValueCallback(record: {
|
|
106
|
+
[key: string]: BehaviorSubject<any>;
|
|
107
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
108
|
+
suggestTableActionCallback(record: {
|
|
109
|
+
[key: string]: BehaviorSubject<any>;
|
|
110
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
111
|
+
suggestSelectionChangedCallback(record: {
|
|
112
|
+
[key: string]: BehaviorSubject<any>;
|
|
113
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
114
|
+
suggestSuggestValueCallback(record: {
|
|
115
|
+
[key: string]: BehaviorSubject<any>;
|
|
116
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
117
|
+
suggestGridColumnDataTemplate(record: {
|
|
118
|
+
[key: string]: BehaviorSubject<any>;
|
|
119
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
120
|
+
suggestConditionalCellTemplate(record: {
|
|
121
|
+
[key: string]: BehaviorSubject<any>;
|
|
122
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
123
|
+
suggestCustomValidation(record: {
|
|
124
|
+
[key: string]: BehaviorSubject<any>;
|
|
125
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
126
|
+
suggestLookup(record: {
|
|
127
|
+
[key: string]: BehaviorSubject<any>;
|
|
128
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
129
|
+
suggestLookupDefaultFilter(record: {
|
|
130
|
+
[key: string]: BehaviorSubject<any>;
|
|
131
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
132
|
+
suggestTablePropsBag(record: {
|
|
133
|
+
[key: string]: BehaviorSubject<any>;
|
|
134
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
135
|
+
suggestColumnPropsBag(record: {
|
|
136
|
+
[key: string]: BehaviorSubject<any>;
|
|
137
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
138
|
+
getLookupListByID(record: {
|
|
139
|
+
[key: string]: BehaviorSubject<any>;
|
|
140
|
+
}, field: MetadatiColonna): Promise<void>;
|
|
141
|
+
};
|
|
142
|
+
static metadataFunctions: any;
|
|
143
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WtoolboxService, never>;
|
|
144
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WtoolboxService>;
|
|
145
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wuic-framework-lib",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Wuic Angular Framework Library",
|
|
5
|
+
"author": "Wuic",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"angular",
|
|
9
|
+
"wuic",
|
|
10
|
+
"framework"
|
|
11
|
+
],
|
|
12
|
+
"peerDependencies": {
|
|
13
|
+
"@angular/common": "^19.0.5",
|
|
14
|
+
"@angular/core": "^19.0.5",
|
|
15
|
+
"@angular/cdk": "^19.0.4",
|
|
16
|
+
"@angular/google-maps": "^19.0.4",
|
|
17
|
+
"@fullcalendar/angular": "^6.1.16",
|
|
18
|
+
"@fullcalendar/bootstrap5": "^6.1.15",
|
|
19
|
+
"@fullcalendar/core": "^6.1.15",
|
|
20
|
+
"@fullcalendar/daygrid": "^6.1.15",
|
|
21
|
+
"@fullcalendar/interaction": "^6.1.15",
|
|
22
|
+
"@fullcalendar/timegrid": "^6.1.15",
|
|
23
|
+
"@googlemaps/markerclusterer": "^2.5.3",
|
|
24
|
+
"@materia-ui/ngx-monaco-editor": "^6.0.0",
|
|
25
|
+
"@ngx-translate/core": "^15.0.0",
|
|
26
|
+
"@angular/elements": "^19.0.5",
|
|
27
|
+
"bootstrap": "^5.3.3",
|
|
28
|
+
"dexie": "^4.0.8",
|
|
29
|
+
"jspreadsheet": "^11.9.3",
|
|
30
|
+
"monaco-editor": "^0.45.0",
|
|
31
|
+
"monaco-editor-webpack-plugin": "^7.1.0",
|
|
32
|
+
"ngx-cookie-service": "^19.0.0",
|
|
33
|
+
"odata-filter-builder": "^1.0.0",
|
|
34
|
+
"rete": "^2.0.1",
|
|
35
|
+
"rete-angular-plugin": "^2.6.0",
|
|
36
|
+
"rete-area-plugin": "^2.0.0",
|
|
37
|
+
"rete-connection-plugin": "^2.0.0",
|
|
38
|
+
"rete-render-utils": "^2.0.0",
|
|
39
|
+
"primeflex": "^3.3.1",
|
|
40
|
+
"primeicons": "^7.0.0",
|
|
41
|
+
"primeng": "^19.0.2"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"stimulsoft-designer-angular": "^2024.4.3",
|
|
45
|
+
"stimulsoft-viewer-angular": "^2024.4.3",
|
|
46
|
+
"tslib": "^2.3.0"
|
|
47
|
+
},
|
|
48
|
+
"sideEffects": false,
|
|
49
|
+
"exports": {
|
|
50
|
+
"./theming": {
|
|
51
|
+
"sass": "./styles/styles.scss"
|
|
52
|
+
},
|
|
53
|
+
"./package.json": {
|
|
54
|
+
"default": "./package.json"
|
|
55
|
+
},
|
|
56
|
+
".": {
|
|
57
|
+
"types": "./index.d.ts",
|
|
58
|
+
"default": "./fesm2022/wuic-framework-lib.mjs"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"module": "fesm2022/wuic-framework-lib.mjs",
|
|
62
|
+
"typings": "index.d.ts"
|
|
63
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export * from './lib/handler/GlobalHandler';
|
|
2
|
+
export * from './lib/class/widgetDefinition';
|
|
3
|
+
export * from './lib/class/customException';
|
|
4
|
+
export * from './lib/class/metadati_colonna';
|
|
5
|
+
export * from './lib/component/data-source/data-source.component';
|
|
6
|
+
export * from './lib/component/list-grid/list-grid.component';
|
|
7
|
+
export * from './lib/component/edit-form/edit-form.component';
|
|
8
|
+
export * from './lib/component/pager/pager.component';
|
|
9
|
+
export * from './lib/component/scheduler-list/scheduler-list.component';
|
|
10
|
+
export * from './lib/component/data-action-button/data-action-button.component';
|
|
11
|
+
export * from './lib/component/meta-menu/meta-menu.component';
|
|
12
|
+
export * from './lib/component/field/text-editor/text-editor.component';
|
|
13
|
+
export * from './lib/component/field/text-area-editor/text-area-editor.component';
|
|
14
|
+
export * from './lib/component/field/number-editor/number-editor.component';
|
|
15
|
+
export * from './lib/component/field/lookup-editor/lookup-editor.component';
|
|
16
|
+
export * from './lib/component/field/dictionary-editor/dictionary-editor.component';
|
|
17
|
+
export * from './lib/component/field/boolean-editor/boolean-editor.component';
|
|
18
|
+
export * from './lib/component/field/date-editor/date-editor.component';
|
|
19
|
+
export * from './lib/component/field/html-editor/html-editor.component';
|
|
20
|
+
export * from './lib/component/field/upload-editor/upload-editor.component';
|
|
21
|
+
export * from './lib/component/field/button-editor/button-editor.component';
|
|
22
|
+
export * from './lib/component/field/field-editor/field-editor.component';
|
|
23
|
+
export * from './lib/component/field/code-area-editor/code-area-editor.component';
|
|
24
|
+
export * from './lib/component/code-editor/editor-options';
|
|
25
|
+
export * from './lib/component/code-editor/code-editor.component';
|
|
26
|
+
export * from './lib/component/dynamic-template/dynamic-template.component';
|
|
27
|
+
export * from './lib/component/image-wrapper/image-wrapper.component';
|
|
28
|
+
export * from './lib/component/code-editor/code-editor.component';
|
|
29
|
+
export * from './lib/component/field/color-editor/color-editor.component';
|
|
30
|
+
export * from './lib/component/field/property-array-editor/property-array-editor.component';
|
|
31
|
+
export * from './lib/component/field/property-object-editor/property-object-editor.component';
|
|
32
|
+
export * from './lib/component/field/tree-view-selector/tree-view-selector.component';
|
|
33
|
+
export * from './lib/component/workflow-designer/workflow-designer.component';
|
|
34
|
+
export * from './lib/component/workflow-runner/workflow-runner.component';
|
|
35
|
+
export * from './lib/service/wtoolbox.service';
|
|
36
|
+
export * from './lib/service/metadata-provider.service';
|
|
37
|
+
export * from './lib/service/metadata-editor.service';
|
|
38
|
+
export * from './lib/service/auth-session.service';
|
|
39
|
+
export * from './lib/service/workflow-runtime-metadata.service';
|
|
40
|
+
export * from './lib/service/translation-manager.service';
|
|
41
|
+
export * from './lib/handler/GlobalHandler';
|
|
42
|
+
export * from './lib/app.routes';
|
|
43
|
+
export * from './lib/pipe/visible-field-list.pipe';
|
|
44
|
+
export * from './lib/pipe/callback.pipe';
|
|
45
|
+
export * from './lib/pipe/is-selected-row.pipe';
|
|
46
|
+
export * from './lib/pipe/format-grid-view-value.pipe';
|
|
47
|
+
export * from './lib/pipe/callback2.pipe';
|
|
48
|
+
export * from './lib/pipe/get-src-upload-preview.pipe';
|