@sitecore-jss/sitecore-jss
Version:
This module is provided as a part of Sitecore JavaScript Rendering SDK. It contains the core JSS APIs (layout service) and utilities.
29 lines (28 loc) • 862 B
JavaScript
/** Represents the mode of the Design Library. */
export var DesignLibraryMode;
(function (DesignLibraryMode) {
/** Normal mode */
DesignLibraryMode["Normal"] = "library";
/** Metadata mode */
DesignLibraryMode["Metadata"] = "library-metadata";
})(DesignLibraryMode || (DesignLibraryMode = {}));
/**
* Represents the Editing Layout variant.
* - shared - shared layout
* - final - final layout
*/
export var LayoutKind;
(function (LayoutKind) {
LayoutKind["Final"] = "final";
LayoutKind["Shared"] = "shared";
})(LayoutKind || (LayoutKind = {}));
/**
* Represents the kind of metadata element.
* - open - starting chrome element
* - close - closing chrome element
*/
export var MetadataKind;
(function (MetadataKind) {
MetadataKind["Open"] = "open";
MetadataKind["Close"] = "close";
})(MetadataKind || (MetadataKind = {}));