ngx-rs-ant 1.2.4 → 1.2.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/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 +7 -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/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/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 +28 -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 +27 -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 +266 -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/public-api.mjs +3 -1
- package/fesm2015/ngx-rs-ant.mjs +682 -2
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +682 -2
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +2 -1
- package/public-api.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-rs-ant",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
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';
|