{"version":3,"file":"Cms.js","sources":["../../../Framework/Enums/Cms/blockLocation.ts","../../../Framework/Enums/Cms/contentChannelDateType.ts","../../../Framework/Enums/Cms/contentChannelItemStatus.ts","../../../Framework/Enums/Cms/contentCollectionFilterControl.ts","../../../Framework/Enums/Cms/contentControlType.ts","../../../Framework/Enums/Cms/displayInNavWhen.ts","../../../Framework/Enums/Cms/persistedDatasetDataFormat.ts","../../../Framework/Enums/Cms/persistedDatasetScriptType.ts","../../../Framework/Enums/Cms/siteType.ts","../../../Framework/Enums/Cms/tagType.ts"],"sourcesContent":["//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The location where the Block is implemented */\r\nexport const BlockLocation = {\r\n /** Block is located in the layout (will be rendered for every page using the layout) */\r\n Layout: 0,\r\n\r\n /** Block is located on the page */\r\n Page: 1,\r\n\r\n /** Block is located in the site (will be rendered for every page of the site) */\r\n Site: 2,\r\n\r\n /** Block is doesn't have a PageId, LayoutId, or a SiteId specific (shouldn't happen, but just in case) */\r\n None: 3\r\n} as const;\r\n\r\n/** The location where the Block is implemented */\r\nexport const BlockLocationDescription: Record = {\r\n 0: \"Layout\",\r\n\r\n 1: \"Page\",\r\n\r\n 2: \"Site\",\r\n\r\n 3: \"None\"\r\n};\r\n\r\n/** The location where the Block is implemented */\r\nexport type BlockLocation = typeof BlockLocation[keyof typeof BlockLocation];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents the type of DateRange that is supported. */\r\nexport const ContentChannelDateType = {\r\n /** Allows a single date. */\r\n SingleDate: 1,\r\n\r\n /** Allows a date range (start - end date) */\r\n DateRange: 2,\r\n\r\n /** Hides Date Controls */\r\n NoDates: 3\r\n} as const;\r\n\r\n/** Represents the type of DateRange that is supported. */\r\nexport const ContentChannelDateTypeDescription: Record = {\r\n 1: \"Single Date\",\r\n\r\n 2: \"Date Range\",\r\n\r\n 3: \"No Dates\"\r\n};\r\n\r\n/** Represents the type of DateRange that is supported. */\r\nexport type ContentChannelDateType = typeof ContentChannelDateType[keyof typeof ContentChannelDateType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents the approval status of a content channel item */\r\nexport const ContentChannelItemStatus = {\r\n /** The ContentChannelItem is pending approval. */\r\n PendingApproval: 1,\r\n\r\n /** The ContentChannelItem has been approved. */\r\n Approved: 2,\r\n\r\n /** The ContentChannelItem was denied. */\r\n Denied: 3\r\n} as const;\r\n\r\n/** Represents the approval status of a content channel item */\r\nexport const ContentChannelItemStatusDescription: Record = {\r\n 1: \"Pending Approval\",\r\n\r\n 2: \"Approved\",\r\n\r\n 3: \"Denied\"\r\n};\r\n\r\n/** Represents the approval status of a content channel item */\r\nexport type ContentChannelItemStatus = typeof ContentChannelItemStatus[keyof typeof ContentChannelItemStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/**\r\n * Defines the type of UI controls that can be rendered for filters\r\n * on the content collection pages.\r\n */\r\nexport const ContentCollectionFilterControl = {\r\n /**\r\n * Filter will be rendered as a pill and will behave as either a\r\n * radio button or checkbox.\r\n */\r\n Pills: 0,\r\n\r\n /** Filter will be rendered as a dropdown selection. */\r\n Dropdown: 1,\r\n\r\n /** Filter will be rendered as a single boolean option. */\r\n Boolean: 2\r\n} as const;\r\n\r\n/**\r\n * Defines the type of UI controls that can be rendered for filters\r\n * on the content collection pages.\r\n */\r\nexport const ContentCollectionFilterControlDescription: Record = {\r\n 0: \"Pills\",\r\n\r\n 1: \"Dropdown\",\r\n\r\n 2: \"Boolean\"\r\n};\r\n\r\n/**\r\n * Defines the type of UI controls that can be rendered for filters\r\n * on the content collection pages.\r\n */\r\nexport type ContentCollectionFilterControl = typeof ContentCollectionFilterControl[keyof typeof ContentCollectionFilterControl];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents the type of content control. */\r\nexport const ContentControlType = {\r\n /** Code Editor control */\r\n CodeEditor: 0,\r\n\r\n /** HTML Editor control */\r\n HtmlEditor: 1\r\n} as const;\r\n\r\n/** Represents the type of content control. */\r\nexport const ContentControlTypeDescription: Record = {\r\n 0: \"Code Editor\",\r\n\r\n 1: \"Html Editor\"\r\n};\r\n\r\n/** Represents the type of content control. */\r\nexport type ContentControlType = typeof ContentControlType[keyof typeof ContentControlType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents how a Page should be displayed in the page navigation controls. */\r\nexport const DisplayInNavWhen = {\r\n /** Display this page in navigation controls when allowed by security */\r\n WhenAllowed: 0,\r\n\r\n /** Always display this page in navigation controls, regardless of security */\r\n Always: 1,\r\n\r\n /** Never display this page in navigation controls */\r\n Never: 2\r\n} as const;\r\n\r\n/** Represents how a Page should be displayed in the page navigation controls. */\r\nexport const DisplayInNavWhenDescription: Record = {\r\n 0: \"When Allowed\",\r\n\r\n 1: \"Always\",\r\n\r\n 2: \"Never\"\r\n};\r\n\r\n/** Represents how a Page should be displayed in the page navigation controls. */\r\nexport type DisplayInNavWhen = typeof DisplayInNavWhen[keyof typeof DisplayInNavWhen];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Data format for serialization of the dataset */\r\nexport const PersistedDatasetDataFormat = {\r\n /** The json */\r\n JSON: 0\r\n} as const;\r\n\r\n/** Data format for serialization of the dataset */\r\nexport const PersistedDatasetDataFormatDescription: Record = {\r\n 0: \"JSON\"\r\n};\r\n\r\n/** Data format for serialization of the dataset */\r\nexport type PersistedDatasetDataFormat = typeof PersistedDatasetDataFormat[keyof typeof PersistedDatasetDataFormat];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Scripting language for the dataset */\r\nexport const PersistedDatasetScriptType = {\r\n /** The lava */\r\n Lava: 0\r\n} as const;\r\n\r\n/** Scripting language for the dataset */\r\nexport const PersistedDatasetScriptTypeDescription: Record = {\r\n 0: \"Lava\"\r\n};\r\n\r\n/** Scripting language for the dataset */\r\nexport type PersistedDatasetScriptType = typeof PersistedDatasetScriptType[keyof typeof PersistedDatasetScriptType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Types Web, Mobile */\r\nexport const SiteType = {\r\n /** Websites */\r\n Web: 0,\r\n\r\n /** Mobile applications */\r\n Mobile: 1,\r\n\r\n /** TV Apps */\r\n Tv: 2\r\n} as const;\r\n\r\n/** Types Web, Mobile */\r\nexport const SiteTypeDescription: Record = {\r\n 0: \"Web\",\r\n\r\n 1: \"Mobile\",\r\n\r\n 2: \"Tv\"\r\n};\r\n\r\n/** Types Web, Mobile */\r\nexport type SiteType = typeof SiteType[keyof typeof SiteType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\r\nexport const TagType = {\r\n /** The inline type. */\r\n Inline: 1,\r\n\r\n /** The block type. */\r\n Block: 2\r\n} as const;\r\n\r\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\r\nexport const TagTypeDescription: Record = {\r\n 1: \"Inline\",\r\n\r\n 2: \"Block\"\r\n};\r\n\r\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\r\nexport type TagType = typeof TagType[keyof typeof TagType];\r\n"],"names":["BlockLocation","Layout","Page","Site","None","BlockLocationDescription","ContentChannelDateType","SingleDate","DateRange","NoDates","ContentChannelDateTypeDescription","ContentChannelItemStatus","PendingApproval","Approved","Denied","ContentChannelItemStatusDescription","ContentCollectionFilterControl","Pills","Dropdown","Boolean","ContentCollectionFilterControlDescription","ContentControlType","CodeEditor","HtmlEditor","ContentControlTypeDescription","DisplayInNavWhen","WhenAllowed","Always","Never","DisplayInNavWhenDescription","PersistedDatasetDataFormat","JSON","PersistedDatasetDataFormatDescription","PersistedDatasetScriptType","Lava","PersistedDatasetScriptTypeDescription","SiteType","Web","Mobile","Tv","SiteTypeDescription","TagType","Inline","Block","TagTypeDescription"],"mappings":"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"}