@bpmn-io/form-js-viewer 0.9.8 → 0.9.9

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.
Files changed (45) hide show
  1. package/dist/index.cjs +24 -15
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.es.js +24 -15
  4. package/dist/index.es.js.map +1 -1
  5. package/dist/types/Form.d.ts +140 -136
  6. package/dist/types/core/EventBus.d.ts +1 -1
  7. package/dist/types/core/FormFieldRegistry.d.ts +17 -17
  8. package/dist/types/core/Validator.d.ts +7 -7
  9. package/dist/types/core/index.d.ts +16 -16
  10. package/dist/types/import/Importer.d.ts +43 -43
  11. package/dist/types/import/index.d.ts +5 -5
  12. package/dist/types/index.d.ts +18 -18
  13. package/dist/types/render/FormFields.d.ts +5 -5
  14. package/dist/types/render/Renderer.d.ts +23 -23
  15. package/dist/types/render/components/Description.d.ts +1 -1
  16. package/dist/types/render/components/Errors.d.ts +1 -1
  17. package/dist/types/render/components/FormComponent.d.ts +1 -1
  18. package/dist/types/render/components/FormField.d.ts +1 -1
  19. package/dist/types/render/components/Label.d.ts +1 -1
  20. package/dist/types/render/components/PoweredBy.d.ts +1 -1
  21. package/dist/types/render/components/Sanitizer.d.ts +7 -7
  22. package/dist/types/render/components/Util.d.ts +6 -6
  23. package/dist/types/render/components/form-fields/Button.d.ts +11 -11
  24. package/dist/types/render/components/form-fields/Checkbox.d.ts +13 -13
  25. package/dist/types/render/components/form-fields/Checklist.d.ts +12 -12
  26. package/dist/types/render/components/form-fields/Default.d.ts +9 -9
  27. package/dist/types/render/components/form-fields/Number.d.ts +13 -13
  28. package/dist/types/render/components/form-fields/Radio.d.ts +12 -12
  29. package/dist/types/render/components/form-fields/Select.d.ts +12 -12
  30. package/dist/types/render/components/form-fields/Taglist.d.ts +12 -12
  31. package/dist/types/render/components/form-fields/Text.d.ts +10 -10
  32. package/dist/types/render/components/form-fields/Textfield.d.ts +13 -13
  33. package/dist/types/render/components/form-fields/parts/DropdownList.d.ts +1 -1
  34. package/dist/types/render/components/index.d.ts +13 -13
  35. package/dist/types/render/context/FormContext.d.ts +12 -12
  36. package/dist/types/render/context/FormRenderContext.d.ts +6 -6
  37. package/dist/types/render/context/index.d.ts +2 -2
  38. package/dist/types/render/hooks/useKeyDownAction.d.ts +1 -1
  39. package/dist/types/render/hooks/useService.d.ts +1 -1
  40. package/dist/types/render/hooks/useValuesAsync.d.ts +28 -28
  41. package/dist/types/render/index.d.ts +11 -11
  42. package/dist/types/util/form.d.ts +6 -6
  43. package/dist/types/util/index.d.ts +24 -24
  44. package/dist/types/util/injector.d.ts +2 -2
  45. package/package.json +2 -2
@@ -1,13 +1,13 @@
1
- declare function Checkbox(props: any): import("preact").JSX.Element;
2
- declare namespace Checkbox {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: boolean;
8
- export function sanitizeValue({ value }: {
9
- value: any;
10
- }): boolean;
11
- }
12
- export default Checkbox;
13
- declare const type: "checkbox";
1
+ declare function Checkbox(props: any): import("preact").JSX.Element;
2
+ declare namespace Checkbox {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: boolean;
8
+ export function sanitizeValue({ value }: {
9
+ value: any;
10
+ }): boolean;
11
+ }
12
+ export default Checkbox;
13
+ declare const type: "checkbox";
@@ -1,12 +1,12 @@
1
- declare function Checklist(props: any): import("preact").JSX.Element;
2
- declare namespace Checklist {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: any[];
8
- export { sanitizeMultiSelectValue as sanitizeValue };
9
- }
10
- export default Checklist;
11
- declare const type: "checklist";
12
- import { sanitizeMultiSelectValue } from "../Util";
1
+ declare function Checklist(props: any): import("preact").JSX.Element;
2
+ declare namespace Checklist {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: any[];
8
+ export { sanitizeMultiSelectValue as sanitizeValue };
9
+ }
10
+ export default Checklist;
11
+ declare const type: "checklist";
12
+ import { sanitizeMultiSelectValue } from "../Util";
@@ -1,9 +1,9 @@
1
- declare function Default(props: any): import("preact").JSX.Element;
2
- declare namespace Default {
3
- function create(options?: {}): {
4
- components: any[];
5
- };
6
- const type: string;
7
- const keyed: boolean;
8
- }
9
- export default Default;
1
+ declare function Default(props: any): import("preact").JSX.Element;
2
+ declare namespace Default {
3
+ function create(options?: {}): {
4
+ components: any[];
5
+ };
6
+ const type: string;
7
+ const keyed: boolean;
8
+ }
9
+ export default Default;
@@ -1,13 +1,13 @@
1
- declare function Number(props: any): import("preact").JSX.Element;
2
- declare namespace Number {
3
- export function create(options?: {}): {};
4
- export function sanitizeValue({ value }: {
5
- value: any;
6
- }): number;
7
- export { type };
8
- export const keyed: boolean;
9
- export const label: string;
10
- export const emptyValue: any;
11
- }
12
- export default Number;
13
- declare const type: "number";
1
+ declare function Number(props: any): import("preact").JSX.Element;
2
+ declare namespace Number {
3
+ export function create(options?: {}): {};
4
+ export function sanitizeValue({ value }: {
5
+ value: any;
6
+ }): number;
7
+ export { type };
8
+ export const keyed: boolean;
9
+ export const label: string;
10
+ export const emptyValue: any;
11
+ }
12
+ export default Number;
13
+ declare const type: "number";
@@ -1,12 +1,12 @@
1
- declare function Radio(props: any): import("preact").JSX.Element;
2
- declare namespace Radio {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: any;
8
- export { sanitizeSingleSelectValue as sanitizeValue };
9
- }
10
- export default Radio;
11
- declare const type: "radio";
12
- import { sanitizeSingleSelectValue } from "../Util";
1
+ declare function Radio(props: any): import("preact").JSX.Element;
2
+ declare namespace Radio {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: any;
8
+ export { sanitizeSingleSelectValue as sanitizeValue };
9
+ }
10
+ export default Radio;
11
+ declare const type: "radio";
12
+ import { sanitizeSingleSelectValue } from "../Util";
@@ -1,12 +1,12 @@
1
- declare function Select(props: any): import("preact").JSX.Element;
2
- declare namespace Select {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: any;
8
- export { sanitizeSingleSelectValue as sanitizeValue };
9
- }
10
- export default Select;
11
- declare const type: "select";
12
- import { sanitizeSingleSelectValue } from "../Util";
1
+ declare function Select(props: any): import("preact").JSX.Element;
2
+ declare namespace Select {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: any;
8
+ export { sanitizeSingleSelectValue as sanitizeValue };
9
+ }
10
+ export default Select;
11
+ declare const type: "select";
12
+ import { sanitizeSingleSelectValue } from "../Util";
@@ -1,12 +1,12 @@
1
- declare function Taglist(props: any): import("preact").JSX.Element;
2
- declare namespace Taglist {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: any[];
8
- export { sanitizeMultiSelectValue as sanitizeValue };
9
- }
10
- export default Taglist;
11
- declare const type: "taglist";
12
- import { sanitizeMultiSelectValue } from "../Util";
1
+ declare function Taglist(props: any): import("preact").JSX.Element;
2
+ declare namespace Taglist {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: any[];
8
+ export { sanitizeMultiSelectValue as sanitizeValue };
9
+ }
10
+ export default Taglist;
11
+ declare const type: "taglist";
12
+ import { sanitizeMultiSelectValue } from "../Util";
@@ -1,10 +1,10 @@
1
- declare function Text(props: any): import("preact").JSX.Element;
2
- declare namespace Text {
3
- export function create(options?: {}): {
4
- text: string;
5
- };
6
- export { type };
7
- export const keyed: boolean;
8
- }
9
- export default Text;
10
- declare const type: "text";
1
+ declare function Text(props: any): import("preact").JSX.Element;
2
+ declare namespace Text {
3
+ export function create(options?: {}): {
4
+ text: string;
5
+ };
6
+ export { type };
7
+ export const keyed: boolean;
8
+ }
9
+ export default Text;
10
+ declare const type: "text";
@@ -1,13 +1,13 @@
1
- declare function Textfield(props: any): import("preact").JSX.Element;
2
- declare namespace Textfield {
3
- export function create(options?: {}): {};
4
- export { type };
5
- export const label: string;
6
- export const keyed: boolean;
7
- export const emptyValue: string;
8
- export function sanitizeValue({ value }: {
9
- value: any;
10
- }): string;
11
- }
12
- export default Textfield;
13
- declare const type: "textfield";
1
+ declare function Textfield(props: any): import("preact").JSX.Element;
2
+ declare namespace Textfield {
3
+ export function create(options?: {}): {};
4
+ export { type };
5
+ export const label: string;
6
+ export const keyed: boolean;
7
+ export const emptyValue: string;
8
+ export function sanitizeValue({ value }: {
9
+ value: any;
10
+ }): string;
11
+ }
12
+ export default Textfield;
13
+ declare const type: "textfield";
@@ -1 +1 @@
1
- export default function DropdownList(props: any): import("preact").JSX.Element;
1
+ export default function DropdownList(props: any): import("preact").JSX.Element;
@@ -1,13 +1,13 @@
1
- export const formFields: (typeof Button | typeof Default | typeof Radio | typeof Text)[];
2
- import Button from "./form-fields/Button";
3
- import Checkbox from "./form-fields/Checkbox";
4
- import Checklist from "./form-fields/Checklist";
5
- import Default from "./form-fields/Default";
6
- import FormComponent from "./FormComponent";
7
- import Number from "./form-fields/Number";
8
- import Radio from "./form-fields/Radio";
9
- import Select from "./form-fields/Select";
10
- import Taglist from "./form-fields/Taglist";
11
- import Text from "./form-fields/Text";
12
- import Textfield from "./form-fields/Textfield";
13
- export { Button, Checkbox, Checklist, Default, FormComponent, Number, Radio, Select, Taglist, Text, Textfield };
1
+ export const formFields: (typeof Button | typeof Default | typeof Radio | typeof Text)[];
2
+ import Button from "./form-fields/Button";
3
+ import Checkbox from "./form-fields/Checkbox";
4
+ import Checklist from "./form-fields/Checklist";
5
+ import Default from "./form-fields/Default";
6
+ import FormComponent from "./FormComponent";
7
+ import Number from "./form-fields/Number";
8
+ import Radio from "./form-fields/Radio";
9
+ import Select from "./form-fields/Select";
10
+ import Taglist from "./form-fields/Taglist";
11
+ import Text from "./form-fields/Text";
12
+ import Textfield from "./form-fields/Textfield";
13
+ export { Button, Checkbox, Checklist, Default, FormComponent, Number, Radio, Select, Taglist, Text, Textfield };
@@ -1,12 +1,12 @@
1
- export default FormContext;
2
- declare const FormContext: import("preact").Context<{
3
- getService: typeof getService;
4
- formId: any;
5
- }>;
6
- /**
7
- * @param {string} type
8
- * @param {boolean} [strict]
9
- *
10
- * @returns {any}
11
- */
12
- declare function getService(type: string, strict?: boolean): any;
1
+ export default FormContext;
2
+ declare const FormContext: import("preact").Context<{
3
+ getService: typeof getService;
4
+ formId: any;
5
+ }>;
6
+ /**
7
+ * @param {string} type
8
+ * @param {boolean} [strict]
9
+ *
10
+ * @returns {any}
11
+ */
12
+ declare function getService(type: string, strict?: boolean): any;
@@ -1,6 +1,6 @@
1
- export default FormRenderContext;
2
- declare const FormRenderContext: import("preact").Context<{
3
- Empty: (props: any) => any;
4
- Children: (props: any) => any;
5
- Element: (props: any) => any;
6
- }>;
1
+ export default FormRenderContext;
2
+ declare const FormRenderContext: import("preact").Context<{
3
+ Empty: (props: any) => any;
4
+ Children: (props: any) => any;
5
+ Element: (props: any) => any;
6
+ }>;
@@ -1,2 +1,2 @@
1
- export { default as FormRenderContext } from "./FormRenderContext";
2
- export { default as FormContext } from "./FormContext";
1
+ export { default as FormRenderContext } from "./FormRenderContext";
2
+ export { default as FormContext } from "./FormContext";
@@ -1 +1 @@
1
- export default function useKeyDownAction(targetKey: any, action: any, listenerElement?: Window & typeof globalThis): void;
1
+ export default function useKeyDownAction(targetKey: any, action: any, listenerElement?: Window & typeof globalThis): void;
@@ -1 +1 @@
1
- export default function _default(type: any, strict: any): any;
1
+ export default function _default(type: any, strict: any): any;
@@ -1,28 +1,28 @@
1
- /**
2
- * @typedef {Object} ValuesGetter
3
- * @property {Object[]} values - The values data
4
- * @property {(LOAD_STATES)} state - The values data's loading state, to use for conditional rendering
5
- */
6
- /**
7
- * A hook to load values for single and multiselect components.
8
- *
9
- * @param {Object} field - The form field to handle values for
10
- * @return {ValuesGetter} valuesGetter - A values getter object providing loading state and values
11
- */
12
- export default function _default(field: any): ValuesGetter;
13
- export type LOAD_STATES = string;
14
- export namespace LOAD_STATES {
15
- const LOADING: string;
16
- const LOADED: string;
17
- const ERROR: string;
18
- }
19
- export type ValuesGetter = {
20
- /**
21
- * - The values data
22
- */
23
- values: any[];
24
- /**
25
- * - The values data's loading state, to use for conditional rendering
26
- */
27
- state: (LOAD_STATES);
28
- };
1
+ /**
2
+ * @typedef {Object} ValuesGetter
3
+ * @property {Object[]} values - The values data
4
+ * @property {(LOAD_STATES)} state - The values data's loading state, to use for conditional rendering
5
+ */
6
+ /**
7
+ * A hook to load values for single and multiselect components.
8
+ *
9
+ * @param {Object} field - The form field to handle values for
10
+ * @return {ValuesGetter} valuesGetter - A values getter object providing loading state and values
11
+ */
12
+ export default function _default(field: any): ValuesGetter;
13
+ export type LOAD_STATES = string;
14
+ export namespace LOAD_STATES {
15
+ const LOADING: string;
16
+ const LOADED: string;
17
+ const ERROR: string;
18
+ }
19
+ export type ValuesGetter = {
20
+ /**
21
+ * - The values data
22
+ */
23
+ values: any[];
24
+ /**
25
+ * - The values data's loading state, to use for conditional rendering
26
+ */
27
+ state: (LOAD_STATES);
28
+ };
@@ -1,11 +1,11 @@
1
- export { FormFields };
2
- export * from "./components";
3
- export * from "./context";
4
- declare namespace _default {
5
- const __init__: string[];
6
- const formFields: (string | typeof FormFields)[];
7
- const renderer: (string | typeof Renderer)[];
8
- }
9
- export default _default;
10
- import FormFields from "./FormFields";
11
- import Renderer from "./Renderer";
1
+ export { FormFields };
2
+ export * from "./components";
3
+ export * from "./context";
4
+ declare namespace _default {
5
+ const __init__: string[];
6
+ const formFields: (string | typeof FormFields)[];
7
+ const renderer: (string | typeof Renderer)[];
8
+ }
9
+ export default _default;
10
+ import FormFields from "./FormFields";
11
+ import Renderer from "./Renderer";
@@ -1,6 +1,6 @@
1
- /**
2
- * @param {string?} prefix
3
- *
4
- * @returns Element
5
- */
6
- export function createFormContainer(prefix?: string | null): HTMLDivElement;
1
+ /**
2
+ * @param {string?} prefix
3
+ *
4
+ * @returns Element
5
+ */
6
+ export function createFormContainer(prefix?: string | null): HTMLDivElement;
@@ -1,24 +1,24 @@
1
- export function findErrors(errors: any, path: any): any;
2
- export function isRequired(field: any): any;
3
- export function pathParse(path: any): any;
4
- export function pathsEqual(a: any, b: any): any;
5
- export function pathStringify(path: any): any;
6
- export function generateIndexForType(type: any): any;
7
- export function generateIdForType(type: any): string;
8
- /**
9
- * @template T
10
- * @param {T} data
11
- * @param {(this: any, key: string, value: any) => any} [replacer]
12
- * @return {T}
13
- */
14
- export function clone<T>(data: T, replacer?: (this: any, key: string, value: any) => any): T;
15
- /**
16
- * Parse the schema for input variables a form might make use of
17
- *
18
- * @param {any} schema
19
- *
20
- * @return {string[]}
21
- */
22
- export function getSchemaVariables(schema: any): string[];
23
- export * from "./injector";
24
- export * from "./form";
1
+ export function findErrors(errors: any, path: any): any;
2
+ export function isRequired(field: any): any;
3
+ export function pathParse(path: any): any;
4
+ export function pathsEqual(a: any, b: any): any;
5
+ export function pathStringify(path: any): any;
6
+ export function generateIndexForType(type: any): any;
7
+ export function generateIdForType(type: any): string;
8
+ /**
9
+ * @template T
10
+ * @param {T} data
11
+ * @param {(this: any, key: string, value: any) => any} [replacer]
12
+ * @return {T}
13
+ */
14
+ export function clone<T>(data: T, replacer?: (this: any, key: string, value: any) => any): T;
15
+ /**
16
+ * Parse the schema for input variables a form might make use of
17
+ *
18
+ * @param {any} schema
19
+ *
20
+ * @return {string[]}
21
+ */
22
+ export function getSchemaVariables(schema: any): string[];
23
+ export * from "./injector";
24
+ export * from "./form";
@@ -1,2 +1,2 @@
1
- export function createInjector(bootstrapModules: any): Injector;
2
- import { Injector } from "didi";
1
+ export function createInjector(bootstrapModules: any): Injector;
2
+ import { Injector } from "didi";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -52,5 +52,5 @@
52
52
  "files": [
53
53
  "dist"
54
54
  ],
55
- "gitHead": "357dfcdd0c046494c54e26b35e415e0e688f8f7c"
55
+ "gitHead": "a0c48668fabc92d210bd5675986715f262192d77"
56
56
  }