@eqproject/eqp-dynamic-module 2.0.2 → 2.0.4
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 +5 -5
- package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +44 -27
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -3
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +5 -5
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +5 -5
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +5 -4
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +5 -5
- package/esm2020/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.mjs +1 -1
- package/esm2020/lib/models/DynamicModuleViewModeEnum.mjs +7 -0
- package/esm2020/lib/models/dynamicModuleCompileConfig.model.mjs +4 -4
- package/esm2020/lib/models/dynamicModuleConfig.model.mjs +1 -1
- package/esm2020/lib/models/dynamicModuleConfiguratorConfig.model.mjs +3 -3
- package/esm2020/lib/models/dynamicModuleGeneralConfig.model.mjs +3 -3
- package/esm2020/lib/models/dynamicModuleListConfig.model.mjs +4 -8
- package/esm2020/lib/models/dynamicModuleListFormRecordActionsDefault.mjs +10 -0
- package/esm2020/lib/models/dynamicModuleRepairConfig.model.mjs +2 -2
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +76 -55
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +76 -55
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +16 -14
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +2 -2
- package/lib/components/private/dynamic-module-field/dynamic-module-field.component.d.ts +2 -2
- package/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.d.ts +2 -2
- package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +3 -2
- package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts +4 -4
- package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts +2 -2
- package/lib/models/DynamicModuleViewModeEnum.d.ts +5 -0
- package/lib/models/dynamicModuleCompileConfig.model.d.ts +6 -6
- package/lib/models/dynamicModuleConfig.model.d.ts +9 -9
- package/lib/models/dynamicModuleConfiguratorConfig.model.d.ts +3 -3
- package/lib/models/dynamicModuleGeneralConfig.model.d.ts +1 -1
- package/lib/models/dynamicModuleListConfig.model.d.ts +4 -4
- package/lib/models/dynamicModuleListFormRecordActionsDefault.d.ts +8 -0
- package/lib/models/dynamicModuleRepairConfig.model.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/esm2020/lib/models/DynamicMoDuleViewModeEnum.mjs +0 -7
- package/esm2020/lib/models/listFormRecordActionsDefault.mjs +0 -9
- package/lib/models/DynamicMoDuleViewModeEnum.d.ts +0 -5
- package/lib/models/listFormRecordActionsDefault.d.ts +0 -7
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
import { AfterViewInit, EventEmitter, OnInit } from "@angular/core";
|
|
2
2
|
import { Context } from "../../../models/context.model";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
3
|
+
import { DynamicModuleCompileConfig } from "../../../models/dynamicModuleCompileConfig.model";
|
|
4
|
+
import { DynamicModuleGeneralConfig } from "../../../models/dynamicModuleGeneralConfig.model";
|
|
5
|
+
import { DynamicModuleListConfig } from "../../../models/dynamicModuleListConfig.model";
|
|
6
|
+
import { DynamicModuleRepairConfig } from "../../../models/dynamicModuleRepairConfig.model";
|
|
7
|
+
import { DynamicModuleViewModeEnum } from "../../../models/DynamicModuleViewModeEnum";
|
|
8
8
|
import { EndPointConfiguration } from "../../../models/endPointConfiguration.model";
|
|
9
9
|
import { Form, FormTypeEnum } from "../../../models/form.model";
|
|
10
|
+
import { DynamicModuleListFormRecordActionsDefault } from "../../../models/dynamicModuleListFormRecordActionsDefault";
|
|
10
11
|
import { Record } from "../../../models/record.model";
|
|
11
12
|
import { UtilityHelperService } from "../../../services/utilityHelper.services";
|
|
12
13
|
import * as i0 from "@angular/core";
|
|
13
14
|
export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit {
|
|
14
15
|
private utilityHelperService;
|
|
15
|
-
configurations:
|
|
16
|
+
configurations: DynamicModuleGeneralConfig;
|
|
16
17
|
formID: string;
|
|
17
|
-
starterViewMode:
|
|
18
|
+
starterViewMode: DynamicModuleViewModeEnum;
|
|
18
19
|
userID: string;
|
|
19
20
|
showTitle: boolean;
|
|
20
|
-
|
|
21
|
+
showBackButton: boolean;
|
|
21
22
|
showSaveButton: boolean;
|
|
22
23
|
values: Array<Record>;
|
|
23
24
|
FormJSON: string;
|
|
25
|
+
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
24
26
|
context: Context;
|
|
25
27
|
/**
|
|
26
28
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
@@ -57,13 +59,13 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
57
59
|
form: Form;
|
|
58
60
|
lastform: Form;
|
|
59
61
|
FormTypeEnum: typeof FormTypeEnum;
|
|
60
|
-
|
|
62
|
+
DynamicModuleViewModeEnum: typeof DynamicModuleViewModeEnum;
|
|
61
63
|
selectedRecord: Record;
|
|
62
64
|
onlyView: boolean;
|
|
63
|
-
viewMode:
|
|
64
|
-
dynamicModuleCompileConfig:
|
|
65
|
-
dynamicModuleListConfig:
|
|
66
|
-
dynamicModuleRepairConfig:
|
|
65
|
+
viewMode: DynamicModuleViewModeEnum;
|
|
66
|
+
dynamicModuleCompileConfig: DynamicModuleCompileConfig;
|
|
67
|
+
dynamicModuleListConfig: DynamicModuleListConfig;
|
|
68
|
+
dynamicModuleRepairConfig: DynamicModuleRepairConfig;
|
|
67
69
|
loader: boolean;
|
|
68
70
|
constructor(utilityHelperService: UtilityHelperService);
|
|
69
71
|
ngOnInit(): Promise<void>;
|
|
@@ -119,5 +121,5 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
119
121
|
onDeleteRecord(record: Record): void;
|
|
120
122
|
onSaveJson(record: string): void;
|
|
121
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<EqpDynamicModuleComponent, never>;
|
|
122
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EqpDynamicModuleComponent, "eqp-dynamic-module", never, { "configurations": "configurations"; "formID": "formID"; "starterViewMode": "starterViewMode"; "userID": "userID"; "showTitle": "showTitle"; "showBackButton": "showBackButton"; "showSaveButton": "showSaveButton"; "values": "values"; "FormJSON": "FormJSON"; "defaultListActions": "defaultListActions"; }, { "saveRecord": "saveRecord"; "deleteRecord": "deleteRecord"; "duplicateRecord": "duplicateRecord"; "SaveJSON": "SaveJSON"; "afterSaveRecord": "afterSaveRecord"; "afterDeleteRecord": "afterDeleteRecord"; "afterDuplicateRecord": "afterDuplicateRecord"; }, never, never, false>;
|
|
123
125
|
}
|
|
@@ -7,7 +7,7 @@ import { Context } from '../../../models/context.model';
|
|
|
7
7
|
import { EndPointConfiguration } from '../../../models/endPointConfiguration.model';
|
|
8
8
|
import { ActionOnRecord, Form, FormScalarTypeEnum, FormTypeEnum } from '../../../models/form.model';
|
|
9
9
|
import { UtilityHelperService } from '../../../services/utilityHelper.services';
|
|
10
|
-
import {
|
|
10
|
+
import { DynamicModuleCompileConfig } from '../../../models/dynamicModuleCompileConfig.model';
|
|
11
11
|
import { DynamicModuleConfiguratorConfig } from '../../../models/dynamicModuleConfiguratorConfig.model';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
@@ -40,7 +40,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
40
40
|
UserID: number;
|
|
41
41
|
innerFormManagment: boolean;
|
|
42
42
|
innerFormRef: MatDialogRef<TemplateRef<any>>;
|
|
43
|
-
viewConfig:
|
|
43
|
+
viewConfig: DynamicModuleCompileConfig;
|
|
44
44
|
formFormGroup: UntypedFormGroup;
|
|
45
45
|
formCompleted: boolean;
|
|
46
46
|
previewForm: Form;
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
|
2
2
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { IBaseFieldComponent } from '../../../interfaces/iBaseFieldComponent.interface';
|
|
4
4
|
import { BaseField, FieldTypeEnum } from '../../../models/baseField.model';
|
|
5
|
-
import {
|
|
5
|
+
import { DynamicModuleListConfig } from '../../../models/dynamicModuleListConfig.model';
|
|
6
6
|
import { Form } from '../../../models/form.model';
|
|
7
7
|
import { Record } from '../../../models/record.model';
|
|
8
8
|
import { ListFormRecordComponent } from '../form-records/list-form-record/list-form-record.component';
|
|
@@ -13,7 +13,7 @@ export declare class DynamicModuleFieldComponent implements OnInit, IBaseFieldCo
|
|
|
13
13
|
form: Form;
|
|
14
14
|
record: Record;
|
|
15
15
|
recordChange: EventEmitter<Record>;
|
|
16
|
-
configList:
|
|
16
|
+
configList: DynamicModuleListConfig;
|
|
17
17
|
FieldTypeEnum: typeof FieldTypeEnum;
|
|
18
18
|
selectedInnerForm: Form;
|
|
19
19
|
selectedInnerFormRecord: Record;
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
|
2
2
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { IBaseFieldComponent } from '../../../interfaces/iBaseFieldComponent.interface';
|
|
4
4
|
import { BaseField, FieldTypeEnum } from '../../../models/baseField.model';
|
|
5
|
-
import {
|
|
5
|
+
import { DynamicModuleListConfig } from '../../../models/dynamicModuleListConfig.model';
|
|
6
6
|
import { Form } from '../../../models/form.model';
|
|
7
7
|
import { Record } from '../../../models/record.model';
|
|
8
8
|
import { ListFormRecordComponent } from '../form-records/list-form-record/list-form-record.component';
|
|
@@ -13,7 +13,7 @@ export declare class DynamicModuleFieldFixComponent implements OnInit, IBaseFiel
|
|
|
13
13
|
form: Form;
|
|
14
14
|
record: Record;
|
|
15
15
|
recordChange: EventEmitter<Record>;
|
|
16
|
-
configList:
|
|
16
|
+
configList: DynamicModuleListConfig;
|
|
17
17
|
FieldTypeEnum: typeof FieldTypeEnum;
|
|
18
18
|
selectedInnerForm: Form;
|
|
19
19
|
selectedInnerFormRecord: Record;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { DynamicModuleCompileConfig } from '../../../../models/dynamicModuleCompileConfig.model';
|
|
4
4
|
import { BaseField, FieldTypeEnum } from '../../../../models/baseField.model';
|
|
5
5
|
import { Form, FormScalarTypeEnum } from '../../../../models/form.model';
|
|
6
6
|
import { Record } from '../../../../models/record.model';
|
|
@@ -10,12 +10,13 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class AddFormRecordComponent implements OnInit {
|
|
11
11
|
private cdr;
|
|
12
12
|
utilityService: UtilityHelperService;
|
|
13
|
-
configurations:
|
|
13
|
+
configurations: DynamicModuleCompileConfig;
|
|
14
14
|
form: Form;
|
|
15
15
|
record: Record;
|
|
16
16
|
onlyView: boolean;
|
|
17
17
|
showTitle: boolean;
|
|
18
18
|
showSaveButton: boolean;
|
|
19
|
+
showBackButton: boolean;
|
|
19
20
|
userMode: boolean;
|
|
20
21
|
formForm: UntypedFormGroup;
|
|
21
22
|
fieldGroups: {
|
package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts
CHANGED
|
@@ -2,13 +2,13 @@ import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import { ConfigColumn, EqpTableComponent } from '@eqproject/eqp-table';
|
|
3
3
|
import { Form } from '../../../../models/form.model';
|
|
4
4
|
import { Record } from '../../../../models/record.model';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { DynamicModuleListFormRecordActionsDefault } from '../../../../models/dynamicModuleListFormRecordActionsDefault';
|
|
6
|
+
import { DynamicModuleListConfig } from '../../../../models/dynamicModuleListConfig.model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class ListFormRecordComponent implements OnInit, OnChanges {
|
|
9
|
-
configurations:
|
|
9
|
+
configurations: DynamicModuleListConfig;
|
|
10
10
|
form: Form;
|
|
11
|
-
defaultListActions:
|
|
11
|
+
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
12
12
|
showTitle: boolean;
|
|
13
13
|
tableRecords: EqpTableComponent;
|
|
14
14
|
columns: ConfigColumn[];
|
package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { DynamicModuleRepairConfig } from '../../../../models/dynamicModuleRepairConfig.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class RepairFormFieldsComponent implements OnInit {
|
|
5
|
-
configurations:
|
|
5
|
+
configurations: DynamicModuleRepairConfig;
|
|
6
6
|
onSaveJson: EventEmitter<string>;
|
|
7
7
|
formulaTextArea: ElementRef<HTMLTextAreaElement>;
|
|
8
8
|
constructor();
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class DynamicModuleCompileConfig {
|
|
2
2
|
/**
|
|
3
3
|
* Show/Hide module name in COMPILE/LIST
|
|
4
4
|
*/
|
|
5
5
|
showTitle: boolean;
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Show/Hide form save button
|
|
8
8
|
*/
|
|
9
|
-
|
|
9
|
+
showSaveButton: boolean;
|
|
10
10
|
/**
|
|
11
|
-
* Show/Hide form
|
|
11
|
+
* Show/Hide form back/annulla button
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
showBackButton: boolean;
|
|
14
14
|
/**
|
|
15
15
|
* Set id for save
|
|
16
16
|
*/
|
|
17
17
|
userID: string;
|
|
18
|
-
constructor(showTitle?: boolean,
|
|
18
|
+
constructor(showTitle?: boolean, showSaveButton?: boolean, showBackButton?: boolean, userID?: string);
|
|
19
19
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { DynamicModuleCompileConfig } from "./dynamicModuleCompileConfig.model";
|
|
2
|
+
import { DynamicModuleGeneralConfig } from "./dynamicModuleGeneralConfig.model";
|
|
3
|
+
import { DynamicModuleListConfig } from "./dynamicModuleListConfig.model";
|
|
4
|
+
import { DynamicModuleRepairConfig } from "./dynamicModuleRepairConfig.model";
|
|
5
5
|
export declare class DynamicModuleConfig {
|
|
6
|
-
dynamicModuleGeneralConfig:
|
|
7
|
-
dynamicModuleCompileConfig:
|
|
8
|
-
dynamicModuleListConfig:
|
|
9
|
-
dynamicModuleRepairConfig:
|
|
10
|
-
constructor(general:
|
|
6
|
+
dynamicModuleGeneralConfig: DynamicModuleGeneralConfig;
|
|
7
|
+
dynamicModuleCompileConfig: DynamicModuleCompileConfig;
|
|
8
|
+
dynamicModuleListConfig: DynamicModuleListConfig;
|
|
9
|
+
dynamicModuleRepairConfig: DynamicModuleRepairConfig;
|
|
10
|
+
constructor(general: DynamicModuleGeneralConfig, compile: DynamicModuleCompileConfig, list: DynamicModuleListConfig, repair: DynamicModuleRepairConfig);
|
|
11
11
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DynamicModuleConfiguratorSpecificConfig } from "./dynamicModuleConfiguratorSpecificConfig.model";
|
|
2
|
-
import {
|
|
2
|
+
import { DynamicModuleGeneralConfig } from "./dynamicModuleGeneralConfig.model";
|
|
3
3
|
export declare class DynamicModuleConfiguratorConfig {
|
|
4
|
-
dynamicModuleGeneralConfig:
|
|
4
|
+
dynamicModuleGeneralConfig: DynamicModuleGeneralConfig;
|
|
5
5
|
dynamicModuleConfiguratorSpecificConfig: DynamicModuleConfiguratorSpecificConfig;
|
|
6
|
-
constructor(general?:
|
|
6
|
+
constructor(general?: DynamicModuleGeneralConfig, specific?: DynamicModuleConfiguratorSpecificConfig);
|
|
7
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Context } from "./context.model";
|
|
2
2
|
import { EndPointConfiguration } from "./endPointConfiguration.model";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class DynamicModuleGeneralConfig {
|
|
4
4
|
/**
|
|
5
5
|
* Url del server da chiamare per recuperare, salvare o eliminare i record.
|
|
6
6
|
* Usato per creare la configurazione di default degli endpoint da chiamare.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DynamicModuleListFormRecordActionsDefault } from "./dynamicModuleListFormRecordActionsDefault";
|
|
2
2
|
import { Record } from "./record.model";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class DynamicModuleListConfig {
|
|
4
4
|
/**
|
|
5
5
|
* Show/Hide module name in COMPILE/LIST
|
|
6
6
|
*/
|
|
@@ -8,10 +8,10 @@ export declare class dynamicModuleListConfig {
|
|
|
8
8
|
/**
|
|
9
9
|
* Lista delle azioni di default da mostrare per visualizzare/modificare/duplicare/eliminare in LIST MODE
|
|
10
10
|
*/
|
|
11
|
-
defaultListActions:
|
|
11
|
+
defaultListActions: DynamicModuleListFormRecordActionsDefault;
|
|
12
12
|
/**
|
|
13
13
|
* Lista dei record da mostrare in LIST MODE
|
|
14
14
|
*/
|
|
15
15
|
values: Array<Record>;
|
|
16
|
-
constructor(showTitle?: boolean, values?: Array<Record>, defaultListActions?:
|
|
16
|
+
constructor(showTitle?: boolean, values?: Array<Record>, defaultListActions?: DynamicModuleListFormRecordActionsDefault);
|
|
17
17
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './lib/models/dynamicModuleGeneralConfig.model';
|
|
|
26
26
|
export * from './lib/models/dynamicModuleCompileConfig.model';
|
|
27
27
|
export * from './lib/models/dynamicModuleListConfig.model';
|
|
28
28
|
export * from './lib/models/dynamicModuleRepairConfig.model';
|
|
29
|
+
export * from './lib/models/dynamicModuleViewModeEnum';
|
|
30
|
+
export * from './lib/models/dynamicModuleListFormRecordActionsDefault';
|
|
29
31
|
export * from './lib/models/endPointConfiguration.model';
|
|
30
32
|
export * from './lib/models/entity.model';
|
|
31
33
|
export * from './lib/models/form.model';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export var DynamicMoDuleViewModeEnum;
|
|
2
|
-
(function (DynamicMoDuleViewModeEnum) {
|
|
3
|
-
DynamicMoDuleViewModeEnum[DynamicMoDuleViewModeEnum["COMPILE"] = 1] = "COMPILE";
|
|
4
|
-
DynamicMoDuleViewModeEnum[DynamicMoDuleViewModeEnum["LIST"] = 2] = "LIST";
|
|
5
|
-
DynamicMoDuleViewModeEnum[DynamicMoDuleViewModeEnum["REPAIR"] = 3] = "REPAIR";
|
|
6
|
-
})(DynamicMoDuleViewModeEnum || (DynamicMoDuleViewModeEnum = {}));
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRHluYW1pY01vRHVsZVZpZXdNb2RlRW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VxcC1keW5hbWljLW1vZHVsZS9zcmMvbGliL21vZGVscy9EeW5hbWljTW9EdWxlVmlld01vZGVFbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHlCQUlYO0FBSkQsV0FBWSx5QkFBeUI7SUFDakMsK0VBQWEsQ0FBQTtJQUNiLHlFQUFVLENBQUE7SUFDViw2RUFBWSxDQUFBO0FBQ2hCLENBQUMsRUFKVyx5QkFBeUIsS0FBekIseUJBQXlCLFFBSXBDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gRHluYW1pY01vRHVsZVZpZXdNb2RlRW51bSB7XHJcbiAgICBcIkNPTVBJTEVcIiA9IDEsXHJcbiAgICBcIkxJU1RcIiA9IDIsXHJcbiAgICBcIlJFUEFJUlwiID0gMyxcclxufSJdfQ==
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export class listFormRecordActionsDefault {
|
|
2
|
-
constructor(view = true, edit = true, duplicate = true, del = true) {
|
|
3
|
-
this.view = view;
|
|
4
|
-
this.edit = edit;
|
|
5
|
-
this.duplicate = duplicate;
|
|
6
|
-
this.delete = del;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlzdEZvcm1SZWNvcmRBY3Rpb25zRGVmYXVsdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VxcC1keW5hbWljLW1vZHVsZS9zcmMvbGliL21vZGVscy9saXN0Rm9ybVJlY29yZEFjdGlvbnNEZWZhdWx0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyw0QkFBNEI7SUFNdkMsWUFBWSxPQUFnQixJQUFJLEVBQUUsT0FBZ0IsSUFBSSxFQUFFLFlBQXFCLElBQUksRUFBRSxNQUFlLElBQUk7UUFDcEcsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUE7UUFDaEIsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUE7UUFDaEIsSUFBSSxDQUFDLFNBQVMsR0FBRyxTQUFTLENBQUE7UUFDMUIsSUFBSSxDQUFDLE1BQU0sR0FBRyxHQUFHLENBQUE7SUFDbkIsQ0FBQztDQUVGIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIGxpc3RGb3JtUmVjb3JkQWN0aW9uc0RlZmF1bHQge1xyXG4gIHZpZXc6IGJvb2xlYW5cclxuICBlZGl0OiBib29sZWFuXHJcbiAgZHVwbGljYXRlOiBib29sZWFuXHJcbiAgZGVsZXRlOiBib29sZWFuXHJcblxyXG4gIGNvbnN0cnVjdG9yKHZpZXc6IGJvb2xlYW4gPSB0cnVlLCBlZGl0OiBib29sZWFuID0gdHJ1ZSwgZHVwbGljYXRlOiBib29sZWFuID0gdHJ1ZSwgZGVsOiBib29sZWFuID0gdHJ1ZSl7XHJcbiAgICB0aGlzLnZpZXcgPSB2aWV3XHJcbiAgICB0aGlzLmVkaXQgPSBlZGl0XHJcbiAgICB0aGlzLmR1cGxpY2F0ZSA9IGR1cGxpY2F0ZVxyXG4gICAgdGhpcy5kZWxldGUgPSBkZWxcclxuICB9XHJcblxyXG59XHJcbiJdfQ==
|