@rockrms/obsidian-framework 17.6.1 → 18.2.4

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 (518) 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/api.d.ts +2 -0
  41. package/types/Controls/Internal/EmailEditor/borderPicker.partial.obs.d.ts +39 -0
  42. package/types/Controls/Internal/EmailEditor/borderStylePicker.partial.obs.d.ts +37 -0
  43. package/types/Controls/Internal/EmailEditor/buttonWidthPicker.partial.obs.d.ts +28 -0
  44. package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +26 -0
  45. package/types/Controls/Internal/EmailEditor/contentToggle.partial.obs.d.ts +38 -0
  46. package/types/Controls/Internal/EmailEditor/emailDesigner.partial.obs.d.ts +17 -3
  47. package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +11 -18
  48. package/types/Controls/Internal/EmailEditor/emailIFrame.partial.obs.d.ts +17 -3
  49. package/types/Controls/Internal/EmailEditor/fontFamilyPicker.partial.obs.d.ts +17 -0
  50. package/types/Controls/Internal/EmailEditor/hrefPicker.partial.obs.d.ts +26 -0
  51. package/types/Controls/Internal/EmailEditor/letterCasePicker.partial.obs.d.ts +76 -0
  52. package/types/Controls/Internal/EmailEditor/lineHeightPicker2.partial.obs.d.ts +75 -0
  53. package/types/Controls/Internal/EmailEditor/percentRangeSlider.partial.obs.d.ts +55 -0
  54. package/types/Controls/Internal/EmailEditor/pixelBox.partial.obs.d.ts +75 -0
  55. package/types/Controls/Internal/EmailEditor/properties/buttonWidthProperty.partial.obs.d.ts +3 -3
  56. package/types/Controls/Internal/EmailEditor/properties/colorPickerProperty.partial.obs.d.ts +3 -3
  57. package/types/Controls/Internal/EmailEditor/properties/communicationTemplateProperty.partial.obs.d.ts +8 -0
  58. package/types/Controls/Internal/EmailEditor/propertyPanels/adaptiveMessageComponentPropertyPanel.partial.obs.d.ts +11 -1
  59. package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +26 -0
  60. package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +11 -3
  61. package/types/Controls/Internal/EmailEditor/propertyPanels/componentPropertyPanelBase.partial.obs.d.ts +9 -0
  62. package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +20 -1
  63. package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +36 -21
  64. package/types/Controls/Internal/EmailEditor/propertyPanels/imageComponentPropertyPanel.partial.obs.d.ts +11 -1
  65. package/types/Controls/Internal/EmailEditor/propertyPanels/rowComponentPropertyPanel.partial.obs.d.ts +11 -1
  66. package/types/Controls/Internal/EmailEditor/propertyPanels/rsvpComponentPropertyPanel.partial.obs.d.ts +11 -1
  67. package/types/Controls/Internal/EmailEditor/propertyPanels/sectionComponentPropertyPanel.partial.obs.d.ts +9 -0
  68. package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +9 -0
  69. package/types/Controls/Internal/EmailEditor/propertyPanels/titleComponentPropertyPanel.partial.obs.d.ts +11 -1
  70. package/types/Controls/Internal/EmailEditor/propertyPanels/videoComponentPropertyPanel.partial.obs.d.ts +11 -1
  71. package/types/Controls/Internal/EmailEditor/providers.partial.d.ts +3 -21
  72. package/types/Controls/Internal/EmailEditor/shorthandBorderStylePicker.partial.obs.d.ts +37 -0
  73. package/types/Controls/Internal/EmailEditor/shorthandColorPicker.partial.obs.d.ts +82 -0
  74. package/types/Controls/Internal/EmailEditor/shorthandDropDownList.partial.obs.d.ts +91 -0
  75. package/types/Controls/Internal/EmailEditor/shorthandPixelBox.partial.obs.d.ts +82 -0
  76. package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +37 -16
  77. package/types/Controls/Internal/EmailEditor/textAlignmentPicker.partial.obs.d.ts +76 -0
  78. package/types/Controls/Internal/EmailEditor/textFormatPicker2.partial.obs.d.ts +104 -0
  79. package/types/Controls/Internal/EmailEditor/types.partial.d.ts +507 -5
  80. package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +73 -122
  81. package/types/Controls/Internal/LearningActivity/assessmentItemSection.obs.d.ts +5 -4
  82. package/types/Controls/Internal/LearningActivity/contentArticleItemNote.obs.d.ts +39 -0
  83. package/types/Controls/Internal/LearningActivity/contentArticleItemText.obs.d.ts +39 -0
  84. package/types/Controls/Internal/LearningActivity/contentArticleItemVideo.obs.d.ts +39 -0
  85. package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.obs.d.ts +53 -0
  86. package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.partial.d.ts +22 -0
  87. package/types/Controls/Internal/MobilePreview/mobileBackground.partial.obs.d.ts +2 -0
  88. package/types/Controls/Internal/MobilePreview/mobilePreview.partial.obs.d.ts +9 -0
  89. package/types/Controls/Internal/MobilePreview/types.partial.d.ts +6 -0
  90. package/types/Controls/Internal/SankeyDiagram/sankeyDiagram.obs.d.ts +9 -2
  91. package/types/Controls/Internal/communicationRecipientActivity.obs.d.ts +31 -0
  92. package/types/Controls/Internal/contentSectionNav.obs.d.ts +14 -0
  93. package/types/Controls/Internal/devicePreview.obs.d.ts +31 -0
  94. package/types/Controls/Internal/emailPreview.obs.d.ts +23 -0
  95. package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +0 -8
  96. package/types/Controls/Internal/pushNotificationMobilePreview.obs.d.ts +31 -0
  97. package/types/Controls/Internal/smsMobilePreview.obs.d.ts +40 -0
  98. package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +8 -0
  99. package/types/Controls/addressControl.obs.d.ts +2 -2
  100. package/types/Controls/barChart.obs.d.ts +464 -0
  101. package/types/Controls/binaryFilePicker.obs.d.ts +0 -6
  102. package/types/Controls/blockTemplatePicker.obs.d.ts +4 -4
  103. package/types/Controls/buttonDropDownList.obs.d.ts +10 -10
  104. package/types/Controls/campusContextPicker.obs.d.ts +76 -0
  105. package/types/Controls/campusPicker.obs.d.ts +10 -2
  106. package/types/Controls/chart.obs.d.ts +43 -7
  107. package/types/Controls/checkBox.obs.d.ts +3 -9
  108. package/types/Controls/codeEditor.obs.d.ts +12 -3
  109. package/types/Controls/componentPicker.obs.d.ts +9 -0
  110. package/types/Controls/contentChannelItemPicker.obs.d.ts +2 -8
  111. package/types/Controls/contentDropDownPicker.obs.d.ts +19 -6
  112. package/types/Controls/contentSection.obs.d.ts +115 -0
  113. package/types/Controls/contentSectionContainer.obs.d.ts +47 -0
  114. package/types/Controls/contentStack.obs.d.ts +63 -0
  115. package/types/Controls/contextSlicer.obs.d.ts +66 -0
  116. package/types/Controls/copyButton.obs.d.ts +22 -2
  117. package/types/Controls/datePicker.obs.d.ts +2 -0
  118. package/types/Controls/displayCard.obs.d.ts +127 -0
  119. package/types/Controls/displayCardAddButton.obs.d.ts +24 -0
  120. package/types/Controls/displayCardContainer.obs.d.ts +23 -0
  121. package/types/Controls/doughnutChart.obs.d.ts +364 -0
  122. package/types/Controls/dropDownContent.obs.d.ts +9 -0
  123. package/types/Controls/dynamicComponent.obs.d.ts +70 -0
  124. package/types/Controls/enhancedProgressBar.obs.d.ts +117 -0
  125. package/types/Controls/entityTypePicker.obs.d.ts +4 -38
  126. package/types/Controls/ethnicityPicker.obs.d.ts +6 -8
  127. package/types/Controls/eventCalendarPicker.obs.d.ts +8 -0
  128. package/types/Controls/expanderPanel.obs.d.ts +1 -1
  129. package/types/Controls/fieldFilterContainer.obs.d.ts +7 -0
  130. package/types/Controls/fieldFilterRuleRow.obs.d.ts +48 -0
  131. package/types/Controls/fieldTypePicker.obs.d.ts +16 -0
  132. package/types/Controls/fileUploader.obs.d.ts +27 -0
  133. package/types/Controls/financialStatementTemplatePicker.obs.d.ts +16 -0
  134. package/types/Controls/firstNameTextBox.obs.d.ts +0 -2
  135. package/types/Controls/geoPicker.obs.d.ts +6 -2
  136. package/types/Controls/gradePicker.obs.d.ts +0 -6
  137. package/types/Controls/groupAndRolePicker.obs.d.ts +2 -10
  138. package/types/Controls/groupRolePicker.obs.d.ts +2 -2
  139. package/types/Controls/groupTypeGroupPicker.obs.d.ts +0 -6
  140. package/types/Controls/groupTypePicker.obs.d.ts +6 -4
  141. package/types/Controls/hint.obs.d.ts +16 -0
  142. package/types/Controls/htmlEditor.obs.d.ts +25 -0
  143. package/types/Controls/iconPicker.obs.d.ts +91 -0
  144. package/types/Controls/imageEditor.obs.d.ts +1 -1
  145. package/types/Controls/inlineCheckBox.obs.d.ts +11 -1
  146. package/types/Controls/interactionChannelPicker.obs.d.ts +8 -0
  147. package/types/Controls/kpi.obs.d.ts +12 -5
  148. package/types/Controls/lavaCommandPicker.obs.d.ts +20 -2
  149. package/types/Controls/learningClassActivityPicker.obs.d.ts +147 -0
  150. package/types/Controls/learningClassPicker.obs.d.ts +147 -0
  151. package/types/Controls/lineChart.obs.d.ts +378 -0
  152. package/types/Controls/locationAddressPicker.obs.d.ts +2 -6
  153. package/types/Controls/mediaElementPicker.obs.d.ts +4 -4
  154. package/types/Controls/modal.obs.d.ts +33 -1
  155. package/types/Controls/numberBox.obs.d.ts +11 -0
  156. package/types/Controls/panel.obs.d.ts +94 -6
  157. package/types/Controls/phoneNumberBox.obs.d.ts +23 -6
  158. package/types/Controls/pieChart.obs.d.ts +364 -0
  159. package/types/Controls/progressBar.obs.d.ts +9 -0
  160. package/types/Controls/racePicker.obs.d.ts +8 -8
  161. package/types/Controls/registrationInstanceBasePicker.obs.d.ts +4 -10
  162. package/types/Controls/registrationInstancePicker.obs.d.ts +21 -0
  163. package/types/Controls/reminderTypePicker.obs.d.ts +8 -6
  164. package/types/Controls/remoteAuthsPicker.obs.d.ts +16 -0
  165. package/types/Controls/rockAttributeFilter.obs.d.ts +3 -3
  166. package/types/Controls/rockFormField.obs.d.ts +10 -10
  167. package/types/Controls/scheduleBuilder.obs.d.ts +11 -0
  168. package/types/Controls/slidingDateRangePicker.obs.d.ts +12 -3
  169. package/types/Controls/stepProgramPicker.obs.d.ts +8 -0
  170. package/types/Controls/stepProgramStepTypePicker.obs.d.ts +21 -0
  171. package/types/Controls/stepStatusPicker.obs.d.ts +0 -6
  172. package/types/Controls/streakTypePicker.obs.d.ts +16 -0
  173. package/types/Controls/tabbedContent.obs.d.ts +1 -1
  174. package/types/Controls/textBox.obs.d.ts +9 -0
  175. package/types/Controls/wordCloud.obs.d.ts +1 -1
  176. package/types/Controls/workflowBasePicker.obs.d.ts +0 -6
  177. package/types/Core/Controls/chart.d.ts +221 -0
  178. package/types/Core/Controls/contentSection.d.ts +62 -0
  179. package/types/Core/Core/Automation/component.d.ts +15 -0
  180. package/types/Core/Reporting/comparisonType.d.ts +1 -1
  181. package/types/Core/Utilities/contextEntity.d.ts +54 -0
  182. package/types/{Controls/Grid/virtualScroller.partial.d.ts → Core/Utilities/virtualScroll.d.ts} +48 -1
  183. package/types/Directives/dragDrop.d.ts +1 -1
  184. package/types/Enums/AI/Agent/agentType.d.ts +14 -0
  185. package/types/Enums/AI/Agent/audienceType.d.ts +23 -0
  186. package/types/Enums/AI/Agent/authorRole.d.ts +25 -0
  187. package/types/Enums/AI/Agent/modelServiceRole.d.ts +22 -0
  188. package/types/Enums/AI/Agent/parameterSchemaDataType.d.ts +26 -0
  189. package/types/Enums/AI/Agent/toolStatus.d.ts +13 -0
  190. package/types/Enums/AI/Agent/toolType.d.ts +13 -0
  191. package/types/Enums/Blocks/Communication/CommunicationDetail/pushOpenAction.d.ts +15 -0
  192. package/types/Enums/Blocks/Communication/CommunicationFlowDetail/pushOpenAction.d.ts +15 -0
  193. package/types/Enums/Blocks/Communication/EmailPreferenceEntry/communicationChannelType.d.ts +11 -0
  194. package/types/Enums/CheckIn/adultsOrChildrenSelectionMode.d.ts +27 -0
  195. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/browserFamily.d.ts +24 -0
  196. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/deviceType.d.ts +13 -0
  197. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/geolocationLocationComponent.d.ts +14 -0
  198. package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/previousActivityType.d.ts +11 -0
  199. package/types/Enums/Cms/blockRole.d.ts +51 -0
  200. package/types/Enums/Cms/lavaEndpointHttpMethod.d.ts +15 -0
  201. package/types/Enums/Cms/lavaEndpointSecurityMode.d.ts +15 -0
  202. package/types/Enums/Communication/Chat/chatMessageEventType.d.ts +11 -0
  203. package/types/Enums/Communication/Chat/chatViewStyle.d.ts +20 -0
  204. package/types/Enums/Communication/communicationFlowInstanceRecipientInactiveReason.d.ts +23 -0
  205. package/types/Enums/Communication/communicationFlowInstanceRecipientStatus.d.ts +11 -0
  206. package/types/Enums/Communication/communicationFlowInstanceRecipientUnsubscribeScope.d.ts +11 -0
  207. package/types/Enums/Communication/communicationFlowTriggerType.d.ts +13 -0
  208. package/types/Enums/Communication/communicationInteractionOperation.d.ts +11 -0
  209. package/types/Enums/Communication/communicationRecipientActivity.d.ts +25 -0
  210. package/types/Enums/Communication/communicationTemplateUsageType.d.ts +9 -0
  211. package/types/Enums/Communication/conversionGoalType.d.ts +19 -0
  212. package/types/Enums/Communication/exitConditionType.d.ts +15 -0
  213. package/types/Enums/Communication/inferredCommunicationStatus.d.ts +24 -0
  214. package/types/Enums/Communication/unsubscribeLevel.d.ts +2 -2
  215. package/types/Enums/Controls/hintType.d.ts +8 -0
  216. package/types/Enums/Core/Automation/Triggers/chatMessageCriteriaRuleType.d.ts +15 -0
  217. package/types/Enums/Core/Automation/Triggers/entityChangeModificationType.d.ts +13 -0
  218. package/types/Enums/Core/Automation/Triggers/entityChangeSimpleChangeType.d.ts +40 -0
  219. package/types/Enums/Engagement/completionFlow.d.ts +13 -0
  220. package/types/Enums/Engagement/engagementType.d.ts +13 -0
  221. package/types/Enums/Engagement/stepChartMeasure.d.ts +23 -0
  222. package/types/Enums/Engagement/stepProgramView.d.ts +17 -0
  223. package/types/Enums/Geography/travelMode.d.ts +13 -0
  224. package/types/Enums/Group/appliesToPlacementConfiguration.d.ts +13 -0
  225. package/types/Enums/Group/placementMode.d.ts +15 -0
  226. package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -1
  227. package/types/FieldTypes/badgesField.partial.d.ts +3 -0
  228. package/types/FieldTypes/badgesFieldComponents.d.ts +30 -0
  229. package/types/FieldTypes/binaryFileField.partial.d.ts +2 -1
  230. package/types/FieldTypes/binaryFileFieldComponents.d.ts +19 -9
  231. package/types/FieldTypes/blockTemplateFieldComponents.d.ts +1 -1
  232. package/types/FieldTypes/colorSelectorComponents.d.ts +17 -3
  233. package/types/FieldTypes/communicationFlowField.partial.d.ts +13 -0
  234. package/types/FieldTypes/communicationFlowFieldComponents.d.ts +61 -0
  235. package/types/FieldTypes/connectionActivityTypeFieldComponents.d.ts +2 -2
  236. package/types/FieldTypes/contentChannelItemFieldComponents.d.ts +1 -1
  237. package/types/FieldTypes/groupTypeGroupField.partial.d.ts +1 -1
  238. package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
  239. package/types/FieldTypes/urlLinkFieldComponents.d.ts +10 -11
  240. package/types/FieldTypes/utils.d.ts +1 -1
  241. package/types/PageState/index.d.ts +1 -0
  242. package/types/PageState/state.d.ts +0 -1
  243. package/types/SystemGuids/blockType.d.ts +6 -0
  244. package/types/SystemGuids/category.d.ts +4 -0
  245. package/types/SystemGuids/definedType.d.ts +8 -0
  246. package/types/SystemGuids/definedValue.d.ts +58 -0
  247. package/types/SystemGuids/entityType.d.ts +38 -2
  248. package/types/SystemGuids/fieldType.d.ts +4 -0
  249. package/types/SystemGuids/group.d.ts +2 -0
  250. package/types/SystemGuids/page.d.ts +13 -0
  251. package/types/SystemGuids/pageRoute.d.ts +2 -0
  252. package/types/SystemGuids/serviceJob.d.ts +31 -1
  253. package/types/SystemGuids/stepProgram.d.ts +5 -0
  254. package/types/SystemGuids/stepStatus.d.ts +7 -0
  255. package/types/SystemGuids/stepType.d.ts +11 -0
  256. package/types/Templates/detailBlock.d.ts +21 -0
  257. package/types/Templates/rockPage.d.ts +7 -3
  258. package/types/Types/Controls/dropDownMenu.d.ts +1 -1
  259. package/types/Types/Controls/grid.d.ts +45 -0
  260. package/types/Types/Utility/block.d.ts +3 -0
  261. package/types/Types/Utility/browserBus.d.ts +11 -0
  262. package/types/Types/Utility/http.d.ts +3 -0
  263. package/types/Utility/block.d.ts +90 -10
  264. package/types/Utility/browserBus.d.ts +4 -0
  265. package/types/Utility/chartUtils.d.ts +139 -0
  266. package/types/Utility/component.d.ts +28 -14
  267. package/types/Utility/cssUtils.d.ts +13 -0
  268. package/types/Utility/dom.d.ts +10 -0
  269. package/types/Utility/http.d.ts +11 -0
  270. package/types/Utility/jsonUtils.d.ts +8 -0
  271. package/types/Utility/lava.d.ts +2 -0
  272. package/types/Utility/linq.d.ts +323 -67
  273. package/types/Utility/objectUtils.d.ts +20 -0
  274. package/types/Utility/rockDateTime.d.ts +19 -1
  275. package/types/Utility/rockTimeSpan.d.ts +30 -0
  276. package/types/Utility/stringUtils.d.ts +14 -0
  277. package/types/Utility/tooltip.d.ts +14 -1
  278. package/types/Utility/treeItemProviders.d.ts +1 -1
  279. package/types/Utility/util.d.ts +4 -0
  280. package/types/ViewModels/Blocks/AI/AIAgentDetail/agentSkillBag.d.ts +51 -0
  281. package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentBag.d.ts +108 -0
  282. package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentDetailOptionsBag.d.ts +36 -0
  283. package/types/ViewModels/Blocks/AI/AIAgentDetail/editSkillResponseBag.d.ts +41 -0
  284. package/types/ViewModels/Blocks/AI/AIAgentDetail/getComponentDefinitionResponseBag.d.ts +44 -0
  285. package/types/ViewModels/Blocks/AI/AIAgentList/aiAgentListOptionsBag.d.ts +26 -0
  286. package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderBag.d.ts +55 -0
  287. package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderDetailOptionsBag.d.ts +26 -0
  288. package/types/ViewModels/Blocks/AI/AIProviderList/aiProviderListOptionsBag.d.ts +26 -0
  289. package/types/ViewModels/Blocks/AI/AISettings/aiSettingsBag.d.ts +28 -0
  290. package/types/ViewModels/Blocks/AI/AISettings/aiSettingsOptionsBag.d.ts +33 -0
  291. package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillBag.d.ts +63 -0
  292. package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillDetailOptionsBag.d.ts +26 -0
  293. package/types/ViewModels/Blocks/AI/AISkillList/aiSkillListOptionsBag.d.ts +26 -0
  294. package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolBag.d.ts +88 -0
  295. package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolListOptionsBag.d.ts +30 -0
  296. package/types/ViewModels/Blocks/AI/AISkillToolList/parameterSchemaBag.d.ts +57 -0
  297. package/types/ViewModels/Blocks/Administration/ExternalApplicationList/externalApplicationListOptionsBag.d.ts +26 -0
  298. package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesBag.d.ts +4 -0
  299. package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesOptionsBag.d.ts +3 -0
  300. package/types/ViewModels/Blocks/Administration/SystemConfiguration/generalConfigurationBag.d.ts +12 -0
  301. package/types/ViewModels/Blocks/Administration/SystemConfiguration/systemConfigurationInitializationBox.d.ts +3 -0
  302. package/types/ViewModels/Blocks/BulkImport/bulkImportToolBox.d.ts +33 -0
  303. package/types/ViewModels/Blocks/BulkImport/bulkImportToolOptionsBag.d.ts +28 -0
  304. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/addIndividualOptionsBag.d.ts +40 -0
  305. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/editFamilyResponseBag.d.ts +31 -0
  306. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +7 -0
  307. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInRegistrationSettingsBag.d.ts +3 -0
  308. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +4 -0
  309. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +7 -0
  310. package/types/ViewModels/Blocks/Cms/AssetManager/assetManagerOptionsBag.d.ts +2 -2
  311. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormBag.d.ts +52 -0
  312. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormRequestBag.d.ts +33 -0
  313. package/types/ViewModels/Blocks/Cms/EmailForm/emailFormResponseBag.d.ts +28 -0
  314. package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationBag.d.ts +50 -0
  315. package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationDetailOptionsBag.d.ts +25 -0
  316. package/types/ViewModels/Blocks/Cms/LavaApplicationList/lavaApplicationListOptionsBag.d.ts +26 -0
  317. package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointBag.d.ts +75 -0
  318. package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointDetailOptionsBag.d.ts +32 -0
  319. package/types/ViewModels/Blocks/Cms/LavaEndpointList/lavaEndpointListOptionsBag.d.ts +31 -0
  320. package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsBag.d.ts +0 -6
  321. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +3 -0
  322. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +6 -3
  323. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +3 -0
  324. package/types/ViewModels/Blocks/Cms/PageShortLinkList/pageShortLinkListOptionsBag.d.ts +3 -0
  325. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/additionalFilterConfigurationBag.d.ts +64 -0
  326. package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts → Cms/RequestFilterDetail/browserRequestFilterBag.d.ts} +11 -14
  327. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/cookieRequestFilterBag.d.ts +39 -0
  328. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/deviceTypeRequestFilterBag.d.ts +28 -0
  329. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/environmentRequestFilterBag.d.ts +36 -0
  330. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/geolocationRequestFilterBag.d.ts +39 -0
  331. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/ipAddressRequestFilterBag.d.ts +39 -0
  332. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/previousActivityRequestFilterBag.d.ts +28 -0
  333. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/queryStringRequestFilterBag.d.ts +39 -0
  334. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterBag.d.ts +56 -0
  335. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterDetailOptionsBag.d.ts +30 -0
  336. package/types/ViewModels/Blocks/Cms/RequestFilterDetail/timePickerValueBag.d.ts +31 -0
  337. package/types/ViewModels/Blocks/Cms/RequestFilterList/requestFilterListOptionsBag.d.ts +26 -0
  338. package/types/ViewModels/Blocks/Cms/ThemeDetail/themeFieldBag.d.ts +3 -3
  339. package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationBag.d.ts +3 -0
  340. package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatPersonDataBag.d.ts +3 -0
  341. package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatReactionBag.d.ts +40 -0
  342. package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatViewConfigurationBag.d.ts +9 -0
  343. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActionResponseBag.d.ts +39 -0
  344. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActivityFlowBag.d.ts +34 -0
  345. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsRequestBag.d.ts +30 -0
  346. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsResponseBag.d.ts +67 -0
  347. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDeliveryBreakdownBag.d.ts +60 -0
  348. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailBag.d.ts +59 -0
  349. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailInitializationBox.d.ts +61 -0
  350. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailPermissionsBag.d.ts +46 -0
  351. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationKpisBag.d.ts +61 -0
  352. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationLinkAnalyticsBag.d.ts +46 -0
  353. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationMessagePreviewBag.d.ts +91 -0
  354. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridDataBag.d.ts +37 -0
  355. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridOptionsBag.d.ts +33 -0
  356. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridSettingsBag.d.ts +33 -0
  357. package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRedirectBag.d.ts +33 -0
  358. package/types/ViewModels/Blocks/Communication/CommunicationDetail/createPersonalTemplateRequestBag.d.ts +36 -0
  359. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationBag.d.ts +2 -2
  360. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/{communicationEntryWizardGetEmailPreviewHtmlBag.d.ts → communicationEntryWizardGetPreviewBag.d.ts} +11 -4
  361. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardInitializationBox.d.ts +3 -0
  362. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/checkShortLinkTokenBag.d.ts +31 -0
  363. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowBag.d.ts +84 -0
  364. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowCommunicationBag.d.ts +47 -0
  365. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCommunicationTemplateBag.d.ts +97 -0
  366. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCompletedFormSettingsBag.d.ts +30 -0
  367. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailConversionGoalSettingsBag.d.ts +50 -0
  368. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailEnteredDataViewSettingsBag.d.ts +30 -0
  369. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailInitializationBox.d.ts +68 -0
  370. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupSettingsBag.d.ts +30 -0
  371. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupTypeSettingsBag.d.ts +30 -0
  372. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailOptionsBag.d.ts +26 -0
  373. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailRegisteredSettingsBag.d.ts +30 -0
  374. package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailTookStepSettingsBag.d.ts +33 -0
  375. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowCommunicationBag.d.ts +36 -0
  376. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceBag.d.ts +34 -0
  377. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceCommunicationBag.d.ts +36 -0
  378. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/initializationBox.d.ts +43 -0
  379. package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/recipientMetricsBag.d.ts +51 -0
  380. package/types/ViewModels/Blocks/Communication/CommunicationFlowList/communicationFlowListOptionsBag.d.ts +26 -0
  381. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/communicationFlowInstanceBag.d.ts +37 -0
  382. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/completedFormSettingsBag.d.ts +30 -0
  383. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/conversionGoalSettingsBag.d.ts +50 -0
  384. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/enteredDataViewSettingsBag.d.ts +30 -0
  385. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/gridRowBag.d.ts +60 -0
  386. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/initializationBox.d.ts +46 -0
  387. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupSettingsBag.d.ts +30 -0
  388. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupTypeSettingsBag.d.ts +30 -0
  389. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/messageBag.d.ts +70 -0
  390. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/performanceBag.d.ts +64 -0
  391. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/registeredSettingsBag.d.ts +30 -0
  392. package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/tookStepSettingsBag.d.ts +30 -0
  393. package/types/ViewModels/Blocks/Communication/CommunicationList/communicationListOptionsBag.d.ts +14 -8
  394. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockBox.d.ts +48 -0
  395. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockDataBag.d.ts +37 -0
  396. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportChartDataBag.d.ts +38 -0
  397. package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportFiltersBag.d.ts +42 -0
  398. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/communicationChannelBag.d.ts +46 -0
  399. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordRequestBag.d.ts +36 -0
  400. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordResponseBag.d.ts +34 -0
  401. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +93 -37
  402. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageChannelSubscriptionRequestBag.d.ts +36 -0
  403. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageEmailSubscriptionRequestBag.d.ts +33 -0
  404. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateCommunicationPreferenceRequestBag.d.ts +40 -0
  405. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateContactInfoRequestBag.d.ts +28 -0
  406. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateEmailPreferenceRequestBag.d.ts +30 -0
  407. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +9 -0
  408. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationEventBag.d.ts +74 -0
  409. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerBag.d.ts +90 -0
  410. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerDetailOptionsBag.d.ts +39 -0
  411. package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/getComponentDefinitionResponseBag.d.ts +39 -0
  412. package/types/ViewModels/Blocks/Core/AutomationTriggerList/automationTriggerListOptionsBag.d.ts +26 -0
  413. package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +3 -0
  414. package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +2 -0
  415. package/types/ViewModels/Blocks/Core/DefinedTypeList/definedTypeListOptionsBag.d.ts +0 -2
  416. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +2 -1
  417. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobOptionsBag.d.ts +36 -0
  418. package/types/ViewModels/Blocks/Crm/PersonDuplicateDetail/personDuplicateDetailOptionsBag.d.ts +40 -0
  419. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +3 -0
  420. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/chartDataBag.d.ts +42 -0
  421. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/seriesBag.d.ts +36 -0
  422. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +25 -3
  423. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +6 -0
  424. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +4 -4
  425. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepProgramBag.d.ts +33 -0
  426. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepStatusBag.d.ts +32 -0
  427. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeBag.d.ts +34 -8
  428. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeDetailOptionsBag.d.ts +12 -1
  429. package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts → Engagement/StepTypeDetail/stepTypeDetailsBag.d.ts} +4 -7
  430. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeTransferBag.d.ts +36 -0
  431. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -0
  432. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -0
  433. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -0
  434. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +3 -0
  435. package/types/ViewModels/Blocks/Event/RegistrationEntry/persistSessionResponseBag.d.ts +34 -0
  436. package/types/ViewModels/Blocks/Event/RegistrationInstanceList/registrationInstanceListOptionsBag.d.ts +6 -6
  437. package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupBag.d.ts +64 -0
  438. package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupMembersBag.d.ts +42 -0
  439. package/types/ViewModels/Blocks/Group/GroupPlacement/attributeDataBag.d.ts +33 -0
  440. package/types/ViewModels/Blocks/Group/GroupPlacement/attributeFiltersBag.d.ts +40 -0
  441. package/types/ViewModels/Blocks/Group/GroupPlacement/destinationGroupTypeRoleBag.d.ts +37 -0
  442. package/types/ViewModels/Blocks/Group/GroupPlacement/detachGroupBag.d.ts +40 -0
  443. package/types/ViewModels/Blocks/Group/GroupPlacement/groupMemberBag.d.ts +52 -0
  444. package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementInitializationBox.d.ts +75 -0
  445. package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementKeysBag.d.ts +57 -0
  446. package/types/ViewModels/Blocks/Group/GroupPlacement/personBag.d.ts +62 -0
  447. package/types/ViewModels/Blocks/Group/GroupPlacement/personFiltersBag.d.ts +56 -0
  448. package/types/ViewModels/Blocks/Group/GroupPlacement/placementBag.d.ts +29 -0
  449. package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingOptionsBag.d.ts +42 -0
  450. package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingsBag.d.ts +70 -0
  451. package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupBag.d.ts +65 -0
  452. package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupTypeBag.d.ts +35 -0
  453. package/types/ViewModels/Blocks/Group/GroupPlacement/placementPeopleBag.d.ts +34 -0
  454. package/types/ViewModels/Blocks/Group/GroupPlacement/realTimeConnectionKeysBag.d.ts +39 -0
  455. package/types/ViewModels/Blocks/Group/GroupPlacement/registrantBag.d.ts +49 -0
  456. package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityAttributesBag.d.ts +33 -0
  457. package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityKeysBag.d.ts +45 -0
  458. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +3 -0
  459. package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityParticipantBag.d.ts +3 -0
  460. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassFacilitatorBag.d.ts +3 -0
  461. package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramBag.d.ts +3 -0
  462. package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceBox.d.ts +7 -0
  463. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +3 -0
  464. package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +0 -8
  465. package/types/ViewModels/Blocks/Reporting/Insights/insightsChartDataBag.d.ts +36 -0
  466. package/types/ViewModels/Blocks/Reporting/Insights/insightsInitializationBox.d.ts +46 -0
  467. package/types/ViewModels/Blocks/Reporting/Insights/insightsOptionsBag.d.ts +58 -0
  468. package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterBox.d.ts +30 -0
  469. package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterOptionsBag.d.ts +31 -0
  470. package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterBox.d.ts +30 -0
  471. package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterOptionsBag.d.ts +31 -0
  472. package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeBag.d.ts +48 -0
  473. package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeDetailOptionsBag.d.ts +26 -0
  474. package/types/ViewModels/Blocks/Workflow/FormBuilder/formBuilderDetailLinkToFormBag.d.ts +36 -0
  475. package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +6 -0
  476. package/types/ViewModels/CheckIn/attendeeBag.d.ts +4 -0
  477. package/types/ViewModels/CheckIn/kioskBag.d.ts +7 -0
  478. package/types/ViewModels/CheckIn/proximityAttendanceNotificationBag.d.ts +34 -0
  479. package/types/ViewModels/Cms/contextEntityItemBag.d.ts +39 -0
  480. package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +7 -0
  481. package/types/ViewModels/Controls/dynamicComponentDefinitionBag.d.ts +48 -0
  482. package/types/ViewModels/Controls/iconLibraryBag.d.ts +43 -0
  483. package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaBag.d.ts +33 -0
  484. package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaRuleBag.d.ts +43 -0
  485. package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaBag.d.ts +42 -0
  486. package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaRuleBag.d.ts +58 -0
  487. package/types/ViewModels/Core/Automation/automationValueDefinitionBag.d.ts +48 -0
  488. package/types/ViewModels/Entities/prayerRequestBag.d.ts +117 -0
  489. package/types/ViewModels/Entities/scheduleBag.d.ts +103 -0
  490. package/types/ViewModels/Entities/scheduleCategoryExclusionBag.d.ts +60 -0
  491. package/types/ViewModels/Event/RegistrationEntry/registrationRegistrantUpdatedMessageBag.d.ts +59 -0
  492. package/types/ViewModels/Group/GroupMember/groupMemberUpdatedMessageBag.d.ts +61 -0
  493. package/types/ViewModels/Reporting/BarChart/barSeriesBag.d.ts +43 -0
  494. package/types/ViewModels/Reporting/LineChart/lineSeriesBag.d.ts +43 -0
  495. package/types/ViewModels/Reporting/PieChart/pieSeriesBag.d.ts +34 -0
  496. package/types/ViewModels/Reporting/chartBag.d.ts +37 -0
  497. package/types/ViewModels/Reporting/chartOptionsBag.d.ts +26 -0
  498. package/types/ViewModels/Rest/Controls/communicationRecipientActivityBag.d.ts +39 -0
  499. package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityOptionsBag.d.ts +31 -0
  500. package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityResultsBag.d.ts +60 -0
  501. package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +3 -0
  502. package/types/ViewModels/Rest/Controls/dataFilterFormatSelectionOptionsBag.d.ts +47 -0
  503. package/types/ViewModels/Rest/Controls/emailEditorGetGroupOptionsBag.d.ts +36 -0
  504. package/types/ViewModels/Rest/Controls/formattedFieldSelectGetSortByPropertiesOptionsBag.d.ts +28 -0
  505. package/types/ViewModels/Rest/Controls/hasCompletedCourseSelectGetCoursesOptionsBag.d.ts +30 -0
  506. package/types/ViewModels/Rest/Controls/iconPickerGetIconLibrariesOptionsBag.d.ts +34 -0
  507. package/types/ViewModels/Rest/Controls/inGroupFilterGetGroupRolesForGroupsOptionsBag.d.ts +54 -0
  508. package/types/ViewModels/Rest/Controls/inGroupGroupTypeSelectGetRolesOptionsBag.d.ts +30 -0
  509. package/types/ViewModels/Rest/Controls/interactionCountSelectGetComponentsOptionsBag.d.ts +30 -0
  510. package/types/ViewModels/Rest/Controls/interactionDateSelectGetComponentsOptionsBag.d.ts +30 -0
  511. package/types/ViewModels/Rest/Controls/learningClassActivityPickerGetLearningClassActivitiesOptionsBag.d.ts +36 -0
  512. package/types/ViewModels/Rest/Controls/learningClassPickerGetLearningClassesOptionsBag.d.ts +36 -0
  513. package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +9 -0
  514. package/types/ViewModels/Rest/Controls/memberListSelectGetGroupRolesOptionsBag.d.ts +30 -0
  515. package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +7 -0
  516. package/types/ViewModels/Rest/Utilities/updateContextEntityOptionsBag.d.ts +39 -0
  517. package/types/Core/Reporting/filterExpressionType.d.ts +0 -28
  518. package/types/Core/Reporting/filterMode.d.ts +0 -7
@@ -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: "";
@@ -30,6 +30,11 @@ declare const _default: import("vue").DefineComponent<{
30
30
  type: PropType<string | null>;
31
31
  required: false;
32
32
  };
33
+ /** Whether the control is disabled. */
34
+ disabled: {
35
+ type: PropType<boolean>;
36
+ default: boolean;
37
+ };
33
38
  /** Whether to hide the start date/time fields. */
34
39
  hideStartDateTime: {
35
40
  type: PropType<boolean>;
@@ -73,6 +78,11 @@ declare const _default: import("vue").DefineComponent<{
73
78
  type: PropType<string | null>;
74
79
  required: false;
75
80
  };
81
+ /** Whether the control is disabled. */
82
+ disabled: {
83
+ type: PropType<boolean>;
84
+ default: boolean;
85
+ };
76
86
  /** Whether to hide the start date/time fields. */
77
87
  hideStartDateTime: {
78
88
  type: PropType<boolean>;
@@ -87,6 +97,7 @@ declare const _default: import("vue").DefineComponent<{
87
97
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
88
98
  }, {
89
99
  label: string;
100
+ disabled: boolean;
90
101
  help: string;
91
102
  disableLabel: boolean;
92
103
  rules: import("@Obsidian/ValidationRules").ValidationRule | import("@Obsidian/ValidationRules").ValidationRule[];
@@ -14,9 +14,13 @@ declare const _default: import("vue").DefineComponent<{
14
14
  default: null;
15
15
  };
16
16
  previewLocation: {
17
- type: PropType<"None" | "Right" | "Top">;
17
+ type: PropType<"None" | "Top" | "Right">;
18
18
  default: string;
19
19
  };
20
+ isRangeClearable: {
21
+ type: PropType<boolean>;
22
+ default: boolean;
23
+ };
20
24
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
25
  "update:modelValue": (v: SlidingDateRange | null) => void;
22
26
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -33,14 +37,19 @@ declare const _default: import("vue").DefineComponent<{
33
37
  default: null;
34
38
  };
35
39
  previewLocation: {
36
- type: PropType<"None" | "Right" | "Top">;
40
+ type: PropType<"None" | "Top" | "Right">;
37
41
  default: string;
38
42
  };
43
+ isRangeClearable: {
44
+ type: PropType<boolean>;
45
+ default: boolean;
46
+ };
39
47
  }>> & {
40
48
  "onUpdate:modelValue"?: ((v: SlidingDateRange | null) => any) | undefined;
41
49
  }, {
42
50
  enabledSlidingDateRangeUnits: number[] | null;
43
51
  enabledTimeUnits: TimeUnit[] | null;
44
- previewLocation: "None" | "Right" | "Top";
52
+ previewLocation: "None" | "Top" | "Right";
53
+ isRangeClearable: boolean;
45
54
  }, {}>;
46
55
  export default _default;
@@ -20,6 +20,10 @@ 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
  };
25
29
  isRequiredIndicatorHidden: {
@@ -80,6 +84,10 @@ declare const _default: import("vue").DefineComponent<{
80
84
  };
81
85
  validationTitle: {
82
86
  type: PropType<string>;
87
+ /**
88
+ * The actual items to make available to the picker. This allows us to do any
89
+ * post-processing, such as adding additional items, and still be lazy loaded as well.
90
+ */
83
91
  default: "";
84
92
  };
85
93
  isRequiredIndicatorHidden: {
@@ -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 | undefined>;
@@ -18,6 +19,15 @@ declare const _default: import("vue").DefineComponent<{
18
19
  type: BooleanConstructor;
19
20
  default: boolean;
20
21
  };
22
+ rules: {
23
+ type: PropType<ValidationRule | ValidationRule[]>;
24
+ default: string;
25
+ };
26
+ /** Enhance the picker for dealing with long lists by providing a search mechanism. */
27
+ enhanceForLongLists: {
28
+ type: PropType<boolean>;
29
+ default: boolean;
30
+ };
21
31
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
32
  "update:modelValue": (value: ListItemBag | ListItemBag[] | null) => void;
23
33
  "update:stepProgram": (value: ListItemBag | ListItemBag[] | null) => void;
@@ -39,11 +49,22 @@ declare const _default: import("vue").DefineComponent<{
39
49
  type: BooleanConstructor;
40
50
  default: boolean;
41
51
  };
52
+ rules: {
53
+ type: PropType<ValidationRule | ValidationRule[]>;
54
+ default: string;
55
+ };
56
+ /** Enhance the picker for dealing with long lists by providing a search mechanism. */
57
+ enhanceForLongLists: {
58
+ type: PropType<boolean>;
59
+ default: boolean;
60
+ };
42
61
  }>> & {
43
62
  "onUpdate:modelValue"?: ((value: ListItemBag | ListItemBag[] | null) => any) | undefined;
44
63
  "onUpdate:stepProgram"?: ((value: ListItemBag | ListItemBag[] | null) => any) | undefined;
45
64
  }, {
46
65
  disabled: boolean;
66
+ rules: ValidationRule | ValidationRule[];
67
+ enhanceForLongLists: boolean;
47
68
  defaultStepProgramGuid: string | null;
48
69
  }, {}>;
49
70
  export default _default;
@@ -26,9 +26,6 @@ declare const _default: import("vue").DefineComponent<{
26
26
  type: PropType<boolean>;
27
27
  default: false;
28
28
  };
29
- /**
30
- * Loads the items from the server.
31
- */
32
29
  enhanceForLongLists: {
33
30
  type: PropType<boolean>;
34
31
  default: false;
@@ -93,9 +90,6 @@ declare const _default: import("vue").DefineComponent<{
93
90
  type: PropType<boolean>;
94
91
  default: false;
95
92
  };
96
- /**
97
- * Loads the items from the server.
98
- */
99
93
  enhanceForLongLists: {
100
94
  type: PropType<boolean>;
101
95
  default: false;
@@ -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;
@@ -56,8 +56,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
56
56
  }>> & {
57
57
  "onUpdate:selectedTab"?: ((value: string) => any) | undefined;
58
58
  }, {
59
- lazyLoad: boolean;
60
59
  selectedTab: string;
60
+ lazyLoad: boolean;
61
61
  tabBarClass: string | string[] | Record<string, boolean>;
62
62
  }, {}>, {
63
63
  tabpane?(_: {
@@ -83,6 +83,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
83
83
  type: PropType<boolean>;
84
84
  default: boolean;
85
85
  };
86
+ isReadOnly: {
87
+ type: PropType<boolean>;
88
+ default: boolean;
89
+ };
86
90
  /**
87
91
  * If `true`, then the max length can be exceeded; i.e., the max length is not enforced.
88
92
  *
@@ -178,6 +182,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
178
182
  type: PropType<boolean>;
179
183
  default: boolean;
180
184
  };
185
+ isReadOnly: {
186
+ type: PropType<boolean>;
187
+ default: boolean;
188
+ };
181
189
  /**
182
190
  * If `true`, then the max length can be exceeded; i.e., the max length is not enforced.
183
191
  *
@@ -211,6 +219,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
211
219
  size: "small" | "medium" | "large";
212
220
  allowHtml: boolean;
213
221
  isClearable: boolean;
222
+ isReadOnly: boolean;
214
223
  canExceedMaxLength: boolean;
215
224
  }, {}>, {
216
225
  prepend?(_: {
@@ -216,6 +216,7 @@ declare const _default: import("vue").DefineComponent<{
216
216
  }, {
217
217
  width: string | number;
218
218
  height: string | number;
219
+ colors: string[];
219
220
  words: string[];
220
221
  angleCount: number;
221
222
  minimumAngle: number;
@@ -223,7 +224,6 @@ declare const _default: import("vue").DefineComponent<{
223
224
  fontName: string;
224
225
  minimumFontSize: number;
225
226
  maximumFontSize: number;
226
- colors: string[];
227
227
  wordPadding: number;
228
228
  autoClear: boolean;
229
229
  animationDuration: number;
@@ -30,9 +30,6 @@ declare const _default: import("vue").DefineComponent<{
30
30
  type: PropType<boolean>;
31
31
  default: false;
32
32
  };
33
- /**
34
- * Loads the items from the server.
35
- */
36
33
  lazyMode: {
37
34
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
38
35
  default: "onDemand";
@@ -97,9 +94,6 @@ declare const _default: import("vue").DefineComponent<{
97
94
  type: PropType<boolean>;
98
95
  default: false;
99
96
  };
100
- /**
101
- * Loads the items from the server.
102
- */
103
97
  lazyMode: {
104
98
  type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
105
99
  default: "onDemand";
@@ -0,0 +1,221 @@
1
+ import { Enumerable } from "@Obsidian/Utility/linq";
2
+ import { RockDateTime } from "@Obsidian/Utility/rockDateTime";
3
+ export declare const LabelDateFormat: {
4
+ readonly Auto: "auto";
5
+ readonly Day: "day";
6
+ readonly Week: "week";
7
+ readonly Month: "month";
8
+ readonly Year: "year";
9
+ };
10
+ export declare const LabelDateFormatDescription: Record<string, string>;
11
+ export type LabelDateFormat = typeof LabelDateFormat[keyof typeof LabelDateFormat];
12
+ export declare const LegendPosition: {
13
+ readonly Top: "top";
14
+ readonly Bottom: "bottom";
15
+ readonly Left: "left";
16
+ readonly Right: "right";
17
+ };
18
+ export declare const LegendPositionDescription: Record<string, string>;
19
+ export type LegendPosition = typeof LegendPosition[keyof typeof LegendPosition];
20
+ export declare const LegendAlign: {
21
+ readonly Start: "start";
22
+ readonly Center: "center";
23
+ readonly End: "end";
24
+ };
25
+ export declare const LegendAlignDescription: Record<string, string>;
26
+ export type LegendAlign = typeof LegendAlign[keyof typeof LegendAlign];
27
+ export type Legend = {
28
+ hidden?: boolean | undefined;
29
+ position?: LegendPosition | undefined;
30
+ align?: LegendAlign | undefined;
31
+ };
32
+ export type TimeInput = string | number | RockDateTime;
33
+ export type XYPoint = {
34
+ x: TimeInput;
35
+ y: number | null;
36
+ };
37
+ export type AlignDataResult = {
38
+ labels: string[];
39
+ values: (number | null)[][];
40
+ };
41
+ export type TooltipContext = {
42
+ label: string;
43
+ formattedLabel: string;
44
+ value: number | null;
45
+ formattedValue: string;
46
+ seriesLabel: string;
47
+ };
48
+ export type TooltipCallback = (context: TooltipContext) => string;
49
+ export type LineSeries = {
50
+ label: string;
51
+ data: (number | null)[];
52
+ color?: string | undefined;
53
+ isUnfilled?: boolean | undefined;
54
+ isLinear?: boolean | undefined;
55
+ lineStyle?: LineStyle | undefined;
56
+ };
57
+ export declare const LineStyle: {
58
+ readonly Solid: "solid";
59
+ readonly Dashed: "dashed";
60
+ readonly Dotted: "dotted";
61
+ };
62
+ export declare const LineStyleDescription: Record<string, string>;
63
+ export type LineStyle = typeof LineStyle[keyof typeof LineStyle];
64
+ export type BarSeries = {
65
+ label: string;
66
+ data: (number | null)[];
67
+ /** Color of the bars. Can be a single value or an array for each data point. */
68
+ color?: string | string[] | undefined;
69
+ isUnfilled?: boolean | undefined;
70
+ /** Opacity of the bars (0-1). Can be a single value or an array for each data point. */
71
+ opacity?: number | number[] | undefined;
72
+ /** Configuration for the bar labels. */
73
+ barLabels?: BarLabelsConfig | undefined;
74
+ };
75
+ export type BarChartClickEvent = {
76
+ targets: {
77
+ seriesIndex: number;
78
+ labelIndex: number;
79
+ label: string;
80
+ series: BarSeries;
81
+ value: number | null;
82
+ }[];
83
+ };
84
+ export type BarLabelPosition = "inside" | "outside";
85
+ export type BarLabelContext = {
86
+ /** Dataset (series) label, e.g. “Revenue”. */
87
+ seriesName: string;
88
+ /** Category label on the cross-axis, e.g. “Jan”. */
89
+ label: string;
90
+ /** Formatted version of the label (may be `undefined`). */
91
+ formattedLabel: string | undefined;
92
+ /** Numeric value that determines bar length. */
93
+ value: number;
94
+ /** Formatted version of the value (may be `undefined`). */
95
+ formattedValue: string | undefined;
96
+ };
97
+ export type BarLabelAlignment = "start" | "center" | "end";
98
+ export type BarLabelSpec = {
99
+ /** Build the text for this line. Supports multiline with \n. */
100
+ formatter: (ctx: BarLabelContext) => string;
101
+ /** Color of the label text. */
102
+ color?: string | undefined;
103
+ };
104
+ export type BarLabelsConfig = Partial<Record<BarLabelPosition, BarLabelSpec>>;
105
+ /** Represents a pie chart series where each data + color combination is a slice of the pie. */
106
+ export type PieSeries = {
107
+ label: string;
108
+ data: number[];
109
+ colors?: string[] | undefined;
110
+ };
111
+ /** Represents a doughnut chart series where each data + color combination is a slice of the doughnut. */
112
+ export type DoughnutSeries = {
113
+ label: string;
114
+ data: number[];
115
+ colors?: string[] | undefined;
116
+ };
117
+ export declare class XYPointEnumerable extends Enumerable<XYPoint> {
118
+ /**
119
+ * Creates an XYPointEnumerable from a regular iterable (e.g., Array, Set).
120
+ * @param iterableFactory - A factory function that produces an Iterable<XYPoint>.
121
+ */
122
+ constructor(iterableFactory: () => Iterable<XYPoint>);
123
+ /**
124
+ * Creates an XYPointEnumerable from a regular iterable (e.g., Array, Set).
125
+ * @param iterable - An iterable to create the XYPointEnumerable from.
126
+ * @returns A new XYPointEnumerable instance.
127
+ */
128
+ static fromData(iterable: Iterable<XYPoint>): XYPointEnumerable;
129
+ /**
130
+ * Creates an XYPointEnumerable from a generator function.
131
+ * @param generator - A function that produces an IterableIterator.
132
+ * @returns A new XYPointEnumerable instance.
133
+ */
134
+ static fromData(generator: () => IterableIterator<XYPoint>): XYPointEnumerable;
135
+ /**
136
+ * Selects points as a decimal percentage [0-1] of the total.
137
+ *
138
+ * @param total The total value to calculate percentages against.
139
+ * @returns A new XYPointEnumerable instance with points represented as percentages.
140
+ *
141
+ * @example
142
+ * const data = XYPointEnumerable.fromData([
143
+ * { x: "2023-01-01T00:00:00", y: 3 },
144
+ * { x: "2023-01-02T00:00:00", y: 6 },
145
+ * { x: "2023-01-03T00:00:00", y: 10 },
146
+ * ]);
147
+ * const total = 10;
148
+ * const percentages = data.selectAsPercent(total).toArray();
149
+ * console.log(percentages);
150
+ * // [
151
+ * // { x: "2023-01-01T00:00:00", y: 0.3 },
152
+ * // { x: "2023-01-02T00:00:00", y: 0.6 },
153
+ * // { x: "2023-01-03T00:00:00", y: 1.0 },
154
+ * // ];
155
+ */
156
+ selectAsDecimalPercentage(total: number): XYPointEnumerable;
157
+ /**
158
+ * Squish data points by day, grouping them by the date part of the timestamp.
159
+ * @example
160
+ * const data = XYPointEnumerable.fromData([
161
+ * { x: "2023-01-01T09:00:00", y: 0 },
162
+ * { x: "2023-01-01T09:00:00", y: 1 },
163
+ * { x: "2023-01-01T10:00:00", y: 2 },
164
+ * { x: "2023-01-02T11:00:00", y: 3 },
165
+ * { x: "2023-01-03T12:00:00", y: 4 },
166
+ * ]);
167
+ * const squished = data.squishByDate().toArray();
168
+ * console.log(squished);
169
+ * // [
170
+ * // { x: "2023-01-01T00:00:00", y: 3 },
171
+ * // { x: "2023-01-02T00:00:00", y: 3 },
172
+ * // { x: "2023-01-03T00:00:00", y: 4 },
173
+ * // ];
174
+ */
175
+ selectSquishedByDate(): XYPointEnumerable;
176
+ /**
177
+ * Squish data points by date and time.
178
+ * @example
179
+ * const data = XYPointEnumerable.fromData([
180
+ * { x: "2023-01-01T09:00:00", y: 0 },
181
+ * { x: "2023-01-01T09:00:00", y: 1 },
182
+ * { x: "2023-01-01T10:00:00", y: 2 },
183
+ * { x: "2023-01-02T11:00:00", y: 3 },
184
+ * { x: "2023-01-03T12:00:00", y: 4 },
185
+ * ]);
186
+ * const squished = data.squishByDate().toArray();
187
+ * console.log(squished);
188
+ * // [
189
+ * // { x: "2023-01-01T09:00:00", y: 1 },
190
+ * // { x: "2023-01-01T10:00:00", y: 2 },
191
+ * // { x: "2023-01-02T11:00:00", y: 3 },
192
+ * // { x: "2023-01-03T12:00:00", y: 4 },
193
+ * // ];
194
+ */
195
+ selectSquishedByDateTime(): XYPointEnumerable;
196
+ /**
197
+ * Select accumulated data points, where each point's Y value is the cumulative sum of all previous Y values.
198
+ *
199
+ * @example
200
+ * const data = XYPointEnumerable.fromData([
201
+ * { x: "2023-01-01T00:00:00", y: 3 },
202
+ * { x: "2023-01-02T00:00:00", y: 3 },
203
+ * { x: "2023-01-03T00:00:00", y: 4 },
204
+ * ]);
205
+ * const accumulated = data.selectAccumulated().toArray();
206
+ * console.log(accumulated);
207
+ * // [
208
+ * // { x: "2023-01-01T00:00:00", y: 3 },
209
+ * // { x: "2023-01-02T00:00:00", y: 6 },
210
+ * // { x: "2023-01-03T00:00:00", y: 10 },
211
+ * // ];
212
+ */
213
+ selectAccumulated(): XYPointEnumerable;
214
+ selectWithStartingPoint(startingPoint: XYPoint, predicate: (a: XYPoint, b: XYPoint) => boolean): XYPointEnumerable;
215
+ }
216
+ /**
217
+ * Aligns data points by date, returning shared labels and per-series values (with nulls for gaps).
218
+ */
219
+ export declare function alignDataPointsByDate(dataPoints: XYPoint[][], { fillWith }?: {
220
+ fillWith: number | null | "previousValueOrNull" | "previousValueOrZero";
221
+ }): AlignDataResult;
@@ -0,0 +1,62 @@
1
+ import { Ref } from "vue";
2
+ /**
3
+ * Interface for a content section. This provides access to details about the
4
+ * section and allows modification of its state.
5
+ *
6
+ * This is an internal interface used by the content section components to manage
7
+ * state. It is not intended for use outside of the content section components.
8
+ */
9
+ export interface IContentSectionHolder {
10
+ /** The title of the section. */
11
+ readonly title: Readonly<Ref<string | undefined>>;
12
+ /** The icon for the section, if any. */
13
+ readonly icon: Readonly<Ref<string | undefined>>;
14
+ /** The anchor for the section, if any. This is used to link to the section. */
15
+ readonly anchor: Ref<string | undefined>;
16
+ /**
17
+ * Indicates whether the section is collapsed or expanded.
18
+ * This is used to control the visibility of the section content.
19
+ */
20
+ readonly isCollapsed: Ref<boolean>;
21
+ }
22
+ /**
23
+ * Interface for a content section container. This is used to manage the collection
24
+ * of content sections in a content section container.
25
+ *
26
+ * This is an internal interface used by the content section components to manage
27
+ * state. It is not intended for use outside of the content section components.
28
+ */
29
+ export interface IContentSectionContainerHolder {
30
+ addSection: (section: IContentSectionHolder) => void;
31
+ removeSection: (section: IContentSectionHolder) => void;
32
+ }
33
+ /**
34
+ * Provides a content section container holder to child components.
35
+ *
36
+ * This is an internal function used by the content section components to manage
37
+ * state. It is not intended for use outside of the content section components.
38
+ *
39
+ * @param holder The content section container holder to provide.
40
+ */
41
+ export declare function provideSectionContainer(holder: IContentSectionContainerHolder): void;
42
+ /**
43
+ * Retrieves the content section container holder from the current context.
44
+ *
45
+ * This is an internal function used by the content section components to manage
46
+ * state. It is not intended for use outside of the content section components.
47
+ *
48
+ * @returns The content section container holder, or a default implementation if not found.
49
+ */
50
+ export declare function useSectionContainer(): IContentSectionContainerHolder;
51
+ /**
52
+ * Creates a new content section holder with the specified title and icon.
53
+ *
54
+ * This is an internal function used by the content section components to manage
55
+ * state. It is not intended for use outside of the content section components.
56
+ *
57
+ * @param title The title of the section.
58
+ * @param icon The icon for the section, if any.
59
+ *
60
+ * @returns A new content section holder to be registered with the content section container.
61
+ */
62
+ export declare function createSection(title: Readonly<Ref<string | undefined>>, icon: Readonly<Ref<string | undefined>>, isCollapsed: Readonly<Ref<boolean>>): IContentSectionHolder;
@@ -0,0 +1,15 @@
1
+ import { StandardDynamicComponentProps } from "@Obsidian/Utility/component";
2
+ import { AutomationValueDefinitionBag } from "@Obsidian/ViewModels/Core/Automation/automationValueDefinitionBag";
3
+ import { PropType } from "vue";
4
+ type AutomationEventComponentProps = StandardDynamicComponentProps & {
5
+ mergeFields: {
6
+ type: PropType<AutomationValueDefinitionBag[]>;
7
+ required: true;
8
+ };
9
+ };
10
+ /**
11
+ * The standard props that are available to an instantiated component by the
12
+ * dynamicComponent.obs component.
13
+ */
14
+ export declare const automationEventComponentProps: AutomationEventComponentProps;
15
+ export {};
@@ -1,4 +1,4 @@
1
- import { FilterMode } from "./filterMode";
1
+ import { FilterMode } from "@Obsidian/Enums/Reporting/filterMode";
2
2
  import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
3
3
  /** The comparison types typically used for simple binary comparison. */
4
4
  export declare const binaryComparisonTypes: ComparisonType;