@jsonforms/react
Advanced tools
Comparing version
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
/* | ||
@@ -48,3 +36,3 @@ The MIT License | ||
var Control = /** @class */ (function (_super) { | ||
__extends(Control, _super); | ||
tslib_1.__extends(Control, _super); | ||
function Control(props) { | ||
@@ -51,0 +39,0 @@ var _this = _super.call(this, props) || this; |
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
/* | ||
@@ -43,4 +28,4 @@ The MIT License | ||
*/ | ||
var maxBy_1 = __importDefault(require("lodash/maxBy")); | ||
var react_1 = __importDefault(require("react")); | ||
var maxBy_1 = tslib_1.__importDefault(require("lodash/maxBy")); | ||
var react_1 = tslib_1.__importDefault(require("react")); | ||
var UnknownRenderer_1 = require("./UnknownRenderer"); | ||
@@ -52,3 +37,3 @@ var JsonFormsContext_1 = require("./JsonFormsContext"); | ||
var Dispatch = /** @class */ (function (_super) { | ||
__extends(Dispatch, _super); | ||
tslib_1.__extends(Dispatch, _super); | ||
function Dispatch() { | ||
@@ -58,3 +43,3 @@ return _super !== null && _super.apply(this, arguments) || this; | ||
Dispatch.prototype.render = function () { | ||
var _a = this.props, uischema = _a.uischema, schema = _a.schema, path = _a.path, cells = _a.cells, id = _a.id, enabled = _a.enabled; | ||
var _a = this.props, uischema = _a.uischema, schema = _a.schema, path = _a.path, cells = _a.cells, id = _a.id, enabled = _a.enabled, renderers = _a.renderers; | ||
var cell = maxBy_1.default(cells, function (r) { return r.tester(uischema, schema); }); | ||
@@ -67,3 +52,3 @@ if (cell === undefined || cell.tester(uischema, schema) === -1) { | ||
return (react_1.default.createElement(react_1.default.Fragment, null, | ||
react_1.default.createElement(Cell, { uischema: uischema, schema: schema, enabled: enabled, path: path, id: id }))); | ||
react_1.default.createElement(Cell, { uischema: uischema, schema: schema, enabled: enabled, path: path, id: id, renderers: renderers, cells: cells }))); | ||
} | ||
@@ -70,0 +55,0 @@ }; |
@@ -26,12 +26,10 @@ "use strict"; | ||
*/ | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./Control")); | ||
__export(require("./JsonForms")); | ||
__export(require("./DispatchCell")); | ||
__export(require("./Renderer")); | ||
__export(require("./JsonFormsContext")); | ||
__export(require("./UnknownRenderer")); | ||
var tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./Control"), exports); | ||
tslib_1.__exportStar(require("./JsonForms"), exports); | ||
tslib_1.__exportStar(require("./DispatchCell"), exports); | ||
tslib_1.__exportStar(require("./Renderer"), exports); | ||
tslib_1.__exportStar(require("./JsonFormsContext"), exports); | ||
tslib_1.__exportStar(require("./UnknownRenderer"), exports); | ||
//# sourceMappingURL=index.js.map |
import React from 'react'; | ||
import AJV from 'ajv'; | ||
import RefParser from 'json-schema-ref-parser'; | ||
import { JsonFormsCore, JsonFormsProps, JsonFormsRendererRegistryEntry, JsonSchema, OwnPropsOfJsonFormsRenderer, UISchemaElement, JsonFormsCellRendererRegistryEntry } from '@jsonforms/core'; | ||
import { JsonFormsCellRendererRegistryEntry, JsonFormsCore, JsonFormsProps, JsonFormsRendererRegistryEntry, JsonSchema, OwnPropsOfJsonFormsRenderer, UISchemaElement } from '@jsonforms/core'; | ||
interface JsonFormsRendererState { | ||
@@ -6,0 +6,0 @@ id: string; |
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
var __assign = (this && this.__assign) || function () { | ||
__assign = Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
/* | ||
@@ -61,10 +28,10 @@ The MIT License | ||
*/ | ||
var isEqual_1 = __importDefault(require("lodash/isEqual")); | ||
var maxBy_1 = __importDefault(require("lodash/maxBy")); | ||
var memoize_1 = __importDefault(require("lodash/memoize")); | ||
var react_1 = __importStar(require("react")); | ||
var isEqual_1 = tslib_1.__importDefault(require("lodash/isEqual")); | ||
var maxBy_1 = tslib_1.__importDefault(require("lodash/maxBy")); | ||
var memoize_1 = tslib_1.__importDefault(require("lodash/memoize")); | ||
var react_1 = tslib_1.__importStar(require("react")); | ||
var UnknownRenderer_1 = require("./UnknownRenderer"); | ||
var core_1 = require("@jsonforms/core"); | ||
var JsonFormsContext_1 = require("./JsonFormsContext"); | ||
var object_hash_1 = __importDefault(require("object-hash")); | ||
var object_hash_1 = tslib_1.__importDefault(require("object-hash")); | ||
var hasRefs = memoize_1.default(function (schema) { | ||
@@ -77,3 +44,3 @@ if (schema !== undefined) { | ||
var ResolvedJsonFormsDispatchRenderer = /** @class */ (function (_super) { | ||
__extends(ResolvedJsonFormsDispatchRenderer, _super); | ||
tslib_1.__extends(ResolvedJsonFormsDispatchRenderer, _super); | ||
function ResolvedJsonFormsDispatchRenderer(props) { | ||
@@ -130,3 +97,4 @@ var _this = _super.call(this, props) || this; | ||
ResolvedJsonFormsDispatchRenderer.prototype.render = function () { | ||
var _a = this.props, uischema = _a.uischema, path = _a.path, enabled = _a.enabled, renderers = _a.renderers; | ||
var _a = this | ||
.props, uischema = _a.uischema, path = _a.path, enabled = _a.enabled, renderers = _a.renderers, cells = _a.cells; | ||
var resolving = this.state.resolving; | ||
@@ -143,3 +111,3 @@ var _schema = this.state.resolvedSchema; | ||
var Render = renderer.renderer; | ||
return (react_1.default.createElement(Render, { uischema: uischema, schema: _schema, path: path, enabled: enabled, renderers: renderers, id: this.state.id })); | ||
return (react_1.default.createElement(Render, { uischema: uischema, schema: _schema, path: path, enabled: enabled, renderers: renderers, cells: cells, id: this.state.id })); | ||
} | ||
@@ -151,7 +119,7 @@ }; | ||
var JsonFormsDispatchRenderer = /** @class */ (function (_super) { | ||
__extends(JsonFormsDispatchRenderer, _super); | ||
tslib_1.__extends(JsonFormsDispatchRenderer, _super); | ||
function JsonFormsDispatchRenderer(props) { | ||
var _this = _super.call(this, props) || this; | ||
var isResolved = !hasRefs(props.schema); | ||
_this.state = __assign({}, _this.state, { resolvedSchema: isResolved ? props.schema : undefined, resolving: !isResolved }); | ||
_this.state = tslib_1.__assign(tslib_1.__assign({}, _this.state), { resolvedSchema: isResolved ? props.schema : undefined, resolving: !isResolved }); | ||
return _this; | ||
@@ -169,3 +137,3 @@ } | ||
}, [data, errors]); | ||
return (react_1.default.createElement(JsonFormsDispatchRenderer, { schema: props.schema || ctx.core.schema, uischema: props.uischema || ctx.core.uischema, path: props.path || '', enabled: props.enabled, rootSchema: ctx.core.schema, renderers: ctx.renderers, refResolver: refResolver })); | ||
return (react_1.default.createElement(JsonFormsDispatchRenderer, { schema: props.schema || ctx.core.schema, uischema: props.uischema || ctx.core.uischema, path: props.path || '', enabled: props.enabled, rootSchema: ctx.core.schema, renderers: props.renderers || ctx.renderers, refResolver: refResolver, cells: props.cells || ctx.cells })); | ||
}); | ||
@@ -172,0 +140,0 @@ exports.JsonForms = function (props) { |
@@ -35,8 +35,9 @@ import React, { Dispatch, ReducerAction } from 'react'; | ||
renderers?: import("../../core/lib").JsonFormsRendererRegistryEntry[]; | ||
cells?: import("../../core/lib").JsonFormsCellRendererRegistryEntry[]; | ||
}; | ||
export declare const ctxDispatchToControlProps: (dispatch: React.Dispatch<{}>) => DispatchPropsOfControl; | ||
export declare const ctxDispatchToControlProps: (dispatch: React.Dispatch<unknown>) => DispatchPropsOfControl; | ||
export declare const ctxToAnyOfProps: (ctx: JsonFormsStateContext, ownProps: OwnPropsOfControl) => CombinatorProps; | ||
export declare const ctxToOneOfProps: (ctx: JsonFormsStateContext, ownProps: OwnPropsOfControl) => CombinatorProps; | ||
export declare const ctxToJsonFormsDispatchProps: (ctx: JsonFormsStateContext, ownProps: OwnPropsOfJsonFormsRenderer) => import("../../core/lib").StatePropsOfJsonFormsRenderer; | ||
export declare const ctxDispatchToArrayControlProps: (dispatch: React.Dispatch<{}>) => import("../../core/lib").DispatchPropsOfArrayControl; | ||
export declare const ctxDispatchToArrayControlProps: (dispatch: React.Dispatch<unknown>) => import("../../core/lib").DispatchPropsOfArrayControl; | ||
export declare const ctxToMasterListItemProps: (ctx: JsonFormsStateContext, ownProps: OwnPropsOfMasterListItem) => StatePropsOfMasterItem; | ||
@@ -43,0 +44,0 @@ export declare const ctxToCellProps: (ctx: JsonFormsStateContext, ownProps: OwnPropsOfCell) => import("../../core/lib").StatePropsOfCell; |
@@ -26,37 +26,8 @@ "use strict"; | ||
*/ | ||
var __assign = (this && this.__assign) || function () { | ||
__assign = Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
var __rest = (this && this.__rest) || function (s, e) { | ||
var t = {}; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) | ||
t[p] = s[p]; | ||
if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||
t[p[i]] = s[p[i]]; | ||
return t; | ||
}; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
return result; | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var react_1 = __importStar(require("react")); | ||
var isEqual_1 = __importDefault(require("lodash/isEqual")); | ||
var omit_1 = __importDefault(require("lodash/omit")); | ||
var get_1 = __importDefault(require("lodash/get")); | ||
var tslib_1 = require("tslib"); | ||
var react_1 = tslib_1.__importStar(require("react")); | ||
var isEqual_1 = tslib_1.__importDefault(require("lodash/isEqual")); | ||
var omit_1 = tslib_1.__importDefault(require("lodash/omit")); | ||
var get_1 = tslib_1.__importDefault(require("lodash/get")); | ||
var core_1 = require("@jsonforms/core"); | ||
@@ -98,27 +69,27 @@ var react_redux_1 = require("react-redux"); | ||
var JsonFormsReduxProvider = function (_a) { | ||
var children = _a.children, dispatch = _a.dispatch, other = __rest(_a, ["children", "dispatch"]); | ||
return (react_1.default.createElement(exports.JsonFormsContext.Provider, { value: __assign({ dispatch: dispatch }, other) }, children)); | ||
var children = _a.children, dispatch = _a.dispatch, other = tslib_1.__rest(_a, ["children", "dispatch"]); | ||
return (react_1.default.createElement(exports.JsonFormsContext.Provider, { value: tslib_1.__assign({ dispatch: dispatch }, other) }, children)); | ||
}; | ||
exports.JsonFormsReduxContext = react_redux_1.connect(function (state) { return (__assign({}, state.jsonforms)); })(JsonFormsReduxProvider); | ||
exports.JsonFormsReduxContext = react_redux_1.connect(function (state) { return (tslib_1.__assign({}, state.jsonforms)); })(JsonFormsReduxProvider); | ||
exports.ctxToArrayLayoutProps = function (ctx, props) { | ||
return core_1.mapStateToArrayLayoutProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToArrayLayoutProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToArrayControlProps = function (ctx, props) { | ||
return core_1.mapStateToArrayControlProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToArrayControlProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToLayoutProps = function (ctx, props) { | ||
return core_1.mapStateToLayoutProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToLayoutProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToControlProps = function (ctx, props) { | ||
return core_1.mapStateToControlProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToControlProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToEnumControlProps = function (ctx, props) { | ||
return core_1.mapStateToEnumControlProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToEnumControlProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToControlWithDetailProps = function (ctx, props) { | ||
return core_1.mapStateToControlWithDetailProps({ jsonforms: __assign({}, ctx) }, props); | ||
return core_1.mapStateToControlWithDetailProps({ jsonforms: tslib_1.__assign({}, ctx) }, props); | ||
}; | ||
exports.ctxToAllOfProps = function (ctx, ownProps) { | ||
var props = core_1.mapStateToAllOfProps({ jsonforms: __assign({}, ctx) }, ownProps); | ||
return __assign({}, props); | ||
var props = core_1.mapStateToAllOfProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); | ||
return tslib_1.__assign({}, props); | ||
}; | ||
@@ -132,21 +103,21 @@ exports.ctxDispatchToControlProps = function (dispatch) { return ({ | ||
exports.ctxToAnyOfProps = function (ctx, ownProps) { | ||
var props = core_1.mapStateToAnyOfProps({ jsonforms: __assign({}, ctx) }, ownProps); | ||
var props = core_1.mapStateToAnyOfProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return __assign({}, props, { handleChange: handleChange }); | ||
return tslib_1.__assign(tslib_1.__assign({}, props), { handleChange: handleChange }); | ||
}; | ||
exports.ctxToOneOfProps = function (ctx, ownProps) { | ||
var props = core_1.mapStateToOneOfProps({ jsonforms: __assign({}, ctx) }, ownProps); | ||
var props = core_1.mapStateToOneOfProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return __assign({}, props, { handleChange: handleChange }); | ||
return tslib_1.__assign(tslib_1.__assign({}, props), { handleChange: handleChange }); | ||
}; | ||
exports.ctxToJsonFormsDispatchProps = function (ctx, ownProps) { return core_1.mapStateToJsonFormsRendererProps({ jsonforms: __assign({}, ctx) }, ownProps); }; | ||
exports.ctxToJsonFormsDispatchProps = function (ctx, ownProps) { return core_1.mapStateToJsonFormsRendererProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); }; | ||
exports.ctxDispatchToArrayControlProps = function (dispatch) { | ||
return core_1.mapDispatchToArrayControlProps(dispatch); | ||
}; | ||
exports.ctxToMasterListItemProps = function (ctx, ownProps) { return core_1.mapStateToMasterListItemProps({ jsonforms: __assign({}, ctx) }, ownProps); }; | ||
exports.ctxToMasterListItemProps = function (ctx, ownProps) { return core_1.mapStateToMasterListItemProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); }; | ||
exports.ctxToCellProps = function (ctx, ownProps) { | ||
return core_1.mapStateToCellProps({ jsonforms: __assign({}, ctx) }, ownProps); | ||
return core_1.mapStateToCellProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); | ||
}; | ||
exports.ctxToDispatchCellProps = function (ctx, ownProps) { | ||
return core_1.mapStateToDispatchCellProps({ jsonforms: __assign({}, ctx) }, ownProps); | ||
return core_1.mapStateToDispatchCellProps({ jsonforms: tslib_1.__assign({}, ctx) }, ownProps); | ||
}; | ||
@@ -162,3 +133,3 @@ exports.withJsonFormsContext = function (Component) { return function (props) { | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return (react_1.default.createElement(Component, __assign({}, props, controlProps, { handleChange: handleChange }))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, controlProps, { handleChange: handleChange }))); | ||
}; | ||
@@ -170,3 +141,3 @@ }; | ||
var layoutProps = exports.ctxToLayoutProps(ctx, props); | ||
return (react_1.default.createElement(Component, __assign({}, props, layoutProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, layoutProps))); | ||
}; | ||
@@ -179,3 +150,3 @@ }; | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return (react_1.default.createElement(Component, __assign({}, props, oneOfProps, { handleChange: handleChange }))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, oneOfProps, { handleChange: handleChange }))); | ||
}; | ||
@@ -188,3 +159,3 @@ }; | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return (react_1.default.createElement(Component, __assign({}, props, oneOfProps, { handleChange: handleChange }))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, oneOfProps, { handleChange: handleChange }))); | ||
}; | ||
@@ -197,3 +168,3 @@ }; | ||
var handleChange = exports.ctxDispatchToControlProps(ctx.dispatch).handleChange; | ||
return (react_1.default.createElement(Component, __assign({}, props, allOfProps, { handleChange: handleChange }))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, allOfProps, { handleChange: handleChange }))); | ||
}; | ||
@@ -205,3 +176,3 @@ }; | ||
var detailProps = exports.ctxToControlWithDetailProps(ctx, props); | ||
return (react_1.default.createElement(Component, __assign({}, detailProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, detailProps))); | ||
}; | ||
@@ -214,3 +185,3 @@ }; | ||
var dispatchProps = exports.ctxDispatchToArrayControlProps(ctx.dispatch); | ||
return (react_1.default.createElement(Component, __assign({}, arrayLayoutProps, dispatchProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, arrayLayoutProps, dispatchProps))); | ||
}; | ||
@@ -223,3 +194,3 @@ }; | ||
var dispatchProps = exports.ctxDispatchToArrayControlProps(ctx.dispatch); | ||
return (react_1.default.createElement(Component, __assign({}, props, stateProps, dispatchProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, stateProps, dispatchProps))); | ||
}; | ||
@@ -231,3 +202,3 @@ }; | ||
var stateProps = exports.ctxToMasterListItemProps(ctx, props); | ||
return (react_1.default.createElement(Component, __assign({}, stateProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, stateProps))); | ||
}; | ||
@@ -240,3 +211,3 @@ }; | ||
var dispatchProps = exports.ctxDispatchToControlProps(ctx.dispatch); | ||
return (react_1.default.createElement(Component, __assign({}, props, dispatchProps, cellProps))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, dispatchProps, cellProps))); | ||
}; | ||
@@ -248,3 +219,3 @@ }; | ||
var dispatchProps = exports.ctxDispatchToControlProps(ctx.dispatch); | ||
return react_1.default.createElement(Component, __assign({}, props, dispatchProps, cellProps)); | ||
return react_1.default.createElement(Component, tslib_1.__assign({}, props, dispatchProps, cellProps)); | ||
}; }; | ||
@@ -256,4 +227,4 @@ var withContextToEnumCellProps = function (Component) { | ||
var dispatchProps = exports.ctxDispatchToControlProps(ctx.dispatch); | ||
var options = props.options !== undefined ? props.options : props.schema.enum; | ||
return (react_1.default.createElement(Component, __assign({}, props, dispatchProps, cellProps, { options: options }))); | ||
var options = props.options !== undefined ? props.options : props.schema.enum || [props.schema.const]; | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, dispatchProps, cellProps, { options: options }))); | ||
}; | ||
@@ -266,3 +237,3 @@ }; | ||
var dispatchProps = exports.ctxDispatchToControlProps(ctx.dispatch); | ||
return (react_1.default.createElement(Component, __assign({}, props, dispatchProps, stateProps, { options: stateProps.options }))); | ||
return (react_1.default.createElement(Component, tslib_1.__assign({}, props, dispatchProps, stateProps, { options: stateProps.options }))); | ||
}; | ||
@@ -269,0 +240,0 @@ }; |
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
/* | ||
@@ -43,3 +28,3 @@ The MIT License | ||
*/ | ||
var react_1 = __importDefault(require("react")); | ||
var react_1 = tslib_1.__importDefault(require("react")); | ||
/** | ||
@@ -52,3 +37,3 @@ * Convenience wrapper around React's Component for constraining props. | ||
var RendererComponent = /** @class */ (function (_super) { | ||
__extends(RendererComponent, _super); | ||
tslib_1.__extends(RendererComponent, _super); | ||
function RendererComponent(props) { | ||
@@ -55,0 +40,0 @@ return _super.call(this, props) || this; |
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
/* | ||
@@ -43,3 +28,3 @@ The MIT License | ||
*/ | ||
var react_1 = __importDefault(require("react")); | ||
var react_1 = tslib_1.__importDefault(require("react")); | ||
var react_2 = require("react"); | ||
@@ -50,3 +35,3 @@ /** | ||
var UnknownRenderer = /** @class */ (function (_super) { | ||
__extends(UnknownRenderer, _super); | ||
tslib_1.__extends(UnknownRenderer, _super); | ||
function UnknownRenderer() { | ||
@@ -53,0 +38,0 @@ return _super !== null && _super.apply(this, arguments) || this; |
{ | ||
"name": "@jsonforms/react", | ||
"version": "2.3.2", | ||
"version": "2.4.0-alpha.0", | ||
"description": "React module of JSON Forms", | ||
@@ -16,2 +16,18 @@ "repository": "https://github.com/eclipsesource/jsonforms", | ||
}, | ||
"keywords": [ | ||
"react", | ||
"form", | ||
"forms", | ||
"json", | ||
"jsonforms", | ||
"frontend", | ||
"generator", | ||
"input", | ||
"renderengine", | ||
"jsonschema", | ||
"schema", | ||
"uischema", | ||
"layout", | ||
"customization" | ||
], | ||
"main": "./lib/index.js", | ||
@@ -72,3 +88,3 @@ "typings": "./lib/index.d.ts", | ||
"devDependencies": { | ||
"@jsonforms/core": "^2.3.2", | ||
"@jsonforms/core": "^2.4.0-alpha.0", | ||
"@types/enzyme": "^3.10.3", | ||
@@ -86,3 +102,3 @@ "@types/enzyme-adapter-react-16": "^1.0.5", | ||
}, | ||
"gitHead": "0cf18d3df877c5240188b0ae4e0d18e3638fc026" | ||
"gitHead": "7dc261f9b71d40d3b4e4faf154e4b70fb6735701" | ||
} |
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 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 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 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 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
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 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 not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1518857
1.69%4919
3.3%3
50%5
25%