@bpmn-io/form-js-editor 0.15.0-alpha.0 → 1.0.0-alpha.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/assets/form-js-editor-base.css +16 -2
- package/dist/assets/form-js-editor.css +90 -19
- package/dist/index.cjs +438 -134
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +440 -136
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/properties-panel/entries/ReadonlyEntry.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/index.d.ts +1 -0
- package/package.json +4 -4
|
@@ -21,4 +21,5 @@ export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry";
|
|
|
21
21
|
export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry";
|
|
22
22
|
export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry";
|
|
23
23
|
export { default as AdornerEntry } from "./AdornerEntry";
|
|
24
|
+
export { default as ReadonlyEntry } from "./ReadonlyEntry";
|
|
24
25
|
export { ConditionEntry } from "./ConditionEntry";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"url": "https://github.com/bpmn-io"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@bpmn-io/form-js-viewer": "^0.
|
|
48
|
-
"@bpmn-io/properties-panel": "^1.
|
|
47
|
+
"@bpmn-io/form-js-viewer": "^1.0.0-alpha.0",
|
|
48
|
+
"@bpmn-io/properties-panel": "^2.1.0",
|
|
49
49
|
"array-move": "^3.0.1",
|
|
50
50
|
"big.js": "^6.2.1",
|
|
51
51
|
"dragula": "^3.7.3",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"files": [
|
|
61
61
|
"dist"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "992b8f130b82f8e739af7b3794e42a3ec054523d"
|
|
64
64
|
}
|