@bpmn-io/form-js-editor 0.10.0-alpha.1 → 0.10.0-alpha.2
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 +808 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +808 -58
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/properties-panel/Util.d.ts +2 -0
- package/dist/types/features/properties-panel/entries/AltTextEntry.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/ConditionEntry.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/ImageSourceEntry.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/NumberEntries.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/NumberSerializationEntry.d.ts +9 -0
- package/dist/types/features/properties-panel/entries/index.d.ts +5 -0
- package/dist/types/features/properties-panel/groups/ConditionGroup.d.ts +11 -0
- package/dist/types/features/properties-panel/groups/SerializationGroup.d.ts +11 -0
- package/dist/types/features/properties-panel/groups/index.d.ts +2 -0
- package/dist/types/features/properties-panel/hooks/index.d.ts +1 -0
- package/dist/types/features/properties-panel/hooks/useVariables.d.ts +6 -0
- package/dist/types/render/components/icons/index.d.ts +1 -0
- package/dist/types/{types.d.ts → src/types.d.ts} +0 -0
- package/package.json +6 -5
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export function arrayAdd(array: any, index: any, item: any): any[];
|
|
2
2
|
export function arrayRemove(array: any, index: any): any[];
|
|
3
3
|
export function prefixId(id: any): string;
|
|
4
|
+
export function countDecimals(number: any): any;
|
|
5
|
+
export function isValidNumber(value: any): boolean;
|
|
4
6
|
export function stopPropagation(listener: any): (event: any) => void;
|
|
5
7
|
export function textToLabel(text: any): string;
|
|
6
8
|
export const INPUTS: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as ActionEntry } from "./ActionEntry";
|
|
2
|
+
export { default as AltTextEntry } from "./AltTextEntry";
|
|
2
3
|
export { default as ColumnsEntry } from "./ColumnsEntry";
|
|
3
4
|
export { default as DescriptionEntry } from "./DescriptionEntry";
|
|
4
5
|
export { default as DefaultValueEntry } from "./DefaultValueEntry";
|
|
@@ -6,9 +7,13 @@ export { default as DisabledEntry } from "./DisabledEntry";
|
|
|
6
7
|
export { default as IdEntry } from "./IdEntry";
|
|
7
8
|
export { default as KeyEntry } from "./KeyEntry";
|
|
8
9
|
export { default as LabelEntry } from "./LabelEntry";
|
|
10
|
+
export { default as ImageSourceEntry } from "./ImageSourceEntry";
|
|
9
11
|
export { default as TextEntry } from "./TextEntry";
|
|
12
|
+
export { default as NumberEntries } from "./NumberEntries";
|
|
13
|
+
export { default as NumberSerializationEntry } from "./NumberSerializationEntry";
|
|
10
14
|
export { default as ValueEntry } from "./ValueEntry";
|
|
11
15
|
export { default as CustomValueEntry } from "./CustomValueEntry";
|
|
12
16
|
export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry";
|
|
13
17
|
export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry";
|
|
14
18
|
export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry";
|
|
19
|
+
export { ConditionEntry } from "./ConditionEntry";
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as GeneralGroup } from "./GeneralGroup";
|
|
2
|
+
export { default as SerializationGroup } from "./SerializationGroup";
|
|
2
3
|
export { default as ValidationGroup } from "./ValidationGroup";
|
|
3
4
|
export { default as ValuesGroups } from "./ValuesGroups";
|
|
4
5
|
export { default as CustomValuesGroup } from "./CustomValuesGroup";
|
|
6
|
+
export { ConditionGroup } from "./ConditionGroup";
|
|
@@ -3,6 +3,7 @@ export namespace iconsByType {
|
|
|
3
3
|
export { CheckboxIcon as checkbox };
|
|
4
4
|
export { ChecklistIcon as checklist };
|
|
5
5
|
export { ColumnsIcon as columns };
|
|
6
|
+
export { ImageIcon as image };
|
|
6
7
|
export { NumberIcon as number };
|
|
7
8
|
export { RadioIcon as radio };
|
|
8
9
|
export { SelectIcon as select };
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "0.10.0-alpha.
|
|
3
|
+
"version": "0.10.0-alpha.2",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"example:dev": "cd example && npm start",
|
|
28
28
|
"lint": "run-s lint:*",
|
|
29
29
|
"lint:eslint": "eslint .",
|
|
30
|
-
"generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js &&
|
|
30
|
+
"generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js && copyfiles src/**.d.ts dist/types",
|
|
31
31
|
"test": "cross-env NODE_ENV=test karma start",
|
|
32
32
|
"prepublishOnly": "npm run build"
|
|
33
33
|
},
|
|
@@ -42,9 +42,10 @@
|
|
|
42
42
|
"url": "https://github.com/bpmn-io"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@bpmn-io/form-js-viewer": "^0.10.0-alpha.
|
|
46
|
-
"@bpmn-io/properties-panel": "^0.
|
|
45
|
+
"@bpmn-io/form-js-viewer": "^0.10.0-alpha.2",
|
|
46
|
+
"@bpmn-io/properties-panel": "^1.0.0",
|
|
47
47
|
"array-move": "^3.0.1",
|
|
48
|
+
"big.js": "^6.2.1",
|
|
48
49
|
"dragula": "^3.7.3",
|
|
49
50
|
"ids": "^1.0.0",
|
|
50
51
|
"min-dash": "^4.0.0",
|
|
@@ -57,5 +58,5 @@
|
|
|
57
58
|
"files": [
|
|
58
59
|
"dist"
|
|
59
60
|
],
|
|
60
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "df68b02bb080ad816ad17f8c629650f118e266bd"
|
|
61
62
|
}
|