@bpmn-io/form-js-editor 1.6.4 → 1.7.0
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.
- package/dist/assets/form-js-editor-base.css +23 -2
- package/dist/assets/form-js-editor.css +60 -21
- package/dist/assets/properties-panel.css +40 -21
- package/dist/index.cjs +1770 -1432
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +1774 -1436
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +29 -29
- package/dist/types/core/Debounce.d.ts +2 -3
- package/dist/types/core/EventBus.d.ts +1 -1
- package/dist/types/core/FormFieldRegistry.d.ts +1 -1
- package/dist/types/core/FormLayoutValidator.d.ts +7 -8
- package/dist/types/core/FormLayouter.d.ts +1 -1
- package/dist/types/core/index.d.ts +8 -9
- package/dist/types/features/SectionModuleBase.d.ts +1 -1
- package/dist/types/features/dragging/Dragging.d.ts +13 -14
- package/dist/types/features/dragging/index.d.ts +2 -3
- package/dist/types/features/editor-actions/FormEditorActions.d.ts +2 -3
- package/dist/types/features/editor-actions/index.d.ts +2 -3
- package/dist/types/features/expression-language/EditorTemplating.d.ts +2 -3
- package/dist/types/features/expression-language/index.d.ts +2 -3
- package/dist/types/features/keyboard/FormEditorKeyboardBindings.d.ts +2 -3
- package/dist/types/features/keyboard/index.d.ts +2 -3
- package/dist/types/features/modeling/FormLayoutUpdater.d.ts +2 -3
- package/dist/types/features/modeling/Modeling.d.ts +9 -10
- package/dist/types/features/modeling/behavior/IdBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/KeyBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/OptionsSourceBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/PathBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/ValidateBehavior.d.ts +2 -3
- package/dist/types/features/modeling/behavior/index.d.ts +6 -7
- package/dist/types/features/modeling/cmd/AddFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/EditFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/MoveFormFieldHandler.d.ts +9 -10
- package/dist/types/features/modeling/cmd/RemoveFormFieldHandler.d.ts +7 -8
- package/dist/types/features/modeling/cmd/UpdateIdClaimHandler.d.ts +5 -6
- package/dist/types/features/modeling/cmd/UpdateKeyClaimHandler.d.ts +3 -4
- package/dist/types/features/modeling/cmd/UpdatePathClaimHandler.d.ts +3 -4
- package/dist/types/features/modeling/index.d.ts +8 -9
- package/dist/types/features/palette/PaletteRenderer.d.ts +7 -0
- package/dist/types/features/palette/components/Palette.d.ts +2 -2
- package/dist/types/features/palette/components/PaletteEntry.d.ts +1 -1
- package/dist/types/features/palette/index.d.ts +3 -4
- package/dist/types/features/properties-panel/PropertiesPanel.d.ts +1 -1
- package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +4 -5
- package/dist/types/features/properties-panel/PropertiesProvider.d.ts +2 -3
- package/dist/types/features/properties-panel/Util.d.ts +6 -1
- package/dist/types/features/properties-panel/components/AutoFocusSelect.d.ts +1 -1
- package/dist/types/features/properties-panel/components/index.d.ts +1 -1
- package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +2 -2
- package/dist/types/features/properties-panel/context/index.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ActionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/AdornerEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/AltTextEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ColumnEntry.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/ColumnsEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ConditionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/CustomValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DateTimeConstraintsEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DateTimeEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/{DateTimeSerializationEntry.d.ts → DateTimeFormatEntry.d.ts} +1 -1
- package/dist/types/features/properties-panel/entries/DefaultValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DescriptionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/DisabledEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/GroupAppearanceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/HeightEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/HtmlEntry.d.ts +10 -0
- package/dist/types/features/properties-panel/entries/IFrameHeightEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/IFrameUrlEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/IdEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ImageSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/InputKeyOptionsSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/KeyEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/LabelEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/LayouterAppearanceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/NumberEntries.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/NumberSerializationEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/OptionsExpressionEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/OptionsSourceSelectEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/PathEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ReadonlyEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/RepeatableEntry.d.ts +1 -2
- package/dist/types/features/properties-panel/entries/SelectEntries.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/StaticOptionsSourceEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/TextEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/ValueEntry.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/index.d.ts +4 -4
- package/dist/types/features/properties-panel/entries/factories/simpleBoolEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/simpleRangeIntegerEntryFactory.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/factories/simpleSelectEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/simpleStringEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/factories/zeroPositiveIntegerEntryFactory.d.ts +1 -1
- package/dist/types/features/properties-panel/entries/index.d.ts +34 -33
- package/dist/types/features/properties-panel/groups/AppearanceGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/ConstraintsGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/CustomPropertiesGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/GeneralGroup.d.ts +1 -2
- package/dist/types/features/properties-panel/groups/LayoutGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/OptionsGroups.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/SecurityAttributesGroup.d.ts +20 -0
- package/dist/types/features/properties-panel/groups/SerializationGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/ValidationGroup.d.ts +1 -1
- package/dist/types/features/properties-panel/groups/index.d.ts +9 -8
- package/dist/types/features/properties-panel/hooks/index.d.ts +1 -1
- package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +1 -1
- package/dist/types/features/properties-panel/index.d.ts +4 -5
- package/dist/types/features/render-injection/RenderInjector.d.ts +3 -4
- package/dist/types/features/render-injection/components/InjectedRendersRoot.d.ts +1 -2
- package/dist/types/features/render-injection/index.d.ts +2 -3
- package/dist/types/features/render-injection/slot-fill/Fill.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/FillContext.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/Slot.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/SlotContext.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/SlotFillRoot.d.ts +1 -2
- package/dist/types/features/render-injection/slot-fill/index.d.ts +5 -5
- package/dist/types/features/repeat-render/EditorRepeatRenderManager.d.ts +2 -3
- package/dist/types/features/repeat-render/index.d.ts +2 -3
- package/dist/types/features/selection/Selection.d.ts +2 -3
- package/dist/types/features/selection/SelectionBehavior.d.ts +2 -3
- package/dist/types/features/selection/index.d.ts +3 -4
- package/dist/types/index.d.ts +1 -1
- package/dist/types/render/EditorFormFields.d.ts +1 -1
- package/dist/types/render/Renderer.d.ts +6 -7
- package/dist/types/render/components/FormEditor.d.ts +1 -1
- package/dist/types/render/components/ModularSection.d.ts +1 -2
- package/dist/types/render/components/editor-form-fields/EditorHtml.d.ts +5 -0
- package/dist/types/render/components/editor-form-fields/EditorIFrame.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/EditorTable.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/EditorText.d.ts +2 -3
- package/dist/types/render/components/editor-form-fields/index.d.ts +5 -4
- package/dist/types/render/context/DragAndDropContext.d.ts +1 -2
- package/dist/types/render/context/FormEditorContext.d.ts +2 -2
- package/dist/types/render/context/index.d.ts +2 -2
- package/dist/types/render/hooks/index.d.ts +3 -3
- package/dist/types/render/hooks/useDebounce.d.ts +4 -1
- package/dist/types/render/hooks/usePrevious.d.ts +1 -1
- package/dist/types/render/hooks/useService.d.ts +1 -1
- package/dist/types/render/index.d.ts +3 -4
- package/package.json +6 -6
- package/dist/types/features/palette/PaletteModule.d.ts +0 -8
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
export namespace ModelingModule {
|
|
2
2
|
let __depends__: (import("didi").ModuleDeclaration | {
|
|
3
3
|
__init__: string[];
|
|
4
|
-
idBehavior: (string | typeof import("./behavior/IdBehavior").
|
|
5
|
-
keyBehavior: (string | typeof import("./behavior/KeyBehavior").
|
|
6
|
-
pathBehavior: (string | typeof import("./behavior/PathBehavior").
|
|
7
|
-
validateBehavior: (string | typeof import("./behavior/ValidateBehavior").
|
|
8
|
-
optionsSourceBehavior: (string | typeof import("./behavior/OptionsSourceBehavior").
|
|
4
|
+
idBehavior: (string | typeof import("./behavior/IdBehavior").IdBehavior)[];
|
|
5
|
+
keyBehavior: (string | typeof import("./behavior/KeyBehavior").KeyBehavior)[];
|
|
6
|
+
pathBehavior: (string | typeof import("./behavior/PathBehavior").PathBehavior)[];
|
|
7
|
+
validateBehavior: (string | typeof import("./behavior/ValidateBehavior").ValidateBehavior)[];
|
|
8
|
+
optionsSourceBehavior: (string | typeof import("./behavior/OptionsSourceBehavior").OptionsSourceBehavior)[];
|
|
9
9
|
columnsSourceBehavior: (string | typeof import("./behavior/ColumnsSourceBehavior").ColumnsSourceBehavior)[];
|
|
10
10
|
tableDataSourceBehavior: (string | typeof import("./behavior/TableDataSourceBehavior").TableDataSourceBehavior)[];
|
|
11
11
|
})[];
|
|
@@ -13,6 +13,5 @@ declare namespace _default {
|
|
|
13
13
|
let formLayoutUpdater: (string | typeof FormLayoutUpdater)[];
|
|
14
14
|
let modeling: (string | typeof Modeling)[];
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
import
|
|
18
|
-
import Modeling from './Modeling';
|
|
16
|
+
import { FormLayoutUpdater } from './FormLayoutUpdater';
|
|
17
|
+
import { Modeling } from './Modeling';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function Palette(props: any): import("preact").JSX.Element;
|
|
2
2
|
/**
|
|
3
3
|
* Returns a list of palette entries.
|
|
4
4
|
*
|
|
@@ -37,4 +37,4 @@ export type PaletteEntry = {
|
|
|
37
37
|
icon: preact.FunctionalComponent;
|
|
38
38
|
iconUrl: string;
|
|
39
39
|
};
|
|
40
|
-
import PaletteEntry from './PaletteEntry';
|
|
40
|
+
import { PaletteEntry } from './PaletteEntry';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function PaletteEntry(props: any): import("preact").JSX.Element;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
let palette: (string | typeof
|
|
1
|
+
export namespace PaletteModule {
|
|
2
|
+
let palette: (string | typeof PaletteRenderer)[];
|
|
3
3
|
}
|
|
4
|
-
|
|
5
|
-
import PaletteModule from './PaletteModule';
|
|
4
|
+
import { PaletteRenderer } from './PaletteRenderer';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function PropertiesPanel(props: any): import("preact").JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @typedef { { parent: Element } } PropertiesPanelConfig
|
|
3
|
-
* @typedef { import('../../core/EventBus').
|
|
3
|
+
* @typedef { import('../../core/EventBus').EventBus } EventBus
|
|
4
4
|
* @typedef { import('../../types').Injector } Injector
|
|
5
5
|
* @typedef { { getGroups: ({ formField, editFormField }) => ({ groups}) => Array } } PropertiesProvider
|
|
6
6
|
*/
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* @param {Injector} injector
|
|
10
10
|
* @param {EventBus} eventBus
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
export class PropertiesPanelRenderer {
|
|
13
13
|
constructor(propertiesPanelConfig: any, injector: any, eventBus: any);
|
|
14
14
|
_eventBus: any;
|
|
15
15
|
_injector: any;
|
|
@@ -35,14 +35,13 @@ declare class PropertiesPanelRenderer {
|
|
|
35
35
|
registerProvider(provider: PropertiesProvider, priority?: number): void;
|
|
36
36
|
_getProviders(): any;
|
|
37
37
|
}
|
|
38
|
-
|
|
38
|
+
export namespace PropertiesPanelRenderer {
|
|
39
39
|
let $inject: string[];
|
|
40
40
|
}
|
|
41
|
-
export default PropertiesPanelRenderer;
|
|
42
41
|
export type PropertiesPanelConfig = {
|
|
43
42
|
parent: Element;
|
|
44
43
|
};
|
|
45
|
-
export type EventBus = import('../../core/EventBus').
|
|
44
|
+
export type EventBus = import('../../core/EventBus').EventBus;
|
|
46
45
|
export type Injector = import('../../types').Injector;
|
|
47
46
|
export type PropertiesProvider = {
|
|
48
47
|
getGroups: ({ formField, editFormField }: {
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
export class PropertiesProvider {
|
|
2
2
|
constructor(propertiesPanel: any, injector: any);
|
|
3
3
|
_injector: any;
|
|
4
4
|
_filterVisibleEntries(groups: any, field: any, getService: any): any;
|
|
5
5
|
getGroups(field: any, editField: any): (groups: any) => any;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
export namespace PropertiesProvider {
|
|
8
8
|
let $inject: string[];
|
|
9
9
|
}
|
|
10
|
-
export default PropertiesProvider;
|
|
@@ -2,7 +2,12 @@ export function arrayAdd(array: any, index: any, item: any): any[];
|
|
|
2
2
|
export function arrayRemove(array: any, index: any): any[];
|
|
3
3
|
export function prefixId(id: any): string;
|
|
4
4
|
export function countDecimals(number: any): any;
|
|
5
|
-
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @param {unknown} value
|
|
8
|
+
* @returns {boolean}
|
|
9
|
+
*/
|
|
10
|
+
export function isValidNumber(value: unknown): boolean;
|
|
6
11
|
export function stopPropagation(listener: any): (event: any) => void;
|
|
7
12
|
export function textToLabel(text: any): string;
|
|
8
13
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function AutoFocusSelectEntry(props: any): import("preact").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { AutoFocusSelectEntry } from "./AutoFocusSelect";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare const PropertiesPanelContext: import("preact").Context<{
|
|
1
|
+
export const FormPropertiesPanelContext: import("preact").Context<{
|
|
3
2
|
getService: typeof getService;
|
|
4
3
|
}>;
|
|
5
4
|
/**
|
|
@@ -9,3 +8,4 @@ declare const PropertiesPanelContext: import("preact").Context<{
|
|
|
9
8
|
* @returns {any}
|
|
10
9
|
*/
|
|
11
10
|
declare function getService(type: string, strict?: boolean): any;
|
|
11
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { FormPropertiesPanelContext } from "./FormPropertiesPanelContext";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function RepeatableEntry(props: any): ({
|
|
2
2
|
id: any;
|
|
3
3
|
label: any;
|
|
4
4
|
path: any;
|
|
@@ -18,7 +18,6 @@ export default function RepeatableEntry(props: any): ({
|
|
|
18
18
|
editField: any;
|
|
19
19
|
min: any;
|
|
20
20
|
max: any;
|
|
21
|
-
defaultValue: any;
|
|
22
21
|
component: (props: any) => any;
|
|
23
22
|
isEdited: any;
|
|
24
23
|
})[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
1
|
+
export { simpleStringEntryFactory } from "./simpleStringEntryFactory";
|
|
2
|
+
export { simpleBoolEntryFactory } from "./simpleBoolEntryFactory";
|
|
3
|
+
export { zeroPositiveIntegerEntryFactory } from "./zeroPositiveIntegerEntryFactory";
|
|
4
|
+
export { simpleSelectEntryFactory } from "./simpleSelectEntryFactory";
|
|
5
5
|
export { simpleRangeIntegerEntryFactory } from "./simpleRangeIntegerEntryFactory";
|
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
1
|
+
export { ActionEntry } from "./ActionEntry";
|
|
2
|
+
export { AltTextEntry } from "./AltTextEntry";
|
|
3
|
+
export { ColumnsEntry } from "./ColumnsEntry";
|
|
4
|
+
export { DescriptionEntry } from "./DescriptionEntry";
|
|
5
|
+
export { DefaultValueEntry } from "./DefaultValueEntry";
|
|
6
|
+
export { DisabledEntry } from "./DisabledEntry";
|
|
7
|
+
export { IdEntry } from "./IdEntry";
|
|
8
|
+
export { KeyEntry } from "./KeyEntry";
|
|
9
|
+
export { PathEntry } from "./PathEntry";
|
|
10
|
+
export { GroupAppearanceEntry } from "./GroupAppearanceEntry";
|
|
11
|
+
export { LabelEntry } from "./LabelEntry";
|
|
12
|
+
export { IFrameHeightEntry } from "./IFrameHeightEntry";
|
|
13
|
+
export { IFrameUrlEntry } from "./IFrameUrlEntry";
|
|
14
|
+
export { ImageSourceEntry } from "./ImageSourceEntry";
|
|
15
|
+
export { TextEntry } from "./TextEntry";
|
|
16
|
+
export { HtmlEntry } from "./HtmlEntry";
|
|
17
|
+
export { HeightEntry } from "./HeightEntry";
|
|
18
|
+
export { NumberEntries } from "./NumberEntries";
|
|
19
|
+
export { NumberSerializationEntry } from "./NumberSerializationEntry";
|
|
20
|
+
export { DateTimeEntry } from "./DateTimeEntry";
|
|
21
|
+
export { DateTimeConstraintsEntry } from "./DateTimeConstraintsEntry";
|
|
22
|
+
export { DateTimeFormatEntry } from "./DateTimeFormatEntry";
|
|
23
|
+
export { SelectEntries } from "./SelectEntries";
|
|
24
|
+
export { ValueEntry } from "./ValueEntry";
|
|
25
|
+
export { CustomValueEntry } from "./CustomValueEntry";
|
|
26
|
+
export { OptionsSourceSelectEntry } from "./OptionsSourceSelectEntry";
|
|
27
|
+
export { InputKeyOptionsSourceEntry } from "./InputKeyOptionsSourceEntry";
|
|
28
|
+
export { StaticOptionsSourceEntry } from "./StaticOptionsSourceEntry";
|
|
29
|
+
export { AdornerEntry } from "./AdornerEntry";
|
|
30
|
+
export { ReadonlyEntry } from "./ReadonlyEntry";
|
|
31
|
+
export { LayouterAppearanceEntry } from "./LayouterAppearanceEntry";
|
|
32
|
+
export { RepeatableEntry } from "./RepeatableEntry";
|
|
33
|
+
export { ConditionEntry } from "./ConditionEntry";
|
|
34
|
+
export { OptionsExpressionEntry } from "./OptionsExpressionEntry";
|
|
34
35
|
export { TableDataSourceEntry } from "./TableDataSourceEntry";
|
|
35
36
|
export { PaginationEntry } from "./PaginationEntry";
|
|
36
37
|
export { RowCountEntry } from "./RowCountEntry";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function GeneralGroup(field: any, editField: any, getService: any): {
|
|
2
2
|
id: string;
|
|
3
3
|
label: string;
|
|
4
4
|
entries: ({
|
|
@@ -27,7 +27,6 @@ export default function GeneralGroup(field: any, editField: any, getService: any
|
|
|
27
27
|
editField: any;
|
|
28
28
|
min: any;
|
|
29
29
|
max: any;
|
|
30
|
-
defaultValue: any;
|
|
31
30
|
component: (props: any) => any;
|
|
32
31
|
isEdited: any;
|
|
33
32
|
})[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export function OptionsGroups(field: any, editField: any, getService: any): any[];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export function SecurityAttributesGroup(field: any, editField: any): {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
entries: ({
|
|
5
|
+
id: any;
|
|
6
|
+
label: any;
|
|
7
|
+
path: any;
|
|
8
|
+
field: any;
|
|
9
|
+
editField: any;
|
|
10
|
+
description: any;
|
|
11
|
+
component: (props: any) => any;
|
|
12
|
+
isEdited: any;
|
|
13
|
+
isDefaultVisible: any;
|
|
14
|
+
getValue: any;
|
|
15
|
+
setValue: any;
|
|
16
|
+
} | {
|
|
17
|
+
component: (props: any) => import("preact").JSX.Element;
|
|
18
|
+
})[];
|
|
19
|
+
tooltip: import("preact").JSX.Element;
|
|
20
|
+
};
|