@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 +2 -2
- package/dist/types/features/display/behavior/ValidateOnBlurBehavior.d.ts +0 -7
- package/dist/types/features/display/behavior/index.d.ts +0 -6
- package/dist/types/features/viewerCommands/ViewerCommands.d.ts +0 -14
- package/dist/types/features/viewerCommands/behaviors/index.d.ts +0 -2
- package/dist/types/features/viewerCommands/cmd/UpdateFieldValidationHandler.d.ts +0 -11
- package/dist/types/features/viewerCommands/index.d.ts +0 -9
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
|
+
"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": "
|
|
64
|
+
"gitHead": "dd91f40203ebbe5b00dd3dc2f2471968daa7fb61"
|
|
65
65
|
}
|
|
@@ -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,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';
|