{"version":3,"file":"Cms.js","sources":["../../../Framework/Enums/Cms/blockLocation.ts","../../../Framework/Enums/Cms/blockReloadMode.ts","../../../Framework/Enums/Cms/botGuardianLevel.ts","../../../Framework/Enums/Cms/contentChannelDateType.ts","../../../Framework/Enums/Cms/contentChannelItemStatus.ts","../../../Framework/Enums/Cms/contentCollectionFilterControl.ts","../../../Framework/Enums/Cms/contentControlType.ts","../../../Framework/Enums/Cms/contentLibraryItemExperienceLevel.ts","../../../Framework/Enums/Cms/displayInNavWhen.ts","../../../Framework/Enums/Cms/mobilePageType.ts","../../../Framework/Enums/Cms/persistedDatasetDataFormat.ts","../../../Framework/Enums/Cms/persistedDatasetScriptType.ts","../../../Framework/Enums/Cms/siteType.ts","../../../Framework/Enums/Cms/siteTypeFlags.ts","../../../Framework/Enums/Cms/tagType.ts","../../../Framework/Enums/Cms/themeFieldType.ts","../../../Framework/Enums/Cms/themeFontAwesomeWeight.ts","../../../Framework/Enums/Cms/themeIconSet.ts"],"sourcesContent":["//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/**\r\n * The way to perform an automatic reload for a block when the standard\r\n * block settings have been changed.\r\n */\r\nexport const BlockReloadMode = {\r\n    /** No reload is performed. */\r\n    None: 0,\r\n\r\n    /** The block is reloaded in place on the page. */\r\n    Block: 1,\r\n\r\n    /** The entire page is reloaded. */\r\n    Page: 2\r\n} as const;\r\n\r\n/**\r\n * The way to perform an automatic reload for a block when the standard\r\n * block settings have been changed.\r\n */\r\nexport const BlockReloadModeDescription: Record<number, string> = {\r\n    0: \"None\",\r\n\r\n    1: \"Block\",\r\n\r\n    2: \"Page\"\r\n};\r\n\r\n/**\r\n * The way to perform an automatic reload for a block when the standard\r\n * block settings have been changed.\r\n */\r\nexport type BlockReloadMode = typeof BlockReloadMode[keyof typeof BlockReloadMode];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/** The Bot Guardian Level for Pages and Sites */\r\nexport const BotGuardianLevel = {\r\n    /** The Inherit Bot Guardian Level */\r\n    Inherit: -1,\r\n\r\n    /** The Disable Bot Guardian Level */\r\n    Disable: 0,\r\n\r\n    /** The Enable Bot Guardian Level */\r\n    Enable: 1\r\n} as const;\r\n\r\n/** The Bot Guardian Level for Pages and Sites */\r\nexport const BotGuardianLevelDescription: Record<number, string> = {\r\n    [-1]: \"Inherit\",\r\n\r\n    0: \"Disable\",\r\n\r\n    1: \"Enable\"\r\n};\r\n\r\n/** The Bot Guardian Level for Pages and Sites */\r\nexport type BotGuardianLevel = typeof BotGuardianLevel[keyof typeof BotGuardianLevel];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/** The ContentLibraryItem experience levels. */\r\nexport const ContentLibraryItemExperienceLevel = {\r\n    /** The foundational experience level. */\r\n    Foundational: 1,\r\n\r\n    /** The intermediate experience level. */\r\n    Intermediate: 2,\r\n\r\n    /** The advanced experience level. */\r\n    Advanced: 3\r\n} as const;\r\n\r\n/** The ContentLibraryItem experience levels. */\r\nexport const ContentLibraryItemExperienceLevelDescription: Record<number, string> = {\r\n    1: \"Foundational\",\r\n\r\n    2: \"Intermediate\",\r\n\r\n    3: \"Advanced\"\r\n};\r\n\r\n/** The ContentLibraryItem experience levels. */\r\nexport type ContentLibraryItemExperienceLevel = typeof ContentLibraryItemExperienceLevel[keyof typeof ContentLibraryItemExperienceLevel];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/** Represents the type of a mobile page. */\r\nexport const MobilePageType = {\r\n    /** A native page, such as a page that is part of the Rock mobile app. */\r\n    NativePage: 0,\r\n\r\n    /** An internal web page, such as a web page that is part of the Rock mobile app. */\r\n    InternalWebPage: 1,\r\n\r\n    /** An external web page, such as a web page that is not part of the Rock mobile app. */\r\n    ExternalWebPage: 2\r\n} as const;\r\n\r\n/** Represents the type of a mobile page. */\r\nexport const MobilePageTypeDescription: Record<number, string> = {\r\n    0: \"Native Page\",\r\n\r\n    1: \"Internal Web Page\",\r\n\r\n    2: \"External Web Page\"\r\n};\r\n\r\n/** Represents the type of a mobile page. */\r\nexport type MobilePageType = typeof MobilePageType[keyof typeof MobilePageType];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/**\r\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\r\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\r\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\r\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\r\n */\r\nexport const SiteTypeFlags = {\r\n    /** The default Site Type flag. */\r\n    None: 0x0000,\r\n\r\n    /** Websites */\r\n    Web: 0x0001,\r\n\r\n    /** Mobile applications */\r\n    Mobile: 0x0002,\r\n\r\n    /** TV Apps */\r\n    Tv: 0x0004\r\n} as const;\r\n\r\n/**\r\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\r\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\r\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\r\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\r\n */\r\nexport const SiteTypeFlagsDescription: Record<number, string> = {\r\n    0: \"None\",\r\n\r\n    1: \"Web\",\r\n\r\n    2: \"Mobile\",\r\n\r\n    4: \"Tv\"\r\n};\r\n\r\n/**\r\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\r\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\r\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\r\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\r\n */\r\nexport type SiteTypeFlags = number;\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\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<number, string> = {\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","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/** The type of field to be displayed in the UI. */\r\nexport const ThemeFieldType = {\r\n    /**\r\n     * A CSS variable with a text input that will output the literal value\r\n     * without any formatting.\r\n     */\r\n    Literal: 0,\r\n\r\n    /** A CSS variable with a color input. */\r\n    Color: 1,\r\n\r\n    /** A CSS variable with an image input. */\r\n    Image: 2,\r\n\r\n    /**\r\n     * A CSS variable with a text input. The value will be enclosed in\r\n     * quotes and escaped.\r\n     */\r\n    Text: 3,\r\n\r\n    /** A CSS variable with a file input. */\r\n    File: 4,\r\n\r\n    /**\r\n     * A field that will include one of two custom CSS content templates.\r\n     * The CSS variable will contain the text 'on' or 'off'.\r\n     */\r\n    Switch: 5,\r\n\r\n    /** A heading above other fields. */\r\n    Heading: 100,\r\n\r\n    /** A spacer between fields. */\r\n    Spacer: 101,\r\n\r\n    /** A panel that wraps other fields. */\r\n    Panel: 102\r\n} as const;\r\n\r\n/** The type of field to be displayed in the UI. */\r\nexport const ThemeFieldTypeDescription: Record<number, string> = {\r\n    0: \"Literal\",\r\n\r\n    1: \"Color\",\r\n\r\n    2: \"Image\",\r\n\r\n    3: \"Text\",\r\n\r\n    4: \"File\",\r\n\r\n    5: \"Switch\",\r\n\r\n    100: \"Heading\",\r\n\r\n    101: \"Spacer\",\r\n\r\n    102: \"Panel\"\r\n};\r\n\r\n/** The type of field to be displayed in the UI. */\r\nexport type ThemeFieldType = typeof ThemeFieldType[keyof typeof ThemeFieldType];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/**\r\n * A font weight associated with FontAwesome to be used by themes when\r\n * building the CSS overrides file.\r\n */\r\nexport const ThemeFontAwesomeWeight = {\r\n    /** The solid icon weight. */\r\n    Solid: 0,\r\n\r\n    /** The regular icon weight. */\r\n    Regular: 1,\r\n\r\n    /** The light icon weight. */\r\n    Light: 2\r\n} as const;\r\n\r\n/**\r\n * A font weight associated with FontAwesome to be used by themes when\r\n * building the CSS overrides file.\r\n */\r\nexport const ThemeFontAwesomeWeightDescription: Record<number, string> = {\r\n    0: \"Solid\",\r\n\r\n    1: \"Regular\",\r\n\r\n    2: \"Light\"\r\n};\r\n\r\n/**\r\n * A font weight associated with FontAwesome to be used by themes when\r\n * building the CSS overrides file.\r\n */\r\nexport type ThemeFontAwesomeWeight = typeof ThemeFontAwesomeWeight[keyof typeof ThemeFontAwesomeWeight];\r\n","//------------------------------------------------------------------------------\r\n// <auto-generated>\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// </auto-generated>\r\n//------------------------------------------------------------------------------\r\n// <copyright>\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// </copyright>\r\n//\r\n\r\n/** An icon set that can be used with a theme. */\r\nexport const ThemeIconSet = {\r\n    /** The FontAwesome icon set. */\r\n    FontAwesome: 0x0001,\r\n\r\n    /** The Tabler icon set. */\r\n    Tabler: 0x0002\r\n} as const;\r\n\r\n/** An icon set that can be used with a theme. */\r\nexport const ThemeIconSetDescription: Record<number, string> = {\r\n    1: \"Font Awesome\",\r\n\r\n    2: \"Tabler\"\r\n};\r\n\r\n/** An icon set that can be used with a theme. */\r\nexport type ThemeIconSet = number;\r\n"],"names":["BlockLocation","Layout","Page","Site","None","BlockLocationDescription","BlockReloadMode","Block","BlockReloadModeDescription","BotGuardianLevel","Inherit","Disable","Enable","BotGuardianLevelDescription","ContentChannelDateType","SingleDate","DateRange","NoDates","ContentChannelDateTypeDescription","ContentChannelItemStatus","PendingApproval","Approved","Denied","ContentChannelItemStatusDescription","ContentCollectionFilterControl","Pills","Dropdown","Boolean","ContentCollectionFilterControlDescription","ContentControlType","CodeEditor","HtmlEditor","ContentControlTypeDescription","ContentLibraryItemExperienceLevel","Foundational","Intermediate","Advanced","ContentLibraryItemExperienceLevelDescription","DisplayInNavWhen","WhenAllowed","Always","Never","DisplayInNavWhenDescription","MobilePageType","NativePage","InternalWebPage","ExternalWebPage","MobilePageTypeDescription","PersistedDatasetDataFormat","JSON","PersistedDatasetDataFormatDescription","PersistedDatasetScriptType","Lava","PersistedDatasetScriptTypeDescription","SiteType","Web","Mobile","Tv","SiteTypeDescription","SiteTypeFlags","SiteTypeFlagsDescription","TagType","Inline","TagTypeDescription","ThemeFieldType","Literal","Color","Image","Text","File","Switch","Heading","Spacer","Panel","ThemeFieldTypeDescription","ThemeFontAwesomeWeight","Solid","Regular","Light","ThemeFontAwesomeWeightDescription","ThemeIconSet","FontAwesome","Tabler","ThemeIconSetDescription"],"mappings":";;;;;YAwBO,IAAMA,aAAa,GAAG;YAEzBC,EAAAA,MAAM,EAAE,CAAC;YAGTC,EAAAA,IAAI,EAAE,CAAC;YAGPC,EAAAA,IAAI,EAAE,CAAC;YAGPC,EAAAA,IAAI,EAAE,CAAA;YACV,CAAU,CAAA;YAGH,IAAMC,wBAAgD,GAAG;YAC5D,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,MAAA;YACP,CAAC;;;;;;;;;YCpBM,IAAMC,eAAe,GAAG;YAE3BF,EAAAA,IAAI,EAAE,CAAC;YAGPG,EAAAA,KAAK,EAAE,CAAC;YAGRL,EAAAA,IAAI,EAAE,CAAA;YACV,CAAU,CAAA;YAMH,IAAMM,0BAAkD,GAAG;YAC9D,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,MAAA;YACP,CAAC;;;;;;;;;YCxBM,IAAMC,gBAAgB,GAAG;cAE5BC,OAAO,EAAE,CAAC,CAAC;YAGXC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,MAAM,EAAE,CAAA;YACZ,CAAU,CAAA;YAGH,IAAMC,2BAAmD,GAAG;cAC/D,CAAC,CAAC,CAAC,GAAG,SAAS;YAEf,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,QAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,sBAAsB,GAAG;YAElCC,EAAAA,UAAU,EAAE,CAAC;YAGbC,EAAAA,SAAS,EAAE,CAAC;YAGZC,EAAAA,OAAO,EAAE,CAAA;YACb,CAAU,CAAA;YAGH,IAAMC,iCAAyD,GAAG;YACrE,EAAA,CAAC,EAAE,aAAa;YAEhB,EAAA,CAAC,EAAE,YAAY;YAEf,EAAA,CAAC,EAAE,UAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,wBAAwB,GAAG;YAEpCC,EAAAA,eAAe,EAAE,CAAC;YAGlBC,EAAAA,QAAQ,EAAE,CAAC;YAGXC,EAAAA,MAAM,EAAE,CAAA;YACZ,CAAU,CAAA;YAGH,IAAMC,mCAA2D,GAAG;YACvE,EAAA,CAAC,EAAE,kBAAkB;YAErB,EAAA,CAAC,EAAE,UAAU;YAEb,EAAA,CAAC,EAAE,QAAA;YACP,CAAC;;;;;;;;;YCfM,IAAMC,8BAA8B,GAAG;YAK1CC,EAAAA,KAAK,EAAE,CAAC;YAGRC,EAAAA,QAAQ,EAAE,CAAC;YAGXC,EAAAA,OAAO,EAAE,CAAA;YACb,CAAU,CAAA;YAMH,IAAMC,yCAAiE,GAAG;YAC7E,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,UAAU;YAEb,EAAA,CAAC,EAAE,SAAA;YACP,CAAC;;;;;;;;;YC3BM,IAAMC,kBAAkB,GAAG;YAE9BC,EAAAA,UAAU,EAAE,CAAC;YAGbC,EAAAA,UAAU,EAAE,CAAA;YAChB,CAAU,CAAA;YAGH,IAAMC,6BAAqD,GAAG;YACjE,EAAA,CAAC,EAAE,aAAa;YAEhB,EAAA,CAAC,EAAE,aAAA;YACP,CAAC;;;;;;;;;YCbM,IAAMC,iCAAiC,GAAG;YAE7CC,EAAAA,YAAY,EAAE,CAAC;YAGfC,EAAAA,YAAY,EAAE,CAAC;YAGfC,EAAAA,QAAQ,EAAE,CAAA;YACd,CAAU,CAAA;YAGH,IAAMC,4CAAoE,GAAG;YAChF,EAAA,CAAC,EAAE,cAAc;YAEjB,EAAA,CAAC,EAAE,cAAc;YAEjB,EAAA,CAAC,EAAE,UAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,gBAAgB,GAAG;YAE5BC,EAAAA,WAAW,EAAE,CAAC;YAGdC,EAAAA,MAAM,EAAE,CAAC;YAGTC,EAAAA,KAAK,EAAE,CAAA;YACX,CAAU,CAAA;YAGH,IAAMC,2BAAmD,GAAG;YAC/D,EAAA,CAAC,EAAE,cAAc;YAEjB,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,OAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,cAAc,GAAG;YAE1BC,EAAAA,UAAU,EAAE,CAAC;YAGbC,EAAAA,eAAe,EAAE,CAAC;YAGlBC,EAAAA,eAAe,EAAE,CAAA;YACrB,CAAU,CAAA;YAGH,IAAMC,yBAAiD,GAAG;YAC7D,EAAA,CAAC,EAAE,aAAa;YAEhB,EAAA,CAAC,EAAE,mBAAmB;YAEtB,EAAA,CAAC,EAAE,mBAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,0BAA0B,GAAG;YAEtCC,EAAAA,IAAI,EAAE,CAAA;YACV,CAAU,CAAA;YAGH,IAAMC,qCAA6D,GAAG;YACzE,EAAA,CAAC,EAAE,MAAA;YACP,CAAC;;;;;;;;;YCRM,IAAMC,0BAA0B,GAAG;YAEtCC,EAAAA,IAAI,EAAE,CAAA;YACV,CAAU,CAAA;YAGH,IAAMC,qCAA6D,GAAG;YACzE,EAAA,CAAC,EAAE,MAAA;YACP,CAAC;;;;;;;;;YCRM,IAAMC,QAAQ,GAAG;YAEpBC,EAAAA,GAAG,EAAE,CAAC;YAGNC,EAAAA,MAAM,EAAE,CAAC;YAGTC,EAAAA,EAAE,EAAE,CAAA;YACR,CAAU,CAAA;YAGH,IAAMC,mBAA2C,GAAG;YACvD,EAAA,CAAC,EAAE,KAAK;YAER,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,IAAA;YACP,CAAC;;;;;;;;;YCbM,IAAMC,aAAa,GAAG;YAEzBvD,EAAAA,IAAI,EAAE,MAAM;YAGZmD,EAAAA,GAAG,EAAE,MAAM;YAGXC,EAAAA,MAAM,EAAE,MAAM;YAGdC,EAAAA,EAAE,EAAE,MAAA;YACR,CAAU,CAAA;YAQH,IAAMG,wBAAgD,GAAG;YAC5D,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,KAAK;YAER,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,IAAA;YACP,CAAC;;;;;;;;;YCjCM,IAAMC,OAAO,GAAG;YAEnBC,EAAAA,MAAM,EAAE,CAAC;YAGTvD,EAAAA,KAAK,EAAE,CAAA;YACX,CAAU,CAAA;YAGH,IAAMwD,kBAA0C,GAAG;YACtD,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,OAAA;YACP,CAAC;;;;;;;;;YCbM,IAAMC,cAAc,GAAG;YAK1BC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,KAAK,EAAE,CAAC;YAGRC,EAAAA,KAAK,EAAE,CAAC;YAMRC,EAAAA,IAAI,EAAE,CAAC;YAGPC,EAAAA,IAAI,EAAE,CAAC;YAMPC,EAAAA,MAAM,EAAE,CAAC;YAGTC,EAAAA,OAAO,EAAE,GAAG;YAGZC,EAAAA,MAAM,EAAE,GAAG;YAGXC,EAAAA,KAAK,EAAE,GAAA;YACX,CAAU,CAAA;YAGH,IAAMC,yBAAiD,GAAG;YAC7D,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,GAAG,EAAE,SAAS;YAEd,EAAA,GAAG,EAAE,QAAQ;YAEb,EAAA,GAAG,EAAE,OAAA;YACT,CAAC;;;;;;;;;YCtDM,IAAMC,sBAAsB,GAAG;YAElCC,EAAAA,KAAK,EAAE,CAAC;YAGRC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,KAAK,EAAE,CAAA;YACX,CAAU,CAAA;YAMH,IAAMC,iCAAyD,GAAG;YACrE,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,OAAA;YACP,CAAC;;;;;;;;;YCxBM,IAAMC,YAAY,GAAG;YAExBC,EAAAA,WAAW,EAAE,MAAM;YAGnBC,EAAAA,MAAM,EAAE,MAAA;YACZ,CAAU,CAAA;YAGH,IAAMC,uBAA+C,GAAG;YAC3D,EAAA,CAAC,EAAE,cAAc;YAEjB,EAAA,CAAC,EAAE,QAAA;YACP,CAAC;;;;;;;;;;;;;;;"}