@bpmn-io/form-js-viewer 1.0.0-alpha.3 → 1.0.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.0.0-alpha.3",
3
+ "version": "1.0.0-alpha.5",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -61,5 +61,5 @@
61
61
  "files": [
62
62
  "dist"
63
63
  ],
64
- "gitHead": "7bd34c9bd219c930432ac15f8baaed49e2d5ec2a"
64
+ "gitHead": "dd91f40203ebbe5b00dd3dc2f2471968daa7fb61"
65
65
  }
@@ -1,7 +0,0 @@
1
- declare class ValidateOnBlur {
2
- constructor(eventBus: any, validator: any, form: any);
3
- }
4
- declare namespace ValidateOnBlur {
5
- const $inject: string[];
6
- }
7
- export default ValidateOnBlur;
@@ -1,6 +0,0 @@
1
- declare namespace _default {
2
- const __init__: string[];
3
- const validateOnBlurBehavior: (string | typeof ValidateOnBlurBehavior)[];
4
- }
5
- export default _default;
6
- import ValidateOnBlurBehavior from './ValidateOnBlurBehavior';
@@ -1,14 +0,0 @@
1
- declare class ViewerCommands {
2
- constructor(commandStack: any, eventBus: any);
3
- _commandStack: any;
4
- registerHandlers(): void;
5
- getHandlers(): {
6
- 'formField.validation.update': typeof UpdateFieldValidationHandler;
7
- };
8
- updateFieldValidation(field: any, value: any): void;
9
- }
10
- declare namespace ViewerCommands {
11
- const $inject: string[];
12
- }
13
- export default ViewerCommands;
14
- import UpdateFieldValidationHandler from './cmd/UpdateFieldValidationHandler';
@@ -1,2 +0,0 @@
1
- declare const _default: {};
2
- export default _default;
@@ -1,11 +0,0 @@
1
- declare class UpdateFieldValidationHandler {
2
- constructor(form: any, validator: any);
3
- _form: any;
4
- _validator: any;
5
- execute(context: any): void;
6
- revert(context: any): void;
7
- }
8
- declare namespace UpdateFieldValidationHandler {
9
- const $inject: string[];
10
- }
11
- export default UpdateFieldValidationHandler;
@@ -1,9 +0,0 @@
1
- declare namespace _default {
2
- const __depends__: any[];
3
- const __init__: string[];
4
- const viewerCommands: (string | typeof ViewerCommands)[];
5
- }
6
- export default _default;
7
- export * from "./behaviors";
8
- export { ViewerCommands };
9
- import ViewerCommands from './ViewerCommands';