@valtimo/process-link 0.0.0

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 (86) hide show
  1. package/README.md +32 -0
  2. package/fesm2022/valtimo-process-link.mjs +2985 -0
  3. package/fesm2022/valtimo-process-link.mjs.map +1 -0
  4. package/index.d.ts +6 -0
  5. package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts +12 -0
  6. package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts.map +1 -0
  7. package/lib/components/choose-process-link-type/index.d.ts +2 -0
  8. package/lib/components/choose-process-link-type/index.d.ts.map +1 -0
  9. package/lib/components/form-display-configuration/form-display-configuration.component.d.ts +42 -0
  10. package/lib/components/form-display-configuration/form-display-configuration.component.d.ts.map +1 -0
  11. package/lib/components/form-flow/form-flow.component.d.ts +54 -0
  12. package/lib/components/form-flow/form-flow.component.d.ts.map +1 -0
  13. package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts +30 -0
  14. package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts.map +1 -0
  15. package/lib/components/form-flow-configuration-container/index.d.ts +2 -0
  16. package/lib/components/form-flow-configuration-container/index.d.ts.map +1 -0
  17. package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts +34 -0
  18. package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts.map +1 -0
  19. package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts +48 -0
  20. package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts.map +1 -0
  21. package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts +39 -0
  22. package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts.map +1 -0
  23. package/lib/components/process-link/process-link.component.d.ts +14 -0
  24. package/lib/components/process-link/process-link.component.d.ts.map +1 -0
  25. package/lib/components/process-link-modal/process-link-modal.component.d.ts +38 -0
  26. package/lib/components/process-link-modal/process-link-modal.component.d.ts.map +1 -0
  27. package/lib/components/select-form/index.d.ts +2 -0
  28. package/lib/components/select-form/index.d.ts.map +1 -0
  29. package/lib/components/select-form/select-form.component.d.ts +42 -0
  30. package/lib/components/select-form/select-form.component.d.ts.map +1 -0
  31. package/lib/components/select-form-flow/index.d.ts +2 -0
  32. package/lib/components/select-form-flow/index.d.ts.map +1 -0
  33. package/lib/components/select-form-flow/select-form-flow.component.d.ts +40 -0
  34. package/lib/components/select-form-flow/select-form-flow.component.d.ts.map +1 -0
  35. package/lib/components/select-plugin-action/select-plugin-action.component.d.ts +29 -0
  36. package/lib/components/select-plugin-action/select-plugin-action.component.d.ts.map +1 -0
  37. package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts +29 -0
  38. package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts.map +1 -0
  39. package/lib/components/select-ui-component/select-ui-component.component.d.ts +28 -0
  40. package/lib/components/select-ui-component/select-ui-component.component.d.ts.map +1 -0
  41. package/lib/constants/index.d.ts +3 -0
  42. package/lib/constants/index.d.ts.map +1 -0
  43. package/lib/constants/injection-tokens.d.ts +6 -0
  44. package/lib/constants/injection-tokens.d.ts.map +1 -0
  45. package/lib/constants/process.link.d.ts +5 -0
  46. package/lib/constants/process.link.d.ts.map +1 -0
  47. package/lib/models/form-custom-component.model.d.ts +16 -0
  48. package/lib/models/form-custom-component.model.d.ts.map +1 -0
  49. package/lib/models/form-flow.model.d.ts +18 -0
  50. package/lib/models/form-flow.model.d.ts.map +1 -0
  51. package/lib/models/form-link.model.d.ts +57 -0
  52. package/lib/models/form-link.model.d.ts.map +1 -0
  53. package/lib/models/index.d.ts +5 -0
  54. package/lib/models/index.d.ts.map +1 -0
  55. package/lib/models/process-link-url.model.d.ts +5 -0
  56. package/lib/models/process-link-url.model.d.ts.map +1 -0
  57. package/lib/models/process-link.model.d.ts +178 -0
  58. package/lib/models/process-link.model.d.ts.map +1 -0
  59. package/lib/process-link-routing.module.d.ts +8 -0
  60. package/lib/process-link-routing.module.d.ts.map +1 -0
  61. package/lib/process-link.module.d.ts +28 -0
  62. package/lib/process-link.module.d.ts.map +1 -0
  63. package/lib/services/form-flow-component.service.d.ts +13 -0
  64. package/lib/services/form-flow-component.service.d.ts.map +1 -0
  65. package/lib/services/form-flow.service.d.ts +20 -0
  66. package/lib/services/form-flow.service.d.ts.map +1 -0
  67. package/lib/services/index.d.ts +10 -0
  68. package/lib/services/index.d.ts.map +1 -0
  69. package/lib/services/plugin-state.service.d.ts +29 -0
  70. package/lib/services/plugin-state.service.d.ts.map +1 -0
  71. package/lib/services/process-link-button.service.d.ts +37 -0
  72. package/lib/services/process-link-button.service.d.ts.map +1 -0
  73. package/lib/services/process-link-state.service.d.ts +66 -0
  74. package/lib/services/process-link-state.service.d.ts.map +1 -0
  75. package/lib/services/process-link-step.service.d.ts +44 -0
  76. package/lib/services/process-link-step.service.d.ts.map +1 -0
  77. package/lib/services/process-link.service.d.ts +28 -0
  78. package/lib/services/process-link.service.d.ts.map +1 -0
  79. package/lib/services/url-resolver.service.d.ts +7 -0
  80. package/lib/services/url-resolver.service.d.ts.map +1 -0
  81. package/lib/services/url-validator.service.d.ts +11 -0
  82. package/lib/services/url-validator.service.d.ts.map +1 -0
  83. package/package.json +24 -0
  84. package/public-api.d.ts +12 -0
  85. package/public-api.d.ts.map +1 -0
  86. package/valtimo-process-link.d.ts.map +1 -0
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # ProcessLink
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version
4
+ 8.2.14.
5
+
6
+ ## Code scaffolding
7
+
8
+ Run `ng generate component component-name --project process-link` to generate a new component. You
9
+ can also use
10
+ `ng generate directive|pipe|service|class|guard|interface|enum|module --project process-link`.
11
+
12
+ > Note: Don't forget to add `--project process-link` or else it will be added to the default project
13
+ > in your `angular.json` file.
14
+
15
+ ## Build
16
+
17
+ Run `ng build process-link` to build the project. The build artifacts will be stored in the `dist/`
18
+ directory.
19
+
20
+ ## Publishing
21
+
22
+ After building your library with `ng build process-link`, go to the dist folder
23
+ `cd dist/process-link` and run `npm publish`.
24
+
25
+ ## Running unit tests
26
+
27
+ Run `ng test process-link` to execute the unit tests via [Karma](https://karma-runner.github.io).
28
+
29
+ ## Further help
30
+
31
+ To get more help on the Angular CLI use `ng help` or go check out the
32
+ [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).