@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.
- package/README.md +32 -0
- package/fesm2022/valtimo-process-link.mjs +2985 -0
- package/fesm2022/valtimo-process-link.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts +12 -0
- package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts.map +1 -0
- package/lib/components/choose-process-link-type/index.d.ts +2 -0
- package/lib/components/choose-process-link-type/index.d.ts.map +1 -0
- package/lib/components/form-display-configuration/form-display-configuration.component.d.ts +42 -0
- package/lib/components/form-display-configuration/form-display-configuration.component.d.ts.map +1 -0
- package/lib/components/form-flow/form-flow.component.d.ts +54 -0
- package/lib/components/form-flow/form-flow.component.d.ts.map +1 -0
- package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts +30 -0
- package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts.map +1 -0
- package/lib/components/form-flow-configuration-container/index.d.ts +2 -0
- package/lib/components/form-flow-configuration-container/index.d.ts.map +1 -0
- package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts +34 -0
- package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts.map +1 -0
- package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts +48 -0
- package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts.map +1 -0
- package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts +39 -0
- package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts.map +1 -0
- package/lib/components/process-link/process-link.component.d.ts +14 -0
- package/lib/components/process-link/process-link.component.d.ts.map +1 -0
- package/lib/components/process-link-modal/process-link-modal.component.d.ts +38 -0
- package/lib/components/process-link-modal/process-link-modal.component.d.ts.map +1 -0
- package/lib/components/select-form/index.d.ts +2 -0
- package/lib/components/select-form/index.d.ts.map +1 -0
- package/lib/components/select-form/select-form.component.d.ts +42 -0
- package/lib/components/select-form/select-form.component.d.ts.map +1 -0
- package/lib/components/select-form-flow/index.d.ts +2 -0
- package/lib/components/select-form-flow/index.d.ts.map +1 -0
- package/lib/components/select-form-flow/select-form-flow.component.d.ts +40 -0
- package/lib/components/select-form-flow/select-form-flow.component.d.ts.map +1 -0
- package/lib/components/select-plugin-action/select-plugin-action.component.d.ts +29 -0
- package/lib/components/select-plugin-action/select-plugin-action.component.d.ts.map +1 -0
- package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts +29 -0
- package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts.map +1 -0
- package/lib/components/select-ui-component/select-ui-component.component.d.ts +28 -0
- package/lib/components/select-ui-component/select-ui-component.component.d.ts.map +1 -0
- package/lib/constants/index.d.ts +3 -0
- package/lib/constants/index.d.ts.map +1 -0
- package/lib/constants/injection-tokens.d.ts +6 -0
- package/lib/constants/injection-tokens.d.ts.map +1 -0
- package/lib/constants/process.link.d.ts +5 -0
- package/lib/constants/process.link.d.ts.map +1 -0
- package/lib/models/form-custom-component.model.d.ts +16 -0
- package/lib/models/form-custom-component.model.d.ts.map +1 -0
- package/lib/models/form-flow.model.d.ts +18 -0
- package/lib/models/form-flow.model.d.ts.map +1 -0
- package/lib/models/form-link.model.d.ts +57 -0
- package/lib/models/form-link.model.d.ts.map +1 -0
- package/lib/models/index.d.ts +5 -0
- package/lib/models/index.d.ts.map +1 -0
- package/lib/models/process-link-url.model.d.ts +5 -0
- package/lib/models/process-link-url.model.d.ts.map +1 -0
- package/lib/models/process-link.model.d.ts +178 -0
- package/lib/models/process-link.model.d.ts.map +1 -0
- package/lib/process-link-routing.module.d.ts +8 -0
- package/lib/process-link-routing.module.d.ts.map +1 -0
- package/lib/process-link.module.d.ts +28 -0
- package/lib/process-link.module.d.ts.map +1 -0
- package/lib/services/form-flow-component.service.d.ts +13 -0
- package/lib/services/form-flow-component.service.d.ts.map +1 -0
- package/lib/services/form-flow.service.d.ts +20 -0
- package/lib/services/form-flow.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +10 -0
- package/lib/services/index.d.ts.map +1 -0
- package/lib/services/plugin-state.service.d.ts +29 -0
- package/lib/services/plugin-state.service.d.ts.map +1 -0
- package/lib/services/process-link-button.service.d.ts +37 -0
- package/lib/services/process-link-button.service.d.ts.map +1 -0
- package/lib/services/process-link-state.service.d.ts +66 -0
- package/lib/services/process-link-state.service.d.ts.map +1 -0
- package/lib/services/process-link-step.service.d.ts +44 -0
- package/lib/services/process-link-step.service.d.ts.map +1 -0
- package/lib/services/process-link.service.d.ts +28 -0
- package/lib/services/process-link.service.d.ts.map +1 -0
- package/lib/services/url-resolver.service.d.ts +7 -0
- package/lib/services/url-resolver.service.d.ts.map +1 -0
- package/lib/services/url-validator.service.d.ts +11 -0
- package/lib/services/url-validator.service.d.ts.map +1 -0
- package/package.json +24 -0
- package/public-api.d.ts +12 -0
- package/public-api.d.ts.map +1 -0
- 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).
|