Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bpmn-io/form-js-editor

Package Overview
Dependencies
Maintainers
9
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bpmn-io/form-js-editor - npm Package Compare versions

Comparing version 0.7.2 to 0.8.0-alpha.0

dist/assets/properties-panel.css

2

dist/types/render/components/palette/icons/index.d.ts
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 {};

2

dist/types/render/components/properties-panel/entries/DefaultValueEntry.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc