@rockrms/obsidian-framework 1.16.9-rc.1 → 17.0.43

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 (1455) hide show
  1. package/package.json +2 -2
  2. package/types/Controls/Grid/Cells/attributeCell.partial.obs.d.ts +28 -0
  3. package/types/Controls/Grid/Cells/booleanCell.partial.obs.d.ts +28 -2
  4. package/types/Controls/Grid/Cells/buttonCell.partial.obs.d.ts +28 -2
  5. package/types/Controls/Grid/Cells/copyCell.partial.obs.d.ts +29 -0
  6. package/types/Controls/Grid/Cells/currencyCell.partial.obs.d.ts +28 -2
  7. package/types/Controls/Grid/Cells/currencySkeletonCell.partial.obs.d.ts +20 -2
  8. package/types/Controls/Grid/Cells/dateCell.partial.obs.d.ts +28 -2
  9. package/types/Controls/Grid/Cells/dateSkeletonCell.partial.obs.d.ts +20 -2
  10. package/types/Controls/Grid/Cells/dateTimeCell.partial.obs.d.ts +28 -2
  11. package/types/Controls/Grid/Cells/dateTimeSkeletonCell.partial.obs.d.ts +20 -2
  12. package/types/Controls/Grid/Cells/deleteCell.partial.obs.d.ts +28 -2
  13. package/types/Controls/Grid/Cells/editCell.partial.obs.d.ts +28 -2
  14. package/types/Controls/Grid/Cells/highlightDetailCell.partial.obs.d.ts +28 -2
  15. package/types/Controls/Grid/Cells/highlightDetailSkeletonCell.partial.obs.d.ts +20 -2
  16. package/types/Controls/Grid/Cells/htmlCell.partial.obs.d.ts +45 -0
  17. package/types/Controls/Grid/Cells/htmlSkeletonCell.partial.obs.d.ts +20 -0
  18. package/types/Controls/Grid/Cells/labelCell.partial.obs.d.ts +28 -2
  19. package/types/Controls/Grid/Cells/labelSkeletonCell.partial.obs.d.ts +20 -2
  20. package/types/Controls/Grid/Cells/numberBadgeCell.partial.obs.d.ts +28 -2
  21. package/types/Controls/Grid/Cells/numberBadgeSkeletonCell.partial.obs.d.ts +20 -2
  22. package/types/Controls/Grid/Cells/numberCell.partial.obs.d.ts +28 -2
  23. package/types/Controls/Grid/Cells/numberSkeletonCell.partial.obs.d.ts +20 -2
  24. package/types/Controls/Grid/Cells/personCell.partial.obs.d.ts +28 -2
  25. package/types/Controls/Grid/Cells/personSkeletonCell.partial.obs.d.ts +20 -2
  26. package/types/Controls/Grid/Cells/reorderCell.partial.obs.d.ts +29 -2
  27. package/types/Controls/Grid/Cells/rockFieldCell.partial.obs.d.ts +28 -0
  28. package/types/Controls/Grid/Cells/securityCell.partial.obs.d.ts +29 -2
  29. package/types/Controls/Grid/Cells/selectCell.partial.obs.d.ts +28 -2
  30. package/types/Controls/Grid/Cells/selectHeaderCell.partial.obs.d.ts +20 -2
  31. package/types/Controls/Grid/Cells/textCell.partial.d.ts +28 -28
  32. package/types/Controls/Grid/Cells/textSkeletonCell.partial.obs.d.ts +20 -2
  33. package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +292 -53
  34. package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +255 -182
  35. package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +275 -206
  36. package/types/Controls/Grid/Columns/column.partial.d.ts +187 -170
  37. package/types/Controls/Grid/Columns/copyColumn.partial.d.ts +258 -0
  38. package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +291 -183
  39. package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +303 -195
  40. package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +303 -195
  41. package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +299 -224
  42. package/types/Controls/Grid/Columns/dynamicColumns.partial.d.ts +104 -104
  43. package/types/Controls/Grid/Columns/editColumn.partial.d.ts +281 -188
  44. package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +309 -204
  45. package/types/Controls/Grid/Columns/htmlColumn.partial.d.ts +327 -0
  46. package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +382 -243
  47. package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +468 -359
  48. package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +292 -183
  49. package/types/Controls/Grid/Columns/personColumn.partial.d.ts +356 -211
  50. package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +279 -194
  51. package/types/Controls/Grid/Columns/rockFieldColumn.partial.d.ts +273 -0
  52. package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +287 -214
  53. package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +284 -175
  54. package/types/Controls/Grid/Columns/textColumn.partial.d.ts +291 -235
  55. package/types/Controls/Grid/Filters/booleanFilter.partial.obs.d.ts +33 -7
  56. package/types/Controls/Grid/Filters/dateFilter.partial.obs.d.ts +33 -7
  57. package/types/Controls/Grid/Filters/numberFilter.partial.obs.d.ts +33 -7
  58. package/types/Controls/Grid/Filters/pickExistingFilter.partial.obs.d.ts +33 -7
  59. package/types/Controls/Grid/Filters/textFilter.partial.obs.d.ts +32 -6
  60. package/types/Controls/Grid/actionButton.partial.obs.d.ts +30 -30
  61. package/types/Controls/Grid/actionGroup.partial.obs.d.ts +32 -32
  62. package/types/Controls/Grid/columnHeaderCell.partial.obs.d.ts +65 -66
  63. package/types/Controls/Grid/columnHeaderRow.partial.obs.d.ts +94 -95
  64. package/types/Controls/Grid/dataCell.partial.obs.d.ts +52 -52
  65. package/types/Controls/Grid/dataRow.partial.obs.d.ts +111 -112
  66. package/types/Controls/Grid/dataRows.partial.obs.d.ts +153 -154
  67. package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +135 -135
  68. package/types/Controls/Grid/grid.partial.obs.d.ts +751 -718
  69. package/types/Controls/Grid/lightFooterRow.partial.obs.d.ts +34 -34
  70. package/types/Controls/Grid/pagePicker.partial.obs.d.ts +31 -31
  71. package/types/Controls/Grid/pageSizePicker.partial.obs.d.ts +41 -41
  72. package/types/Controls/Grid/pagerRow.partial.obs.d.ts +72 -73
  73. package/types/Controls/Grid/popupActionButton.partial.obs.d.ts +34 -34
  74. package/types/Controls/Grid/popupActionGroup.partial.obs.d.ts +28 -28
  75. package/types/Controls/Grid/skeletonCell.partial.obs.d.ts +26 -26
  76. package/types/Controls/Grid/skeletonRow.partial.obs.d.ts +46 -46
  77. package/types/Controls/Grid/skeletonRows.partial.obs.d.ts +44 -44
  78. package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +144 -145
  79. package/types/Controls/Grid/virtualScroller.partial.d.ts +172 -172
  80. package/types/Controls/Internal/EmailEditor/accordion.partial.obs.d.ts +60 -0
  81. package/types/Controls/Internal/EmailEditor/accordionGroup.partial.obs.d.ts +22 -0
  82. package/types/Controls/Internal/EmailEditor/api.d.ts +43 -0
  83. package/types/Controls/Internal/EmailEditor/clearStyleButton.partial.obs.d.ts +2 -0
  84. package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +83 -0
  85. package/types/Controls/Internal/EmailEditor/emailDesigner.partial.obs.d.ts +95 -0
  86. package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +122 -0
  87. package/types/Controls/Internal/EmailEditor/emailIFrame.partial.obs.d.ts +119 -0
  88. package/types/Controls/Internal/EmailEditor/emailSectionModal.partial.obs.d.ts +46 -0
  89. package/types/Controls/Internal/EmailEditor/flatPanel.partial.obs.d.ts +41 -0
  90. package/types/Controls/Internal/EmailEditor/horizontalAlignmentPicker.partial.obs.d.ts +76 -0
  91. package/types/Controls/Internal/EmailEditor/lineHeightPicker.partial.obs.d.ts +72 -0
  92. package/types/Controls/Internal/EmailEditor/multiSelectButtonGroup.partial.obs.d.ts +128 -0
  93. package/types/Controls/Internal/EmailEditor/overlay.obs.d.ts +68 -0
  94. package/types/Controls/Internal/EmailEditor/properties/alignAttributeProperty.partial.obs.d.ts +23 -0
  95. package/types/Controls/Internal/EmailEditor/properties/altAttributeProperty.partial.obs.d.ts +23 -0
  96. package/types/Controls/Internal/EmailEditor/properties/anchorPropertyGroup.partial.obs.d.ts +13 -0
  97. package/types/Controls/Internal/EmailEditor/properties/backgroundColorProperty.partial.obs.d.ts +64 -0
  98. package/types/Controls/Internal/EmailEditor/properties/backgroundFitPropertyGroup.partial.obs.d.ts +52 -0
  99. package/types/Controls/Internal/EmailEditor/properties/backgroundImageProperty.partial.obs.d.ts +53 -0
  100. package/types/Controls/Internal/EmailEditor/properties/backgroundImagePropertyGroup.partial.obs.d.ts +37 -0
  101. package/types/Controls/Internal/EmailEditor/properties/backgroundSizeProperty.partial.obs.d.ts +52 -0
  102. package/types/Controls/Internal/EmailEditor/properties/borderColorProperty.partial.obs.d.ts +70 -0
  103. package/types/Controls/Internal/EmailEditor/properties/borderPropertyGroup.partial.obs.d.ts +56 -0
  104. package/types/Controls/Internal/EmailEditor/properties/borderRadiusProperty.partial.obs.d.ts +52 -0
  105. package/types/Controls/Internal/EmailEditor/properties/borderStyleProperty.partial.obs.d.ts +70 -0
  106. package/types/Controls/Internal/EmailEditor/properties/borderWidthProperty.partial.obs.d.ts +70 -0
  107. package/types/Controls/Internal/EmailEditor/properties/buttonWidthProperty.partial.obs.d.ts +33 -0
  108. package/types/Controls/Internal/EmailEditor/properties/checkBoxListProperty.partial.obs.d.ts +23 -0
  109. package/types/Controls/Internal/EmailEditor/properties/colorPickerProperty.partial.obs.d.ts +14 -0
  110. package/types/Controls/Internal/EmailEditor/properties/colorProperty.partial.obs.d.ts +56 -0
  111. package/types/Controls/Internal/EmailEditor/properties/communicationTemplateProperty.partial.obs.d.ts +36 -0
  112. package/types/Controls/Internal/EmailEditor/properties/contentAreaAlignmentProperty.partial.obs.d.ts +23 -0
  113. package/types/Controls/Internal/EmailEditor/properties/contentAreaBackgroundColorProperty.partial.obs.d.ts +23 -0
  114. package/types/Controls/Internal/EmailEditor/properties/displayProperty.partial.obs.d.ts +70 -0
  115. package/types/Controls/Internal/EmailEditor/properties/dividerColorProperty.partial.obs.d.ts +52 -0
  116. package/types/Controls/Internal/EmailEditor/properties/dividerStyleProperty.partial.obs.d.ts +52 -0
  117. package/types/Controls/Internal/EmailEditor/properties/dividerThicknessProperty.partial.obs.d.ts +52 -0
  118. package/types/Controls/Internal/EmailEditor/properties/dropDownListProperty.partial.obs.d.ts +23 -0
  119. package/types/Controls/Internal/EmailEditor/properties/fontFamilyProperty.partial.obs.d.ts +52 -0
  120. package/types/Controls/Internal/EmailEditor/properties/fontPropertyGroup.partial.obs.d.ts +67 -0
  121. package/types/Controls/Internal/EmailEditor/properties/fontSizeProperty.partial.obs.d.ts +52 -0
  122. package/types/Controls/Internal/EmailEditor/properties/heightProperty.partial.obs.d.ts +52 -0
  123. package/types/Controls/Internal/EmailEditor/properties/horizontalAlignmentMarginProperty.partial.obs.d.ts +52 -0
  124. package/types/Controls/Internal/EmailEditor/properties/horizontalAlignmentProperty.partial.obs.d.ts +14 -0
  125. package/types/Controls/Internal/EmailEditor/properties/horizontalAlignmentTextAlignProperty.partial.obs.d.ts +58 -0
  126. package/types/Controls/Internal/EmailEditor/properties/hrefAttributeProperty.partial.obs.d.ts +37 -0
  127. package/types/Controls/Internal/EmailEditor/properties/imageUploaderProperty.partial.obs.d.ts +25 -0
  128. package/types/Controls/Internal/EmailEditor/properties/inlineSwitchProperty.partial.obs.d.ts +30 -0
  129. package/types/Controls/Internal/EmailEditor/properties/innerHtmlProperty.partial.obs.d.ts +60 -0
  130. package/types/Controls/Internal/EmailEditor/properties/lineHeightProperty.partial.obs.d.ts +52 -0
  131. package/types/Controls/Internal/EmailEditor/properties/marginProperty.partial.obs.d.ts +52 -0
  132. package/types/Controls/Internal/EmailEditor/properties/numberBoxProperty.partial.obs.d.ts +32 -0
  133. package/types/Controls/Internal/EmailEditor/properties/paddingProperty.partial.obs.d.ts +52 -0
  134. package/types/Controls/Internal/EmailEditor/properties/rangeSliderProperty.partial.obs.d.ts +24 -0
  135. package/types/Controls/Internal/EmailEditor/properties/sectionColumnPropertyGroup.partial.obs.d.ts +33 -0
  136. package/types/Controls/Internal/EmailEditor/properties/sectionColumnsPropertyGroup.partial.obs.d.ts +25 -0
  137. package/types/Controls/Internal/EmailEditor/properties/shorthandColorPickerProperty.partial.obs.d.ts +69 -0
  138. package/types/Controls/Internal/EmailEditor/properties/shorthandDropDownListProperty.partial.obs.d.ts +78 -0
  139. package/types/Controls/Internal/EmailEditor/properties/shorthandNumberBoxProperty.partial.obs.d.ts +77 -0
  140. package/types/Controls/Internal/EmailEditor/properties/switchProperty.partial.obs.d.ts +24 -0
  141. package/types/Controls/Internal/EmailEditor/properties/tableColumnGapProperty.partial.obs.d.ts +23 -0
  142. package/types/Controls/Internal/EmailEditor/properties/textAlignProperty.partial.obs.d.ts +52 -0
  143. package/types/Controls/Internal/EmailEditor/properties/textBoxProperty.partial.obs.d.ts +31 -0
  144. package/types/Controls/Internal/EmailEditor/properties/textContentProperty.partial.obs.d.ts +17 -0
  145. package/types/Controls/Internal/EmailEditor/properties/textFormatProperty.partial.obs.d.ts +52 -0
  146. package/types/Controls/Internal/EmailEditor/properties/textTransformProperty.partial.obs.d.ts +52 -0
  147. package/types/Controls/Internal/EmailEditor/properties/togglablePropertyGroup.partial.obs.d.ts +37 -0
  148. package/types/Controls/Internal/EmailEditor/properties/widthProperty.partial.obs.d.ts +90 -0
  149. package/types/Controls/Internal/EmailEditor/propertyPanels/adaptiveMessageComponentPropertyPanel.partial.obs.d.ts +21 -0
  150. package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +21 -0
  151. package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +29 -0
  152. package/types/Controls/Internal/EmailEditor/propertyPanels/componentPropertyPanelBase.partial.obs.d.ts +66 -0
  153. package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +23 -0
  154. package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +38 -0
  155. package/types/Controls/Internal/EmailEditor/propertyPanels/imageComponentPropertyPanel.partial.obs.d.ts +29 -0
  156. package/types/Controls/Internal/EmailEditor/propertyPanels/rowComponentPropertyPanel.partial.obs.d.ts +21 -0
  157. package/types/Controls/Internal/EmailEditor/propertyPanels/rsvpComponentPropertyPanel.partial.obs.d.ts +29 -0
  158. package/types/Controls/Internal/EmailEditor/propertyPanels/sectionComponentPropertyPanel.partial.obs.d.ts +36 -0
  159. package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +56 -0
  160. package/types/Controls/Internal/EmailEditor/propertyPanels/titleComponentPropertyPanel.partial.obs.d.ts +23 -0
  161. package/types/Controls/Internal/EmailEditor/propertyPanels/videoComponentPropertyPanel.partial.obs.d.ts +29 -0
  162. package/types/Controls/Internal/EmailEditor/providers.partial.d.ts +69 -0
  163. package/types/Controls/Internal/EmailEditor/sectionColumnDivider.partial.obs.d.ts +17 -0
  164. package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +113 -0
  165. package/types/Controls/Internal/EmailEditor/singleSelectButtonGroup.partial.obs.d.ts +138 -0
  166. package/types/Controls/Internal/EmailEditor/textAlignPicker.partial.obs.d.ts +72 -0
  167. package/types/Controls/Internal/EmailEditor/textFormatPicker.partial.obs.d.ts +97 -0
  168. package/types/Controls/Internal/EmailEditor/textTransformPicker.partial.obs.d.ts +72 -0
  169. package/types/Controls/Internal/EmailEditor/types.d.ts +8 -0
  170. package/types/Controls/Internal/EmailEditor/types.partial.d.ts +223 -0
  171. package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +304 -0
  172. package/types/Controls/Internal/LearningActivity/acknowledgmentLearningActivity.obs.d.ts +53 -0
  173. package/types/Controls/Internal/LearningActivity/assessmentItemMultipleChoice.obs.d.ts +39 -0
  174. package/types/Controls/Internal/LearningActivity/assessmentItemSection.obs.d.ts +39 -0
  175. package/types/Controls/Internal/LearningActivity/assessmentItemShortAnswer.obs.d.ts +78 -0
  176. package/types/Controls/Internal/LearningActivity/assessmentLearningActivity.obs.d.ts +53 -0
  177. package/types/Controls/Internal/LearningActivity/assessmentLearningActivity.partial.d.ts +32 -0
  178. package/types/Controls/Internal/LearningActivity/fileUploadLearningActivity.obs.d.ts +53 -0
  179. package/types/Controls/Internal/LearningActivity/learningActivity.d.ts +157 -0
  180. package/types/Controls/Internal/LearningActivity/pointAssessmentLearningActivity.obs.d.ts +53 -0
  181. package/types/Controls/Internal/LearningActivity/videoWatchLearningActivity.obs.d.ts +53 -0
  182. package/types/Controls/Internal/SankeyDiagram/sankeyDiagram.obs.d.ts +53 -0
  183. package/types/Controls/Internal/SankeyDiagram/sankeyDiagramLevel.partial.obs.d.ts +54 -0
  184. package/types/Controls/Internal/assetPicker.obs.d.ts +74 -0
  185. package/types/Controls/Internal/attributeMatrixEditor.obs.d.ts +151 -0
  186. package/types/Controls/Internal/definedValueEditor.obs.d.ts +47 -0
  187. package/types/Controls/Internal/groupMemberRequirementCard.obs.d.ts +88 -0
  188. package/types/Controls/Internal/mobileNavigationActionEditor.obs.d.ts +76 -67
  189. package/types/Controls/Internal/nmiGatewayControl.obs.d.ts +36 -38
  190. package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +30 -30
  191. package/types/Controls/Internal/pageDebugTimings.obs.d.ts +14 -14
  192. package/types/Controls/Internal/reminderButton.obs.d.ts +54 -0
  193. package/types/Controls/Internal/tag.obs.d.ts +30 -30
  194. package/types/Controls/Internal/testGatewayControl.obs.d.ts +23 -24
  195. package/types/Controls/Internal/treeListItem.obs.d.ts +122 -87
  196. package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +53 -53
  197. package/types/Controls/Internal/universalItemSearchPickerResult.partial.obs.d.ts +28 -28
  198. package/types/Controls/Internal/valueFilterItem.obs.d.ts +40 -0
  199. package/types/Controls/NoteEditor/assetManagerPlugin.partial.obs.d.ts +4 -0
  200. package/types/Controls/NoteEditor/countDownPlugin.partial.obs.d.ts +43 -0
  201. package/types/Controls/NoteEditor/editSourceCodePlugin.partial.obs.d.ts +152 -0
  202. package/types/Controls/NoteEditor/emojisPlugin.partial.obs.d.ts +4 -0
  203. package/types/Controls/NoteEditor/fileBrowserPlugin.partial.obs.d.ts +37 -0
  204. package/types/Controls/NoteEditor/imageBrowserPlugin.partial.obs.d.ts +37 -0
  205. package/types/Controls/NoteEditor/lavaLanguagePlugin.partial.obs.d.ts +4 -0
  206. package/types/Controls/NoteEditor/mergeFieldPlugin.partial.obs.d.ts +88 -0
  207. package/types/Controls/NoteEditor/metaTagsPlugin.partial.obs.d.ts +4 -0
  208. package/types/Controls/NoteEditor/paragraphPlugin.partial.obs.d.ts +4 -0
  209. package/types/Controls/NoteEditor/pasteAsPlainTextPlugin.partial.obs.d.ts +4 -0
  210. package/types/Controls/NoteEditor/shortLinkPlugin.partial.obs.d.ts +109 -0
  211. package/types/Controls/NoteEditor/stylesheetsPlugin.partial.obs.d.ts +108 -0
  212. package/types/Controls/NoteEditor/toolbarCharCountPlugin.partial.obs.d.ts +60 -0
  213. package/types/Controls/NoteEditor/toolbarCountDownPlugin.partial.obs.d.ts +69 -0
  214. package/types/Controls/NoteEditor/toolbarLabelPlugin.partial.obs.d.ts +11 -0
  215. package/types/Controls/NoteEditor/toolbarSpacerPlugin.partial.obs.d.ts +4 -0
  216. package/types/Controls/NoteEditor/types.partial.d.ts +17 -0
  217. package/types/Controls/NoteEditor/utils.partial.d.ts +14 -0
  218. package/types/Controls/accountPicker.obs.d.ts +137 -128
  219. package/types/Controls/achievementTypePicker.obs.d.ts +139 -130
  220. package/types/Controls/adaptiveMessagePicker.obs.d.ts +139 -0
  221. package/types/Controls/addressControl.obs.d.ts +110 -110
  222. package/types/Controls/aiProviderPicker.obs.d.ts +139 -0
  223. package/types/Controls/assessmentTypePicker.obs.d.ts +149 -139
  224. package/types/Controls/assetStorageProviderPicker.obs.d.ts +139 -130
  225. package/types/Controls/attributeEditor.obs.d.ts +116 -107
  226. package/types/Controls/attributeValuesContainer.obs.d.ts +142 -142
  227. package/types/Controls/auditDetail.obs.d.ts +37 -37
  228. package/types/Controls/badge.obs.d.ts +47 -0
  229. package/types/Controls/badgeComponentPicker.obs.d.ts +147 -138
  230. package/types/Controls/badgeControl.obs.d.ts +35 -0
  231. package/types/Controls/badgeList.obs.d.ts +41 -41
  232. package/types/Controls/badgePicker.obs.d.ts +148 -139
  233. package/types/Controls/baseAsyncPicker.obs.d.ts +212 -196
  234. package/types/Controls/basicTimePicker.obs.d.ts +38 -38
  235. package/types/Controls/billboard.obs.d.ts +72 -0
  236. package/types/Controls/binaryFilePicker.obs.d.ts +147 -138
  237. package/types/Controls/binaryFileTypePicker.obs.d.ts +139 -130
  238. package/types/Controls/birthdayPicker.obs.d.ts +2 -2
  239. package/types/Controls/blockTemplatePicker.obs.d.ts +101 -93
  240. package/types/Controls/bulletedList.obs.d.ts +51 -0
  241. package/types/Controls/buttonDropDownList.obs.d.ts +127 -108
  242. package/types/Controls/buttonGroup.obs.d.ts +127 -123
  243. package/types/Controls/cacheabilityPicker.obs.d.ts +18 -18
  244. package/types/Controls/campusAccountAmountPicker.obs.d.ts +252 -255
  245. package/types/Controls/campusPicker.obs.d.ts +186 -178
  246. package/types/Controls/captcha.obs.d.ts +109 -82
  247. package/types/Controls/categorizedValuePicker.obs.d.ts +94 -85
  248. package/types/Controls/categorizedValuePickerDropDownLevel.obs.d.ts +94 -85
  249. package/types/Controls/categoryPicker.obs.d.ts +60 -60
  250. package/types/Controls/categoryTree.obs.d.ts +134 -0
  251. package/types/Controls/chart.obs.d.ts +170 -0
  252. package/types/Controls/checkBox.obs.d.ts +51 -51
  253. package/types/Controls/checkBoxList.obs.d.ts +146 -88
  254. package/types/Controls/codeEditor.obs.d.ts +100 -89
  255. package/types/Controls/colorPicker.obs.d.ts +55 -45
  256. package/types/Controls/colorSelector.obs.d.ts +119 -110
  257. package/types/Controls/componentFromUrl.obs.d.ts +13 -13
  258. package/types/Controls/componentPicker.obs.d.ts +148 -139
  259. package/types/Controls/conditionalWell.obs.d.ts +9 -0
  260. package/types/Controls/connectionRequestPicker.obs.d.ts +36 -36
  261. package/types/Controls/connectionStatus.obs.d.ts +28 -28
  262. package/types/Controls/contentChannelItemPicker.obs.d.ts +162 -157
  263. package/types/Controls/contentDropDownPicker.obs.d.ts +415 -404
  264. package/types/Controls/copyButton.obs.d.ts +42 -42
  265. package/types/Controls/countdownTimer.obs.d.ts +19 -19
  266. package/types/Controls/currencyBox.obs.d.ts +64 -64
  267. package/types/Controls/customSelect.obs.d.ts +572 -0
  268. package/types/Controls/dataViewPicker.obs.d.ts +156 -147
  269. package/types/Controls/datePartsPicker.obs.d.ts +86 -86
  270. package/types/Controls/datePicker.obs.d.ts +194 -185
  271. package/types/Controls/datePickerBase.obs.d.ts +137 -148
  272. package/types/Controls/dateRangePicker.obs.d.ts +30 -30
  273. package/types/Controls/dateTimePicker.obs.d.ts +46 -58
  274. package/types/Controls/dayOfWeekPicker.obs.d.ts +28 -28
  275. package/types/Controls/definedValuePicker.obs.d.ts +165 -158
  276. package/types/Controls/dialog.obs.d.ts +45 -36
  277. package/types/Controls/dropDownContent.obs.d.ts +49 -49
  278. package/types/Controls/dropDownList.obs.d.ts +240 -207
  279. package/types/Controls/dropDownMenu.obs.d.ts +81 -45
  280. package/types/Controls/electronicSignature.obs.d.ts +54 -55
  281. package/types/Controls/emailBox.obs.d.ts +40 -40
  282. package/types/Controls/emailEditor.d.ts +5 -0
  283. package/types/Controls/entityPicker.obs.d.ts +142 -0
  284. package/types/Controls/entityTypePicker.obs.d.ts +191 -139
  285. package/types/Controls/ethnicityPicker.obs.d.ts +163 -132
  286. package/types/Controls/eventCalendarPicker.obs.d.ts +141 -132
  287. package/types/Controls/eventItemPicker.obs.d.ts +148 -139
  288. package/types/Controls/expanderPanel.obs.d.ts +77 -77
  289. package/types/Controls/fieldFilterContainer.obs.d.ts +19 -19
  290. package/types/Controls/fieldFilterEditor.obs.d.ts +68 -68
  291. package/types/Controls/fieldFilterRuleRow.obs.d.ts +52 -53
  292. package/types/Controls/fieldTypeEditor.obs.d.ts +46 -38
  293. package/types/Controls/fieldTypePicker.obs.d.ts +139 -130
  294. package/types/Controls/fileAssetManager.obs.d.ts +148 -0
  295. package/types/Controls/fileUploader.obs.d.ts +114 -71
  296. package/types/Controls/financialGatewayPicker.obs.d.ts +157 -148
  297. package/types/Controls/financialStatementTemplatePicker.obs.d.ts +139 -130
  298. package/types/Controls/firstNameTextBox.obs.d.ts +89 -0
  299. package/types/Controls/following.obs.d.ts +37 -37
  300. package/types/Controls/fullscreen.obs.d.ts +47 -47
  301. package/types/Controls/gatewayControl.obs.d.ts +39 -41
  302. package/types/Controls/gatewayControlEvents.obs.d.ts +11 -13
  303. package/types/Controls/genderPicker.obs.d.ts +158 -0
  304. package/types/Controls/geoPicker.obs.d.ts +173 -149
  305. package/types/Controls/geoPickerMap.obs.d.ts +104 -105
  306. package/types/Controls/gradePicker.obs.d.ts +163 -148
  307. package/types/Controls/grid.d.ts +84 -77
  308. package/types/Controls/groupAndRolePicker.obs.d.ts +196 -187
  309. package/types/Controls/groupMemberPicker.obs.d.ts +148 -139
  310. package/types/Controls/groupMemberRequirementsContainer.obs.d.ts +54 -0
  311. package/types/Controls/groupPicker.obs.d.ts +72 -72
  312. package/types/Controls/groupRolePicker.obs.d.ts +156 -155
  313. package/types/Controls/groupTypeGroupPicker.obs.d.ts +188 -165
  314. package/types/Controls/groupTypePicker.obs.d.ts +174 -165
  315. package/types/Controls/helpBlock.obs.d.ts +13 -13
  316. package/types/Controls/highlightLabel.obs.d.ts +58 -0
  317. package/types/Controls/htmlEditor.obs.d.ts +252 -0
  318. package/types/Controls/imageEditor.obs.d.ts +174 -145
  319. package/types/Controls/imageUploader.obs.d.ts +138 -98
  320. package/types/Controls/inlineCheckBox.obs.d.ts +25 -25
  321. package/types/Controls/inlineRangeSlider.obs.d.ts +63 -54
  322. package/types/Controls/inlineSwitch.obs.d.ts +53 -44
  323. package/types/Controls/inputGroupDropDown.obs.d.ts +29 -29
  324. package/types/Controls/interactionChannelInteractionComponentPicker.obs.d.ts +50 -39
  325. package/types/Controls/interactionChannelPicker.obs.d.ts +139 -130
  326. package/types/Controls/interactionComponentPicker.obs.d.ts +148 -139
  327. package/types/Controls/intervalPicker.obs.d.ts +96 -87
  328. package/types/Controls/itemsWithPreAndPostHtml.obs.d.ts +22 -22
  329. package/types/Controls/javaScriptAnchor.obs.d.ts +9 -9
  330. package/types/Controls/jsonFieldsBuilder.obs.d.ts +112 -0
  331. package/types/Controls/keyValueList.obs.d.ts +129 -120
  332. package/types/Controls/kpi.obs.d.ts +85 -85
  333. package/types/Controls/lavaCommandPicker.obs.d.ts +148 -139
  334. package/types/Controls/listBox.obs.d.ts +65 -65
  335. package/types/Controls/listItems.obs.d.ts +94 -85
  336. package/types/Controls/loading.obs.d.ts +32 -32
  337. package/types/Controls/loadingIndicator.obs.d.ts +28 -28
  338. package/types/Controls/locationAddressPicker.obs.d.ts +111 -83
  339. package/types/Controls/locationItemPicker.obs.d.ts +68 -52
  340. package/types/Controls/locationList.obs.d.ts +184 -175
  341. package/types/Controls/locationPicker.obs.d.ts +111 -103
  342. package/types/Controls/markdownEditor.obs.d.ts +27 -0
  343. package/types/Controls/mediaElementPicker.obs.d.ts +237 -217
  344. package/types/Controls/mediaPlayer.obs.d.ts +359 -0
  345. package/types/Controls/mediaSelector.obs.d.ts +116 -107
  346. package/types/Controls/mergeFieldPicker.obs.d.ts +139 -90
  347. package/types/Controls/mergeTemplatePicker.obs.d.ts +38 -38
  348. package/types/Controls/metricCategoryPicker.obs.d.ts +37 -37
  349. package/types/Controls/metricItemPicker.obs.d.ts +46 -46
  350. package/types/Controls/modal.obs.d.ts +154 -148
  351. package/types/Controls/modalAlert.obs.d.ts +48 -48
  352. package/types/Controls/monthDayPicker.obs.d.ts +18 -18
  353. package/types/Controls/monthYearPicker.obs.d.ts +18 -18
  354. package/types/Controls/noteTextEditor.obs.d.ts +115 -106
  355. package/types/Controls/notificationBox.obs.d.ts +49 -49
  356. package/types/Controls/numberBox.obs.d.ts +109 -109
  357. package/types/Controls/numberRangeBox.obs.d.ts +43 -43
  358. package/types/Controls/numberUpDown.obs.d.ts +102 -93
  359. package/types/Controls/numberUpDownBase.obs.d.ts +45 -45
  360. package/types/Controls/numberUpDownGroup.obs.d.ts +26 -26
  361. package/types/Controls/pageNavButtons.obs.d.ts +104 -0
  362. package/types/Controls/pagePicker.obs.d.ts +159 -150
  363. package/types/Controls/panel.obs.d.ts +196 -171
  364. package/types/Controls/pdfViewer.obs.d.ts +68 -0
  365. package/types/Controls/personBasicEditor.obs.d.ts +233 -0
  366. package/types/Controls/personLink.obs.d.ts +60 -60
  367. package/types/Controls/personPicker.obs.d.ts +100 -90
  368. package/types/Controls/phoneNumberBox.obs.d.ts +100 -92
  369. package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +87 -78
  370. package/types/Controls/popOver.obs.d.ts +85 -85
  371. package/types/Controls/progressBar.obs.d.ts +23 -13
  372. package/types/Controls/progressTracker.obs.d.ts +29 -29
  373. package/types/Controls/progressTrackerSegment.obs.d.ts +46 -46
  374. package/types/Controls/racePicker.obs.d.ts +163 -132
  375. package/types/Controls/radioButton.obs.d.ts +101 -0
  376. package/types/Controls/radioButtonList.obs.d.ts +98 -98
  377. package/types/Controls/rangeSlider.obs.d.ts +127 -102
  378. package/types/Controls/rating.obs.d.ts +32 -32
  379. package/types/Controls/registrationInstanceBasePicker.obs.d.ts +158 -143
  380. package/types/Controls/registrationInstancePicker.obs.d.ts +39 -39
  381. package/types/Controls/registrationTemplatePicker.obs.d.ts +28 -28
  382. package/types/Controls/registryEntry.obs.d.ts +94 -91
  383. package/types/Controls/reminderTypePicker.obs.d.ts +158 -143
  384. package/types/Controls/remoteAuthsPicker.obs.d.ts +139 -130
  385. package/types/Controls/reportPicker.obs.d.ts +52 -52
  386. package/types/Controls/rockAttributeFilter.obs.d.ts +52 -52
  387. package/types/Controls/rockButton.obs.d.ts +133 -124
  388. package/types/Controls/rockField.obs.d.ts +84 -82
  389. package/types/Controls/rockForm.obs.d.ts +71 -73
  390. package/types/Controls/rockFormField.obs.d.ts +117 -91
  391. package/types/Controls/rockFormFieldError.obs.d.ts +21 -21
  392. package/types/Controls/rockLabel.obs.d.ts +22 -22
  393. package/types/Controls/rockLiteral.obs.d.ts +31 -31
  394. package/types/Controls/rockSuspense.obs.d.ts +40 -42
  395. package/types/Controls/rockValidation.obs.d.ts +16 -16
  396. package/types/Controls/saveFinancialAccountForm.obs.d.ts +46 -46
  397. package/types/Controls/scheduleBuilder.obs.d.ts +99 -68
  398. package/types/Controls/schedulePicker.obs.d.ts +37 -28
  399. package/types/Controls/searchField.obs.d.ts +17 -0
  400. package/types/Controls/sectionContainer.obs.d.ts +54 -54
  401. package/types/Controls/sectionHeader.obs.d.ts +40 -40
  402. package/types/Controls/securityButton.obs.d.ts +85 -0
  403. package/types/Controls/slidingDateRangePicker.obs.d.ts +46 -46
  404. package/types/Controls/smsMessageEditor.obs.d.ts +226 -0
  405. package/types/Controls/socialSecurityNumberBox.obs.d.ts +23 -23
  406. package/types/Controls/standardFilterDaysBack.obs.d.ts +75 -66
  407. package/types/Controls/staticFormControl.obs.d.ts +23 -12
  408. package/types/Controls/stepProgramPicker.obs.d.ts +139 -130
  409. package/types/Controls/stepProgramStepStatusPicker.obs.d.ts +49 -50
  410. package/types/Controls/stepProgramStepTypePicker.obs.d.ts +49 -50
  411. package/types/Controls/stepStatusPicker.obs.d.ts +154 -139
  412. package/types/Controls/stepTypePicker.obs.d.ts +148 -139
  413. package/types/Controls/streakTypePicker.obs.d.ts +139 -130
  414. package/types/Controls/structuredContentEditor.obs.d.ts +103 -85
  415. package/types/Controls/switch.obs.d.ts +27 -27
  416. package/types/Controls/tabbedBar.obs.d.ts +42 -42
  417. package/types/Controls/tabbedContent.obs.d.ts +73 -22
  418. package/types/Controls/tabbedModal.obs.d.ts +56 -0
  419. package/types/Controls/tagList.obs.d.ts +120 -116
  420. package/types/Controls/termDescription.obs.d.ts +40 -0
  421. package/types/Controls/textBox.obs.d.ts +234 -186
  422. package/types/Controls/timeIntervalPicker.obs.d.ts +76 -67
  423. package/types/Controls/timePicker.obs.d.ts +87 -78
  424. package/types/Controls/toggle.obs.d.ts +71 -71
  425. package/types/Controls/transitionVerticalCollapse.obs.d.ts +22 -22
  426. package/types/Controls/treeItemPicker.obs.d.ts +157 -132
  427. package/types/Controls/treeList.obs.d.ts +139 -105
  428. package/types/Controls/urlLinkBox.obs.d.ts +31 -31
  429. package/types/Controls/valueDetailList.obs.d.ts +14 -14
  430. package/types/Controls/valueFilter.obs.d.ts +107 -0
  431. package/types/Controls/valueList.obs.d.ts +65 -65
  432. package/types/Controls/warningBlock.obs.d.ts +9 -0
  433. package/types/Controls/wordCloud.obs.d.ts +232 -233
  434. package/types/Controls/workflowActionTypePicker.obs.d.ts +18 -18
  435. package/types/Controls/workflowBasePicker.obs.d.ts +154 -139
  436. package/types/Controls/workflowPicker.obs.d.ts +39 -39
  437. package/types/Controls/workflowTypePicker.obs.d.ts +103 -94
  438. package/types/Controls/yearPicker.obs.d.ts +85 -0
  439. package/types/Core/Controls/financialGateway.d.ts +61 -61
  440. package/types/Core/Controls/grid.d.ts +406 -406
  441. package/types/Core/Controls/valueDetailListItemBuilder.d.ts +30 -30
  442. package/types/Core/Core/personPreferences.d.ts +102 -102
  443. package/types/Core/Reporting/comparisonType.d.ts +39 -39
  444. package/types/Core/Reporting/comparisonTypeOptions.d.ts +14 -14
  445. package/types/Core/Reporting/fieldFilter.d.ts +22 -22
  446. package/types/Core/Reporting/filterExpressionType.d.ts +28 -28
  447. package/types/Core/Reporting/filterMode.d.ts +7 -7
  448. package/types/Core/Utilities/assetProvider.d.ts +74 -0
  449. package/types/Core/Utilities/colorPair.d.ts +25 -25
  450. package/types/Core/Utilities/domUtils.d.ts +12 -12
  451. package/types/Core/Utilities/path.d.ts +36 -0
  452. package/types/Core/Utilities/rockColor.d.ts +270 -270
  453. package/types/Directives/dragDrop.d.ts +130 -130
  454. package/types/Directives/dragScroll.d.ts +28 -28
  455. package/types/Directives/shortcut.d.ts +4 -0
  456. package/types/Enums/AI/chatMessageRole.d.ts +13 -13
  457. package/types/Enums/AI/moderationFlags.d.ts +21 -21
  458. package/types/Enums/AI/nameRemoval.d.ts +13 -0
  459. package/types/Enums/AI/textEnhancement.d.ts +13 -0
  460. package/types/Enums/Blocks/Cms/ContentCollectionView/searchOrder.d.ts +20 -20
  461. package/types/Enums/Blocks/Communication/CommunicationEntry/mediumType.d.ts +15 -0
  462. package/types/Enums/Blocks/Communication/CommunicationEntry/mode.d.ts +11 -0
  463. package/types/Enums/Blocks/Communication/CommunicationEntry/pushOpenActionType.d.ts +15 -0
  464. package/types/Enums/Blocks/Communication/CommunicationEntryWizard/communicationType.d.ts +15 -0
  465. package/types/Enums/Blocks/Communication/CommunicationEntryWizard/pushOpenAction.d.ts +15 -0
  466. package/types/Enums/Blocks/Crm/FamilyPreRegistration/communicationPreference.d.ts +15 -15
  467. package/types/Enums/Blocks/Crm/familyPreRegistrationCommunicationPreference.d.ts +15 -15
  468. package/types/Enums/Blocks/Engagement/SignUp/registerMode.d.ts +13 -13
  469. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailDateSelectionMode.d.ts +15 -15
  470. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailLocationSelectionMode.d.ts +13 -13
  471. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailScheduleSelectionMode.d.ts +13 -13
  472. package/types/Enums/Blocks/Group/Scheduling/resourceListSourceType.d.ts +19 -19
  473. package/types/Enums/Blocks/Group/Scheduling/toolboxActionType.d.ts +16 -16
  474. package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType.d.ts +17 -17
  475. package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowConfirmationStatus.d.ts +15 -15
  476. package/types/Enums/Blocks/Group/Scheduling/updateSchedulePreferenceMode.d.ts +19 -19
  477. package/types/Enums/Blocks/Security/AccountEntry/accountEntryStep.d.ts +19 -19
  478. package/types/Enums/Blocks/Security/ConfirmAccount/confirmAccountViewType.d.ts +17 -17
  479. package/types/Enums/Blocks/Security/ForgotUserName/sendInstructionsResultType.d.ts +16 -16
  480. package/types/Enums/Blocks/Security/Login/loginMethod.d.ts +11 -11
  481. package/types/Enums/Blocks/Security/Login/passwordlessLoginStep.d.ts +11 -11
  482. package/types/Enums/CheckIn/Labels/barcodeFormat.d.ts +11 -11
  483. package/types/Enums/CheckIn/Labels/ditherMode.d.ts +16 -16
  484. package/types/Enums/CheckIn/Labels/horizontalTextAlignment.d.ts +13 -13
  485. package/types/Enums/CheckIn/Labels/labelFieldType.d.ts +31 -31
  486. package/types/Enums/CheckIn/Labels/labelFormat.d.ts +14 -14
  487. package/types/Enums/CheckIn/Labels/labelType.d.ts +29 -29
  488. package/types/Enums/CheckIn/Labels/textCollectionFormat.d.ts +19 -19
  489. package/types/Enums/CheckIn/Labels/textFieldSubType.d.ts +15 -15
  490. package/types/Enums/CheckIn/abilityLevelDeterminationMode.d.ts +30 -30
  491. package/types/Enums/CheckIn/ageRestrictionMode.d.ts +31 -31
  492. package/types/Enums/CheckIn/alreadyEnrolledMatchingLogic.d.ts +24 -24
  493. package/types/Enums/CheckIn/autoSelectMode.d.ts +18 -18
  494. package/types/Enums/CheckIn/familySearchMode.d.ts +24 -24
  495. package/types/Enums/CheckIn/gradeAndAgeMatchingMode.d.ts +49 -49
  496. package/types/Enums/CheckIn/kioskCheckInMode.d.ts +11 -11
  497. package/types/Enums/CheckIn/locationSelectionStrategy.d.ts +35 -35
  498. package/types/Enums/CheckIn/phoneSearchMode.d.ts +11 -11
  499. package/types/Enums/CheckIn/successLavaTemplateDisplayMode.d.ts +13 -13
  500. package/types/Enums/Cms/blockLocation.d.ts +15 -15
  501. package/types/Enums/Cms/blockReloadMode.d.ts +22 -22
  502. package/types/Enums/Cms/botGuardianLevel.d.ts +13 -13
  503. package/types/Enums/Cms/contentChannelDateType.d.ts +13 -13
  504. package/types/Enums/Cms/contentChannelItemStatus.d.ts +13 -13
  505. package/types/Enums/Cms/contentCollectionFilterControl.d.ts +25 -25
  506. package/types/Enums/Cms/contentControlType.d.ts +11 -11
  507. package/types/Enums/Cms/contentLibraryItemExperienceLevel.d.ts +13 -13
  508. package/types/Enums/Cms/displayInNavWhen.d.ts +13 -13
  509. package/types/Enums/Cms/mobilePageType.d.ts +13 -13
  510. package/types/Enums/Cms/persistedDatasetDataFormat.d.ts +9 -9
  511. package/types/Enums/Cms/persistedDatasetScriptType.d.ts +9 -9
  512. package/types/Enums/Cms/siteType.d.ts +13 -13
  513. package/types/Enums/Cms/siteTypeFlags.d.ts +30 -30
  514. package/types/Enums/Cms/tagType.d.ts +11 -11
  515. package/types/Enums/Cms/themeFieldType.d.ts +34 -34
  516. package/types/Enums/Cms/themeFontAwesomeWeight.d.ts +22 -22
  517. package/types/Enums/Cms/themeIconSet.d.ts +11 -11
  518. package/types/Enums/Communication/Chat/chatRole.d.ts +13 -0
  519. package/types/Enums/Communication/Chat/chatSyncType.d.ts +23 -0
  520. package/types/Enums/Communication/communicationMessageFilter.d.ts +13 -13
  521. package/types/Enums/Communication/communicationRecipientStatus.d.ts +19 -19
  522. package/types/Enums/Communication/communicationStatus.d.ts +20 -20
  523. package/types/Enums/Communication/communicationTemplateVersion.d.ts +11 -0
  524. package/types/Enums/Communication/notificationClassification.d.ts +15 -15
  525. package/types/Enums/Communication/segmentCriteria.d.ts +11 -11
  526. package/types/Enums/Communication/unsubscribeLevel.d.ts +15 -0
  527. package/types/Enums/Configuration/databasePlatform.d.ts +24 -24
  528. package/types/Enums/Connection/connectionRequestViewModelSortProperty.d.ts +41 -41
  529. package/types/Enums/Connection/connectionTypeViewMode.d.ts +11 -11
  530. package/types/Enums/Connection/connectionWorkflowTriggerType.d.ts +27 -27
  531. package/types/Enums/Connection/groupRequirementsFilter.d.ts +13 -13
  532. package/types/Enums/Controls/alertType.d.ts +12 -12
  533. package/types/Enums/Controls/attributeFormat.d.ts +23 -0
  534. package/types/Enums/Controls/badgeType.d.ts +12 -0
  535. package/types/Enums/Controls/btnSize.d.ts +11 -11
  536. package/types/Enums/Controls/btnType.d.ts +17 -17
  537. package/types/Enums/Controls/controlLazyMode.d.ts +18 -18
  538. package/types/Enums/Controls/dayOfWeek.d.ts +21 -21
  539. package/types/Enums/Controls/detailPanelMode.d.ts +13 -13
  540. package/types/Enums/Controls/fieldFormat.d.ts +27 -0
  541. package/types/Enums/Controls/fieldSource.d.ts +25 -0
  542. package/types/Enums/Controls/gatewayEmitStrings.d.ts +11 -11
  543. package/types/Enums/Controls/locationPickerMode.d.ts +20 -20
  544. package/types/Enums/Controls/mediaPlayerControls.d.ts +21 -0
  545. package/types/Enums/Controls/mediaPlayerInterfaceType.d.ts +8 -0
  546. package/types/Enums/Controls/mediaSelectorMode.d.ts +11 -11
  547. package/types/Enums/Controls/mergeTemplateOwnership.d.ts +28 -28
  548. package/types/Enums/Controls/modalAlertType.d.ts +9 -9
  549. package/types/Enums/Controls/pickerDisplayStyle.d.ts +11 -11
  550. package/types/Enums/Controls/requirementLevel.d.ts +24 -24
  551. package/types/Enums/Controls/rockCacheabilityType.d.ts +15 -15
  552. package/types/Enums/Controls/slidingDateRangeType.d.ts +21 -21
  553. package/types/Enums/Controls/timeUnitType.d.ts +17 -17
  554. package/types/Enums/Controls/universalItemValuePickerDisplayStyle.d.ts +19 -19
  555. package/types/Enums/Core/Grid/booleanFilterMethod.d.ts +13 -13
  556. package/types/Enums/Core/Grid/columnPositionAnchor.d.ts +20 -20
  557. package/types/Enums/Core/Grid/dateFilterMethod.d.ts +79 -79
  558. package/types/Enums/Core/Grid/numberFilterMethod.d.ts +30 -30
  559. package/types/Enums/Core/Grid/pickExistingFilterMethod.d.ts +11 -11
  560. package/types/Enums/Core/Grid/textFilterMethod.d.ts +19 -19
  561. package/types/Enums/Core/addressInvalidReason.d.ts +13 -13
  562. package/types/Enums/Core/auditType.d.ts +13 -13
  563. package/types/Enums/Core/benchmarkRepititionMode.d.ts +22 -22
  564. package/types/Enums/Core/cameraBarcodeConfiguration.d.ts +15 -15
  565. package/types/Enums/Core/changeType.d.ts +10 -10
  566. package/types/Enums/Core/colorDepth.d.ts +19 -19
  567. package/types/Enums/Core/colorRecipe.d.ts +19 -19
  568. package/types/Enums/Core/colorScheme.d.ts +11 -11
  569. package/types/Enums/Core/followingSuggestedStatus.d.ts +13 -13
  570. package/types/Enums/Core/format.d.ts +25 -25
  571. package/types/Enums/Core/jobNotificationStatus.d.ts +15 -15
  572. package/types/Enums/Core/keyboardInputMode.d.ts +21 -21
  573. package/types/Enums/Core/kioskType.d.ts +13 -13
  574. package/types/Enums/Core/matchFlag.d.ts +17 -17
  575. package/types/Enums/Core/moveType.d.ts +15 -15
  576. package/types/Enums/Core/ncoaType.d.ts +15 -15
  577. package/types/Enums/Core/noteApprovalStatus.d.ts +13 -15
  578. package/types/Enums/Core/noteFormatType.d.ts +19 -19
  579. package/types/Enums/Core/notificationMessageActionType.d.ts +28 -28
  580. package/types/Enums/Core/printFrom.d.ts +11 -11
  581. package/types/Enums/Core/printTo.d.ts +13 -13
  582. package/types/Enums/Core/processed.d.ts +17 -17
  583. package/types/Enums/Core/resolution.d.ts +17 -17
  584. package/types/Enums/Core/signatureDocumentStatus.d.ts +17 -17
  585. package/types/Enums/Core/signatureType.d.ts +11 -11
  586. package/types/Enums/Core/specialRole.d.ts +15 -15
  587. package/types/Enums/Core/timeIntervalUnit.d.ts +19 -19
  588. package/types/Enums/Core/updatedAddressType.d.ts +13 -13
  589. package/types/Enums/Crm/ageBracket.d.ts +27 -27
  590. package/types/Enums/Crm/ageClassification.d.ts +13 -13
  591. package/types/Enums/Crm/assessmentRequestStatus.d.ts +20 -20
  592. package/types/Enums/Crm/authenticationServiceType.d.ts +11 -11
  593. package/types/Enums/Crm/emailPreference.d.ts +13 -13
  594. package/types/Enums/Crm/gender.d.ts +13 -13
  595. package/types/Enums/Crm/personalizationType.d.ts +11 -11
  596. package/types/Enums/Engagement/streakOccurrenceFrequency.d.ts +15 -15
  597. package/types/Enums/Engagement/streakStructureType.d.ts +25 -25
  598. package/types/Enums/Event/attendanceGraphBy.d.ts +17 -17
  599. package/types/Enums/Event/attendanceStatus.d.ts +13 -13
  600. package/types/Enums/Event/checkInStatus.d.ts +24 -24
  601. package/types/Enums/Event/interactiveExperienceApprovalStatus.d.ts +13 -13
  602. package/types/Enums/Event/interactiveExperienceCampusBehavior.d.ts +29 -29
  603. package/types/Enums/Event/interactiveExperiencePushNotificationType.d.ts +25 -25
  604. package/types/Enums/Event/registrantsSameFamily.d.ts +13 -13
  605. package/types/Enums/Event/registrarOption.d.ts +18 -18
  606. package/types/Enums/Event/registrationCostSummaryType.d.ts +12 -12
  607. package/types/Enums/Event/registrationFeeType.d.ts +11 -11
  608. package/types/Enums/Event/registrationFieldSource.d.ts +15 -15
  609. package/types/Enums/Event/registrationPersonFieldType.d.ts +38 -38
  610. package/types/Enums/Event/rsvp.d.ts +18 -18
  611. package/types/Enums/Event/scheduledAttendanceItemMatchesPreference.d.ts +13 -13
  612. package/types/Enums/Event/scheduledAttendanceItemStatus.d.ts +15 -15
  613. package/types/Enums/Event/schedulerResourceGroupMemberFilterType.d.ts +14 -14
  614. package/types/Enums/Event/sessionStatus.d.ts +13 -13
  615. package/types/Enums/Event/signatureDocumentAction.d.ts +11 -11
  616. package/types/Enums/Finance/alertType.d.ts +11 -11
  617. package/types/Enums/Finance/batchStatus.d.ts +22 -22
  618. package/types/Enums/Finance/benevolenceWorkflowTriggerType.d.ts +15 -15
  619. package/types/Enums/Finance/financialScheduledTransactionStatus.d.ts +19 -19
  620. package/types/Enums/Finance/{mICRStatus.d.ts → micrStatus.d.ts} +14 -14
  621. package/types/Enums/Finance/transactionGraphBy.d.ts +13 -13
  622. package/types/Enums/Group/appliesToAgeClassification.d.ts +13 -13
  623. package/types/Enums/Group/attendanceRecordRequiredForCheckIn.d.ts +13 -13
  624. package/types/Enums/Group/attendanceRule.d.ts +22 -22
  625. package/types/Enums/Group/dueDateType.d.ts +15 -15
  626. package/types/Enums/Group/groupCapacityRule.d.ts +13 -13
  627. package/types/Enums/Group/groupMemberStatus.d.ts +13 -13
  628. package/types/Enums/Group/meetsGroupRequirement.d.ts +14 -14
  629. package/types/Enums/Group/participationType.d.ts +11 -11
  630. package/types/Enums/Group/relationshipStrength.d.ts +15 -0
  631. package/types/Enums/Group/relationshipTrend.d.ts +13 -13
  632. package/types/Enums/Group/requirementCheckType.d.ts +13 -13
  633. package/types/Enums/Group/scheduleConfirmationLogic.d.ts +11 -11
  634. package/types/Enums/Group/scheduleCoordinatorNotificationType.d.ts +15 -15
  635. package/types/Enums/Lms/assignTo.d.ts +11 -11
  636. package/types/Enums/Lms/availabilityCriteria.d.ts +17 -17
  637. package/types/Enums/Lms/communicationMode.d.ts +13 -13
  638. package/types/Enums/Lms/completionStatus.d.ts +13 -13
  639. package/types/Enums/Lms/configurationMode.d.ts +11 -11
  640. package/types/Enums/Lms/dueDateChangeType.d.ts +20 -0
  641. package/types/Enums/Lms/dueDateCriteria.d.ts +15 -15
  642. package/types/Enums/Lms/learningCompletionStatus.d.ts +13 -13
  643. package/types/Enums/Lms/presentedFor.d.ts +31 -0
  644. package/types/Enums/Lms/requirementType.d.ts +13 -13
  645. package/types/Enums/Mobile/mobileNavigationActionType.d.ts +31 -31
  646. package/types/Enums/Net/cookieSameSiteMode.d.ts +36 -36
  647. package/types/Enums/Net/responseElementLocation.d.ts +20 -20
  648. package/types/Enums/Reporting/comparisonType.d.ts +35 -35
  649. package/types/Enums/Reporting/fieldFilterSourceType.d.ts +23 -23
  650. package/types/Enums/Reporting/filterExpressionType.d.ts +17 -17
  651. package/types/Enums/Reporting/filterMode.d.ts +17 -0
  652. package/types/Enums/Reporting/metricNumericDataType.d.ts +13 -13
  653. package/types/Enums/Reporting/metricValueType.d.ts +11 -11
  654. package/types/Enums/Reporting/reportFieldType.d.ts +10 -10
  655. package/types/Enums/Reporting/unitType.d.ts +13 -13
  656. package/types/Enums/Security/loginFailureReason.d.ts +23 -0
  657. package/types/Enums/WebFarm/logSeverity.d.ts +22 -22
  658. package/types/Enums/WebFarm/logType.d.ts +19 -19
  659. package/types/Enums/Workflow/workflowActionFormPersonEntryOption.d.ts +13 -13
  660. package/types/Enums/Workflow/workflowActionFormShowHideOption.d.ts +11 -11
  661. package/types/Enums/Workflow/workflowLoggingLevel.d.ts +15 -15
  662. package/types/Enums/Workflow/workflowTriggerType.d.ts +19 -19
  663. package/types/Enums/Workflow/workflowTriggerValueChangeType.d.ts +11 -11
  664. package/types/Enums/codeGenerateRestEndpoint.d.ts +38 -0
  665. package/types/FieldTypes/achievementTypeField.partial.d.ts +13 -0
  666. package/types/FieldTypes/achievementTypeFieldComponents.d.ts +35 -0
  667. package/types/FieldTypes/addressField.partial.d.ts +19 -19
  668. package/types/FieldTypes/addressFieldComponents.d.ts +39 -39
  669. package/types/FieldTypes/aiProviderField.partial.d.ts +10 -0
  670. package/types/FieldTypes/aiProviderFieldComponents.d.ts +36 -0
  671. package/types/FieldTypes/assessmentTypesField.partial.d.ts +16 -0
  672. package/types/FieldTypes/assessmentTypesFieldComponents.d.ts +62 -0
  673. package/types/FieldTypes/assetField.partial.d.ts +12 -0
  674. package/types/FieldTypes/assetFieldComponents.d.ts +42 -0
  675. package/types/FieldTypes/assetStorageProviderField.partial.d.ts +10 -0
  676. package/types/FieldTypes/assetStorageProviderFieldComponents.d.ts +36 -0
  677. package/types/FieldTypes/attendanceField.partial.d.ts +8 -0
  678. package/types/FieldTypes/attendanceFieldComponents.d.ts +30 -0
  679. package/types/FieldTypes/attributeField.partial.d.ts +16 -0
  680. package/types/FieldTypes/attributeFieldComponents.d.ts +61 -0
  681. package/types/FieldTypes/audioFileField.partial.d.ts +17 -0
  682. package/types/FieldTypes/audioFileFieldComponents.d.ts +65 -0
  683. package/types/FieldTypes/audioUrlField.partial.d.ts +12 -0
  684. package/types/FieldTypes/audioUrlFieldComponents.d.ts +30 -0
  685. package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -14
  686. package/types/FieldTypes/backgroundCheckFieldComponents.d.ts +71 -71
  687. package/types/FieldTypes/badgesField.partial.d.ts +12 -0
  688. package/types/FieldTypes/badgesFieldComponents.d.ts +59 -0
  689. package/types/FieldTypes/benevolenceRequestField.partial.d.ts +7 -0
  690. package/types/FieldTypes/benevolenceRequestFieldComponents.d.ts +30 -0
  691. package/types/FieldTypes/benevolenceTypeField.partial.d.ts +9 -0
  692. package/types/FieldTypes/benevolenceTypeFieldComponents.d.ts +32 -0
  693. package/types/FieldTypes/binaryFileField.partial.d.ts +12 -0
  694. package/types/FieldTypes/binaryFileFieldComponents.d.ts +65 -0
  695. package/types/FieldTypes/binaryFileTypeField.partial.d.ts +9 -0
  696. package/types/FieldTypes/binaryFileTypeFieldComponents.d.ts +35 -0
  697. package/types/FieldTypes/binaryFileTypesField.partial.d.ts +12 -0
  698. package/types/FieldTypes/binaryFileTypesFieldComponents.d.ts +59 -0
  699. package/types/FieldTypes/blockTemplateField.partial.d.ts +10 -0
  700. package/types/FieldTypes/blockTemplateFieldComponents.d.ts +58 -0
  701. package/types/FieldTypes/booleanField.partial.d.ts +19 -19
  702. package/types/FieldTypes/booleanFieldComponents.d.ts +107 -107
  703. package/types/FieldTypes/campusField.partial.d.ts +30 -30
  704. package/types/FieldTypes/campusFieldComponents.d.ts +99 -99
  705. package/types/FieldTypes/campusesField.partial.d.ts +26 -26
  706. package/types/FieldTypes/campusesFieldComponents.d.ts +74 -74
  707. package/types/FieldTypes/captchaField.partial.d.ts +13 -0
  708. package/types/FieldTypes/captchaFieldComponents.d.ts +53 -0
  709. package/types/FieldTypes/categoriesField.partial.d.ts +16 -16
  710. package/types/FieldTypes/categoriesFieldComponents.d.ts +66 -66
  711. package/types/FieldTypes/categorizedDefinedValueField.partial.d.ts +17 -18
  712. package/types/FieldTypes/categorizedDefinedValueFieldComponents.d.ts +70 -70
  713. package/types/FieldTypes/categoryField.partial.d.ts +16 -16
  714. package/types/FieldTypes/categoryFieldComponents.d.ts +66 -66
  715. package/types/FieldTypes/checkListField.partial.d.ts +21 -21
  716. package/types/FieldTypes/checkListFieldComponents.d.ts +93 -93
  717. package/types/FieldTypes/checkinConfigurationTypeField.partial.d.ts +15 -0
  718. package/types/FieldTypes/checkinConfigurationTypeFieldComponents.d.ts +58 -0
  719. package/types/FieldTypes/codeEditorField.partial.d.ts +18 -0
  720. package/types/FieldTypes/codeEditorFieldComponents.d.ts +62 -0
  721. package/types/FieldTypes/colorField.partial.d.ts +9 -9
  722. package/types/FieldTypes/colorFieldComponents.d.ts +69 -69
  723. package/types/FieldTypes/colorSelectorComponents.d.ts +59 -59
  724. package/types/FieldTypes/colorSelectorField.partial.d.ts +12 -12
  725. package/types/FieldTypes/colorSelectorField.types.partial.d.ts +4 -4
  726. package/types/FieldTypes/colorSelectorField.utils.partial.d.ts +23 -23
  727. package/types/FieldTypes/communicationPreferenceField.partial.d.ts +15 -15
  728. package/types/FieldTypes/communicationPreferenceFieldComponents.d.ts +56 -56
  729. package/types/FieldTypes/communicationTemplateField.partial.d.ts +11 -11
  730. package/types/FieldTypes/communicationTemplateFieldComponents.d.ts +52 -52
  731. package/types/FieldTypes/comparisonField.partial.d.ts +10 -0
  732. package/types/FieldTypes/comparisonFieldComponents.d.ts +32 -0
  733. package/types/FieldTypes/componentField.partial.d.ts +10 -0
  734. package/types/FieldTypes/componentFieldComponents.d.ts +60 -0
  735. package/types/FieldTypes/componentsField.partial.d.ts +10 -0
  736. package/types/FieldTypes/componentsFieldComponents.d.ts +60 -0
  737. package/types/FieldTypes/conditionalScaleField.partial.d.ts +23 -0
  738. package/types/FieldTypes/conditionalScaleFieldComponents.d.ts +63 -0
  739. package/types/FieldTypes/connectionActivityTypeField.partial.d.ts +15 -0
  740. package/types/FieldTypes/connectionActivityTypeFieldComponents.d.ts +59 -0
  741. package/types/FieldTypes/connectionOpportunityField.partial.d.ts +15 -0
  742. package/types/FieldTypes/connectionOpportunityFieldComponents.d.ts +59 -0
  743. package/types/FieldTypes/connectionRequestActivityField.partial.d.ts +7 -0
  744. package/types/FieldTypes/connectionRequestActivityFieldComponents.d.ts +30 -0
  745. package/types/FieldTypes/connectionRequestField.partial.d.ts +7 -0
  746. package/types/FieldTypes/connectionRequestFieldComponents.d.ts +35 -0
  747. package/types/FieldTypes/connectionStateField.partial.d.ts +11 -0
  748. package/types/FieldTypes/connectionStateFieldComponents.d.ts +57 -0
  749. package/types/FieldTypes/connectionStatusField.partial.d.ts +15 -0
  750. package/types/FieldTypes/connectionStatusFieldComponents.d.ts +59 -0
  751. package/types/FieldTypes/connectionTypeField.partial.d.ts +13 -13
  752. package/types/FieldTypes/connectionTypeFieldComponents.d.ts +35 -35
  753. package/types/FieldTypes/connectionTypesField.partial.d.ts +15 -13
  754. package/types/FieldTypes/connectionTypesFieldComponents.d.ts +58 -36
  755. package/types/FieldTypes/contentChannelField.partial.d.ts +12 -0
  756. package/types/FieldTypes/contentChannelFieldComponents.d.ts +32 -0
  757. package/types/FieldTypes/contentChannelItemField.partial.d.ts +13 -0
  758. package/types/FieldTypes/contentChannelItemFieldComponents.d.ts +57 -0
  759. package/types/FieldTypes/contentChannelTypeField.partial.d.ts +12 -0
  760. package/types/FieldTypes/contentChannelTypeFieldComponents.d.ts +32 -0
  761. package/types/FieldTypes/contentChannelTypesField.partial.d.ts +12 -0
  762. package/types/FieldTypes/contentChannelTypesFieldComponents.d.ts +59 -0
  763. package/types/FieldTypes/contentChannelsField.partial.d.ts +12 -0
  764. package/types/FieldTypes/contentChannelsFieldComponents.d.ts +59 -0
  765. package/types/FieldTypes/currencyField.partial.d.ts +12 -12
  766. package/types/FieldTypes/currencyFieldComponents.d.ts +31 -31
  767. package/types/FieldTypes/dataEntryRequirementLevelField.partial.d.ts +15 -0
  768. package/types/FieldTypes/dataEntryRequirementLevelFieldComponents.d.ts +56 -0
  769. package/types/FieldTypes/dataViewField.partial.d.ts +14 -0
  770. package/types/FieldTypes/dataViewFieldComponents.d.ts +64 -0
  771. package/types/FieldTypes/dataViewsField.partial.d.ts +14 -0
  772. package/types/FieldTypes/dataViewsFieldComponents.d.ts +78 -0
  773. package/types/FieldTypes/dateField.partial.d.ts +49 -49
  774. package/types/FieldTypes/dateFieldComponents.d.ts +123 -123
  775. package/types/FieldTypes/dateRangeField.partial.d.ts +11 -11
  776. package/types/FieldTypes/dateRangeFieldComponents.d.ts +31 -31
  777. package/types/FieldTypes/dateTimeField.partial.d.ts +38 -38
  778. package/types/FieldTypes/dateTimeFieldComponents.d.ts +113 -113
  779. package/types/FieldTypes/dayOfWeekField.partial.d.ts +11 -11
  780. package/types/FieldTypes/dayOfWeekFieldComponents.d.ts +59 -59
  781. package/types/FieldTypes/daysOfWeekField.partial.d.ts +12 -12
  782. package/types/FieldTypes/daysOfWeekFieldComponents.d.ts +34 -34
  783. package/types/FieldTypes/decimalField.partial.d.ts +12 -12
  784. package/types/FieldTypes/decimalFieldComponents.d.ts +31 -31
  785. package/types/FieldTypes/decimalRangeField.partial.d.ts +11 -11
  786. package/types/FieldTypes/decimalRangeFieldComponents.d.ts +32 -32
  787. package/types/FieldTypes/definedTypeField.partial.d.ts +10 -0
  788. package/types/FieldTypes/definedTypeFieldComponents.d.ts +32 -0
  789. package/types/FieldTypes/definedValueField.partial.d.ts +70 -70
  790. package/types/FieldTypes/definedValueFieldComponents.d.ts +125 -105
  791. package/types/FieldTypes/definedValueRangeField.partial.d.ts +36 -25
  792. package/types/FieldTypes/definedValueRangeFieldComponents.d.ts +60 -36
  793. package/types/FieldTypes/documentTypeField.partial.d.ts +11 -0
  794. package/types/FieldTypes/documentTypeFieldComponents.d.ts +56 -0
  795. package/types/FieldTypes/emailField.partial.d.ts +13 -13
  796. package/types/FieldTypes/emailFieldComponents.d.ts +61 -61
  797. package/types/FieldTypes/encryptedTextField.partial.d.ts +19 -0
  798. package/types/FieldTypes/encryptedTextFieldComponents.d.ts +63 -0
  799. package/types/FieldTypes/entityField.partial.d.ts +10 -0
  800. package/types/FieldTypes/entityFieldComponents.d.ts +57 -0
  801. package/types/FieldTypes/entityTypeField.partial.d.ts +12 -0
  802. package/types/FieldTypes/entityTypeFieldComponents.d.ts +56 -0
  803. package/types/FieldTypes/eventCalendarField.partial.d.ts +10 -0
  804. package/types/FieldTypes/eventCalendarFieldComponents.d.ts +35 -0
  805. package/types/FieldTypes/eventItemField.partial.d.ts +11 -0
  806. package/types/FieldTypes/eventItemFieldComponents.d.ts +35 -0
  807. package/types/FieldTypes/fieldType.d.ts +25 -25
  808. package/types/FieldTypes/fileField.partial.d.ts +28 -28
  809. package/types/FieldTypes/fileFieldComponents.d.ts +62 -62
  810. package/types/FieldTypes/financialAccountField.partial.d.ts +17 -17
  811. package/types/FieldTypes/financialAccountFieldComponents.d.ts +62 -62
  812. package/types/FieldTypes/financialAccountsField.partial.d.ts +17 -17
  813. package/types/FieldTypes/financialAccountsFieldComponents.d.ts +62 -62
  814. package/types/FieldTypes/financialGatewayField.partial.d.ts +11 -0
  815. package/types/FieldTypes/financialGatewayFieldComponents.d.ts +35 -0
  816. package/types/FieldTypes/financialStatementTemplateField.partial.d.ts +7 -0
  817. package/types/FieldTypes/financialStatementTemplateFieldComponents.d.ts +31 -0
  818. package/types/FieldTypes/genderField.partial.d.ts +10 -10
  819. package/types/FieldTypes/genderFieldComponents.d.ts +57 -57
  820. package/types/FieldTypes/groupAndRoleField.partial.d.ts +21 -21
  821. package/types/FieldTypes/groupAndRoleFieldComponents.d.ts +71 -72
  822. package/types/FieldTypes/groupField.partial.d.ts +11 -11
  823. package/types/FieldTypes/groupFieldComponents.d.ts +35 -35
  824. package/types/FieldTypes/groupLocationTypeField.partial.d.ts +15 -15
  825. package/types/FieldTypes/groupLocationTypeFieldComponents.d.ts +75 -65
  826. package/types/FieldTypes/groupMemberField.partial.d.ts +16 -16
  827. package/types/FieldTypes/groupMemberFieldComponents.d.ts +63 -63
  828. package/types/FieldTypes/groupMemberRequirementField.partial.d.ts +8 -0
  829. package/types/FieldTypes/groupMemberRequirementFieldComponents.d.ts +30 -0
  830. package/types/FieldTypes/groupRoleField.partial.d.ts +14 -14
  831. package/types/FieldTypes/groupRoleFieldComponents.d.ts +75 -65
  832. package/types/FieldTypes/groupTypeField.partial.d.ts +15 -15
  833. package/types/FieldTypes/groupTypeFieldComponents.d.ts +59 -59
  834. package/types/FieldTypes/groupTypeGroupField.partial.d.ts +15 -0
  835. package/types/FieldTypes/groupTypeGroupFieldComponents.d.ts +66 -0
  836. package/types/FieldTypes/groupTypesField.partial.d.ts +15 -15
  837. package/types/FieldTypes/groupTypesFieldComponents.d.ts +55 -55
  838. package/types/FieldTypes/htmlField.partial.d.ts +21 -0
  839. package/types/FieldTypes/htmlFieldComponents.d.ts +64 -0
  840. package/types/FieldTypes/imageField.partial.d.ts +40 -31
  841. package/types/FieldTypes/imageFieldComponents.d.ts +64 -63
  842. package/types/FieldTypes/index.d.ts +1 -1
  843. package/types/FieldTypes/integerField.partial.d.ts +12 -12
  844. package/types/FieldTypes/integerFieldComponents.d.ts +31 -31
  845. package/types/FieldTypes/integerRangeField.partial.d.ts +11 -11
  846. package/types/FieldTypes/integerRangeFieldComponents.d.ts +32 -32
  847. package/types/FieldTypes/interactionChannelField.partial.d.ts +7 -0
  848. package/types/FieldTypes/interactionChannelFieldComponents.d.ts +35 -0
  849. package/types/FieldTypes/interactionChannelInteractionComponentField.partial.d.ts +10 -0
  850. package/types/FieldTypes/interactionChannelInteractionComponentFieldComponents.d.ts +62 -0
  851. package/types/FieldTypes/interactionChannelsField.partial.d.ts +12 -0
  852. package/types/FieldTypes/interactionChannelsFieldComponents.d.ts +59 -0
  853. package/types/FieldTypes/keyValueListField.partial.d.ts +31 -31
  854. package/types/FieldTypes/keyValueListFieldComponents.d.ts +70 -74
  855. package/types/FieldTypes/labelField.partial.d.ts +15 -0
  856. package/types/FieldTypes/labelFieldComponents.d.ts +31 -0
  857. package/types/FieldTypes/lavaCommandsField.partial.d.ts +10 -0
  858. package/types/FieldTypes/lavaCommandsFieldComponents.d.ts +60 -0
  859. package/types/FieldTypes/lavaField.partial.d.ts +18 -0
  860. package/types/FieldTypes/lavaFieldComponents.d.ts +62 -0
  861. package/types/FieldTypes/locationField.partial.d.ts +19 -19
  862. package/types/FieldTypes/locationFieldComponents.d.ts +78 -78
  863. package/types/FieldTypes/locationListField.partial.d.ts +26 -26
  864. package/types/FieldTypes/locationListFieldComponents.d.ts +76 -76
  865. package/types/FieldTypes/markdownField.partial.d.ts +15 -0
  866. package/types/FieldTypes/markdownFieldComponents.d.ts +30 -0
  867. package/types/FieldTypes/matrixField.partial.d.ts +22 -0
  868. package/types/FieldTypes/matrixFieldComponents.d.ts +75 -0
  869. package/types/FieldTypes/mediaElementField.partial.d.ts +20 -0
  870. package/types/FieldTypes/mediaElementFieldComponents.d.ts +79 -0
  871. package/types/FieldTypes/mediaSelectorField.partial.d.ts +14 -14
  872. package/types/FieldTypes/mediaSelectorFieldComponents.d.ts +70 -70
  873. package/types/FieldTypes/mediaWatchField.partial.d.ts +19 -0
  874. package/types/FieldTypes/mediaWatchFieldComponents.d.ts +69 -0
  875. package/types/FieldTypes/memoField.partial.d.ts +18 -18
  876. package/types/FieldTypes/memoFieldComponents.d.ts +91 -91
  877. package/types/FieldTypes/mergeTemplateField.partial.d.ts +7 -0
  878. package/types/FieldTypes/mergeTemplateFieldComponents.d.ts +35 -0
  879. package/types/FieldTypes/metricCategoriesField.partial.d.ts +7 -0
  880. package/types/FieldTypes/metricCategoriesFieldComponents.d.ts +35 -0
  881. package/types/FieldTypes/metricField.partial.d.ts +7 -0
  882. package/types/FieldTypes/metricFieldComponents.d.ts +35 -0
  883. package/types/FieldTypes/mobileNavigationActionField.partial.d.ts +10 -10
  884. package/types/FieldTypes/mobileNavigationActionFieldComponents.d.ts +35 -35
  885. package/types/FieldTypes/monthDayField.partial.d.ts +10 -10
  886. package/types/FieldTypes/monthDayFieldComponents.d.ts +31 -31
  887. package/types/FieldTypes/multiSelectField.partial.d.ts +24 -24
  888. package/types/FieldTypes/multiSelectFieldComponents.d.ts +101 -101
  889. package/types/FieldTypes/noteTypeField.partial.d.ts +17 -17
  890. package/types/FieldTypes/noteTypeFieldComponents.d.ts +63 -63
  891. package/types/FieldTypes/noteTypesField.partial.d.ts +18 -18
  892. package/types/FieldTypes/noteTypesFieldComponents.d.ts +65 -65
  893. package/types/FieldTypes/pageReferenceField.partial.d.ts +7 -0
  894. package/types/FieldTypes/pageReferenceFieldComponents.d.ts +43 -0
  895. package/types/FieldTypes/persistedDatasetField.partial.d.ts +10 -0
  896. package/types/FieldTypes/persistedDatasetFieldComponents.d.ts +32 -0
  897. package/types/FieldTypes/personField.partial.d.ts +14 -14
  898. package/types/FieldTypes/personFieldComponents.d.ts +58 -58
  899. package/types/FieldTypes/phoneNumberField.partial.d.ts +10 -10
  900. package/types/FieldTypes/phoneNumberFieldComponents.d.ts +31 -31
  901. package/types/FieldTypes/prayerRequestField.partial.d.ts +10 -0
  902. package/types/FieldTypes/prayerRequestFieldComponents.d.ts +40 -0
  903. package/types/FieldTypes/rangeSliderField.partial.d.ts +16 -16
  904. package/types/FieldTypes/rangeSliderFieldComponents.d.ts +60 -59
  905. package/types/FieldTypes/ratingField.partial.d.ts +22 -22
  906. package/types/FieldTypes/ratingFieldComponents.d.ts +65 -65
  907. package/types/FieldTypes/registrationInstanceField.partial.d.ts +10 -0
  908. package/types/FieldTypes/registrationInstanceFieldComponents.d.ts +65 -0
  909. package/types/FieldTypes/registrationTemplateField.partial.d.ts +10 -0
  910. package/types/FieldTypes/registrationTemplateFieldComponents.d.ts +35 -0
  911. package/types/FieldTypes/registrationTemplatesField.partial.d.ts +10 -0
  912. package/types/FieldTypes/registrationTemplatesFieldComponents.d.ts +35 -0
  913. package/types/FieldTypes/registryEntryField.partial.d.ts +7 -7
  914. package/types/FieldTypes/registryEntryFieldComponents.d.ts +32 -32
  915. package/types/FieldTypes/reminderTypeField.partial.d.ts +19 -19
  916. package/types/FieldTypes/reminderTypeFieldComponents.d.ts +36 -36
  917. package/types/FieldTypes/reminderTypesField.partial.d.ts +17 -17
  918. package/types/FieldTypes/reminderTypesFieldComponents.d.ts +55 -55
  919. package/types/FieldTypes/remoteAuthsField.partial.d.ts +13 -0
  920. package/types/FieldTypes/remoteAuthsFieldComponents.d.ts +32 -0
  921. package/types/FieldTypes/reportField.partial.d.ts +10 -0
  922. package/types/FieldTypes/reportFieldComponents.d.ts +32 -0
  923. package/types/FieldTypes/scheduleField.partial.d.ts +11 -11
  924. package/types/FieldTypes/scheduleFieldComponents.d.ts +35 -35
  925. package/types/FieldTypes/schedulesField.partial.d.ts +11 -11
  926. package/types/FieldTypes/schedulesFieldComponents.d.ts +35 -35
  927. package/types/FieldTypes/secondaryAuthsField.partial.d.ts +10 -0
  928. package/types/FieldTypes/secondaryAuthsFieldComponents.d.ts +32 -0
  929. package/types/FieldTypes/securityRoleField.partial.d.ts +15 -13
  930. package/types/FieldTypes/securityRoleFieldComponents.d.ts +35 -35
  931. package/types/FieldTypes/singleSelectField.partial.d.ts +21 -21
  932. package/types/FieldTypes/singleSelectFieldComponents.d.ts +101 -101
  933. package/types/FieldTypes/siteField.partial.d.ts +14 -0
  934. package/types/FieldTypes/siteFieldComponents.d.ts +56 -0
  935. package/types/FieldTypes/slidingDateRangeField.partial.d.ts +15 -15
  936. package/types/FieldTypes/slidingDateRangeFieldComponents.d.ts +66 -66
  937. package/types/FieldTypes/socialMediaAccountField.partial.d.ts +19 -19
  938. package/types/FieldTypes/socialMediaAccountFieldComponents.d.ts +58 -58
  939. package/types/FieldTypes/ssnField.partial.d.ts +8 -8
  940. package/types/FieldTypes/ssnFieldComponents.d.ts +30 -30
  941. package/types/FieldTypes/stepField.partial.d.ts +5 -0
  942. package/types/FieldTypes/stepFieldComponents.d.ts +1 -0
  943. package/types/FieldTypes/stepProgramField.partial.d.ts +10 -0
  944. package/types/FieldTypes/stepProgramFieldComponents.d.ts +33 -0
  945. package/types/FieldTypes/stepProgramStepStatusField.partial.d.ts +14 -0
  946. package/types/FieldTypes/stepProgramStepStatusFieldComponents.d.ts +41 -0
  947. package/types/FieldTypes/stepProgramStepTypeField.partial.d.ts +11 -0
  948. package/types/FieldTypes/stepProgramStepTypeFieldComponents.d.ts +41 -0
  949. package/types/FieldTypes/streakTypeField.partial.d.ts +13 -0
  950. package/types/FieldTypes/streakTypeFieldComponents.d.ts +32 -0
  951. package/types/FieldTypes/structureContentEditorField.partial.d.ts +7 -7
  952. package/types/FieldTypes/structureContentEditorFieldComponents.d.ts +30 -30
  953. package/types/FieldTypes/systemCommunicationField.partial.d.ts +13 -13
  954. package/types/FieldTypes/systemCommunicationFieldComponents.d.ts +52 -52
  955. package/types/FieldTypes/systemEmailField.partial.d.ts +10 -0
  956. package/types/FieldTypes/systemEmailFieldComponents.d.ts +32 -0
  957. package/types/FieldTypes/systemPhoneNumberField.partial.d.ts +13 -0
  958. package/types/FieldTypes/systemPhoneNumberFieldComponents.d.ts +60 -0
  959. package/types/FieldTypes/textField.partial.d.ts +17 -15
  960. package/types/FieldTypes/textFieldComponents.d.ts +70 -66
  961. package/types/FieldTypes/timeField.partial.d.ts +12 -12
  962. package/types/FieldTypes/timeFieldComponents.d.ts +34 -34
  963. package/types/FieldTypes/timeZoneField.partial.d.ts +14 -14
  964. package/types/FieldTypes/timeZoneFieldComponents.d.ts +32 -32
  965. package/types/FieldTypes/universalItemFieldComponents.d.ts +27 -27
  966. package/types/FieldTypes/universalItemPickerField.partial.d.ts +15 -15
  967. package/types/FieldTypes/universalItemPickerFieldComponents.d.ts +79 -79
  968. package/types/FieldTypes/universalItemSearchPickerField.partial.d.ts +13 -13
  969. package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +78 -78
  970. package/types/FieldTypes/universalItemTreePickerField.partial.d.ts +15 -15
  971. package/types/FieldTypes/universalItemTreePickerFieldComponents.d.ts +127 -127
  972. package/types/FieldTypes/urlLinkField.partial.d.ts +17 -17
  973. package/types/FieldTypes/urlLinkFieldComponents.d.ts +59 -59
  974. package/types/FieldTypes/utils.d.ts +111 -111
  975. package/types/FieldTypes/valueFilterField.partial.d.ts +15 -0
  976. package/types/FieldTypes/valueFilterFieldComponents.d.ts +65 -0
  977. package/types/FieldTypes/valueListField.partial.d.ts +21 -21
  978. package/types/FieldTypes/valueListFieldComponents.d.ts +64 -64
  979. package/types/FieldTypes/videoFileField.partial.d.ts +15 -0
  980. package/types/FieldTypes/videoFileFieldComponents.d.ts +65 -0
  981. package/types/FieldTypes/videoUrlField.partial.d.ts +7 -0
  982. package/types/FieldTypes/videoUrlFieldComponents.d.ts +30 -0
  983. package/types/FieldTypes/workflowActivityField.partial.d.ts +14 -0
  984. package/types/FieldTypes/workflowActivityFieldComponents.d.ts +57 -0
  985. package/types/FieldTypes/workflowAttributeField.partial.d.ts +11 -0
  986. package/types/FieldTypes/workflowAttributeFieldComponents.d.ts +56 -0
  987. package/types/FieldTypes/workflowField.partial.d.ts +13 -0
  988. package/types/FieldTypes/workflowFieldComponents.d.ts +62 -0
  989. package/types/FieldTypes/workflowTypeField.partial.d.ts +11 -11
  990. package/types/FieldTypes/workflowTypeFieldComponents.d.ts +35 -35
  991. package/types/FieldTypes/workflowTypesField.partial.d.ts +11 -0
  992. package/types/FieldTypes/workflowTypesFieldComponents.d.ts +35 -0
  993. package/types/PageState/index.d.ts +19 -19
  994. package/types/PageState/state.d.ts +15 -15
  995. package/types/SystemGuids/achievementType.d.ts +6 -6
  996. package/types/SystemGuids/assessmentType.d.ts +13 -13
  997. package/types/SystemGuids/attribute.d.ts +402 -384
  998. package/types/SystemGuids/authScope.d.ts +13 -13
  999. package/types/SystemGuids/badge.d.ts +33 -33
  1000. package/types/SystemGuids/benevolenceType.d.ts +4 -4
  1001. package/types/SystemGuids/binaryFile.d.ts +4 -4
  1002. package/types/SystemGuids/binaryFiletype.d.ts +33 -33
  1003. package/types/SystemGuids/block.d.ts +63 -63
  1004. package/types/SystemGuids/blockType.d.ts +175 -167
  1005. package/types/SystemGuids/category.d.ts +121 -107
  1006. package/types/SystemGuids/communication.d.ts +7 -7
  1007. package/types/SystemGuids/connectionActivityType.d.ts +13 -13
  1008. package/types/SystemGuids/contentChannelType.d.ts +5 -5
  1009. package/types/SystemGuids/definedType.d.ts +226 -220
  1010. package/types/SystemGuids/definedValue.d.ts +535 -531
  1011. package/types/SystemGuids/emailSection.d.ts +9 -0
  1012. package/types/SystemGuids/entityType.d.ts +811 -793
  1013. package/types/SystemGuids/fieldType.d.ts +337 -289
  1014. package/types/SystemGuids/financialAccount.d.ts +9 -9
  1015. package/types/SystemGuids/financialStatementTemplate.d.ts +4 -4
  1016. package/types/SystemGuids/followingEventType.d.ts +19 -19
  1017. package/types/SystemGuids/group.d.ts +45 -41
  1018. package/types/SystemGuids/groupRole.d.ts +65 -61
  1019. package/types/SystemGuids/groupType.d.ts +45 -41
  1020. package/types/SystemGuids/interactionChannel.d.ts +26 -24
  1021. package/types/SystemGuids/layout.d.ts +23 -19
  1022. package/types/SystemGuids/learningActivityType.d.ts +5 -0
  1023. package/types/SystemGuids/metric.d.ts +17 -11
  1024. package/types/SystemGuids/noteType.d.ts +29 -29
  1025. package/types/SystemGuids/page.d.ts +1639 -1709
  1026. package/types/SystemGuids/pageRoute.d.ts +38 -38
  1027. package/types/SystemGuids/person.d.ts +6 -6
  1028. package/types/SystemGuids/serviceJob.d.ts +186 -160
  1029. package/types/SystemGuids/signatureDocumentTemplate.d.ts +4 -4
  1030. package/types/SystemGuids/site.d.ts +11 -11
  1031. package/types/SystemGuids/snippetType.d.ts +5 -5
  1032. package/types/SystemGuids/streakType.d.ts +4 -4
  1033. package/types/SystemGuids/systemCommunication.d.ts +96 -92
  1034. package/types/SystemGuids/systemEmail.d.ts +43 -43
  1035. package/types/SystemGuids/workflowType.d.ts +9 -9
  1036. package/types/Templates/block.d.ts +14 -14
  1037. package/types/Templates/detailBlock.d.ts +392 -380
  1038. package/types/Templates/rockBlock.partial.d.ts +284 -280
  1039. package/types/Templates/rockPage.d.ts +63 -52
  1040. package/types/Types/Controls/emailEditor.d.ts +0 -0
  1041. package/types/Types/Controls/grid.d.ts +65 -2
  1042. package/types/Types/Utility/block.d.ts +2 -1
  1043. package/types/Types/Utility/http.d.ts +4 -2
  1044. package/types/Types/Utility/support.d.ts +2 -2
  1045. package/types/Utility/address.d.ts +7 -7
  1046. package/types/Utility/arrayUtils.d.ts +20 -11
  1047. package/types/Utility/aspDateFormat.d.ts +9 -9
  1048. package/types/Utility/block.d.ts +285 -285
  1049. package/types/Utility/booleanUtils.d.ts +16 -16
  1050. package/types/Utility/browserBus.d.ts +207 -207
  1051. package/types/Utility/cache.d.ts +33 -32
  1052. package/types/Utility/cancellation.d.ts +58 -58
  1053. package/types/Utility/component.d.ts +233 -199
  1054. package/types/Utility/dateKey.d.ts +41 -41
  1055. package/types/Utility/dialogs.d.ts +86 -80
  1056. package/types/Utility/dom.d.ts +88 -0
  1057. package/types/Utility/email.d.ts +5 -5
  1058. package/types/Utility/enumUtils.d.ts +9 -9
  1059. package/types/Utility/fieldTypes.d.ts +34 -20
  1060. package/types/Utility/file.d.ts +40 -8
  1061. package/types/Utility/form.d.ts +33 -33
  1062. package/types/Utility/fullscreen.d.ts +37 -33
  1063. package/types/Utility/geo.d.ts +45 -45
  1064. package/types/Utility/guid.d.ts +39 -39
  1065. package/types/Utility/http.d.ts +125 -94
  1066. package/types/Utility/internetCalendar.d.ts +242 -242
  1067. package/types/Utility/lava.d.ts +5 -1
  1068. package/types/Utility/linq.d.ts +381 -174
  1069. package/types/Utility/listItemBag.d.ts +2 -2
  1070. package/types/Utility/localeDateFormatter.d.ts +52 -52
  1071. package/types/Utility/mergeField.d.ts +8 -8
  1072. package/types/Utility/numberUtils.d.ts +75 -75
  1073. package/types/Utility/objectUtils.d.ts +35 -19
  1074. package/types/Utility/page.d.ts +50 -50
  1075. package/types/Utility/phone.d.ts +28 -28
  1076. package/types/Utility/popover.d.ts +16 -16
  1077. package/types/Utility/promiseUtils.d.ts +43 -43
  1078. package/types/Utility/realTime.d.ts +79 -79
  1079. package/types/Utility/regexPatterns.d.ts +27 -27
  1080. package/types/Utility/rockCurrency.d.ts +129 -129
  1081. package/types/Utility/rockDateTime.d.ts +342 -341
  1082. package/types/Utility/screenSize.d.ts +9 -0
  1083. package/types/Utility/slidingDateRange.d.ts +82 -82
  1084. package/types/Utility/stringUtils.d.ts +175 -136
  1085. package/types/Utility/structuredContentEditor.d.ts +8 -8
  1086. package/types/Utility/suspense.d.ts +98 -98
  1087. package/types/Utility/tooltip.d.ts +37 -22
  1088. package/types/Utility/treeItemProviders.d.ts +582 -531
  1089. package/types/Utility/url.d.ts +39 -39
  1090. package/types/Utility/util.d.ts +74 -66
  1091. package/types/Utility/validationRules.d.ts +49 -49
  1092. package/types/ValidationRules/index.d.ts +3 -3
  1093. package/types/ViewModels/Blocks/Administration/SystemConfiguration/uiSettingsConfigurationBag.d.ts +3 -0
  1094. package/types/ViewModels/Blocks/Bus/ConsumerList/consumerListBag.d.ts +33 -0
  1095. package/types/ViewModels/Blocks/Bus/ConsumerList/consumerListOptionsBag.d.ts +25 -0
  1096. package/types/ViewModels/Blocks/CheckIn/AttendanceHistoryList/attendanceHistoryListOptionsBag.d.ts +48 -0
  1097. package/types/ViewModels/Blocks/CheckIn/CheckInScheduleBuilder/checkInScheduleBuilderOptionsBag.d.ts +3 -0
  1098. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInAdvancedSettingsBag.d.ts +46 -0
  1099. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInBarcodeSettingsBag.d.ts +40 -0
  1100. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInDisplaySettingsBag.d.ts +43 -0
  1101. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInGeneralSettingsBag.d.ts +61 -0
  1102. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInHeaderTextBag.d.ts +52 -0
  1103. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInRegistrationSettingsBag.d.ts +99 -0
  1104. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInSearchSettingsBag.d.ts +40 -0
  1105. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkinTypeBag.d.ts +85 -0
  1106. package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkinTypeDetailOptionsBag.d.ts +60 -0
  1107. package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationBag.d.ts +6 -0
  1108. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageBag.d.ts +12 -0
  1109. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageDetailOptionsBag.d.ts +4 -2
  1110. package/types/ViewModels/Blocks/Cms/AdaptiveMessageList/adaptiveMessageListOptionsBag.d.ts +6 -0
  1111. package/types/ViewModels/Blocks/Cms/AssetManager/assetManagerOptionsBag.d.ts +55 -0
  1112. package/types/ViewModels/Blocks/Cms/BlockList/blockListOptionsBag.d.ts +26 -0
  1113. package/types/ViewModels/Blocks/Cms/BlockTypeList/blockTypeListBag.d.ts +62 -0
  1114. package/types/ViewModels/Blocks/Cms/BlockTypeList/blockTypeListOptionsBag.d.ts +26 -0
  1115. package/types/ViewModels/Blocks/Cms/ContentChannelDetail/contentChannelBag.d.ts +126 -0
  1116. package/types/ViewModels/Blocks/Cms/ContentChannelDetail/contentChannelDetailOptionsBag.d.ts +60 -0
  1117. package/types/ViewModels/Blocks/Cms/ContentChannelItemList/contentChannelItemListOptionsBag.d.ts +60 -0
  1118. package/types/ViewModels/Blocks/Cms/ContentChannelList/contentChannelListOptionsBag.d.ts +30 -0
  1119. package/types/ViewModels/Blocks/Cms/ContentChannelTypeDetail/contentChannelTypeBag.d.ts +73 -0
  1120. package/types/ViewModels/Blocks/Cms/ContentChannelTypeDetail/contentChannelTypeDetailOptionsBag.d.ts +29 -0
  1121. package/types/ViewModels/Blocks/Cms/ContentChannelTypeList/contentChannelTypeListOptionsBag.d.ts +26 -0
  1122. package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +3 -0
  1123. package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsBag.d.ts +80 -0
  1124. package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsDetailOptionsBag.d.ts +33 -0
  1125. package/types/ViewModels/Blocks/Cms/MediaAccountList/mediaAccountListOptionsBag.d.ts +26 -0
  1126. package/types/ViewModels/Blocks/Cms/MediaFolderList/mediaFolderListOptionsBag.d.ts +30 -0
  1127. package/types/ViewModels/Blocks/Cms/PageList/pageListOptionsBag.d.ts +28 -0
  1128. package/types/ViewModels/Blocks/Cms/PageSearch/pageSearchBag.d.ts +29 -0
  1129. package/types/ViewModels/Blocks/Cms/PageSearch/pageSearchPageBag.d.ts +40 -0
  1130. package/types/ViewModels/Blocks/Cms/PageShortLinkClickList/pageShortLinkClickListOptionsBag.d.ts +26 -0
  1131. package/types/ViewModels/Blocks/Cms/PageShortLinkList/pageShortLinkListOptionsBag.d.ts +30 -0
  1132. package/types/ViewModels/Blocks/Cms/PersonalLinkList/personalLinkListOptionsBag.d.ts +37 -0
  1133. package/types/ViewModels/Blocks/Cms/PersonalLinkList/savePersonalLinkRequestBag.d.ts +34 -0
  1134. package/types/ViewModels/Blocks/Cms/PersonalLinkSectionList/personalLinkSectionListOptionsBag.d.ts +28 -0
  1135. package/types/ViewModels/Blocks/Cms/PersonalizationSegmentList/personalizationSegmentListOptionsBag.d.ts +26 -0
  1136. package/types/ViewModels/Blocks/Cms/SiteDetail/siteBag.d.ts +14 -3
  1137. package/types/ViewModels/Blocks/Cms/SiteDetail/siteDetailOptionsBag.d.ts +2 -3
  1138. package/types/ViewModels/Blocks/Cms/SiteList/siteListOptionsBag.d.ts +10 -0
  1139. package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationBag.d.ts +42 -0
  1140. package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationInitializationBox.d.ts +42 -0
  1141. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryAuthorizationBag.d.ts +34 -0
  1142. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryCommunicationBag.d.ts +128 -0
  1143. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryEmailMediumOptionsBag.d.ts +71 -0
  1144. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryGetRecipientsRequestBag.d.ts +30 -0
  1145. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryInitializationBox.d.ts +88 -0
  1146. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryMediumOptionsBaseBag.d.ts +44 -0
  1147. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryPushMediumOptionsBag.d.ts +53 -0
  1148. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryPushNotificationOptionsBag.d.ts +40 -0
  1149. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryRecipientBag.d.ts +63 -0
  1150. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySaveMetricsReminderRequestBag.d.ts +33 -0
  1151. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySaveRequestBag.d.ts +128 -0
  1152. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySaveResponseBag.d.ts +46 -0
  1153. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySendRequestBag.d.ts +128 -0
  1154. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySendResponseBag.d.ts +46 -0
  1155. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntrySmsMediumOptionsBag.d.ts +53 -0
  1156. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryTestRequestBag.d.ts +128 -0
  1157. package/types/ViewModels/Blocks/Communication/CommunicationEntry/communicationEntryTestResponseBag.d.ts +31 -0
  1158. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCheckShortLinkTokenBag.d.ts +31 -0
  1159. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationBag.d.ts +138 -0
  1160. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationTemplateDetailBag.d.ts +108 -0
  1161. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationTemplateListItemBag.d.ts +54 -0
  1162. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardGetEmailPreviewHtmlBag.d.ts +33 -0
  1163. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardInitializationBox.d.ts +123 -0
  1164. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardPushNotificationOptionsBag.d.ts +40 -0
  1165. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardRecipientBag.d.ts +63 -0
  1166. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardSaveCommunicationTemplateResponseBag.d.ts +34 -0
  1167. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardSaveMetricsReminderRequestBag.d.ts +33 -0
  1168. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardSaveResponseBag.d.ts +33 -0
  1169. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardSendResponseBag.d.ts +28 -0
  1170. package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardSendTestCommunicationRequestBag.d.ts +33 -0
  1171. package/types/ViewModels/Blocks/Communication/CommunicationList/communicationListOptionsBag.d.ts +39 -0
  1172. package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessBag.d.ts +1 -0
  1173. package/types/ViewModels/Blocks/Communication/SmsConversations/conversationBag.d.ts +86 -0
  1174. package/types/ViewModels/Blocks/Communication/SmsConversations/messageBag.d.ts +43 -0
  1175. package/types/ViewModels/Blocks/Communication/SmsConversations/responseListingStatusBag.d.ts +33 -0
  1176. package/types/ViewModels/Blocks/Communication/SmsConversations/sendMessageBag.d.ts +36 -0
  1177. package/types/ViewModels/Blocks/Communication/SmsConversations/smsConversationsInitializationBox.d.ts +55 -0
  1178. package/types/ViewModels/Blocks/Communication/SmsConversations/smsConversationsSaveNoteBag.d.ts +33 -0
  1179. package/types/ViewModels/Blocks/Communication/SmsConversations/snippetBag.d.ts +37 -0
  1180. package/types/ViewModels/Blocks/Communication/SmsPipelineList/smsPipelineListOptionsBag.d.ts +26 -0
  1181. package/types/ViewModels/Blocks/Communication/SystemCommunicationPreview/systemCommunicationPreviewInitializationBox.d.ts +75 -0
  1182. package/types/ViewModels/Blocks/Core/AssetStorageProviderList/assetStorageProviderListOptionsBag.d.ts +26 -0
  1183. package/types/ViewModels/Blocks/Core/AttributeMatrixTemplateDetail/attributeMatrixTemplateBag.d.ts +58 -0
  1184. package/types/ViewModels/Blocks/Core/AttributeMatrixTemplateDetail/attributeMatrixTemplateDetailOptionsBag.d.ts +26 -0
  1185. package/types/ViewModels/Blocks/Core/AttributeMatrixTemplateList/attributeMatrixTemplateListOptionsBag.d.ts +26 -0
  1186. package/types/ViewModels/Blocks/Core/BinaryFileList/binaryFileListOptionsBag.d.ts +28 -0
  1187. package/types/ViewModels/Blocks/Core/BinaryFileTypeDetail/binaryFileTypeBag.d.ts +86 -0
  1188. package/types/ViewModels/Blocks/Core/BinaryFileTypeDetail/binaryFileTypeDetailOptionsBag.d.ts +26 -0
  1189. package/types/ViewModels/Blocks/Core/BinaryFileTypeList/binaryFileTypeListOptionsBag.d.ts +26 -0
  1190. package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +6 -0
  1191. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryBag.d.ts +9 -0
  1192. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryDetailOptionsBag.d.ts +2 -0
  1193. package/types/ViewModels/Blocks/Core/DefinedTypeDetail/definedTypeBag.d.ts +71 -0
  1194. package/types/ViewModels/Blocks/Core/DefinedTypeDetail/definedTypeDetailOptionsBag.d.ts +26 -0
  1195. package/types/ViewModels/Blocks/Core/DefinedTypeList/definedTypeListOptionsBag.d.ts +28 -0
  1196. package/types/ViewModels/Blocks/Core/DefinedValueList/definedValueBag.d.ts +3 -0
  1197. package/types/ViewModels/Blocks/Core/DeviceDetail/deviceBag.d.ts +85 -0
  1198. package/types/ViewModels/Blocks/Core/DeviceDetail/deviceDetailOptionsBag.d.ts +44 -0
  1199. package/types/ViewModels/Blocks/Core/DeviceList/deviceListOptionsBag.d.ts +26 -0
  1200. package/types/ViewModels/Blocks/{Crm → Core}/DocumentTypeDetail/documentTypeBag.d.ts +1 -1
  1201. package/types/ViewModels/Blocks/Core/DocumentTypeList/documentTypeListOptionsBag.d.ts +26 -0
  1202. package/types/ViewModels/Blocks/Core/EntitySearchDetail/entitySearchBag.d.ts +106 -0
  1203. package/types/ViewModels/Blocks/Core/EntitySearchDetail/entitySearchDetailOptionsBag.d.ts +26 -0
  1204. package/types/ViewModels/Blocks/Core/EntitySearchDetail/previewResultsBag.d.ts +34 -0
  1205. package/types/ViewModels/Blocks/Core/EntitySearchList/entitySearchListOptionsBag.d.ts +26 -0
  1206. package/types/ViewModels/Blocks/Core/EventList/eventListOptionsBag.d.ts +26 -0
  1207. package/types/ViewModels/Blocks/Core/FollowingSuggestionTypeList/followingSuggestionTypeListOptionsBag.d.ts +26 -0
  1208. package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +3 -3
  1209. package/types/ViewModels/Blocks/Core/LocationList/locationListOptionsBag.d.ts +26 -0
  1210. package/types/ViewModels/Blocks/Core/LogViewer/rockLogEventsBag.d.ts +2 -2
  1211. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +12 -0
  1212. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeDetailOptionsBag.d.ts +2 -0
  1213. package/types/ViewModels/Blocks/Core/NoteTypeList/noteTypeListOptionsBag.d.ts +26 -0
  1214. package/types/ViewModels/Blocks/Core/NoteWatchDetail/noteWatchBag.d.ts +73 -0
  1215. package/types/ViewModels/Blocks/Core/NoteWatchDetail/noteWatchDetailOptionsBag.d.ts +45 -0
  1216. package/types/ViewModels/Blocks/Core/NoteWatchList/noteWatchListOptionsBag.d.ts +33 -0
  1217. package/types/ViewModels/Blocks/Core/Notes/noteBag.d.ts +5 -0
  1218. package/types/ViewModels/Blocks/Core/Notes/noteTypeBag.d.ts +3 -0
  1219. package/types/ViewModels/Blocks/Core/PersonFollowingList/personFollowingListOptionsBag.d.ts +31 -0
  1220. package/types/ViewModels/Blocks/Core/PersonSuggestionList/personSuggestionListOptionsBag.d.ts +26 -0
  1221. package/types/ViewModels/Blocks/Core/RestActionList/restActionListOptionsBag.d.ts +6 -0
  1222. package/types/ViewModels/Blocks/Core/RestControllerList/restControllerListBag.d.ts +45 -0
  1223. package/types/ViewModels/Blocks/Core/RestControllerList/restControllerListOptionsBag.d.ts +1 -0
  1224. package/types/ViewModels/Blocks/Core/ScheduleList/scheduleListOptionsBag.d.ts +39 -0
  1225. package/types/ViewModels/Blocks/Core/ScheduledJobHistoryList/scheduledJobHistoryListOptionsBag.d.ts +31 -0
  1226. package/types/ViewModels/Blocks/Core/SignalTypeList/signalTypeListOptionsBag.d.ts +26 -0
  1227. package/types/ViewModels/Blocks/Core/SignatureDocumentDetail/signatureDocumentBag.d.ts +134 -0
  1228. package/types/ViewModels/Blocks/Core/SignatureDocumentDetail/signatureDocumentDetailOptionsBag.d.ts +25 -0
  1229. package/types/ViewModels/Blocks/Core/SignatureDocumentList/signatureDocumentListOptionsBag.d.ts +31 -0
  1230. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +1 -1
  1231. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateList/signatureDocumentTemplateListOptionsBag.d.ts +26 -0
  1232. package/types/ViewModels/Blocks/Core/TagDetail/tagDetailOptionsBag.d.ts +3 -0
  1233. package/types/ViewModels/Blocks/Core/TagList/tagListOptionsBag.d.ts +36 -0
  1234. package/types/ViewModels/Blocks/Core/TaggedItemList/taggedItemListOptionsBag.d.ts +7 -7
  1235. package/types/ViewModels/Blocks/Crm/AssessmentList/assessmentListBag.d.ts +2 -8
  1236. package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeBag.d.ts +1 -1
  1237. package/types/ViewModels/Blocks/Crm/AssessmentTypeList/assessmentTypeListOptionsBag.d.ts +26 -0
  1238. package/types/ViewModels/Blocks/Crm/BadgeList/badgeListOptionsBag.d.ts +26 -0
  1239. package/types/ViewModels/Blocks/Crm/Disc/assessmentResponseBag.d.ts +37 -0
  1240. package/types/ViewModels/Blocks/Crm/Disc/assessmentResultsBag.d.ts +52 -0
  1241. package/types/ViewModels/Blocks/Crm/Disc/discInitializationBox.d.ts +104 -0
  1242. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +9 -0
  1243. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveRequestBag.d.ts +0 -3
  1244. package/types/ViewModels/Blocks/Crm/NamelessPersonList/namelessPersonListOptionsBag.d.ts +26 -0
  1245. package/types/ViewModels/Blocks/Crm/PhotoUpload/personPhotoBag.d.ts +54 -0
  1246. package/types/ViewModels/Blocks/Crm/PhotoUpload/photoUploadInitializationBox.d.ts +44 -0
  1247. package/types/ViewModels/Blocks/Crm/SignalTypeDetail/signalTypeBag.d.ts +53 -0
  1248. package/types/ViewModels/Blocks/Crm/SignalTypeDetail/signalTypeDetailOptionsBag.d.ts +25 -0
  1249. package/types/ViewModels/Blocks/Engagement/AchievementAttemptList/achievementAttemptListOptionsBag.d.ts +33 -0
  1250. package/types/ViewModels/Blocks/Engagement/AchievementTypeDetail/achievementTypeBag.d.ts +123 -0
  1251. package/types/ViewModels/Blocks/Engagement/AchievementTypeDetail/achievementTypeDetailOptionsBag.d.ts +25 -0
  1252. package/types/ViewModels/Blocks/Engagement/ConnectionOpportunityList/connectionOpportunityListOptionsBag.d.ts +26 -0
  1253. package/types/ViewModels/Blocks/Engagement/StepParticipantList/stepParticipantListOptionsBag.d.ts +48 -0
  1254. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/workflowTriggerBag.d.ts +50 -0
  1255. package/types/ViewModels/Blocks/Engagement/StepProgramList/stepProgramListBag.d.ts +46 -0
  1256. package/types/ViewModels/Blocks/Engagement/StepProgramList/stepProgramListOptionsBag.d.ts +26 -0
  1257. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepAttributeBag.d.ts +32 -0
  1258. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeBag.d.ts +122 -0
  1259. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeDetailOptionsBag.d.ts +32 -0
  1260. package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeWorkflowTriggerBag.d.ts +50 -0
  1261. package/types/ViewModels/Blocks/Engagement/StepTypeList/stepTypeListOptionsBag.d.ts +43 -0
  1262. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +4 -4
  1263. package/types/ViewModels/Blocks/Engagement/StreakDetail/streakBag.d.ts +3 -0
  1264. package/types/ViewModels/Blocks/Engagement/StreakTypeList/streakTypeListOptionsBag.d.ts +26 -0
  1265. package/types/ViewModels/Blocks/Event/EventCalendarItemList/eventCalendarItemListOptionsBag.d.ts +33 -0
  1266. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryInitializationBox.d.ts +3 -0
  1267. package/types/ViewModels/Blocks/Event/RegistrationInstanceActiveList/registrationInstanceActiveListOptionsBag.d.ts +31 -0
  1268. package/types/ViewModels/Blocks/Example/ControlGallery/controlGalleryInitializationBox.d.ts +46 -0
  1269. package/types/ViewModels/Blocks/Finance/BenevolenceTypeDetail/benevolenceTypeBag.d.ts +60 -0
  1270. package/types/ViewModels/Blocks/Finance/BenevolenceTypeDetail/benevolenceTypeDetailOptionsBag.d.ts +32 -0
  1271. package/types/ViewModels/Blocks/Finance/BenevolenceTypeDetail/benevolenceWorkflowBag.d.ts +50 -0
  1272. package/types/ViewModels/Blocks/Finance/BusinessList/businessListBag.d.ts +59 -0
  1273. package/types/ViewModels/Blocks/Finance/BusinessList/businessListOptionsBag.d.ts +26 -0
  1274. package/types/ViewModels/Blocks/Finance/FinancialAccountDetail/financialAccountBag.d.ts +94 -0
  1275. package/types/ViewModels/Blocks/Finance/FinancialAccountDetail/financialAccountDetailOptionsBag.d.ts +29 -0
  1276. package/types/ViewModels/Blocks/Finance/FinancialAccountDetail/financialAccountParticipantBag.d.ts +38 -0
  1277. package/types/ViewModels/Blocks/Finance/FinancialAccountList/financialAccountListOptionsBag.d.ts +31 -0
  1278. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchAccountTotalsBag.d.ts +6 -0
  1279. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +3 -0
  1280. package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayBag.d.ts +3 -0
  1281. package/types/ViewModels/Blocks/Finance/FinancialGatewayList/financialGatewayListOptionsBag.d.ts +31 -0
  1282. package/types/ViewModels/Blocks/Finance/FinancialPersonBankAccountList/financialPersonBankAccountListOptionsBag.d.ts +26 -0
  1283. package/types/ViewModels/Blocks/Finance/FinancialPersonSavedAccountDetail/financialPersonSavedAccountBag.d.ts +64 -0
  1284. package/types/ViewModels/Blocks/Finance/FinancialPersonSavedAccountDetail/financialPersonSavedAccountDetailOptionsBag.d.ts +25 -0
  1285. package/types/ViewModels/Blocks/Finance/FinancialPledgeList/financialPledgeListOptionsBag.d.ts +0 -12
  1286. package/types/ViewModels/Blocks/Finance/FinancialScheduledTransactionList/financialScheduledTransactionListOptionsBag.d.ts +33 -0
  1287. package/types/ViewModels/Blocks/Finance/FinancialStatementTemplateDetail/financialStatementTemplateBag.d.ts +112 -0
  1288. package/types/ViewModels/Blocks/Finance/FinancialStatementTemplateDetail/financialStatementTemplateDetailOptionsBag.d.ts +35 -0
  1289. package/types/ViewModels/Blocks/Finance/FinancialStatementTemplateList/financialStatementTemplateListOptionsBag.d.ts +26 -0
  1290. package/types/ViewModels/Blocks/Finance/VolunteerGenerosityAnalysis/volunteerGenerosityDataBag.d.ts +3 -0
  1291. package/types/ViewModels/Blocks/Finance/VolunteerGenerosityAnalysis/volunteerGenerosityInitializationBox.d.ts +2 -1
  1292. package/types/ViewModels/Blocks/Group/GroupArchivedList/groupArchivedListOptionsBag.d.ts +26 -0
  1293. package/types/ViewModels/Blocks/Group/GroupMemberScheduleTemplateDetail/groupMemberScheduleTemplateBag.d.ts +44 -0
  1294. package/types/ViewModels/Blocks/Group/GroupMemberScheduleTemplateDetail/groupMemberScheduleTemplateDetailOptionsBag.d.ts +26 -0
  1295. package/types/ViewModels/Blocks/Group/GroupRequirementTypeDetail/groupRequirementTypeBag.d.ts +114 -0
  1296. package/types/ViewModels/Blocks/Group/GroupRequirementTypeDetail/groupRequirementTypeDetailOptionsBag.d.ts +30 -0
  1297. package/types/ViewModels/Blocks/Group/GroupRequirementTypeList/groupRequirementTypeListOptionsBag.d.ts +26 -0
  1298. package/types/ViewModels/Blocks/Group/GroupTypeList/groupTypeListOptionsBag.d.ts +26 -0
  1299. package/types/ViewModels/Blocks/Group/Scheduling/GroupMemberScheduleTemplateList/groupMemberScheduleTemplateListOptionsBag.d.ts +26 -0
  1300. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/initializationBox.d.ts +6 -0
  1301. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +10 -2
  1302. package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityComponentBag.d.ts +57 -0
  1303. package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityParticipantBag.d.ts +52 -0
  1304. package/types/ViewModels/Blocks/Lms/LearningClassActivityCompletionDetail/learningClassActivityCompletionBag.d.ts +117 -0
  1305. package/types/ViewModels/Blocks/Lms/LearningClassActivityCompletionDetail/learningClassActivityCompletionDetailOptionsBag.d.ts +30 -0
  1306. package/types/ViewModels/Blocks/Lms/LearningClassActivityCompletionList/learningClassActivityCompletionListOptionsBag.d.ts +33 -0
  1307. package/types/ViewModels/Blocks/Lms/LearningClassActivityDetail/learningClassActivityBag.d.ts +139 -0
  1308. package/types/ViewModels/Blocks/Lms/LearningClassActivityDetail/learningClassActivityDetailOptionsBag.d.ts +43 -0
  1309. package/types/ViewModels/Blocks/Lms/LearningClassAnnouncementDetail/LearningClassAnnouncementDetailOptionsBag.d.ts +28 -0
  1310. package/types/ViewModels/Blocks/Lms/LearningClassAnnouncementDetail/learningClassAnnouncementBag.d.ts +52 -0
  1311. package/types/ViewModels/Blocks/Lms/LearningClassContentPageDetail/LearningClassContentPageDetailOptionsBag.d.ts +26 -0
  1312. package/types/ViewModels/Blocks/Lms/LearningClassContentPageDetail/learningClassContentPageBag.d.ts +48 -0
  1313. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassBag.d.ts +87 -0
  1314. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassDetailOptionsBag.d.ts +49 -0
  1315. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassFacilitatorBag.d.ts +49 -0
  1316. package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassLocationBag.d.ts +32 -0
  1317. package/types/ViewModels/Blocks/Lms/LearningClassList/learningClassListOptionsBag.d.ts +39 -0
  1318. package/types/ViewModels/Blocks/Lms/LearningCourseDetail/learningCourseBag.d.ts +101 -0
  1319. package/types/ViewModels/Blocks/Lms/LearningCourseDetail/learningCourseDetailOptionsBag.d.ts +30 -0
  1320. package/types/ViewModels/Blocks/Lms/LearningCourseDetail/learningCourseRequirementBag.d.ts +44 -0
  1321. package/types/ViewModels/Blocks/Lms/LearningCourseList/learningCourseListOptionsBag.d.ts +26 -0
  1322. package/types/ViewModels/Blocks/Lms/LearningCourseRequirement/learningCourseRequirementBag.d.ts +52 -0
  1323. package/types/ViewModels/Blocks/Lms/LearningGradingSystemDetail/learningGradingSystemBag.d.ts +45 -0
  1324. package/types/ViewModels/Blocks/Lms/LearningGradingSystemDetail/learningGradingSystemDetailOptionsBag.d.ts +26 -0
  1325. package/types/ViewModels/Blocks/Lms/LearningGradingSystemList/learningGradingSystemListOptionsBag.d.ts +26 -0
  1326. package/types/ViewModels/Blocks/Lms/LearningGradingSystemScaleDetail/learningGradingSystemScaleBag.d.ts +51 -0
  1327. package/types/ViewModels/Blocks/Lms/LearningGradingSystemScaleDetail/learningGradingSystemScaleDetailOptionsBag.d.ts +26 -0
  1328. package/types/ViewModels/Blocks/Lms/LearningGradingSystemScaleList/learningGradingSystemScaleListOptionsBag.d.ts +28 -0
  1329. package/types/ViewModels/Blocks/Lms/LearningParticipantDetail/learningParticipantBag.d.ts +69 -0
  1330. package/types/ViewModels/Blocks/Lms/LearningParticipantDetail/learningParticipantDetailOptionsBag.d.ts +36 -0
  1331. package/types/ViewModels/Blocks/Lms/LearningProgramCompletionDetail/learningProgramCompletionBag.d.ts +49 -0
  1332. package/types/ViewModels/Blocks/Lms/LearningProgramCompletionDetail/learningProgramCompletionDetailBag.d.ts +43 -0
  1333. package/types/ViewModels/Blocks/Lms/LearningProgramCompletionDetail/learningProgramCompletionDetailOptionsBag.d.ts +26 -0
  1334. package/types/ViewModels/Blocks/Lms/LearningProgramCompletionList/learningProgramCompletionListOptionsBag.d.ts +27 -0
  1335. package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramBag.d.ts +121 -0
  1336. package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramDetailOptionsBag.d.ts +36 -0
  1337. package/types/ViewModels/Blocks/Lms/LearningProgramList/learningProgramListOptionsBag.d.ts +25 -0
  1338. package/types/ViewModels/Blocks/Lms/LearningSemesterDetail/learningSemesterBag.d.ts +48 -0
  1339. package/types/ViewModels/Blocks/Lms/LearningSemesterDetail/learningSemesterDetailOptionsBag.d.ts +26 -0
  1340. package/types/ViewModels/Blocks/Lms/LearningSemesterList/learningSemesterListOptionsBag.d.ts +33 -0
  1341. package/types/ViewModels/Blocks/Lms/PublicLearningClassEnrollment/publicLearningClassEnrollmentBlockBox.d.ts +49 -0
  1342. package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceBox.d.ts +108 -0
  1343. package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceNotificationBag.d.ts +40 -0
  1344. package/types/ViewModels/Blocks/Lms/PublicLearningCourseDetail/publicLearningCourseDetailBlockBox.d.ts +39 -0
  1345. package/types/ViewModels/Blocks/Lms/PublicLearningCourseList/publicLearningCourseListBlockBox.d.ts +36 -0
  1346. package/types/ViewModels/Blocks/Lms/PublicLearningProgramList/publicLearningProgramListBlockBox.d.ts +36 -0
  1347. package/types/ViewModels/Blocks/Mobile/MobileLayoutDetail/mobileLayoutBag.d.ts +47 -0
  1348. package/types/ViewModels/Blocks/Mobile/MobileLayoutDetail/mobileLayoutDetailOptionsBag.d.ts +28 -0
  1349. package/types/ViewModels/Blocks/Prayer/PrayerCommentList/prayerCommentListOptionsBag.d.ts +5 -0
  1350. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestBag.d.ts +9 -0
  1351. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailAddPersonResponseBag.d.ts +8 -0
  1352. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailOptionsBag.d.ts +6 -0
  1353. package/types/ViewModels/Blocks/Reporting/InteractionComponentDetail/interactionComponentDetailInitializationBox.d.ts +43 -0
  1354. package/types/ViewModels/Blocks/Reporting/InteractionDetail/interactionDetailInitializationBox.d.ts +39 -0
  1355. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateDetailOptionsBag.d.ts +2 -0
  1356. package/types/ViewModels/Blocks/Reporting/MetricValueDetail/metricValueBag.d.ts +59 -0
  1357. package/types/ViewModels/Blocks/Reporting/MetricValueDetail/metricValueDetailOptionsBag.d.ts +29 -0
  1358. package/types/ViewModels/Blocks/Reporting/MetricValueDetail/metricValuePartitionBag.d.ts +36 -0
  1359. package/types/ViewModels/Blocks/Reporting/PageParameterFilter/getUpdatedFiltersResponseBag.d.ts +3 -0
  1360. package/types/ViewModels/Blocks/Reporting/PersistedDataViewList/persistedDataViewListOptionsBag.d.ts +26 -0
  1361. package/types/ViewModels/Blocks/Reporting/TithingOverview/tithingOverviewInitializationBox.d.ts +54 -0
  1362. package/types/ViewModels/Blocks/Reporting/TithingOverview/tithingOverviewToolTipBag.d.ts +63 -0
  1363. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +3 -0
  1364. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterRequestBox.d.ts +0 -3
  1365. package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppBag.d.ts +1 -4
  1366. package/types/ViewModels/Blocks/Tv/AppleTvPageList/appleTvPageListOptionsBag.d.ts +31 -0
  1367. package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +1 -1
  1368. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerBag.d.ts +3 -0
  1369. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerDetailOptionsBag.d.ts +25 -0
  1370. package/types/ViewModels/Controls/datePartsPickerValueBag.d.ts +34 -0
  1371. package/types/ViewModels/Controls/fieldPropertyItemBag.d.ts +46 -0
  1372. package/types/ViewModels/Controls/fieldSettingBag.d.ts +54 -0
  1373. package/types/ViewModels/Controls/fileAsset.d.ts +51 -0
  1374. package/types/ViewModels/Controls/fullFieldSettingBag.d.ts +22 -0
  1375. package/types/ViewModels/{Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts → Controls/sankeyDiagramEdgeBag.d.ts} +1 -1
  1376. package/types/ViewModels/{Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts → Controls/sankeyDiagramNodeBag.d.ts} +2 -2
  1377. package/types/ViewModels/{Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts → Controls/sankeyDiagramSettingsBag.d.ts} +2 -2
  1378. package/types/ViewModels/Controls/valueFilter.d.ts +35 -0
  1379. package/types/ViewModels/Core/entitySearchQueryBag.d.ts +75 -0
  1380. package/types/ViewModels/Core/entitySearchResultsBag.d.ts +31 -0
  1381. package/types/ViewModels/Finance/savedAccountTokenBag.d.ts +46 -0
  1382. package/types/ViewModels/Finance/savedFinancialAccountListItemBag.d.ts +8 -0
  1383. package/types/ViewModels/Rest/Controls/aiProviderPickerGetAIProviderOptionsBag.d.ts +29 -0
  1384. package/types/ViewModels/Rest/Controls/aiProviderPickerGetAIProvidersOptionsBag.d.ts +29 -0
  1385. package/types/ViewModels/Rest/Controls/assetManagerAddFolderOptionsBag.d.ts +37 -0
  1386. package/types/ViewModels/Rest/Controls/assetManagerBaseOptionsBag.d.ts +31 -0
  1387. package/types/ViewModels/Rest/Controls/assetManagerDeleteFilesOptionsBag.d.ts +37 -0
  1388. package/types/ViewModels/Rest/Controls/assetManagerDownloadFileOptionsBag.d.ts +37 -0
  1389. package/types/ViewModels/Rest/Controls/assetManagerExtractFileOptionsBag.d.ts +37 -0
  1390. package/types/ViewModels/Rest/Controls/assetManagerGetChildrenOptionsBag.d.ts +32 -0
  1391. package/types/ViewModels/Rest/Controls/assetManagerGetFilesOptionsBag.d.ts +37 -0
  1392. package/types/ViewModels/Rest/Controls/assetManagerGetFilesResultsBag.d.ts +34 -0
  1393. package/types/ViewModels/Rest/Controls/assetManagerGetListOfAllFoldersOptionsBag.d.ts +44 -0
  1394. package/types/ViewModels/Rest/Controls/assetManagerGetRootFoldersOptionsBag.d.ts +60 -0
  1395. package/types/ViewModels/Rest/Controls/assetManagerMoveFolderOptionsBag.d.ts +37 -0
  1396. package/types/ViewModels/Rest/Controls/assetManagerRenameFileOptionsBag.d.ts +40 -0
  1397. package/types/ViewModels/Rest/Controls/assetManagerRenameFolderOptionsBag.d.ts +37 -0
  1398. package/types/ViewModels/Rest/Controls/assetManagerTreeItemBag.d.ts +69 -0
  1399. package/types/ViewModels/Rest/Controls/attributeMatrixEditorNormalizeEditValueOptionsBag.d.ts +41 -0
  1400. package/types/ViewModels/Rest/Controls/attributeMatrixEditorNormalizeEditValueResultsBag.d.ts +40 -0
  1401. package/types/ViewModels/Rest/Controls/attributeMatrixEditorPublicItemBag.d.ts +47 -0
  1402. package/types/ViewModels/Rest/Controls/badgeControlGetBadgeOptionsBag.d.ts +48 -0
  1403. package/types/ViewModels/Rest/Controls/{definedValuePickerGetAttributesOptionsBag.d.ts → definedValueEditorGetAttributesOptionsBag.d.ts} +1 -1
  1404. package/types/ViewModels/Rest/Controls/definedValueEditorGetAttributesResultsBag.d.ts +33 -0
  1405. package/types/ViewModels/Rest/Controls/{definedValuePickerSaveNewValueOptionsBag.d.ts → definedValueEditorSaveNewValueOptionsBag.d.ts} +7 -1
  1406. package/types/ViewModels/Rest/Controls/emailEditorAttendanceOccurrenceBag.d.ts +40 -0
  1407. package/types/ViewModels/Rest/Controls/emailEditorCreateAttendanceOccurrenceOptionsBag.d.ts +37 -0
  1408. package/types/ViewModels/Rest/Controls/emailEditorDeleteEmailSectionOptionsBag.d.ts +30 -0
  1409. package/types/ViewModels/Rest/Controls/emailEditorEmailSectionBag.d.ts +49 -0
  1410. package/types/ViewModels/Rest/Controls/emailEditorGetAttendanceOccurrenceOptionsBag.d.ts +28 -0
  1411. package/types/ViewModels/Rest/Controls/emailEditorGetEmailSectionOptionsBag.d.ts +30 -0
  1412. package/types/ViewModels/Rest/Controls/emailEditorGetFutureAttendanceOccurrencesOptionsBag.d.ts +30 -0
  1413. package/types/ViewModels/Rest/Controls/emailEditorRegisterRsvpRecipientsOptionsBag.d.ts +31 -0
  1414. package/types/ViewModels/Rest/Controls/entityPickerGetEntityTypeGuidsOptionsBag.d.ts +28 -0
  1415. package/types/ViewModels/Rest/Controls/entityPickerGetFieldTypeConfigurationOptionsBag.d.ts +36 -0
  1416. package/types/ViewModels/Rest/Controls/entityPickerGetFieldTypeConfigurationResultsBag.d.ts +39 -0
  1417. package/types/ViewModels/Rest/Controls/entityTypePickerGetEntityTypesOptionsBag.d.ts +4 -0
  1418. package/types/ViewModels/Rest/Controls/geoPickerGoogleMapSettingsBag.d.ts +3 -0
  1419. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardConfigBag.d.ts +55 -0
  1420. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardGetConfigOptionsBag.d.ts +43 -0
  1421. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardGetConfigResultsBag.d.ts +54 -0
  1422. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardMarkMetManuallyOptionsBag.d.ts +39 -0
  1423. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardRunWorkflowOptionsBag.d.ts +42 -0
  1424. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardRunWorkflowResultsBag.d.ts +38 -0
  1425. package/types/ViewModels/Rest/Controls/groupMemberRequirementCardSubControlConfigBag.d.ts +37 -0
  1426. package/types/ViewModels/Rest/Controls/groupMemberRequirementCategoryBag.d.ts +39 -0
  1427. package/types/ViewModels/Rest/Controls/groupMemberRequirementContainerGetDataOptionsBag.d.ts +39 -0
  1428. package/types/ViewModels/Rest/Controls/groupMemberRequirementContainerGetDataResultsBag.d.ts +37 -0
  1429. package/types/ViewModels/Rest/Controls/groupMemberRequirementErrorBag.d.ts +34 -0
  1430. package/types/ViewModels/Rest/Controls/matrixFieldDataBag.d.ts +47 -0
  1431. package/types/ViewModels/Rest/Controls/mediaPlayerGetPlayerOptionsOptionsBag.d.ts +49 -0
  1432. package/types/ViewModels/Rest/Controls/mediaPlayerOptionsBag.d.ts +156 -0
  1433. package/types/ViewModels/Rest/Controls/mergeFieldPickerGetSearchedMergedFieldsOptionsBag.d.ts +34 -0
  1434. package/types/ViewModels/Rest/Controls/pageNavButtonsGetLinksOptionsBag.d.ts +42 -0
  1435. package/types/ViewModels/Rest/Controls/personBasicEditorBag.d.ts +79 -0
  1436. package/types/ViewModels/Rest/Controls/reminderButtonAddReminderOptionsBag.d.ts +54 -0
  1437. package/types/ViewModels/Rest/Controls/reminderButtonGetRemindersOptionsBag.d.ts +42 -0
  1438. package/types/ViewModels/Rest/Controls/reminderButtonGetRemindersReminderBag.d.ts +51 -0
  1439. package/types/ViewModels/Rest/Controls/reminderButtonGetRemindersResultsBag.d.ts +49 -0
  1440. package/types/ViewModels/Rest/Controls/reminderButtonReminderActionOptionsBag.d.ts +39 -0
  1441. package/types/ViewModels/Rest/Controls/schedulePickerGetChildrenOptionsBag.d.ts +3 -0
  1442. package/types/ViewModels/Rest/Controls/structuredContentBag.d.ts +36 -0
  1443. package/types/ViewModels/Rest/Controls/universalItemTreePickerOptionsBag.d.ts +2 -1
  1444. package/types/ViewModels/Rest/Models/Workflows/launchWorkflowOptionsBag.d.ts +71 -0
  1445. package/types/ViewModels/Rest/Models/Workflows/launchWorkflowResponseBag.d.ts +62 -0
  1446. package/types/ViewModels/Rest/Models/createdAtResponseBag.d.ts +39 -0
  1447. package/types/ViewModels/Rest/Models/itemIdentifierBag.d.ts +39 -0
  1448. package/types/ViewModels/Rest/Models/modelAttributeValueBag.d.ts +40 -0
  1449. package/types/ViewModels/Rock/Blocks/Communication/communicationEntryWizardSaveCommunicationTemplateResponseBag.d.ts +34 -0
  1450. package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +9 -0
  1451. package/types/Controls/genderDropDownList.obs.d.ts +0 -21
  1452. package/types/Controls/skeleton.obs.d.ts +0 -9
  1453. package/types/Enums/Lms/availableDateCalculationMethod.d.ts +0 -17
  1454. package/types/Enums/Lms/dueDateCalculationMethod.d.ts +0 -15
  1455. /package/types/ViewModels/Blocks/{Crm → Core}/DocumentTypeDetail/documentTypeDetailOptionsBag.d.ts +0 -0
@@ -1,718 +1,751 @@
1
- import { PropType } from "vue";
2
- import { GridAction, IGridState } from "@Obsidian/Types/Controls/grid";
3
- import { GridDataBag } from "@Obsidian/ViewModels/Core/Grid/gridDataBag";
4
- import { GridDefinitionBag } from "@Obsidian/ViewModels/Core/Grid/gridDefinitionBag";
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
- /**
7
- * The data to be displayed in the grid. This may either be an object
8
- * that contains the grid data directly or a function that returns the
9
- * grid data. The function may return a Promise which will be waited
10
- * asynchronously until the data is ready.
11
- */
12
- data: {
13
- type: PropType<GridDataBag | Promise<GridDataBag>>;
14
- };
15
- /**
16
- * Contains the definition data about the grid. This contains information
17
- * about the fields, action URLS and other features of the grid.
18
- */
19
- definition: {
20
- type: PropType<GridDefinitionBag>;
21
- required: false;
22
- };
23
- /**
24
- * The title of the grid. If not provided and `isTitleHidden` is `false`,
25
- * the default title of `${itemTerm} List` will be shown.
26
- */
27
- title: {
28
- type: PropType<string>;
29
- required: false;
30
- };
31
- /** When `true`, the grid's title will be hidden. */
32
- isTitleHidden: {
33
- type: PropType<boolean>;
34
- default: boolean;
35
- };
36
- /**
37
- * Identifies the field that will be used to uniquely identify each
38
- * row. This is not required but many advanced features of the grid
39
- * require this to function.
40
- */
41
- keyField: {
42
- type: PropType<string>;
43
- required: false;
44
- };
45
- /**
46
- * Identifies the field that will contain the person key. If the grid
47
- * does not represent Person records then leave this unset.
48
- */
49
- personKeyField: {
50
- type: PropType<string>;
51
- required: false;
52
- };
53
- /**
54
- * Specifies the fields to be used to identify communication recipients
55
- * when using the communicate action. This will take precedence over
56
- * the personKeyField if both are set.
57
- */
58
- communicationRecipientPersonKeyFields: {
59
- type: PropType<string[]>;
60
- required: false;
61
- };
62
- /**
63
- * Identifies the key that will be used to provide the tooltip text
64
- * for each row in the Grid. This property is not reactive.
65
- */
66
- tooltipField: {
67
- type: PropType<string>;
68
- required: false;
69
- };
70
- /**
71
- * Indicates that this grid should operate in light mode which disables
72
- * a number of features. This is intended to be used with small grids
73
- * that are embedded inside other blocks or controls.
74
- */
75
- light: {
76
- type: PropType<boolean>;
77
- default: boolean;
78
- };
79
- /**
80
- * Determines if the grid will monitor for changes in the data of
81
- * existing rows, new rows and removed rows. Should not be used for
82
- * grids with more than 10,000 rows. This property is not reactive.
83
- */
84
- liveUpdates: {
85
- type: PropType<boolean>;
86
- required: false;
87
- };
88
- /** If enabled then the grid will have a sticky header. */
89
- stickyHeader: {
90
- type: PropType<boolean>;
91
- default: boolean;
92
- };
93
- /**
94
- * The term that identifies individual rows in the grid. This
95
- * property is not reactive. If not specified it will default to "item".
96
- * This value should be singular and not plural.
97
- */
98
- itemTerm: {
99
- type: PropType<string>;
100
- required: false;
101
- };
102
- /**
103
- * The unique identifier of the entity type that the rows represent.
104
- */
105
- entityTypeGuid: {
106
- type: PropType<string | undefined>;
107
- required: false;
108
- };
109
- /**
110
- * The title to use when exporting the grid contents. This is used as
111
- * the exported filename as well as some other information inside the
112
- * export file. If not specified it will default to the itemTerm
113
- * property.
114
- */
115
- exportTitle: {
116
- type: PropType<string>;
117
- required: false;
118
- };
119
- /**
120
- * If `true`, then any Person operations will instead be Business
121
- * operations.
122
- */
123
- personAsBusiness: {
124
- type: PropType<boolean>;
125
- default: boolean;
126
- };
127
- /**
128
- * If `true`, then the merge template operation will operate as if
129
- * the records are Person records. If they are not then it will not
130
- * work correctly. This required that personKeyField also be set.
131
- */
132
- mergeTemplateAsPerson: {
133
- type: PropType<boolean>;
134
- default: boolean;
135
- };
136
- /**
137
- * Determines if the bulk update action will be available. If not
138
- * explicitly set then it will default to enabled if the personKeyField
139
- * property has been set.
140
- */
141
- showBulkUpdate: {
142
- type: PropType<boolean | undefined>;
143
- default: undefined;
144
- };
145
- /**
146
- * Determines if the merge person/business action will be available. If not
147
- * explicitly set then it will default to enabled if the personKeyField
148
- * property has been set.
149
- */
150
- showPersonMerge: {
151
- type: PropType<boolean | undefined>;
152
- default: undefined;
153
- };
154
- /**
155
- * Determines if the launch workflow action will be available. If not
156
- * explicitly set then it will default to enabled if the entityTypeGuid
157
- * and keyField properties have been set.
158
- */
159
- showLaunchWorkflow: {
160
- type: PropType<boolean | undefined>;
161
- default: undefined;
162
- };
163
- /**
164
- * Determines if the communicate action will be available. If not
165
- * explicitly set then it will default to enabled if either the
166
- * personKeyField or communicationRecipientPersonKeyFields properties
167
- * have been set.
168
- */
169
- showCommunicate: {
170
- type: PropType<boolean | undefined>;
171
- default: undefined;
172
- };
173
- /**
174
- * Determines if the merge template action will be available. If not
175
- * explicitly set then it will default to being shown. In the future
176
- * this default state might change.
177
- */
178
- showMergeTemplate: {
179
- type: PropType<boolean | undefined>;
180
- default: undefined;
181
- };
182
- /**
183
- * Determines if the export action will be available. If not explicitly
184
- * set then it will default to being shown. In the future this default
185
- * state might change.
186
- */
187
- showExport: {
188
- type: PropType<boolean | undefined>;
189
- default: undefined;
190
- };
191
- /**
192
- * If set to true, each row with an `isActive` property set to false
193
- * will be visually distinct
194
- */
195
- markInactiveRows: {
196
- type: BooleanConstructor;
197
- default: boolean;
198
- };
199
- /**
200
- * A CSS class that will be applied to each row. If you supply a string,
201
- * will apply that directly. You can also use a function that takes the
202
- * row object and returns a string, which allows you to apply different
203
- * classes to different rows depending on the row data.
204
- */
205
- rowClass: {
206
- type: PropType<string | ((row: Record<string, unknown>) => string)>;
207
- default: undefined;
208
- };
209
- /**
210
- * The text to display in the empty data row. The default is an empty string (""), which indicates that this property is not set.
211
- */
212
- emptyDataText: {
213
- type: StringConstructor;
214
- default: string;
215
- required: false;
216
- };
217
- /**
218
- * Any fields that should be included when sending a communication. If
219
- * a column name matches the field name then the formatted value of
220
- * the column will be used. Otherwise the raw field value will be used.
221
- */
222
- communicationMergeFields: {
223
- type: PropType<string[]>;
224
- required: false;
225
- };
226
- /**
227
- * The number of rows expected to fill the table. This does not
228
- * need to be anywhere close to the real number. It is used to
229
- * determine optimization settings and calculate how many skeleton
230
- * rows to display while loading.
231
- */
232
- expectedRowCount: {
233
- type: PropType<number>;
234
- required: false;
235
- };
236
- /**
237
- * Any custom actions that should be available for the individual to
238
- * see in the list of actions.
239
- */
240
- customActions: {
241
- type: PropType<GridAction[]>;
242
- required: false;
243
- };
244
- /**
245
- * The custom prefix to use when accessing person preferences related
246
- * to the grid. This prefix is appended to the standard prefix used
247
- * by the grid. This property is not reactive.
248
- */
249
- preferencePrefix: {
250
- type: PropType<string>;
251
- required: false;
252
- };
253
- /**
254
- * When `true`, all preferences will be disabled on the grid. Preferences
255
- * will not be read nor will they be saved. This property is not reactive.
256
- */
257
- disablePreferences: {
258
- type: PropType<boolean>;
259
- default: boolean;
260
- };
261
- /**
262
- * When `true`, a grid settings icon will be displayed and emit the
263
- * `gridSettingsClick` event when clicked.
264
- */
265
- gridSettings: {
266
- type: PropType<boolean>;
267
- default: boolean;
268
- };
269
- /**
270
- * When `true`, the grid settings icon will be displayed in an active
271
- * state. When `false`, the grid settings icon will be displayed in an
272
- * in-active state.
273
- */
274
- gridSettingsActive: {
275
- type: PropType<boolean>;
276
- default: boolean;
277
- };
278
- /**
279
- * The function to call in response to the add button being clicked.
280
- * Providing this function will automatically enable the add button.
281
- */
282
- onAddItem: {
283
- type: PropType<() => void | Promise<void>>;
284
- required: false;
285
- };
286
- /**
287
- * The function to call in response to a row being clicked. This
288
- * requires that an keyField be specified. Providing this function will
289
- * automatically enable row selection.
290
- */
291
- onSelectItem: {
292
- type: PropType<(key: string) => void | Promise<void>>;
293
- required: false;
294
- };
295
- /**
296
- * When `true`, the row count message will be displayed. When `false`,
297
- * the row count message will be hidden.
298
- */
299
- isCountMessageVisible: {
300
- type: PropType<boolean>;
301
- default: boolean;
302
- };
303
- /**
304
- * When `true`, the search box will be displayed. When `false`, the
305
- * search box will be hidden.
306
- */
307
- isSearchVisible: {
308
- type: BooleanConstructor;
309
- default: boolean;
310
- };
311
- /**
312
- * Light mode: When `true`, the actions row will be hidden.
313
- *
314
-
315
- * Full mode: When `true`, paging will be disabled, making all data rows
316
- * visible. Both the pager and actions rows will be hidden. If instead,
317
- * you only want to disable paging, but still want the actions row to be
318
- * shown, leave this property set to `false`, and set the `disablePaging`
319
- * property to `true`.
320
- */
321
- isFooterHidden: {
322
- type: PropType<boolean>;
323
- default: boolean;
324
- };
325
- /**
326
- * Light mode: This property will have no effect.
327
- *
328
- * Full mode: When `true`, paging will be disabled, making all data rows
329
- * visible. The pager row will be hidden but the actions row will be
330
- * shown. If instead, you want to hide BOTH the pager and actions rows,
331
- * leave this property set to `false`, and set the `isFooterHidden`
332
- * property to `true`.
333
- */
334
- disablePaging: {
335
- type: PropType<boolean>;
336
- default: boolean;
337
- };
338
- }, {
339
- deleteRow: (keyOrIndex: string | number) => void;
340
- rowUpdated: (keyOrIndex: string | number) => void;
341
- rowsUpdated: (keysOrIndexes: readonly string[] | readonly number[]) => void;
342
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
343
- gridSettingsClick: () => void;
344
- } & {
345
- filteredRowsChanged: (grid: IGridState) => void;
346
- } & {
347
- selectedKeysChanged: (grid: IGridState) => void;
348
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
349
- /**
350
- * The data to be displayed in the grid. This may either be an object
351
- * that contains the grid data directly or a function that returns the
352
- * grid data. The function may return a Promise which will be waited
353
- * asynchronously until the data is ready.
354
- */
355
- data: {
356
- type: PropType<GridDataBag | Promise<GridDataBag>>;
357
- };
358
- /**
359
- * Contains the definition data about the grid. This contains information
360
- * about the fields, action URLS and other features of the grid.
361
- */
362
- definition: {
363
- type: PropType<GridDefinitionBag>;
364
- required: false;
365
- };
366
- /**
367
- * The title of the grid. If not provided and `isTitleHidden` is `false`,
368
- * the default title of `${itemTerm} List` will be shown.
369
- */
370
- title: {
371
- type: PropType<string>;
372
- required: false;
373
- };
374
- /** When `true`, the grid's title will be hidden. */
375
- isTitleHidden: {
376
- type: PropType<boolean>;
377
- default: boolean;
378
- };
379
- /**
380
- * Identifies the field that will be used to uniquely identify each
381
- * row. This is not required but many advanced features of the grid
382
- * require this to function.
383
- */
384
- keyField: {
385
- type: PropType<string>;
386
- required: false;
387
- };
388
- /**
389
- * Identifies the field that will contain the person key. If the grid
390
- * does not represent Person records then leave this unset.
391
- */
392
- personKeyField: {
393
- type: PropType<string>;
394
- required: false;
395
- };
396
- /**
397
- * Specifies the fields to be used to identify communication recipients
398
- * when using the communicate action. This will take precedence over
399
- * the personKeyField if both are set.
400
- */
401
- communicationRecipientPersonKeyFields: {
402
- type: PropType<string[]>;
403
- required: false;
404
- };
405
- /**
406
- * Identifies the key that will be used to provide the tooltip text
407
- * for each row in the Grid. This property is not reactive.
408
- */
409
- tooltipField: {
410
- type: PropType<string>;
411
- required: false;
412
- };
413
- /**
414
- * Indicates that this grid should operate in light mode which disables
415
- * a number of features. This is intended to be used with small grids
416
- * that are embedded inside other blocks or controls.
417
- */
418
- light: {
419
- type: PropType<boolean>;
420
- default: boolean;
421
- };
422
- /**
423
- * Determines if the grid will monitor for changes in the data of
424
- * existing rows, new rows and removed rows. Should not be used for
425
- * grids with more than 10,000 rows. This property is not reactive.
426
- */
427
- liveUpdates: {
428
- type: PropType<boolean>;
429
- required: false;
430
- };
431
- /** If enabled then the grid will have a sticky header. */
432
- stickyHeader: {
433
- type: PropType<boolean>;
434
- default: boolean;
435
- };
436
- /**
437
- * The term that identifies individual rows in the grid. This
438
- * property is not reactive. If not specified it will default to "item".
439
- * This value should be singular and not plural.
440
- */
441
- itemTerm: {
442
- type: PropType<string>;
443
- required: false;
444
- };
445
- /**
446
- * The unique identifier of the entity type that the rows represent.
447
- */
448
- entityTypeGuid: {
449
- type: PropType<string | undefined>;
450
- required: false;
451
- };
452
- /**
453
- * The title to use when exporting the grid contents. This is used as
454
- * the exported filename as well as some other information inside the
455
- * export file. If not specified it will default to the itemTerm
456
- * property.
457
- */
458
- exportTitle: {
459
- type: PropType<string>;
460
- required: false;
461
- };
462
- /**
463
- * If `true`, then any Person operations will instead be Business
464
- * operations.
465
- */
466
- personAsBusiness: {
467
- type: PropType<boolean>;
468
- default: boolean;
469
- };
470
- /**
471
- * If `true`, then the merge template operation will operate as if
472
- * the records are Person records. If they are not then it will not
473
- * work correctly. This required that personKeyField also be set.
474
- */
475
- mergeTemplateAsPerson: {
476
- type: PropType<boolean>;
477
- default: boolean;
478
- };
479
- /**
480
- * Determines if the bulk update action will be available. If not
481
- * explicitly set then it will default to enabled if the personKeyField
482
- * property has been set.
483
- */
484
- showBulkUpdate: {
485
- type: PropType<boolean | undefined>;
486
- default: undefined;
487
- };
488
- /**
489
- * Determines if the merge person/business action will be available. If not
490
- * explicitly set then it will default to enabled if the personKeyField
491
- * property has been set.
492
- */
493
- showPersonMerge: {
494
- type: PropType<boolean | undefined>;
495
- default: undefined;
496
- };
497
- /**
498
- * Determines if the launch workflow action will be available. If not
499
- * explicitly set then it will default to enabled if the entityTypeGuid
500
- * and keyField properties have been set.
501
- */
502
- showLaunchWorkflow: {
503
- type: PropType<boolean | undefined>;
504
- default: undefined;
505
- };
506
- /**
507
- * Determines if the communicate action will be available. If not
508
- * explicitly set then it will default to enabled if either the
509
- * personKeyField or communicationRecipientPersonKeyFields properties
510
- * have been set.
511
- */
512
- showCommunicate: {
513
- type: PropType<boolean | undefined>;
514
- default: undefined;
515
- };
516
- /**
517
- * Determines if the merge template action will be available. If not
518
- * explicitly set then it will default to being shown. In the future
519
- * this default state might change.
520
- */
521
- showMergeTemplate: {
522
- type: PropType<boolean | undefined>;
523
- default: undefined;
524
- };
525
- /**
526
- * Determines if the export action will be available. If not explicitly
527
- * set then it will default to being shown. In the future this default
528
- * state might change.
529
- */
530
- showExport: {
531
- type: PropType<boolean | undefined>;
532
- default: undefined;
533
- };
534
- /**
535
- * If set to true, each row with an `isActive` property set to false
536
- * will be visually distinct
537
- */
538
- markInactiveRows: {
539
- type: BooleanConstructor;
540
- default: boolean;
541
- };
542
- /**
543
- * A CSS class that will be applied to each row. If you supply a string,
544
- * will apply that directly. You can also use a function that takes the
545
- * row object and returns a string, which allows you to apply different
546
- * classes to different rows depending on the row data.
547
- */
548
- rowClass: {
549
- type: PropType<string | ((row: Record<string, unknown>) => string)>;
550
- default: undefined;
551
- };
552
- /**
553
- * The text to display in the empty data row. The default is an empty string (""), which indicates that this property is not set.
554
- */
555
- emptyDataText: {
556
- type: StringConstructor;
557
- default: string;
558
- required: false;
559
- };
560
- /**
561
- * Any fields that should be included when sending a communication. If
562
- * a column name matches the field name then the formatted value of
563
- * the column will be used. Otherwise the raw field value will be used.
564
- */
565
- communicationMergeFields: {
566
- type: PropType<string[]>;
567
- required: false;
568
- };
569
- /**
570
- * The number of rows expected to fill the table. This does not
571
- * need to be anywhere close to the real number. It is used to
572
- * determine optimization settings and calculate how many skeleton
573
- * rows to display while loading.
574
- */
575
- expectedRowCount: {
576
- type: PropType<number>;
577
- required: false;
578
- };
579
- /**
580
- * Any custom actions that should be available for the individual to
581
- * see in the list of actions.
582
- */
583
- customActions: {
584
- type: PropType<GridAction[]>;
585
- required: false;
586
- };
587
- /**
588
- * The custom prefix to use when accessing person preferences related
589
- * to the grid. This prefix is appended to the standard prefix used
590
- * by the grid. This property is not reactive.
591
- */
592
- preferencePrefix: {
593
- type: PropType<string>;
594
- required: false;
595
- };
596
- /**
597
- * When `true`, all preferences will be disabled on the grid. Preferences
598
- * will not be read nor will they be saved. This property is not reactive.
599
- */
600
- disablePreferences: {
601
- type: PropType<boolean>;
602
- default: boolean;
603
- };
604
- /**
605
- * When `true`, a grid settings icon will be displayed and emit the
606
- * `gridSettingsClick` event when clicked.
607
- */
608
- gridSettings: {
609
- type: PropType<boolean>;
610
- default: boolean;
611
- };
612
- /**
613
- * When `true`, the grid settings icon will be displayed in an active
614
- * state. When `false`, the grid settings icon will be displayed in an
615
- * in-active state.
616
- */
617
- gridSettingsActive: {
618
- type: PropType<boolean>;
619
- default: boolean;
620
- };
621
- /**
622
- * The function to call in response to the add button being clicked.
623
- * Providing this function will automatically enable the add button.
624
- */
625
- onAddItem: {
626
- type: PropType<() => void | Promise<void>>;
627
- required: false;
628
- };
629
- /**
630
- * The function to call in response to a row being clicked. This
631
- * requires that an keyField be specified. Providing this function will
632
- * automatically enable row selection.
633
- */
634
- onSelectItem: {
635
- type: PropType<(key: string) => void | Promise<void>>;
636
- required: false;
637
- };
638
- /**
639
- * When `true`, the row count message will be displayed. When `false`,
640
- * the row count message will be hidden.
641
- */
642
- isCountMessageVisible: {
643
- type: PropType<boolean>;
644
- default: boolean;
645
- };
646
- /**
647
- * When `true`, the search box will be displayed. When `false`, the
648
- * search box will be hidden.
649
- */
650
- isSearchVisible: {
651
- type: BooleanConstructor;
652
- default: boolean;
653
- };
654
- /**
655
- * Light mode: When `true`, the actions row will be hidden.
656
- *
657
-
658
- * Full mode: When `true`, paging will be disabled, making all data rows
659
- * visible. Both the pager and actions rows will be hidden. If instead,
660
- * you only want to disable paging, but still want the actions row to be
661
- * shown, leave this property set to `false`, and set the `disablePaging`
662
- * property to `true`.
663
- */
664
- isFooterHidden: {
665
- type: PropType<boolean>;
666
- default: boolean;
667
- };
668
- /**
669
- * Light mode: This property will have no effect.
670
- *
671
- * Full mode: When `true`, paging will be disabled, making all data rows
672
- * visible. The pager row will be hidden but the actions row will be
673
- * shown. If instead, you want to hide BOTH the pager and actions rows,
674
- * leave this property set to `false`, and set the `isFooterHidden`
675
- * property to `true`.
676
- */
677
- disablePaging: {
678
- type: PropType<boolean>;
679
- default: boolean;
680
- };
681
- }>> & {
682
- onFilteredRowsChanged?: ((grid: IGridState) => any) | undefined;
683
- onSelectedKeysChanged?: ((grid: IGridState) => any) | undefined;
684
- onGridSettingsClick?: (() => any) | undefined;
685
- }, {
686
- light: boolean;
687
- isFooterHidden: boolean;
688
- markInactiveRows: boolean;
689
- rowClass: string | ((row: Record<string, unknown>) => string);
690
- emptyDataText: string;
691
- isTitleHidden: boolean;
692
- isCountMessageVisible: boolean;
693
- isSearchVisible: boolean;
694
- stickyHeader: boolean;
695
- personAsBusiness: boolean;
696
- mergeTemplateAsPerson: boolean;
697
- showBulkUpdate: boolean | undefined;
698
- showPersonMerge: boolean | undefined;
699
- showLaunchWorkflow: boolean | undefined;
700
- showCommunicate: boolean | undefined;
701
- showMergeTemplate: boolean | undefined;
702
- showExport: boolean | undefined;
703
- disablePreferences: boolean;
704
- gridSettings: boolean;
705
- gridSettingsActive: boolean;
706
- disablePaging: boolean;
707
- }>, {
708
- gridHeaderPrepend: (_: {}) => any;
709
- gridHeaderAppend: (_: {}) => any;
710
- gridFooterPrepend: (_: {}) => any;
711
- gridFooterAppend: (_: {}) => any;
712
- }>;
713
- export default _default;
714
- declare type __VLS_WithTemplateSlots<T, S> = T & {
715
- new (): {
716
- $slots: S;
717
- };
718
- };
1
+ import { PropType } from "vue";
2
+ import { GridAction, IGridState } from "@Obsidian/Types/Controls/grid";
3
+ import { GridDataBag } from "@Obsidian/ViewModels/Core/Grid/gridDataBag";
4
+ import { GridDefinitionBag } from "@Obsidian/ViewModels/Core/Grid/gridDefinitionBag";
5
+ /**
6
+ * Deletes a row from the grid when not tracking live updates.
7
+ *
8
+ * @param keyOrIndex The row key or row index that should be deleted.
9
+ */
10
+ declare function deleteRow(keyOrIndex: string | number): void;
11
+ /**
12
+ * Informs the grid that the specified row has been modified.
13
+ *
14
+ * @param keyOrIndex The row key or index that was updated.
15
+ */
16
+ declare function rowUpdated(keyOrIndex: string | number): void;
17
+ /**
18
+ * Informs the grid that the specified rows have been modified.
19
+ *
20
+ * @param keysOrIndexes The row keys or indexes that have been updated.
21
+ */
22
+ declare function rowsUpdated(keysOrIndexes: readonly string[] | readonly number[]): void;
23
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
24
+ /**
25
+ * The data to be displayed in the grid. This may either be an object
26
+ * that contains the grid data directly or a function that returns the
27
+ * grid data. The function may return a Promise which will be waited
28
+ * asynchronously until the data is ready.
29
+ */
30
+ data: {
31
+ type: PropType<GridDataBag | Promise<GridDataBag>>;
32
+ };
33
+ /**
34
+ * Contains the definition data about the grid. This contains information
35
+ * about the fields, action URLS and other features of the grid.
36
+ */
37
+ definition: {
38
+ type: PropType<GridDefinitionBag>;
39
+ required: false;
40
+ };
41
+ /**
42
+ * The title of the grid. If not provided and `isTitleHidden` is `false`,
43
+ * the default title of `${itemTerm} List` will be shown.
44
+ */
45
+ title: {
46
+ type: PropType<string>;
47
+ required: false;
48
+ };
49
+ /** When `true`, the grid's title will be hidden. */
50
+ isTitleHidden: {
51
+ type: PropType<boolean>;
52
+ default: boolean;
53
+ };
54
+ /**
55
+ * Identifies the field that will be used to uniquely identify each
56
+ * row. This is not required but many advanced features of the grid
57
+ * require this to function.
58
+ */
59
+ keyField: {
60
+ type: PropType<string>;
61
+ required: false;
62
+ };
63
+ /**
64
+ * Identifies the field that will contain the person key. If the grid
65
+ * does not represent Person records then leave this unset.
66
+ */
67
+ personKeyField: {
68
+ type: PropType<string>;
69
+ required: false;
70
+ };
71
+ /**
72
+ * Specifies the fields to be used to identify communication recipients
73
+ * when using the communicate action. This will take precedence over
74
+ * the personKeyField if both are set.
75
+ */
76
+ communicationRecipientPersonKeyFields: {
77
+ type: PropType<string[]>;
78
+ required: false;
79
+ };
80
+ /**
81
+ * Identifies the key that will be used to provide the tooltip text
82
+ * for each row in the Grid. This property is not reactive.
83
+ */
84
+ tooltipField: {
85
+ type: PropType<string>;
86
+ required: false;
87
+ };
88
+ /**
89
+ * Indicates that this grid should operate in light mode which disables
90
+ * a number of features. This is intended to be used with small grids
91
+ * that are embedded inside other blocks or controls.
92
+ */
93
+ light: {
94
+ type: PropType<boolean>;
95
+ default: boolean;
96
+ };
97
+ /**
98
+ * Determines if the grid will monitor for changes in the data of
99
+ * existing rows, new rows and removed rows. Should not be used for
100
+ * grids with more than 10,000 rows. This property is not reactive.
101
+ */
102
+ liveUpdates: {
103
+ type: PropType<boolean>;
104
+ required: false;
105
+ };
106
+ /**
107
+ * If true, the filter header row containing the row counts,
108
+ * quick filters and other grid data will be hidden. Defaults to false.
109
+ * */
110
+ hideFilterHeaderRow: {
111
+ type: PropType<boolean>;
112
+ default: boolean;
113
+ };
114
+ /** If enabled then the grid will have a sticky header. */
115
+ stickyHeader: {
116
+ type: PropType<boolean>;
117
+ default: boolean;
118
+ };
119
+ /**
120
+ * The term that identifies individual rows in the grid. This
121
+ * property is not reactive. If not specified it will default to "item".
122
+ * This value should be singular and not plural.
123
+ */
124
+ itemTerm: {
125
+ type: PropType<string>;
126
+ required: false;
127
+ };
128
+ /**
129
+ * The unique identifier of the entity type that the rows represent.
130
+ */
131
+ entityTypeGuid: {
132
+ type: PropType<string | undefined>;
133
+ required: false;
134
+ };
135
+ /**
136
+ * The title to use when exporting the grid contents. This is used as
137
+ * the exported filename as well as some other information inside the
138
+ * export file. If not specified it will default to the itemTerm
139
+ * property.
140
+ */
141
+ exportTitle: {
142
+ type: PropType<string>;
143
+ required: false;
144
+ };
145
+ /**
146
+ * If `true`, then any Person operations will instead be Business
147
+ * operations.
148
+ */
149
+ personAsBusiness: {
150
+ type: PropType<boolean>;
151
+ default: boolean;
152
+ };
153
+ /**
154
+ * If `true`, then the merge template operation will operate as if
155
+ * the records are Person records. If they are not then it will not
156
+ * work correctly. This required that personKeyField also be set.
157
+ */
158
+ mergeTemplateAsPerson: {
159
+ type: PropType<boolean>;
160
+ default: boolean;
161
+ };
162
+ /**
163
+ * Determines if the bulk update action will be available. If not
164
+ * explicitly set then it will default to enabled if the personKeyField
165
+ * property has been set.
166
+ */
167
+ showBulkUpdate: {
168
+ type: PropType<boolean | undefined>;
169
+ default: undefined;
170
+ };
171
+ /**
172
+ * Determines if the merge person/business action will be available. If not
173
+ * explicitly set then it will default to enabled if the personKeyField
174
+ * property has been set.
175
+ */
176
+ showPersonMerge: {
177
+ type: PropType<boolean | undefined>;
178
+ default: undefined;
179
+ };
180
+ /**
181
+ * Determines if the launch workflow action will be available. If not
182
+ * explicitly set then it will default to enabled if the entityTypeGuid
183
+ * and keyField properties have been set.
184
+ */
185
+ showLaunchWorkflow: {
186
+ type: PropType<boolean | undefined>;
187
+ default: undefined;
188
+ };
189
+ /**
190
+ * Determines if the communicate action will be available. If not
191
+ * explicitly set then it will default to enabled if either the
192
+ * personKeyField or communicationRecipientPersonKeyFields properties
193
+ * have been set.
194
+ */
195
+ showCommunicate: {
196
+ type: PropType<boolean | undefined>;
197
+ default: undefined;
198
+ };
199
+ /**
200
+ * Determines if the merge template action will be available. If not
201
+ * explicitly set then it will default to being shown. In the future
202
+ * this default state might change.
203
+ */
204
+ showMergeTemplate: {
205
+ type: PropType<boolean | undefined>;
206
+ default: undefined;
207
+ };
208
+ /**
209
+ * Determines if the export action will be available. If not explicitly
210
+ * set then it will default to being shown. In the future this default
211
+ * state might change.
212
+ */
213
+ showExport: {
214
+ type: PropType<boolean | undefined>;
215
+ default: undefined;
216
+ };
217
+ /**
218
+ * If set to true, each row with an `isActive` property set to false
219
+ * will be visually distinct
220
+ */
221
+ markInactiveRows: {
222
+ type: BooleanConstructor;
223
+ default: boolean;
224
+ };
225
+ /**
226
+ * A CSS class that will be applied to each row. If you supply a string,
227
+ * will apply that directly. You can also use a function that takes the
228
+ * row object and returns a string, which allows you to apply different
229
+ * classes to different rows depending on the row data.
230
+ */
231
+ rowClass: {
232
+ type: PropType<string | ((row: Record<string, unknown>) => string)>;
233
+ default: undefined;
234
+ };
235
+ /**
236
+ * The text to display in the empty data row. The default is an empty string (""), which indicates that this property is not set.
237
+ */
238
+ emptyDataText: {
239
+ type: StringConstructor;
240
+ default: string;
241
+ required: false;
242
+ };
243
+ /**
244
+ * Any fields that should be included when sending a communication. If
245
+ * a column name matches the field name then the formatted value of
246
+ * the column will be used. Otherwise the raw field value will be used.
247
+ */
248
+ communicationMergeFields: {
249
+ type: PropType<string[]>;
250
+ required: false;
251
+ };
252
+ /**
253
+ * The number of rows expected to fill the table. This does not
254
+ * need to be anywhere close to the real number. It is used to
255
+ * determine optimization settings and calculate how many skeleton
256
+ * rows to display while loading.
257
+ */
258
+ expectedRowCount: {
259
+ type: PropType<number>;
260
+ required: false;
261
+ };
262
+ /**
263
+ * Any custom actions that should be available for the individual to
264
+ * see in the list of actions.
265
+ */
266
+ customActions: {
267
+ type: PropType<GridAction[]>;
268
+ required: false;
269
+ };
270
+ /**
271
+ * The custom prefix to use when accessing person preferences related
272
+ * to the grid. This prefix is appended to the standard prefix used
273
+ * by the grid. This property is not reactive.
274
+ */
275
+ preferencePrefix: {
276
+ type: PropType<string>;
277
+ required: false;
278
+ };
279
+ /**
280
+ * When `true`, all preferences will be disabled on the grid. Preferences
281
+ * will not be read nor will they be saved. This property is not reactive.
282
+ */
283
+ disablePreferences: {
284
+ type: PropType<boolean>;
285
+ default: boolean;
286
+ };
287
+ /**
288
+ * When `true`, a grid settings icon will be displayed and emit the
289
+ * `gridSettingsClick` event when clicked.
290
+ */
291
+ gridSettings: {
292
+ type: PropType<boolean>;
293
+ default: boolean;
294
+ };
295
+ /**
296
+ * When `true`, the grid settings icon will be displayed in an active
297
+ * state. When `false`, the grid settings icon will be displayed in an
298
+ * in-active state.
299
+ */
300
+ gridSettingsActive: {
301
+ type: PropType<boolean>;
302
+ default: boolean;
303
+ };
304
+ /**
305
+ * The function to call in response to the add button being clicked.
306
+ * Providing this function will automatically enable the add button.
307
+ */
308
+ onAddItem: {
309
+ type: PropType<() => void | Promise<void>>;
310
+ required: false;
311
+ };
312
+ /**
313
+ * The function to call in response to a row being clicked. This
314
+ * requires that an keyField be specified. Providing this function will
315
+ * automatically enable row selection.
316
+ */
317
+ onSelectItem: {
318
+ type: PropType<(key: string) => void | Promise<void>>;
319
+ required: false;
320
+ };
321
+ /**
322
+ * When `true`, the row count message will be displayed. When `false`,
323
+ * the row count message will be hidden.
324
+ */
325
+ isCountMessageVisible: {
326
+ type: PropType<boolean>;
327
+ default: boolean;
328
+ };
329
+ /**
330
+ * When `true`, the search box will be displayed. When `false`, the
331
+ * search box will be hidden.
332
+ */
333
+ isSearchVisible: {
334
+ type: BooleanConstructor;
335
+ default: boolean;
336
+ };
337
+ /**
338
+ * Light mode: When `true`, the actions row will be hidden.
339
+ *
340
+
341
+ * Full mode: When `true`, paging will be disabled, making all data rows
342
+ * visible. Both the pager and actions rows will be hidden. If instead,
343
+ * you only want to disable paging, but still want the actions row to be
344
+ * shown, leave this property set to `false`, and set the `disablePaging`
345
+ * property to `true`.
346
+ */
347
+ isFooterHidden: {
348
+ type: PropType<boolean>;
349
+ default: boolean;
350
+ };
351
+ /**
352
+ * Light mode: This property will have no effect.
353
+ *
354
+ * Full mode: When `true`, paging will be disabled, making all data rows
355
+ * visible. The pager row will be hidden but the actions row will be
356
+ * shown. If instead, you want to hide BOTH the pager and actions rows,
357
+ * leave this property set to `false`, and set the `isFooterHidden`
358
+ * property to `true`.
359
+ */
360
+ disablePaging: {
361
+ type: PropType<boolean>;
362
+ default: boolean;
363
+ };
364
+ }, {
365
+ deleteRow: typeof deleteRow;
366
+ rowUpdated: typeof rowUpdated;
367
+ rowsUpdated: typeof rowsUpdated;
368
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
369
+ gridSettingsClick: () => void;
370
+ filteredRowsChanged: (grid: IGridState) => void;
371
+ selectedKeysChanged: (grid: IGridState) => void;
372
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
373
+ /**
374
+ * The data to be displayed in the grid. This may either be an object
375
+ * that contains the grid data directly or a function that returns the
376
+ * grid data. The function may return a Promise which will be waited
377
+ * asynchronously until the data is ready.
378
+ */
379
+ data: {
380
+ type: PropType<GridDataBag | Promise<GridDataBag>>;
381
+ };
382
+ /**
383
+ * Contains the definition data about the grid. This contains information
384
+ * about the fields, action URLS and other features of the grid.
385
+ */
386
+ definition: {
387
+ type: PropType<GridDefinitionBag>;
388
+ required: false;
389
+ };
390
+ /**
391
+ * The title of the grid. If not provided and `isTitleHidden` is `false`,
392
+ * the default title of `${itemTerm} List` will be shown.
393
+ */
394
+ title: {
395
+ type: PropType<string>;
396
+ required: false;
397
+ };
398
+ /** When `true`, the grid's title will be hidden. */
399
+ isTitleHidden: {
400
+ type: PropType<boolean>;
401
+ default: boolean;
402
+ };
403
+ /**
404
+ * Identifies the field that will be used to uniquely identify each
405
+ * row. This is not required but many advanced features of the grid
406
+ * require this to function.
407
+ */
408
+ keyField: {
409
+ type: PropType<string>;
410
+ required: false;
411
+ };
412
+ /**
413
+ * Identifies the field that will contain the person key. If the grid
414
+ * does not represent Person records then leave this unset.
415
+ */
416
+ personKeyField: {
417
+ type: PropType<string>;
418
+ required: false;
419
+ };
420
+ /**
421
+ * Specifies the fields to be used to identify communication recipients
422
+ * when using the communicate action. This will take precedence over
423
+ * the personKeyField if both are set.
424
+ */
425
+ communicationRecipientPersonKeyFields: {
426
+ type: PropType<string[]>;
427
+ required: false;
428
+ };
429
+ /**
430
+ * Identifies the key that will be used to provide the tooltip text
431
+ * for each row in the Grid. This property is not reactive.
432
+ */
433
+ tooltipField: {
434
+ type: PropType<string>;
435
+ required: false;
436
+ };
437
+ /**
438
+ * Indicates that this grid should operate in light mode which disables
439
+ * a number of features. This is intended to be used with small grids
440
+ * that are embedded inside other blocks or controls.
441
+ */
442
+ light: {
443
+ type: PropType<boolean>;
444
+ default: boolean;
445
+ };
446
+ /**
447
+ * Determines if the grid will monitor for changes in the data of
448
+ * existing rows, new rows and removed rows. Should not be used for
449
+ * grids with more than 10,000 rows. This property is not reactive.
450
+ */
451
+ liveUpdates: {
452
+ type: PropType<boolean>;
453
+ required: false;
454
+ };
455
+ /**
456
+ * If true, the filter header row containing the row counts,
457
+ * quick filters and other grid data will be hidden. Defaults to false.
458
+ * */
459
+ hideFilterHeaderRow: {
460
+ type: PropType<boolean>;
461
+ default: boolean;
462
+ };
463
+ /** If enabled then the grid will have a sticky header. */
464
+ stickyHeader: {
465
+ type: PropType<boolean>;
466
+ default: boolean;
467
+ };
468
+ /**
469
+ * The term that identifies individual rows in the grid. This
470
+ * property is not reactive. If not specified it will default to "item".
471
+ * This value should be singular and not plural.
472
+ */
473
+ itemTerm: {
474
+ type: PropType<string>;
475
+ required: false;
476
+ };
477
+ /**
478
+ * The unique identifier of the entity type that the rows represent.
479
+ */
480
+ entityTypeGuid: {
481
+ type: PropType<string | undefined>;
482
+ required: false;
483
+ };
484
+ /**
485
+ * The title to use when exporting the grid contents. This is used as
486
+ * the exported filename as well as some other information inside the
487
+ * export file. If not specified it will default to the itemTerm
488
+ * property.
489
+ */
490
+ exportTitle: {
491
+ type: PropType<string>;
492
+ required: false;
493
+ };
494
+ /**
495
+ * If `true`, then any Person operations will instead be Business
496
+ * operations.
497
+ */
498
+ personAsBusiness: {
499
+ type: PropType<boolean>;
500
+ default: boolean;
501
+ };
502
+ /**
503
+ * If `true`, then the merge template operation will operate as if
504
+ * the records are Person records. If they are not then it will not
505
+ * work correctly. This required that personKeyField also be set.
506
+ */
507
+ mergeTemplateAsPerson: {
508
+ type: PropType<boolean>;
509
+ default: boolean;
510
+ };
511
+ /**
512
+ * Determines if the bulk update action will be available. If not
513
+ * explicitly set then it will default to enabled if the personKeyField
514
+ * property has been set.
515
+ */
516
+ showBulkUpdate: {
517
+ type: PropType<boolean | undefined>;
518
+ default: undefined;
519
+ };
520
+ /**
521
+ * Determines if the merge person/business action will be available. If not
522
+ * explicitly set then it will default to enabled if the personKeyField
523
+ * property has been set.
524
+ */
525
+ showPersonMerge: {
526
+ type: PropType<boolean | undefined>;
527
+ default: undefined;
528
+ };
529
+ /**
530
+ * Determines if the launch workflow action will be available. If not
531
+ * explicitly set then it will default to enabled if the entityTypeGuid
532
+ * and keyField properties have been set.
533
+ */
534
+ showLaunchWorkflow: {
535
+ type: PropType<boolean | undefined>;
536
+ default: undefined;
537
+ };
538
+ /**
539
+ * Determines if the communicate action will be available. If not
540
+ * explicitly set then it will default to enabled if either the
541
+ * personKeyField or communicationRecipientPersonKeyFields properties
542
+ * have been set.
543
+ */
544
+ showCommunicate: {
545
+ type: PropType<boolean | undefined>;
546
+ default: undefined;
547
+ };
548
+ /**
549
+ * Determines if the merge template action will be available. If not
550
+ * explicitly set then it will default to being shown. In the future
551
+ * this default state might change.
552
+ */
553
+ showMergeTemplate: {
554
+ type: PropType<boolean | undefined>;
555
+ default: undefined;
556
+ };
557
+ /**
558
+ * Determines if the export action will be available. If not explicitly
559
+ * set then it will default to being shown. In the future this default
560
+ * state might change.
561
+ */
562
+ showExport: {
563
+ type: PropType<boolean | undefined>;
564
+ default: undefined;
565
+ };
566
+ /**
567
+ * If set to true, each row with an `isActive` property set to false
568
+ * will be visually distinct
569
+ */
570
+ markInactiveRows: {
571
+ type: BooleanConstructor;
572
+ default: boolean;
573
+ };
574
+ /**
575
+ * A CSS class that will be applied to each row. If you supply a string,
576
+ * will apply that directly. You can also use a function that takes the
577
+ * row object and returns a string, which allows you to apply different
578
+ * classes to different rows depending on the row data.
579
+ */
580
+ rowClass: {
581
+ type: PropType<string | ((row: Record<string, unknown>) => string)>;
582
+ default: undefined;
583
+ };
584
+ /**
585
+ * The text to display in the empty data row. The default is an empty string (""), which indicates that this property is not set.
586
+ */
587
+ emptyDataText: {
588
+ type: StringConstructor;
589
+ default: string;
590
+ required: false;
591
+ };
592
+ /**
593
+ * Any fields that should be included when sending a communication. If
594
+ * a column name matches the field name then the formatted value of
595
+ * the column will be used. Otherwise the raw field value will be used.
596
+ */
597
+ communicationMergeFields: {
598
+ type: PropType<string[]>;
599
+ required: false;
600
+ };
601
+ /**
602
+ * The number of rows expected to fill the table. This does not
603
+ * need to be anywhere close to the real number. It is used to
604
+ * determine optimization settings and calculate how many skeleton
605
+ * rows to display while loading.
606
+ */
607
+ expectedRowCount: {
608
+ type: PropType<number>;
609
+ required: false;
610
+ };
611
+ /**
612
+ * Any custom actions that should be available for the individual to
613
+ * see in the list of actions.
614
+ */
615
+ customActions: {
616
+ type: PropType<GridAction[]>;
617
+ required: false;
618
+ };
619
+ /**
620
+ * The custom prefix to use when accessing person preferences related
621
+ * to the grid. This prefix is appended to the standard prefix used
622
+ * by the grid. This property is not reactive.
623
+ */
624
+ preferencePrefix: {
625
+ type: PropType<string>;
626
+ required: false;
627
+ };
628
+ /**
629
+ * When `true`, all preferences will be disabled on the grid. Preferences
630
+ * will not be read nor will they be saved. This property is not reactive.
631
+ */
632
+ disablePreferences: {
633
+ type: PropType<boolean>;
634
+ default: boolean;
635
+ };
636
+ /**
637
+ * When `true`, a grid settings icon will be displayed and emit the
638
+ * `gridSettingsClick` event when clicked.
639
+ */
640
+ gridSettings: {
641
+ type: PropType<boolean>;
642
+ default: boolean;
643
+ };
644
+ /**
645
+ * When `true`, the grid settings icon will be displayed in an active
646
+ * state. When `false`, the grid settings icon will be displayed in an
647
+ * in-active state.
648
+ */
649
+ gridSettingsActive: {
650
+ type: PropType<boolean>;
651
+ default: boolean;
652
+ };
653
+ /**
654
+ * The function to call in response to the add button being clicked.
655
+ * Providing this function will automatically enable the add button.
656
+ */
657
+ onAddItem: {
658
+ type: PropType<() => void | Promise<void>>;
659
+ required: false;
660
+ };
661
+ /**
662
+ * The function to call in response to a row being clicked. This
663
+ * requires that an keyField be specified. Providing this function will
664
+ * automatically enable row selection.
665
+ */
666
+ onSelectItem: {
667
+ type: PropType<(key: string) => void | Promise<void>>;
668
+ required: false;
669
+ };
670
+ /**
671
+ * When `true`, the row count message will be displayed. When `false`,
672
+ * the row count message will be hidden.
673
+ */
674
+ isCountMessageVisible: {
675
+ type: PropType<boolean>;
676
+ default: boolean;
677
+ };
678
+ /**
679
+ * When `true`, the search box will be displayed. When `false`, the
680
+ * search box will be hidden.
681
+ */
682
+ isSearchVisible: {
683
+ type: BooleanConstructor;
684
+ default: boolean;
685
+ };
686
+ /**
687
+ * Light mode: When `true`, the actions row will be hidden.
688
+ *
689
+
690
+ * Full mode: When `true`, paging will be disabled, making all data rows
691
+ * visible. Both the pager and actions rows will be hidden. If instead,
692
+ * you only want to disable paging, but still want the actions row to be
693
+ * shown, leave this property set to `false`, and set the `disablePaging`
694
+ * property to `true`.
695
+ */
696
+ isFooterHidden: {
697
+ type: PropType<boolean>;
698
+ default: boolean;
699
+ };
700
+ /**
701
+ * Light mode: This property will have no effect.
702
+ *
703
+ * Full mode: When `true`, paging will be disabled, making all data rows
704
+ * visible. The pager row will be hidden but the actions row will be
705
+ * shown. If instead, you want to hide BOTH the pager and actions rows,
706
+ * leave this property set to `false`, and set the `isFooterHidden`
707
+ * property to `true`.
708
+ */
709
+ disablePaging: {
710
+ type: PropType<boolean>;
711
+ default: boolean;
712
+ };
713
+ }>> & {
714
+ onFilteredRowsChanged?: ((grid: IGridState) => any) | undefined;
715
+ onSelectedKeysChanged?: ((grid: IGridState) => any) | undefined;
716
+ onGridSettingsClick?: (() => any) | undefined;
717
+ }, {
718
+ light: boolean;
719
+ isFooterHidden: boolean;
720
+ markInactiveRows: boolean;
721
+ rowClass: string | ((row: Record<string, unknown>) => string);
722
+ emptyDataText: string;
723
+ isTitleHidden: boolean;
724
+ isCountMessageVisible: boolean;
725
+ isSearchVisible: boolean;
726
+ hideFilterHeaderRow: boolean;
727
+ stickyHeader: boolean;
728
+ personAsBusiness: boolean;
729
+ mergeTemplateAsPerson: boolean;
730
+ showBulkUpdate: boolean | undefined;
731
+ showPersonMerge: boolean | undefined;
732
+ showLaunchWorkflow: boolean | undefined;
733
+ showCommunicate: boolean | undefined;
734
+ showMergeTemplate: boolean | undefined;
735
+ showExport: boolean | undefined;
736
+ disablePreferences: boolean;
737
+ gridSettings: boolean;
738
+ gridSettingsActive: boolean;
739
+ disablePaging: boolean;
740
+ }, {}>, {
741
+ gridHeaderPrepend?(_: {}): any;
742
+ gridHeaderAppend?(_: {}): any;
743
+ gridFooterPrepend?(_: {}): any;
744
+ gridFooterAppend?(_: {}): any;
745
+ }>;
746
+ export default _default;
747
+ type __VLS_WithTemplateSlots<T, S> = T & {
748
+ new (): {
749
+ $slots: S;
750
+ };
751
+ };