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

@bpmn-io/form-js-viewer

Package Overview
Dependencies
Maintainers
9
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 0.14.1 to 0.15.0-alpha.0

2

dist/types/core/EventBus.d.ts

@@ -1,1 +0,1 @@

export {};
export { default } from "diagram-js/lib/core/EventBus";

@@ -9,3 +9,3 @@ declare namespace _default {

})[];
const eventBus: any[];
const eventBus: (string | typeof EventBus)[];
const formFieldRegistry: (string | typeof FormFieldRegistry)[];

@@ -18,3 +18,4 @@ const formLayouter: (string | typeof FormLayouter)[];

import FormLayouter from './FormLayouter';
import EventBus from './EventBus';
import Validator from './Validator';
export { FormFieldRegistry, FormLayouter };

@@ -31,3 +31,3 @@ /**

get: <T>(name: string, strict?: boolean) => T;
invoke: <T_1>(func: (...args: unknown[]) => T_1, context: unknown, locals: import("didi").LocalsMap) => T_1;
invoke: <T_1>(func: (...args: any[]) => T_1, context?: unknown, locals?: import("didi").LocalsMap) => T_1;
clear(): void;

@@ -34,0 +34,0 @@ /**

declare function Button(props: any): import("preact").JSX.Element;
declare namespace Button {
export function create(options?: {}): {
action: string;
};
export { type };
export const label: string;
export const keyed: boolean;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export function create(options?: {}): {
action: string;
};
}
}
export default Button;
declare const type: "button";
declare function Checkbox(props: any): import("preact").JSX.Element;
declare namespace Checkbox {
export function create(options?: {}): {};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: boolean;
export function sanitizeValue({ value }: {
value: any;
}): boolean;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: boolean;
export function sanitizeValue({ value }: {
value: any;
}): boolean;
export function create(options?: {}): {};
}
}
export default Checkbox;
declare const type: "checkbox";
declare function Checklist(props: any): import("preact").JSX.Element;
declare namespace Checklist {
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: any[];
export { sanitizeMultiSelectValue as sanitizeValue };
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any[];
export { sanitizeMultiSelectValue as sanitizeValue };
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
}
}

@@ -16,0 +18,0 @@ export default Checklist;

declare function Datetime(props: any): import("preact").JSX.Element;
declare namespace Datetime {
export function create(options?: {}): {};
export { type };
export const keyed: boolean;
export const emptyValue: any;
export { sanitizeDateTimePickerValue as sanitizeValue };
export const label: string;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any;
export { sanitizeDateTimePickerValue as sanitizeValue };
export function create(options?: {}): {};
}
}

@@ -11,0 +13,0 @@ export default Datetime;

declare function Default(props: any): import("preact").JSX.Element;
declare namespace Default {
function create(options?: {}): {
components: any[];
};
const type: string;
const keyed: boolean;
const label: any;
const group: any;
namespace config {
const type: string;
const keyed: boolean;
const label: any;
const group: any;
function create(options?: {}): {
components: any[];
};
}
}
export default Default;
declare function Image(props: any): import("preact").JSX.Element;
declare namespace Image {
export function create(options?: {}): {};
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export function create(options?: {}): {};
}
}
export default Image;
declare const type: "image";
declare function Numberfield(props: any): import("preact").JSX.Element;
declare namespace Numberfield {
export function create(options?: {}): {};
export function sanitizeValue({ value, formField }: {
value: any;
formField: any;
}): any;
export { type };
export const keyed: boolean;
export const label: string;
export const emptyValue: any;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any;
export function sanitizeValue({ value, formField }: {
value: any;
formField: any;
}): any;
export function create(options?: {}): {};
}
}
export default Numberfield;
declare const type: "number";
declare function Radio(props: any): import("preact").JSX.Element;
declare namespace Radio {
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: any;
export { sanitizeSingleSelectValue as sanitizeValue };
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any;
export { sanitizeSingleSelectValue as sanitizeValue };
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
}
}

@@ -16,0 +18,0 @@ export default Radio;

declare function Select(props: any): import("preact").JSX.Element;
declare namespace Select {
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: any;
export { sanitizeSingleSelectValue as sanitizeValue };
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any;
export { sanitizeSingleSelectValue as sanitizeValue };
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
}
}

@@ -16,0 +18,0 @@ export default Select;

declare function Taglist(props: any): import("preact").JSX.Element;
declare namespace Taglist {
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: any[];
export { sanitizeMultiSelectValue as sanitizeValue };
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: any[];
export { sanitizeMultiSelectValue as sanitizeValue };
export function create(options?: {}): {
values: {
label: string;
value: string;
}[];
};
}
}

@@ -16,0 +18,0 @@ export default Taglist;

declare function Text(props: any): import("preact").JSX.Element;
declare namespace Text {
export function create(options?: {}): {
text: string;
};
export { type };
export const keyed: boolean;
export const group: string;
export const label: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export function create(options?: {}): {
text: string;
};
}
}
export default Text;
declare const type: "text";
declare function Textarea(props: any): import("preact").JSX.Element;
declare namespace Textarea {
export function create(options?: {}): {};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: string;
export function sanitizeValue({ value }: {
value: any;
}): string;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: string;
export function sanitizeValue({ value }: {
value: any;
}): string;
export function create(options?: {}): {};
}
}
export default Textarea;
declare const type: "textarea";
declare function Textfield(props: any): import("preact").JSX.Element;
declare namespace Textfield {
export function create(options?: {}): {};
export { type };
export const label: string;
export const keyed: boolean;
export const emptyValue: string;
export function sanitizeValue({ value }: {
value: any;
}): string;
export const group: string;
namespace config {
export { type };
export const keyed: boolean;
export const label: string;
export const group: string;
export const emptyValue: string;
export function sanitizeValue({ value }: {
value: any;
}): string;
export function create(options?: {}): {};
}
}
export default Textfield;
declare const type: "textfield";
export function formFieldClasses(type: any, { errors, disabled }?: {
errors?: any[];
disabled?: boolean;
}): string;
export function gridColumnClasses(formField: any): string;
}): any;
export function gridColumnClasses(formField: any): any;
export function prefixId(id: any, formId: any): string;

@@ -13,3 +13,3 @@ /**

*/
declare function Renderer(config: Config, eventBus: any, form: Form, injector: Injector): void;
declare function Renderer(config: Config, eventBus: EventBus, form: Form, injector: Injector): void;
declare namespace Renderer {

@@ -23,3 +23,3 @@ const $inject: string[];

export type Injector = import('didi').Injector;
export type EventBus = any;
export type EventBus = import('../core/EventBus').default;
export type Form = import('../Form').default;
{
"name": "@bpmn-io/form-js-viewer",
"version": "0.14.1",
"version": "0.15.0-alpha.0",
"description": "View forms - powered by bpmn.io",

@@ -64,3 +64,3 @@ "exports": {

],
"gitHead": "a9ad771bc8f87d2fc428bd5bd1429b96bb03fe7a"
"gitHead": "205275d1b314a512e662758999cd6667894c3695"
}

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