@bpmn-io/form-js-editor
Advanced tools
Comparing version 0.7.2 to 0.8.0-alpha.0
export namespace iconsByType { | ||
export { ButtonIcon as button }; | ||
export { CheckboxIcon as checkbox }; | ||
export { ChecklistIcon as checklist }; | ||
export { ColumnsIcon as columns }; | ||
@@ -8,2 +9,3 @@ export { NumberIcon as number }; | ||
export { SelectIcon as select }; | ||
export { TaglistIcon as taglist }; | ||
export { TextIcon as text }; | ||
@@ -10,0 +12,0 @@ export { TextfieldIcon as textfield }; |
@@ -1,1 +0,9 @@ | ||
export default function ActionEntry(props: any): any; | ||
export default function ActionEntry(props: any): { | ||
id: string; | ||
component: typeof Action; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Action(props: any): any; | ||
export {}; |
@@ -1,1 +0,9 @@ | ||
export default function ColumnsEntry(props: any): any; | ||
export default function ColumnsEntry(props: any): { | ||
id: string; | ||
component: typeof Columns; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Columns(props: any): any; | ||
export {}; |
@@ -1,1 +0,11 @@ | ||
export default function CustomValueEntry(props: any): any; | ||
export default function CustomValueEntry(props: any): { | ||
component: typeof Key; | ||
editField: any; | ||
field: any; | ||
id: string; | ||
idPrefix: any; | ||
index: any; | ||
validateFactory: any; | ||
}[]; | ||
declare function Key(props: any): any; | ||
export {}; |
@@ -1,1 +0,1 @@ | ||
export default function DefaultValueEntry(props: any): any; | ||
export default function DefaultOptionEntry(props: any): any[]; |
@@ -1,1 +0,9 @@ | ||
export default function DescriptionEntry(props: any): any; | ||
export default function DescriptionEntry(props: any): { | ||
id: string; | ||
component: typeof Description; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Description(props: any): any; | ||
export {}; |
@@ -1,1 +0,9 @@ | ||
export default function DisabledEntry(props: any): any; | ||
export default function DisabledEntry(props: any): { | ||
id: string; | ||
component: typeof Disabled; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Disabled(props: any): any; | ||
export {}; |
@@ -1,1 +0,9 @@ | ||
export default function IdEntry(props: any): any; | ||
export default function IdEntry(props: any): { | ||
id: string; | ||
component: typeof Id; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Id(props: any): any; | ||
export {}; |
@@ -12,1 +12,4 @@ export { default as ActionEntry } from "./ActionEntry"; | ||
export { default as CustomValueEntry } from "./CustomValueEntry"; | ||
export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry"; | ||
export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry"; | ||
export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry"; |
@@ -1,1 +0,9 @@ | ||
export default function KeyEntry(props: any): any; | ||
export default function KeyEntry(props: any): { | ||
id: string; | ||
component: typeof Key; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Key(props: any): any; | ||
export {}; |
@@ -1,1 +0,9 @@ | ||
export default function LabelEntry(props: any): any; | ||
export default function LabelEntry(props: any): { | ||
id: string; | ||
component: typeof Label; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Label(props: any): any; | ||
export {}; |
@@ -1,1 +0,9 @@ | ||
export default function TextEntry(props: any): any; | ||
export default function TextEntry(props: any): { | ||
id: string; | ||
component: typeof Text; | ||
editField: any; | ||
field: any; | ||
isEdited: any; | ||
}[]; | ||
declare function Text(props: any): any; | ||
export {}; |
@@ -1,1 +0,11 @@ | ||
export default function ValueEntry(props: any): any; | ||
export default function ValueEntry(props: any): { | ||
component: typeof Label; | ||
editField: any; | ||
field: any; | ||
id: string; | ||
idPrefix: any; | ||
index: any; | ||
validateFactory: any; | ||
}[]; | ||
declare function Label(props: any): any; | ||
export {}; |
@@ -1,2 +0,23 @@ | ||
export default function CustomValuesGroup(field: any, editField: any): any; | ||
export default function CustomValuesGroup(field: any, editField: any): { | ||
add: (event: any) => void; | ||
component: any; | ||
id: string; | ||
items: { | ||
autoFocusEntry: string; | ||
entries: { | ||
component: (props: any) => any; | ||
editField: any; | ||
field: any; | ||
id: string; | ||
idPrefix: any; | ||
index: any; | ||
validateFactory: any; | ||
}[]; | ||
id: string; | ||
label: string; | ||
remove: (event: any) => any; | ||
}[]; | ||
label: string; | ||
shouldSort: boolean; | ||
}; | ||
/** | ||
@@ -3,0 +24,0 @@ * Returns copy of object without key. |
@@ -1,1 +0,5 @@ | ||
export default function GeneralGroup(field: any, editField: any): any; | ||
export default function GeneralGroup(field: any, editField: any): { | ||
id: string; | ||
label: string; | ||
entries: any[]; | ||
}; |
export { default as GeneralGroup } from "./GeneralGroup"; | ||
export { default as ValidationGroup } from "./ValidationGroup"; | ||
export { default as ValuesGroup } from "./ValuesGroup"; | ||
export { default as ValuesGroups } from "./ValuesGroups"; | ||
export { default as CustomValuesGroup } from "./CustomValuesGroup"; |
@@ -1,1 +0,14 @@ | ||
export default function ValidationGroup(field: any, editField: any): any; | ||
export default function ValidationGroup(field: any, editField: any): { | ||
id: string; | ||
label: string; | ||
entries: { | ||
id: string; | ||
component: typeof Required; | ||
getValue: (key: any) => () => any; | ||
field: any; | ||
isEdited: any; | ||
onChange: (key: any) => (value: any) => void; | ||
}[]; | ||
}; | ||
declare function Required(props: any): any; | ||
export {}; |
@@ -1,1 +0,1 @@ | ||
export default function PropertiesPanel(props: any): any; | ||
export default function FormPropertiesPanel(props: any): any; |
@@ -7,1 +7,2 @@ export function arrayAdd(array: any, index: any, item: any): any[]; | ||
export const INPUTS: string[]; | ||
export const VALUES_INPUTS: string[]; |
{ | ||
"name": "@bpmn-io/form-js-editor", | ||
"version": "0.7.2", | ||
"version": "0.8.0-alpha.0", | ||
"description": "Edit forms - powered by bpmn.io", | ||
@@ -12,2 +12,3 @@ "exports": { | ||
"./dist/assets/dragula.css": "./dist/assets/dragula.css", | ||
"./dist/assets/properties-panel.css": "./dist/assets/properties-panel.css", | ||
"./package.json": "./package.json" | ||
@@ -24,3 +25,3 @@ }, | ||
"build": "run-p bundle generate-types", | ||
"bundle": "rollup -c", | ||
"bundle": "rollup -c --failAfterWarnings", | ||
"bundle:watch": "rollup -c -w", | ||
@@ -46,3 +47,3 @@ "dev": "npm test -- --auto-watch --no-single-run", | ||
"dependencies": { | ||
"@bpmn-io/form-js-viewer": "^0.7.2", | ||
"@bpmn-io/form-js-viewer": "^0.8.0-alpha.0", | ||
"array-move": "^3.0.1", | ||
@@ -61,3 +62,3 @@ "dragula": "^3.7.3", | ||
], | ||
"gitHead": "46631f707eea5537cbeb81aa05423fd9be71a3c0" | ||
"gitHead": "ffc5f0cedcf0b9a923b34ff56e7f63a34c362cf9" | ||
} |
@@ -51,2 +51,3 @@ # @bpmn-io/form-js-editor | ||
<link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.2.3/dist/assets/dragula.css"> | ||
<link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.2.3/dist/assets/properties-panel.css"> | ||
``` | ||
@@ -53,0 +54,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1059060
13733
119
77
1
+ Added@bpmn-io/form-js-viewer@0.8.0(transitive)
+ Addedclassnames@2.5.1(transitive)
+ Addeddidi@8.0.2(transitive)
- Removed@bpmn-io/form-js-viewer@0.7.2(transitive)
- Removeddidi@5.2.1(transitive)