@acorex/platform 19.1.13 → 19.1.14
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/common/lib/common.module.d.ts +2 -1
- package/fesm2022/acorex-platform-common.mjs +18 -7
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +48 -3
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-filters.mjs +46 -4
- package/fesm2022/acorex-platform-layout-filters.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-BDjcOo6R.mjs → acorex-platform-themes-default-entity-master-list-view.component-CWnQBjEa.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CWnQBjEa.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-widgets.mjs +130 -62
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/entity/lib/entity-master-list.viewmodel.d.ts +4 -3
- package/layout/filters/lib/filters.viewmodel.d.ts +1 -0
- package/package.json +1 -1
- package/widgets/lib/widgets/filters/boolean-filter/boolean-filter-widget-edit.component.d.ts +2 -1
- package/widgets/lib/widgets/filters/string-filter/string-filter-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts +10 -8
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-types.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/grid/grid-widget-designer.component.d.ts +2 -2
- package/widgets/lib/widgets/property-editors/advanced-grid-options/advanced-grid-options-widget-editor.component.d.ts +4 -4
- package/widgets/lib/widgets/property-editors/flex-options/flex-options-widget-editor.component.d.ts +2 -2
- package/widgets/lib/widgets/property-editors/grid-options/grid-options-widget-editor.component.d.ts +4 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BDjcOo6R.mjs.map +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AXPWorkflowService } from '@acorex/platform/workflow';
|
|
1
2
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
3
|
import { AXPAppStartUpService } from './app/app-startup.service';
|
|
3
4
|
import { AXPDataSeederService } from './data';
|
|
@@ -18,7 +19,7 @@ export declare class AXPCommonModule {
|
|
|
18
19
|
/**
|
|
19
20
|
* @ignore
|
|
20
21
|
*/
|
|
21
|
-
constructor(instances: any[], appInitService: AXPAppStartUpService, settingsService: AXPSettingService, seederService: AXPDataSeederService);
|
|
22
|
+
constructor(instances: any[], appInitService: AXPAppStartUpService, settingsService: AXPSettingService, seederService: AXPDataSeederService, workflowService: AXPWorkflowService);
|
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommonModule, never>;
|
|
23
24
|
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPCommonModule, never, [typeof i1.AXPWorkflowModule, typeof i2.AXPopupModule, typeof i3.AXDateTimeModule, typeof i4.AXToastModule], [typeof i5.RouterModule]>;
|
|
24
25
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXPCommonModule>;
|
|
@@ -2349,7 +2349,7 @@ class AXPCommonModule {
|
|
|
2349
2349
|
/**
|
|
2350
2350
|
* @ignore
|
|
2351
2351
|
*/
|
|
2352
|
-
constructor(instances, appInitService, settingsService, seederService) {
|
|
2352
|
+
constructor(instances, appInitService, settingsService, seederService, workflowService) {
|
|
2353
2353
|
instances.forEach((f) => {
|
|
2354
2354
|
f();
|
|
2355
2355
|
});
|
|
@@ -2369,8 +2369,19 @@ class AXPCommonModule {
|
|
|
2369
2369
|
await seederService.seed();
|
|
2370
2370
|
},
|
|
2371
2371
|
});
|
|
2372
|
+
appInitService.registerTask({
|
|
2373
|
+
name: 'Version',
|
|
2374
|
+
statusText: 'Check New Version...',
|
|
2375
|
+
run: async () => {
|
|
2376
|
+
if (!(await settingsService.scope(AXPSettingScope.User).get('is-see-check-version'))) {
|
|
2377
|
+
setTimeout(() => {
|
|
2378
|
+
workflowService.execute('change-log-version');
|
|
2379
|
+
}, 600);
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2382
|
+
});
|
|
2372
2383
|
}
|
|
2373
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPCommonModule, deps: [{ token: 'AXPCommonModuleFactory' }, { token: AXPAppStartUpService }, { token: AXPSettingService }, { token: AXPDataSeederService }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2384
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPCommonModule, deps: [{ token: 'AXPCommonModuleFactory' }, { token: AXPAppStartUpService }, { token: AXPSettingService }, { token: AXPDataSeederService }, { token: i4.AXPWorkflowService }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2374
2385
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXPCommonModule, imports: [i4.AXPWorkflowModule, AXPopupModule,
|
|
2375
2386
|
AXDateTimeModule,
|
|
2376
2387
|
AXToastModule], exports: [RouterModule] }); }
|
|
@@ -2405,8 +2416,8 @@ class AXPCommonModule {
|
|
|
2405
2416
|
'show-toast': AXPToastAction,
|
|
2406
2417
|
},
|
|
2407
2418
|
workflows: {
|
|
2408
|
-
|
|
2409
|
-
}
|
|
2419
|
+
navigate: AXPNavigateWorkflow,
|
|
2420
|
+
},
|
|
2410
2421
|
}),
|
|
2411
2422
|
AXPopupModule,
|
|
2412
2423
|
AXDateTimeModule,
|
|
@@ -2423,8 +2434,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2423
2434
|
'show-toast': AXPToastAction,
|
|
2424
2435
|
},
|
|
2425
2436
|
workflows: {
|
|
2426
|
-
|
|
2427
|
-
}
|
|
2437
|
+
navigate: AXPNavigateWorkflow,
|
|
2438
|
+
},
|
|
2428
2439
|
}),
|
|
2429
2440
|
AXPopupModule,
|
|
2430
2441
|
AXDateTimeModule,
|
|
@@ -2460,7 +2471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2460
2471
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2461
2472
|
type: Inject,
|
|
2462
2473
|
args: ['AXPCommonModuleFactory']
|
|
2463
|
-
}] }, { type: AXPAppStartUpService }, { type: AXPSettingService }, { type: AXPDataSeederService }] });
|
|
2474
|
+
}] }, { type: AXPAppStartUpService }, { type: AXPSettingService }, { type: AXPDataSeederService }, { type: i4.AXPWorkflowService }] });
|
|
2464
2475
|
|
|
2465
2476
|
const ENVIRONMENT = new InjectionToken('ENVIRONMENT');
|
|
2466
2477
|
const AXP_PLATFORM_CONFIG_TOKEN = new InjectionToken('AXP_PLATFORM_CONFIG_TOKEN', {
|