@jsonforms/material-renderers 3.0.0-alpha.3 → 3.0.0-beta.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/docs/assets/js/search.json +1 -1
- package/docs/globals.html +9 -144
- package/docs/index.html +0 -18
- package/docs/interfaces/withoptionlabel.html +3 -3
- package/example/index.ts +2 -3
- package/lib/additional/ListWithDetailMasterItem.d.ts +3 -3
- package/lib/additional/MaterialLabelRenderer.d.ts +13 -13
- package/lib/additional/MaterialListWithDetailRenderer.d.ts +6 -6
- package/lib/additional/index.d.ts +4 -4
- package/lib/cells/CustomizableCells.d.ts +9 -9
- package/lib/cells/MaterialBooleanCell.d.ts +6 -6
- package/lib/cells/MaterialBooleanToggleCell.d.ts +6 -6
- package/lib/cells/MaterialDateCell.d.ts +6 -6
- package/lib/cells/MaterialEnumCell.d.ts +10 -10
- package/lib/cells/MaterialIntegerCell.d.ts +6 -6
- package/lib/cells/MaterialNumberCell.d.ts +10 -10
- package/lib/cells/MaterialNumberFormatCell.d.ts +10 -10
- package/lib/cells/MaterialOneOfEnumCell.d.ts +10 -10
- package/lib/cells/MaterialTextCell.d.ts +10 -10
- package/lib/cells/MaterialTimeCell.d.ts +6 -6
- package/lib/cells/index.d.ts +13 -13
- package/lib/complex/CombinatorProperties.d.ts +12 -12
- package/lib/complex/DeleteDialog.d.ts +11 -11
- package/lib/complex/MaterialAllOfRenderer.d.ts +6 -6
- package/lib/complex/MaterialAnyOfRenderer.d.ts +6 -6
- package/lib/complex/MaterialArrayControlRenderer.d.ts +5 -5
- package/lib/complex/MaterialEnumArrayRenderer.d.ts +6 -6
- package/lib/complex/MaterialObjectRenderer.d.ts +6 -6
- package/lib/complex/MaterialOneOfRenderer.d.ts +9 -9
- package/lib/complex/MaterialTableControl.d.ts +25 -25
- package/lib/complex/NoBorderTableCell.d.ts +3 -3
- package/lib/complex/TableToolbar.d.ts +15 -15
- package/lib/complex/ValidationIcon.d.ts +7 -7
- package/lib/complex/index.d.ts +19 -19
- package/lib/controls/MaterialAnyOfStringOrEnumControl.d.ts +9 -9
- package/lib/controls/MaterialBooleanControl.d.ts +6 -6
- package/lib/controls/MaterialBooleanToggleControl.d.ts +6 -6
- package/lib/controls/MaterialDateControl.d.ts +6 -6
- package/lib/controls/MaterialDateTimeControl.d.ts +6 -6
- package/lib/controls/MaterialEnumControl.d.ts +7 -6
- package/lib/controls/MaterialInputControl.d.ts +6 -6
- package/lib/controls/MaterialIntegerControl.d.ts +6 -6
- package/lib/controls/MaterialNativeControl.d.ts +6 -6
- package/lib/controls/MaterialNumberControl.d.ts +6 -6
- package/lib/controls/MaterialOneOfEnumControl.d.ts +7 -6
- package/lib/controls/MaterialOneOfRadioGroupControl.d.ts +6 -6
- package/lib/controls/MaterialRadioGroup.d.ts +3 -3
- package/lib/controls/MaterialRadioGroupControl.d.ts +6 -6
- package/lib/controls/MaterialSliderControl.d.ts +6 -6
- package/lib/controls/MaterialTextControl.d.ts +6 -6
- package/lib/controls/MaterialTimeControl.d.ts +6 -6
- package/lib/controls/index.d.ts +35 -35
- package/lib/index.d.ts +9 -9
- package/lib/jsonforms-react-material.cjs.js +1489 -0
- package/lib/jsonforms-react-material.cjs.js.map +1 -0
- package/lib/jsonforms-react-material.esm.js +1221 -0
- package/lib/jsonforms-react-material.esm.js.map +1 -0
- package/lib/layouts/ArrayToolbar.d.ts +9 -9
- package/lib/layouts/ExpandPanelRenderer.d.ts +51 -51
- package/lib/layouts/MaterialArrayLayout.d.ts +3 -3
- package/lib/layouts/MaterialArrayLayoutRenderer.d.ts +6 -6
- package/lib/layouts/MaterialCategorizationLayout.d.ts +17 -17
- package/lib/layouts/MaterialCategorizationStepperLayout.d.ts +13 -13
- package/lib/layouts/MaterialGroupLayout.d.ts +7 -7
- package/lib/layouts/MaterialHorizontalLayout.d.ts +10 -10
- package/lib/layouts/MaterialVerticalLayout.d.ts +10 -10
- package/lib/layouts/index.d.ts +6 -6
- package/lib/{extended → mui-controls}/MuiAutocomplete.d.ts +9 -9
- package/lib/mui-controls/MuiCheckbox.d.ts +3 -3
- package/lib/mui-controls/MuiInputInteger.d.ts +3 -3
- package/lib/mui-controls/MuiInputNumber.d.ts +3 -3
- package/lib/mui-controls/MuiInputNumberFormat.d.ts +3 -3
- package/lib/mui-controls/MuiInputText.d.ts +9 -9
- package/lib/mui-controls/MuiInputTime.d.ts +3 -3
- package/lib/mui-controls/MuiSelect.d.ts +3 -3
- package/lib/mui-controls/MuiToggle.d.ts +3 -3
- package/lib/mui-controls/index.d.ts +7 -7
- package/lib/util/datejs.d.ts +3 -3
- package/lib/util/debounce.d.ts +1 -1
- package/lib/util/focus.d.ts +1 -1
- package/lib/util/index.d.ts +5 -5
- package/lib/util/layout.d.ts +15 -14
- package/lib/util/theme.d.ts +10 -10
- package/package.json +20 -11
- package/rollup.config.js +51 -0
- package/src/complex/CombinatorProperties.tsx +2 -2
- package/src/complex/MaterialEnumArrayRenderer.tsx +2 -2
- package/src/controls/MaterialEnumControl.tsx +12 -3
- package/src/controls/MaterialOneOfEnumControl.tsx +13 -4
- package/src/{extended → mui-controls}/MuiAutocomplete.tsx +0 -0
- package/src/util/debounce.ts +1 -1
- package/src/util/layout.tsx +1 -1
- package/stats.html +3279 -0
- package/test/renderers/MaterialCategorizationLayout.test.tsx +2 -2
- package/test/renderers/MaterialCategorizationStepperLayout.test.tsx +6 -6
- package/tsconfig.json +1 -2
- package/tsconfig.test.json +7 -0
- package/lib/additional/ListWithDetailMasterItem.js +0 -19
- package/lib/additional/ListWithDetailMasterItem.js.map +0 -1
- package/lib/additional/MaterialLabelRenderer.js +0 -49
- package/lib/additional/MaterialLabelRenderer.js.map +0 -1
- package/lib/additional/MaterialListWithDetailRenderer.js +0 -66
- package/lib/additional/MaterialListWithDetailRenderer.js.map +0 -1
- package/lib/additional/index.js +0 -35
- package/lib/additional/index.js.map +0 -1
- package/lib/cells/CustomizableCells.js +0 -46
- package/lib/cells/CustomizableCells.js.map +0 -1
- package/lib/cells/MaterialBooleanCell.js +0 -39
- package/lib/cells/MaterialBooleanCell.js.map +0 -1
- package/lib/cells/MaterialBooleanToggleCell.js +0 -40
- package/lib/cells/MaterialBooleanToggleCell.js.map +0 -1
- package/lib/cells/MaterialDateCell.js +0 -42
- package/lib/cells/MaterialDateCell.js.map +0 -1
- package/lib/cells/MaterialEnumCell.js +0 -41
- package/lib/cells/MaterialEnumCell.js.map +0 -1
- package/lib/cells/MaterialIntegerCell.js +0 -37
- package/lib/cells/MaterialIntegerCell.js.map +0 -1
- package/lib/cells/MaterialNumberCell.js +0 -41
- package/lib/cells/MaterialNumberCell.js.map +0 -1
- package/lib/cells/MaterialNumberFormatCell.js +0 -41
- package/lib/cells/MaterialNumberFormatCell.js.map +0 -1
- package/lib/cells/MaterialOneOfEnumCell.js +0 -41
- package/lib/cells/MaterialOneOfEnumCell.js.map +0 -1
- package/lib/cells/MaterialTextCell.js +0 -41
- package/lib/cells/MaterialTextCell.js.map +0 -1
- package/lib/cells/MaterialTimeCell.js +0 -37
- package/lib/cells/MaterialTimeCell.js.map +0 -1
- package/lib/cells/index.js +0 -61
- package/lib/cells/index.js.map +0 -1
- package/lib/complex/CombinatorProperties.js +0 -59
- package/lib/complex/CombinatorProperties.js.map +0 -1
- package/lib/complex/DeleteDialog.js +0 -41
- package/lib/complex/DeleteDialog.js.map +0 -1
- package/lib/complex/MaterialAllOfRenderer.js +0 -47
- package/lib/complex/MaterialAllOfRenderer.js.map +0 -1
- package/lib/complex/MaterialAnyOfRenderer.js +0 -51
- package/lib/complex/MaterialAnyOfRenderer.js.map +0 -1
- package/lib/complex/MaterialArrayControlRenderer.js +0 -57
- package/lib/complex/MaterialArrayControlRenderer.js.map +0 -1
- package/lib/complex/MaterialEnumArrayRenderer.js +0 -48
- package/lib/complex/MaterialEnumArrayRenderer.js.map +0 -1
- package/lib/complex/MaterialObjectRenderer.js +0 -51
- package/lib/complex/MaterialObjectRenderer.js.map +0 -1
- package/lib/complex/MaterialOneOfRenderer.js +0 -78
- package/lib/complex/MaterialOneOfRenderer.js.map +0 -1
- package/lib/complex/MaterialTableControl.js +0 -197
- package/lib/complex/MaterialTableControl.js.map +0 -1
- package/lib/complex/NoBorderTableCell.js +0 -39
- package/lib/complex/NoBorderTableCell.js.map +0 -1
- package/lib/complex/TableToolbar.js +0 -56
- package/lib/complex/TableToolbar.js.map +0 -1
- package/lib/complex/ValidationIcon.js +0 -44
- package/lib/complex/ValidationIcon.js.map +0 -1
- package/lib/complex/index.js +0 -48
- package/lib/complex/index.js.map +0 -1
- package/lib/controls/MaterialAnyOfStringOrEnumControl.js +0 -85
- package/lib/controls/MaterialAnyOfStringOrEnumControl.js.map +0 -1
- package/lib/controls/MaterialBooleanControl.js +0 -43
- package/lib/controls/MaterialBooleanControl.js.map +0 -1
- package/lib/controls/MaterialBooleanToggleControl.js +0 -43
- package/lib/controls/MaterialBooleanToggleControl.js.map +0 -1
- package/lib/controls/MaterialDateControl.js +0 -62
- package/lib/controls/MaterialDateControl.js.map +0 -1
- package/lib/controls/MaterialDateTimeControl.js +0 -62
- package/lib/controls/MaterialDateTimeControl.js.map +0 -1
- package/lib/controls/MaterialEnumControl.js +0 -38
- package/lib/controls/MaterialEnumControl.js.map +0 -1
- package/lib/controls/MaterialInputControl.js +0 -56
- package/lib/controls/MaterialInputControl.js.map +0 -1
- package/lib/controls/MaterialIntegerControl.js +0 -38
- package/lib/controls/MaterialIntegerControl.js.map +0 -1
- package/lib/controls/MaterialNativeControl.js +0 -50
- package/lib/controls/MaterialNativeControl.js.map +0 -1
- package/lib/controls/MaterialNumberControl.js +0 -38
- package/lib/controls/MaterialNumberControl.js.map +0 -1
- package/lib/controls/MaterialOneOfEnumControl.js +0 -38
- package/lib/controls/MaterialOneOfEnumControl.js.map +0 -1
- package/lib/controls/MaterialOneOfRadioGroupControl.js +0 -39
- package/lib/controls/MaterialOneOfRadioGroupControl.js.map +0 -1
- package/lib/controls/MaterialRadioGroup.js +0 -48
- package/lib/controls/MaterialRadioGroup.js.map +0 -1
- package/lib/controls/MaterialRadioGroupControl.js +0 -39
- package/lib/controls/MaterialRadioGroupControl.js.map +0 -1
- package/lib/controls/MaterialSliderControl.js +0 -70
- package/lib/controls/MaterialSliderControl.js.map +0 -1
- package/lib/controls/MaterialTextControl.js +0 -38
- package/lib/controls/MaterialTextControl.js.map +0 -1
- package/lib/controls/MaterialTimeControl.js +0 -62
- package/lib/controls/MaterialTimeControl.js.map +0 -1
- package/lib/controls/index.js +0 -92
- package/lib/controls/index.js.map +0 -1
- package/lib/extended/MaterialAutocompleteEnumControl.d.ts +0 -7
- package/lib/extended/MaterialAutocompleteEnumControl.js +0 -44
- package/lib/extended/MaterialAutocompleteEnumControl.js.map +0 -1
- package/lib/extended/MaterialAutocompleteOneOfEnumControl.d.ts +0 -7
- package/lib/extended/MaterialAutocompleteOneOfEnumControl.js +0 -44
- package/lib/extended/MaterialAutocompleteOneOfEnumControl.js.map +0 -1
- package/lib/extended/MuiAutocomplete.js +0 -45
- package/lib/extended/MuiAutocomplete.js.map +0 -1
- package/lib/extended/index.d.ts +0 -10
- package/lib/extended/index.js +0 -49
- package/lib/extended/index.js.map +0 -1
- package/lib/index.js +0 -90
- package/lib/index.js.map +0 -1
- package/lib/jsonforms-material.js +0 -291
- package/lib/jsonforms-material.js.map +0 -1
- package/lib/layouts/ArrayToolbar.js +0 -25
- package/lib/layouts/ArrayToolbar.js.map +0 -1
- package/lib/layouts/ExpandPanelRenderer.js +0 -111
- package/lib/layouts/ExpandPanelRenderer.js.map +0 -1
- package/lib/layouts/MaterialArrayLayout.js +0 -54
- package/lib/layouts/MaterialArrayLayout.js.map +0 -1
- package/lib/layouts/MaterialArrayLayoutRenderer.js +0 -45
- package/lib/layouts/MaterialArrayLayoutRenderer.js.map +0 -1
- package/lib/layouts/MaterialCategorizationLayout.js +0 -71
- package/lib/layouts/MaterialCategorizationLayout.js.map +0 -1
- package/lib/layouts/MaterialCategorizationStepperLayout.js +0 -78
- package/lib/layouts/MaterialCategorizationStepperLayout.js.map +0 -1
- package/lib/layouts/MaterialGroupLayout.js +0 -54
- package/lib/layouts/MaterialGroupLayout.js.map +0 -1
- package/lib/layouts/MaterialHorizontalLayout.js +0 -53
- package/lib/layouts/MaterialHorizontalLayout.js.map +0 -1
- package/lib/layouts/MaterialVerticalLayout.js +0 -53
- package/lib/layouts/MaterialVerticalLayout.js.map +0 -1
- package/lib/layouts/index.js +0 -44
- package/lib/layouts/index.js.map +0 -1
- package/lib/mui-controls/MuiCheckbox.js +0 -40
- package/lib/mui-controls/MuiCheckbox.js.map +0 -1
- package/lib/mui-controls/MuiInputInteger.js +0 -44
- package/lib/mui-controls/MuiInputInteger.js.map +0 -1
- package/lib/mui-controls/MuiInputNumber.js +0 -44
- package/lib/mui-controls/MuiInputNumber.js.map +0 -1
- package/lib/mui-controls/MuiInputNumberFormat.js +0 -49
- package/lib/mui-controls/MuiInputNumberFormat.js.map +0 -1
- package/lib/mui-controls/MuiInputText.js +0 -68
- package/lib/mui-controls/MuiInputText.js.map +0 -1
- package/lib/mui-controls/MuiInputTime.js +0 -39
- package/lib/mui-controls/MuiInputTime.js.map +0 -1
- package/lib/mui-controls/MuiSelect.js +0 -37
- package/lib/mui-controls/MuiSelect.js.map +0 -1
- package/lib/mui-controls/MuiToggle.js +0 -39
- package/lib/mui-controls/MuiToggle.js.map +0 -1
- package/lib/mui-controls/index.js +0 -35
- package/lib/mui-controls/index.js.map +0 -1
- package/lib/util/datejs.js +0 -29
- package/lib/util/datejs.js.map +0 -1
- package/lib/util/debounce.js +0 -48
- package/lib/util/debounce.js.map +0 -1
- package/lib/util/focus.js +0 -36
- package/lib/util/focus.js.map +0 -1
- package/lib/util/index.js +0 -33
- package/lib/util/index.js.map +0 -1
- package/lib/util/layout.js +0 -58
- package/lib/util/layout.js.map +0 -1
- package/lib/util/theme.js +0 -3
- package/lib/util/theme.js.map +0 -1
- package/src/extended/MaterialAutocompleteEnumControl.tsx +0 -55
- package/src/extended/MaterialAutocompleteOneOfEnumControl.tsx +0 -55
- package/src/extended/index.ts +0 -56
- package/webpack/webpack.build.js +0 -21
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { CellProps, RankedTester, WithClassname } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialTextCell: (props: CellProps & WithClassname) => JSX.Element;
|
|
4
|
-
/**
|
|
5
|
-
* Default tester for text-based/string controls.
|
|
6
|
-
* @type {RankedTester}
|
|
7
|
-
*/
|
|
8
|
-
export declare const materialTextCellTester: RankedTester;
|
|
9
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfCell>;
|
|
10
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CellProps, RankedTester, WithClassname } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialTextCell: (props: CellProps & WithClassname) => JSX.Element;
|
|
4
|
+
/**
|
|
5
|
+
* Default tester for text-based/string controls.
|
|
6
|
+
* @type {RankedTester}
|
|
7
|
+
*/
|
|
8
|
+
export declare const materialTextCellTester: RankedTester;
|
|
9
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfCell>;
|
|
10
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { CellProps, RankedTester, WithClassname } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialTimeCell: (props: CellProps & WithClassname) => JSX.Element;
|
|
4
|
-
export declare const materialTimeCellTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfCell>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CellProps, RankedTester, WithClassname } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialTimeCell: (props: CellProps & WithClassname) => JSX.Element;
|
|
4
|
+
export declare const materialTimeCellTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfCell>;
|
|
6
|
+
export default _default;
|
package/lib/cells/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import MaterialBooleanCell, { materialBooleanCellTester } from './MaterialBooleanCell';
|
|
2
|
-
import MaterialBooleanToggleCell, { materialBooleanToggleCellTester } from './MaterialBooleanToggleCell';
|
|
3
|
-
import MaterialDateCell, { materialDateCellTester } from './MaterialDateCell';
|
|
4
|
-
import MaterialEnumCell, { materialEnumCellTester } from './MaterialEnumCell';
|
|
5
|
-
import MaterialIntegerCell, { materialIntegerCellTester } from './MaterialIntegerCell';
|
|
6
|
-
import MaterialNumberCell, { materialNumberCellTester } from './MaterialNumberCell';
|
|
7
|
-
import MaterialNumberFormatCell, { materialNumberFormatCellTester } from './MaterialNumberFormatCell';
|
|
8
|
-
import MaterialOneOfEnumCell, { materialOneOfEnumCellTester } from './MaterialOneOfEnumCell';
|
|
9
|
-
import MaterialTextCell, { materialTextCellTester } from './MaterialTextCell';
|
|
10
|
-
import MaterialTimeCell, { materialTimeCellTester } from './MaterialTimeCell';
|
|
11
|
-
export { MaterialBooleanCell, materialBooleanCellTester, MaterialBooleanToggleCell, materialBooleanToggleCellTester, MaterialDateCell, materialDateCellTester, MaterialEnumCell, materialEnumCellTester, MaterialIntegerCell, materialIntegerCellTester, MaterialNumberCell, materialNumberCellTester, MaterialNumberFormatCell, materialNumberFormatCellTester, MaterialOneOfEnumCell, materialOneOfEnumCellTester, MaterialTextCell, materialTextCellTester, MaterialTimeCell, materialTimeCellTester };
|
|
12
|
-
import * as Customizable from './CustomizableCells';
|
|
13
|
-
export { Customizable };
|
|
1
|
+
import MaterialBooleanCell, { materialBooleanCellTester } from './MaterialBooleanCell';
|
|
2
|
+
import MaterialBooleanToggleCell, { materialBooleanToggleCellTester } from './MaterialBooleanToggleCell';
|
|
3
|
+
import MaterialDateCell, { materialDateCellTester } from './MaterialDateCell';
|
|
4
|
+
import MaterialEnumCell, { materialEnumCellTester } from './MaterialEnumCell';
|
|
5
|
+
import MaterialIntegerCell, { materialIntegerCellTester } from './MaterialIntegerCell';
|
|
6
|
+
import MaterialNumberCell, { materialNumberCellTester } from './MaterialNumberCell';
|
|
7
|
+
import MaterialNumberFormatCell, { materialNumberFormatCellTester } from './MaterialNumberFormatCell';
|
|
8
|
+
import MaterialOneOfEnumCell, { materialOneOfEnumCellTester } from './MaterialOneOfEnumCell';
|
|
9
|
+
import MaterialTextCell, { materialTextCellTester } from './MaterialTextCell';
|
|
10
|
+
import MaterialTimeCell, { materialTimeCellTester } from './MaterialTimeCell';
|
|
11
|
+
export { MaterialBooleanCell, materialBooleanCellTester, MaterialBooleanToggleCell, materialBooleanToggleCellTester, MaterialDateCell, materialDateCellTester, MaterialEnumCell, materialEnumCellTester, MaterialIntegerCell, materialIntegerCellTester, MaterialNumberCell, materialNumberCellTester, MaterialNumberFormatCell, materialNumberFormatCellTester, MaterialOneOfEnumCell, materialOneOfEnumCellTester, MaterialTextCell, materialTextCellTester, MaterialTimeCell, materialTimeCellTester };
|
|
12
|
+
import * as Customizable from './CustomizableCells';
|
|
13
|
+
export { Customizable };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { JsonSchema, Layout, UISchemaElement } from '@jsonforms/core';
|
|
3
|
-
interface CombinatorPropertiesProps {
|
|
4
|
-
schema: JsonSchema;
|
|
5
|
-
combinatorKeyword: 'oneOf' | 'anyOf';
|
|
6
|
-
path: string;
|
|
7
|
-
}
|
|
8
|
-
export declare const isLayout: (uischema: UISchemaElement) => uischema is Layout;
|
|
9
|
-
export declare class CombinatorProperties extends React.Component<CombinatorPropertiesProps, {}> {
|
|
10
|
-
render(): JSX.Element;
|
|
11
|
-
}
|
|
12
|
-
export default CombinatorProperties;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { JsonSchema, Layout, UISchemaElement } from '@jsonforms/core';
|
|
3
|
+
interface CombinatorPropertiesProps {
|
|
4
|
+
schema: JsonSchema;
|
|
5
|
+
combinatorKeyword: 'oneOf' | 'anyOf';
|
|
6
|
+
path: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const isLayout: (uischema: UISchemaElement) => uischema is Layout;
|
|
9
|
+
export declare class CombinatorProperties extends React.Component<CombinatorPropertiesProps, {}> {
|
|
10
|
+
render(): JSX.Element;
|
|
11
|
+
}
|
|
12
|
+
export default CombinatorProperties;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface DeleteDialogProps {
|
|
3
|
-
open: boolean;
|
|
4
|
-
onClose(): void;
|
|
5
|
-
onConfirm(): void;
|
|
6
|
-
onCancel(): void;
|
|
7
|
-
}
|
|
8
|
-
export interface WithDeleteDialogSupport {
|
|
9
|
-
openDeleteDialog(path: string, data: number): void;
|
|
10
|
-
}
|
|
11
|
-
export declare const DeleteDialog: React.MemoExoticComponent<({ open, onClose, onConfirm, onCancel }: DeleteDialogProps) => JSX.Element>;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface DeleteDialogProps {
|
|
3
|
+
open: boolean;
|
|
4
|
+
onClose(): void;
|
|
5
|
+
onConfirm(): void;
|
|
6
|
+
onCancel(): void;
|
|
7
|
+
}
|
|
8
|
+
export interface WithDeleteDialogSupport {
|
|
9
|
+
openDeleteDialog(path: string, data: number): void;
|
|
10
|
+
}
|
|
11
|
+
export declare const DeleteDialog: React.MemoExoticComponent<({ open, onClose, onConfirm, onCancel }: DeleteDialogProps) => JSX.Element>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { RankedTester, StatePropsOfCombinator } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialAllOfRenderer: ({ schema, rootSchema, visible, renderers, cells, path, uischemas, uischema }: StatePropsOfCombinator) => JSX.Element;
|
|
4
|
-
export declare const materialAllOfControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RankedTester, StatePropsOfCombinator } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialAllOfRenderer: ({ schema, rootSchema, visible, renderers, cells, path, uischemas, uischema }: StatePropsOfCombinator) => JSX.Element;
|
|
4
|
+
export declare const materialAllOfControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { RankedTester, StatePropsOfCombinator } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialAnyOfRenderer: ({ schema, rootSchema, indexOfFittingSchema, visible, path, renderers, cells, uischema, uischemas }: StatePropsOfCombinator) => JSX.Element;
|
|
4
|
-
export declare const materialAnyOfControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RankedTester, StatePropsOfCombinator } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialAnyOfRenderer: ({ schema, rootSchema, indexOfFittingSchema, visible, path, renderers, cells, uischema, uischemas }: StatePropsOfCombinator) => JSX.Element;
|
|
4
|
+
export declare const materialAnyOfControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ArrayLayoutProps } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialArrayControlRenderer: (props: ArrayLayoutProps) => JSX.Element;
|
|
4
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
5
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ArrayLayoutProps } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialArrayControlRenderer: (props: ArrayLayoutProps) => JSX.Element;
|
|
4
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
5
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ControlProps, DispatchPropsOfMultiEnumControl, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
export declare const MaterialEnumArrayRenderer: ({ schema, visible, errors, path, options, data, addItem, removeItem, handleChange, ...otherProps }: ControlProps & OwnPropsOfEnum & DispatchPropsOfMultiEnumControl) => JSX.Element;
|
|
4
|
-
export declare const materialEnumArrayRendererTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum & DispatchPropsOfMultiEnumControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import { ControlProps, DispatchPropsOfMultiEnumControl, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const MaterialEnumArrayRenderer: ({ schema, visible, errors, path, options, data, addItem, removeItem, handleChange, ...otherProps }: ControlProps & OwnPropsOfEnum & DispatchPropsOfMultiEnumControl) => JSX.Element;
|
|
4
|
+
export declare const materialEnumArrayRendererTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum & DispatchPropsOfMultiEnumControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { RankedTester, StatePropsOfControlWithDetail } from '@jsonforms/core';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
export declare const MaterialObjectRenderer: ({ renderers, cells, uischemas, schema, label, path, visible, enabled, uischema, rootSchema }: StatePropsOfControlWithDetail) => JSX.Element;
|
|
4
|
-
export declare const materialObjectControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import { RankedTester, StatePropsOfControlWithDetail } from '@jsonforms/core';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const MaterialObjectRenderer: ({ renderers, cells, uischemas, schema, label, path, visible, enabled, uischema, rootSchema }: StatePropsOfControlWithDetail) => JSX.Element;
|
|
4
|
+
export declare const materialObjectControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { CombinatorRendererProps, OwnPropsOfControl, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export interface OwnOneOfProps extends OwnPropsOfControl {
|
|
4
|
-
indexOfFittingSchema?: number;
|
|
5
|
-
}
|
|
6
|
-
export declare const MaterialOneOfRenderer: ({ handleChange, schema, path, renderers, cells, rootSchema, id, visible, indexOfFittingSchema, uischema, uischemas, data }: CombinatorRendererProps) => JSX.Element;
|
|
7
|
-
export declare const materialOneOfControlTester: RankedTester;
|
|
8
|
-
declare const _default: React.ComponentType<OwnPropsOfControl>;
|
|
9
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CombinatorRendererProps, OwnPropsOfControl, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export interface OwnOneOfProps extends OwnPropsOfControl {
|
|
4
|
+
indexOfFittingSchema?: number;
|
|
5
|
+
}
|
|
6
|
+
export declare const MaterialOneOfRenderer: ({ handleChange, schema, path, renderers, cells, rootSchema, id, visible, indexOfFittingSchema, uischema, uischemas, data }: CombinatorRendererProps) => JSX.Element;
|
|
7
|
+
export declare const materialOneOfControlTester: RankedTester;
|
|
8
|
+
declare const _default: React.ComponentType<OwnPropsOfControl>;
|
|
9
|
+
export default _default;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ArrayLayoutProps, JsonSchema, JsonFormsCellRendererRegistryEntry } from '@jsonforms/core';
|
|
3
|
-
import { WithDeleteDialogSupport } from './DeleteDialog';
|
|
4
|
-
export interface EmptyTableProps {
|
|
5
|
-
numColumns: number;
|
|
6
|
-
}
|
|
7
|
-
interface NonEmptyRowProps {
|
|
8
|
-
childPath: string;
|
|
9
|
-
schema: JsonSchema;
|
|
10
|
-
rowIndex: number;
|
|
11
|
-
moveUpCreator: (path: string, position: number) => () => void;
|
|
12
|
-
moveDownCreator: (path: string, position: number) => () => void;
|
|
13
|
-
enableUp: boolean;
|
|
14
|
-
enableDown: boolean;
|
|
15
|
-
showSortButtons: boolean;
|
|
16
|
-
enabled: boolean;
|
|
17
|
-
cells?: JsonFormsCellRendererRegistryEntry[];
|
|
18
|
-
path: string;
|
|
19
|
-
}
|
|
20
|
-
export declare const NonEmptyRow: React.MemoExoticComponent<({ childPath, schema, rowIndex, openDeleteDialog, moveUpCreator, moveDownCreator, enableUp, enableDown, showSortButtons, enabled, cells, path }: NonEmptyRowProps & WithDeleteDialogSupport) => JSX.Element>;
|
|
21
|
-
export declare class MaterialTableControl extends React.Component<ArrayLayoutProps & WithDeleteDialogSupport, any> {
|
|
22
|
-
addItem: (path: string, value: any) => () => void;
|
|
23
|
-
render(): JSX.Element;
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ArrayLayoutProps, JsonSchema, JsonFormsCellRendererRegistryEntry } from '@jsonforms/core';
|
|
3
|
+
import { WithDeleteDialogSupport } from './DeleteDialog';
|
|
4
|
+
export interface EmptyTableProps {
|
|
5
|
+
numColumns: number;
|
|
6
|
+
}
|
|
7
|
+
interface NonEmptyRowProps {
|
|
8
|
+
childPath: string;
|
|
9
|
+
schema: JsonSchema;
|
|
10
|
+
rowIndex: number;
|
|
11
|
+
moveUpCreator: (path: string, position: number) => () => void;
|
|
12
|
+
moveDownCreator: (path: string, position: number) => () => void;
|
|
13
|
+
enableUp: boolean;
|
|
14
|
+
enableDown: boolean;
|
|
15
|
+
showSortButtons: boolean;
|
|
16
|
+
enabled: boolean;
|
|
17
|
+
cells?: JsonFormsCellRendererRegistryEntry[];
|
|
18
|
+
path: string;
|
|
19
|
+
}
|
|
20
|
+
export declare const NonEmptyRow: React.MemoExoticComponent<({ childPath, schema, rowIndex, openDeleteDialog, moveUpCreator, moveDownCreator, enableUp, enableDown, showSortButtons, enabled, cells, path }: NonEmptyRowProps & WithDeleteDialogSupport) => JSX.Element>;
|
|
21
|
+
export declare class MaterialTableControl extends React.Component<ArrayLayoutProps & WithDeleteDialogSupport, any> {
|
|
22
|
+
addItem: (path: string, value: any) => () => void;
|
|
23
|
+
render(): JSX.Element;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const _default: ({ children, ...otherProps }: any) => JSX.Element;
|
|
3
|
-
export default _default;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: ({ children, ...otherProps }: any) => JSX.Element;
|
|
3
|
+
export default _default;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlElement, JsonSchema } from '@jsonforms/core';
|
|
3
|
-
export interface MaterialTableToolbarProps {
|
|
4
|
-
numColumns: number;
|
|
5
|
-
errors: string;
|
|
6
|
-
label: string;
|
|
7
|
-
path: string;
|
|
8
|
-
uischema: ControlElement;
|
|
9
|
-
schema: JsonSchema;
|
|
10
|
-
rootSchema: JsonSchema;
|
|
11
|
-
enabled: boolean;
|
|
12
|
-
addItem(path: string, value: any): () => void;
|
|
13
|
-
}
|
|
14
|
-
declare const TableToolbar: React.MemoExoticComponent<({ numColumns, errors, label, path, addItem, schema, enabled }: MaterialTableToolbarProps) => JSX.Element>;
|
|
15
|
-
export default TableToolbar;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlElement, JsonSchema } from '@jsonforms/core';
|
|
3
|
+
export interface MaterialTableToolbarProps {
|
|
4
|
+
numColumns: number;
|
|
5
|
+
errors: string;
|
|
6
|
+
label: string;
|
|
7
|
+
path: string;
|
|
8
|
+
uischema: ControlElement;
|
|
9
|
+
schema: JsonSchema;
|
|
10
|
+
rootSchema: JsonSchema;
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
addItem(path: string, value: any): () => void;
|
|
13
|
+
}
|
|
14
|
+
declare const TableToolbar: React.MemoExoticComponent<({ numColumns, errors, label, path, addItem, schema, enabled }: MaterialTableToolbarProps) => JSX.Element>;
|
|
15
|
+
export default TableToolbar;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface ValidationProps {
|
|
3
|
-
errorMessages: string;
|
|
4
|
-
id: string;
|
|
5
|
-
}
|
|
6
|
-
declare const ValidationIcon: React.FC<ValidationProps>;
|
|
7
|
-
export default ValidationIcon;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ValidationProps {
|
|
3
|
+
errorMessages: string;
|
|
4
|
+
id: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ValidationIcon: React.FC<ValidationProps>;
|
|
7
|
+
export default ValidationIcon;
|
package/lib/complex/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { RankedTester } from '@jsonforms/core';
|
|
2
|
-
import MaterialArrayControlRenderer from './MaterialArrayControlRenderer';
|
|
3
|
-
import MaterialObjectRenderer, { materialObjectControlTester } from './MaterialObjectRenderer';
|
|
4
|
-
import MaterialAllOfRenderer, { materialAllOfControlTester } from './MaterialAllOfRenderer';
|
|
5
|
-
import MaterialAnyOfRenderer, { materialAnyOfControlTester } from './MaterialAnyOfRenderer';
|
|
6
|
-
import MaterialOneOfRenderer, { materialOneOfControlTester } from './MaterialOneOfRenderer';
|
|
7
|
-
import MaterialEnumArrayRenderer, { materialEnumArrayRendererTester } from './MaterialEnumArrayRenderer';
|
|
8
|
-
export declare const materialArrayControlTester: RankedTester;
|
|
9
|
-
export { MaterialArrayControlRenderer };
|
|
10
|
-
export { MaterialObjectRenderer };
|
|
11
|
-
export { MaterialAllOfRenderer };
|
|
12
|
-
export { MaterialAnyOfRenderer };
|
|
13
|
-
export { MaterialOneOfRenderer };
|
|
14
|
-
export { MaterialEnumArrayRenderer };
|
|
15
|
-
export { materialObjectControlTester };
|
|
16
|
-
export { materialAllOfControlTester };
|
|
17
|
-
export { materialAnyOfControlTester };
|
|
18
|
-
export { materialOneOfControlTester };
|
|
19
|
-
export { materialEnumArrayRendererTester };
|
|
1
|
+
import { RankedTester } from '@jsonforms/core';
|
|
2
|
+
import MaterialArrayControlRenderer from './MaterialArrayControlRenderer';
|
|
3
|
+
import MaterialObjectRenderer, { materialObjectControlTester } from './MaterialObjectRenderer';
|
|
4
|
+
import MaterialAllOfRenderer, { materialAllOfControlTester } from './MaterialAllOfRenderer';
|
|
5
|
+
import MaterialAnyOfRenderer, { materialAnyOfControlTester } from './MaterialAnyOfRenderer';
|
|
6
|
+
import MaterialOneOfRenderer, { materialOneOfControlTester } from './MaterialOneOfRenderer';
|
|
7
|
+
import MaterialEnumArrayRenderer, { materialEnumArrayRendererTester } from './MaterialEnumArrayRenderer';
|
|
8
|
+
export declare const materialArrayControlTester: RankedTester;
|
|
9
|
+
export { MaterialArrayControlRenderer };
|
|
10
|
+
export { MaterialObjectRenderer };
|
|
11
|
+
export { MaterialAllOfRenderer };
|
|
12
|
+
export { MaterialAnyOfRenderer };
|
|
13
|
+
export { MaterialOneOfRenderer };
|
|
14
|
+
export { MaterialEnumArrayRenderer };
|
|
15
|
+
export { materialObjectControlTester };
|
|
16
|
+
export { materialAllOfControlTester };
|
|
17
|
+
export { materialAnyOfControlTester };
|
|
18
|
+
export { materialOneOfControlTester };
|
|
19
|
+
export { materialEnumArrayRendererTester };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ControlProps, ControlState, RankedTester } from '@jsonforms/core';
|
|
2
|
-
import { Control } from '@jsonforms/react';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
export declare class MaterialAnyOfStringOrEnumControl extends Control<ControlProps, ControlState> {
|
|
5
|
-
render(): JSX.Element;
|
|
6
|
-
}
|
|
7
|
-
export declare const materialAnyOfStringOrEnumControlTester: RankedTester;
|
|
8
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
9
|
-
export default _default;
|
|
1
|
+
import { ControlProps, ControlState, RankedTester } from '@jsonforms/core';
|
|
2
|
+
import { Control } from '@jsonforms/react';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
export declare class MaterialAnyOfStringOrEnumControl extends Control<ControlProps, ControlState> {
|
|
5
|
+
render(): JSX.Element;
|
|
6
|
+
}
|
|
7
|
+
export declare const materialAnyOfStringOrEnumControlTester: RankedTester;
|
|
8
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
9
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { RankedTester, ControlProps } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialBooleanControl: ({ data, visible, label, id, enabled, uischema, schema, rootSchema, handleChange, errors, path, config }: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialBooleanControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RankedTester, ControlProps } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialBooleanControl: ({ data, visible, label, id, enabled, uischema, schema, rootSchema, handleChange, errors, path, config }: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialBooleanControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { RankedTester, ControlProps } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialBooleanToggleControl: ({ data, visible, label, id, enabled, uischema, schema, rootSchema, handleChange, errors, path, config }: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialBooleanToggleControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RankedTester, ControlProps } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialBooleanToggleControl: ({ data, visible, label, id, enabled, uischema, schema, rootSchema, handleChange, errors, path, config }: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialBooleanToggleControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialDateControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialDateControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialDateControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialDateControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialDateTimeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialDateTimeControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialDateTimeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialDateTimeControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
-
|
|
4
|
-
export declare const
|
|
5
|
-
declare const
|
|
6
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
+
import { WithOptionLabel } from '../mui-controls/MuiAutocomplete';
|
|
4
|
+
export declare const MaterialEnumControl: (props: ControlProps & OwnPropsOfEnum & WithOptionLabel) => JSX.Element;
|
|
5
|
+
export declare const materialEnumControlTester: RankedTester;
|
|
6
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
7
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ControlProps } from '@jsonforms/core';
|
|
3
|
-
export interface WithInput {
|
|
4
|
-
input: any;
|
|
5
|
-
}
|
|
6
|
-
export declare const MaterialInputControl: (props: ControlProps & WithInput) => JSX.Element;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ControlProps } from '@jsonforms/core';
|
|
3
|
+
export interface WithInput {
|
|
4
|
+
input: any;
|
|
5
|
+
}
|
|
6
|
+
export declare const MaterialInputControl: (props: ControlProps & WithInput) => JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialIntegerControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialIntegerControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialIntegerControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialIntegerControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialNativeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialNativeControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialNativeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialNativeControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialNumberControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialNumberControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialNumberControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialNumberControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
-
|
|
4
|
-
export declare const
|
|
5
|
-
declare const
|
|
6
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
+
import { WithOptionLabel } from '../mui-controls/MuiAutocomplete';
|
|
4
|
+
export declare const MaterialOneOfEnumControl: (props: ControlProps & OwnPropsOfEnum & WithOptionLabel) => JSX.Element;
|
|
5
|
+
export declare const materialOneOfEnumControlTester: RankedTester;
|
|
6
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
7
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialOneOfRadioGroupControl: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
4
|
-
export declare const materialOneOfRadioGroupControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialOneOfRadioGroupControl: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
4
|
+
export declare const materialOneOfRadioGroupControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
6
|
+
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ControlProps, OwnPropsOfEnum } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialRadioGroup: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ControlProps, OwnPropsOfEnum } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialRadioGroup: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialRadioGroupControl: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
4
|
-
export declare const materialRadioGroupControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, OwnPropsOfEnum, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialRadioGroupControl: (props: ControlProps & OwnPropsOfEnum) => JSX.Element;
|
|
4
|
+
export declare const materialRadioGroupControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl & OwnPropsOfEnum>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialSliderControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialSliderControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialSliderControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialSliderControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialTextControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialTextControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialTextControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialTextControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
-
export declare const MaterialTimeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
-
export declare const materialTimeControlTester: RankedTester;
|
|
5
|
-
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
-
export default _default;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ControlProps, RankedTester } from '@jsonforms/core';
|
|
3
|
+
export declare const MaterialTimeControl: (props: ControlProps) => JSX.Element;
|
|
4
|
+
export declare const materialTimeControlTester: RankedTester;
|
|
5
|
+
declare const _default: React.ComponentType<import("@jsonforms/core").OwnPropsOfControl>;
|
|
6
|
+
export default _default;
|