@rockrms/obsidian-framework 1.16.3-rc.1

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 (1202) hide show
  1. package/package.json +13 -0
  2. package/tsconfig.base.json +7 -0
  3. package/types/Controls/Grid/Cells/booleanCell.partial.obs.d.ts +2 -0
  4. package/types/Controls/Grid/Cells/currencyCell.partial.obs.d.ts +2 -0
  5. package/types/Controls/Grid/Cells/currencySkeletonCell.partial.obs.d.ts +2 -0
  6. package/types/Controls/Grid/Cells/dateCell.partial.obs.d.ts +2 -0
  7. package/types/Controls/Grid/Cells/dateSkeletonCell.partial.obs.d.ts +2 -0
  8. package/types/Controls/Grid/Cells/dateTimeCell.partial.obs.d.ts +2 -0
  9. package/types/Controls/Grid/Cells/dateTimeSkeletonCell.partial.obs.d.ts +2 -0
  10. package/types/Controls/Grid/Cells/deleteCell.partial.obs.d.ts +2 -0
  11. package/types/Controls/Grid/Cells/editCell.partial.obs.d.ts +2 -0
  12. package/types/Controls/Grid/Cells/labelCell.partial.obs.d.ts +2 -0
  13. package/types/Controls/Grid/Cells/labelSkeletonCell.partial.obs.d.ts +2 -0
  14. package/types/Controls/Grid/Cells/numberBadgeCell.partial.obs.d.ts +2 -0
  15. package/types/Controls/Grid/Cells/numberBadgeSkeletonCell.partial.obs.d.ts +2 -0
  16. package/types/Controls/Grid/Cells/numberCell.partial.obs.d.ts +2 -0
  17. package/types/Controls/Grid/Cells/numberSkeletonCell.partial.obs.d.ts +2 -0
  18. package/types/Controls/Grid/Cells/personCell.partial.obs.d.ts +2 -0
  19. package/types/Controls/Grid/Cells/personSkeletonCell.partial.obs.d.ts +2 -0
  20. package/types/Controls/Grid/Cells/reorderCell.partial.obs.d.ts +2 -0
  21. package/types/Controls/Grid/Cells/securityCell.partial.obs.d.ts +2 -0
  22. package/types/Controls/Grid/Cells/selectCell.partial.obs.d.ts +2 -0
  23. package/types/Controls/Grid/Cells/selectHeaderCell.partial.obs.d.ts +2 -0
  24. package/types/Controls/Grid/Cells/textCell.partial.d.ts +28 -0
  25. package/types/Controls/Grid/Cells/textSkeletonCell.partial.obs.d.ts +2 -0
  26. package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +44 -0
  27. package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +164 -0
  28. package/types/Controls/Grid/Columns/column.partial.d.ts +151 -0
  29. package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +165 -0
  30. package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +177 -0
  31. package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +177 -0
  32. package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +206 -0
  33. package/types/Controls/Grid/Columns/editColumn.partial.d.ts +170 -0
  34. package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +225 -0
  35. package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +341 -0
  36. package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +165 -0
  37. package/types/Controls/Grid/Columns/personColumn.partial.d.ts +185 -0
  38. package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +176 -0
  39. package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +196 -0
  40. package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +157 -0
  41. package/types/Controls/Grid/Columns/textColumn.partial.d.ts +217 -0
  42. package/types/Controls/Grid/Filters/booleanFilter.partial.obs.d.ts +7 -0
  43. package/types/Controls/Grid/Filters/dateFilter.partial.obs.d.ts +7 -0
  44. package/types/Controls/Grid/Filters/numberFilter.partial.obs.d.ts +7 -0
  45. package/types/Controls/Grid/Filters/pickExistingFilter.partial.obs.d.ts +7 -0
  46. package/types/Controls/Grid/Filters/textFilter.partial.obs.d.ts +6 -0
  47. package/types/Controls/Grid/actionButton.partial.obs.d.ts +30 -0
  48. package/types/Controls/Grid/actionGroup.partial.obs.d.ts +32 -0
  49. package/types/Controls/Grid/columnHeaderCell.partial.obs.d.ts +66 -0
  50. package/types/Controls/Grid/columnHeaderRow.partial.obs.d.ts +95 -0
  51. package/types/Controls/Grid/dataCell.partial.obs.d.ts +52 -0
  52. package/types/Controls/Grid/dataRow.partial.obs.d.ts +95 -0
  53. package/types/Controls/Grid/dataRows.partial.obs.d.ts +70 -0
  54. package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +76 -0
  55. package/types/Controls/Grid/grid.partial.obs.d.ts +546 -0
  56. package/types/Controls/Grid/lightFooterRow.partial.obs.d.ts +34 -0
  57. package/types/Controls/Grid/pagePicker.partial.obs.d.ts +31 -0
  58. package/types/Controls/Grid/pageSizePicker.partial.obs.d.ts +41 -0
  59. package/types/Controls/Grid/pagerRow.partial.obs.d.ts +73 -0
  60. package/types/Controls/Grid/popupActionButton.partial.obs.d.ts +34 -0
  61. package/types/Controls/Grid/popupActionGroup.partial.obs.d.ts +28 -0
  62. package/types/Controls/Grid/skeletonCell.partial.obs.d.ts +26 -0
  63. package/types/Controls/Grid/skeletonRow.partial.obs.d.ts +46 -0
  64. package/types/Controls/Grid/skeletonRows.partial.obs.d.ts +44 -0
  65. package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +70 -0
  66. package/types/Controls/Grid/virtualScroller.partial.d.ts +172 -0
  67. package/types/Controls/Internal/nmiGatewayControl.obs.d.ts +38 -0
  68. package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +30 -0
  69. package/types/Controls/Internal/pageDebugTimings.obs.d.ts +14 -0
  70. package/types/Controls/Internal/tag.obs.d.ts +30 -0
  71. package/types/Controls/Internal/testGatewayControl.obs.d.ts +24 -0
  72. package/types/Controls/Internal/treeListItem.obs.d.ts +80 -0
  73. package/types/Controls/accountPicker.obs.d.ts +128 -0
  74. package/types/Controls/achievementTypePicker.obs.d.ts +130 -0
  75. package/types/Controls/addressControl.obs.d.ts +110 -0
  76. package/types/Controls/assessmentTypePicker.obs.d.ts +139 -0
  77. package/types/Controls/assetStorageProviderPicker.obs.d.ts +130 -0
  78. package/types/Controls/attributeEditor.obs.d.ts +83 -0
  79. package/types/Controls/attributeValuesContainer.obs.d.ts +142 -0
  80. package/types/Controls/auditDetail.obs.d.ts +37 -0
  81. package/types/Controls/badgeComponentPicker.obs.d.ts +139 -0
  82. package/types/Controls/badgeList.obs.d.ts +41 -0
  83. package/types/Controls/badgePicker.obs.d.ts +139 -0
  84. package/types/Controls/baseAsyncPicker.obs.d.ts +178 -0
  85. package/types/Controls/basicTimePicker.obs.d.ts +38 -0
  86. package/types/Controls/binaryFilePicker.obs.d.ts +138 -0
  87. package/types/Controls/binaryFileTypePicker.obs.d.ts +130 -0
  88. package/types/Controls/birthdayPicker.obs.d.ts +2 -0
  89. package/types/Controls/blockTemplatePicker.obs.d.ts +93 -0
  90. package/types/Controls/buttonDropDownList.obs.d.ts +108 -0
  91. package/types/Controls/buttonGroup.obs.d.ts +114 -0
  92. package/types/Controls/cacheabilityPicker.obs.d.ts +18 -0
  93. package/types/Controls/campusAccountAmountPicker.obs.d.ts +257 -0
  94. package/types/Controls/campusPicker.obs.d.ts +178 -0
  95. package/types/Controls/captcha.obs.d.ts +82 -0
  96. package/types/Controls/categorizedValuePicker.obs.d.ts +85 -0
  97. package/types/Controls/categorizedValuePickerDropDownLevel.obs.d.ts +85 -0
  98. package/types/Controls/categoryPicker.obs.d.ts +60 -0
  99. package/types/Controls/checkBox.obs.d.ts +51 -0
  100. package/types/Controls/checkBoxList.obs.d.ts +88 -0
  101. package/types/Controls/codeEditor.obs.d.ts +89 -0
  102. package/types/Controls/colorPicker.obs.d.ts +27 -0
  103. package/types/Controls/colorSelector.obs.d.ts +110 -0
  104. package/types/Controls/componentFromUrl.obs.d.ts +13 -0
  105. package/types/Controls/componentPicker.obs.d.ts +139 -0
  106. package/types/Controls/connectionRequestPicker.obs.d.ts +36 -0
  107. package/types/Controls/connectionStatus.obs.d.ts +28 -0
  108. package/types/Controls/contentChannelItemPicker.obs.d.ts +153 -0
  109. package/types/Controls/contentDropDownPicker.obs.d.ts +404 -0
  110. package/types/Controls/copyButton.obs.d.ts +42 -0
  111. package/types/Controls/countdownTimer.obs.d.ts +19 -0
  112. package/types/Controls/currencyBox.obs.d.ts +33 -0
  113. package/types/Controls/dataViewPicker.obs.d.ts +147 -0
  114. package/types/Controls/datePartsPicker.obs.d.ts +86 -0
  115. package/types/Controls/datePicker.obs.d.ts +185 -0
  116. package/types/Controls/datePickerBase.obs.d.ts +148 -0
  117. package/types/Controls/dateRangePicker.obs.d.ts +30 -0
  118. package/types/Controls/dateTimePicker.obs.d.ts +58 -0
  119. package/types/Controls/dayOfWeekPicker.obs.d.ts +28 -0
  120. package/types/Controls/definedValuePicker.obs.d.ts +158 -0
  121. package/types/Controls/dialog.obs.d.ts +36 -0
  122. package/types/Controls/dropDownContent.obs.d.ts +49 -0
  123. package/types/Controls/dropDownList.obs.d.ts +191 -0
  124. package/types/Controls/dropDownMenu.obs.d.ts +45 -0
  125. package/types/Controls/electronicSignature.obs.d.ts +55 -0
  126. package/types/Controls/emailBox.obs.d.ts +40 -0
  127. package/types/Controls/entityTypePicker.obs.d.ts +139 -0
  128. package/types/Controls/ethnicityPicker.obs.d.ts +132 -0
  129. package/types/Controls/eventCalendarPicker.obs.d.ts +132 -0
  130. package/types/Controls/eventItemPicker.obs.d.ts +139 -0
  131. package/types/Controls/fieldFilterContainer.obs.d.ts +19 -0
  132. package/types/Controls/fieldFilterEditor.obs.d.ts +46 -0
  133. package/types/Controls/fieldFilterRuleRow.obs.d.ts +30 -0
  134. package/types/Controls/fieldTypeEditor.obs.d.ts +38 -0
  135. package/types/Controls/fieldTypePicker.obs.d.ts +130 -0
  136. package/types/Controls/fileUploader.obs.d.ts +55 -0
  137. package/types/Controls/financialGatewayPicker.obs.d.ts +148 -0
  138. package/types/Controls/financialStatementTemplatePicker.obs.d.ts +130 -0
  139. package/types/Controls/following.obs.d.ts +37 -0
  140. package/types/Controls/fullscreen.obs.d.ts +47 -0
  141. package/types/Controls/gatewayControl.obs.d.ts +41 -0
  142. package/types/Controls/genderDropDownList.obs.d.ts +21 -0
  143. package/types/Controls/geoPicker.obs.d.ts +149 -0
  144. package/types/Controls/geoPickerMap.obs.d.ts +105 -0
  145. package/types/Controls/gradePicker.obs.d.ts +148 -0
  146. package/types/Controls/grid.d.ts +54 -0
  147. package/types/Controls/groupAndRolePicker.obs.d.ts +183 -0
  148. package/types/Controls/groupMemberPicker.obs.d.ts +139 -0
  149. package/types/Controls/groupPicker.obs.d.ts +72 -0
  150. package/types/Controls/groupRolePicker.obs.d.ts +157 -0
  151. package/types/Controls/groupTypeGroupPicker.obs.d.ts +165 -0
  152. package/types/Controls/groupTypePicker.obs.d.ts +165 -0
  153. package/types/Controls/helpBlock.obs.d.ts +13 -0
  154. package/types/Controls/imageEditor.obs.d.ts +145 -0
  155. package/types/Controls/imageUploader.obs.d.ts +64 -0
  156. package/types/Controls/inlineCheckBox.obs.d.ts +25 -0
  157. package/types/Controls/inlineRangeSlider.obs.d.ts +54 -0
  158. package/types/Controls/inlineSwitch.obs.d.ts +44 -0
  159. package/types/Controls/inputGroupDropDown.obs.d.ts +29 -0
  160. package/types/Controls/interactionChannelInteractionComponentPicker.obs.d.ts +39 -0
  161. package/types/Controls/interactionChannelPicker.obs.d.ts +130 -0
  162. package/types/Controls/interactionComponentPicker.obs.d.ts +139 -0
  163. package/types/Controls/intervalPicker.obs.d.ts +87 -0
  164. package/types/Controls/itemsWithPreAndPostHtml.obs.d.ts +22 -0
  165. package/types/Controls/javaScriptAnchor.obs.d.ts +9 -0
  166. package/types/Controls/keyValueList.obs.d.ts +62 -0
  167. package/types/Controls/kpi.obs.d.ts +85 -0
  168. package/types/Controls/lavaCommandPicker.obs.d.ts +130 -0
  169. package/types/Controls/listBox.obs.d.ts +65 -0
  170. package/types/Controls/listItems.obs.d.ts +29 -0
  171. package/types/Controls/loading.obs.d.ts +32 -0
  172. package/types/Controls/loadingIndicator.obs.d.ts +28 -0
  173. package/types/Controls/locationAddressPicker.obs.d.ts +83 -0
  174. package/types/Controls/locationItemPicker.obs.d.ts +52 -0
  175. package/types/Controls/locationList.obs.d.ts +175 -0
  176. package/types/Controls/locationPicker.obs.d.ts +32 -0
  177. package/types/Controls/mediaElementPicker.obs.d.ts +217 -0
  178. package/types/Controls/mediaSelector.obs.d.ts +107 -0
  179. package/types/Controls/mergeFieldPicker.obs.d.ts +90 -0
  180. package/types/Controls/mergeTemplatePicker.obs.d.ts +38 -0
  181. package/types/Controls/metricCategoryPicker.obs.d.ts +37 -0
  182. package/types/Controls/metricItemPicker.obs.d.ts +46 -0
  183. package/types/Controls/modal.obs.d.ts +114 -0
  184. package/types/Controls/modalAlert.obs.d.ts +48 -0
  185. package/types/Controls/monthDayPicker.obs.d.ts +18 -0
  186. package/types/Controls/monthYearPicker.obs.d.ts +18 -0
  187. package/types/Controls/noteTextEditor.obs.d.ts +96 -0
  188. package/types/Controls/notificationBox.obs.d.ts +49 -0
  189. package/types/Controls/numberBox.obs.d.ts +89 -0
  190. package/types/Controls/numberRangeBox.obs.d.ts +43 -0
  191. package/types/Controls/numberUpDown.obs.d.ts +93 -0
  192. package/types/Controls/numberUpDownBase.obs.d.ts +45 -0
  193. package/types/Controls/numberUpDownGroup.obs.d.ts +26 -0
  194. package/types/Controls/pagePicker.obs.d.ts +134 -0
  195. package/types/Controls/panel.obs.d.ts +153 -0
  196. package/types/Controls/personLink.obs.d.ts +60 -0
  197. package/types/Controls/personPicker.obs.d.ts +76 -0
  198. package/types/Controls/phoneNumberBox.obs.d.ts +92 -0
  199. package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +80 -0
  200. package/types/Controls/popOver.obs.d.ts +85 -0
  201. package/types/Controls/progressBar.obs.d.ts +13 -0
  202. package/types/Controls/progressTracker.obs.d.ts +29 -0
  203. package/types/Controls/progressTrackerSegment.obs.d.ts +46 -0
  204. package/types/Controls/racePicker.obs.d.ts +132 -0
  205. package/types/Controls/radioButtonList.obs.d.ts +98 -0
  206. package/types/Controls/rangeSlider.obs.d.ts +102 -0
  207. package/types/Controls/rating.obs.d.ts +32 -0
  208. package/types/Controls/registrationInstanceBasePicker.obs.d.ts +143 -0
  209. package/types/Controls/registrationInstancePicker.obs.d.ts +39 -0
  210. package/types/Controls/registrationTemplatePicker.obs.d.ts +28 -0
  211. package/types/Controls/registryEntry.obs.d.ts +85 -0
  212. package/types/Controls/reminderTypePicker.obs.d.ts +143 -0
  213. package/types/Controls/remoteAuthsPicker.obs.d.ts +130 -0
  214. package/types/Controls/reportPicker.obs.d.ts +52 -0
  215. package/types/Controls/rockAttributeFilter.obs.d.ts +52 -0
  216. package/types/Controls/rockButton.obs.d.ts +115 -0
  217. package/types/Controls/rockField.obs.d.ts +73 -0
  218. package/types/Controls/rockForm.obs.d.ts +68 -0
  219. package/types/Controls/rockFormField.obs.d.ts +82 -0
  220. package/types/Controls/rockFormFieldError.obs.d.ts +21 -0
  221. package/types/Controls/rockLabel.obs.d.ts +22 -0
  222. package/types/Controls/rockLiteral.obs.d.ts +31 -0
  223. package/types/Controls/rockSuspense.obs.d.ts +42 -0
  224. package/types/Controls/rockValidation.obs.d.ts +16 -0
  225. package/types/Controls/saveFinancialAccountForm.obs.d.ts +36 -0
  226. package/types/Controls/scheduleBuilder.obs.d.ts +69 -0
  227. package/types/Controls/schedulePicker.obs.d.ts +28 -0
  228. package/types/Controls/sectionContainer.obs.d.ts +54 -0
  229. package/types/Controls/sectionHeader.obs.d.ts +40 -0
  230. package/types/Controls/skeleton.obs.d.ts +9 -0
  231. package/types/Controls/slidingDateRangePicker.obs.d.ts +46 -0
  232. package/types/Controls/socialSecurityNumberBox.obs.d.ts +23 -0
  233. package/types/Controls/standardFilterDaysBack.obs.d.ts +66 -0
  234. package/types/Controls/staticFormControl.obs.d.ts +12 -0
  235. package/types/Controls/stepProgramPicker.obs.d.ts +130 -0
  236. package/types/Controls/stepProgramStepStatusPicker.obs.d.ts +50 -0
  237. package/types/Controls/stepProgramStepTypePicker.obs.d.ts +50 -0
  238. package/types/Controls/stepStatusPicker.obs.d.ts +139 -0
  239. package/types/Controls/stepTypePicker.obs.d.ts +139 -0
  240. package/types/Controls/streakTypePicker.obs.d.ts +130 -0
  241. package/types/Controls/structuredContentEditor.obs.d.ts +93 -0
  242. package/types/Controls/switch.obs.d.ts +27 -0
  243. package/types/Controls/tabbedBar.obs.d.ts +42 -0
  244. package/types/Controls/tabbedContent.obs.d.ts +22 -0
  245. package/types/Controls/tagList.obs.d.ts +116 -0
  246. package/types/Controls/textBox.obs.d.ts +117 -0
  247. package/types/Controls/timeIntervalPicker.obs.d.ts +67 -0
  248. package/types/Controls/timePicker.obs.d.ts +78 -0
  249. package/types/Controls/toggle.obs.d.ts +71 -0
  250. package/types/Controls/transitionVerticalCollapse.obs.d.ts +22 -0
  251. package/types/Controls/treeItemPicker.obs.d.ts +132 -0
  252. package/types/Controls/treeList.obs.d.ts +90 -0
  253. package/types/Controls/urlLinkBox.obs.d.ts +31 -0
  254. package/types/Controls/valueDetailList.obs.d.ts +14 -0
  255. package/types/Controls/valueList.obs.d.ts +56 -0
  256. package/types/Controls/wordCloud.obs.d.ts +233 -0
  257. package/types/Controls/workflowActionTypePicker.obs.d.ts +18 -0
  258. package/types/Controls/workflowBasePicker.obs.d.ts +139 -0
  259. package/types/Controls/workflowPicker.obs.d.ts +39 -0
  260. package/types/Controls/workflowTypePicker.obs.d.ts +94 -0
  261. package/types/Core/Controls/financialGateway.d.ts +16 -0
  262. package/types/Core/Controls/grid.d.ts +406 -0
  263. package/types/Core/Controls/valueDetailListItemBuilder.d.ts +30 -0
  264. package/types/Core/Core/personPreferences.d.ts +92 -0
  265. package/types/Core/Reporting/comparisonType.d.ts +39 -0
  266. package/types/Core/Reporting/comparisonTypeOptions.d.ts +14 -0
  267. package/types/Core/Reporting/filterExpressionType.d.ts +28 -0
  268. package/types/Core/Reporting/filterMode.d.ts +7 -0
  269. package/types/Core/Utilities/colorPair.d.ts +25 -0
  270. package/types/Core/Utilities/rockColor.d.ts +270 -0
  271. package/types/Directives/dragDrop.d.ts +130 -0
  272. package/types/Directives/dragScroll.d.ts +28 -0
  273. package/types/Enums/AI/chatMessageRole.d.ts +13 -0
  274. package/types/Enums/AI/moderationFlags.d.ts +21 -0
  275. package/types/Enums/Blocks/Cms/ContentCollectionView/searchOrder.d.ts +20 -0
  276. package/types/Enums/Blocks/Crm/FamilyPreRegistration/communicationPreference.d.ts +15 -0
  277. package/types/Enums/Blocks/Crm/familyPreRegistrationCommunicationPreference.d.ts +15 -0
  278. package/types/Enums/Blocks/Engagement/SignUp/registerMode.d.ts +13 -0
  279. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailDateSelectionMode.d.ts +15 -0
  280. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailLocationSelectionMode.d.ts +13 -0
  281. package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailScheduleSelectionMode.d.ts +13 -0
  282. package/types/Enums/Blocks/Group/Scheduling/resourceListSourceType.d.ts +19 -0
  283. package/types/Enums/Blocks/Group/Scheduling/toolboxActionType.d.ts +16 -0
  284. package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType.d.ts +15 -0
  285. package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowConfirmationStatus.d.ts +15 -0
  286. package/types/Enums/Blocks/Group/Scheduling/updateSchedulePreferenceMode.d.ts +19 -0
  287. package/types/Enums/Blocks/Security/AccountEntry/accountEntryStep.d.ts +19 -0
  288. package/types/Enums/Blocks/Security/ConfirmAccount/confirmAccountViewType.d.ts +17 -0
  289. package/types/Enums/Blocks/Security/ForgotUserName/sendInstructionsResultType.d.ts +16 -0
  290. package/types/Enums/Blocks/Security/Login/loginMethod.d.ts +11 -0
  291. package/types/Enums/Blocks/Security/Login/passwordlessLoginStep.d.ts +11 -0
  292. package/types/Enums/Cms/blockLocation.d.ts +15 -0
  293. package/types/Enums/Cms/botGuardianLevel.d.ts +13 -0
  294. package/types/Enums/Cms/contentChannelDateType.d.ts +13 -0
  295. package/types/Enums/Cms/contentChannelItemStatus.d.ts +13 -0
  296. package/types/Enums/Cms/contentCollectionFilterControl.d.ts +25 -0
  297. package/types/Enums/Cms/contentControlType.d.ts +11 -0
  298. package/types/Enums/Cms/contentLibraryItemExperienceLevel.d.ts +13 -0
  299. package/types/Enums/Cms/displayInNavWhen.d.ts +13 -0
  300. package/types/Enums/Cms/persistedDatasetDataFormat.d.ts +9 -0
  301. package/types/Enums/Cms/persistedDatasetScriptType.d.ts +9 -0
  302. package/types/Enums/Cms/siteType.d.ts +13 -0
  303. package/types/Enums/Cms/tagType.d.ts +11 -0
  304. package/types/Enums/Communication/communicationMessageFilter.d.ts +13 -0
  305. package/types/Enums/Communication/communicationRecipientStatus.d.ts +19 -0
  306. package/types/Enums/Communication/communicationStatus.d.ts +20 -0
  307. package/types/Enums/Communication/notificationClassification.d.ts +15 -0
  308. package/types/Enums/Communication/segmentCriteria.d.ts +11 -0
  309. package/types/Enums/Connection/connectionRequestViewModelSortProperty.d.ts +41 -0
  310. package/types/Enums/Connection/connectionTypeViewMode.d.ts +11 -0
  311. package/types/Enums/Connection/connectionWorkflowTriggerType.d.ts +27 -0
  312. package/types/Enums/Connection/groupRequirementsFilter.d.ts +13 -0
  313. package/types/Enums/Controls/alertType.d.ts +12 -0
  314. package/types/Enums/Controls/btnSize.d.ts +11 -0
  315. package/types/Enums/Controls/btnType.d.ts +17 -0
  316. package/types/Enums/Controls/controlLazyMode.d.ts +18 -0
  317. package/types/Enums/Controls/dayOfWeek.d.ts +21 -0
  318. package/types/Enums/Controls/detailPanelMode.d.ts +13 -0
  319. package/types/Enums/Controls/gatewayEmitStrings.d.ts +11 -0
  320. package/types/Enums/Controls/mediaSelectorMode.d.ts +11 -0
  321. package/types/Enums/Controls/mergeTemplateOwnership.d.ts +28 -0
  322. package/types/Enums/Controls/modalAlertType.d.ts +9 -0
  323. package/types/Enums/Controls/pickerDisplayStyle.d.ts +11 -0
  324. package/types/Enums/Controls/requirementLevel.d.ts +24 -0
  325. package/types/Enums/Controls/rockCacheabilityType.d.ts +10 -0
  326. package/types/Enums/Controls/slidingDateRangeType.d.ts +21 -0
  327. package/types/Enums/Controls/timeUnitType.d.ts +17 -0
  328. package/types/Enums/Core/Grid/booleanFilterMethod.d.ts +13 -0
  329. package/types/Enums/Core/Grid/columnPositionAnchor.d.ts +20 -0
  330. package/types/Enums/Core/Grid/dateFilterMethod.d.ts +79 -0
  331. package/types/Enums/Core/Grid/numberFilterMethod.d.ts +30 -0
  332. package/types/Enums/Core/Grid/pickExistingFilterMethod.d.ts +11 -0
  333. package/types/Enums/Core/Grid/textFilterMethod.d.ts +19 -0
  334. package/types/Enums/Core/addressInvalidReason.d.ts +13 -0
  335. package/types/Enums/Core/auditType.d.ts +13 -0
  336. package/types/Enums/Core/cameraBarcodeConfiguration.d.ts +15 -0
  337. package/types/Enums/Core/changeType.d.ts +10 -0
  338. package/types/Enums/Core/colorDepth.d.ts +19 -0
  339. package/types/Enums/Core/colorRecipe.d.ts +19 -0
  340. package/types/Enums/Core/colorScheme.d.ts +11 -0
  341. package/types/Enums/Core/followingSuggestedStatus.d.ts +13 -0
  342. package/types/Enums/Core/format.d.ts +25 -0
  343. package/types/Enums/Core/jobNotificationStatus.d.ts +15 -0
  344. package/types/Enums/Core/keyboardInputMode.d.ts +21 -0
  345. package/types/Enums/Core/kioskType.d.ts +13 -0
  346. package/types/Enums/Core/matchFlag.d.ts +17 -0
  347. package/types/Enums/Core/moveType.d.ts +15 -0
  348. package/types/Enums/Core/ncoaType.d.ts +15 -0
  349. package/types/Enums/Core/noteApprovalStatus.d.ts +15 -0
  350. package/types/Enums/Core/noteFormatType.d.ts +19 -0
  351. package/types/Enums/Core/notificationMessageActionType.d.ts +28 -0
  352. package/types/Enums/Core/printFrom.d.ts +11 -0
  353. package/types/Enums/Core/printTo.d.ts +13 -0
  354. package/types/Enums/Core/processed.d.ts +17 -0
  355. package/types/Enums/Core/resolution.d.ts +17 -0
  356. package/types/Enums/Core/signatureDocumentStatus.d.ts +17 -0
  357. package/types/Enums/Core/signatureType.d.ts +11 -0
  358. package/types/Enums/Core/specialRole.d.ts +15 -0
  359. package/types/Enums/Core/timeIntervalUnit.d.ts +19 -0
  360. package/types/Enums/Core/updatedAddressType.d.ts +13 -0
  361. package/types/Enums/Crm/ageBracket.d.ts +27 -0
  362. package/types/Enums/Crm/ageClassification.d.ts +13 -0
  363. package/types/Enums/Crm/assessmentRequestStatus.d.ts +20 -0
  364. package/types/Enums/Crm/authenticationServiceType.d.ts +11 -0
  365. package/types/Enums/Crm/emailPreference.d.ts +13 -0
  366. package/types/Enums/Crm/gender.d.ts +13 -0
  367. package/types/Enums/Crm/personalizationType.d.ts +11 -0
  368. package/types/Enums/Engagement/streakOccurrenceFrequency.d.ts +15 -0
  369. package/types/Enums/Engagement/streakStructureType.d.ts +25 -0
  370. package/types/Enums/Event/attendanceGraphBy.d.ts +17 -0
  371. package/types/Enums/Event/attendanceStatus.d.ts +13 -0
  372. package/types/Enums/Event/checkInStatus.d.ts +24 -0
  373. package/types/Enums/Event/interactiveExperienceApprovalStatus.d.ts +13 -0
  374. package/types/Enums/Event/interactiveExperienceCampusBehavior.d.ts +29 -0
  375. package/types/Enums/Event/interactiveExperiencePushNotificationType.d.ts +25 -0
  376. package/types/Enums/Event/registrantsSameFamily.d.ts +13 -0
  377. package/types/Enums/Event/registrarOption.d.ts +18 -0
  378. package/types/Enums/Event/registrationCostSummaryType.d.ts +12 -0
  379. package/types/Enums/Event/registrationFeeType.d.ts +11 -0
  380. package/types/Enums/Event/registrationFieldSource.d.ts +15 -0
  381. package/types/Enums/Event/registrationPersonFieldType.d.ts +38 -0
  382. package/types/Enums/Event/rsvp.d.ts +18 -0
  383. package/types/Enums/Event/scheduledAttendanceItemMatchesPreference.d.ts +13 -0
  384. package/types/Enums/Event/scheduledAttendanceItemStatus.d.ts +15 -0
  385. package/types/Enums/Event/schedulerResourceGroupMemberFilterType.d.ts +11 -0
  386. package/types/Enums/Event/sessionStatus.d.ts +13 -0
  387. package/types/Enums/Event/signatureDocumentAction.d.ts +11 -0
  388. package/types/Enums/Finance/alertType.d.ts +11 -0
  389. package/types/Enums/Finance/batchStatus.d.ts +22 -0
  390. package/types/Enums/Finance/benevolenceWorkflowTriggerType.d.ts +15 -0
  391. package/types/Enums/Finance/financialScheduledTransactionStatus.d.ts +19 -0
  392. package/types/Enums/Finance/mICRStatus.d.ts +14 -0
  393. package/types/Enums/Finance/transactionGraphBy.d.ts +13 -0
  394. package/types/Enums/Group/appliesToAgeClassification.d.ts +13 -0
  395. package/types/Enums/Group/attendanceRecordRequiredForCheckIn.d.ts +13 -0
  396. package/types/Enums/Group/attendanceRule.d.ts +16 -0
  397. package/types/Enums/Group/dueDateType.d.ts +15 -0
  398. package/types/Enums/Group/groupCapacityRule.d.ts +13 -0
  399. package/types/Enums/Group/groupMemberStatus.d.ts +13 -0
  400. package/types/Enums/Group/meetsGroupRequirement.d.ts +14 -0
  401. package/types/Enums/Group/participationType.d.ts +11 -0
  402. package/types/Enums/Group/requirementCheckType.d.ts +13 -0
  403. package/types/Enums/Group/scheduleConfirmationLogic.d.ts +11 -0
  404. package/types/Enums/Net/cookieSameSiteMode.d.ts +36 -0
  405. package/types/Enums/Net/responseElementLocation.d.ts +20 -0
  406. package/types/Enums/Reporting/comparisonType.d.ts +40 -0
  407. package/types/Enums/Reporting/fieldFilterSourceType.d.ts +21 -0
  408. package/types/Enums/Reporting/filterExpressionType.d.ts +17 -0
  409. package/types/Enums/Reporting/metricNumericDataType.d.ts +13 -0
  410. package/types/Enums/Reporting/metricValueType.d.ts +11 -0
  411. package/types/Enums/Reporting/reportFieldType.d.ts +10 -0
  412. package/types/Enums/Reporting/unitType.d.ts +13 -0
  413. package/types/Enums/Workflow/workflowActionFormPersonEntryOption.d.ts +13 -0
  414. package/types/Enums/Workflow/workflowActionFormShowHideOption.d.ts +11 -0
  415. package/types/Enums/Workflow/workflowLoggingLevel.d.ts +15 -0
  416. package/types/Enums/Workflow/workflowTriggerType.d.ts +19 -0
  417. package/types/Enums/Workflow/workflowTriggerValueChangeType.d.ts +11 -0
  418. package/types/FieldTypes/addressField.partial.d.ts +19 -0
  419. package/types/FieldTypes/addressFieldComponents.d.ts +39 -0
  420. package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -0
  421. package/types/FieldTypes/backgroundCheckFieldComponents.d.ts +71 -0
  422. package/types/FieldTypes/booleanField.partial.d.ts +19 -0
  423. package/types/FieldTypes/booleanFieldComponents.d.ts +107 -0
  424. package/types/FieldTypes/campusField.partial.d.ts +29 -0
  425. package/types/FieldTypes/campusFieldComponents.d.ts +99 -0
  426. package/types/FieldTypes/campusesField.partial.d.ts +26 -0
  427. package/types/FieldTypes/campusesFieldComponents.d.ts +72 -0
  428. package/types/FieldTypes/categoriesField.partial.d.ts +16 -0
  429. package/types/FieldTypes/categoriesFieldComponents.d.ts +66 -0
  430. package/types/FieldTypes/categorizedDefinedValueField.partial.d.ts +18 -0
  431. package/types/FieldTypes/categorizedDefinedValueFieldComponents.d.ts +70 -0
  432. package/types/FieldTypes/categoryField.partial.d.ts +16 -0
  433. package/types/FieldTypes/categoryFieldComponents.d.ts +66 -0
  434. package/types/FieldTypes/checkListField.partial.d.ts +21 -0
  435. package/types/FieldTypes/checkListFieldComponents.d.ts +93 -0
  436. package/types/FieldTypes/colorField.partial.d.ts +9 -0
  437. package/types/FieldTypes/colorFieldComponents.d.ts +69 -0
  438. package/types/FieldTypes/colorSelectorComponents.d.ts +73 -0
  439. package/types/FieldTypes/colorSelectorField.partial.d.ts +12 -0
  440. package/types/FieldTypes/colorSelectorField.types.partial.d.ts +4 -0
  441. package/types/FieldTypes/colorSelectorField.utils.partial.d.ts +23 -0
  442. package/types/FieldTypes/communicationPreferenceField.partial.d.ts +15 -0
  443. package/types/FieldTypes/communicationPreferenceFieldComponents.d.ts +70 -0
  444. package/types/FieldTypes/connectionTypeField.partial.d.ts +13 -0
  445. package/types/FieldTypes/connectionTypeFieldComponents.d.ts +35 -0
  446. package/types/FieldTypes/connectionTypesField.partial.d.ts +13 -0
  447. package/types/FieldTypes/connectionTypesFieldComponents.d.ts +36 -0
  448. package/types/FieldTypes/currencyField.partial.d.ts +12 -0
  449. package/types/FieldTypes/currencyFieldComponents.d.ts +31 -0
  450. package/types/FieldTypes/dateField.partial.d.ts +49 -0
  451. package/types/FieldTypes/dateFieldComponents.d.ts +123 -0
  452. package/types/FieldTypes/dateRangeField.partial.d.ts +11 -0
  453. package/types/FieldTypes/dateRangeFieldComponents.d.ts +31 -0
  454. package/types/FieldTypes/dateTimeField.partial.d.ts +38 -0
  455. package/types/FieldTypes/dateTimeFieldComponents.d.ts +113 -0
  456. package/types/FieldTypes/dayOfWeekField.partial.d.ts +11 -0
  457. package/types/FieldTypes/dayOfWeekFieldComponents.d.ts +59 -0
  458. package/types/FieldTypes/daysOfWeekField.partial.d.ts +12 -0
  459. package/types/FieldTypes/daysOfWeekFieldComponents.d.ts +34 -0
  460. package/types/FieldTypes/decimalField.partial.d.ts +12 -0
  461. package/types/FieldTypes/decimalFieldComponents.d.ts +31 -0
  462. package/types/FieldTypes/decimalRangeField.partial.d.ts +11 -0
  463. package/types/FieldTypes/decimalRangeFieldComponents.d.ts +32 -0
  464. package/types/FieldTypes/definedValueField.partial.d.ts +70 -0
  465. package/types/FieldTypes/definedValueFieldComponents.d.ts +105 -0
  466. package/types/FieldTypes/definedValueRangeField.partial.d.ts +25 -0
  467. package/types/FieldTypes/definedValueRangeFieldComponents.d.ts +36 -0
  468. package/types/FieldTypes/emailField.partial.d.ts +13 -0
  469. package/types/FieldTypes/emailFieldComponents.d.ts +61 -0
  470. package/types/FieldTypes/fieldType.d.ts +25 -0
  471. package/types/FieldTypes/fileField.partial.d.ts +28 -0
  472. package/types/FieldTypes/fileFieldComponents.d.ts +62 -0
  473. package/types/FieldTypes/financialAccountField.partial.d.ts +17 -0
  474. package/types/FieldTypes/financialAccountFieldComponents.d.ts +62 -0
  475. package/types/FieldTypes/financialAccountsField.partial.d.ts +17 -0
  476. package/types/FieldTypes/financialAccountsFieldComponents.d.ts +62 -0
  477. package/types/FieldTypes/genderField.partial.d.ts +10 -0
  478. package/types/FieldTypes/genderFieldComponents.d.ts +57 -0
  479. package/types/FieldTypes/groupAndRoleField.partial.d.ts +21 -0
  480. package/types/FieldTypes/groupAndRoleFieldComponents.d.ts +72 -0
  481. package/types/FieldTypes/groupField.partial.d.ts +11 -0
  482. package/types/FieldTypes/groupFieldComponents.d.ts +35 -0
  483. package/types/FieldTypes/groupLocationTypeField.partial.d.ts +15 -0
  484. package/types/FieldTypes/groupLocationTypeFieldComponents.d.ts +65 -0
  485. package/types/FieldTypes/groupMemberField.partial.d.ts +16 -0
  486. package/types/FieldTypes/groupMemberFieldComponents.d.ts +64 -0
  487. package/types/FieldTypes/groupRoleField.partial.d.ts +14 -0
  488. package/types/FieldTypes/groupRoleFieldComponents.d.ts +64 -0
  489. package/types/FieldTypes/groupTypeField.partial.d.ts +15 -0
  490. package/types/FieldTypes/groupTypeFieldComponents.d.ts +59 -0
  491. package/types/FieldTypes/groupTypesField.partial.d.ts +15 -0
  492. package/types/FieldTypes/groupTypesFieldComponents.d.ts +55 -0
  493. package/types/FieldTypes/imageField.partial.d.ts +31 -0
  494. package/types/FieldTypes/imageFieldComponents.d.ts +63 -0
  495. package/types/FieldTypes/index.d.ts +1 -0
  496. package/types/FieldTypes/integerField.partial.d.ts +12 -0
  497. package/types/FieldTypes/integerFieldComponents.d.ts +31 -0
  498. package/types/FieldTypes/integerRangeField.partial.d.ts +11 -0
  499. package/types/FieldTypes/integerRangeFieldComponents.d.ts +32 -0
  500. package/types/FieldTypes/keyValueListField.partial.d.ts +31 -0
  501. package/types/FieldTypes/keyValueListFieldComponents.d.ts +72 -0
  502. package/types/FieldTypes/locationListField.partial.d.ts +26 -0
  503. package/types/FieldTypes/locationListFieldComponents.d.ts +76 -0
  504. package/types/FieldTypes/mediaSelectorField.partial.d.ts +14 -0
  505. package/types/FieldTypes/mediaSelectorFieldComponents.d.ts +70 -0
  506. package/types/FieldTypes/memoField.partial.d.ts +18 -0
  507. package/types/FieldTypes/memoFieldComponents.d.ts +91 -0
  508. package/types/FieldTypes/monthDayField.partial.d.ts +10 -0
  509. package/types/FieldTypes/monthDayFieldComponents.d.ts +31 -0
  510. package/types/FieldTypes/multiSelectField.partial.d.ts +24 -0
  511. package/types/FieldTypes/multiSelectFieldComponents.d.ts +101 -0
  512. package/types/FieldTypes/noteTypeField.partial.d.ts +17 -0
  513. package/types/FieldTypes/noteTypeFieldComponents.d.ts +63 -0
  514. package/types/FieldTypes/noteTypesField.partial.d.ts +18 -0
  515. package/types/FieldTypes/noteTypesFieldComponents.d.ts +65 -0
  516. package/types/FieldTypes/personField.partial.d.ts +14 -0
  517. package/types/FieldTypes/personFieldComponents.d.ts +58 -0
  518. package/types/FieldTypes/phoneNumberField.partial.d.ts +10 -0
  519. package/types/FieldTypes/phoneNumberFieldComponents.d.ts +32 -0
  520. package/types/FieldTypes/rangeSliderField.partial.d.ts +16 -0
  521. package/types/FieldTypes/rangeSliderFieldComponents.d.ts +59 -0
  522. package/types/FieldTypes/ratingField.partial.d.ts +21 -0
  523. package/types/FieldTypes/ratingFieldComponents.d.ts +57 -0
  524. package/types/FieldTypes/registryEntryField.partial.d.ts +7 -0
  525. package/types/FieldTypes/registryEntryFieldComponents.d.ts +32 -0
  526. package/types/FieldTypes/reminderTypeField.partial.d.ts +19 -0
  527. package/types/FieldTypes/reminderTypeFieldComponents.d.ts +36 -0
  528. package/types/FieldTypes/reminderTypesField.partial.d.ts +17 -0
  529. package/types/FieldTypes/reminderTypesFieldComponents.d.ts +57 -0
  530. package/types/FieldTypes/scheduleField.partial.d.ts +11 -0
  531. package/types/FieldTypes/scheduleFieldComponents.d.ts +35 -0
  532. package/types/FieldTypes/schedulesField.partial.d.ts +11 -0
  533. package/types/FieldTypes/schedulesFieldComponents.d.ts +35 -0
  534. package/types/FieldTypes/singleSelectField.partial.d.ts +21 -0
  535. package/types/FieldTypes/singleSelectFieldComponents.d.ts +101 -0
  536. package/types/FieldTypes/slidingDateRangeField.partial.d.ts +15 -0
  537. package/types/FieldTypes/slidingDateRangeFieldComponents.d.ts +66 -0
  538. package/types/FieldTypes/socialMediaAccountField.partial.d.ts +19 -0
  539. package/types/FieldTypes/socialMediaAccountFieldComponents.d.ts +58 -0
  540. package/types/FieldTypes/ssnField.partial.d.ts +8 -0
  541. package/types/FieldTypes/ssnFieldComponents.d.ts +30 -0
  542. package/types/FieldTypes/structureContentEditorField.partial.d.ts +7 -0
  543. package/types/FieldTypes/structureContentEditorFieldComponents.d.ts +30 -0
  544. package/types/FieldTypes/textField.partial.d.ts +15 -0
  545. package/types/FieldTypes/textFieldComponents.d.ts +66 -0
  546. package/types/FieldTypes/timeField.partial.d.ts +12 -0
  547. package/types/FieldTypes/timeFieldComponents.d.ts +34 -0
  548. package/types/FieldTypes/timeZoneField.partial.d.ts +14 -0
  549. package/types/FieldTypes/timeZoneFieldComponents.d.ts +32 -0
  550. package/types/FieldTypes/urlLinkField.partial.d.ts +17 -0
  551. package/types/FieldTypes/urlLinkFieldComponents.d.ts +59 -0
  552. package/types/FieldTypes/utils.d.ts +111 -0
  553. package/types/FieldTypes/valueListField.partial.d.ts +21 -0
  554. package/types/FieldTypes/valueListFieldComponents.d.ts +67 -0
  555. package/types/PageState/index.d.ts +19 -0
  556. package/types/PageState/state.d.ts +14 -0
  557. package/types/SystemGuids/achievementType.d.ts +6 -0
  558. package/types/SystemGuids/assessmentType.d.ts +13 -0
  559. package/types/SystemGuids/attribute.d.ts +382 -0
  560. package/types/SystemGuids/authScope.d.ts +13 -0
  561. package/types/SystemGuids/badge.d.ts +33 -0
  562. package/types/SystemGuids/benevolenceType.d.ts +4 -0
  563. package/types/SystemGuids/binaryFile.d.ts +4 -0
  564. package/types/SystemGuids/binaryFiletype.d.ts +31 -0
  565. package/types/SystemGuids/block.d.ts +63 -0
  566. package/types/SystemGuids/blockType.d.ts +161 -0
  567. package/types/SystemGuids/category.d.ts +103 -0
  568. package/types/SystemGuids/communication.d.ts +7 -0
  569. package/types/SystemGuids/connectionActivityType.d.ts +13 -0
  570. package/types/SystemGuids/contentChannelType.d.ts +5 -0
  571. package/types/SystemGuids/definedType.d.ts +196 -0
  572. package/types/SystemGuids/definedValue.d.ts +511 -0
  573. package/types/SystemGuids/entityType.d.ts +739 -0
  574. package/types/SystemGuids/fieldType.d.ts +287 -0
  575. package/types/SystemGuids/financialAccount.d.ts +9 -0
  576. package/types/SystemGuids/financialStatementTemplate.d.ts +4 -0
  577. package/types/SystemGuids/followingEventType.d.ts +19 -0
  578. package/types/SystemGuids/group.d.ts +41 -0
  579. package/types/SystemGuids/groupRole.d.ts +61 -0
  580. package/types/SystemGuids/groupType.d.ts +39 -0
  581. package/types/SystemGuids/interactionChannel.d.ts +22 -0
  582. package/types/SystemGuids/layout.d.ts +17 -0
  583. package/types/SystemGuids/metric.d.ts +11 -0
  584. package/types/SystemGuids/noteType.d.ts +27 -0
  585. package/types/SystemGuids/page.d.ts +1709 -0
  586. package/types/SystemGuids/pageRoute.d.ts +38 -0
  587. package/types/SystemGuids/person.d.ts +6 -0
  588. package/types/SystemGuids/serviceJob.d.ts +141 -0
  589. package/types/SystemGuids/signatureDocumentTemplate.d.ts +4 -0
  590. package/types/SystemGuids/site.d.ts +9 -0
  591. package/types/SystemGuids/snippetType.d.ts +5 -0
  592. package/types/SystemGuids/streakType.d.ts +4 -0
  593. package/types/SystemGuids/systemCommunication.d.ts +88 -0
  594. package/types/SystemGuids/systemEmail.d.ts +43 -0
  595. package/types/SystemGuids/workflowType.d.ts +9 -0
  596. package/types/Templates/block.d.ts +14 -0
  597. package/types/Templates/detailBlock.d.ts +363 -0
  598. package/types/Templates/rockBlock.partial.d.ts +272 -0
  599. package/types/Templates/rockPage.d.ts +40 -0
  600. package/types/Types/Controls/autocomplete.d.ts +29 -0
  601. package/types/Types/Controls/datePartsPicker.d.ts +5 -0
  602. package/types/Types/Controls/dateRangePicker.d.ts +4 -0
  603. package/types/Types/Controls/dropDownMenu.d.ts +33 -0
  604. package/types/Types/Controls/geo.d.ts +58 -0
  605. package/types/Types/Controls/grid.d.ts +897 -0
  606. package/types/Types/Controls/itemsWithPreAndPostHtml.d.ts +5 -0
  607. package/types/Types/Controls/keyValueItem.d.ts +22 -0
  608. package/types/Types/Controls/numberRangeBox.d.ts +10 -0
  609. package/types/Types/Controls/numberUpDownGroup.d.ts +6 -0
  610. package/types/Types/Controls/panelAction.d.ts +47 -0
  611. package/types/Types/Controls/progressTracker.d.ts +6 -0
  612. package/types/Types/Controls/valueDetailListItem.d.ts +32 -0
  613. package/types/Types/Core/personPreferences.d.ts +101 -0
  614. package/types/Types/Reporting/comparisonValue.d.ts +28 -0
  615. package/types/Types/Utility/block.d.ts +42 -0
  616. package/types/Types/Utility/component.d.ts +29 -0
  617. package/types/Types/Utility/http.d.ts +40 -0
  618. package/types/Types/Utility/support.d.ts +26 -0
  619. package/types/Types/fieldType.d.ts +173 -0
  620. package/types/Types/index.d.ts +18 -0
  621. package/types/Types/validationRules.d.ts +44 -0
  622. package/types/Utility/address.d.ts +6 -0
  623. package/types/Utility/arrayUtils.d.ts +11 -0
  624. package/types/Utility/aspDateFormat.d.ts +9 -0
  625. package/types/Utility/block.d.ts +186 -0
  626. package/types/Utility/booleanUtils.d.ts +16 -0
  627. package/types/Utility/bus.d.ts +23 -0
  628. package/types/Utility/cache.d.ts +32 -0
  629. package/types/Utility/cancellation.d.ts +58 -0
  630. package/types/Utility/component.d.ts +199 -0
  631. package/types/Utility/dateKey.d.ts +41 -0
  632. package/types/Utility/dialogs.d.ts +38 -0
  633. package/types/Utility/email.d.ts +5 -0
  634. package/types/Utility/enumUtils.d.ts +9 -0
  635. package/types/Utility/fieldTypes.d.ts +20 -0
  636. package/types/Utility/form.d.ts +33 -0
  637. package/types/Utility/fullscreen.d.ts +33 -0
  638. package/types/Utility/geo.d.ts +45 -0
  639. package/types/Utility/guid.d.ts +39 -0
  640. package/types/Utility/http.d.ts +94 -0
  641. package/types/Utility/internetCalendar.d.ts +242 -0
  642. package/types/Utility/lava.d.ts +1 -0
  643. package/types/Utility/linq.d.ts +174 -0
  644. package/types/Utility/listItemBag.d.ts +2 -0
  645. package/types/Utility/mergeField.d.ts +8 -0
  646. package/types/Utility/numberUtils.d.ts +54 -0
  647. package/types/Utility/objectUtils.d.ts +1 -0
  648. package/types/Utility/page.d.ts +49 -0
  649. package/types/Utility/phone.d.ts +28 -0
  650. package/types/Utility/popover.d.ts +16 -0
  651. package/types/Utility/promiseUtils.d.ts +43 -0
  652. package/types/Utility/realTime.d.ts +79 -0
  653. package/types/Utility/rockDateTime.d.ts +316 -0
  654. package/types/Utility/slidingDateRange.d.ts +82 -0
  655. package/types/Utility/stringUtils.d.ts +120 -0
  656. package/types/Utility/structuredContentEditor.d.ts +8 -0
  657. package/types/Utility/suspense.d.ts +98 -0
  658. package/types/Utility/tooltip.d.ts +22 -0
  659. package/types/Utility/treeItemProviders.d.ts +512 -0
  660. package/types/Utility/url.d.ts +39 -0
  661. package/types/Utility/util.d.ts +26 -0
  662. package/types/Utility/validationRules.d.ts +49 -0
  663. package/types/ValidationRules/index.d.ts +3 -0
  664. package/types/ViewModels/Blocks/Bus/QueueDetail/queueBag.d.ts +48 -0
  665. package/types/ViewModels/Blocks/Bus/QueueDetail/queueDetailOptionsBag.d.ts +25 -0
  666. package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationBag.d.ts +56 -0
  667. package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationDetailOptionsBag.d.ts +30 -0
  668. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageBag.d.ts +69 -0
  669. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageDetailOptionsBag.d.ts +27 -0
  670. package/types/ViewModels/Blocks/Cms/AdaptiveMessageList/adaptiveMessageListOptionsBag.d.ts +25 -0
  671. package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeBag.d.ts +66 -0
  672. package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeDetailOptionsBag.d.ts +25 -0
  673. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/attributeFilterBag.d.ts +62 -0
  674. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/availableContentSourceBag.d.ts +40 -0
  675. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionBag.d.ts +83 -0
  676. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionDetailOptionsBag.d.ts +26 -0
  677. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentSourceBag.d.ts +83 -0
  678. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/customFieldFilterBag.d.ts +48 -0
  679. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/filterSettingsBag.d.ts +62 -0
  680. package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionInitializationBox.d.ts +79 -0
  681. package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionListItemBag.d.ts +47 -0
  682. package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +121 -0
  683. package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsOptionsBag.d.ts +33 -0
  684. package/types/ViewModels/Blocks/Cms/ContentCollectionView/filterOptionsBag.d.ts +41 -0
  685. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchFilterBag.d.ts +49 -0
  686. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchQueryBag.d.ts +52 -0
  687. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultBag.d.ts +36 -0
  688. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultSourceBag.d.ts +54 -0
  689. package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeBag.d.ts +73 -0
  690. package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeDetailOptionsBag.d.ts +29 -0
  691. package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutBag.d.ts +53 -0
  692. package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutDetailOptionsBag.d.ts +28 -0
  693. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerDownloadItemBag.d.ts +39 -0
  694. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerInitializationBox.d.ts +61 -0
  695. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemBag.d.ts +91 -0
  696. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemFiltersBag.d.ts +49 -0
  697. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerValidationResultsBag.d.ts +34 -0
  698. package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountBag.d.ts +55 -0
  699. package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountDetailOptionsBag.d.ts +26 -0
  700. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +79 -0
  701. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderDetailOptionsBag.d.ts +34 -0
  702. package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteBag.d.ts +55 -0
  703. package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteDetailOptionsBag.d.ts +25 -0
  704. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +48 -0
  705. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +29 -0
  706. package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetBag.d.ts +106 -0
  707. package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetDetailOptionsBag.d.ts +26 -0
  708. package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionBag.d.ts +48 -0
  709. package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionDetailOptionsBag.d.ts +26 -0
  710. package/types/ViewModels/Blocks/Cms/SiteDetail/siteBag.d.ts +161 -0
  711. package/types/ViewModels/Blocks/Cms/SiteDetail/siteDetailOptionsBag.d.ts +33 -0
  712. package/types/ViewModels/Blocks/Cms/SiteList/siteListOptionsBag.d.ts +26 -0
  713. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +90 -0
  714. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts +42 -0
  715. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts +33 -0
  716. package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetBag.d.ts +61 -0
  717. package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetDetailOptionsBag.d.ts +31 -0
  718. package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeBag.d.ts +54 -0
  719. package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeDetailOptionsBag.d.ts +26 -0
  720. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +87 -0
  721. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberDetailOptionsBag.d.ts +30 -0
  722. package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderBag.d.ts +48 -0
  723. package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderDetailOptionsBag.d.ts +25 -0
  724. package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileBag.d.ts +70 -0
  725. package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileDetailOptionsBag.d.ts +25 -0
  726. package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +83 -0
  727. package/types/ViewModels/Blocks/Core/CampusDetail/campusDetailOptionsBag.d.ts +33 -0
  728. package/types/ViewModels/Blocks/Core/CampusDetail/campusScheduleBag.d.ts +37 -0
  729. package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +25 -0
  730. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryBag.d.ts +67 -0
  731. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryDetailOptionsBag.d.ts +25 -0
  732. package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsBag.d.ts +46 -0
  733. package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsOptionsBag.d.ts +29 -0
  734. package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeBag.d.ts +73 -0
  735. package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeDetailOptionsBag.d.ts +25 -0
  736. package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +89 -0
  737. package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelDetailOptionsBag.d.ts +25 -0
  738. package/types/ViewModels/Blocks/Core/LocationDetail/addressStandardizationResultBag.d.ts +36 -0
  739. package/types/ViewModels/Blocks/Core/LocationDetail/locationBag.d.ts +85 -0
  740. package/types/ViewModels/Blocks/Core/LocationDetail/locationDetailOptionsBag.d.ts +29 -0
  741. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +82 -0
  742. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeDetailOptionsBag.d.ts +25 -0
  743. package/types/ViewModels/Blocks/Core/Notes/deleteNoteRequestBag.d.ts +28 -0
  744. package/types/ViewModels/Blocks/Core/Notes/editNoteRequestBag.d.ts +28 -0
  745. package/types/ViewModels/Blocks/Core/Notes/noteBag.d.ts +82 -0
  746. package/types/ViewModels/Blocks/Core/Notes/noteEditBag.d.ts +52 -0
  747. package/types/ViewModels/Blocks/Core/Notes/noteTypeBag.d.ts +60 -0
  748. package/types/ViewModels/Blocks/Core/Notes/notesInitializationBox.d.ts +87 -0
  749. package/types/ViewModels/Blocks/Core/Notes/saveNoteRequestBag.d.ts +33 -0
  750. package/types/ViewModels/Blocks/Core/Notes/watchNoteRequestBag.d.ts +31 -0
  751. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionRequestBag.d.ts +31 -0
  752. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionResponseBag.d.ts +36 -0
  753. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesRequestBag.d.ts +26 -0
  754. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesResponseBag.d.ts +30 -0
  755. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadRequestBag.d.ts +31 -0
  756. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadResponseBag.d.ts +31 -0
  757. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadRequestBag.d.ts +31 -0
  758. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadResponseBag.d.ts +34 -0
  759. package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageBag.d.ts +55 -0
  760. package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageListInitializationBox.d.ts +37 -0
  761. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleBag.d.ts +87 -0
  762. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleDetailOptionsBag.d.ts +41 -0
  763. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleExclusionBag.d.ts +30 -0
  764. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobBag.d.ts +84 -0
  765. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +32 -0
  766. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +81 -0
  767. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateDetailOptionsBag.d.ts +32 -0
  768. package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBag.d.ts +63 -0
  769. package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBox.d.ts +54 -0
  770. package/types/ViewModels/Blocks/Core/TagDetail/tagBag.d.ts +76 -0
  771. package/types/ViewModels/Blocks/Core/TagDetail/tagDetailOptionsBag.d.ts +25 -0
  772. package/types/ViewModels/Blocks/Crm/AssessmentList/assessmentListBag.d.ts +33 -0
  773. package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeBag.d.ts +69 -0
  774. package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeDetailOptionsBag.d.ts +26 -0
  775. package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeBag.d.ts +57 -0
  776. package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeDetailOptionsBag.d.ts +25 -0
  777. package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeBag.d.ts +75 -0
  778. package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeDetailOptionsBag.d.ts +25 -0
  779. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationCreateAccountRequestBag.d.ts +31 -0
  780. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDateAndTimeFieldBag.d.ts +43 -0
  781. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDatePickerFieldBag.d.ts +40 -0
  782. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationFieldBag.d.ts +37 -0
  783. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesRequestBag.d.ts +30 -0
  784. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesResponseBag.d.ts +40 -0
  785. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +170 -0
  786. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationPersonBag.d.ts +93 -0
  787. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveRequestBag.d.ts +63 -0
  788. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveResponseBag.d.ts +31 -0
  789. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationScheduleDateBag.d.ts +42 -0
  790. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSmsOptInFieldBag.d.ts +40 -0
  791. package/types/ViewModels/Blocks/Crm/PersonDetail/Badges/badgesConfigurationBox.d.ts +48 -0
  792. package/types/ViewModels/Blocks/Crm/PhotoOptOut/photoOptOutBag.d.ts +39 -0
  793. package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptBag.d.ts +73 -0
  794. package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptDetailOptionsBag.d.ts +25 -0
  795. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceBag.d.ts +30 -0
  796. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceDetailInitializationBox.d.ts +45 -0
  797. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendeeBag.d.ts +34 -0
  798. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpDetail/signUpDetailInitializationBox.d.ts +40 -0
  799. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsBag.d.ts +100 -0
  800. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsOptionsBag.d.ts +34 -0
  801. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderInitializationBox.d.ts +85 -0
  802. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderResultsBag.d.ts +31 -0
  803. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderSelectedFiltersBag.d.ts +57 -0
  804. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +66 -0
  805. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterRequestBag.d.ts +30 -0
  806. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterResponseBag.d.ts +37 -0
  807. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegistrantBag.d.ts +67 -0
  808. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -0
  809. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -0
  810. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -0
  811. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +34 -0
  812. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowInitializationBox.d.ts +51 -0
  813. package/types/ViewModels/Blocks/Engagement/StreakDetail/streakBag.d.ts +69 -0
  814. package/types/ViewModels/Blocks/Engagement/StreakDetail/streakDetailOptionsBag.d.ts +36 -0
  815. package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeBag.d.ts +96 -0
  816. package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeDetailOptionsBag.d.ts +36 -0
  817. package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionBag.d.ts +42 -0
  818. package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionDetailOptionsBag.d.ts +25 -0
  819. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventAttributeBag.d.ts +32 -0
  820. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarBag.d.ts +66 -0
  821. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarDetailOptionsBag.d.ts +29 -0
  822. package/types/ViewModels/Blocks/Event/EventItemDetail/eventCalendarItemAttributeBag.d.ts +39 -0
  823. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemBag.d.ts +89 -0
  824. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemDetailOptionsBag.d.ts +25 -0
  825. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemOccurenceAttributeBag.d.ts +32 -0
  826. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManager/experienceManagerInitializationBox.d.ts +72 -0
  827. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManagerOccurrences/experienceManagerOccurrencesInitializationBox.d.ts +48 -0
  828. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/experienceVisualizerInitializationBox.d.ts +43 -0
  829. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/visualizerOccurrenceBag.d.ts +36 -0
  830. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionBag.d.ts +61 -0
  831. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionTypeBag.d.ts +67 -0
  832. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceBag.d.ts +155 -0
  833. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceDetailOptionsBag.d.ts +34 -0
  834. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceScheduleBag.d.ts +55 -0
  835. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceVisualizerTypeBag.d.ts +48 -0
  836. package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperience/liveExperienceInitializationBox.d.ts +57 -0
  837. package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperienceOccurrences/liveExperienceOccurrencesInitializationBox.d.ts +49 -0
  838. package/types/ViewModels/Blocks/Event/RegistrationListLavaBox.d.ts +43 -0
  839. package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailBag.d.ts +86 -0
  840. package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailOptionsBag.d.ts +37 -0
  841. package/types/ViewModels/Blocks/Finance/BusinessDetail/searchKeyBag.d.ts +36 -0
  842. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchAccountTotalsBag.d.ts +31 -0
  843. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchBag.d.ts +87 -0
  844. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchCurrencyTotalsBag.d.ts +31 -0
  845. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +58 -0
  846. package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +44 -0
  847. package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusRequestBag.d.ts +31 -0
  848. package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusResponseBag.d.ts +40 -0
  849. package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayBag.d.ts +63 -0
  850. package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayDetailOptionsBag.d.ts +26 -0
  851. package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeBag.d.ts +60 -0
  852. package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeDetailOptionsBag.d.ts +36 -0
  853. package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryBag.d.ts +84 -0
  854. package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryOptionsBag.d.ts +57 -0
  855. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonRequestBag.d.ts +33 -0
  856. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonResponseBag.d.ts +30 -0
  857. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAttendanceBag.d.ts +51 -0
  858. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetAttendanceRequestBag.d.ts +30 -0
  859. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationScheduleDatesRequestBag.d.ts +39 -0
  860. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationSchedulesRequestBag.d.ts +36 -0
  861. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationsRequestBag.d.ts +30 -0
  862. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetOrCreateRequestBag.d.ts +55 -0
  863. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailInitializationBox.d.ts +164 -0
  864. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailMarkAttendanceRequestBag.d.ts +36 -0
  865. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterRequestBag.d.ts +39 -0
  866. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterResponseBag.d.ts +28 -0
  867. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateAttendanceOccurrenceTypeRequestBag.d.ts +33 -0
  868. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateDidNotOccurRequestBag.d.ts +33 -0
  869. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateNotesRequestBag.d.ts +33 -0
  870. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBag.d.ts +65 -0
  871. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +77 -0
  872. package/types/ViewModels/Blocks/Group/GroupSchedulePreference/assignmentScheduleAndLocationBag.d.ts +37 -0
  873. package/types/ViewModels/Blocks/Group/GroupSchedulePreference/preferencePageContentBag.d.ts +44 -0
  874. package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupBag.d.ts +33 -0
  875. package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupDataBag.d.ts +60 -0
  876. package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/confirmDeclineBag.d.ts +31 -0
  877. package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/contentBag.d.ts +28 -0
  878. package/types/ViewModels/Blocks/Group/GroupScheduleUnavailability/contentBag.d.ts +39 -0
  879. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/assignmentOptionsBag.d.ts +50 -0
  880. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/currentScheduleBag.d.ts +47 -0
  881. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/deleteAssignmentRequestBag.d.ts +33 -0
  882. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getAssignmentOptionsRequestBag.d.ts +39 -0
  883. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSchedulePreferencesRequestBag.d.ts +33 -0
  884. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSignUpsRequestBag.d.ts +33 -0
  885. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/groupBag.d.ts +39 -0
  886. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/initializationBox.d.ts +92 -0
  887. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionRequestBag.d.ts +45 -0
  888. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionResponseBag.d.ts +52 -0
  889. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentRequestBag.d.ts +45 -0
  890. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentResponseBag.d.ts +33 -0
  891. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveDeclineReasonRequestBag.d.ts +46 -0
  892. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSchedulePreferenceRequestBag.d.ts +42 -0
  893. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpRequestBag.d.ts +45 -0
  894. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpResponseBag.d.ts +41 -0
  895. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveUnavailabilityRequestBag.d.ts +45 -0
  896. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceAssignmentBag.d.ts +36 -0
  897. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceBag.d.ts +44 -0
  898. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferencesBag.d.ts +37 -0
  899. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/scheduleRowBag.d.ts +62 -0
  900. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceBag.d.ts +61 -0
  901. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceLocationBag.d.ts +48 -0
  902. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpsBag.d.ts +37 -0
  903. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupScheduleOccurrenceBag.d.ts +40 -0
  904. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerAppliedFiltersBag.d.ts +41 -0
  905. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerApplyResourceSettingsBag.d.ts +40 -0
  906. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSchedulesResponseBag.d.ts +43 -0
  907. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSettingsBag.d.ts +57 -0
  908. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerFiltersBag.d.ts +51 -0
  909. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGetPreferencesBag.d.ts +31 -0
  910. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerInitializationBox.d.ts +45 -0
  911. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerLocationsBag.d.ts +33 -0
  912. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +79 -0
  913. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferenceBag.d.ts +31 -0
  914. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferencesBag.d.ts +43 -0
  915. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerResourceSettingsBag.d.ts +43 -0
  916. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSchedulesBag.d.ts +33 -0
  917. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSendNowResponseBag.d.ts +37 -0
  918. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUnassignedResourceCountBag.d.ts +48 -0
  919. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUpdatePreferenceBag.d.ts +40 -0
  920. package/types/ViewModels/Blocks/Group/landingPageContentBag.d.ts +36 -0
  921. package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBag.d.ts +65 -0
  922. package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBlockBox.d.ts +65 -0
  923. package/types/ViewModels/Blocks/Mobile/Communication/SmsConversation/conversationDetailBag.d.ts +56 -0
  924. package/types/ViewModels/Blocks/Mobile/Communication/SmsConversationList/phoneNumberBag.d.ts +42 -0
  925. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestBag.d.ts +90 -0
  926. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailAddPersonResponseBag.d.ts +25 -0
  927. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailOptionsBag.d.ts +30 -0
  928. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +140 -0
  929. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +66 -0
  930. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +31 -0
  931. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateBag.d.ts +70 -0
  932. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateDetailOptionsBag.d.ts +25 -0
  933. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateFileValidationBag.d.ts +35 -0
  934. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsRequestBag.d.ts +36 -0
  935. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsResponseBag.d.ts +37 -0
  936. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetServiceTimesRequestBag.d.ts +33 -0
  937. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetWeekendDatesRequestBag.d.ts +31 -0
  938. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryInitializationBox.d.ts +60 -0
  939. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricCategoryBag.d.ts +34 -0
  940. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricItemBag.d.ts +37 -0
  941. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntrySaveRequestBag.d.ts +43 -0
  942. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryAccountInfoBag.d.ts +34 -0
  943. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryCompletedStepBag.d.ts +37 -0
  944. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryConfirmationSentStepBag.d.ts +28 -0
  945. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonItemBag.d.ts +31 -0
  946. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonSelectionStepBag.d.ts +33 -0
  947. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryExistingAccountStepBag.d.ts +28 -0
  948. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryForgotUsernameRequestBag.d.ts +34 -0
  949. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +107 -0
  950. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPasswordlessConfirmationSentStepBag.d.ts +31 -0
  951. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPersonInfoBag.d.ts +61 -0
  952. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPhoneNumberBag.d.ts +51 -0
  953. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterRequestBox.d.ts +46 -0
  954. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterResponseBox.d.ts +50 -0
  955. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAccountConfirmationViewOptionsBag.d.ts +28 -0
  956. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountActionNamesBag.d.ts +40 -0
  957. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertControlBag.d.ts +34 -0
  958. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertViewOptionsBag.d.ts +30 -0
  959. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordRequestBag.d.ts +31 -0
  960. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordViewOptionsBag.d.ts +34 -0
  961. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountConfirmRequestBag.d.ts +28 -0
  962. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountContentViewOptionsBag.d.ts +28 -0
  963. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteConfirmationViewOptionsBag.d.ts +31 -0
  964. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteRequestBag.d.ts +28 -0
  965. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountInitializationBox.d.ts +46 -0
  966. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowChangePasswordViewRequestBag.d.ts +28 -0
  967. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowDeleteConfirmationRequestBag.d.ts +28 -0
  968. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountViewBox.d.ts +68 -0
  969. package/types/ViewModels/Blocks/Security/ForgotUserName/changePasswordNotSupportedResultBag.d.ts +31 -0
  970. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameCaptionsBag.d.ts +34 -0
  971. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameInitializationBox.d.ts +45 -0
  972. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsRequestBag.d.ts +28 -0
  973. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsResultBag.d.ts +37 -0
  974. package/types/ViewModels/Blocks/Security/Login/credentialLoginMfaBag.d.ts +34 -0
  975. package/types/ViewModels/Blocks/Security/Login/credentialLoginRequestBag.d.ts +37 -0
  976. package/types/ViewModels/Blocks/Security/Login/credentialLoginResponseBag.d.ts +45 -0
  977. package/types/ViewModels/Blocks/Security/Login/externalAuthenticationButtonBag.d.ts +37 -0
  978. package/types/ViewModels/Blocks/Security/Login/loginInitializationBox.d.ts +114 -0
  979. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginAutoVerifyOptionsBag.d.ts +31 -0
  980. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginMfaBag.d.ts +34 -0
  981. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginOptionsBag.d.ts +46 -0
  982. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartRequestBag.d.ts +46 -0
  983. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartResponseBag.d.ts +34 -0
  984. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyOptionsBag.d.ts +42 -0
  985. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyRequestBag.d.ts +37 -0
  986. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyResponseBag.d.ts +49 -0
  987. package/types/ViewModels/Blocks/Security/Login/remoteLoginStartRequestBag.d.ts +31 -0
  988. package/types/ViewModels/Blocks/Security/Login/remoteLoginStartResponseBag.d.ts +28 -0
  989. package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyBag.d.ts +51 -0
  990. package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyDetailOptionsBag.d.ts +25 -0
  991. package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppBag.d.ts +72 -0
  992. package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppDetailOptionsBag.d.ts +25 -0
  993. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageBag.d.ts +57 -0
  994. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageDetailOptionsBag.d.ts +25 -0
  995. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/rockCacheabilityBag.d.ts +35 -0
  996. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/timeIntervalBag.d.ts +30 -0
  997. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsBag.d.ts +49 -0
  998. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsOptionsBag.d.ts +36 -0
  999. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/themeListItemBag.d.ts +43 -0
  1000. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/topicAndChannelBag.d.ts +31 -0
  1001. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmMetricBag.d.ts +31 -0
  1002. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeBag.d.ts +69 -0
  1003. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeDetailOptionsBag.d.ts +25 -0
  1004. package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +60 -0
  1005. package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsDetailOptionsBag.d.ts +25 -0
  1006. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerBag.d.ts +81 -0
  1007. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerDetailBox.d.ts +50 -0
  1008. package/types/ViewModels/Blocks/blockActionContextBag.d.ts +37 -0
  1009. package/types/ViewModels/Blocks/blockBox.d.ts +37 -0
  1010. package/types/ViewModels/Blocks/customSettingsBox.d.ts +40 -0
  1011. package/types/ViewModels/Blocks/detailBlockBox.d.ts +56 -0
  1012. package/types/ViewModels/Blocks/listBlockBox.d.ts +59 -0
  1013. package/types/ViewModels/Cms/blockCustomActionBag.d.ts +42 -0
  1014. package/types/ViewModels/Cms/contentCollectionAttributeFilterSettingsBag.d.ts +39 -0
  1015. package/types/ViewModels/Cms/contentCollectionCustomFieldBag.d.ts +44 -0
  1016. package/types/ViewModels/Cms/contentCollectionCustomFieldFilterSettingsBag.d.ts +39 -0
  1017. package/types/ViewModels/Cms/contentCollectionFilterSettingsBag.d.ts +78 -0
  1018. package/types/ViewModels/Cms/contentCollectionSourceAdditionalSettingsBag.d.ts +43 -0
  1019. package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +62 -0
  1020. package/types/ViewModels/Cms/obsidianBlockPreferencesBag.d.ts +36 -0
  1021. package/types/ViewModels/Communication/conversationAttachmentBag.d.ts +34 -0
  1022. package/types/ViewModels/Communication/conversationMessageBag.d.ts +95 -0
  1023. package/types/ViewModels/Connection/connectionRequestCountsBag.d.ts +34 -0
  1024. package/types/ViewModels/Controls/addressControlBag.d.ts +46 -0
  1025. package/types/ViewModels/Controls/birthdayPickerBag.d.ts +34 -0
  1026. package/types/ViewModels/Controls/campusPickerItemBag.d.ts +51 -0
  1027. package/types/ViewModels/Controls/electronicSignatureValue.d.ts +31 -0
  1028. package/types/ViewModels/Controls/fieldTypeEditorGetAvailableFieldTypesOptionsBag.d.ts +29 -0
  1029. package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationOptionsBag.d.ts +39 -0
  1030. package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationResultBag.d.ts +46 -0
  1031. package/types/ViewModels/Controls/gatewayControlBag.d.ts +31 -0
  1032. package/types/ViewModels/Controls/monthDayValue.d.ts +27 -0
  1033. package/types/ViewModels/Controls/monthYearValue.d.ts +27 -0
  1034. package/types/ViewModels/Controls/noteMentionItemBag.d.ts +43 -0
  1035. package/types/ViewModels/Controls/phoneNumberBoxWithSmsControlBag.d.ts +34 -0
  1036. package/types/ViewModels/Controls/rockCacheability.d.ts +33 -0
  1037. package/types/ViewModels/Controls/rockCacheabilityBag.d.ts +36 -0
  1038. package/types/ViewModels/Controls/slidingDateRangeBag.d.ts +43 -0
  1039. package/types/ViewModels/Controls/timePickerValue.d.ts +25 -0
  1040. package/types/ViewModels/Core/Grid/attributeFieldDefinitionBag.d.ts +47 -0
  1041. package/types/ViewModels/Core/Grid/customActionBag.d.ts +48 -0
  1042. package/types/ViewModels/Core/Grid/customColumnDefinitionBag.d.ts +48 -0
  1043. package/types/ViewModels/Core/Grid/fieldDefinitionBag.d.ts +31 -0
  1044. package/types/ViewModels/Core/Grid/gridCommunicationBag.d.ts +39 -0
  1045. package/types/ViewModels/Core/Grid/gridDataBag.d.ts +28 -0
  1046. package/types/ViewModels/Core/Grid/gridDefinitionBag.d.ts +76 -0
  1047. package/types/ViewModels/Core/Grid/gridEntitySetBag.d.ts +39 -0
  1048. package/types/ViewModels/Core/Grid/gridEntitySetItemBag.d.ts +40 -0
  1049. package/types/ViewModels/Core/Grid/personFieldBag.d.ts +37 -0
  1050. package/types/ViewModels/Core/notificationMessageActionBag.d.ts +42 -0
  1051. package/types/ViewModels/Core/notificationMessageMetadataBag.d.ts +54 -0
  1052. package/types/ViewModels/Core/personPreferenceValueBag.d.ts +34 -0
  1053. package/types/ViewModels/Crm/currentPersonBag.d.ts +43 -0
  1054. package/types/ViewModels/Crm/renderedBadgeBag.d.ts +31 -0
  1055. package/types/ViewModels/Engagement/achievementCompletedMessageBag.d.ts +63 -0
  1056. package/types/ViewModels/Event/InteractiveExperiences/actionRenderConfigurationBag.d.ts +39 -0
  1057. package/types/ViewModels/Event/InteractiveExperiences/experienceActionStyleBag.d.ts +49 -0
  1058. package/types/ViewModels/Event/InteractiveExperiences/experienceAnswerBag.d.ts +49 -0
  1059. package/types/ViewModels/Event/InteractiveExperiences/experienceOccurrenceStateBag.d.ts +31 -0
  1060. package/types/ViewModels/Event/InteractiveExperiences/experiencePlaceholderStyleBag.d.ts +34 -0
  1061. package/types/ViewModels/Event/InteractiveExperiences/experienceSettingsBag.d.ts +42 -0
  1062. package/types/ViewModels/Event/InteractiveExperiences/experienceStyleBag.d.ts +47 -0
  1063. package/types/ViewModels/Event/InteractiveExperiences/experienceVisualizerStyleBag.d.ts +46 -0
  1064. package/types/ViewModels/Event/InteractiveExperiences/joinExperienceResponseBag.d.ts +47 -0
  1065. package/types/ViewModels/Event/InteractiveExperiences/pingExperienceResponseBag.d.ts +28 -0
  1066. package/types/ViewModels/Event/InteractiveExperiences/visualizerRenderConfigurationBag.d.ts +42 -0
  1067. package/types/ViewModels/Event/attendanceOccurrenceUpdatedMessageBag.d.ts +45 -0
  1068. package/types/ViewModels/Event/attendanceUpdatedMessageBag.d.ts +67 -0
  1069. package/types/ViewModels/Finance/savedFinancialAccountListItemBag.d.ts +49 -0
  1070. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +38 -0
  1071. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +48 -0
  1072. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +30 -0
  1073. package/types/ViewModels/Reporting/fieldFilterGroupBag.d.ts +40 -0
  1074. package/types/ViewModels/Reporting/fieldFilterRuleBag.d.ts +52 -0
  1075. package/types/ViewModels/Reporting/fieldFilterSourceBag.d.ts +46 -0
  1076. package/types/ViewModels/Rest/Controls/accountPickerGetChildrenOptionsBag.d.ts +42 -0
  1077. package/types/ViewModels/Rest/Controls/accountPickerGetParentGuidsOptionsBag.d.ts +33 -0
  1078. package/types/ViewModels/Rest/Controls/accountPickerGetPreviewItemsOptionsBag.d.ts +36 -0
  1079. package/types/ViewModels/Rest/Controls/accountPickerGetSearchedAccountsOptionsBag.d.ts +37 -0
  1080. package/types/ViewModels/Rest/Controls/achievementTypePickerGetAchievementTypesOptionsBag.d.ts +29 -0
  1081. package/types/ViewModels/Rest/Controls/addressControlConfigurationBag.d.ts +82 -0
  1082. package/types/ViewModels/Rest/Controls/addressControlGetConfigurationOptionsBag.d.ts +34 -0
  1083. package/types/ViewModels/Rest/Controls/addressControlValidateAddressOptionsBag.d.ts +49 -0
  1084. package/types/ViewModels/Rest/Controls/addressControlValidateAddressResultsBag.d.ts +39 -0
  1085. package/types/ViewModels/Rest/Controls/assessmentTypePickerGetAssessmentTypesOptionsBag.d.ts +31 -0
  1086. package/types/ViewModels/Rest/Controls/assetStorageProviderPickerGetAssetStorageProvidersOptionsBag.d.ts +29 -0
  1087. package/types/ViewModels/Rest/Controls/auditDetailGetAuditDetailsOptionsBag.d.ts +45 -0
  1088. package/types/ViewModels/Rest/Controls/badgeComponentPickerGetBadgeComponentsOptionsBag.d.ts +33 -0
  1089. package/types/ViewModels/Rest/Controls/badgeListGetBadgesOptionsBag.d.ts +51 -0
  1090. package/types/ViewModels/Rest/Controls/badgePickerGetBadgesOptionsBag.d.ts +34 -0
  1091. package/types/ViewModels/Rest/Controls/binaryFilePickerGetBinaryFilesOptionsBag.d.ts +33 -0
  1092. package/types/ViewModels/Rest/Controls/binaryFileTypePickerGetBinaryFileTypesOptionsBag.d.ts +29 -0
  1093. package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesOptionsBag.d.ts +39 -0
  1094. package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesResultsBag.d.ts +35 -0
  1095. package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsOptionsBag.d.ts +48 -0
  1096. package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsResultItemBag.d.ts +43 -0
  1097. package/types/ViewModels/Rest/Controls/campusPickerGetCampusesOptionsBag.d.ts +29 -0
  1098. package/types/ViewModels/Rest/Controls/captchaControlConfigurationBag.d.ts +31 -0
  1099. package/types/ViewModels/Rest/Controls/captchaControlTokenValidateTokenResultBag.d.ts +28 -0
  1100. package/types/ViewModels/Rest/Controls/captchaControlValidateTokenOptionsBag.d.ts +27 -0
  1101. package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeOptionsBag.d.ts +36 -0
  1102. package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeResultsBag.d.ts +36 -0
  1103. package/types/ViewModels/Rest/Controls/categorizedValuePickerNodeBag.d.ts +40 -0
  1104. package/types/ViewModels/Rest/Controls/categoryPickerChildTreeItemsOptionsBag.d.ts +119 -0
  1105. package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +31 -0
  1106. package/types/ViewModels/Rest/Controls/connectionRequestPickerGetChildrenOptionsBag.d.ts +42 -0
  1107. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemOptionsBag.d.ts +40 -0
  1108. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemResultsBag.d.ts +36 -0
  1109. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetContentChannelItemsOptionsBag.d.ts +40 -0
  1110. package/types/ViewModels/Rest/Controls/dataViewPickerGetDataViewsOptionsBag.d.ts +86 -0
  1111. package/types/ViewModels/Rest/Controls/definedValuePickerGetAttributesOptionsBag.d.ts +39 -0
  1112. package/types/ViewModels/Rest/Controls/definedValuePickerGetDefinedValuesOptionsBag.d.ts +42 -0
  1113. package/types/ViewModels/Rest/Controls/definedValuePickerSaveNewValueOptionsBag.d.ts +45 -0
  1114. package/types/ViewModels/Rest/Controls/entityTagListAddEntityTagOptionsBag.d.ts +48 -0
  1115. package/types/ViewModels/Rest/Controls/entityTagListCreatePersonalTagOptionsBag.d.ts +51 -0
  1116. package/types/ViewModels/Rest/Controls/entityTagListGetAvailableTagsOptionsBag.d.ts +63 -0
  1117. package/types/ViewModels/Rest/Controls/entityTagListGetEntityTagsOptionsBag.d.ts +60 -0
  1118. package/types/ViewModels/Rest/Controls/entityTagListRemoveEntityTagOptionsBag.d.ts +48 -0
  1119. package/types/ViewModels/Rest/Controls/entityTagListSaveTagValuesOptionsBag.d.ts +64 -0
  1120. package/types/ViewModels/Rest/Controls/entityTagListTagBag.d.ts +49 -0
  1121. package/types/ViewModels/Rest/Controls/entityTypePickerGetEntityTypesOptionsBag.d.ts +29 -0
  1122. package/types/ViewModels/Rest/Controls/ethnicityPickerGetEthnicitiesResultsBag.d.ts +33 -0
  1123. package/types/ViewModels/Rest/Controls/eventItemPickerGetEventItemsOptionsBag.d.ts +31 -0
  1124. package/types/ViewModels/Rest/Controls/financialGatewayPickerGetFinancialGatewaysOptionsBag.d.ts +43 -0
  1125. package/types/ViewModels/Rest/Controls/followingGetFollowingOptionsBag.d.ts +45 -0
  1126. package/types/ViewModels/Rest/Controls/followingGetFollowingResponseBag.d.ts +31 -0
  1127. package/types/ViewModels/Rest/Controls/followingSetFollowingOptionsBag.d.ts +48 -0
  1128. package/types/ViewModels/Rest/Controls/geoPickerGetGoogleMapSettingsOptionsBag.d.ts +33 -0
  1129. package/types/ViewModels/Rest/Controls/geoPickerGetSettingsOptionsBag.d.ts +33 -0
  1130. package/types/ViewModels/Rest/Controls/geoPickerGoogleMapSettingsBag.d.ts +43 -0
  1131. package/types/ViewModels/Rest/Controls/geoPickerSettingsBag.d.ts +40 -0
  1132. package/types/ViewModels/Rest/Controls/gradePickerGetGradesOptionsBag.d.ts +34 -0
  1133. package/types/ViewModels/Rest/Controls/groupAndRolePickerGetRolesOptionsBag.d.ts +33 -0
  1134. package/types/ViewModels/Rest/Controls/groupMemberPickerGetGroupMembersOptionsBag.d.ts +33 -0
  1135. package/types/ViewModels/Rest/Controls/groupPickerGetChildrenOptionsBag.d.ts +54 -0
  1136. package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleOptionsBag.d.ts +45 -0
  1137. package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleResultsBag.d.ts +39 -0
  1138. package/types/ViewModels/Rest/Controls/groupRolePickerGetGroupRolesOptionsBag.d.ts +40 -0
  1139. package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupTypeOfGroupOptionsBag.d.ts +33 -0
  1140. package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupsOptionsBag.d.ts +33 -0
  1141. package/types/ViewModels/Rest/Controls/groupTypePickerGetGroupTypesOptionsBag.d.ts +39 -0
  1142. package/types/ViewModels/Rest/Controls/interactionChannelInteractionComponentPickerGetChannelFromComponentOptionsBag.d.ts +33 -0
  1143. package/types/ViewModels/Rest/Controls/interactionComponentPickerGetInteractionComponentsOptionsBag.d.ts +33 -0
  1144. package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +48 -0
  1145. package/types/ViewModels/Rest/Controls/locationListGetLocationsOptionsBag.d.ts +42 -0
  1146. package/types/ViewModels/Rest/Controls/locationListSaveNewLocationOptionsBag.d.ts +52 -0
  1147. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaElementsOptionsBag.d.ts +33 -0
  1148. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaFoldersOptionsBag.d.ts +33 -0
  1149. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeOptionsBag.d.ts +39 -0
  1150. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeResultsBag.d.ts +45 -0
  1151. package/types/ViewModels/Rest/Controls/mergeFieldPickerFormatSelectedValueOptionsBag.d.ts +28 -0
  1152. package/types/ViewModels/Rest/Controls/mergeFieldPickerGetChildrenOptionsBag.d.ts +31 -0
  1153. package/types/ViewModels/Rest/Controls/mergeTemplatePickerGetMergeTemplatesOptionsBag.d.ts +52 -0
  1154. package/types/ViewModels/Rest/Controls/metricCategoryPickerGetChildrenOptionsBag.d.ts +48 -0
  1155. package/types/ViewModels/Rest/Controls/metricItemPickerGetChildrenOptionsBag.d.ts +54 -0
  1156. package/types/ViewModels/Rest/Controls/noteEditorMentionSearchOptionsBag.d.ts +37 -0
  1157. package/types/ViewModels/Rest/Controls/noteEditorMentionSearchResultsBag.d.ts +30 -0
  1158. package/types/ViewModels/Rest/Controls/pagePickerGetChildrenOptionsBag.d.ts +57 -0
  1159. package/types/ViewModels/Rest/Controls/pagePickerGetPageNameOptionsBag.d.ts +42 -0
  1160. package/types/ViewModels/Rest/Controls/pagePickerGetPageRoutesOptionsBag.d.ts +42 -0
  1161. package/types/ViewModels/Rest/Controls/pagePickerGetSelectedPageHierarchyOptionsBag.d.ts +42 -0
  1162. package/types/ViewModels/Rest/Controls/pageRouteValueBag.d.ts +33 -0
  1163. package/types/ViewModels/Rest/Controls/personLinkGetPopupHtmlOptionsBag.d.ts +34 -0
  1164. package/types/ViewModels/Rest/Controls/personPickerSearchOptionsBag.d.ts +49 -0
  1165. package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationOptionsBag.d.ts +28 -0
  1166. package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationResultsBag.d.ts +36 -0
  1167. package/types/ViewModels/Rest/Controls/phoneNumberCountryCodeRulesConfigurationBag.d.ts +31 -0
  1168. package/types/ViewModels/Rest/Controls/racePickerGetRacesResultsBag.d.ts +33 -0
  1169. package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationInstancesOptionsBag.d.ts +33 -0
  1170. package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationTemplateForInstanceOptionsBag.d.ts +33 -0
  1171. package/types/ViewModels/Rest/Controls/registrationTemplatePickerGetChildrenOptionsBag.d.ts +42 -0
  1172. package/types/ViewModels/Rest/Controls/reminderTypePickerGetReminderTypesOptionsBag.d.ts +33 -0
  1173. package/types/ViewModels/Rest/Controls/reportPickerGetChildrenOptionsBag.d.ts +48 -0
  1174. package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountOptionsBag.d.ts +48 -0
  1175. package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountResultBag.d.ts +37 -0
  1176. package/types/ViewModels/Rest/Controls/schedulePickerGetChildrenOptionsBag.d.ts +45 -0
  1177. package/types/ViewModels/Rest/Controls/stepStatusPickerGetStepStatusesOptionsBag.d.ts +33 -0
  1178. package/types/ViewModels/Rest/Controls/stepTypePickerGetStepTypesOptionsBag.d.ts +33 -0
  1179. package/types/ViewModels/Rest/Controls/structuredContentEditorConfigurationBag.d.ts +31 -0
  1180. package/types/ViewModels/Rest/Controls/structuredContentEditorGetConfigurationOptionsBag.d.ts +33 -0
  1181. package/types/ViewModels/Rest/Controls/workflowActionTypePickerGetChildrenOptionsBag.d.ts +40 -0
  1182. package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowTypeForWorkflowOptionsBag.d.ts +36 -0
  1183. package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowsOptionsBag.d.ts +36 -0
  1184. package/types/ViewModels/Rest/Controls/workflowTypePickerGetWorkflowTypesOptionsBag.d.ts +90 -0
  1185. package/types/ViewModels/Rest/Utilities/updatePersonPreferencesAccessedOptionsBag.d.ts +34 -0
  1186. package/types/ViewModels/Rest/Utilities/updatePersonPreferencesOptionsBag.d.ts +31 -0
  1187. package/types/ViewModels/Utility/debugTiming.d.ts +32 -0
  1188. package/types/ViewModels/Utility/entityAuditBag.d.ts +54 -0
  1189. package/types/ViewModels/Utility/listItemBag.d.ts +37 -0
  1190. package/types/ViewModels/Utility/publicAttributeBag.d.ts +64 -0
  1191. package/types/ViewModels/Utility/publicAttributeCategoryBag.d.ts +40 -0
  1192. package/types/ViewModels/Utility/publicComparisonValueBag.d.ts +31 -0
  1193. package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +123 -0
  1194. package/types/ViewModels/Utility/taskActivityProgressLogBag.d.ts +31 -0
  1195. package/types/ViewModels/Utility/taskActivityProgressStatusBag.d.ts +52 -0
  1196. package/types/ViewModels/Utility/taskActivityProgressUpdateBag.d.ts +37 -0
  1197. package/types/ViewModels/Utility/timeInterval.d.ts +27 -0
  1198. package/types/ViewModels/Utility/timeIntervalBag.d.ts +31 -0
  1199. package/types/ViewModels/Utility/treeItemBag.d.ts +57 -0
  1200. package/types/ViewModels/Utility/validPropertiesBox.d.ts +31 -0
  1201. package/types/ViewModels/entity.d.ts +24 -0
  1202. package/types/ViewModels/index.d.ts +22 -0
@@ -0,0 +1,30 @@
1
+ import { ValueDetailListItem } from "@Obsidian/Types/Controls/valueDetailListItem";
2
+ /**
3
+ * Class that provides some convenience methods to building an array of
4
+ * ValueDetailListItem objects for use in the valueDetailList control.
5
+ */
6
+ export declare class ValueDetailListItemBuilder {
7
+ private values;
8
+ /**
9
+ * Add a new field value with a plain text value. The text value will be
10
+ * escaped so it is safe to use HTML characters.
11
+ *
12
+ * @param title The title of the field to be displayed.
13
+ * @param text The text value to be displayed.
14
+ */
15
+ addTextValue(title: string, text: string): void;
16
+ /**
17
+ * Add a new field value with a formatted HTML value. The HTML content
18
+ * will not be escaped so you must ensure it is valid HTML.
19
+ *
20
+ * @param title The title of the field to be displayed.
21
+ * @param html The text value to be displayed.
22
+ */
23
+ addHtmlValue(title: string, html: string): void;
24
+ /**
25
+ * Builds the values to be displayed.
26
+ *
27
+ * @returns An array of ValueDetailListItem objects containing the items to display.
28
+ */
29
+ build(): ValueDetailListItem[];
30
+ }
@@ -0,0 +1,92 @@
1
+ import { IPersonPreferenceCollection } from "@Obsidian/Types/Core/personPreferences";
2
+ import { PersonPreferenceValueBag } from "@Obsidian/ViewModels/Core/personPreferenceValueBag";
3
+ /**
4
+ * The primary class to use when accessing person preferences. This handles
5
+ * all the logic of last accessed tracking as well as properly saving and
6
+ * updating preferences values.
7
+ *
8
+ * @private This is an internal implementation and should not be used directly
9
+ * by plugins.
10
+ */
11
+ export declare class PersonPreferenceCollection implements IPersonPreferenceCollection {
12
+ /** The entity type key that we have been scoped to. */
13
+ readonly entityTypeKey?: string;
14
+ /** The entity key that we have been scoped to. */
15
+ readonly entityKey?: string;
16
+ /**
17
+ * The prefix that will be prepended to any keys passed to us by the
18
+ * caller.
19
+ */
20
+ readonly prefix: string;
21
+ /**
22
+ * Will be `true` if this is a completely anonymous page load. In other
23
+ * words, updates and saves will not be performed.
24
+ */
25
+ readonly anonymous: boolean;
26
+ /**
27
+ * The preferences and values we know about. Dictionary key is the
28
+ * prefixed preference key.
29
+ */
30
+ preferences: Record<string, PersonPreferenceValueBag>;
31
+ /**
32
+ * A list of prefixed preference keys that have had their values updated.
33
+ */
34
+ updatedKeys: string[];
35
+ /**
36
+ * A list of prefixed preference keys that need to have their last
37
+ * accessed timestamp updated.
38
+ */
39
+ accessedKeys: string[];
40
+ /**
41
+ * The timer that has been scheduled for updating the last accessed
42
+ * timestamps for any keys that were viewed.
43
+ */
44
+ updateAccessedTimer?: number;
45
+ /**
46
+ * Creates an empty collection that will not be saved to the database.
47
+ */
48
+ constructor();
49
+ /**
50
+ * Creates a new collection of person preferences. This instance will handle
51
+ * all the saving and last-accessed tracking logic.
52
+ *
53
+ * @param entityTypeKey The entity type key that these preferences are scoped to.
54
+ * @param entityKey The entity key that these preferences are scoped to.
55
+ * @param prefix The additional prefix that will be applied. This should not include the standard `block-##-` prefix.
56
+ * @param anonymous If `true` then this will be considered an anonymous request and no saves will be performed.
57
+ * @param preferences The preferences to initialize the collection with.
58
+ */
59
+ constructor(entityTypeKey: string | undefined, entityKey: string | undefined, prefix: string, anonymous: boolean, preferences: PersonPreferenceValueBag[]);
60
+ getValue(key: string): string;
61
+ setValue(key: string, value: string): void;
62
+ getKeys(): string[];
63
+ containsKey(key: string): boolean;
64
+ save(): Promise<void>;
65
+ withPrefix(prefix: string): IPersonPreferenceCollection;
66
+ /**
67
+ * Gets the prefixed key. This is used during updates. It includes any
68
+ * user defined prefix, but not the standard entity type prefixes.
69
+ *
70
+ * @param key The key that should be prefixed with our standard prefix.
71
+ *
72
+ * @returns A new key that has been prefixed.
73
+ */
74
+ private getPrefixedKey;
75
+ /**
76
+ * Performs the actual update by calling the API on the server.
77
+ *
78
+ * @param updatedKeys The keys that have been updated.
79
+ */
80
+ private saveUpdatedKeys;
81
+ /**
82
+ * Updates the last accessed time stamps for all the keys that have been
83
+ * accessed.
84
+ */
85
+ private updateAccessedKeys;
86
+ /**
87
+ * Performs the actual API call to note that we accessed some keys.
88
+ *
89
+ * @param accessedKeys The keys that have been accessed.
90
+ */
91
+ private postAccessedKeys;
92
+ }
@@ -0,0 +1,39 @@
1
+ import { FilterMode } from "./filterMode";
2
+ import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
3
+ /** The comparison types typically used for simple binary comparison. */
4
+ export declare const binaryComparisonTypes: ComparisonType;
5
+ /** The comparison types typically used for string-type values. */
6
+ export declare const stringComparisonTypes: ComparisonType;
7
+ /** The comparison types typically used for multiple choice values. */
8
+ export declare const containsComparisonTypes: ComparisonType;
9
+ /** The comparison types typically used for numeric values. */
10
+ export declare const numericComparisonTypes: ComparisonType;
11
+ /** The comparison types typically used for date values. */
12
+ export declare const dateComparisonTypes: ComparisonType;
13
+ /**
14
+ * Gets the user friendly name for the comparison type.
15
+ *
16
+ * @param type The type of comparison.
17
+ *
18
+ * @returns A string containing the name of the comparison.
19
+ */
20
+ export declare function getComparisonName(type: ComparisonType): string;
21
+ /**
22
+ * Checks if the standard comparison type component should be visible or not for
23
+ * the given comparison type options and filter mode.
24
+ *
25
+ * @param comparisonType The comparison types available to be selected.
26
+ * @param filterMode The type of filtering UI to show.
27
+ *
28
+ * @returns true if the comparison type component should be visible; otherwise false.
29
+ */
30
+ export declare function isCompareVisibleForComparisonFilter(comparisonType: ComparisonType, filterMode: FilterMode): boolean;
31
+ /**
32
+ * Determines if this comparision type specifies one and only one type. This
33
+ * uses bitwise logic to ensure that only a single bit is set.
34
+ *
35
+ * @param comparisionType The comparison type to check.
36
+ *
37
+ * @returns true if the comparison type specifies one and only one type.
38
+ */
39
+ export declare function isSingleComparisonType(comparisionType: ComparisonType): boolean;
@@ -0,0 +1,14 @@
1
+ import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
2
+ import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
3
+ /**
4
+ * The full list of comparison type options that can be used in pickers.
5
+ */
6
+ export declare const comparisonTypeOptions: ListItemBag[];
7
+ /**
8
+ * Gets the comparison type options that match the provides comparison type values.
9
+ *
10
+ * @param comparisonTypes The comparison type values to include in the list of options.
11
+ *
12
+ * @returns A filtered collection of ListItem objects that contain only the comparison types specified.
13
+ */
14
+ export declare function getFilteredComparisonTypeOptions(...comparisonTypes: ComparisonType[]): ListItemBag[];
@@ -0,0 +1,28 @@
1
+ /**
2
+ * The type of filter expressions that can be used when building filtering rules.
3
+ */
4
+ export declare enum FilterExpressionType {
5
+ /** Simple expression filter. */
6
+ Filter = 0,
7
+ /**
8
+ * A collection of expressions/conditions that all must match. Expressions
9
+ * are "and'd" together.
10
+ */
11
+ GroupAll = 1,
12
+ /**
13
+ * A collection of expressions/conditions where at least one must match.
14
+ * Expressions are "or'd" together.
15
+ */
16
+ GroupAny = 2,
17
+ /**
18
+ * A collection of expressions/conditions where all must be false. Expressions
19
+ * are combined using a logical OR and the group result must be FALSE.
20
+ */
21
+ GroupAllFalse = 3,
22
+ /**
23
+ * A collection of expressions/conditions where at least one must be false.
24
+ * Expressions are combined using a logical AND and the group result must
25
+ * be FALSE.
26
+ */
27
+ GroupAnyFalse = 4
28
+ }
@@ -0,0 +1,7 @@
1
+ /** The type of filter mode to use when choosing which components to display. */
2
+ export declare enum FilterMode {
3
+ /** A simple filter editor should be used, with a minimal UI. */
4
+ Simple = 0,
5
+ /** A more advanced editor should be used that provides all available options. */
6
+ Advanced = 1
7
+ }
@@ -0,0 +1,25 @@
1
+ import { RockColor } from "./rockColor";
2
+ /**
3
+ * Pair of colors representing the foreground and background colors.
4
+ */
5
+ export declare class ColorPair {
6
+ /** The foreground color. */
7
+ foregroundColor: RockColor;
8
+ /** The background color. */
9
+ backgroundColor: RockColor;
10
+ /**
11
+ * The contrast ratio between the foreground and background colors.
12
+ */
13
+ get contrastRatio(): number;
14
+ /**
15
+ * Creates a new pair of colors from the given colors.
16
+ *
17
+ * @param foregroundColor The foreground color.
18
+ * @param backgroundColor The background color.
19
+ */
20
+ constructor(foregroundColor: RockColor, backgroundColor: RockColor);
21
+ /**
22
+ * Flips the foreground and background colors.
23
+ */
24
+ flip(): void;
25
+ }
@@ -0,0 +1,270 @@
1
+ import { ColorPair } from "./colorPair";
2
+ import { ColorScheme } from "@Obsidian/Enums/Core/colorScheme";
3
+ import { ColorRecipe } from "@Obsidian/Enums/Core/colorRecipe";
4
+ /**
5
+ * Utility class for color manipulation.
6
+ */
7
+ export declare class RockColor {
8
+ private readonly rgbInternal;
9
+ private alphaInternal;
10
+ private hueInternal;
11
+ private saturationInternal;
12
+ private luminosityInternal;
13
+ private textInternal?;
14
+ /**
15
+ * Gets or sets the Alpha level. This will be between 0 and 1.
16
+ */
17
+ get alpha(): number;
18
+ set alpha(value: number);
19
+ /**
20
+ * Gets or sets the Red value of the color. This will be between 0 and 255.
21
+ */
22
+ get r(): number;
23
+ set r(value: number);
24
+ /**
25
+ * Gets or sets the Green value of the color. This will be between 0 and 255.
26
+ */
27
+ get g(): number;
28
+ set g(value: number);
29
+ /**
30
+ * Gets or sets the Blue value of the color. This will be between 0 and 255.
31
+ */
32
+ get b(): number;
33
+ set b(value: number);
34
+ /**
35
+ * Calculates the luma value based on the W3 Standard.
36
+ */
37
+ get luma(): number;
38
+ /**
39
+ * Gets or sets the hue of the color.
40
+ */
41
+ get hue(): number;
42
+ set hue(value: number);
43
+ /**
44
+ * Gets or sets the saturation of the color.
45
+ */
46
+ get saturation(): number;
47
+ set saturation(value: number);
48
+ /**
49
+ * Gets or sets the luminosity of the color.
50
+ */
51
+ get luminosity(): number;
52
+ set luminosity(value: number);
53
+ /**
54
+ * Gets the color as a hexadecimal string, including the leading `#`.
55
+ */
56
+ get hex(): string;
57
+ /**
58
+ * Determines if the color is a light color.
59
+ */
60
+ get isLight(): boolean;
61
+ /**
62
+ * Determines if the color is a dark color.
63
+ */
64
+ get isDark(): boolean;
65
+ constructor(color: string);
66
+ constructor(rgb: number[]);
67
+ constructor(rgb: number[], alpha: number);
68
+ constructor(rgb: number[], alpha: number, text: string);
69
+ constructor(color: number);
70
+ constructor(red: number, green: number, blue: number);
71
+ constructor(red: number, green: number, blue: number, alpha: number);
72
+ constructor(red: number, green: number, blue: number, alpha?: number, text?: string);
73
+ /**
74
+ * Creates this instance from the specified number value. This is a numeric
75
+ * representation such as 0x112233.
76
+ *
77
+ * @param color The color has a number value.
78
+ */
79
+ private constructFromSingleNumber;
80
+ /**
81
+ * Creates this instance from the specified text value. This can be either
82
+ * a `#` hex value, an `rgba` value, an `rgb` value or a named HTML color.
83
+ *
84
+ * @param color The string that represents the color.
85
+ */
86
+ private constructFromString;
87
+ /**
88
+ * Creates this instance from the specified RGB and alpha values.
89
+ *
90
+ * @param rgb The RGB components, this must always have 3 components.
91
+ * @param alpha The alpha value to assign.
92
+ */
93
+ private constructFromRgb;
94
+ /**
95
+ * Updates the HSL values of the color from the RGB values.
96
+ */
97
+ private updateHslFromRgb;
98
+ /**
99
+ * Updates the RGB values of the color from the HSL values.
100
+ */
101
+ private updateRgbFromHsl;
102
+ /**
103
+ * Gets the {@link RockColor} that corresponds to the HTML color keyword.
104
+ *
105
+ * @param keyword The HTML color keyword.
106
+ *
107
+ * @returns An instance of {@link RockColor} that represents the color or `null` if not found.
108
+ */
109
+ static getColorFromKeyword(keyword: string): RockColor | null;
110
+ /**
111
+ * Calculates the contrast ratio between two colors.
112
+ *
113
+ * @param color1 The first color.
114
+ * @param color2 The second color.
115
+ *
116
+ * @returns A number that represents the contrast ratio between the two colors.
117
+ */
118
+ static calculateContrastRatio(color1: RockColor, color2: RockColor): number;
119
+ /**
120
+ * Creates a color pair from a single color with logic for light and
121
+ * dark modes.
122
+ *
123
+ * @param color The base color to use when creating the color pair.
124
+ * @param colorScheme The color scheme the color will be used in.
125
+ *
126
+ * @returns A new instance of {@link ColorPair}.
127
+ */
128
+ static calculateColorPair(color: RockColor, colorScheme?: ColorScheme): ColorPair;
129
+ /**
130
+ * Creates a recipe color from the provided color.
131
+ *
132
+ * @param color The base color to calculate the new color from.
133
+ * @param recipe The recipe to use when calculating the new color.
134
+ *
135
+ * @returns A new instance of {@link RockColor}.
136
+ */
137
+ static calculateColorRecipe(color: RockColor, recipe: ColorRecipe): RockColor;
138
+ /**
139
+ * Lightens the color by the provided percentage.
140
+ *
141
+ * @param percentage The percentage amount to lighten the color as a number between 0 and 100.
142
+ */
143
+ lighten(percentage: number): void;
144
+ /**
145
+ * Darkens the color by the provided percentage.
146
+ *
147
+ * @param percentage The percentage amount to darken the color as a number between 0 and 100.
148
+ */
149
+ darken(percentage: number): void;
150
+ /**
151
+ * Saturates the color by the provided percentage.
152
+ *
153
+ * @param percentage The percentage amount to saturate the color as a number between 0 and 100.
154
+ */
155
+ saturate(percentage: number): void;
156
+ /**
157
+ * Desaturates the color by the provided percentage.
158
+ *
159
+ * @param percentage The percentage amount to desaturate the color as a number between 0 and 100.
160
+ */
161
+ desaturate(percentage: number): void;
162
+ /**
163
+ * Increases the opacity level by the given percentage. This makes the
164
+ * color less transparent and more opaque.
165
+ *
166
+ * @param percentage The percentage amount to adjust the alpha as a number between 0 and 100.
167
+ */
168
+ fadeIn(percentage: number): void;
169
+ /**
170
+ * Decreases the opacity level by the given percentage. This makes the
171
+ * color more transparent and less opaque.
172
+ *
173
+ * @param percentage The percentage amount to adjust the alpha as a number between 0 and 100.
174
+ */
175
+ fadeOut(percentage: number): void;
176
+ /**
177
+ * Adjusts the hue by the specified percentage.
178
+ *
179
+ * @param percentage The percentage to adjust the hue by as a value between -100 and 100.
180
+ */
181
+ adjustHueByPercent(percentage: number): void;
182
+ /**
183
+ * Adjusts the hue by the specified number of degrees.
184
+ *
185
+ * @param degrees The number of degrees to adjust the hue by as a value between -360 and 360.
186
+ */
187
+ adjustHueByDegrees(degrees: number): void;
188
+ /**
189
+ * Tints the specified percentage amount. This mixes this color with white
190
+ * by the percentage.
191
+ *
192
+ * @param percentage The percentage amount as a value between 0 and 100.
193
+ */
194
+ tint(percentage: number): void;
195
+ /**
196
+ * Shades the specified percentage amount. This mixes this color with black
197
+ * by the percentage.
198
+ *
199
+ * @param percentage The percentage amount as a value between 0 and 100.
200
+ */
201
+ shade(percentage: number): void;
202
+ /**
203
+ * Mixes the specified color into the current color with an optional
204
+ * percentage amount.
205
+ *
206
+ * @param mixColor The color to be mixed into this color.
207
+ * @param percentage The percentage amount to be mixed as a value between 0 and 100. Defaults to 50.
208
+ */
209
+ mix(mixColor: RockColor, percentage?: number): void;
210
+ /**
211
+ * Turns the color to it's grayscale value.
212
+ */
213
+ grayscale(): void;
214
+ /**
215
+ * Creates a clone of this color.
216
+ *
217
+ * @returns A new instance that has the same color values as this instance.
218
+ */
219
+ clone(): RockColor;
220
+ /**
221
+ * Converts the current color to a CSS `rgba` string format.
222
+ *
223
+ * @returns A string representation of the color.
224
+ */
225
+ toRgba(): string;
226
+ /**
227
+ * Converts the current color to an HTML hexadecimal `#rrggbbaa` string
228
+ * format. If the alpha value is 1 then the "aa" component will not be
229
+ * included.
230
+ *
231
+ * @returns Hexadecimal version of the color.
232
+ */
233
+ toHex(): string;
234
+ /**
235
+ * Gets a numeric value representing this color. If two colors have the
236
+ * same RGB and Alpha values then they will return the same value here.
237
+ *
238
+ * @returns A numeric value that represents this unique color.
239
+ */
240
+ valueOf(): number;
241
+ /**
242
+ * Compares this color against another color to see which one has a higher
243
+ * value.
244
+ *
245
+ * @param otherColor The other color to compare this color to.
246
+ *
247
+ * @returns `0` if both colors are the same, `-1` if this color is less than the other color and `1` if this color is greater than the other color.
248
+ */
249
+ compareTo(otherColor: RockColor | undefined | null): number;
250
+ /**
251
+ * Determines if two colors are similar.
252
+ *
253
+ * @param otherColor The other color to compare this color to.
254
+ * @param similarityPercent The minimum percentage to consider the colors similar. This will be between 0 and 1 (defaults to 0.95).
255
+ * @returns `true` if the colors are N percent similar, where N is the `similarityPercentage`; otherwise, returns `false`.
256
+ * @example
257
+ * // this = new RockColor("#FFF")
258
+ * this.isSimilarTo(new RockColor("#FFE"), 0.95) // `true`, color similarity >= 95%
259
+ * this.isSimilarTo(new RockColor("#FFE"), 0.99) // `false`, color similarity < 99%
260
+ * this.isSimilarTo(new RockColor("#FFE"), 1) // `false`, color similarity != 100%
261
+ * this.isSimilarTo(new RockColor("#FFF"), 1) // `true`, color similarity = 100%
262
+ */
263
+ isSimilarTo(otherColor: RockColor, similarityPercent?: number): boolean;
264
+ /**
265
+ * Gets the sRGB value of this color.
266
+ *
267
+ * @returns This color in the standard RGB color space.
268
+ */
269
+ private toStandardRgb;
270
+ }
@@ -0,0 +1,130 @@
1
+ import { Directive, Ref } from "vue";
2
+ /**
3
+ * The options that can be used when defining a drag source for a drag and
4
+ * drop operation.
5
+ */
6
+ export interface IDragSourceOptions {
7
+ /**
8
+ * The unique identifier for this drag drop connection. This should match
9
+ * the id used for drag targets.
10
+ */
11
+ id: string;
12
+ /**
13
+ * Defines the query selector that specifies which elements may act as drag
14
+ * handles. By default all elements are allowed. This value will be ignored
15
+ * if you defined a value for canStartDrag.
16
+ */
17
+ handleSelector?: string;
18
+ /**
19
+ * Defines the container element that dragged mirror elements will be added
20
+ * to. If not set then the body element is used. This property is dynamic and
21
+ * can be updated on the fly. It will be used anytime a drag operation is
22
+ * about to begin.
23
+ */
24
+ mirrorContainer?: Element;
25
+ /**
26
+ * true if elements are duplicated and instead of the original being moved.
27
+ */
28
+ copyElement?: boolean | ((operation: DragOperation) => boolean);
29
+ /**
30
+ * Function that returns true if the element can start dragging.
31
+ */
32
+ startDrag?: (operation: DragOperation, handle: Element) => boolean;
33
+ /**
34
+ * Function that returns true if the element being dragged can be dropped
35
+ * on the target.
36
+ */
37
+ acceptDrop?: (operation: DragOperation) => boolean;
38
+ /**
39
+ * Called when a drag operation has successfully started.
40
+ */
41
+ dragBegin?: (operation: DragOperation) => void;
42
+ /**
43
+ * Called when a drag operation has ended for any reason.
44
+ */
45
+ dragEnd?: (operation: DragOperation) => void;
46
+ /**
47
+ * Called when a drag operation has successfully completed.
48
+ */
49
+ dragDrop?: (operation: DragOperation) => void;
50
+ /**
51
+ * Called when the drag operation was cancelled, usually because it was dropped
52
+ * outside of a valid container.
53
+ */
54
+ dragCancel?: (operation: DragOperation) => void;
55
+ /**
56
+ * Called when a drag operation has moved over the specified valid target
57
+ * container.
58
+ */
59
+ dragOver?: (operation: DragOperation) => void;
60
+ /**
61
+ * Called when a drag operation has moved out of the specified container (or
62
+ * was dropped into it).
63
+ */
64
+ dragOut?: (operation: DragOperation) => void;
65
+ /**
66
+ * Called when a drag operation has created, or positioned, the shadow element
67
+ * that is being displayed in the target container.
68
+ */
69
+ dragShadow?: (operation: DragOperation) => void;
70
+ }
71
+ /**
72
+ * The options that can be used when defining a drag target for a drag and
73
+ * drop operation.
74
+ */
75
+ export interface IDragTargetOptions {
76
+ id: string;
77
+ }
78
+ /**
79
+ * Details about a drag operation that is in progress.
80
+ */
81
+ export declare type DragOperation = {
82
+ /** The element that is being dragged. */
83
+ element: Element;
84
+ /** The shadow element that is currently displayed in the target container. */
85
+ shadow?: Element;
86
+ /** The container that the element is originally from. */
87
+ sourceContainer: Element;
88
+ /** The index position in the sourceContainer for the element. */
89
+ sourceIndex: number;
90
+ /** The next sibling after the element before the drag operation started. */
91
+ sourceSibling?: Element;
92
+ /** The target container the element is hovering over or being dropped into. */
93
+ targetContainer?: Element;
94
+ /** The index position in the targetContainer. */
95
+ targetIndex?: number;
96
+ /** The next sibling the element is hovering or being dropped before. */
97
+ targetSibling?: Element;
98
+ };
99
+ /**
100
+ * Defines the source of a drag and drop operation.
101
+ *
102
+ * When using a v-for to display the items, ensure you use a unique :key. Otherwise
103
+ * when you .splice() after a drop weird things will happen.
104
+ */
105
+ export declare const DragSource: Directive<HTMLElement, IDragSourceOptions>;
106
+ /**
107
+ * Defines the target of a drag and drop operation.
108
+ *
109
+ * When using a v-for to display the items, ensure you use a unique :key. Otherwise
110
+ * when you .splice() after a drop weird things will happen.
111
+ */
112
+ export declare const DragTarget: Directive<HTMLElement, string | IDragTargetOptions>;
113
+ /**
114
+ * Defines the source and target of a drag and drop reorder operation.
115
+ *
116
+ * When using a v-for to display the items, ensure you use a unique :key. Otherwise
117
+ * when you .splice() after a drop weird things will happen.
118
+ */
119
+ export declare const DragReorder: Directive<HTMLElement, IDragSourceOptions>;
120
+ /**
121
+ * Get the drag source options for re-ordering the sections. This allows the user
122
+ * to drag and drop existing sections to move them around the form. The contents
123
+ * of the array are modified to match the new order.
124
+ *
125
+ * @param values The values that can be reordered.
126
+ * @param reorder The function to call when items have been reordered.
127
+ *
128
+ * @returns The IDragSourceOptions object to use for the DragReorder directive.
129
+ */
130
+ export declare function useDragReorder<T>(values: Ref<T[] | undefined | null>, reorder?: ((value: T, beforeValue: T | null) => void | Promise<void> | boolean | Promise<boolean>)): IDragSourceOptions;
@@ -0,0 +1,28 @@
1
+ import { Directive } from "vue";
2
+ /**
3
+ * The options that can be used when defining a drag scroll instance.
4
+ */
5
+ export interface IDragScrollOptions {
6
+ /** The unique identifier for this drag scroll instance. Recommended to be a Guid. */
7
+ id: string;
8
+ }
9
+ /**
10
+ * A directive to enable "drag-scroll" behavior for the host element.
11
+ *
12
+ * If the host element itself is not scrollable in the X or Y direction, its ancestors will be searched
13
+ * to find the first one that is scrollable in each direction.
14
+ *
15
+ * The following [mouse button] modifiers may be used:
16
+ * "left"
17
+ * "middle"
18
+ * "right"
19
+ */
20
+ export declare const DragScroll: Directive<HTMLElement, IDragScrollOptions>;
21
+ /**
22
+ * A directive to disable "drag-scroll" behavior for the host element and its descendants.
23
+ *
24
+ * Use this directive on any descendants of an element that has the `DragScroll` directive applied,
25
+ * in order to opt-out of the "drag-scroll" behavior if this element (or any of its descendants)
26
+ * are the target of the `MouseEvent`.
27
+ */
28
+ export declare const NoDragScroll: Directive<HTMLElement>;
@@ -0,0 +1,13 @@
1
+ /** The role of the message for a chat completion. */
2
+ export declare const ChatMessageRole: {
3
+ /** Represents the message sent by the user, which usually includes questions, statements, or conversation prompts. */
4
+ readonly User: 0;
5
+ /** Represents a system instruction or directive, usually setting the context or providing guidelines for the AI's behavior in the conversation. */
6
+ readonly System: 1;
7
+ /** Represents the response generated by the AI model, in reply to the user's message or following the system instructions. */
8
+ readonly Assistant: 2;
9
+ };
10
+ /** The role of the message for a chat completion. */
11
+ export declare const ChatMessageRoleDescription: Record<number, string>;
12
+ /** The role of the message for a chat completion. */
13
+ export declare type ChatMessageRole = typeof ChatMessageRole[keyof typeof ChatMessageRole];