{"version":3,"file":"Controls.js","sources":["../../../Framework/Enums/Controls/alertType.ts","../../../Framework/Enums/Controls/btnSize.ts","../../../Framework/Enums/Controls/btnType.ts","../../../Framework/Enums/Controls/controlLazyMode.ts","../../../Framework/Enums/Controls/dayOfWeek.ts","../../../Framework/Enums/Controls/detailPanelMode.ts","../../../Framework/Enums/Controls/gatewayEmitStrings.ts","../../../Framework/Enums/Controls/mediaSelectorMode.ts","../../../Framework/Enums/Controls/mergeTemplateOwnership.ts","../../../Framework/Enums/Controls/modalAlertType.ts","../../../Framework/Enums/Controls/pickerDisplayStyle.ts","../../../Framework/Enums/Controls/requirementLevel.ts","../../../Framework/Enums/Controls/rockCacheabilityType.ts","../../../Framework/Enums/Controls/slidingDateRangeType.ts","../../../Framework/Enums/Controls/timeUnitType.ts","../../../Framework/Enums/Controls/universalItemValuePickerDisplayStyle.ts"],"sourcesContent":["// \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 type of the alert box to display. Ex: 'success' will appear green and as if something good happened. */\r\nexport const AlertType = {\r\n Default: \"default\",\r\n Success: \"success\",\r\n Info: \"info\",\r\n Danger: \"danger\",\r\n Warning: \"warning\",\r\n Primary: \"primary\",\r\n Validation: \"validation\"\r\n} as const;\r\n\r\n/** The type of the alert box to display. Ex: 'success' will appear green and as if something good happened. */\r\nexport type AlertType = typeof AlertType[keyof typeof AlertType];\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 * Options for button sizes.\r\n */\r\nexport const BtnSize = {\r\n Default: \"\",\r\n ExtraSmall: \"xs\",\r\n Small: \"sm\",\r\n Large: \"lg\"\r\n} as const;\r\n\r\n/** Options for button sizes. */\r\nexport type BtnSize = typeof BtnSize[keyof typeof BtnSize];\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 * Options for types of buttons.\r\n */\r\nexport const BtnType = {\r\n Default: \"default\",\r\n Primary: \"primary\",\r\n Danger: \"danger\",\r\n Warning: \"warning\",\r\n Success: \"success\",\r\n Info: \"info\",\r\n Link: \"link\",\r\n Authentication: \"authentication\",\r\n Action: \"action\",\r\n Tool: \"tool\",\r\n} as const;\r\n\r\n/** Options for types of buttons. */\r\nexport type BtnType = typeof BtnType[keyof typeof BtnType];\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\nexport const ControlLazyMode = {\r\n /**\r\n * Loading begins when the control is instantiated but does not delay\r\n * the page loading.\r\n */\r\n Lazy: \"lazy\",\r\n\r\n /**\r\n * Loading begins when the control is instantiated and the page loading\r\n * is delayed until the control has finished.\r\n */\r\n Eager: \"eager\",\r\n\r\n /**\r\n * Loading begins when the user interacts with the control for the\r\n * first time.\r\n */\r\n OnDemand: \"onDemand\"\r\n} as const;\r\n\r\nexport type ControlLazyMode = typeof ControlLazyMode[keyof typeof ControlLazyMode];\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/** Days of the week */\r\nexport const DayOfWeek = {\r\n /** Sunday */\r\n Sunday: 0,\r\n\r\n /** Monday */\r\n Monday: 1,\r\n\r\n /** Tuesday */\r\n Tuesday: 2,\r\n\r\n /** Wednesday */\r\n Wednesday: 3,\r\n\r\n /** Thursday */\r\n Thursday: 4,\r\n\r\n /** Friday */\r\n Friday: 5,\r\n\r\n /** Saturday */\r\n Saturday: 6\r\n} as const;\r\n\r\n/** Days of the week */\r\nexport const DayOfWeekDescription: Record = {\r\n 0: \"Sunday\",\r\n\r\n 1: \"Monday\",\r\n\r\n 2: \"Tuesday\",\r\n\r\n 3: \"Wednesday\",\r\n\r\n 4: \"Thursday\",\r\n\r\n 5: \"Friday\",\r\n\r\n 6: \"Saturday\"\r\n};\r\n\r\n/** Days of the week */\r\nexport type DayOfWeek = typeof DayOfWeek[keyof typeof DayOfWeek];\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/** The current mode the detail panel is displayed in. */\r\nexport const DetailPanelMode = {\r\n /** The panel is in view mode to show the current entity. */\r\n View: 0,\r\n\r\n /** The panel is in edit mode to edit existing entity. */\r\n Edit: 1,\r\n\r\n /** The panel is in add mode to add a new entity. */\r\n Add: 2\r\n} as const;\r\n\r\n/** The current mode the detail panel is displayed in. */\r\nexport const DetailPanelModeDescription: Record = {\r\n 0: \"View\",\r\n\r\n 1: \"Edit\",\r\n\r\n 2: \"Add\"\r\n};\r\n\r\n/** The current mode the detail panel is displayed in. */\r\nexport type DetailPanelMode = typeof DetailPanelMode[keyof typeof DetailPanelMode];\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 strings that can be emitted by gateway components. */\r\nexport const GatewayEmitStrings = {\r\n /** Indicates a successful submission, value is a string. */\r\n Success: \"success\",\r\n\r\n /** Indicates one or more validation errors, value is Record */\r\n Validation: \"validation\",\r\n\r\n /** A serious error occurred that prevents the gateway from functioning. */\r\n Error: \"error\"\r\n} as const;\r\n\r\n/** The strings that can be emitted by gateway components. */\r\nexport type GatewayEmitStrings = typeof GatewayEmitStrings[keyof typeof GatewayEmitStrings];\r\n\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/** Media Selector Mode */\r\nexport const MediaSelectorMode = {\r\n /** image */\r\n Image: 0,\r\n\r\n /** audio */\r\n Audio: 1\r\n} as const;\r\n\r\n/** Media Selector Mode */\r\nexport const MediaSelectorModeDescription: Record = {\r\n 0: \"Image\",\r\n\r\n 1: \"Audio\"\r\n};\r\n\r\n/** Media Selector Mode */\r\nexport type MediaSelectorMode = typeof MediaSelectorMode[keyof typeof MediaSelectorMode];\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 * Enum denoting which merge template to query for.\r\n * **NOTE**\r\n * This is copied from Rock.Model.MergeTemplateOwnerShip to make accessible to other\r\n * areas of the codebase. If you make changes here, also update the original if applicable.\r\n */\r\nexport const MergeTemplateOwnership = {\r\n /** Show only global merge templates */\r\n Global: 0,\r\n\r\n /** Only show personal merge templates */\r\n Personal: 1,\r\n\r\n /** Show both personal and global merge templates */\r\n PersonalAndGlobal: 2\r\n} as const;\r\n\r\n/**\r\n * Enum denoting which merge template to query for.\r\n * **NOTE**\r\n * This is copied from Rock.Model.MergeTemplateOwnerShip to make accessible to other\r\n * areas of the codebase. If you make changes here, also update the original if applicable.\r\n */\r\nexport const MergeTemplateOwnershipDescription: Record = {\r\n 0: \"Global\",\r\n\r\n 1: \"Personal\",\r\n\r\n 2: \"Personal And Global\"\r\n};\r\n\r\n/**\r\n * Enum denoting which merge template to query for.\r\n * **NOTE**\r\n * This is copied from Rock.Model.MergeTemplateOwnerShip to make accessible to other\r\n * areas of the codebase. If you make changes here, also update the original if applicable.\r\n */\r\nexport type MergeTemplateOwnership = typeof MergeTemplateOwnership[keyof typeof MergeTemplateOwnership];\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 type of the modal alert to display. Ex: 'Alert' will alert people to an issue. */\r\nexport const ModalAlertType = {\r\n Alert: \"Alert\",\r\n Information: \"Information\",\r\n Warning: \"Warning\",\r\n None: \"None\"\r\n} as const;\r\n\r\n/** The type of the modal alert to display. Ex: 'Alert' will alert people to an issue. */\r\nexport type ModalAlertType = typeof ModalAlertType[keyof typeof ModalAlertType];","// \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 style to use when displaying a picker component. */\r\nexport const PickerDisplayStyle = {\r\n /** The component will choose the best layout to use when displaying the items. */\r\n Auto: \"auto\",\r\n\r\n /** The component should display the items as a list (radio or checkbox) of items. */\r\n List: \"list\",\r\n\r\n /** The component should display in a compact form such as a drop down list. */\r\n Condensed: \"condensed\"\r\n} as const;\r\n\r\n/** The style to use when displaying a picker component. */\r\nexport type PickerDisplayStyle = typeof PickerDisplayStyle[keyof typeof PickerDisplayStyle];\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 * Requirement level of an input field. Based off Rock.Field.Types.DataEntryRequirementLevelSpecifier\r\n * for transfer to/from Obsidian controls.\r\n */\r\nexport const RequirementLevel = {\r\n /** No requirement level has been specified for this field. */\r\n Unspecified: 0,\r\n\r\n /** The field is available but not required. */\r\n Optional: 1,\r\n\r\n /** The field is available and required. */\r\n Required: 2,\r\n\r\n /** The field is not available. */\r\n Unavailable: 3\r\n} as const;\r\n\r\n/**\r\n * Requirement level of an input field. Based off Rock.Field.Types.DataEntryRequirementLevelSpecifier\r\n * for transfer to/from Obsidian controls.\r\n */\r\nexport const RequirementLevelDescription: Record = {\r\n 0: \"Unspecified\",\r\n\r\n 1: \"Optional\",\r\n\r\n 2: \"Required\",\r\n\r\n 3: \"Unavailable\"\r\n};\r\n\r\n/**\r\n * Requirement level of an input field. Based off Rock.Field.Types.DataEntryRequirementLevelSpecifier\r\n * for transfer to/from Obsidian controls.\r\n */\r\nexport type RequirementLevel = typeof RequirementLevel[keyof typeof RequirementLevel];\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/** Type representing the cache strategy for this item. */\r\nexport const RockCacheabilityType = {\r\n /** Represents the public Cache-Control header. */\r\n Public: 0,\r\n\r\n /** Represents the private Cache-Control header. */\r\n Private: 1,\r\n\r\n /** Represents the no-cache Cache-Control header. */\r\n NoCache: 2,\r\n\r\n /** Represents the no-store Cache-Control header. */\r\n NoStore: 3\r\n} as const;\r\n\r\n/** Type representing the cache strategy for this item. */\r\nexport const RockCacheabilityTypeDescription: Record = {\r\n 0: \"Public\",\r\n\r\n 1: \"Private\",\r\n\r\n 2: \"No-Cache\",\r\n\r\n 3: \"No-Store\"\r\n};\r\n\r\n/** Type representing the cache strategy for this item. */\r\nexport type RockCacheabilityType = typeof RockCacheabilityType[keyof typeof RockCacheabilityType];\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/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport const SlidingDateRangeType = {\r\n /** All */\r\n All: -1,\r\n\r\n /** The last X days,weeks,months, etc (inclusive of current day,week,month,...) but cuts off so it doesn't include future dates */\r\n Last: 0,\r\n\r\n /** The current day,week,month,year */\r\n Current: 1,\r\n\r\n /** The date range */\r\n DateRange: 2,\r\n\r\n /** The previous X days,weeks,months, etc (excludes current day,week,month,...) */\r\n Previous: 4,\r\n\r\n /** The next X days,weeks,months, etc (inclusive of current day,week,month,...), but cuts off so it doesn't include past dates */\r\n Next: 8,\r\n\r\n /** The upcoming X days,weeks,months, etc (excludes current day,week,month,...) */\r\n Upcoming: 16\r\n} as const;\r\n\r\n/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport const SlidingDateRangeTypeDescription: Record = {\r\n [-1]: \"All\",\r\n\r\n 0: \"Last\",\r\n\r\n 1: \"Current\",\r\n\r\n 2: \"Date Range\",\r\n\r\n 4: \"Previous\",\r\n\r\n 8: \"Next\",\r\n\r\n 16: \"Upcoming\"\r\n};\r\n\r\n/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport type SlidingDateRangeType = number;\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/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport const TimeUnitType = {\r\n /** The hour */\r\n Hour: 0,\r\n\r\n /** The day */\r\n Day: 1,\r\n\r\n /** The week */\r\n Week: 2,\r\n\r\n /** The month */\r\n Month: 3,\r\n\r\n /** The year */\r\n Year: 4\r\n} as const;\r\n\r\n/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport const TimeUnitTypeDescription: Record = {\r\n 0: \"Hour\",\r\n\r\n 1: \"Day\",\r\n\r\n 2: \"Week\",\r\n\r\n 3: \"Month\",\r\n\r\n 4: \"Year\"\r\n};\r\n\r\n/** Also defined in Rock.Web.UI.Controls.SlidingDateRangePicker, so if changed, please update there as well */\r\nexport type TimeUnitType = typeof TimeUnitType[keyof typeof TimeUnitType];\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/** The way to display the items for the item value pickers. */\r\nexport const UniversalItemValuePickerDisplayStyle = {\r\n /** Let the system decide the best way to display the list of options. */\r\n Auto: 0,\r\n\r\n /**\r\n * Display the list of options as a long list of items. For example,\r\n * as a list of checkboxes or radio buttons.\r\n */\r\n List: 1,\r\n\r\n /**\r\n * Display the list of options in a condensed format. For example,\r\n * as a drop down list.\r\n */\r\n Condensed: 2\r\n} as const;\r\n\r\n/** The way to display the items for the item value pickers. */\r\nexport const UniversalItemValuePickerDisplayStyleDescription: Record = {\r\n 0: \"Auto\",\r\n\r\n 1: \"List\",\r\n\r\n 2: \"Condensed\"\r\n};\r\n\r\n/** The way to display the items for the item value pickers. */\r\nexport type UniversalItemValuePickerDisplayStyle = typeof UniversalItemValuePickerDisplayStyle[keyof typeof UniversalItemValuePickerDisplayStyle];\r\n"],"names":["AlertType","Default","Success","Info","Danger","Warning","Primary","Validation","BtnSize","ExtraSmall","Small","Large","BtnType","Link","Authentication","Action","Tool","ControlLazyMode","Lazy","Eager","OnDemand","DayOfWeek","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","DayOfWeekDescription","DetailPanelMode","View","Edit","Add","DetailPanelModeDescription","GatewayEmitStrings","Error","MediaSelectorMode","Image","Audio","MediaSelectorModeDescription","MergeTemplateOwnership","Global","Personal","PersonalAndGlobal","MergeTemplateOwnershipDescription","ModalAlertType","Alert","Information","None","PickerDisplayStyle","Auto","List","Condensed","RequirementLevel","Unspecified","Optional","Required","Unavailable","RequirementLevelDescription","RockCacheabilityType","Public","Private","NoCache","NoStore","RockCacheabilityTypeDescription","SlidingDateRangeType","All","Last","Current","DateRange","Previous","Next","Upcoming","SlidingDateRangeTypeDescription","TimeUnitType","Hour","Day","Week","Month","Year","TimeUnitTypeDescription","UniversalItemValuePickerDisplayStyle","UniversalItemValuePickerDisplayStyleDescription"],"mappings":"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"}