@aurahelper/xml-definitions
Version:
Powerfull Libraries to get the XML Definitions of ALL XML Salesforce Metadata Files. Support All API Versions up to API 53.0. You can get the definition of one or more XML files for a specific version of Salesforce. For Example: You can get the XML Defini
19 lines • 705 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HomePageLayout = void 0;
var core_1 = require("@aurahelper/core");
exports.HomePageLayout = {
fullName: new core_1.StringXMLField('fullName', 'Full Name')
.setMinApi(12)
.setEditable()
.setRequired()
.addMatchPattern(/^[^\d\s_](\w)+$/)
.setUnique(),
narrowComponents: new core_1.ArrayXMLField('narrowComponents', 'Narrow Components')
.setMinApi(12)
.setEditable(),
wideComponents: new core_1.ArrayXMLField('wideComponents', 'Wide Components')
.setMinApi(12)
.setEditable()
};
//# sourceMappingURL=homePageLayout.js.map