ngx-rs-ant 1.2.4 → 1.2.6
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/box-container/box-container.component.d.ts +1 -1
- package/camunda-bpmn-editor/camunda-bpmn-editor.component.d.ts +15 -0
- package/camunda-bpmn-editor/camunda-bpmn-editor.module.d.ts +10 -0
- package/camunda-bpmn-editor/custom/config/CustomPropertiesProvider.d.ts +8 -0
- package/camunda-bpmn-editor/custom/config/index.d.ts +6 -0
- package/camunda-bpmn-editor/custom/config/properties/DescriptionProps.d.ts +6 -0
- package/camunda-bpmn-editor/custom/config/util/ElementUtils.d.ts +1 -0
- package/camunda-bpmn-editor/custom/hide-other/GatewayReplaceMenuProvider.d.ts +4 -0
- package/camunda-bpmn-editor/custom/hide-other/HideOtherContextPadProvider.d.ts +55 -0
- package/camunda-bpmn-editor/custom/hide-other/HideOtherPaletteProvider.d.ts +5 -0
- package/camunda-bpmn-editor/custom/hide-other/index.d.ts +10 -0
- package/camunda-bpmn-editor/custom/translate/index.d.ts +7 -0
- package/camunda-bpmn-editor/custom/translate/translations.d.ts +3 -0
- package/camunda-bpmn-editor/custom/user-task/UserTaskContextPadProvider.d.ts +25 -0
- package/camunda-bpmn-editor/custom/user-task/UserTaskPaletteProvider.d.ts +20 -0
- package/camunda-bpmn-editor/custom/user-task/index.d.ts +8 -0
- package/data-detail/data-detail.component.d.ts +2 -1
- package/dynamic-params/dynamic-params.component.d.ts +2 -1
- package/esm2020/box-container/PluginManager.mjs +2 -2
- package/esm2020/box-container/box-container.component.mjs +4 -2
- package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.component.mjs +65 -0
- package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.module.mjs +32 -0
- package/esm2020/camunda-bpmn-editor/custom/config/CustomPropertiesProvider.mjs +31 -0
- package/esm2020/camunda-bpmn-editor/custom/config/descriptors/coast.json +24 -0
- package/esm2020/camunda-bpmn-editor/custom/config/index.mjs +6 -0
- package/esm2020/camunda-bpmn-editor/custom/config/properties/DescriptionProps.mjs +28 -0
- package/esm2020/camunda-bpmn-editor/custom/config/util/ElementUtils.mjs +31 -0
- package/esm2020/camunda-bpmn-editor/custom/hide-other/GatewayReplaceMenuProvider.mjs +22 -0
- package/esm2020/camunda-bpmn-editor/custom/hide-other/HideOtherContextPadProvider.mjs +81 -0
- package/esm2020/camunda-bpmn-editor/custom/hide-other/HideOtherPaletteProvider.mjs +29 -0
- package/esm2020/camunda-bpmn-editor/custom/hide-other/index.mjs +10 -0
- package/esm2020/camunda-bpmn-editor/custom/translate/index.mjs +14 -0
- package/esm2020/camunda-bpmn-editor/custom/translate/translations.mjs +276 -0
- package/esm2020/camunda-bpmn-editor/custom/user-task/UserTaskContextPadProvider.mjs +54 -0
- package/esm2020/camunda-bpmn-editor/custom/user-task/UserTaskPaletteProvider.mjs +32 -0
- package/esm2020/camunda-bpmn-editor/custom/user-task/index.mjs +8 -0
- package/esm2020/data-detail/data-detail.component.mjs +4 -2
- package/esm2020/dynamic-params/dynamic-params.component.mjs +8 -3
- package/esm2020/form/form.component.mjs +5 -3
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/ngx-rs-ant.mjs +743 -9
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +743 -9
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/form/form.component.d.ts +2 -1
- package/package.json +2 -1
- package/public-api.d.ts +2 -0
package/form/form.component.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class FormComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
10
10
|
oid?: any;
|
|
11
11
|
copyOid?: any;
|
|
12
12
|
template?: any;
|
|
13
|
+
params?: any;
|
|
13
14
|
readonly: boolean;
|
|
14
15
|
config: any;
|
|
15
16
|
model: any;
|
|
@@ -27,5 +28,5 @@ export declare class FormComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
27
28
|
validate(): Promise<boolean>;
|
|
28
29
|
submit(): void;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "rs-form", never, { "tenant": "tenant"; "className": "className"; "oid": "oid"; "copyOid": "copyOid"; "template": "template"; "readonly": "readonly"; }, { "submitCallback": "submitCallback"; }, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "rs-form", never, { "tenant": "tenant"; "className": "className"; "oid": "oid"; "copyOid": "copyOid"; "template": "template"; "params": "params"; "readonly": "readonly"; }, { "submitCallback": "submitCallback"; }, never, never, false, never>;
|
|
31
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-rs-ant",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "RsAnt components based on Angular and DevExtreme",
|
|
6
6
|
"exports": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@angular/common": "^15.2.0",
|
|
24
24
|
"@angular/core": "^15.2.0",
|
|
25
|
+
"camunda-bpmn-js": "^3.8.0",
|
|
25
26
|
"coast-plugin-register": "^2.1.8",
|
|
26
27
|
"devextreme": "^23.1.4",
|
|
27
28
|
"devextreme-angular": "^23.1.4",
|
package/public-api.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export * from './box-container/box-item/item-style/item-style.component';
|
|
|
3
3
|
export * from './box-container/box-container.component';
|
|
4
4
|
export * from './box-container/box-container.module';
|
|
5
5
|
export * from './box-container/PluginManager';
|
|
6
|
+
export * from './camunda-bpmn-editor/camunda-bpmn-editor.component';
|
|
7
|
+
export * from './camunda-bpmn-editor/camunda-bpmn-editor.module';
|
|
6
8
|
export * from './code-editor/code-editor.component';
|
|
7
9
|
export * from './code-editor/code-editor.module';
|
|
8
10
|
export * from './data-grid/data-grid.component';
|