@bpmn-io/form-js-viewer 1.15.2 → 1.16.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/dist/index.cjs +20 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +20 -6
- package/dist/index.es.js.map +1 -1
- package/dist/types/Form.d.ts +3 -1
- package/dist/types/features/viewerCommands/index.d.ts +3 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/util/constants/TextConstants.d.ts +1 -0
- package/dist/types/util/constants/index.d.ts +1 -0
- package/package.json +3 -3
package/dist/types/Form.d.ts
CHANGED
|
@@ -133,7 +133,9 @@ export class Form {
|
|
|
133
133
|
__init__: string[];
|
|
134
134
|
markdownRenderer: (string | typeof import("./features").MarkdownRenderer)[];
|
|
135
135
|
} | {
|
|
136
|
-
__depends__:
|
|
136
|
+
__depends__: {
|
|
137
|
+
commandStack: (string | typeof import("diagram-js/lib/command/CommandStack").default)[];
|
|
138
|
+
}[];
|
|
137
139
|
__init__: string[];
|
|
138
140
|
viewerCommands: (string | typeof import("./features").ViewerCommands)[];
|
|
139
141
|
} | {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export namespace ViewerCommandsModule {
|
|
2
|
-
let __depends__:
|
|
2
|
+
let __depends__: {
|
|
3
|
+
commandStack: (string | typeof import("diagram-js/lib/command/CommandStack").default)[];
|
|
4
|
+
}[];
|
|
3
5
|
let __init__: string[];
|
|
4
6
|
let viewerCommands: (string | typeof ViewerCommands)[];
|
|
5
7
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ export * from "./util";
|
|
|
14
14
|
export * from "./features";
|
|
15
15
|
export type CreateFormOptions = import("./types").CreateFormOptions;
|
|
16
16
|
import { Form } from './Form';
|
|
17
|
-
export const schemaVersion:
|
|
17
|
+
export const schemaVersion: 19;
|
|
18
18
|
export { Form };
|
|
19
19
|
export { FormFieldRegistry, FormLayouter, Importer, FieldFactory, PathRegistry } from "./core";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const TEXT_VIEW_DEFAULT_TEXT: "# Text";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "View forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"ids": "^1.0.5",
|
|
57
57
|
"lodash": "^4.17.21",
|
|
58
58
|
"luxon": "^3.5.0",
|
|
59
|
-
"marked": "^
|
|
59
|
+
"marked": "^16.0.0",
|
|
60
60
|
"min-dash": "^4.2.3",
|
|
61
61
|
"preact": "^10.5.14"
|
|
62
62
|
},
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"files": [
|
|
67
67
|
"dist"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "5eb7644cd8c812a16fe2db4a057256142f86146d"
|
|
70
70
|
}
|