@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.
@@ -133,7 +133,9 @@ export class Form {
133
133
  __init__: string[];
134
134
  markdownRenderer: (string | typeof import("./features").MarkdownRenderer)[];
135
135
  } | {
136
- __depends__: import("didi").ModuleDeclaration[];
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__: import("didi").ModuleDeclaration[];
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
  }
@@ -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: 18;
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";
@@ -1,3 +1,4 @@
1
1
  export * from "./DatetimeConstants";
2
2
  export * from "./OptionsSourceConstants";
3
3
  export * from "./IFrameConstants";
4
+ export * from "./TextConstants";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.15.2",
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": "^15.0.7",
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": "ef9301a743c083512615b78b8f6aebfca97a92a7"
69
+ "gitHead": "5eb7644cd8c812a16fe2db4a057256142f86146d"
70
70
  }