UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

50 lines 2.13 kB
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; import { JsonDiscriminatorValue, JsonObject, JsonProperty } from "ta-json"; import DataType from "../data-type"; import { PropertyDefinition } from "../property-definition"; import { StringContentType } from "../string-content-type"; /** * * String property definition. */ let StringPropertyDefinition = class StringPropertyDefinition extends PropertyDefinition { /** * The name of the {@link IOptionList} to get possible values from. * * @remarks * Is null when there is no attached option list. */ get optionListName() { return this.dataSourceName; } set optionListName(value) { this.dataSourceName = value; } constructor(name, init) { super(name, DataType.String); Object.assign(this, init); } }; __decorate([ JsonProperty("content_type"), __metadata("design:type", String) ], StringPropertyDefinition.prototype, "contentType", void 0); __decorate([ JsonProperty("validation_expression"), __metadata("design:type", Object) ], StringPropertyDefinition.prototype, "validationExpression", void 0); StringPropertyDefinition = __decorate([ JsonObject(), JsonDiscriminatorValue(DataType.String), __metadata("design:paramtypes", [String, Object]) ], StringPropertyDefinition); export { StringPropertyDefinition }; //# sourceMappingURL=string-property-definition.js.map