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.
Files changed (36) hide show
  1. package/camunda-bpmn-editor/camunda-bpmn-editor.component.d.ts +15 -0
  2. package/camunda-bpmn-editor/camunda-bpmn-editor.module.d.ts +10 -0
  3. package/camunda-bpmn-editor/custom/config/CustomPropertiesProvider.d.ts +7 -0
  4. package/camunda-bpmn-editor/custom/config/index.d.ts +6 -0
  5. package/camunda-bpmn-editor/custom/config/properties/DescriptionProps.d.ts +6 -0
  6. package/camunda-bpmn-editor/custom/hide-other/GatewayReplaceMenuProvider.d.ts +4 -0
  7. package/camunda-bpmn-editor/custom/hide-other/HideOtherContextPadProvider.d.ts +55 -0
  8. package/camunda-bpmn-editor/custom/hide-other/HideOtherPaletteProvider.d.ts +5 -0
  9. package/camunda-bpmn-editor/custom/hide-other/index.d.ts +10 -0
  10. package/camunda-bpmn-editor/custom/translate/index.d.ts +7 -0
  11. package/camunda-bpmn-editor/custom/translate/translations.d.ts +3 -0
  12. package/camunda-bpmn-editor/custom/user-task/UserTaskContextPadProvider.d.ts +25 -0
  13. package/camunda-bpmn-editor/custom/user-task/UserTaskPaletteProvider.d.ts +20 -0
  14. package/camunda-bpmn-editor/custom/user-task/index.d.ts +8 -0
  15. package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.component.mjs +65 -0
  16. package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.module.mjs +32 -0
  17. package/esm2020/camunda-bpmn-editor/custom/config/CustomPropertiesProvider.mjs +28 -0
  18. package/esm2020/camunda-bpmn-editor/custom/config/descriptors/coast.json +24 -0
  19. package/esm2020/camunda-bpmn-editor/custom/config/index.mjs +6 -0
  20. package/esm2020/camunda-bpmn-editor/custom/config/properties/DescriptionProps.mjs +27 -0
  21. package/esm2020/camunda-bpmn-editor/custom/hide-other/GatewayReplaceMenuProvider.mjs +22 -0
  22. package/esm2020/camunda-bpmn-editor/custom/hide-other/HideOtherContextPadProvider.mjs +81 -0
  23. package/esm2020/camunda-bpmn-editor/custom/hide-other/HideOtherPaletteProvider.mjs +29 -0
  24. package/esm2020/camunda-bpmn-editor/custom/hide-other/index.mjs +10 -0
  25. package/esm2020/camunda-bpmn-editor/custom/translate/index.mjs +14 -0
  26. package/esm2020/camunda-bpmn-editor/custom/translate/translations.mjs +266 -0
  27. package/esm2020/camunda-bpmn-editor/custom/user-task/UserTaskContextPadProvider.mjs +54 -0
  28. package/esm2020/camunda-bpmn-editor/custom/user-task/UserTaskPaletteProvider.mjs +32 -0
  29. package/esm2020/camunda-bpmn-editor/custom/user-task/index.mjs +8 -0
  30. package/esm2020/public-api.mjs +3 -1
  31. package/fesm2015/ngx-rs-ant.mjs +682 -2
  32. package/fesm2015/ngx-rs-ant.mjs.map +1 -1
  33. package/fesm2020/ngx-rs-ant.mjs +682 -2
  34. package/fesm2020/ngx-rs-ant.mjs.map +1 -1
  35. package/package.json +2 -1
  36. 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.4",
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';