@rockrms/obsidian-framework 17.5.2 → 18.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (480) hide show
  1. package/package.json +1 -1
  2. package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +17 -0
  3. package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +25 -0
  4. package/types/Controls/Grid/Columns/column.partial.d.ts +17 -0
  5. package/types/Controls/Grid/Columns/copyColumn.partial.d.ts +17 -0
  6. package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +36 -9
  7. package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +17 -0
  8. package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +17 -0
  9. package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +29 -0
  10. package/types/Controls/Grid/Columns/editColumn.partial.d.ts +17 -0
  11. package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +17 -0
  12. package/types/Controls/Grid/Columns/htmlColumn.partial.d.ts +17 -0
  13. package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +17 -0
  14. package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +17 -0
  15. package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +17 -0
  16. package/types/Controls/Grid/Columns/personColumn.partial.d.ts +17 -0
  17. package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +17 -0
  18. package/types/Controls/Grid/Columns/rockFieldColumn.partial.d.ts +17 -0
  19. package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +17 -0
  20. package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +80 -0
  21. package/types/Controls/Grid/Columns/textColumn.partial.d.ts +17 -0
  22. package/types/Controls/Grid/grid.partial.obs.d.ts +43 -1
  23. package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +8 -0
  24. package/types/Controls/Internal/AI/Skills/groupManagerSkill.obs.d.ts +32 -0
  25. package/types/Controls/Internal/AI/Skills/prayerSkill.obs.d.ts +32 -0
  26. package/types/Controls/Internal/AI/Skills/skillConfiguration.obs.d.ts +32 -0
  27. package/types/Controls/Internal/Automation/Events/launchWorkflow.obs.d.ts +40 -0
  28. package/types/Controls/Internal/Automation/Events/lavaEvent.obs.d.ts +40 -0
  29. package/types/Controls/Internal/Automation/Events/logMessage.obs.d.ts +40 -0
  30. package/types/Controls/Internal/Automation/Events/sendFallbackChatNotification.obs.d.ts +41 -0
  31. package/types/Controls/Internal/Automation/Triggers/ChatMessage/criteria.partial.obs.d.ts +37 -0
  32. package/types/Controls/Internal/Automation/Triggers/ChatMessage/editRule.partial.obs.d.ts +38 -0
  33. package/types/Controls/Internal/Automation/Triggers/EntityChange/editSimpleRule.partial.obs.d.ts +38 -0
  34. package/types/Controls/Internal/Automation/Triggers/EntityChange/simpleCriteria.partial.obs.d.ts +37 -0
  35. package/types/Controls/Internal/Automation/Triggers/chatMessage.obs.d.ts +32 -0
  36. package/types/Controls/Internal/Automation/Triggers/entityChange.obs.d.ts +32 -0
  37. package/types/Controls/Internal/Automation/automationEventHeader.obs.d.ts +54 -0
  38. package/types/Controls/Internal/CommunicationRecipientActivity/types.partial.d.ts +12 -0
  39. package/types/Controls/Internal/DevicePreview/utils.partial.d.ts +4 -0
  40. package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +9 -0
  41. package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +11 -18
  42. package/types/Controls/Internal/EmailEditor/properties/communicationTemplateProperty.partial.obs.d.ts +8 -0
  43. package/types/Controls/Internal/EmailEditor/propertyPanels/adaptiveMessageComponentPropertyPanel.partial.obs.d.ts +11 -1
  44. package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +11 -1
  45. package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +9 -0
  46. package/types/Controls/Internal/EmailEditor/propertyPanels/componentPropertyPanelBase.partial.obs.d.ts +9 -0
  47. package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +11 -1
  48. package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +10 -28
  49. package/types/Controls/Internal/EmailEditor/propertyPanels/imageComponentPropertyPanel.partial.obs.d.ts +11 -1
  50. package/types/Controls/Internal/EmailEditor/propertyPanels/rowComponentPropertyPanel.partial.obs.d.ts +11 -1
  51. package/types/Controls/Internal/EmailEditor/propertyPanels/rsvpComponentPropertyPanel.partial.obs.d.ts +11 -1
  52. package/types/Controls/Internal/EmailEditor/propertyPanels/sectionComponentPropertyPanel.partial.obs.d.ts +9 -0
  53. package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +9 -0
  54. package/types/Controls/Internal/EmailEditor/propertyPanels/titleComponentPropertyPanel.partial.obs.d.ts +11 -1
  55. package/types/Controls/Internal/EmailEditor/propertyPanels/videoComponentPropertyPanel.partial.obs.d.ts +11 -1
  56. package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +10 -19
  57. package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +11 -8
  58. package/types/Controls/Internal/LearningActivity/assessmentItemSection.obs.d.ts +5 -4
  59. package/types/Controls/Internal/LearningActivity/contentArticleItemNote.obs.d.ts +39 -0
  60. package/types/Controls/Internal/LearningActivity/contentArticleItemText.obs.d.ts +39 -0
  61. package/types/Controls/Internal/LearningActivity/contentArticleItemVideo.obs.d.ts +39 -0
  62. package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.obs.d.ts +53 -0
  63. package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.partial.d.ts +22 -0
  64. package/types/Controls/Internal/MobilePreview/mobileBackground.partial.obs.d.ts +2 -0
  65. package/types/Controls/Internal/MobilePreview/mobilePreview.partial.obs.d.ts +9 -0
  66. package/types/Controls/Internal/MobilePreview/types.partial.d.ts +6 -0
  67. package/types/Controls/Internal/SankeyDiagram/sankeyDiagram.obs.d.ts +9 -2
  68. package/types/Controls/Internal/communicationRecipientActivity.obs.d.ts +31 -0
  69. package/types/Controls/Internal/contentSectionNav.obs.d.ts +14 -0
  70. package/types/Controls/Internal/devicePreview.obs.d.ts +31 -0
  71. package/types/Controls/Internal/emailPreview.obs.d.ts +23 -0
  72. package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +0 -8
  73. package/types/Controls/Internal/pushNotificationMobilePreview.obs.d.ts +31 -0
  74. package/types/Controls/Internal/smsMobilePreview.obs.d.ts +40 -0
  75. package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +8 -0
  76. package/types/Controls/addressControl.obs.d.ts +2 -2
  77. package/types/Controls/barChart.obs.d.ts +464 -0
  78. package/types/Controls/binaryFilePicker.obs.d.ts +0 -6
  79. package/types/Controls/blockTemplatePicker.obs.d.ts +4 -4
  80. package/types/Controls/buttonDropDownList.obs.d.ts +10 -10
  81. package/types/Controls/campusContextPicker.obs.d.ts +76 -0
  82. package/types/Controls/campusPicker.obs.d.ts +10 -2
  83. package/types/Controls/chart.obs.d.ts +43 -7
  84. package/types/Controls/codeEditor.obs.d.ts +12 -3
  85. package/types/Controls/componentPicker.obs.d.ts +9 -0
  86. package/types/Controls/contentChannelItemPicker.obs.d.ts +2 -8
  87. package/types/Controls/contentDropDownPicker.obs.d.ts +19 -6
  88. package/types/Controls/contentSection.obs.d.ts +115 -0
  89. package/types/Controls/contentSectionContainer.obs.d.ts +47 -0
  90. package/types/Controls/contentStack.obs.d.ts +63 -0
  91. package/types/Controls/contextSlicer.obs.d.ts +66 -0
  92. package/types/Controls/copyButton.obs.d.ts +22 -2
  93. package/types/Controls/datePicker.obs.d.ts +2 -0
  94. package/types/Controls/displayCard.obs.d.ts +127 -0
  95. package/types/Controls/displayCardAddButton.obs.d.ts +24 -0
  96. package/types/Controls/displayCardContainer.obs.d.ts +23 -0
  97. package/types/Controls/dropDownContent.obs.d.ts +9 -0
  98. package/types/Controls/dynamicComponent.obs.d.ts +70 -0
  99. package/types/Controls/enhancedProgressBar.obs.d.ts +117 -0
  100. package/types/Controls/entityTypePicker.obs.d.ts +4 -38
  101. package/types/Controls/ethnicityPicker.obs.d.ts +6 -8
  102. package/types/Controls/eventCalendarPicker.obs.d.ts +8 -0
  103. package/types/Controls/expanderPanel.obs.d.ts +1 -1
  104. package/types/Controls/fieldFilterContainer.obs.d.ts +7 -0
  105. package/types/Controls/fieldFilterRuleRow.obs.d.ts +48 -0
  106. package/types/Controls/fieldTypePicker.obs.d.ts +16 -0
  107. package/types/Controls/fileUploader.obs.d.ts +27 -0
  108. package/types/Controls/financialStatementTemplatePicker.obs.d.ts +16 -0
  109. package/types/Controls/firstNameTextBox.obs.d.ts +0 -2
  110. package/types/Controls/geoPicker.obs.d.ts +6 -2
  111. package/types/Controls/gradePicker.obs.d.ts +0 -6
  112. package/types/Controls/groupAndRolePicker.obs.d.ts +2 -10
  113. package/types/Controls/groupRolePicker.obs.d.ts +2 -2
  114. package/types/Controls/groupTypeGroupPicker.obs.d.ts +0 -6
  115. package/types/Controls/groupTypePicker.obs.d.ts +6 -4
  116. package/types/Controls/hint.obs.d.ts +16 -0
  117. package/types/Controls/iconPicker.obs.d.ts +91 -0
  118. package/types/Controls/imageEditor.obs.d.ts +1 -1
  119. package/types/Controls/inlineCheckBox.obs.d.ts +11 -1
  120. package/types/Controls/interactionChannelPicker.obs.d.ts +8 -0
  121. package/types/Controls/kpi.obs.d.ts +12 -5
  122. package/types/Controls/lavaCommandPicker.obs.d.ts +20 -2
  123. package/types/Controls/learningClassActivityPicker.obs.d.ts +147 -0
  124. package/types/Controls/learningClassPicker.obs.d.ts +147 -0
  125. package/types/Controls/lineChart.obs.d.ts +378 -0
  126. package/types/Controls/locationAddressPicker.obs.d.ts +2 -6
  127. package/types/Controls/mediaElementPicker.obs.d.ts +4 -4
  128. package/types/Controls/modal.obs.d.ts +33 -1
  129. package/types/Controls/numberBox.obs.d.ts +11 -0
  130. package/types/Controls/panel.obs.d.ts +94 -6
  131. package/types/Controls/phoneNumberBox.obs.d.ts +23 -6
  132. package/types/Controls/pieChart.obs.d.ts +364 -0
  133. package/types/Controls/progressBar.obs.d.ts +9 -0
  134. package/types/Controls/racePicker.obs.d.ts +8 -8
  135. package/types/Controls/registrationInstanceBasePicker.obs.d.ts +4 -10
  136. package/types/Controls/registrationInstancePicker.obs.d.ts +21 -0
  137. package/types/Controls/reminderTypePicker.obs.d.ts +8 -6
  138. package/types/Controls/remoteAuthsPicker.obs.d.ts +16 -0
  139. package/types/Controls/rockAttributeFilter.obs.d.ts +3 -3
  140. package/types/Controls/rockFormField.obs.d.ts +10 -10
  141. package/types/Controls/scheduleBuilder.obs.d.ts +11 -0
  142. package/types/Controls/slidingDateRangePicker.obs.d.ts +12 -3
  143. package/types/Controls/stepProgramPicker.obs.d.ts +8 -0
  144. package/types/Controls/stepProgramStepTypePicker.obs.d.ts +21 -0
  145. package/types/Controls/stepStatusPicker.obs.d.ts +0 -6
  146. package/types/Controls/streakTypePicker.obs.d.ts +16 -0
  147. package/types/Controls/tabbedContent.obs.d.ts +1 -1
  148. package/types/Controls/textBox.obs.d.ts +9 -0
  149. package/types/Controls/wordCloud.obs.d.ts +1 -1
  150. package/types/Controls/workflowBasePicker.obs.d.ts +0 -6
  151. package/types/Core/Controls/chart.d.ts +215 -0
  152. package/types/Core/Controls/contentSection.d.ts +62 -0
  153. package/types/Core/Core/Automation/component.d.ts +15 -0
  154. package/types/Core/Reporting/comparisonType.d.ts +1 -1
  155. package/types/Core/Utilities/contextEntity.d.ts +54 -0
  156. package/types/{Controls/Grid/virtualScroller.partial.d.ts → Core/Utilities/virtualScroll.d.ts} +48 -1
  157. package/types/Directives/dragDrop.d.ts +1 -1
  158. package/types/Enums/AI/Agent/agentType.d.ts +14 -0
  159. package/types/Enums/AI/Agent/audienceType.d.ts +23 -0
  160. package/types/Enums/AI/Agent/authorRole.d.ts +25 -0
  161. package/types/Enums/AI/Agent/modelServiceRole.d.ts +22 -0
  162. package/types/Enums/AI/Agent/parameterSchemaDataType.d.ts +26 -0
  163. package/types/Enums/AI/Agent/toolStatus.d.ts +13 -0
  164. package/types/Enums/AI/Agent/toolType.d.ts +13 -0
  165. package/types/Enums/Blocks/Communication/CommunicationDetail/pushOpenAction.d.ts +15 -0
  166. package/types/Enums/Blocks/Communication/CommunicationFlowDetail/pushOpenAction.d.ts +15 -0
  167. package/types/Enums/Blocks/Communication/EmailPreferenceEntry/communicationChannelType.d.ts +11 -0
  168. package/types/Enums/CheckIn/adultsOrChildrenSelectionMode.d.ts +27 -0
  169. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/browserFamily.d.ts +24 -0
  170. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/deviceType.d.ts +13 -0
  171. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/geolocationLocationComponent.d.ts +14 -0
  172. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/previousActivityType.d.ts +11 -0
  173. package/types/Enums/Cms/blockRole.d.ts +51 -0
  174. package/types/Enums/Cms/lavaEndpointHttpMethod.d.ts +15 -0
  175. package/types/Enums/Cms/lavaEndpointSecurityMode.d.ts +15 -0
  176. package/types/Enums/Communication/Chat/chatMessageEventType.d.ts +11 -0
  177. package/types/Enums/Communication/Chat/chatViewStyle.d.ts +20 -0
  178. package/types/Enums/Communication/communicationFlowInstanceRecipientInactiveReason.d.ts +23 -0
  179. package/types/Enums/Communication/communicationFlowInstanceRecipientStatus.d.ts +11 -0
  180. package/types/Enums/Communication/communicationFlowInstanceRecipientUnsubscribeScope.d.ts +11 -0
  181. package/types/Enums/Communication/communicationFlowTriggerType.d.ts +13 -0
  182. package/types/Enums/Communication/communicationInteractionOperation.d.ts +11 -0
  183. package/types/Enums/Communication/communicationRecipientActivity.d.ts +25 -0
  184. package/types/Enums/Communication/communicationTemplateUsageType.d.ts +9 -0
  185. package/types/Enums/Communication/conversionGoalType.d.ts +19 -0
  186. package/types/Enums/Communication/exitConditionType.d.ts +15 -0
  187. package/types/Enums/Communication/inferredCommunicationStatus.d.ts +24 -0
  188. package/types/Enums/Communication/unsubscribeLevel.d.ts +2 -2
  189. package/types/Enums/Controls/hintType.d.ts +8 -0
  190. package/types/Enums/Core/Automation/Triggers/chatMessageCriteriaRuleType.d.ts +15 -0
  191. package/types/Enums/Core/Automation/Triggers/entityChangeModificationType.d.ts +13 -0
  192. package/types/Enums/Core/Automation/Triggers/entityChangeSimpleChangeType.d.ts +40 -0
  193. package/types/Enums/Engagement/completionFlow.d.ts +13 -0
  194. package/types/Enums/Engagement/engagementType.d.ts +13 -0
  195. package/types/Enums/Engagement/stepChartMeasure.d.ts +23 -0
  196. package/types/Enums/Engagement/stepProgramView.d.ts +17 -0
  197. package/types/Enums/Geography/travelMode.d.ts +13 -0
  198. package/types/Enums/Group/placementMode.d.ts +15 -0
  199. package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -1
  200. package/types/FieldTypes/badgesField.partial.d.ts +3 -0
  201. package/types/FieldTypes/badgesFieldComponents.d.ts +30 -0
  202. package/types/FieldTypes/binaryFileField.partial.d.ts +2 -1
  203. package/types/FieldTypes/binaryFileFieldComponents.d.ts +19 -9
  204. package/types/FieldTypes/blockTemplateFieldComponents.d.ts +1 -1
  205. package/types/FieldTypes/colorSelectorComponents.d.ts +17 -3
  206. package/types/FieldTypes/communicationFlowField.partial.d.ts +13 -0
  207. package/types/FieldTypes/communicationFlowFieldComponents.d.ts +61 -0
  208. package/types/FieldTypes/connectionActivityTypeFieldComponents.d.ts +2 -2
  209. package/types/FieldTypes/contentChannelItemFieldComponents.d.ts +1 -1
  210. package/types/FieldTypes/groupTypeGroupField.partial.d.ts +1 -1
  211. package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
  212. package/types/FieldTypes/urlLinkFieldComponents.d.ts +10 -11
  213. package/types/FieldTypes/utils.d.ts +1 -1
  214. package/types/SystemGuids/blockType.d.ts +6 -0
  215. package/types/SystemGuids/category.d.ts +4 -0
  216. package/types/SystemGuids/definedType.d.ts +8 -0
  217. package/types/SystemGuids/definedValue.d.ts +58 -0
  218. package/types/SystemGuids/entityType.d.ts +38 -2
  219. package/types/SystemGuids/fieldType.d.ts +4 -0
  220. package/types/SystemGuids/group.d.ts +2 -0
  221. package/types/SystemGuids/page.d.ts +13 -0
  222. package/types/SystemGuids/pageRoute.d.ts +2 -0
  223. package/types/SystemGuids/serviceJob.d.ts +29 -1
  224. package/types/SystemGuids/stepProgram.d.ts +5 -0
  225. package/types/SystemGuids/stepStatus.d.ts +7 -0
  226. package/types/SystemGuids/stepType.d.ts +11 -0
  227. package/types/Templates/detailBlock.d.ts +21 -0
  228. package/types/Templates/rockPage.d.ts +7 -3
  229. package/types/Types/Controls/dropDownMenu.d.ts +1 -1
  230. package/types/Types/Controls/grid.d.ts +45 -0
  231. package/types/Types/Utility/block.d.ts +3 -0
  232. package/types/Types/Utility/browserBus.d.ts +11 -0
  233. package/types/Types/Utility/http.d.ts +3 -0
  234. package/types/Utility/block.d.ts +90 -10
  235. package/types/Utility/browserBus.d.ts +4 -0
  236. package/types/Utility/chartUtils.d.ts +139 -0
  237. package/types/Utility/component.d.ts +28 -14
  238. package/types/Utility/cssUtils.d.ts +13 -0
  239. package/types/Utility/http.d.ts +11 -0
  240. package/types/Utility/jsonUtils.d.ts +8 -0
  241. package/types/Utility/linq.d.ts +340 -69
  242. package/types/Utility/objectUtils.d.ts +20 -0
  243. package/types/Utility/rockDateTime.d.ts +19 -1
  244. package/types/Utility/rockTimeSpan.d.ts +30 -0
  245. package/types/Utility/stringUtils.d.ts +14 -0
  246. package/types/Utility/tooltip.d.ts +14 -1
  247. package/types/Utility/treeItemProviders.d.ts +1 -1
  248. package/types/Utility/util.d.ts +4 -0
  249. package/types/ViewModels/Blocks/AI/AIAgentDetail/agentSkillBag.d.ts +51 -0
  250. package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentBag.d.ts +108 -0
  251. package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentDetailOptionsBag.d.ts +36 -0
  252. package/types/ViewModels/Blocks/AI/AIAgentDetail/editSkillResponseBag.d.ts +41 -0
  253. package/types/ViewModels/Blocks/AI/AIAgentDetail/getComponentDefinitionResponseBag.d.ts +44 -0
  254. package/types/ViewModels/Blocks/AI/AIAgentList/aiAgentListOptionsBag.d.ts +26 -0
  255. package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderBag.d.ts +55 -0
  256. package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderDetailOptionsBag.d.ts +26 -0
  257. package/types/ViewModels/Blocks/AI/AIProviderList/aiProviderListOptionsBag.d.ts +26 -0
  258. package/types/ViewModels/Blocks/AI/AISettings/aiSettingsBag.d.ts +28 -0
  259. package/types/ViewModels/Blocks/AI/AISettings/aiSettingsOptionsBag.d.ts +33 -0
  260. package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillBag.d.ts +63 -0
  261. package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillDetailOptionsBag.d.ts +26 -0
  262. package/types/ViewModels/Blocks/AI/AISkillList/aiSkillListOptionsBag.d.ts +26 -0
  263. package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolBag.d.ts +88 -0
  264. package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolListOptionsBag.d.ts +30 -0
  265. package/types/ViewModels/Blocks/AI/AISkillToolList/parameterSchemaBag.d.ts +57 -0
  266. package/types/ViewModels/Blocks/Administration/ExternalApplicationList/externalApplicationListOptionsBag.d.ts +26 -0
  267. package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesBag.d.ts +4 -0
  268. package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesOptionsBag.d.ts +3 -0
  269. package/types/ViewModels/Blocks/Administration/SystemConfiguration/generalConfigurationBag.d.ts +12 -0
  270. package/types/ViewModels/Blocks/Administration/SystemConfiguration/systemConfigurationInitializationBox.d.ts +3 -0
  271. package/types/ViewModels/Blocks/BulkImport/bulkImportToolBox.d.ts +33 -0
  272. package/types/ViewModels/Blocks/BulkImport/bulkImportToolOptionsBag.d.ts +28 -0
  273. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/addIndividualOptionsBag.d.ts +40 -0
  274. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/editFamilyResponseBag.d.ts +31 -0
  275. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +7 -0
  276. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInRegistrationSettingsBag.d.ts +3 -0
  277. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +4 -0
  278. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +7 -0
  279. package/types/ViewModels/Blocks/Cms/AssetManager/assetManagerOptionsBag.d.ts +2 -2
  280. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormBag.d.ts +52 -0
  281. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormRequestBag.d.ts +33 -0
  282. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormResponseBag.d.ts +28 -0
  283. package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationBag.d.ts +50 -0
  284. package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationDetailOptionsBag.d.ts +25 -0
  285. package/types/ViewModels/Blocks/Cms/LavaApplicationList/lavaApplicationListOptionsBag.d.ts +26 -0
  286. package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointBag.d.ts +75 -0
  287. package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointDetailOptionsBag.d.ts +32 -0
  288. package/types/ViewModels/Blocks/Cms/LavaEndpointList/lavaEndpointListOptionsBag.d.ts +31 -0
  289. package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsBag.d.ts +0 -6
  290. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +3 -0
  291. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +6 -3
  292. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +3 -0
  293. package/types/ViewModels/Blocks/Cms/PageShortLinkList/pageShortLinkListOptionsBag.d.ts +3 -0
  294. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/additionalFilterConfigurationBag.d.ts +64 -0
  295. package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts → Cms/RequestFilterDetail/browserRequestFilterBag.d.ts} +11 -14
  296. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/cookieRequestFilterBag.d.ts +39 -0
  297. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/deviceTypeRequestFilterBag.d.ts +28 -0
  298. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/environmentRequestFilterBag.d.ts +36 -0
  299. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/geolocationRequestFilterBag.d.ts +39 -0
  300. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/ipAddressRequestFilterBag.d.ts +39 -0
  301. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/previousActivityRequestFilterBag.d.ts +28 -0
  302. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/queryStringRequestFilterBag.d.ts +39 -0
  303. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterBag.d.ts +56 -0
  304. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterDetailOptionsBag.d.ts +30 -0
  305. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/timePickerValueBag.d.ts +31 -0
  306. package/types/ViewModels/Blocks/Cms/RequestFilterList/requestFilterListOptionsBag.d.ts +26 -0
  307. package/types/ViewModels/Blocks/Cms/ThemeDetail/themeFieldBag.d.ts +3 -3
  308. package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatReactionBag.d.ts +40 -0
  309. package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatViewConfigurationBag.d.ts +9 -0
  310. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActionResponseBag.d.ts +39 -0
  311. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActivityFlowBag.d.ts +34 -0
  312. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsRequestBag.d.ts +30 -0
  313. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsResponseBag.d.ts +67 -0
  314. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDeliveryBreakdownBag.d.ts +60 -0
  315. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailBag.d.ts +59 -0
  316. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailInitializationBox.d.ts +61 -0
  317. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailPermissionsBag.d.ts +46 -0
  318. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationKpisBag.d.ts +61 -0
  319. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationLinkAnalyticsBag.d.ts +46 -0
  320. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationMessagePreviewBag.d.ts +91 -0
  321. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridDataBag.d.ts +37 -0
  322. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridOptionsBag.d.ts +33 -0
  323. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridSettingsBag.d.ts +33 -0
  324. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRedirectBag.d.ts +33 -0
  325. package/types/ViewModels/Blocks/Communication/CommunicationDetail/createPersonalTemplateRequestBag.d.ts +36 -0
  326. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationBag.d.ts +2 -2
  327. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/{communicationEntryWizardGetEmailPreviewHtmlBag.d.ts → communicationEntryWizardGetPreviewBag.d.ts} +11 -4
  328. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardInitializationBox.d.ts +3 -0
  329. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/checkShortLinkTokenBag.d.ts +31 -0
  330. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowBag.d.ts +84 -0
  331. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowCommunicationBag.d.ts +47 -0
  332. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCommunicationTemplateBag.d.ts +97 -0
  333. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCompletedFormSettingsBag.d.ts +30 -0
  334. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailConversionGoalSettingsBag.d.ts +50 -0
  335. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailEnteredDataViewSettingsBag.d.ts +30 -0
  336. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailInitializationBox.d.ts +68 -0
  337. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupSettingsBag.d.ts +30 -0
  338. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupTypeSettingsBag.d.ts +30 -0
  339. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailOptionsBag.d.ts +26 -0
  340. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailRegisteredSettingsBag.d.ts +30 -0
  341. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailTookStepSettingsBag.d.ts +33 -0
  342. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowCommunicationBag.d.ts +36 -0
  343. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceBag.d.ts +34 -0
  344. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceCommunicationBag.d.ts +36 -0
  345. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/initializationBox.d.ts +43 -0
  346. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/recipientMetricsBag.d.ts +51 -0
  347. package/types/ViewModels/Blocks/Communication/CommunicationFlowList/communicationFlowListOptionsBag.d.ts +26 -0
  348. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/communicationFlowInstanceBag.d.ts +37 -0
  349. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/completedFormSettingsBag.d.ts +30 -0
  350. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/conversionGoalSettingsBag.d.ts +50 -0
  351. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/enteredDataViewSettingsBag.d.ts +30 -0
  352. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/gridRowBag.d.ts +60 -0
  353. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/initializationBox.d.ts +46 -0
  354. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupSettingsBag.d.ts +30 -0
  355. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupTypeSettingsBag.d.ts +30 -0
  356. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/messageBag.d.ts +70 -0
  357. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/performanceBag.d.ts +64 -0
  358. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/registeredSettingsBag.d.ts +30 -0
  359. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/tookStepSettingsBag.d.ts +30 -0
  360. package/types/ViewModels/Blocks/Communication/CommunicationList/communicationListOptionsBag.d.ts +14 -8
  361. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockBox.d.ts +48 -0
  362. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockDataBag.d.ts +37 -0
  363. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportChartDataBag.d.ts +38 -0
  364. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportFiltersBag.d.ts +42 -0
  365. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/communicationChannelBag.d.ts +46 -0
  366. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordRequestBag.d.ts +36 -0
  367. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordResponseBag.d.ts +34 -0
  368. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +93 -37
  369. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageChannelSubscriptionRequestBag.d.ts +36 -0
  370. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageEmailSubscriptionRequestBag.d.ts +33 -0
  371. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateCommunicationPreferenceRequestBag.d.ts +40 -0
  372. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateContactInfoRequestBag.d.ts +28 -0
  373. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateEmailPreferenceRequestBag.d.ts +30 -0
  374. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +9 -0
  375. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationEventBag.d.ts +74 -0
  376. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerBag.d.ts +90 -0
  377. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerDetailOptionsBag.d.ts +39 -0
  378. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/getComponentDefinitionResponseBag.d.ts +39 -0
  379. package/types/ViewModels/Blocks/Core/AutomationTriggerList/automationTriggerListOptionsBag.d.ts +26 -0
  380. package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +3 -0
  381. package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +2 -0
  382. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +2 -1
  383. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobOptionsBag.d.ts +36 -0
  384. package/types/ViewModels/Blocks/Crm/PersonDuplicateDetail/personDuplicateDetailOptionsBag.d.ts +40 -0
  385. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +3 -0
  386. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/chartDataBag.d.ts +42 -0
  387. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/seriesBag.d.ts +36 -0
  388. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +25 -3
  389. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +6 -0
  390. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +3 -0
  391. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepProgramBag.d.ts +33 -0
  392. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepStatusBag.d.ts +32 -0
  393. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeBag.d.ts +34 -8
  394. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeDetailOptionsBag.d.ts +12 -1
  395. package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts → Engagement/StepTypeDetail/stepTypeDetailsBag.d.ts} +4 -7
  396. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeTransferBag.d.ts +36 -0
  397. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -0
  398. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -0
  399. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -0
  400. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +3 -0
  401. package/types/ViewModels/Blocks/Event/RegistrationInstanceList/registrationInstanceListOptionsBag.d.ts +6 -6
  402. package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupBag.d.ts +64 -0
  403. package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupMembersBag.d.ts +42 -0
  404. package/types/ViewModels/Blocks/Group/GroupPlacement/attributeDataBag.d.ts +33 -0
  405. package/types/ViewModels/Blocks/Group/GroupPlacement/attributeFiltersBag.d.ts +40 -0
  406. package/types/ViewModels/Blocks/Group/GroupPlacement/destinationGroupTypeRoleBag.d.ts +37 -0
  407. package/types/ViewModels/Blocks/Group/GroupPlacement/detachGroupBag.d.ts +40 -0
  408. package/types/ViewModels/Blocks/Group/GroupPlacement/groupMemberBag.d.ts +52 -0
  409. package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementInitializationBox.d.ts +75 -0
  410. package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementKeysBag.d.ts +57 -0
  411. package/types/ViewModels/Blocks/Group/GroupPlacement/personBag.d.ts +62 -0
  412. package/types/ViewModels/Blocks/Group/GroupPlacement/placementBag.d.ts +29 -0
  413. package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingOptionsBag.d.ts +42 -0
  414. package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingsBag.d.ts +66 -0
  415. package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupBag.d.ts +65 -0
  416. package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupTypeBag.d.ts +35 -0
  417. package/types/ViewModels/Blocks/Group/GroupPlacement/placementPeopleBag.d.ts +34 -0
  418. package/types/ViewModels/Blocks/Group/GroupPlacement/realTimeConnectionKeysBag.d.ts +39 -0
  419. package/types/ViewModels/Blocks/Group/GroupPlacement/registrantBag.d.ts +49 -0
  420. package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityAttributesBag.d.ts +33 -0
  421. package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityKeysBag.d.ts +45 -0
  422. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +3 -0
  423. package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityParticipantBag.d.ts +3 -0
  424. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassFacilitatorBag.d.ts +3 -0
  425. package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramBag.d.ts +3 -0
  426. package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceBox.d.ts +7 -0
  427. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +3 -0
  428. package/types/ViewModels/Blocks/Reporting/Insights/insightsChartDataBag.d.ts +36 -0
  429. package/types/ViewModels/Blocks/Reporting/Insights/insightsInitializationBox.d.ts +46 -0
  430. package/types/ViewModels/Blocks/Reporting/Insights/insightsOptionsBag.d.ts +58 -0
  431. package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterBox.d.ts +30 -0
  432. package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterOptionsBag.d.ts +31 -0
  433. package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterBox.d.ts +30 -0
  434. package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterOptionsBag.d.ts +31 -0
  435. package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeBag.d.ts +48 -0
  436. package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeDetailOptionsBag.d.ts +26 -0
  437. package/types/ViewModels/Blocks/Workflow/FormBuilder/formBuilderDetailLinkToFormBag.d.ts +36 -0
  438. package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +6 -0
  439. package/types/ViewModels/CheckIn/attendeeBag.d.ts +4 -0
  440. package/types/ViewModels/CheckIn/kioskBag.d.ts +7 -0
  441. package/types/ViewModels/CheckIn/proximityAttendanceNotificationBag.d.ts +34 -0
  442. package/types/ViewModels/Cms/contextEntityItemBag.d.ts +39 -0
  443. package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +7 -0
  444. package/types/ViewModels/Controls/dynamicComponentDefinitionBag.d.ts +48 -0
  445. package/types/ViewModels/Controls/iconLibraryBag.d.ts +43 -0
  446. package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaBag.d.ts +33 -0
  447. package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaRuleBag.d.ts +43 -0
  448. package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaBag.d.ts +42 -0
  449. package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaRuleBag.d.ts +58 -0
  450. package/types/ViewModels/Core/Automation/automationValueDefinitionBag.d.ts +48 -0
  451. package/types/ViewModels/Entities/prayerRequestBag.d.ts +117 -0
  452. package/types/ViewModels/Entities/scheduleBag.d.ts +103 -0
  453. package/types/ViewModels/Entities/scheduleCategoryExclusionBag.d.ts +60 -0
  454. package/types/ViewModels/Event/RegistrationEntry/registrationRegistrantUpdatedMessageBag.d.ts +59 -0
  455. package/types/ViewModels/Group/GroupMember/groupMemberUpdatedMessageBag.d.ts +61 -0
  456. package/types/ViewModels/Reporting/BarChart/barSeriesBag.d.ts +43 -0
  457. package/types/ViewModels/Reporting/LineChart/lineSeriesBag.d.ts +43 -0
  458. package/types/ViewModels/Reporting/PieChart/pieSeriesBag.d.ts +34 -0
  459. package/types/ViewModels/Reporting/chartBag.d.ts +37 -0
  460. package/types/ViewModels/Reporting/chartOptionsBag.d.ts +26 -0
  461. package/types/ViewModels/Rest/Controls/communicationRecipientActivityBag.d.ts +39 -0
  462. package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityOptionsBag.d.ts +31 -0
  463. package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityResultsBag.d.ts +60 -0
  464. package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +3 -0
  465. package/types/ViewModels/Rest/Controls/dataFilterFormatSelectionOptionsBag.d.ts +47 -0
  466. package/types/ViewModels/Rest/Controls/formattedFieldSelectGetSortByPropertiesOptionsBag.d.ts +28 -0
  467. package/types/ViewModels/Rest/Controls/hasCompletedCourseSelectGetCoursesOptionsBag.d.ts +30 -0
  468. package/types/ViewModels/Rest/Controls/iconPickerGetIconLibrariesOptionsBag.d.ts +34 -0
  469. package/types/ViewModels/Rest/Controls/inGroupFilterGetGroupRolesForGroupsOptionsBag.d.ts +54 -0
  470. package/types/ViewModels/Rest/Controls/inGroupGroupTypeSelectGetRolesOptionsBag.d.ts +30 -0
  471. package/types/ViewModels/Rest/Controls/interactionCountSelectGetComponentsOptionsBag.d.ts +30 -0
  472. package/types/ViewModels/Rest/Controls/interactionDateSelectGetComponentsOptionsBag.d.ts +30 -0
  473. package/types/ViewModels/Rest/Controls/learningClassActivityPickerGetLearningClassActivitiesOptionsBag.d.ts +36 -0
  474. package/types/ViewModels/Rest/Controls/learningClassPickerGetLearningClassesOptionsBag.d.ts +36 -0
  475. package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +9 -0
  476. package/types/ViewModels/Rest/Controls/memberListSelectGetGroupRolesOptionsBag.d.ts +30 -0
  477. package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +7 -0
  478. package/types/ViewModels/Rest/Utilities/updateContextEntityOptionsBag.d.ts +39 -0
  479. package/types/Core/Reporting/filterExpressionType.d.ts +0 -28
  480. package/types/Core/Reporting/filterMode.d.ts +0 -7
@@ -0,0 +1,364 @@
1
+ import { PropType } from "vue";
2
+ import { LabelDateFormat, LegendAlign, LegendPosition, LineStyle, PieSeries, TooltipCallback } from "@Obsidian/Core/Controls/chart";
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * The category axis label.
6
+ */
7
+ categoryLabel: {
8
+ type: PropType<string | undefined>;
9
+ };
10
+ /**
11
+ * The maximum number of ticks to show on the category axis.
12
+ */
13
+ categoryMaxTickCount: {
14
+ type: PropType<number | undefined>;
15
+ };
16
+ /**
17
+ * Whether to show the category axis grid lines. Hidden by default.
18
+ */
19
+ categoryShowGridLines: {
20
+ type: PropType<boolean | undefined>;
21
+ };
22
+ /**
23
+ * The CSS style string to set the height of the pie chart component.
24
+ * - Accepts any valid CSS height value (e.g., "400px", "50vh") or undefined.
25
+ * - Value defaults to "100%" if undefined.
26
+ */
27
+ height: {
28
+ type: PropType<string | undefined>;
29
+ default: string;
30
+ };
31
+ /**
32
+ * Whether the legend is hidden.
33
+ */
34
+ hideLegend: {
35
+ type: PropType<boolean | undefined>;
36
+ };
37
+ /**
38
+ * The format to use for the date labels.
39
+ *
40
+ * When set, `labels` is treated as an array of ISO date strings.
41
+ */
42
+ labelDateFormat: {
43
+ type: PropType<LabelDateFormat | undefined>;
44
+ };
45
+ /**
46
+ * When supplying date strings, they MUST be in ISO format and you MUST set `labelDateFormat`.
47
+ */
48
+ labels: {
49
+ type: PropType<string[]>;
50
+ required: true;
51
+ };
52
+ /**
53
+ * The alignment of the legend in the chart.
54
+ */
55
+ legendAlign: {
56
+ type: PropType<LegendAlign | null | undefined>;
57
+ };
58
+ /**
59
+ * The position of the legend in the chart.
60
+ */
61
+ legendPosition: {
62
+ type: PropType<LegendPosition | undefined>;
63
+ };
64
+ /**
65
+ * Whether the chart has linear connections between data points.
66
+ *
67
+ * The per series property, `props.data[n].isLinear`, overrides this setting.
68
+ */
69
+ linear: {
70
+ type: PropType<boolean | undefined>;
71
+ };
72
+ /**
73
+ * The line style to use for the chart.
74
+ *
75
+ * The per series property, `props.data[n].lineStyle`, overrides this setting.
76
+ */
77
+ lineStyle: {
78
+ type: PropType<LineStyle | undefined>;
79
+ };
80
+ /**
81
+ * The series data to display in the chart.
82
+ */
83
+ series: {
84
+ type: PropType<PieSeries[]>;
85
+ required: true;
86
+ };
87
+ /**
88
+ * Whether the chart has stacked lines.
89
+ */
90
+ stack: {
91
+ type: PropType<boolean | undefined>;
92
+ };
93
+ /**
94
+ * The title of the chart.
95
+ */
96
+ title: {
97
+ type: PropType<string | undefined>;
98
+ };
99
+ /**
100
+ * The tooltip formatter function.
101
+ */
102
+ tooltip: {
103
+ type: PropType<TooltipCallback | undefined>;
104
+ };
105
+ /**
106
+ * The tooltip title formatter function.
107
+ */
108
+ tooltipTitle: {
109
+ type: PropType<TooltipCallback | undefined>;
110
+ };
111
+ /**
112
+ * The type of data represented in the chart.
113
+ *
114
+ * For "percent", the data MUST be in decimal form (e.g., 0.1 for 10%).
115
+ */
116
+ type: {
117
+ type: PropType<"number" | "percent">;
118
+ default: string;
119
+ };
120
+ /**
121
+ * Whether the chart has unfilled areas.
122
+ *
123
+ * The per series property, `props.data[n].isUnfilled`, overrides this setting.
124
+ */
125
+ unfilled: {
126
+ type: PropType<boolean | undefined>;
127
+ };
128
+ /**
129
+ * Whether to hide the value axis grid lines. Shown by default.
130
+ */
131
+ valueHideGridLines: {
132
+ type: PropType<boolean | undefined>;
133
+ };
134
+ /**
135
+ * The value axis label.
136
+ */
137
+ valueLabel: {
138
+ type: PropType<string | undefined>;
139
+ };
140
+ /**
141
+ * The maximum number of ticks to show on the value axis.
142
+ */
143
+ valueMaxTickCount: {
144
+ type: PropType<number | undefined>;
145
+ };
146
+ /**
147
+ * The minimum value to display in the value axis if there is nothing lower.
148
+ *
149
+ * This is useful for controlling the starting point of the value axis.
150
+ * The actual minimum value will be used if there is a lower value present.
151
+ */
152
+ valueSuggestedMin: {
153
+ type: PropType<number | undefined>;
154
+ };
155
+ /**
156
+ * The maximum value to display in the value axis if there is nothing higher.
157
+ *
158
+ * This is useful for controlling the ending point of the value axis.
159
+ * The actual maximum value will be used if there is a higher value present.
160
+ */
161
+ valueSuggestedMax: {
162
+ type: PropType<number | undefined>;
163
+ };
164
+ /**
165
+ * The number of ticks to show on the value axis.
166
+ *
167
+ * This overrides `valueMaxTickCount`.
168
+ */
169
+ valueTickCount: {
170
+ type: PropType<number | undefined>;
171
+ };
172
+ /**
173
+ * The CSS style string to set the width of the pie chart component.
174
+ * - Accepts any valid CSS width value (e.g., "600px", "100%") or undefined.
175
+ * - Value defaults to "100%" if undefined.
176
+ */
177
+ width: {
178
+ type: PropType<string | undefined>;
179
+ default: string;
180
+ };
181
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
182
+ /**
183
+ * The category axis label.
184
+ */
185
+ categoryLabel: {
186
+ type: PropType<string | undefined>;
187
+ };
188
+ /**
189
+ * The maximum number of ticks to show on the category axis.
190
+ */
191
+ categoryMaxTickCount: {
192
+ type: PropType<number | undefined>;
193
+ };
194
+ /**
195
+ * Whether to show the category axis grid lines. Hidden by default.
196
+ */
197
+ categoryShowGridLines: {
198
+ type: PropType<boolean | undefined>;
199
+ };
200
+ /**
201
+ * The CSS style string to set the height of the pie chart component.
202
+ * - Accepts any valid CSS height value (e.g., "400px", "50vh") or undefined.
203
+ * - Value defaults to "100%" if undefined.
204
+ */
205
+ height: {
206
+ type: PropType<string | undefined>;
207
+ default: string;
208
+ };
209
+ /**
210
+ * Whether the legend is hidden.
211
+ */
212
+ hideLegend: {
213
+ type: PropType<boolean | undefined>;
214
+ };
215
+ /**
216
+ * The format to use for the date labels.
217
+ *
218
+ * When set, `labels` is treated as an array of ISO date strings.
219
+ */
220
+ labelDateFormat: {
221
+ type: PropType<LabelDateFormat | undefined>;
222
+ };
223
+ /**
224
+ * When supplying date strings, they MUST be in ISO format and you MUST set `labelDateFormat`.
225
+ */
226
+ labels: {
227
+ type: PropType<string[]>;
228
+ required: true;
229
+ };
230
+ /**
231
+ * The alignment of the legend in the chart.
232
+ */
233
+ legendAlign: {
234
+ type: PropType<LegendAlign | null | undefined>;
235
+ };
236
+ /**
237
+ * The position of the legend in the chart.
238
+ */
239
+ legendPosition: {
240
+ type: PropType<LegendPosition | undefined>;
241
+ };
242
+ /**
243
+ * Whether the chart has linear connections between data points.
244
+ *
245
+ * The per series property, `props.data[n].isLinear`, overrides this setting.
246
+ */
247
+ linear: {
248
+ type: PropType<boolean | undefined>;
249
+ };
250
+ /**
251
+ * The line style to use for the chart.
252
+ *
253
+ * The per series property, `props.data[n].lineStyle`, overrides this setting.
254
+ */
255
+ lineStyle: {
256
+ type: PropType<LineStyle | undefined>;
257
+ };
258
+ /**
259
+ * The series data to display in the chart.
260
+ */
261
+ series: {
262
+ type: PropType<PieSeries[]>;
263
+ required: true;
264
+ };
265
+ /**
266
+ * Whether the chart has stacked lines.
267
+ */
268
+ stack: {
269
+ type: PropType<boolean | undefined>;
270
+ };
271
+ /**
272
+ * The title of the chart.
273
+ */
274
+ title: {
275
+ type: PropType<string | undefined>;
276
+ };
277
+ /**
278
+ * The tooltip formatter function.
279
+ */
280
+ tooltip: {
281
+ type: PropType<TooltipCallback | undefined>;
282
+ };
283
+ /**
284
+ * The tooltip title formatter function.
285
+ */
286
+ tooltipTitle: {
287
+ type: PropType<TooltipCallback | undefined>;
288
+ };
289
+ /**
290
+ * The type of data represented in the chart.
291
+ *
292
+ * For "percent", the data MUST be in decimal form (e.g., 0.1 for 10%).
293
+ */
294
+ type: {
295
+ type: PropType<"number" | "percent">;
296
+ default: string;
297
+ };
298
+ /**
299
+ * Whether the chart has unfilled areas.
300
+ *
301
+ * The per series property, `props.data[n].isUnfilled`, overrides this setting.
302
+ */
303
+ unfilled: {
304
+ type: PropType<boolean | undefined>;
305
+ };
306
+ /**
307
+ * Whether to hide the value axis grid lines. Shown by default.
308
+ */
309
+ valueHideGridLines: {
310
+ type: PropType<boolean | undefined>;
311
+ };
312
+ /**
313
+ * The value axis label.
314
+ */
315
+ valueLabel: {
316
+ type: PropType<string | undefined>;
317
+ };
318
+ /**
319
+ * The maximum number of ticks to show on the value axis.
320
+ */
321
+ valueMaxTickCount: {
322
+ type: PropType<number | undefined>;
323
+ };
324
+ /**
325
+ * The minimum value to display in the value axis if there is nothing lower.
326
+ *
327
+ * This is useful for controlling the starting point of the value axis.
328
+ * The actual minimum value will be used if there is a lower value present.
329
+ */
330
+ valueSuggestedMin: {
331
+ type: PropType<number | undefined>;
332
+ };
333
+ /**
334
+ * The maximum value to display in the value axis if there is nothing higher.
335
+ *
336
+ * This is useful for controlling the ending point of the value axis.
337
+ * The actual maximum value will be used if there is a higher value present.
338
+ */
339
+ valueSuggestedMax: {
340
+ type: PropType<number | undefined>;
341
+ };
342
+ /**
343
+ * The number of ticks to show on the value axis.
344
+ *
345
+ * This overrides `valueMaxTickCount`.
346
+ */
347
+ valueTickCount: {
348
+ type: PropType<number | undefined>;
349
+ };
350
+ /**
351
+ * The CSS style string to set the width of the pie chart component.
352
+ * - Accepts any valid CSS width value (e.g., "600px", "100%") or undefined.
353
+ * - Value defaults to "100%" if undefined.
354
+ */
355
+ width: {
356
+ type: PropType<string | undefined>;
357
+ default: string;
358
+ };
359
+ }>>, {
360
+ type: "number" | "percent";
361
+ width: string | undefined;
362
+ height: string | undefined;
363
+ }, {}>;
364
+ export default _default;
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
8
8
  type: PropType<boolean>;
9
9
  default: boolean;
10
10
  };
11
+ progressBarType: {
12
+ type: PropType<"default" | "danger" | "warning" | "success" | "info">;
13
+ default: string;
14
+ };
11
15
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
16
  percent: {
13
17
  type: PropType<number>;
@@ -17,7 +21,12 @@ declare const _default: import("vue").DefineComponent<{
17
21
  type: PropType<boolean>;
18
22
  default: boolean;
19
23
  };
24
+ progressBarType: {
25
+ type: PropType<"default" | "danger" | "warning" | "success" | "info">;
26
+ default: string;
27
+ };
20
28
  }>>, {
21
29
  showCompletionText: boolean;
30
+ progressBarType: "default" | "danger" | "warning" | "success" | "info";
22
31
  }, {}>;
23
32
  export default _default;
@@ -27,13 +27,13 @@ declare const _default: import("vue").DefineComponent<{
27
27
  default: false;
28
28
  };
29
29
  enhanceForLongLists: {
30
+ /**
31
+ * Loads the items from the server.
32
+ */
30
33
  type: PropType<boolean>;
31
34
  default: false;
32
35
  };
33
36
  lazyMode: {
34
- /**
35
- * Loads the items from the server.
36
- */
37
37
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
38
38
  default: "onDemand";
39
39
  };
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
51
51
  };
52
52
  displayStyle: {
53
53
  type: PropType<import("@Obsidian/Enums/Controls/pickerDisplayStyle").PickerDisplayStyle>;
54
- default: "auto";
54
+ default: "auto"; /** The currently selected campus value(s). */
55
55
  };
56
56
  columnCount: {
57
57
  type: PropType<number>;
@@ -99,13 +99,13 @@ declare const _default: import("vue").DefineComponent<{
99
99
  default: false;
100
100
  };
101
101
  enhanceForLongLists: {
102
+ /**
103
+ * Loads the items from the server.
104
+ */
102
105
  type: PropType<boolean>;
103
106
  default: false;
104
107
  };
105
108
  lazyMode: {
106
- /**
107
- * Loads the items from the server.
108
- */
109
109
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
110
110
  default: "onDemand";
111
111
  };
@@ -123,7 +123,7 @@ declare const _default: import("vue").DefineComponent<{
123
123
  };
124
124
  displayStyle: {
125
125
  type: PropType<import("@Obsidian/Enums/Controls/pickerDisplayStyle").PickerDisplayStyle>;
126
- default: "auto";
126
+ default: "auto"; /** The currently selected campus value(s). */
127
127
  };
128
128
  columnCount: {
129
129
  type: PropType<number>;
@@ -16,11 +16,11 @@ declare const _default: import("vue").DefineComponent<{
16
16
  rules: import("@Obsidian/ValidationRules").RulesPropType;
17
17
  formGroupClasses: {
18
18
  type: PropType<string>;
19
- default: ""; /** The currently selected campus value(s). */
19
+ default: "";
20
20
  };
21
21
  validationTitle: {
22
22
  type: PropType<string>;
23
- default: "";
23
+ default: ""; /** GUID for the Registration Template that you want to pull instances from */
24
24
  };
25
25
  isRequiredIndicatorHidden: {
26
26
  type: PropType<boolean>;
@@ -34,9 +34,6 @@ declare const _default: import("vue").DefineComponent<{
34
34
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
35
35
  default: "onDemand";
36
36
  };
37
- /**
38
- * Loads the items from the server.
39
- */
40
37
  multiple: {
41
38
  type: PropType<boolean>;
42
39
  default: false;
@@ -85,11 +82,11 @@ declare const _default: import("vue").DefineComponent<{
85
82
  rules: import("@Obsidian/ValidationRules").RulesPropType;
86
83
  formGroupClasses: {
87
84
  type: PropType<string>;
88
- default: ""; /** The currently selected campus value(s). */
85
+ default: "";
89
86
  };
90
87
  validationTitle: {
91
88
  type: PropType<string>;
92
- default: "";
89
+ default: ""; /** GUID for the Registration Template that you want to pull instances from */
93
90
  };
94
91
  isRequiredIndicatorHidden: {
95
92
  type: PropType<boolean>;
@@ -103,9 +100,6 @@ declare const _default: import("vue").DefineComponent<{
103
100
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
104
101
  default: "onDemand";
105
102
  };
106
- /**
107
- * Loads the items from the server.
108
- */
109
103
  multiple: {
110
104
  type: PropType<boolean>;
111
105
  default: false;
@@ -1,5 +1,6 @@
1
1
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
2
2
  import { PropType } from "vue";
3
+ import { ValidationRule } from "@Obsidian/ValidationRules";
3
4
  declare const _default: import("vue").DefineComponent<{
4
5
  modelValue: {
5
6
  type: PropType<ListItemBag | null>;
@@ -14,6 +15,15 @@ declare const _default: import("vue").DefineComponent<{
14
15
  type: BooleanConstructor;
15
16
  default: boolean;
16
17
  };
18
+ rules: {
19
+ type: PropType<ValidationRule | ValidationRule[]>;
20
+ default: string;
21
+ };
22
+ /** Enhance the picker for dealing with long lists by providing a search mechanism. */
23
+ enhanceForLongLists: {
24
+ type: PropType<boolean>;
25
+ default: boolean;
26
+ };
17
27
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
28
  "update:modelValue": (value: ListItemBag | null) => void;
19
29
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -30,10 +40,21 @@ declare const _default: import("vue").DefineComponent<{
30
40
  type: BooleanConstructor;
31
41
  default: boolean;
32
42
  };
43
+ rules: {
44
+ type: PropType<ValidationRule | ValidationRule[]>;
45
+ default: string;
46
+ };
47
+ /** Enhance the picker for dealing with long lists by providing a search mechanism. */
48
+ enhanceForLongLists: {
49
+ type: PropType<boolean>;
50
+ default: boolean;
51
+ };
33
52
  }>> & {
34
53
  "onUpdate:modelValue"?: ((value: ListItemBag | null) => any) | undefined;
35
54
  }, {
36
55
  disabled: boolean;
56
+ rules: ValidationRule | ValidationRule[];
57
+ enhanceForLongLists: boolean;
37
58
  registrationTemplateGuid: string | null;
38
59
  }, {}>;
39
60
  export default _default;
@@ -20,6 +20,7 @@ declare const _default: import("vue").DefineComponent<{
20
20
  default: "";
21
21
  };
22
22
  validationTitle: {
23
+ /** Filter the resulting reminder types to only be of the given entity type */
23
24
  type: PropType<string>;
24
25
  default: "";
25
26
  };
@@ -37,12 +38,12 @@ declare const _default: import("vue").DefineComponent<{
37
38
  };
38
39
  multiple: {
39
40
  type: PropType<boolean>;
40
- default: false;
41
- };
42
- showBlankItem: {
43
41
  /**
44
42
  * Loads the items from the server.
45
43
  */
44
+ default: false;
45
+ };
46
+ showBlankItem: {
46
47
  type: PropType<boolean>;
47
48
  default: false;
48
49
  };
@@ -89,6 +90,7 @@ declare const _default: import("vue").DefineComponent<{
89
90
  default: "";
90
91
  };
91
92
  validationTitle: {
93
+ /** Filter the resulting reminder types to only be of the given entity type */
92
94
  type: PropType<string>;
93
95
  default: "";
94
96
  };
@@ -106,12 +108,12 @@ declare const _default: import("vue").DefineComponent<{
106
108
  };
107
109
  multiple: {
108
110
  type: PropType<boolean>;
109
- default: false;
110
- };
111
- showBlankItem: {
112
111
  /**
113
112
  * Loads the items from the server.
114
113
  */
114
+ default: false;
115
+ };
116
+ showBlankItem: {
115
117
  type: PropType<boolean>;
116
118
  default: false;
117
119
  };
@@ -20,8 +20,16 @@ declare const _default: import("vue").DefineComponent<{
20
20
  };
21
21
  validationTitle: {
22
22
  type: PropType<string>;
23
+ /**
24
+ * The actual items to make available to the picker. This allows us to do any
25
+ * post-processing, such as adding additional items, and still be lazy loaded as well.
26
+ */
23
27
  default: "";
24
28
  };
29
+ /**
30
+ * The actual items to make available to the picker. This allows us to do any
31
+ * post-processing, such as adding additional items, and still be lazy loaded as well.
32
+ */
25
33
  isRequiredIndicatorHidden: {
26
34
  type: PropType<boolean>;
27
35
  default: false;
@@ -80,8 +88,16 @@ declare const _default: import("vue").DefineComponent<{
80
88
  };
81
89
  validationTitle: {
82
90
  type: PropType<string>;
91
+ /**
92
+ * The actual items to make available to the picker. This allows us to do any
93
+ * post-processing, such as adding additional items, and still be lazy loaded as well.
94
+ */
83
95
  default: "";
84
96
  };
97
+ /**
98
+ * The actual items to make available to the picker. This allows us to do any
99
+ * post-processing, such as adding additional items, and still be lazy loaded as well.
100
+ */
85
101
  isRequiredIndicatorHidden: {
86
102
  type: PropType<boolean>;
87
103
  default: false;
@@ -1,6 +1,6 @@
1
1
  import { PropType } from "vue";
2
2
  import { ComparisonValue } from "@Obsidian/Types/Reporting/comparisonValue";
3
- import { FilterMode } from "@Obsidian/Core/Reporting/filterMode";
3
+ import { FilterMode } from "@Obsidian/Enums/Reporting/filterMode";
4
4
  import { PublicAttributeBag } from "@Obsidian/ViewModels/Utility/publicAttributeBag";
5
5
  declare const _default: import("vue").DefineComponent<{
6
6
  modelValue: {
@@ -19,7 +19,7 @@ declare const _default: import("vue").DefineComponent<{
19
19
  };
20
20
  filterMode: {
21
21
  type: PropType<FilterMode>;
22
- default: FilterMode;
22
+ default: 0;
23
23
  };
24
24
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
25
  "update:modelValue": (value: ComparisonValue) => void;
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
40
40
  };
41
41
  filterMode: {
42
42
  type: PropType<FilterMode>;
43
- default: FilterMode;
43
+ default: 0;
44
44
  };
45
45
  }>> & {
46
46
  "onUpdate:modelValue"?: ((value: ComparisonValue) => any) | undefined;
@@ -8,11 +8,6 @@ declare const _default: import("vue").DefineComponent<{
8
8
  default: false;
9
9
  };
10
10
  help: {
11
- type: import("vue").PropType<string>;
12
- default: "";
13
- };
14
- rules: import("@Obsidian/ValidationRules").RulesPropType;
15
- formGroupClasses: {
16
11
  type: import("vue").PropType<string>; /**
17
12
  * If the modelValue is an object or array and its properties get changed, normally
18
13
  * that doesn't trigger a re-validation. If you enable this, it'll watch more deeply for
@@ -22,6 +17,11 @@ declare const _default: import("vue").DefineComponent<{
22
17
  */
23
18
  default: "";
24
19
  };
20
+ rules: import("@Obsidian/ValidationRules").RulesPropType;
21
+ formGroupClasses: {
22
+ type: import("vue").PropType<string>;
23
+ default: "";
24
+ };
25
25
  validationTitle: {
26
26
  type: import("vue").PropType<string>;
27
27
  default: "";
@@ -64,11 +64,6 @@ declare const _default: import("vue").DefineComponent<{
64
64
  default: false;
65
65
  };
66
66
  help: {
67
- type: import("vue").PropType<string>;
68
- default: "";
69
- };
70
- rules: import("@Obsidian/ValidationRules").RulesPropType;
71
- formGroupClasses: {
72
67
  type: import("vue").PropType<string>; /**
73
68
  * If the modelValue is an object or array and its properties get changed, normally
74
69
  * that doesn't trigger a re-validation. If you enable this, it'll watch more deeply for
@@ -78,6 +73,11 @@ declare const _default: import("vue").DefineComponent<{
78
73
  */
79
74
  default: "";
80
75
  };
76
+ rules: import("@Obsidian/ValidationRules").RulesPropType;
77
+ formGroupClasses: {
78
+ type: import("vue").PropType<string>;
79
+ default: "";
80
+ };
81
81
  validationTitle: {
82
82
  type: import("vue").PropType<string>;
83
83
  default: "";