@bpmn-io/form-js-editor
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -32,3 +32,3 @@ export const DRAG_CONTAINER_CLS: "fjs-drag-container"; | ||
/** | ||
* Calculcates position in form schema given the dropped place. | ||
* Calculates position in form schema given the dropped place. | ||
* | ||
@@ -35,0 +35,0 @@ * @param { FormRow } targetRow |
@@ -7,3 +7,5 @@ declare namespace _default { | ||
let validateBehavior: (string | typeof ValidateBehavior)[]; | ||
let valuesSourceBehavior: (string | typeof ValuesSourceBehavior)[]; | ||
let optionsSourceBehavior: (string | typeof OptionsSourceBehavior)[]; | ||
let columnsSourceBehavior: (string | typeof ColumnsSourceBehavior)[]; | ||
let tableDataSourceBehavior: (string | typeof TableDataSourceBehavior)[]; | ||
} | ||
@@ -15,2 +17,4 @@ export default _default; | ||
import ValidateBehavior from './ValidateBehavior'; | ||
import ValuesSourceBehavior from './ValuesSourceBehavior'; | ||
import OptionsSourceBehavior from './OptionsSourceBehavior'; | ||
import { ColumnsSourceBehavior } from './ColumnsSourceBehavior'; | ||
import { TableDataSourceBehavior } from './TableDataSourceBehavior'; |
@@ -8,3 +8,5 @@ declare namespace _default { | ||
validateBehavior: (string | typeof import("./behavior/ValidateBehavior").default)[]; | ||
valuesSourceBehavior: (string | typeof import("./behavior/ValuesSourceBehavior").default)[]; | ||
optionsSourceBehavior: (string | typeof import("./behavior/OptionsSourceBehavior").default)[]; | ||
columnsSourceBehavior: (string | typeof import("./behavior/ColumnsSourceBehavior").ColumnsSourceBehavior)[]; | ||
tableDataSourceBehavior: (string | typeof import("./behavior/TableDataSourceBehavior").TableDataSourceBehavior)[]; | ||
})[]; | ||
@@ -11,0 +13,0 @@ let __init__: string[]; |
@@ -1,2 +0,2 @@ | ||
export function ConditionEntry(props: any): { | ||
export default function ConditionEntry(props: any): { | ||
id: string; | ||
@@ -3,0 +3,0 @@ component: typeof Condition; |
export { default as simpleStringEntryFactory } from "./simpleStringEntryFactory"; | ||
export { default as simpleBoolEntryFactory } from "./simpleBoolEntryFactory"; | ||
export { default as zeroPositiveIntegerEntryFactory } from "./zeroPositiveIntegerEntryFactory"; | ||
export { default as simpleSelectEntryFactory } from "./simpleSelectEntryFactory"; | ||
export { simpleRangeIntegerEntryFactory } from "./simpleRangeIntegerEntryFactory"; |
@@ -10,3 +10,3 @@ export { default as ActionEntry } from "./ActionEntry"; | ||
export { default as PathEntry } from "./PathEntry"; | ||
export { default as GroupEntries } from "./GroupEntries"; | ||
export { default as GroupAppearanceEntry } from "./GroupAppearanceEntry"; | ||
export { default as LabelEntry } from "./LabelEntry"; | ||
@@ -26,8 +26,16 @@ export { default as IFrameHeightEntry } from "./IFrameHeightEntry"; | ||
export { default as CustomValueEntry } from "./CustomValueEntry"; | ||
export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry"; | ||
export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry"; | ||
export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry"; | ||
export { default as OptionsSourceSelectEntry } from "./OptionsSourceSelectEntry"; | ||
export { default as InputKeyOptionsSourceEntry } from "./InputKeyOptionsSourceEntry"; | ||
export { default as StaticOptionsSourceEntry } from "./StaticOptionsSourceEntry"; | ||
export { default as AdornerEntry } from "./AdornerEntry"; | ||
export { default as ReadonlyEntry } from "./ReadonlyEntry"; | ||
export { ConditionEntry } from "./ConditionEntry"; | ||
export { default as ValuesExpressionEntry } from "./ValuesExpressionEntry"; | ||
export { default as LayouterAppearanceEntry } from "./LayouterAppearanceEntry"; | ||
export { default as RepeatableEntry } from "./RepeatableEntry"; | ||
export { default as ConditionEntry } from "./ConditionEntry"; | ||
export { default as OptionsExpressionEntry } from "./OptionsExpressionEntry"; | ||
export { TableDataSourceEntry } from "./TableDataSourceEntry"; | ||
export { PaginationEntry } from "./PaginationEntry"; | ||
export { RowCountEntry } from "./RowCountEntry"; | ||
export { HeadersSourceSelectEntry } from "./HeadersSourceSelectEntry"; | ||
export { ColumnsExpressionEntry } from "./ColumnsExpressionEntry"; | ||
export { StaticColumnsSourceEntry } from "./StaticColumnsSourceEntry"; |
@@ -1,5 +0,26 @@ | ||
export default function AppearanceGroup(field: any, editField: any): { | ||
export default function AppearanceGroup(field: any, editField: any, getService: any): { | ||
id: string; | ||
label: string; | ||
entries: { | ||
entries: ({ | ||
id: any; | ||
label: any; | ||
path: any; | ||
field: any; | ||
editField: any; | ||
description: any; | ||
component: (props: any) => any; | ||
isEdited: any; | ||
isDefaultVisible: any; | ||
getValue: any; | ||
setValue: any; | ||
} | { | ||
id: any; | ||
label: any; | ||
path: any; | ||
field: any; | ||
editField: any; | ||
optionsArray: any; | ||
component: (props: any) => any; | ||
isEdited: any; | ||
} | { | ||
id: string; | ||
@@ -13,3 +34,3 @@ component: (props: any) => any; | ||
isDefaultVisible: {}; | ||
}[]; | ||
})[]; | ||
}; |
@@ -22,3 +22,14 @@ export default function GeneralGroup(field: any, editField: any, getService: any): { | ||
setValue: any; | ||
} | { | ||
id: any; | ||
label: any; | ||
path: any; | ||
field: any; | ||
editField: any; | ||
min: any; | ||
max: any; | ||
defaultValue: any; | ||
component: (props: any) => any; | ||
isEdited: any; | ||
})[]; | ||
}; |
@@ -5,3 +5,3 @@ export { default as GeneralGroup } from "./GeneralGroup"; | ||
export { default as ValidationGroup } from "./ValidationGroup"; | ||
export { default as ValuesGroups } from "./ValuesGroups"; | ||
export { default as OptionsGroups } from "./OptionsGroups"; | ||
export { default as CustomPropertiesGroup } from "./CustomPropertiesGroup"; | ||
@@ -11,1 +11,2 @@ export { default as AppearanceGroup } from "./AppearanceGroup"; | ||
export { ConditionGroup } from "./ConditionGroup"; | ||
export { TableHeaderGroups } from "./TableHeaderGroups"; |
@@ -8,6 +8,14 @@ export function arrayAdd(array: any, index: any, item: any): any[]; | ||
export function textToLabel(text: any): string; | ||
export function isValidDotPath(path: any): boolean; | ||
/** | ||
* @param {string} path | ||
*/ | ||
export function isValidDotPath(path: string): boolean; | ||
export function hasEntryConfigured(formFieldDefinition: any, entryId: any): any; | ||
export function hasValuesGroupsConfigured(formFieldDefinition: any): any; | ||
export function hasOptionsGroupsConfigured(formFieldDefinition: any): any; | ||
/** | ||
* @param {string} path | ||
*/ | ||
export function hasIntegerPathSegment(path: string): boolean; | ||
export const LABELED_NON_INPUTS: string[]; | ||
export const INPUTS: string[]; | ||
export const VALUES_INPUTS: string[]; | ||
export const OPTIONS_INPUTS: string[]; |
@@ -53,4 +53,11 @@ export function exportSchema(schema: any, exporter: any, schemaVersion: any): any; | ||
private _state; | ||
get: <T>(name: string, strict?: boolean) => T; | ||
invoke: <T_1>(func: (...args: any[]) => T_1, context?: unknown, locals?: import("didi").LocalsMap) => T_1; | ||
get: { | ||
<T>(name: string): T; | ||
<T_1>(name: string, strict: true): T_1; | ||
<T_2>(name: string, strict: boolean): T_2; | ||
}; | ||
invoke: { | ||
<T_3>(func: import("didi").FactoryFunction<T_3>, context?: unknown, locals?: import("didi").LocalsMap): T_3; | ||
<T_4>(func: import("didi").ArrayFunc<T_4>, context?: unknown, locals?: import("didi").LocalsMap): T_4; | ||
}; | ||
clear(): void; | ||
@@ -126,3 +133,5 @@ destroy(): void; | ||
validateBehavior: (string | typeof import("./features/modeling/behavior/ValidateBehavior").default)[]; | ||
valuesSourceBehavior: (string | typeof import("./features/modeling/behavior/ValuesSourceBehavior").default)[]; | ||
optionsSourceBehavior: (string | typeof import("./features/modeling/behavior/OptionsSourceBehavior").default)[]; | ||
columnsSourceBehavior: (string | typeof import("./features/modeling/behavior/ColumnsSourceBehavior").ColumnsSourceBehavior)[]; | ||
tableDataSourceBehavior: (string | typeof import("./features/modeling/behavior/TableDataSourceBehavior").TableDataSourceBehavior)[]; | ||
})[]; | ||
@@ -150,3 +159,3 @@ __init__: string[]; | ||
__init__: string[]; | ||
expressionLanguage: (string | typeof import("@bpmn-io/form-js-viewer/dist/types/features/expression-language/FeelExpressionLanguage").default)[]; | ||
expressionLanguage: (string | typeof import("@bpmn-io/form-js-viewer/dist/types/features/expressionLanguage/FeelExpressionLanguage").default)[]; | ||
templating: (string | typeof import("./features/expression-language/EditorTemplating").default)[]; | ||
@@ -161,2 +170,5 @@ } | typeof MarkdownModule | { | ||
renderInjector: (string | typeof import("./features/render-injection/RenderInjector").default)[]; | ||
} | { | ||
__init__: string[]; | ||
repeatRenderManager: (string | typeof import("./features/repeat-render").EditorRepeatRenderManager)[]; | ||
})[]; | ||
@@ -163,0 +175,0 @@ /** |
@@ -1,3 +0,4 @@ | ||
export const editorFormFields: (typeof EditorIFrame | typeof EditorText)[]; | ||
export const editorFormFields: (typeof EditorIFrame | typeof EditorText | typeof EditorTable)[]; | ||
import EditorIFrame from './EditorIFrame'; | ||
import EditorText from './EditorText'; | ||
import EditorTable from './EditorTable'; |
{ | ||
"name": "@bpmn-io/form-js-editor", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"description": "Edit forms - powered by bpmn.io", | ||
@@ -50,3 +50,3 @@ "exports": { | ||
"@bpmn-io/draggle": "^4.0.0", | ||
"@bpmn-io/form-js-viewer": "^1.5.0", | ||
"@bpmn-io/form-js-viewer": "^1.6.0", | ||
"@bpmn-io/properties-panel": "^3.13.0", | ||
@@ -66,3 +66,3 @@ "array-move": "^3.0.1", | ||
], | ||
"gitHead": "02814e168dd3078869fede070bcc6d8f1f741ec7" | ||
"gitHead": "0f868b4c5679af5366998253e7a602f1375754a7" | ||
} |
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
2246635
159
30886