gd-sprest-bs
Version:
SharePoint JavaScript, TypeScript and Web Components designed using the Bootstrap framework.
16 lines (15 loc) • 489 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WPListFields = void 0;
var list_1 = require("../list");
var wpCfg_1 = require("./wpCfg");
/**
* List Fields WebPart
*/
var WPListFields = function (props) {
// Set the edit form
props ? props.editForm = (0, wpCfg_1.WPListFieldsEditForm)(props.editForm) : null;
// Create the webpart and return it
return (0, list_1.WPList)(props);
};
exports.WPListFields = WPListFields;