@acorex/platform 19.3.0-next.3 → 19.3.0-next.5
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/auth/lib/permission/index.d.ts +2 -1
- package/auth/lib/permission/permission-definition.builder.d.ts +24 -0
- package/auth/lib/permission/permission-definition.service.d.ts +20 -0
- package/auth/lib/permission/permission.types.d.ts +10 -3
- package/common/lib/settings/index.d.ts +1 -1
- package/core/lib/types/actions.types.d.ts +282 -0
- package/core/lib/types/index.d.ts +1 -0
- package/fesm2022/acorex-platform-auth.mjs +114 -20
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +272 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +9 -5
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-CnqS3y7P.mjs → acorex-platform-themes-default-entity-master-create-view.component-ClHHAoed.mjs} +1 -2
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-ClHHAoed.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-widgets.mjs +349 -87
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +1 -0
- package/package.json +2 -1
- package/widgets/lib/shared/multi-language-component/popup/select-language.popup.d.ts +23 -0
- package/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.d.ts +12 -0
- package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +11 -0
- package/widgets/lib/widgets/editors/text/text-box-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/filters/number-filter/number-filter-widget-edit.component.d.ts +1 -0
- package/auth/lib/permission/permission.service.d.ts +0 -18
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-CnqS3y7P.mjs.map +0 -1
- /package/common/lib/settings/{setting-definition.provider.d.ts → setting-definition.service.d.ts} +0 -0
|
@@ -17,6 +17,7 @@ export declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponen
|
|
|
17
17
|
private readonly translateService;
|
|
18
18
|
protected expose: import("@angular/core").Signal<string | any[] | undefined>;
|
|
19
19
|
protected entity: import("@angular/core").Signal<string>;
|
|
20
|
+
protected disabled: import("@angular/core").Signal<string>;
|
|
20
21
|
protected customFilter: import("@angular/core").Signal<AXDataSourceFilterOption>;
|
|
21
22
|
protected multiple: import("@angular/core").Signal<boolean>;
|
|
22
23
|
protected textField: import("@angular/core").Signal<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "19.3.0-next.
|
|
3
|
+
"version": "19.3.0-next.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19.0.0",
|
|
6
6
|
"@angular/core": ">=19.0.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"oidc-client-ts": "^3.0.1",
|
|
19
19
|
"jspdf": "^2.5.1",
|
|
20
20
|
"dom-to-image": "^2.6.0",
|
|
21
|
+
"d3": "^7.9.0",
|
|
21
22
|
"signature_pad": "^4.1.7",
|
|
22
23
|
"@acorex/styles": ">=19.0.0",
|
|
23
24
|
"@acorex/core": ">=19.0.0",
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXBasePageComponent } from '@acorex/components/page';
|
|
2
|
+
import { AXPRegionalService } from '@acorex/platform/common';
|
|
3
|
+
import { AXPLayoutContextChangeEvent, AXPWidgetNode } from '@acorex/platform/layout/builder';
|
|
4
|
+
import { OnInit, WritableSignal } from '@angular/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AXPSelectLanguagePopup extends AXBasePageComponent implements OnInit {
|
|
7
|
+
protected regionalService: AXPRegionalService;
|
|
8
|
+
currentLanguage: string;
|
|
9
|
+
values: {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
node: AXPWidgetNode;
|
|
13
|
+
mode: string;
|
|
14
|
+
context: {};
|
|
15
|
+
constructor();
|
|
16
|
+
languageList: WritableSignal<any[]>;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
protected handleContextChanged(e: AXPLayoutContextChangeEvent, language: any): void;
|
|
19
|
+
private getAvailableLanguages;
|
|
20
|
+
onSaveButtonClick(): Promise<void>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPSelectLanguagePopup, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPSelectLanguagePopup, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -1,11 +1,23 @@
|
|
|
1
|
+
import { AXValueChangedEvent } from '@acorex/components/common';
|
|
1
2
|
import { AXPValueWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AXPLargeTextWidgetEditComponent extends AXPValueWidgetComponent<string> {
|
|
4
5
|
protected multiple: import("@angular/core").Signal<boolean>;
|
|
6
|
+
protected multiLanguage: import("@angular/core").Signal<boolean>;
|
|
5
7
|
protected disabled: import("@angular/core").Signal<boolean>;
|
|
6
8
|
protected clearButton: import("@angular/core").Signal<boolean>;
|
|
7
9
|
protected placeholder: import("@angular/core").Signal<string>;
|
|
10
|
+
private popupService;
|
|
11
|
+
private translationService;
|
|
12
|
+
protected translatedValues: {
|
|
13
|
+
[key: string]: string;
|
|
14
|
+
};
|
|
15
|
+
currentLanguage: string;
|
|
8
16
|
private get __class();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
handleValueChange(e: AXValueChangedEvent): void;
|
|
19
|
+
protected openMultiLanguagePopup(): void;
|
|
20
|
+
private getCurrentLanguage;
|
|
9
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLargeTextWidgetEditComponent, never>;
|
|
10
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPLargeTextWidgetEditComponent, "axp-large-text-box-widget", never, { "disabled": { "alias": "disabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
23
|
}
|
|
@@ -4,12 +4,23 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class AXPRichTextWidgetEditComponent extends AXPValueWidgetComponent<any> {
|
|
5
5
|
protected placeholder: import("@angular/core").Signal<string>;
|
|
6
6
|
protected disabled: import("@angular/core").Signal<boolean>;
|
|
7
|
+
protected multiLanguage: import("@angular/core").Signal<boolean>;
|
|
7
8
|
protected minLineCount: import("@angular/core").Signal<number>;
|
|
8
9
|
protected maxLineCount: import("@angular/core").Signal<number>;
|
|
9
10
|
protected isFitLine: import("@angular/core").Signal<boolean>;
|
|
10
11
|
protected setWysiwyg(e: AXValueChangedEvent): void;
|
|
12
|
+
private popupService;
|
|
13
|
+
private translationService;
|
|
14
|
+
protected translatedValues: {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
currentLanguage: string;
|
|
11
18
|
protected getLinePx(count: number): string;
|
|
19
|
+
ngOnInit(): void;
|
|
12
20
|
private get __class();
|
|
21
|
+
handleTranslatedValues(): Promise<void>;
|
|
22
|
+
protected openMultiLanguagePopup(): void;
|
|
23
|
+
private getCurrentLanguage;
|
|
13
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPRichTextWidgetEditComponent, never>;
|
|
14
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPRichTextWidgetEditComponent, "axp-rich-text-widget", never, {}, {}, never, never, true, never>;
|
|
15
26
|
}
|
|
@@ -3,14 +3,24 @@ import { AXPValueWidgetComponent } from '@acorex/platform/layout/builder';
|
|
|
3
3
|
import { Signal } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AXPTextBoxWidgetEditComponent extends AXPValueWidgetComponent<any> {
|
|
6
|
+
private popupService;
|
|
7
|
+
private translationService;
|
|
6
8
|
protected multiple: Signal<boolean>;
|
|
9
|
+
protected multiLanguage: Signal<boolean>;
|
|
7
10
|
protected hasClearButton: Signal<boolean>;
|
|
8
11
|
protected disabled: Signal<boolean>;
|
|
9
12
|
protected placeholder: Signal<string>;
|
|
13
|
+
protected translatedValues: {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
};
|
|
10
16
|
protected internalValue: Signal<string[]>;
|
|
17
|
+
currentLanguage: string;
|
|
18
|
+
ngOnInit(): void;
|
|
11
19
|
protected handleValueChange(e: AXValueChangedEvent, i: number): void;
|
|
12
20
|
protected addItem(): void;
|
|
13
21
|
protected deleteItem(i: number): void;
|
|
22
|
+
protected openMultiLanguagePopup(): void;
|
|
23
|
+
private getCurrentLanguage;
|
|
14
24
|
private get __class();
|
|
15
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPTextBoxWidgetEditComponent, never>;
|
|
16
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPTextBoxWidgetEditComponent, "axp-text-box-widget", never, {}, {}, never, never, true, never>;
|
|
@@ -5,6 +5,7 @@ export declare class AXPNumberFilterWidgetEditComponent extends AXPValueWidgetCo
|
|
|
5
5
|
protected value: import("@angular/core").Signal<any>;
|
|
6
6
|
protected operation: import("@angular/core").Signal<any>;
|
|
7
7
|
protected placeholder: import("@angular/core").Signal<any>;
|
|
8
|
+
protected seprator: import("@angular/core").Signal<string>;
|
|
8
9
|
handleValueChange(e: AXValueChangedEvent, type: 'self' | 'from' | 'to'): void;
|
|
9
10
|
handleOperationChange(e: unknown): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPNumberFilterWidgetEditComponent, never>;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { AXPPermissionDefinition } from './permission.types';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export interface AXPPermissionProvider {
|
|
5
|
-
provide(context: AXPPermissionProviderContext): Promise<void>;
|
|
6
|
-
}
|
|
7
|
-
export interface AXPPermissionProviderContext {
|
|
8
|
-
addPermissions(permissions: AXPPermissionDefinition[]): void;
|
|
9
|
-
}
|
|
10
|
-
export declare const AXP_PERMISSION_PROVIDER: InjectionToken<AXPPermissionProvider[]>;
|
|
11
|
-
export declare class AXPPermissionProviderService {
|
|
12
|
-
private providers;
|
|
13
|
-
private cache;
|
|
14
|
-
permissions(): Promise<AXPPermissionDefinition[]>;
|
|
15
|
-
private createPermissionProviderContext;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPPermissionProviderService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXPPermissionProviderService>;
|
|
18
|
-
}
|
package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-CnqS3y7P.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"acorex-platform-themes-default-entity-master-create-view.component-CnqS3y7P.mjs","sources":["../../../../libs/platform/themes/default/src/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.ts","../../../../libs/platform/themes/default/src/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.html"],"sourcesContent":["import { AXButtonModule } from '@acorex/components/button';\nimport { AXDecoratorModule } from '@acorex/components/decorators';\nimport { AXDialogModule } from '@acorex/components/dialog';\nimport { AXDropdownButtonModule } from '@acorex/components/dropdown-button';\nimport { AXFormComponent, AXFormModule } from '@acorex/components/form';\nimport { AXLabelModule } from '@acorex/components/label';\nimport { AXLoadingModule } from '@acorex/components/loading';\nimport { AXBasePageComponent } from '@acorex/components/page';\nimport { AXTabsModule } from '@acorex/components/tabs';\nimport { AXTooltipModule } from '@acorex/components/tooltip';\nimport { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, inject, viewChild } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\n\nimport { AXValidationModule } from '@acorex/core/validation';\n\nimport { AXDropdownModule } from '@acorex/components/dropdown';\nimport { AXTranslationModule } from '@acorex/core/translation';\nimport { AXPGridLayoutDirective } from '@acorex/platform/common';\nimport {\n AXPLayoutBuilderModule,\n AXPLayoutContextChangeEvent,\n AXPWidgetContainerComponent,\n} from '@acorex/platform/layout/builder';\nimport { AXPEntityMasterCreateViewModel } from '@acorex/platform/layout/entity';\nimport { AXPWidgetsModule } from '@acorex/platform/widgets';\nimport { AXPWorkflowService } from '@acorex/platform/workflow';\n\n@Component({\n templateUrl: './entity-master-create-view.component.html',\n imports: [\n CommonModule,\n FormsModule,\n AXFormModule,\n AXDecoratorModule,\n CommonModule,\n AXButtonModule,\n AXDialogModule,\n AXLoadingModule,\n AXTabsModule,\n AXTooltipModule,\n AXValidationModule,\n AXLabelModule,\n AXDropdownModule,\n AXDropdownButtonModule,\n AXTranslationModule,\n //\n AXPLayoutBuilderModule,\n AXPWidgetsModule,\n AXPGridLayoutDirective,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AXPEntityMasterCreateViewComponent extends AXBasePageComponent {\n protected vm!: AXPEntityMasterCreateViewModel;\n\n private container = viewChild(AXPWidgetContainerComponent);\n\n protected workflow = inject(AXPWorkflowService);\n\n ngAfterViewInit() {\n this.vm.builder = this.container()!.builderService;\n this.vm.builder = this.container()!.builderService;\n }\n\n protected handleCloseClick() {\n this.close();\n }\n\n protected async handleBackClick() {\n //await this.vm.executeCommand('back');\n }\n\n protected async handleNextClick(form: AXFormComponent) {\n // const formResult = await form.validate();\n // if (formResult.result) {\n // await this.vm.executeCommand('next');\n // }\n }\n\n protected async handleSaveClick(form: AXFormComponent) {\n const formResult = await form.validate();\n if (formResult.result) {\n try {\n const record = await this.vm.save();\n\n this.close({ save: true, recordId: record?.id, item: record, redirect: this.vm.redirect() });\n } catch (error) {\n console.log(error);\n }\n }\n }\n\n protected async handleSaveAndNewClick(form: AXFormComponent) {\n const formResult = await form.validate();\n if (formResult.result) {\n try {\n const record = await this.vm.save();\n this.close({ save: true, recordId: record?.id, item: record, redirect: false });\n await this.vm.createNewOne();\n } catch (error) {\n console.log(error);\n }\n }\n }\n\n protected async handleContextChange(e: AXPLayoutContextChangeEvent) {\n this.vm.context.set(e.data);\n }\n}\n","<div>\n <axp-widgets-container [context]=\"vm.context()\" (onContextChanged)=\"handleContextChange($event)\">\n <ax-form class=\"ax-flex ax-flex-col ax-gap-6 ax-p-4 ax-pb-8\" #form [messageStyle]=\"'bottom'\" [updateOn]=\"'blur'\">\n <!-- Begin Sections -->\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\n @for(section of vm.sections(); track section.name()) {\n <div class=\"ax-col-span-12\">\n <ax-form #form>\n @if(vm.sections().length>1 && !section.description()) {\n <div class=\"ax-pb-4\">\n <span class=\"ax-font-bold ax-text-xl\">{{ section.title() | translate | async }}</span>\n @if(section.description()) {\n <p class=\"ax-text-sm ax-text-gray-500\">{{ section.description() }}</p>\n }\n </div>\n }\n <div class=\"ax-card-body !ax-grid !ax-grid-cols-12 !ax-gap-4\">\n @for(attr of section.elements(); track $index) {\n <ax-form-field class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\"\n [class.ax-hidden]=\"widget.options()['visibility'] == false\">\n <ax-label class=\"ax-font-semibold ax-text-sm\" [required]=\"attr.isRequired()\">{{\n attr.title() | translate | async\n }}</ax-label>\n <ng-container axp-widget-renderer [node]=\"attr.node()\" [mode]=\"'edit'\"\n #widget=\"widgetRenderer\"></ng-container>\n </ax-form-field>\n }\n </div>\n </ax-form>\n </div>\n }\n </div>\n <!-- Finish Sections -->\n </ax-form>\n </axp-widgets-container>\n <ax-footer>\n <ax-suffix>\n <ax-button look=\"solid\" [color]=\"'default'\" [text]=\"'cancel' | translate | async\" (onClick)=\"handleCloseClick()\">\n </ax-button>\n @if(vm.canCreateNewOne()) {\n <ax-dropdown-button [disabled]=\"vm.isInProgress()\" color=\"primary\" [text]=\"'save' | translate | async\"\n look=\"solid\" (onClick)=\"handleSaveClick(form)\">\n <ax-loading *ngIf=\"vm.isInProgress()\"></ax-loading>\n <ax-button-item-list>\n <ax-button-item [text]=\"('save' | translate | async) + ' ' + ('create-new' | translate | async)\"\n (onClick)=\"handleSaveAndNewClick(form)\">\n </ax-button-item>\n </ax-button-item-list>\n </ax-dropdown-button>\n }@else {\n <ax-button look=\"solid\" color=\"primary\" [text]=\"'save' | translate | async\" (onClick)=\"handleSaveClick(form)\">\n <ax-loading *ngIf=\"vm.isInProgress()\"></ax-loading>\n </ax-button>\n }\n </ax-suffix>\n </ax-footer>\n</div>"],"names":["i8","i9"],"mappings":"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"}
|
/package/common/lib/settings/{setting-definition.provider.d.ts → setting-definition.service.d.ts}
RENAMED
|
File without changes
|