{"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":["//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** The location where the Block is implemented */\nexport const BlockLocation = {\n    /** Block is located in the layout (will be rendered for every page using the layout) */\n    Layout: 0,\n\n    /** Block is located on the page */\n    Page: 1,\n\n    /** Block is located in the site (will be rendered for every page of the site) */\n    Site: 2,\n\n    /** Block is doesn't have a PageId, LayoutId, or a SiteId specific (shouldn't happen, but just in case) */\n    None: 3\n} as const;\n\n/** The location where the Block is implemented */\nexport const BlockLocationDescription: Record<number, string> = {\n    0: \"Layout\",\n\n    1: \"Page\",\n\n    2: \"Site\",\n\n    3: \"None\"\n};\n\n/** The location where the Block is implemented */\nexport type BlockLocation = typeof BlockLocation[keyof typeof BlockLocation];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/**\n * The way to perform an automatic reload for a block when the standard\n * block settings have been changed.\n */\nexport const BlockReloadMode = {\n    /** No reload is performed. */\n    None: 0,\n\n    /** The block is reloaded in place on the page. */\n    Block: 1,\n\n    /** The entire page is reloaded. */\n    Page: 2\n} as const;\n\n/**\n * The way to perform an automatic reload for a block when the standard\n * block settings have been changed.\n */\nexport const BlockReloadModeDescription: Record<number, string> = {\n    0: \"None\",\n\n    1: \"Block\",\n\n    2: \"Page\"\n};\n\n/**\n * The way to perform an automatic reload for a block when the standard\n * block settings have been changed.\n */\nexport type BlockReloadMode = typeof BlockReloadMode[keyof typeof BlockReloadMode];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** The Bot Guardian Level for Pages and Sites */\nexport const BotGuardianLevel = {\n    /** The Inherit Bot Guardian Level */\n    Inherit: -1,\n\n    /** The Disable Bot Guardian Level */\n    Disable: 0,\n\n    /** The Enable Bot Guardian Level */\n    Enable: 1\n} as const;\n\n/** The Bot Guardian Level for Pages and Sites */\nexport const BotGuardianLevelDescription: Record<number, string> = {\n    [-1]: \"Inherit\",\n\n    0: \"Disable\",\n\n    1: \"Enable\"\n};\n\n/** The Bot Guardian Level for Pages and Sites */\nexport type BotGuardianLevel = typeof BotGuardianLevel[keyof typeof BotGuardianLevel];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Represents the type of DateRange that is supported. */\nexport const ContentChannelDateType = {\n    /** Allows a single date. */\n    SingleDate: 1,\n\n    /** Allows a date range (start - end date) */\n    DateRange: 2,\n\n    /** Hides Date Controls */\n    NoDates: 3\n} as const;\n\n/** Represents the type of DateRange that is supported. */\nexport const ContentChannelDateTypeDescription: Record<number, string> = {\n    1: \"Single Date\",\n\n    2: \"Date Range\",\n\n    3: \"No Dates\"\n};\n\n/** Represents the type of DateRange that is supported. */\nexport type ContentChannelDateType = typeof ContentChannelDateType[keyof typeof ContentChannelDateType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Represents the approval status of a content channel item */\nexport const ContentChannelItemStatus = {\n    /** The ContentChannelItem is pending approval. */\n    PendingApproval: 1,\n\n    /** The ContentChannelItem has been approved. */\n    Approved: 2,\n\n    /** The ContentChannelItem was denied. */\n    Denied: 3\n} as const;\n\n/** Represents the approval status of a content channel item */\nexport const ContentChannelItemStatusDescription: Record<number, string> = {\n    1: \"Pending Approval\",\n\n    2: \"Approved\",\n\n    3: \"Denied\"\n};\n\n/** Represents the approval status of a content channel item */\nexport type ContentChannelItemStatus = typeof ContentChannelItemStatus[keyof typeof ContentChannelItemStatus];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/**\n * Defines the type of UI controls that can be rendered for filters\n * on the content collection pages.\n */\nexport const ContentCollectionFilterControl = {\n    /**\n     * Filter will be rendered as a pill and will behave as either a\n     * radio button or checkbox.\n     */\n    Pills: 0,\n\n    /** Filter will be rendered as a dropdown selection. */\n    Dropdown: 1,\n\n    /** Filter will be rendered as a single boolean option. */\n    Boolean: 2\n} as const;\n\n/**\n * Defines the type of UI controls that can be rendered for filters\n * on the content collection pages.\n */\nexport const ContentCollectionFilterControlDescription: Record<number, string> = {\n    0: \"Pills\",\n\n    1: \"Dropdown\",\n\n    2: \"Boolean\"\n};\n\n/**\n * Defines the type of UI controls that can be rendered for filters\n * on the content collection pages.\n */\nexport type ContentCollectionFilterControl = typeof ContentCollectionFilterControl[keyof typeof ContentCollectionFilterControl];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Represents the type of content control. */\nexport const ContentControlType = {\n    /** Code Editor control */\n    CodeEditor: 0,\n\n    /** HTML Editor control */\n    HtmlEditor: 1\n} as const;\n\n/** Represents the type of content control. */\nexport const ContentControlTypeDescription: Record<number, string> = {\n    0: \"Code Editor\",\n\n    1: \"Html Editor\"\n};\n\n/** Represents the type of content control. */\nexport type ContentControlType = typeof ContentControlType[keyof typeof ContentControlType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** The ContentLibraryItem experience levels. */\nexport const ContentLibraryItemExperienceLevel = {\n    /** The foundational experience level. */\n    Foundational: 1,\n\n    /** The intermediate experience level. */\n    Intermediate: 2,\n\n    /** The advanced experience level. */\n    Advanced: 3\n} as const;\n\n/** The ContentLibraryItem experience levels. */\nexport const ContentLibraryItemExperienceLevelDescription: Record<number, string> = {\n    1: \"Foundational\",\n\n    2: \"Intermediate\",\n\n    3: \"Advanced\"\n};\n\n/** The ContentLibraryItem experience levels. */\nexport type ContentLibraryItemExperienceLevel = typeof ContentLibraryItemExperienceLevel[keyof typeof ContentLibraryItemExperienceLevel];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Represents how a Page should be displayed in the page navigation controls. */\nexport const DisplayInNavWhen = {\n    /** Display this page in navigation controls when allowed by security */\n    WhenAllowed: 0,\n\n    /** Always display this page in navigation controls, regardless of security */\n    Always: 1,\n\n    /** Never display this page in navigation controls */\n    Never: 2\n} as const;\n\n/** Represents how a Page should be displayed in the page navigation controls. */\nexport const DisplayInNavWhenDescription: Record<number, string> = {\n    0: \"When Allowed\",\n\n    1: \"Always\",\n\n    2: \"Never\"\n};\n\n/** Represents how a Page should be displayed in the page navigation controls. */\nexport type DisplayInNavWhen = typeof DisplayInNavWhen[keyof typeof DisplayInNavWhen];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Represents the type of a mobile page. */\nexport const MobilePageType = {\n    /** A native page, such as a page that is part of the Rock mobile app. */\n    NativePage: 0,\n\n    /** An internal web page, such as a web page that is part of the Rock mobile app. */\n    InternalWebPage: 1,\n\n    /** An external web page, such as a web page that is not part of the Rock mobile app. */\n    ExternalWebPage: 2\n} as const;\n\n/** Represents the type of a mobile page. */\nexport const MobilePageTypeDescription: Record<number, string> = {\n    0: \"Native Page\",\n\n    1: \"Internal Web Page\",\n\n    2: \"External Web Page\"\n};\n\n/** Represents the type of a mobile page. */\nexport type MobilePageType = typeof MobilePageType[keyof typeof MobilePageType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Data format for serialization of the dataset */\nexport const PersistedDatasetDataFormat = {\n    /** The json */\n    JSON: 0\n} as const;\n\n/** Data format for serialization of the dataset */\nexport const PersistedDatasetDataFormatDescription: Record<number, string> = {\n    0: \"JSON\"\n};\n\n/** Data format for serialization of the dataset */\nexport type PersistedDatasetDataFormat = typeof PersistedDatasetDataFormat[keyof typeof PersistedDatasetDataFormat];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Scripting language for the dataset */\nexport const PersistedDatasetScriptType = {\n    /** The lava */\n    Lava: 0\n} as const;\n\n/** Scripting language for the dataset */\nexport const PersistedDatasetScriptTypeDescription: Record<number, string> = {\n    0: \"Lava\"\n};\n\n/** Scripting language for the dataset */\nexport type PersistedDatasetScriptType = typeof PersistedDatasetScriptType[keyof typeof PersistedDatasetScriptType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Types Web, Mobile */\nexport const SiteType = {\n    /** Websites */\n    Web: 0,\n\n    /** Mobile applications */\n    Mobile: 1,\n\n    /** TV Apps */\n    Tv: 2\n} as const;\n\n/** Types Web, Mobile */\nexport const SiteTypeDescription: Record<number, string> = {\n    0: \"Web\",\n\n    1: \"Mobile\",\n\n    2: \"Tv\"\n};\n\n/** Types Web, Mobile */\nexport type SiteType = typeof SiteType[keyof typeof SiteType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/**\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\n */\nexport const SiteTypeFlags = {\n    /** The default Site Type flag. */\n    None: 0x0000,\n\n    /** Websites */\n    Web: 0x0001,\n\n    /** Mobile applications */\n    Mobile: 0x0002,\n\n    /** TV Apps */\n    Tv: 0x0004\n} as const;\n\n/**\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\n */\nexport const SiteTypeFlagsDescription: Record<number, string> = {\n    0: \"None\",\n\n    1: \"Web\",\n\n    2: \"Mobile\",\n\n    4: \"Tv\"\n};\n\n/**\n * Flags for the Rock.Model.SiteType. This enum was introduced with the motivation to improve performance.\n * Prior to this, reflection was the only way to get the SiteTypes on a BlockType which turned out to be expensive.\n * With this enum, the computed SiteTypes could be stored in the database to be read later.\n * The developer should ensure that the values in this enum is in sync with the ones in Rock.Model.SiteType enum.\n */\nexport type SiteTypeFlags = number;\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\nexport const TagType = {\n    /** The inline type. */\n    Inline: 1,\n\n    /** The block type. */\n    Block: 2\n} as const;\n\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\nexport const TagTypeDescription: Record<number, string> = {\n    1: \"Inline\",\n\n    2: \"Block\"\n};\n\n/** Determines the type of tag (inline or block). Block type requires an end tag. */\nexport type TagType = typeof TagType[keyof typeof TagType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** The type of field to be displayed in the UI. */\nexport const ThemeFieldType = {\n    /**\n     * A CSS variable with a text input that will output the literal value\n     * without any formatting.\n     */\n    Literal: 0,\n\n    /** A CSS variable with a color input. */\n    Color: 1,\n\n    /** A CSS variable with an image input. */\n    Image: 2,\n\n    /**\n     * A CSS variable with a text input. The value will be enclosed in\n     * quotes and escaped.\n     */\n    Text: 3,\n\n    /** A CSS variable with a file input. */\n    File: 4,\n\n    /**\n     * A field that will include one of two custom CSS content templates.\n     * The CSS variable will contain the text 'on' or 'off'.\n     */\n    Switch: 5,\n\n    /** A heading above other fields. */\n    Heading: 100,\n\n    /** A spacer between fields. */\n    Spacer: 101,\n\n    /** A panel that wraps other fields. */\n    Panel: 102\n} as const;\n\n/** The type of field to be displayed in the UI. */\nexport const ThemeFieldTypeDescription: Record<number, string> = {\n    0: \"Literal\",\n\n    1: \"Color\",\n\n    2: \"Image\",\n\n    3: \"Text\",\n\n    4: \"File\",\n\n    5: \"Switch\",\n\n    100: \"Heading\",\n\n    101: \"Spacer\",\n\n    102: \"Panel\"\n};\n\n/** The type of field to be displayed in the UI. */\nexport type ThemeFieldType = typeof ThemeFieldType[keyof typeof ThemeFieldType];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/**\n * A font weight associated with FontAwesome to be used by themes when\n * building the CSS overrides file.\n */\nexport const ThemeFontAwesomeWeight = {\n    /** The solid icon weight. */\n    Solid: 0,\n\n    /** The regular icon weight. */\n    Regular: 1,\n\n    /** The light icon weight. */\n    Light: 2\n} as const;\n\n/**\n * A font weight associated with FontAwesome to be used by themes when\n * building the CSS overrides file.\n */\nexport const ThemeFontAwesomeWeightDescription: Record<number, string> = {\n    0: \"Solid\",\n\n    1: \"Regular\",\n\n    2: \"Light\"\n};\n\n/**\n * A font weight associated with FontAwesome to be used by themes when\n * building the CSS overrides file.\n */\nexport type ThemeFontAwesomeWeight = typeof ThemeFontAwesomeWeight[keyof typeof ThemeFontAwesomeWeight];\n","//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code was generated by the Rock.CodeGeneration project\n//     Changes to this file will be lost when the code is regenerated.\n// </auto-generated>\n//------------------------------------------------------------------------------\n// <copyright>\n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// </copyright>\n//\n\n/** An icon set that can be used with a theme. */\nexport const ThemeIconSet = {\n    /** The FontAwesome icon set. */\n    FontAwesome: 0x0001,\n\n    /** The Tabler icon set. */\n    Tabler: 0x0002\n} as const;\n\n/** An icon set that can be used with a theme. */\nexport const ThemeIconSetDescription: Record<number, string> = {\n    1: \"Font Awesome\",\n\n    2: \"Tabler\"\n};\n\n/** An icon set that can be used with a theme. */\nexport type ThemeIconSet = number;\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":"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"}