@react-typed-forms/schemas 11.2.0 → 11.2.2
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/lib/index.js +19 -8
- package/lib/index.js.map +1 -1
- package/lib/renderers.d.ts +1 -0
- package/package.json +1 -1
package/lib/renderers.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface VisibilityRendererRegistration {
|
|
|
62
62
|
export type RendererRegistration = DataRendererRegistration | GroupRendererRegistration | DisplayRendererRegistration | ActionRendererRegistration | LabelRendererRegistration | ArrayRendererRegistration | AdornmentRendererRegistration | LayoutRendererRegistration | VisibilityRendererRegistration;
|
|
63
63
|
export declare function isIconAdornment(a: ControlAdornment): a is IconAdornment;
|
|
64
64
|
export declare function createLayoutRenderer(render: LayoutRendererRegistration["render"], options?: Partial<LayoutRendererRegistration>): LayoutRendererRegistration;
|
|
65
|
+
export declare function createActionRenderer(actionId: string | string[] | undefined, render: ActionRendererRegistration["render"], options?: Partial<ActionRendererRegistration>): ActionRendererRegistration;
|
|
65
66
|
export declare function createArrayRenderer(render: ArrayRendererRegistration["render"], options?: Partial<ArrayRendererRegistration>): ArrayRendererRegistration;
|
|
66
67
|
export declare function createDataRenderer(render: DataRendererRegistration["render"], options?: Partial<DataRendererRegistration>): DataRendererRegistration;
|
|
67
68
|
export declare function createGroupRenderer(render: GroupRendererRegistration["render"], options?: Partial<GroupRendererRegistration>): GroupRendererRegistration;
|