@rockrms/obsidian-framework 1.16.5-rc.1 → 1.16.6-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 (841) hide show
  1. package/LICENSE.md +55 -55
  2. package/package.json +1 -1
  3. package/types/Controls/Grid/Cells/buttonCell.partial.obs.d.ts +2 -0
  4. package/types/Controls/Grid/Cells/highlightDetailCell.partial.obs.d.ts +2 -0
  5. package/types/Controls/Grid/Cells/highlightDetailSkeletonCell.partial.obs.d.ts +2 -0
  6. package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +9 -0
  7. package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +18 -0
  8. package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +206 -0
  9. package/types/Controls/Grid/Columns/column.partial.d.ts +55 -36
  10. package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +18 -0
  11. package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +18 -0
  12. package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +18 -0
  13. package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +18 -0
  14. package/types/Controls/Grid/Columns/dynamicColumns.partial.d.ts +104 -0
  15. package/types/Controls/Grid/Columns/editColumn.partial.d.ts +18 -0
  16. package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +204 -0
  17. package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +18 -0
  18. package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +18 -0
  19. package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +18 -0
  20. package/types/Controls/Grid/Columns/personColumn.partial.d.ts +27 -1
  21. package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +18 -0
  22. package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +18 -0
  23. package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +18 -0
  24. package/types/Controls/Grid/Columns/textColumn.partial.d.ts +18 -0
  25. package/types/Controls/Grid/dataRows.partial.obs.d.ts +11 -0
  26. package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +37 -0
  27. package/types/Controls/Grid/grid.partial.obs.d.ts +83 -0
  28. package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +11 -0
  29. package/types/Controls/baseAsyncPicker.obs.d.ts +8 -18
  30. package/types/Controls/buttonDropDownList.obs.d.ts +2 -2
  31. package/types/Controls/campusAccountAmountPicker.obs.d.ts +0 -2
  32. package/types/Controls/contentChannelItemPicker.obs.d.ts +12 -8
  33. package/types/Controls/currencyBox.obs.d.ts +15 -1
  34. package/types/Controls/dropDownList.obs.d.ts +18 -0
  35. package/types/Controls/fieldFilterEditor.obs.d.ts +22 -0
  36. package/types/Controls/fieldFilterRuleRow.obs.d.ts +24 -1
  37. package/types/Controls/grid.d.ts +27 -4
  38. package/types/Controls/groupAndRolePicker.obs.d.ts +8 -6
  39. package/types/Controls/groupRolePicker.obs.d.ts +10 -12
  40. package/types/Controls/imageUploader.obs.d.ts +18 -0
  41. package/types/Controls/mediaElementPicker.obs.d.ts +2 -2
  42. package/types/Controls/noteTextEditor.obs.d.ts +0 -6
  43. package/types/Controls/numberBox.obs.d.ts +11 -0
  44. package/types/Controls/phoneNumberBox.obs.d.ts +2 -2
  45. package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +2 -2
  46. package/types/Controls/registryEntry.obs.d.ts +8 -2
  47. package/types/Controls/reminderTypePicker.obs.d.ts +2 -2
  48. package/types/Controls/rockButton.obs.d.ts +9 -0
  49. package/types/Controls/saveFinancialAccountForm.obs.d.ts +11 -1
  50. package/types/Controls/textBox.obs.d.ts +11 -0
  51. package/types/Controls/toggle.obs.d.ts +1 -1
  52. package/types/Controls/valueList.obs.d.ts +9 -0
  53. package/types/Core/Controls/grid.d.ts +1 -1
  54. package/types/Core/Reporting/fieldFilter.d.ts +22 -0
  55. package/types/Core/Utilities/domUtils.d.ts +12 -0
  56. package/types/Enums/CheckIn/Labels/barcodeFormat.d.ts +11 -0
  57. package/types/Enums/CheckIn/Labels/ditherMode.d.ts +16 -0
  58. package/types/Enums/CheckIn/Labels/horizontalTextAlignment.d.ts +13 -0
  59. package/types/Enums/CheckIn/Labels/labelFieldType.d.ts +31 -0
  60. package/types/Enums/CheckIn/Labels/labelFormat.d.ts +14 -0
  61. package/types/Enums/CheckIn/Labels/labelType.d.ts +24 -0
  62. package/types/Enums/CheckIn/Labels/textCollectionFormat.d.ts +19 -0
  63. package/types/Enums/CheckIn/Labels/textFieldSubType.d.ts +15 -0
  64. package/types/Enums/CheckIn/abilityLevelDeterminationMode.d.ts +25 -0
  65. package/types/Enums/CheckIn/autoSelectMode.d.ts +18 -0
  66. package/types/Enums/CheckIn/familySearchMode.d.ts +21 -0
  67. package/types/Enums/CheckIn/kioskCheckInMode.d.ts +11 -0
  68. package/types/Enums/CheckIn/phoneSearchMode.d.ts +11 -0
  69. package/types/Enums/CheckIn/successLavaTemplateDisplayMode.d.ts +13 -0
  70. package/types/Enums/Cms/blockReloadMode.d.ts +22 -0
  71. package/types/Enums/Cms/mobilePageType.d.ts +13 -0
  72. package/types/Enums/Cms/siteTypeFlags.d.ts +30 -0
  73. package/types/Enums/Configuration/databasePlatform.d.ts +24 -0
  74. package/types/Enums/Controls/slidingDateRangeType.d.ts +1 -1
  75. package/types/Enums/Crm/ageBracket.d.ts +9 -9
  76. package/types/Enums/Group/relationshipTrend.d.ts +13 -0
  77. package/types/Enums/Lms/assignTo.d.ts +5 -5
  78. package/types/Enums/Lms/availableDateCalculationMethod.d.ts +9 -9
  79. package/types/Enums/Lms/communicationMode.d.ts +13 -0
  80. package/types/Enums/Lms/completionStatus.d.ts +3 -3
  81. package/types/Enums/Lms/configurationMode.d.ts +2 -2
  82. package/types/Enums/Lms/dueDateCalculationMethod.d.ts +7 -7
  83. package/types/Enums/Lms/learningCompletionStatus.d.ts +3 -3
  84. package/types/Enums/Lms/requirementType.d.ts +3 -3
  85. package/types/Enums/Reporting/comparisonType.d.ts +32 -37
  86. package/types/Enums/Reporting/fieldFilterSourceType.d.ts +2 -0
  87. package/types/FieldTypes/campusField.partial.d.ts +2 -1
  88. package/types/FieldTypes/campusesFieldComponents.d.ts +4 -2
  89. package/types/FieldTypes/colorSelectorComponents.d.ts +2 -16
  90. package/types/FieldTypes/communicationPreferenceFieldComponents.d.ts +2 -16
  91. package/types/FieldTypes/definedValueField.partial.d.ts +1 -1
  92. package/types/FieldTypes/mediaSelectorFieldComponents.d.ts +4 -4
  93. package/types/FieldTypes/ratingFieldComponents.d.ts +8 -0
  94. package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
  95. package/types/FieldTypes/universalItemTreePickerFieldComponents.d.ts +12 -4
  96. package/types/FieldTypes/valueListFieldComponents.d.ts +4 -7
  97. package/types/SystemGuids/binaryFiletype.d.ts +2 -0
  98. package/types/SystemGuids/category.d.ts +4 -0
  99. package/types/SystemGuids/definedType.d.ts +8 -0
  100. package/types/SystemGuids/entityType.d.ts +30 -0
  101. package/types/SystemGuids/groupType.d.ts +2 -0
  102. package/types/SystemGuids/interactionChannel.d.ts +2 -0
  103. package/types/SystemGuids/serviceJob.d.ts +13 -0
  104. package/types/Templates/rockBlock.partial.d.ts +2 -2
  105. package/types/Templates/rockPage.d.ts +13 -1
  106. package/types/Types/Controls/autocomplete.d.ts +29 -29
  107. package/types/Types/Controls/datePartsPicker.d.ts +5 -5
  108. package/types/Types/Controls/dateRangePicker.d.ts +4 -4
  109. package/types/Types/Controls/dropDownMenu.d.ts +33 -33
  110. package/types/Types/Controls/geo.d.ts +58 -58
  111. package/types/Types/Controls/grid.d.ts +931 -897
  112. package/types/Types/Controls/itemsWithPreAndPostHtml.d.ts +5 -5
  113. package/types/Types/Controls/keyValueItem.d.ts +21 -21
  114. package/types/Types/Controls/numberRangeBox.d.ts +10 -10
  115. package/types/Types/Controls/numberUpDownGroup.d.ts +6 -6
  116. package/types/Types/Controls/panelAction.d.ts +47 -47
  117. package/types/Types/Controls/progressTracker.d.ts +6 -6
  118. package/types/Types/Controls/valueDetailListItem.d.ts +32 -32
  119. package/types/Types/Core/personPreferences.d.ts +120 -120
  120. package/types/Types/Reporting/comparisonValue.d.ts +28 -28
  121. package/types/Types/Utility/block.d.ts +42 -42
  122. package/types/Types/Utility/browserBus.d.ts +58 -0
  123. package/types/Types/Utility/component.d.ts +29 -29
  124. package/types/Types/Utility/http.d.ts +40 -40
  125. package/types/Types/Utility/support.d.ts +26 -26
  126. package/types/Types/fieldType.d.ts +199 -199
  127. package/types/Types/index.d.ts +18 -18
  128. package/types/Types/validationRules.d.ts +44 -44
  129. package/types/Utility/block.d.ts +36 -2
  130. package/types/Utility/browserBus.d.ts +195 -0
  131. package/types/Utility/file.d.ts +10 -0
  132. package/types/Utility/objectUtils.d.ts +18 -0
  133. package/types/Utility/rockCurrency.d.ts +118 -0
  134. package/types/Utility/rockDateTime.d.ts +8 -0
  135. package/types/Utility/stringUtils.d.ts +11 -4
  136. package/types/ViewModels/Blocks/Bus/QueueDetail/queueBag.d.ts +48 -48
  137. package/types/ViewModels/Blocks/Bus/QueueDetail/queueDetailOptionsBag.d.ts +25 -25
  138. package/types/ViewModels/Blocks/Bus/QueueList/queueListBag.d.ts +48 -0
  139. package/types/ViewModels/Blocks/Bus/QueueList/queueListOptionsBag.d.ts +25 -0
  140. package/types/ViewModels/Blocks/CheckIn/AttendanceList/attendanceListOptionsBag.d.ts +26 -0
  141. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/kioskConfigurationBag.d.ts +41 -0
  142. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/promotionBag.d.ts +34 -0
  143. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/savedKioskConfigurationBag.d.ts +46 -0
  144. package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +48 -0
  145. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelBag.d.ts +90 -0
  146. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +39 -0
  147. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelList/checkInLabelListOptionsBag.d.ts +26 -0
  148. package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInSimulator/checkInSimulatorOptionsBag.d.ts +37 -0
  149. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/dataSourceBag.d.ts +74 -0
  150. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/iconItemBag.d.ts +43 -0
  151. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +64 -0
  152. package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDetailBag.d.ts +40 -0
  153. package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationBag.d.ts +56 -56
  154. package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationDetailOptionsBag.d.ts +30 -30
  155. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageBag.d.ts +69 -69
  156. package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageDetailOptionsBag.d.ts +27 -27
  157. package/types/ViewModels/Blocks/Cms/AdaptiveMessageList/adaptiveMessageListOptionsBag.d.ts +25 -25
  158. package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeBag.d.ts +66 -66
  159. package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeDetailOptionsBag.d.ts +25 -25
  160. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/attributeFilterBag.d.ts +62 -62
  161. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/availableContentSourceBag.d.ts +40 -40
  162. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionBag.d.ts +83 -83
  163. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionDetailOptionsBag.d.ts +26 -26
  164. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentSourceBag.d.ts +83 -83
  165. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/customFieldFilterBag.d.ts +48 -48
  166. package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/filterSettingsBag.d.ts +62 -62
  167. package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionInitializationBox.d.ts +79 -79
  168. package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionListItemBag.d.ts +47 -47
  169. package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +130 -130
  170. package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsOptionsBag.d.ts +33 -33
  171. package/types/ViewModels/Blocks/Cms/ContentCollectionView/filterOptionsBag.d.ts +41 -41
  172. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchFilterBag.d.ts +49 -49
  173. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchQueryBag.d.ts +52 -52
  174. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultBag.d.ts +36 -36
  175. package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultSourceBag.d.ts +54 -54
  176. package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeBag.d.ts +73 -73
  177. package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeDetailOptionsBag.d.ts +29 -29
  178. package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutBag.d.ts +53 -53
  179. package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutDetailOptionsBag.d.ts +28 -28
  180. package/types/ViewModels/Blocks/Cms/LayoutList/layoutListOptionsBag.d.ts +26 -0
  181. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerDownloadItemBag.d.ts +40 -40
  182. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerInitializationBox.d.ts +61 -61
  183. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemBag.d.ts +91 -91
  184. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemFiltersBag.d.ts +49 -49
  185. package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerValidationResultsBag.d.ts +34 -34
  186. package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountBag.d.ts +55 -55
  187. package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountDetailOptionsBag.d.ts +26 -26
  188. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +79 -79
  189. package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderDetailOptionsBag.d.ts +34 -34
  190. package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteBag.d.ts +55 -55
  191. package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteDetailOptionsBag.d.ts +25 -25
  192. package/types/ViewModels/Blocks/Cms/PageRouteList/pageRouteListOptionsBag.d.ts +30 -30
  193. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +66 -48
  194. package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +29 -29
  195. package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetBag.d.ts +106 -106
  196. package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetDetailOptionsBag.d.ts +26 -26
  197. package/types/ViewModels/Blocks/Cms/PersistedDatasetList/persistedDatasetListOptionsBag.d.ts +26 -0
  198. package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionBag.d.ts +48 -48
  199. package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionDetailOptionsBag.d.ts +26 -26
  200. package/types/ViewModels/Blocks/Cms/SiteDetail/siteBag.d.ts +161 -161
  201. package/types/ViewModels/Blocks/Cms/SiteDetail/siteDetailOptionsBag.d.ts +33 -33
  202. package/types/ViewModels/Blocks/Cms/SiteList/siteListOptionsBag.d.ts +26 -26
  203. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +90 -90
  204. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts +42 -42
  205. package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts +33 -33
  206. package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessBag.d.ts +48 -0
  207. package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessPersonAddressBag.d.ts +61 -0
  208. package/types/ViewModels/Blocks/Communication/NcoaProcess/ncoaProcessSavedSettingsBag.d.ts +44 -0
  209. package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetBag.d.ts +64 -64
  210. package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetDetailOptionsBag.d.ts +31 -31
  211. package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeBag.d.ts +57 -57
  212. package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeDetailOptionsBag.d.ts +26 -26
  213. package/types/ViewModels/Blocks/Communication/SystemCommunicationList/systemCommunicationListOptionsBag.d.ts +28 -0
  214. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +87 -87
  215. package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberDetailOptionsBag.d.ts +30 -30
  216. package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderBag.d.ts +48 -48
  217. package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderDetailOptionsBag.d.ts +25 -25
  218. package/types/ViewModels/Blocks/Core/Attributes/attributesOptionsBag.d.ts +43 -43
  219. package/types/ViewModels/Blocks/Core/AuditList/auditListOptionsBag.d.ts +30 -30
  220. package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileBag.d.ts +70 -70
  221. package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileDetailOptionsBag.d.ts +25 -25
  222. package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +83 -83
  223. package/types/ViewModels/Blocks/Core/CampusDetail/campusDetailOptionsBag.d.ts +33 -33
  224. package/types/ViewModels/Blocks/Core/CampusDetail/campusScheduleBag.d.ts +37 -37
  225. package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +25 -25
  226. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryBag.d.ts +67 -67
  227. package/types/ViewModels/Blocks/Core/CategoryDetail/categoryDetailOptionsBag.d.ts +25 -25
  228. package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsBag.d.ts +46 -46
  229. package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsOptionsBag.d.ts +29 -29
  230. package/types/ViewModels/Blocks/Core/DefinedValueList/definedValueBag.d.ts +49 -49
  231. package/types/ViewModels/Blocks/Core/DefinedValueList/definedValueListOptionsBag.d.ts +40 -40
  232. package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeBag.d.ts +73 -73
  233. package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeDetailOptionsBag.d.ts +25 -25
  234. package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +89 -89
  235. package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelDetailOptionsBag.d.ts +25 -25
  236. package/types/ViewModels/Blocks/Core/LocationDetail/addressStandardizationResultBag.d.ts +36 -36
  237. package/types/ViewModels/Blocks/Core/LocationDetail/locationBag.d.ts +92 -85
  238. package/types/ViewModels/Blocks/Core/LocationDetail/locationDetailOptionsBag.d.ts +29 -29
  239. package/types/ViewModels/Blocks/Core/NoteList/prayerCommentListOptionsBag.d.ts +26 -0
  240. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +82 -82
  241. package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeDetailOptionsBag.d.ts +25 -25
  242. package/types/ViewModels/Blocks/Core/Notes/deleteNoteRequestBag.d.ts +28 -28
  243. package/types/ViewModels/Blocks/Core/Notes/editNoteRequestBag.d.ts +28 -28
  244. package/types/ViewModels/Blocks/Core/Notes/noteBag.d.ts +82 -82
  245. package/types/ViewModels/Blocks/Core/Notes/noteEditBag.d.ts +52 -52
  246. package/types/ViewModels/Blocks/Core/Notes/noteTypeBag.d.ts +60 -60
  247. package/types/ViewModels/Blocks/Core/Notes/notesInitializationBox.d.ts +87 -87
  248. package/types/ViewModels/Blocks/Core/Notes/saveNoteRequestBag.d.ts +33 -33
  249. package/types/ViewModels/Blocks/Core/Notes/watchNoteRequestBag.d.ts +31 -31
  250. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionRequestBag.d.ts +31 -31
  251. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionResponseBag.d.ts +36 -36
  252. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesRequestBag.d.ts +26 -26
  253. package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesResponseBag.d.ts +30 -30
  254. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadRequestBag.d.ts +31 -31
  255. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadResponseBag.d.ts +31 -31
  256. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadRequestBag.d.ts +31 -31
  257. package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadResponseBag.d.ts +34 -34
  258. package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageBag.d.ts +55 -55
  259. package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageListInitializationBox.d.ts +37 -37
  260. package/types/ViewModels/Blocks/Core/PersonSignalList/personSignalBag.d.ts +52 -0
  261. package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityDataBag.d.ts → Core/PersonSignalList/personSignalListOptionsBag.d.ts} +28 -29
  262. package/types/ViewModels/Blocks/Core/RestActionList/restActionListOptionsBag.d.ts +25 -25
  263. package/types/ViewModels/Blocks/Core/RestControllerList/restControllerListOptionsBag.d.ts +25 -25
  264. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleBag.d.ts +87 -87
  265. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleDetailOptionsBag.d.ts +41 -41
  266. package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleExclusionBag.d.ts +30 -30
  267. package/types/ViewModels/Blocks/Core/ScheduledJobList/scheduledJobListOptionsBag.d.ts +26 -26
  268. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobBag.d.ts +84 -84
  269. package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +32 -32
  270. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +81 -81
  271. package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateDetailOptionsBag.d.ts +32 -32
  272. package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBag.d.ts +63 -63
  273. package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBox.d.ts +54 -54
  274. package/types/ViewModels/Blocks/Core/TagDetail/tagBag.d.ts +76 -76
  275. package/types/ViewModels/Blocks/Core/TagDetail/tagDetailOptionsBag.d.ts +25 -25
  276. package/types/ViewModels/Blocks/Crm/AssessmentList/assessmentListBag.d.ts +33 -33
  277. package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeBag.d.ts +69 -69
  278. package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeDetailOptionsBag.d.ts +26 -26
  279. package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeBag.d.ts +57 -57
  280. package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeDetailOptionsBag.d.ts +25 -25
  281. package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeBag.d.ts +75 -75
  282. package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeDetailOptionsBag.d.ts +25 -25
  283. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationCreateAccountRequestBag.d.ts +31 -31
  284. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDateAndTimeFieldBag.d.ts +43 -43
  285. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDatePickerFieldBag.d.ts +40 -40
  286. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationFieldBag.d.ts +37 -37
  287. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesRequestBag.d.ts +30 -30
  288. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesResponseBag.d.ts +40 -40
  289. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +170 -170
  290. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationPersonBag.d.ts +94 -94
  291. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveRequestBag.d.ts +63 -63
  292. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveResponseBag.d.ts +31 -31
  293. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationScheduleDateBag.d.ts +42 -42
  294. package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSmsOptInFieldBag.d.ts +40 -40
  295. package/types/ViewModels/Blocks/Crm/PersonDetail/Badges/badgesConfigurationBox.d.ts +48 -48
  296. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/accountSummaryBag.d.ts +34 -0
  297. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/contributionStatementBag.d.ts +31 -0
  298. package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityDonationBag.d.ts → Crm/PersonDetail/GivingConfiguration/financialAccountBag.d.ts} +31 -34
  299. package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityPersonDataBag.d.ts → Crm/PersonDetail/GivingConfiguration/financialPaymentDetailBag.d.ts} +46 -37
  300. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialPersonSavedAccountBag.d.ts +52 -0
  301. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialPledgeBag.d.ts +56 -0
  302. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialScheduledTransactionBag.d.ts +69 -0
  303. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/financialScheduledTransactionDetailBag.d.ts +30 -0
  304. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/givingConfigurationInitializationBag.d.ts +79 -0
  305. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/givingConfigurationOptionsBag.d.ts +26 -0
  306. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/personAliasBag.d.ts +36 -0
  307. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/personBag.d.ts +34 -0
  308. package/types/ViewModels/Blocks/Crm/PersonDetail/GivingConfiguration/textToGiveSettingsBag.d.ts +31 -0
  309. package/types/ViewModels/Blocks/Crm/PersonMergeRequestList/personMergeRequestListOptionsBag.d.ts +26 -26
  310. package/types/ViewModels/Blocks/Crm/PhotoOptOut/photoOptOutBag.d.ts +39 -39
  311. package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptBag.d.ts +73 -73
  312. package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptDetailOptionsBag.d.ts +25 -25
  313. package/types/ViewModels/Blocks/Engagement/AchievementTypeList/achievementTypeListOptionsBag.d.ts +27 -27
  314. package/types/ViewModels/Blocks/Engagement/CampaignList/campaignListOptionsBag.d.ts +26 -0
  315. package/types/ViewModels/Blocks/Engagement/ConnectionTypeList/connectionTypeListOptionsBag.d.ts +26 -26
  316. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceBag.d.ts +30 -30
  317. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceDetailInitializationBox.d.ts +45 -45
  318. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendeeBag.d.ts +34 -34
  319. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpDetail/signUpDetailInitializationBox.d.ts +40 -40
  320. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/getAvailableCampusesBag.d.ts +31 -31
  321. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsBag.d.ts +106 -106
  322. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsOptionsBag.d.ts +37 -37
  323. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderInitializationBox.d.ts +85 -85
  324. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderResultsBag.d.ts +31 -31
  325. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderSelectedFiltersBag.d.ts +57 -57
  326. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +73 -73
  327. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterRequestBag.d.ts +30 -30
  328. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterResponseBag.d.ts +37 -37
  329. package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegistrantBag.d.ts +73 -73
  330. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +89 -89
  331. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +33 -33
  332. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramWorkflowTriggerBag.d.ts +51 -51
  333. package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +45 -45
  334. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -43
  335. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -40
  336. package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -40
  337. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +34 -34
  338. package/types/ViewModels/Blocks/Engagement/Steps/stepFlowInitializationBox.d.ts +51 -51
  339. package/types/ViewModels/Blocks/Engagement/StreakDetail/streakBag.d.ts +69 -69
  340. package/types/ViewModels/Blocks/Engagement/StreakDetail/streakDetailOptionsBag.d.ts +36 -36
  341. package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeBag.d.ts +98 -98
  342. package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeDetailOptionsBag.d.ts +36 -36
  343. package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionBag.d.ts +42 -42
  344. package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionDetailOptionsBag.d.ts +25 -25
  345. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventAttributeBag.d.ts +32 -32
  346. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarBag.d.ts +66 -66
  347. package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarDetailOptionsBag.d.ts +29 -29
  348. package/types/ViewModels/Blocks/Event/EventItemDetail/eventCalendarItemAttributeBag.d.ts +39 -39
  349. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemBag.d.ts +89 -89
  350. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemDetailOptionsBag.d.ts +25 -25
  351. package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemOccurenceAttributeBag.d.ts +32 -32
  352. package/types/ViewModels/Blocks/Event/EventItemOccurrenceList/eventItemOccurrenceListOptionsBag.d.ts +42 -0
  353. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManager/experienceManagerInitializationBox.d.ts +72 -72
  354. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManagerOccurrences/experienceManagerOccurrencesInitializationBox.d.ts +48 -48
  355. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/experienceVisualizerInitializationBox.d.ts +43 -43
  356. package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/visualizerOccurrenceBag.d.ts +36 -36
  357. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionBag.d.ts +61 -61
  358. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionTypeBag.d.ts +67 -67
  359. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceBag.d.ts +155 -155
  360. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceDetailOptionsBag.d.ts +34 -34
  361. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceScheduleBag.d.ts +55 -55
  362. package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceVisualizerTypeBag.d.ts +48 -48
  363. package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperience/liveExperienceInitializationBox.d.ts +57 -57
  364. package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperienceOccurrences/liveExperienceOccurrencesInitializationBox.d.ts +49 -49
  365. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrantBag.d.ts +54 -54
  366. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrarBag.d.ts +42 -42
  367. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryArgsBag.d.ts +63 -56
  368. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryCostSummaryBag.d.ts +49 -45
  369. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryCreatePaymentPlanRequestBag.d.ts +42 -0
  370. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFamilyMemberBag.d.ts +39 -39
  371. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFeeBag.d.ts +49 -49
  372. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFeeItemBag.d.ts +42 -42
  373. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFormBag.d.ts +30 -30
  374. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryFormFieldBag.d.ts +68 -65
  375. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryInitializationBox.d.ts +234 -203
  376. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryLineItemBag.d.ts +45 -45
  377. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryPaymentPlanBag.d.ts +60 -39
  378. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntrySessionBag.d.ts +75 -71
  379. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntrySignatureDocumentBag.d.ts +46 -46
  380. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntrySuccessBag.d.ts +37 -37
  381. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrationEntryVisibilityBag.d.ts +34 -34
  382. package/types/ViewModels/Blocks/Event/RegistrationEntry/sessionRenewalResultBag.d.ts +31 -31
  383. package/types/ViewModels/Blocks/Event/RegistrationInstanceFeeList/registrationInstanceFeeListOptionsBag.d.ts +39 -39
  384. package/types/ViewModels/Blocks/Event/RegistrationInstanceLinkageList/registrationInstanceLinkageListOptionsBag.d.ts +39 -0
  385. package/types/ViewModels/Blocks/Event/RegistrationListLavaBox.d.ts +43 -43
  386. package/types/ViewModels/Blocks/Finance/BenevolenceRequestList/benevolenceRequestListOptionsBag.d.ts +43 -0
  387. package/types/ViewModels/Blocks/Finance/BenevolenceRequestList/benevolenceResultBag.d.ts +31 -0
  388. package/types/ViewModels/Blocks/Finance/BusinessContactList/businessContactBag.d.ts +30 -30
  389. package/types/ViewModels/Blocks/Finance/BusinessContactList/businessContactListOptionsBag.d.ts +26 -26
  390. package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailBag.d.ts +86 -86
  391. package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailOptionsBag.d.ts +37 -37
  392. package/types/ViewModels/Blocks/Finance/BusinessDetail/searchKeyBag.d.ts +36 -36
  393. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchAccountTotalsBag.d.ts +31 -31
  394. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchBag.d.ts +88 -88
  395. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchCurrencyTotalsBag.d.ts +31 -31
  396. package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +62 -62
  397. package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +51 -48
  398. package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusRequestBag.d.ts +31 -31
  399. package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusResponseBag.d.ts +40 -40
  400. package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayBag.d.ts +63 -63
  401. package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayDetailOptionsBag.d.ts +26 -26
  402. package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeBag.d.ts +60 -60
  403. package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeDetailOptionsBag.d.ts +36 -36
  404. package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryBag.d.ts +84 -84
  405. package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryOptionsBag.d.ts +57 -57
  406. package/types/ViewModels/Blocks/Finance/FinancialPledgeList/financialPledgeListBag.d.ts +51 -0
  407. package/types/ViewModels/Blocks/Finance/FinancialPledgeList/financialPledgeListOptionsBag.d.ts +54 -0
  408. package/types/ViewModels/Blocks/Finance/FundraisingDonationList/fundraisingDonationListOptionsBag.d.ts +45 -0
  409. package/types/ViewModels/Blocks/Finance/SavedAccountList/savedAccountListOptionsBag.d.ts +26 -26
  410. package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerosityPersonDetailsBag.d.ts → Finance/VolunteerGenerosityAnalysis/volunteerGenerosityDataBag.d.ts} +70 -58
  411. package/types/ViewModels/Blocks/{Reporting/VolunteerGenerosityAnalysis/volunteerGenerositySetupBag.d.ts → Finance/VolunteerGenerosityAnalysis/volunteerGenerosityInitializationBox.d.ts} +45 -40
  412. package/types/ViewModels/Blocks/{Reporting → Finance}/VolunteerGenerosityAnalysis/volunteerGenerosityPersonBag.d.ts +40 -37
  413. package/types/ViewModels/Blocks/Fundraising/FundraisingDonationList/fundraisingDonationListOptionsBag.d.ts +45 -40
  414. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonRequestBag.d.ts +33 -33
  415. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonResponseBag.d.ts +30 -30
  416. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAttendanceBag.d.ts +51 -51
  417. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetAttendanceRequestBag.d.ts +30 -30
  418. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationScheduleDatesRequestBag.d.ts +39 -39
  419. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationSchedulesRequestBag.d.ts +36 -36
  420. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationsRequestBag.d.ts +30 -30
  421. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetOrCreateRequestBag.d.ts +55 -55
  422. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailInitializationBox.d.ts +170 -164
  423. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailMarkAttendanceRequestBag.d.ts +36 -36
  424. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterRequestBag.d.ts +39 -39
  425. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterResponseBag.d.ts +28 -28
  426. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateAttendanceOccurrenceTypeRequestBag.d.ts +33 -33
  427. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateDidNotOccurRequestBag.d.ts +33 -33
  428. package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateNotesRequestBag.d.ts +33 -33
  429. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBag.d.ts +65 -65
  430. package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +77 -77
  431. package/types/ViewModels/Blocks/Group/GroupSchedulePreference/assignmentScheduleAndLocationBag.d.ts +37 -37
  432. package/types/ViewModels/Blocks/Group/GroupSchedulePreference/preferencePageContentBag.d.ts +44 -44
  433. package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupBag.d.ts +33 -33
  434. package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupDataBag.d.ts +60 -60
  435. package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/confirmDeclineBag.d.ts +31 -31
  436. package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/contentBag.d.ts +28 -28
  437. package/types/ViewModels/Blocks/Group/GroupScheduleUnavailability/contentBag.d.ts +39 -39
  438. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/assignmentOptionsBag.d.ts +50 -50
  439. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/currentScheduleBag.d.ts +47 -47
  440. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/deleteAssignmentRequestBag.d.ts +33 -33
  441. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getAssignmentOptionsRequestBag.d.ts +39 -39
  442. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSchedulePreferencesRequestBag.d.ts +33 -33
  443. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSignUpsRequestBag.d.ts +33 -33
  444. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/groupBag.d.ts +39 -39
  445. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/initializationBox.d.ts +92 -92
  446. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionRequestBag.d.ts +45 -45
  447. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionResponseBag.d.ts +52 -52
  448. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentRequestBag.d.ts +45 -45
  449. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentResponseBag.d.ts +33 -33
  450. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveDeclineReasonRequestBag.d.ts +46 -46
  451. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSchedulePreferenceRequestBag.d.ts +42 -42
  452. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpRequestBag.d.ts +45 -45
  453. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpResponseBag.d.ts +41 -41
  454. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveUnavailabilityRequestBag.d.ts +45 -45
  455. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceAssignmentBag.d.ts +36 -36
  456. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceBag.d.ts +44 -44
  457. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferencesBag.d.ts +37 -37
  458. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/scheduleRowBag.d.ts +62 -62
  459. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceBag.d.ts +61 -61
  460. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceLocationBag.d.ts +48 -48
  461. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpsBag.d.ts +37 -37
  462. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupScheduleOccurrenceBag.d.ts +40 -40
  463. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerAppliedFiltersBag.d.ts +45 -41
  464. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerApplyResourceSettingsBag.d.ts +40 -40
  465. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSchedulesResponseBag.d.ts +43 -43
  466. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSettingsBag.d.ts +57 -57
  467. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerFiltersBag.d.ts +54 -51
  468. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGetPreferencesBag.d.ts +31 -31
  469. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGroupLocationScheduleNamesBag.d.ts +31 -0
  470. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerInitializationBox.d.ts +45 -45
  471. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerLocationsBag.d.ts +33 -33
  472. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +82 -79
  473. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferenceBag.d.ts +31 -31
  474. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferencesBag.d.ts +43 -43
  475. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerResourceSettingsBag.d.ts +44 -44
  476. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSchedulesBag.d.ts +33 -33
  477. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/{groupSchedulerSendNowResponseBag.d.ts → groupSchedulerSendConfirmationsResponseBag.d.ts} +37 -37
  478. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUnassignedResourceCountBag.d.ts +48 -48
  479. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUpdatePreferenceBag.d.ts +40 -40
  480. package/types/ViewModels/Blocks/Group/landingPageContentBag.d.ts +36 -36
  481. package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBag.d.ts +65 -65
  482. package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBlockBox.d.ts +65 -65
  483. package/types/ViewModels/Blocks/Mobile/Communication/SmsConversation/conversationDetailBag.d.ts +56 -56
  484. package/types/ViewModels/Blocks/Mobile/Communication/SmsConversationList/phoneNumberBag.d.ts +42 -42
  485. package/types/ViewModels/Blocks/Prayer/PrayerCommentList/prayerCommentListOptionsBag.d.ts +26 -0
  486. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestBag.d.ts +90 -90
  487. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailAddPersonResponseBag.d.ts +25 -25
  488. package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailOptionsBag.d.ts +30 -30
  489. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +140 -140
  490. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +66 -66
  491. package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +31 -31
  492. package/types/ViewModels/Blocks/Prayer/PrayerRequestList/prayerRequestListOptionsBag.d.ts +25 -25
  493. package/types/ViewModels/Blocks/Reporting/DynamicData/columnConfigurationBag.d.ts +64 -0
  494. package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataCustomSettingsBag.d.ts +114 -0
  495. package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataCustomSettingsOptionsBag.d.ts +36 -0
  496. package/types/ViewModels/Blocks/Reporting/DynamicData/dynamicDataInitializationBox.d.ts +52 -0
  497. package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +101 -0
  498. package/types/ViewModels/Blocks/Reporting/DynamicData/lavaTemplateResultsBag.d.ts +28 -0
  499. package/types/ViewModels/Blocks/Reporting/DynamicData/reloadColumnsRequestBag.d.ts +45 -0
  500. package/types/ViewModels/Blocks/Reporting/DynamicData/reloadColumnsResponseBag.d.ts +30 -0
  501. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateBag.d.ts +70 -70
  502. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateDetailOptionsBag.d.ts +25 -25
  503. package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateFileValidationBag.d.ts +35 -35
  504. package/types/ViewModels/Blocks/Reporting/MergeTemplateList/mergeTemplateListOptionsBag.d.ts +30 -30
  505. package/types/ViewModels/Blocks/Reporting/ReportList/reportListOptionsBag.d.ts +25 -25
  506. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsRequestBag.d.ts +36 -36
  507. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsResponseBag.d.ts +37 -37
  508. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetServiceTimesRequestBag.d.ts +33 -33
  509. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetWeekendDatesRequestBag.d.ts +31 -31
  510. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryInitializationBox.d.ts +63 -60
  511. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricCategoryBag.d.ts +34 -34
  512. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricItemBag.d.ts +37 -37
  513. package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntrySaveRequestBag.d.ts +43 -43
  514. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryAccountInfoBag.d.ts +34 -34
  515. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryCompletedStepBag.d.ts +37 -37
  516. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryConfirmationSentStepBag.d.ts +28 -28
  517. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonItemBag.d.ts +31 -31
  518. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonSelectionStepBag.d.ts +33 -33
  519. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryExistingAccountStepBag.d.ts +28 -28
  520. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryForgotUsernameRequestBag.d.ts +34 -34
  521. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +114 -107
  522. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPasswordlessConfirmationSentStepBag.d.ts +31 -31
  523. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPersonInfoBag.d.ts +62 -62
  524. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPhoneNumberBag.d.ts +51 -51
  525. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterRequestBox.d.ts +46 -46
  526. package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterResponseBox.d.ts +50 -50
  527. package/types/ViewModels/Blocks/Security/AuthClientList/authClientListOptionsBag.d.ts +26 -0
  528. package/types/ViewModels/Blocks/Security/AuthScopeList/authScopeListOptionsBag.d.ts +26 -0
  529. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAccountConfirmationViewOptionsBag.d.ts +28 -28
  530. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountActionNamesBag.d.ts +40 -40
  531. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertControlBag.d.ts +34 -34
  532. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertViewOptionsBag.d.ts +30 -30
  533. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordRequestBag.d.ts +31 -31
  534. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordViewOptionsBag.d.ts +34 -34
  535. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountConfirmRequestBag.d.ts +28 -28
  536. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountContentViewOptionsBag.d.ts +28 -28
  537. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteConfirmationViewOptionsBag.d.ts +31 -31
  538. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteRequestBag.d.ts +28 -28
  539. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountInitializationBox.d.ts +46 -46
  540. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowChangePasswordViewRequestBag.d.ts +28 -28
  541. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowDeleteConfirmationRequestBag.d.ts +28 -28
  542. package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountViewBox.d.ts +68 -68
  543. package/types/ViewModels/Blocks/Security/ForgotUserName/changePasswordNotSupportedResultBag.d.ts +31 -31
  544. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameCaptionsBag.d.ts +34 -34
  545. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameInitializationBox.d.ts +45 -45
  546. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsRequestBag.d.ts +28 -28
  547. package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsResultBag.d.ts +37 -37
  548. package/types/ViewModels/Blocks/Security/Login/credentialLoginMfaBag.d.ts +34 -34
  549. package/types/ViewModels/Blocks/Security/Login/credentialLoginRequestBag.d.ts +37 -37
  550. package/types/ViewModels/Blocks/Security/Login/credentialLoginResponseBag.d.ts +45 -45
  551. package/types/ViewModels/Blocks/Security/Login/externalAuthenticationButtonBag.d.ts +37 -37
  552. package/types/ViewModels/Blocks/Security/Login/loginInitializationBox.d.ts +114 -114
  553. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginAutoVerifyOptionsBag.d.ts +31 -31
  554. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginMfaBag.d.ts +34 -34
  555. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginOptionsBag.d.ts +46 -46
  556. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartRequestBag.d.ts +46 -46
  557. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartResponseBag.d.ts +34 -34
  558. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyOptionsBag.d.ts +42 -42
  559. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyRequestBag.d.ts +37 -37
  560. package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyResponseBag.d.ts +49 -49
  561. package/types/ViewModels/Blocks/Security/Login/remoteLoginStartRequestBag.d.ts +31 -31
  562. package/types/ViewModels/Blocks/Security/Login/remoteLoginStartResponseBag.d.ts +28 -28
  563. package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyBag.d.ts +51 -51
  564. package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyDetailOptionsBag.d.ts +25 -25
  565. package/types/ViewModels/Blocks/Security/RestKeyList/restKeyListOptionsBag.d.ts +26 -0
  566. package/types/ViewModels/Blocks/Security/UserLoginList/authenticationComponentBag.d.ts +31 -0
  567. package/types/ViewModels/Blocks/Security/UserLoginList/userLoginBag.d.ts +54 -0
  568. package/types/ViewModels/Blocks/Security/UserLoginList/userLoginListOptionsBag.d.ts +28 -0
  569. package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppBag.d.ts +72 -72
  570. package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppDetailOptionsBag.d.ts +25 -25
  571. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageBag.d.ts +57 -57
  572. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageDetailOptionsBag.d.ts +25 -25
  573. package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/timeIntervalBag.d.ts +32 -32
  574. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsBag.d.ts +49 -49
  575. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsOptionsBag.d.ts +36 -36
  576. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/themeListItemBag.d.ts +43 -43
  577. package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/topicAndChannelBag.d.ts +31 -31
  578. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmMetricBag.d.ts +31 -31
  579. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeBag.d.ts +69 -69
  580. package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeDetailOptionsBag.d.ts +25 -25
  581. package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +67 -60
  582. package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsDetailOptionsBag.d.ts +26 -25
  583. package/types/ViewModels/Blocks/Workflow/WorkflowList/workflowListOptionsBag.d.ts +39 -0
  584. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerBag.d.ts +81 -81
  585. package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerDetailBox.d.ts +50 -50
  586. package/types/ViewModels/Blocks/blockActionContextBag.d.ts +37 -37
  587. package/types/ViewModels/Blocks/blockBox.d.ts +37 -37
  588. package/types/ViewModels/Blocks/customSettingsBox.d.ts +40 -40
  589. package/types/ViewModels/Blocks/detailBlockBox.d.ts +67 -67
  590. package/types/ViewModels/Blocks/listBlockBox.d.ts +59 -59
  591. package/types/ViewModels/CheckIn/Labels/attendeePhotoFieldConfigurationBag.d.ts +37 -0
  592. package/types/ViewModels/CheckIn/Labels/barcodeFieldConfigurationBag.d.ts +40 -0
  593. package/types/ViewModels/CheckIn/Labels/customFieldInputBag.d.ts +37 -0
  594. package/types/ViewModels/CheckIn/Labels/dataFormatterOptionBag.d.ts +43 -0
  595. package/types/ViewModels/CheckIn/Labels/designedLabelBag.d.ts +42 -0
  596. package/types/ViewModels/CheckIn/Labels/ellipseFieldConfigurationBag.d.ts +40 -0
  597. package/types/ViewModels/CheckIn/Labels/iconFieldConfigurationBag.d.ts +36 -0
  598. package/types/ViewModels/CheckIn/Labels/imageFieldConfigurationBag.d.ts +41 -0
  599. package/types/ViewModels/CheckIn/Labels/labelFieldBag.d.ts +99 -0
  600. package/types/ViewModels/CheckIn/Labels/lineFieldConfigurationBag.d.ts +34 -0
  601. package/types/ViewModels/CheckIn/Labels/rectangleFieldConfigurationBag.d.ts +47 -0
  602. package/types/ViewModels/CheckIn/Labels/textFieldConfigurationBag.d.ts +106 -0
  603. package/types/ViewModels/CheckIn/abilityLevelOpportunityBag.d.ts +31 -0
  604. package/types/ViewModels/CheckIn/achievementBag.d.ts +61 -0
  605. package/types/ViewModels/CheckIn/areaOpportunityBag.d.ts +31 -0
  606. package/types/ViewModels/CheckIn/attendanceBag.d.ts +50 -0
  607. package/types/ViewModels/CheckIn/attendanceRequestBag.d.ts +48 -0
  608. package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +63 -0
  609. package/types/ViewModels/CheckIn/attendeeBag.d.ts +46 -0
  610. package/types/ViewModels/CheckIn/checkInItemBag.d.ts +31 -0
  611. package/types/ViewModels/CheckIn/checkInResultBag.d.ts +33 -0
  612. package/types/ViewModels/CheckIn/checkoutResultBag.d.ts +36 -0
  613. package/types/ViewModels/CheckIn/configurationAreaBag.d.ts +38 -0
  614. package/types/ViewModels/CheckIn/configurationTemplateBag.d.ts +108 -0
  615. package/types/ViewModels/CheckIn/familyBag.d.ts +42 -0
  616. package/types/ViewModels/CheckIn/familyMemberBag.d.ts +44 -0
  617. package/types/ViewModels/CheckIn/groupOpportunityBag.d.ts +46 -0
  618. package/types/ViewModels/CheckIn/kioskBag.d.ts +45 -0
  619. package/types/ViewModels/CheckIn/kioskStatusBag.d.ts +58 -0
  620. package/types/ViewModels/CheckIn/locationOpportunityBag.d.ts +43 -0
  621. package/types/ViewModels/CheckIn/opportunityCollectionBag.d.ts +49 -0
  622. package/types/ViewModels/CheckIn/opportunitySelectionBag.d.ts +45 -0
  623. package/types/ViewModels/CheckIn/personBag.d.ts +84 -0
  624. package/types/ViewModels/CheckIn/recordedAttendanceBag.d.ts +46 -0
  625. package/types/ViewModels/CheckIn/savedCheckInConfigurationBag.d.ts +46 -0
  626. package/types/ViewModels/CheckIn/savedCheckInConfigurationSettingsBag.d.ts +40 -0
  627. package/types/ViewModels/CheckIn/scheduleOpportunityBag.d.ts +31 -0
  628. package/types/ViewModels/Cms/blockCustomActionBag.d.ts +42 -42
  629. package/types/ViewModels/Cms/contentCollectionAttributeFilterSettingsBag.d.ts +39 -39
  630. package/types/ViewModels/Cms/contentCollectionCustomFieldBag.d.ts +44 -44
  631. package/types/ViewModels/Cms/contentCollectionCustomFieldFilterSettingsBag.d.ts +39 -39
  632. package/types/ViewModels/Cms/contentCollectionFilterSettingsBag.d.ts +78 -78
  633. package/types/ViewModels/Cms/contentCollectionSourceAdditionalSettingsBag.d.ts +43 -43
  634. package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +79 -62
  635. package/types/ViewModels/Cms/obsidianBlockPreferencesBag.d.ts +42 -42
  636. package/types/ViewModels/Communication/conversationAttachmentBag.d.ts +34 -34
  637. package/types/ViewModels/Communication/conversationMessageBag.d.ts +95 -95
  638. package/types/ViewModels/Connection/connectionRequestCountsBag.d.ts +34 -34
  639. package/types/ViewModels/Controls/addressControlBag.d.ts +46 -46
  640. package/types/ViewModels/Controls/birthdayPickerBag.d.ts +34 -34
  641. package/types/ViewModels/Controls/campusPickerItemBag.d.ts +51 -51
  642. package/types/ViewModels/Controls/electronicSignatureValue.d.ts +31 -31
  643. package/types/ViewModels/Controls/fieldTypeEditorGetAvailableFieldTypesOptionsBag.d.ts +29 -29
  644. package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationOptionsBag.d.ts +39 -39
  645. package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationResultBag.d.ts +52 -52
  646. package/types/ViewModels/Controls/gatewayControlBag.d.ts +31 -31
  647. package/types/ViewModels/Controls/monthDayValue.d.ts +27 -27
  648. package/types/ViewModels/Controls/monthYearValue.d.ts +27 -27
  649. package/types/ViewModels/Controls/noteMentionItemBag.d.ts +43 -43
  650. package/types/ViewModels/Controls/phoneNumberBoxWithSmsControlBag.d.ts +34 -34
  651. package/types/ViewModels/Controls/rockCacheabilityBag.d.ts +37 -37
  652. package/types/ViewModels/Controls/slidingDateRangeBag.d.ts +43 -43
  653. package/types/ViewModels/Controls/timePickerValue.d.ts +25 -25
  654. package/types/ViewModels/Controls/universalItemSearchPickerItemBag.d.ts +62 -63
  655. package/types/ViewModels/Core/Grid/attributeFieldDefinitionBag.d.ts +47 -47
  656. package/types/ViewModels/Core/Grid/customActionBag.d.ts +48 -48
  657. package/types/ViewModels/Core/Grid/customColumnDefinitionBag.d.ts +48 -48
  658. package/types/ViewModels/Core/Grid/dynamicFieldDefinitionBag.d.ts +66 -0
  659. package/types/ViewModels/Core/Grid/fieldDefinitionBag.d.ts +31 -31
  660. package/types/ViewModels/Core/Grid/gridCommunicationBag.d.ts +39 -39
  661. package/types/ViewModels/Core/Grid/gridDataBag.d.ts +28 -28
  662. package/types/ViewModels/Core/Grid/gridDefinitionBag.d.ts +84 -76
  663. package/types/ViewModels/Core/Grid/gridEntitySetBag.d.ts +39 -39
  664. package/types/ViewModels/Core/Grid/gridEntitySetItemBag.d.ts +40 -40
  665. package/types/ViewModels/Core/Grid/personFieldBag.d.ts +43 -37
  666. package/types/ViewModels/Core/notificationMessageActionBag.d.ts +42 -42
  667. package/types/ViewModels/Core/notificationMessageMetadataBag.d.ts +52 -54
  668. package/types/ViewModels/Core/personPreferenceValueBag.d.ts +34 -34
  669. package/types/ViewModels/Crm/currentPersonBag.d.ts +54 -43
  670. package/types/ViewModels/Crm/renderedBadgeBag.d.ts +31 -31
  671. package/types/ViewModels/Engagement/achievementCompletedMessageBag.d.ts +63 -63
  672. package/types/ViewModels/Event/InteractiveExperiences/actionRenderConfigurationBag.d.ts +39 -39
  673. package/types/ViewModels/Event/InteractiveExperiences/experienceActionStyleBag.d.ts +49 -49
  674. package/types/ViewModels/Event/InteractiveExperiences/experienceAnswerBag.d.ts +49 -49
  675. package/types/ViewModels/Event/InteractiveExperiences/experienceOccurrenceStateBag.d.ts +31 -31
  676. package/types/ViewModels/Event/InteractiveExperiences/experiencePlaceholderStyleBag.d.ts +34 -34
  677. package/types/ViewModels/Event/InteractiveExperiences/experienceSettingsBag.d.ts +42 -42
  678. package/types/ViewModels/Event/InteractiveExperiences/experienceStyleBag.d.ts +47 -47
  679. package/types/ViewModels/Event/InteractiveExperiences/experienceVisualizerStyleBag.d.ts +46 -46
  680. package/types/ViewModels/Event/InteractiveExperiences/joinExperienceResponseBag.d.ts +47 -47
  681. package/types/ViewModels/Event/InteractiveExperiences/pingExperienceResponseBag.d.ts +28 -28
  682. package/types/ViewModels/Event/InteractiveExperiences/visualizerRenderConfigurationBag.d.ts +42 -42
  683. package/types/ViewModels/Event/attendanceOccurrenceUpdatedMessageBag.d.ts +45 -45
  684. package/types/ViewModels/Event/attendanceUpdatedMessageBag.d.ts +68 -68
  685. package/types/ViewModels/Finance/savedFinancialAccountListItemBag.d.ts +49 -49
  686. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +38 -38
  687. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +48 -48
  688. package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +30 -30
  689. package/types/ViewModels/Reporting/fieldFilterGroupBag.d.ts +41 -40
  690. package/types/ViewModels/Reporting/fieldFilterPublicPropertyBag.d.ts +52 -0
  691. package/types/ViewModels/Reporting/fieldFilterRuleBag.d.ts +67 -52
  692. package/types/ViewModels/Reporting/fieldFilterSourceBag.d.ts +63 -46
  693. package/types/ViewModels/Rest/CheckIn/attendeeOpportunitiesOptionsBag.d.ts +46 -0
  694. package/types/ViewModels/Rest/CheckIn/attendeeOpportunitiesResponseBag.d.ts +36 -0
  695. package/types/ViewModels/Rest/CheckIn/checkoutOptionsBag.d.ts +48 -0
  696. package/types/ViewModels/Rest/CheckIn/checkoutResponseBag.d.ts +39 -0
  697. package/types/ViewModels/Rest/CheckIn/configurationOptionsBag.d.ts +34 -0
  698. package/types/ViewModels/Rest/CheckIn/configurationResponseBag.d.ts +34 -0
  699. package/types/ViewModels/Rest/CheckIn/confirmAttendanceOptionsBag.d.ts +39 -0
  700. package/types/ViewModels/Rest/CheckIn/confirmAttendanceResponseBag.d.ts +36 -0
  701. package/types/ViewModels/Rest/CheckIn/familyMembersOptionsBag.d.ts +43 -0
  702. package/types/ViewModels/Rest/CheckIn/familyMembersResponseBag.d.ts +52 -0
  703. package/types/ViewModels/Rest/CheckIn/kioskStatusOptionsBag.d.ts +34 -0
  704. package/types/ViewModels/Rest/CheckIn/kioskStatusResponseBag.d.ts +30 -0
  705. package/types/ViewModels/Rest/CheckIn/saveAttendanceOptionsBag.d.ts +46 -0
  706. package/types/ViewModels/Rest/CheckIn/saveAttendanceResponseBag.d.ts +36 -0
  707. package/types/ViewModels/Rest/CheckIn/searchForFamiliesOptionsBag.d.ts +53 -0
  708. package/types/ViewModels/Rest/CheckIn/searchForFamiliesResponseBag.d.ts +33 -0
  709. package/types/ViewModels/Rest/Controls/accountPickerGetChildrenOptionsBag.d.ts +42 -42
  710. package/types/ViewModels/Rest/Controls/accountPickerGetParentGuidsOptionsBag.d.ts +33 -33
  711. package/types/ViewModels/Rest/Controls/accountPickerGetPreviewItemsOptionsBag.d.ts +36 -36
  712. package/types/ViewModels/Rest/Controls/accountPickerGetSearchedAccountsOptionsBag.d.ts +37 -37
  713. package/types/ViewModels/Rest/Controls/achievementTypePickerGetAchievementTypesOptionsBag.d.ts +29 -29
  714. package/types/ViewModels/Rest/Controls/addressControlConfigurationBag.d.ts +82 -82
  715. package/types/ViewModels/Rest/Controls/addressControlGetConfigurationOptionsBag.d.ts +34 -34
  716. package/types/ViewModels/Rest/Controls/addressControlValidateAddressOptionsBag.d.ts +49 -49
  717. package/types/ViewModels/Rest/Controls/addressControlValidateAddressResultsBag.d.ts +39 -39
  718. package/types/ViewModels/Rest/Controls/assessmentTypePickerGetAssessmentTypesOptionsBag.d.ts +31 -31
  719. package/types/ViewModels/Rest/Controls/assetStorageProviderPickerGetAssetStorageProvidersOptionsBag.d.ts +29 -29
  720. package/types/ViewModels/Rest/Controls/auditDetailGetAuditDetailsOptionsBag.d.ts +45 -45
  721. package/types/ViewModels/Rest/Controls/badgeComponentPickerGetBadgeComponentsOptionsBag.d.ts +33 -33
  722. package/types/ViewModels/Rest/Controls/badgeListGetBadgesOptionsBag.d.ts +51 -51
  723. package/types/ViewModels/Rest/Controls/badgePickerGetBadgesOptionsBag.d.ts +34 -34
  724. package/types/ViewModels/Rest/Controls/binaryFilePickerGetBinaryFilesOptionsBag.d.ts +33 -33
  725. package/types/ViewModels/Rest/Controls/binaryFileTypePickerGetBinaryFileTypesOptionsBag.d.ts +29 -29
  726. package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesOptionsBag.d.ts +39 -39
  727. package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesResultsBag.d.ts +35 -35
  728. package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsOptionsBag.d.ts +48 -48
  729. package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsResultItemBag.d.ts +43 -43
  730. package/types/ViewModels/Rest/Controls/campusPickerGetCampusesOptionsBag.d.ts +29 -29
  731. package/types/ViewModels/Rest/Controls/captchaControlConfigurationBag.d.ts +31 -31
  732. package/types/ViewModels/Rest/Controls/captchaControlTokenValidateTokenResultBag.d.ts +28 -28
  733. package/types/ViewModels/Rest/Controls/captchaControlValidateTokenOptionsBag.d.ts +27 -27
  734. package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeOptionsBag.d.ts +36 -36
  735. package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeResultsBag.d.ts +36 -36
  736. package/types/ViewModels/Rest/Controls/categorizedValuePickerNodeBag.d.ts +40 -40
  737. package/types/ViewModels/Rest/Controls/categoryPickerChildTreeItemsOptionsBag.d.ts +119 -119
  738. package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +31 -31
  739. package/types/ViewModels/Rest/Controls/connectionRequestPickerGetChildrenOptionsBag.d.ts +42 -42
  740. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemOptionsBag.d.ts +40 -40
  741. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemResultsBag.d.ts +36 -36
  742. package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetContentChannelItemsOptionsBag.d.ts +40 -40
  743. package/types/ViewModels/Rest/Controls/currencyBoxGetCurrencyInfoOptionsBag.d.ts +33 -33
  744. package/types/ViewModels/Rest/Controls/currencyBoxGetCurrencyInfoResultsBag.d.ts +31 -31
  745. package/types/ViewModels/Rest/Controls/dataViewPickerGetDataViewsOptionsBag.d.ts +86 -86
  746. package/types/ViewModels/Rest/Controls/definedValuePickerGetAttributesOptionsBag.d.ts +39 -39
  747. package/types/ViewModels/Rest/Controls/definedValuePickerGetDefinedValuesOptionsBag.d.ts +42 -42
  748. package/types/ViewModels/Rest/Controls/definedValuePickerSaveNewValueOptionsBag.d.ts +45 -45
  749. package/types/ViewModels/Rest/Controls/entityTagListAddEntityTagOptionsBag.d.ts +48 -48
  750. package/types/ViewModels/Rest/Controls/entityTagListCreatePersonalTagOptionsBag.d.ts +51 -51
  751. package/types/ViewModels/Rest/Controls/entityTagListGetAvailableTagsOptionsBag.d.ts +63 -63
  752. package/types/ViewModels/Rest/Controls/entityTagListGetEntityTagsOptionsBag.d.ts +60 -60
  753. package/types/ViewModels/Rest/Controls/entityTagListRemoveEntityTagOptionsBag.d.ts +48 -48
  754. package/types/ViewModels/Rest/Controls/entityTagListSaveTagValuesOptionsBag.d.ts +64 -64
  755. package/types/ViewModels/Rest/Controls/entityTagListTagBag.d.ts +49 -49
  756. package/types/ViewModels/Rest/Controls/entityTypePickerGetEntityTypesOptionsBag.d.ts +29 -29
  757. package/types/ViewModels/Rest/Controls/ethnicityPickerGetEthnicitiesResultsBag.d.ts +33 -33
  758. package/types/ViewModels/Rest/Controls/eventItemPickerGetEventItemsOptionsBag.d.ts +31 -31
  759. package/types/ViewModels/Rest/Controls/financialGatewayPickerGetFinancialGatewaysOptionsBag.d.ts +43 -43
  760. package/types/ViewModels/Rest/Controls/followingGetFollowingOptionsBag.d.ts +45 -45
  761. package/types/ViewModels/Rest/Controls/followingGetFollowingResponseBag.d.ts +31 -31
  762. package/types/ViewModels/Rest/Controls/followingSetFollowingOptionsBag.d.ts +48 -48
  763. package/types/ViewModels/Rest/Controls/geoPickerGetGoogleMapSettingsOptionsBag.d.ts +33 -33
  764. package/types/ViewModels/Rest/Controls/geoPickerGetSettingsOptionsBag.d.ts +33 -33
  765. package/types/ViewModels/Rest/Controls/geoPickerGoogleMapSettingsBag.d.ts +43 -43
  766. package/types/ViewModels/Rest/Controls/geoPickerSettingsBag.d.ts +40 -40
  767. package/types/ViewModels/Rest/Controls/gradePickerGetGradesOptionsBag.d.ts +34 -34
  768. package/types/ViewModels/Rest/Controls/groupAndRolePickerGetRolesOptionsBag.d.ts +33 -33
  769. package/types/ViewModels/Rest/Controls/groupMemberPickerGetGroupMembersOptionsBag.d.ts +33 -33
  770. package/types/ViewModels/Rest/Controls/groupPickerGetChildrenOptionsBag.d.ts +54 -54
  771. package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleOptionsBag.d.ts +45 -45
  772. package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleResultsBag.d.ts +39 -39
  773. package/types/ViewModels/Rest/Controls/groupRolePickerGetGroupRolesOptionsBag.d.ts +40 -40
  774. package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupTypeOfGroupOptionsBag.d.ts +33 -33
  775. package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupsOptionsBag.d.ts +33 -33
  776. package/types/ViewModels/Rest/Controls/groupTypePickerGetGroupTypesOptionsBag.d.ts +39 -39
  777. package/types/ViewModels/Rest/Controls/interactionChannelInteractionComponentPickerGetChannelFromComponentOptionsBag.d.ts +33 -33
  778. package/types/ViewModels/Rest/Controls/interactionComponentPickerGetInteractionComponentsOptionsBag.d.ts +33 -33
  779. package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +48 -48
  780. package/types/ViewModels/Rest/Controls/locationListGetLocationsOptionsBag.d.ts +42 -42
  781. package/types/ViewModels/Rest/Controls/locationListSaveNewLocationOptionsBag.d.ts +52 -52
  782. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaElementsOptionsBag.d.ts +33 -33
  783. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaFoldersOptionsBag.d.ts +33 -33
  784. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeOptionsBag.d.ts +39 -39
  785. package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeResultsBag.d.ts +45 -45
  786. package/types/ViewModels/Rest/Controls/mergeFieldPickerFormatSelectedValueOptionsBag.d.ts +28 -28
  787. package/types/ViewModels/Rest/Controls/mergeFieldPickerGetChildrenOptionsBag.d.ts +31 -31
  788. package/types/ViewModels/Rest/Controls/mergeTemplatePickerGetMergeTemplatesOptionsBag.d.ts +52 -52
  789. package/types/ViewModels/Rest/Controls/metricCategoryPickerGetChildrenOptionsBag.d.ts +48 -48
  790. package/types/ViewModels/Rest/Controls/metricItemPickerGetChildrenOptionsBag.d.ts +54 -54
  791. package/types/ViewModels/Rest/Controls/noteEditorMentionSearchOptionsBag.d.ts +37 -37
  792. package/types/ViewModels/Rest/Controls/noteEditorMentionSearchResultsBag.d.ts +30 -30
  793. package/types/ViewModels/Rest/Controls/pagePickerGetChildrenOptionsBag.d.ts +57 -57
  794. package/types/ViewModels/Rest/Controls/pagePickerGetPageNameOptionsBag.d.ts +42 -42
  795. package/types/ViewModels/Rest/Controls/pagePickerGetPageRoutesOptionsBag.d.ts +42 -42
  796. package/types/ViewModels/Rest/Controls/pagePickerGetSelectedPageHierarchyOptionsBag.d.ts +42 -42
  797. package/types/ViewModels/Rest/Controls/pageRouteValueBag.d.ts +33 -33
  798. package/types/ViewModels/Rest/Controls/personLinkGetPopupHtmlOptionsBag.d.ts +34 -34
  799. package/types/ViewModels/Rest/Controls/personPickerSearchOptionsBag.d.ts +49 -49
  800. package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationOptionsBag.d.ts +28 -28
  801. package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationResultsBag.d.ts +36 -36
  802. package/types/ViewModels/Rest/Controls/phoneNumberCountryCodeRulesConfigurationBag.d.ts +31 -31
  803. package/types/ViewModels/Rest/Controls/racePickerGetRacesResultsBag.d.ts +33 -33
  804. package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationInstancesOptionsBag.d.ts +33 -33
  805. package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationTemplateForInstanceOptionsBag.d.ts +33 -33
  806. package/types/ViewModels/Rest/Controls/registrationTemplatePickerGetChildrenOptionsBag.d.ts +42 -42
  807. package/types/ViewModels/Rest/Controls/reminderTypePickerGetReminderTypesOptionsBag.d.ts +33 -33
  808. package/types/ViewModels/Rest/Controls/reportPickerGetChildrenOptionsBag.d.ts +48 -48
  809. package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountOptionsBag.d.ts +48 -48
  810. package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountResultBag.d.ts +37 -37
  811. package/types/ViewModels/Rest/Controls/schedulePickerGetChildrenOptionsBag.d.ts +45 -45
  812. package/types/ViewModels/Rest/Controls/stepStatusPickerGetStepStatusesOptionsBag.d.ts +33 -33
  813. package/types/ViewModels/Rest/Controls/stepTypePickerGetStepTypesOptionsBag.d.ts +33 -33
  814. package/types/ViewModels/Rest/Controls/structuredContentEditorConfigurationBag.d.ts +31 -31
  815. package/types/ViewModels/Rest/Controls/structuredContentEditorGetConfigurationOptionsBag.d.ts +33 -33
  816. package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +34 -34
  817. package/types/ViewModels/Rest/Controls/universalItemTreePickerOptionsBag.d.ts +49 -49
  818. package/types/ViewModels/Rest/Controls/workflowActionTypePickerGetChildrenOptionsBag.d.ts +40 -40
  819. package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowTypeForWorkflowOptionsBag.d.ts +36 -36
  820. package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowsOptionsBag.d.ts +36 -36
  821. package/types/ViewModels/Rest/Controls/workflowTypePickerGetWorkflowTypesOptionsBag.d.ts +90 -90
  822. package/types/ViewModels/Rest/Utilities/currencyInfoBag.d.ts +34 -34
  823. package/types/ViewModels/Rest/Utilities/updatePersonPreferencesAccessedOptionsBag.d.ts +34 -34
  824. package/types/ViewModels/Rest/Utilities/updatePersonPreferencesOptionsBag.d.ts +31 -31
  825. package/types/ViewModels/Utility/currencyInfoBag.d.ts +34 -34
  826. package/types/ViewModels/Utility/debugTiming.d.ts +32 -32
  827. package/types/ViewModels/Utility/entityAuditBag.d.ts +54 -54
  828. package/types/ViewModels/Utility/listItemBag.d.ts +37 -37
  829. package/types/ViewModels/Utility/publicAttributeBag.d.ts +64 -64
  830. package/types/ViewModels/Utility/publicAttributeCategoryBag.d.ts +40 -40
  831. package/types/ViewModels/Utility/publicComparisonValueBag.d.ts +31 -31
  832. package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +132 -132
  833. package/types/ViewModels/Utility/taskActivityProgressLogBag.d.ts +31 -31
  834. package/types/ViewModels/Utility/taskActivityProgressStatusBag.d.ts +52 -52
  835. package/types/ViewModels/Utility/taskActivityProgressUpdateBag.d.ts +37 -37
  836. package/types/ViewModels/Utility/timeIntervalBag.d.ts +33 -33
  837. package/types/ViewModels/Utility/treeItemBag.d.ts +64 -64
  838. package/types/ViewModels/Utility/validPropertiesBox.d.ts +31 -31
  839. package/types/ViewModels/entity.d.ts +24 -24
  840. package/types/ViewModels/index.d.ts +22 -22
  841. package/types/Utility/bus.d.ts +0 -23
package/LICENSE.md CHANGED
@@ -1,55 +1,55 @@
1
-
2
- # Rock Community License Agreement
3
-
4
- Establishing an open innovation platform for faith-based organizations.
5
-
6
- THIS LICENSE PERMITS THE USE, REPRODUCTION, PREPARATION OF DERIVATIVE WORKS OF, PUBLIC DISPLAY, PUBLIC PERFORMANCE, SUBLICENSE, AND DISTRIBUTION OF THE WORK AND DERIVATIVE WORKS SOLELY FOR INTERNAL USE BY FAITH BASED ORGANIZATIONS. FOR ANY USE, REPRODUCTION, PREPARATION OF DERIVATIVE WORKS OF, PUBLIC DISPLAY, PUBLIC PERFORMANCE, SUBLICENSE, AND DISTRIBUTION OF THE WORK AND DERIVATIVE WORKS FOR ANY OTHER PURPOSE, PLEASE CONTACT SPARK DEVELOPMENT, INC. FOR A COMMERCIAL LICENSE AT info@sparkdevnetwork.org
7
-
8
- # 1. Definitions
9
-
10
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
13
-
14
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
15
-
16
- "Faith Based Organization" shall mean a Legal Entity that is a faith based Legal Entity approved by the Internal Revenue Services as a 501(c)(3) organization.
17
-
18
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
19
-
20
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
21
-
22
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
23
-
24
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
25
-
26
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
27
-
28
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
29
-
30
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31
-
32
- # 2. Grant of Copyright License
33
-
34
- Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form solely for internal use by Faith Based Organizations.
35
-
36
- # 3. Grant of Patent License
37
-
38
- Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work solely for internal use by Faith Based Organizations, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
39
-
40
- # 4. Redistribution
41
-
42
- You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
43
-
44
-
45
- 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
46
- 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
47
- 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
48
- 4. You may only distribute copies of the Work or Derivative Works to Faith Based Organizations for their internal use; and
49
- 5. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
50
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
51
- 6. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
52
- 7. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
53
- 8. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
54
- 9. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
55
- 10. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
1
+
2
+ # Rock Community License Agreement
3
+
4
+ Establishing an open innovation platform for faith-based organizations.
5
+
6
+ THIS LICENSE PERMITS THE USE, REPRODUCTION, PREPARATION OF DERIVATIVE WORKS OF, PUBLIC DISPLAY, PUBLIC PERFORMANCE, SUBLICENSE, AND DISTRIBUTION OF THE WORK AND DERIVATIVE WORKS SOLELY FOR INTERNAL USE BY FAITH BASED ORGANIZATIONS. FOR ANY USE, REPRODUCTION, PREPARATION OF DERIVATIVE WORKS OF, PUBLIC DISPLAY, PUBLIC PERFORMANCE, SUBLICENSE, AND DISTRIBUTION OF THE WORK AND DERIVATIVE WORKS FOR ANY OTHER PURPOSE, PLEASE CONTACT SPARK DEVELOPMENT, INC. FOR A COMMERCIAL LICENSE AT info@sparkdevnetwork.org
7
+
8
+ # 1. Definitions
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
15
+
16
+ "Faith Based Organization" shall mean a Legal Entity that is a faith based Legal Entity approved by the Internal Revenue Services as a 501(c)(3) organization.
17
+
18
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
19
+
20
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
21
+
22
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
23
+
24
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
25
+
26
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
27
+
28
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
29
+
30
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31
+
32
+ # 2. Grant of Copyright License
33
+
34
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form solely for internal use by Faith Based Organizations.
35
+
36
+ # 3. Grant of Patent License
37
+
38
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work solely for internal use by Faith Based Organizations, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
39
+
40
+ # 4. Redistribution
41
+
42
+ You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
43
+
44
+
45
+ 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
46
+ 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
47
+ 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
48
+ 4. You may only distribute copies of the Work or Derivative Works to Faith Based Organizations for their internal use; and
49
+ 5. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
50
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
51
+ 6. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
52
+ 7. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
53
+ 8. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
54
+ 9. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
55
+ 10. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/SparkDevNetwork/Rock.git"
10
10
  },
11
- "version": "1.16.5-rc.1",
11
+ "version": "1.16.6-rc.1",
12
12
  "peerDependencies": {
13
13
  "vue": "3.2.35"
14
14
  }
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardCellProps>>, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardCellProps>>, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid.js").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid.js").StandardSkeletonCellProps>>, {}>;
2
+ export default _default;
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
18
18
  type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
19
19
  default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps>>, {}>;
20
20
  };
21
+ columnType: {
22
+ type: PropType<string>;
23
+ default: string;
24
+ };
21
25
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
26
  attributes: {
23
27
  type: PropType<AttributeFieldDefinitionBag[]>;
@@ -35,10 +39,15 @@ declare const _default: import("vue").DefineComponent<{
35
39
  type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
36
40
  default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardSkeletonCellProps>>, {}>;
37
41
  };
42
+ columnType: {
43
+ type: PropType<string>;
44
+ default: string;
45
+ };
38
46
  }>>, {
39
47
  attributes: AttributeFieldDefinitionBag[];
40
48
  filter: ColumnFilter;
41
49
  __attributeColumns: boolean;
42
50
  skeletonComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
51
+ columnType: string;
43
52
  }>;
44
53
  export default _default;
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
18
18
  type: PropType<ExportValueFunction>;
19
19
  default: typeof getExportValue;
20
20
  };
21
+ columnType: {
22
+ type: PropType<string>;
23
+ default: string;
24
+ };
21
25
  name: {
22
26
  type: PropType<string>;
23
27
  default: "";
@@ -82,6 +86,10 @@ declare const _default: import("vue").DefineComponent<{
82
86
  type: PropType<string>;
83
87
  required: false;
84
88
  };
89
+ disableSort: {
90
+ type: PropType<boolean>;
91
+ default: false;
92
+ };
85
93
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
86
94
  formatComponent: {
87
95
  type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
@@ -91,6 +99,10 @@ declare const _default: import("vue").DefineComponent<{
91
99
  type: PropType<ExportValueFunction>;
92
100
  default: typeof getExportValue;
93
101
  };
102
+ columnType: {
103
+ type: PropType<string>;
104
+ default: string;
105
+ };
94
106
  name: {
95
107
  type: PropType<string>;
96
108
  default: "";
@@ -155,10 +167,16 @@ declare const _default: import("vue").DefineComponent<{
155
167
  type: PropType<string>;
156
168
  required: false;
157
169
  };
170
+ disableSort: {
171
+ type: PropType<boolean>;
172
+ default: false;
173
+ };
158
174
  }>>, {
159
175
  name: string;
176
+ columnType: string;
160
177
  formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
161
178
  exportValue: ExportValueFunction;
162
179
  visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
180
+ disableSort: boolean;
163
181
  }>;
164
182
  export default _default;
@@ -0,0 +1,206 @@
1
+ import { Component, PropType } from "vue";
2
+ import { IGridState } from "@Obsidian/Types/Controls/grid";
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * Called when the button has been clicked.
6
+ */
7
+ onClick: {
8
+ type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
9
+ required: false;
10
+ };
11
+ /**
12
+ * The icon CSS class to use as the content for the button.
13
+ */
14
+ iconClass: {
15
+ type: PropType<string>;
16
+ required: true;
17
+ };
18
+ headerClass: {
19
+ type: PropType<string>;
20
+ default: string;
21
+ };
22
+ itemClass: {
23
+ type: PropType<string>;
24
+ default: string;
25
+ };
26
+ width: {
27
+ type: PropType<string>;
28
+ default: string;
29
+ };
30
+ formatComponent: {
31
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
32
+ default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardCellProps>>, {}>;
33
+ };
34
+ columnType: {
35
+ type: PropType<string>;
36
+ default: string;
37
+ };
38
+ name: {
39
+ type: PropType<string>;
40
+ default: "";
41
+ };
42
+ title: {
43
+ type: PropType<string>;
44
+ required: false;
45
+ };
46
+ field: {
47
+ type: PropType<string>;
48
+ required: false;
49
+ };
50
+ quickFilterValue: {
51
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
52
+ required: false;
53
+ };
54
+ sortField: {
55
+ type: PropType<string>;
56
+ required: false;
57
+ };
58
+ sortValue: {
59
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
60
+ required: false;
61
+ };
62
+ filter: {
63
+ type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
64
+ required: false;
65
+ };
66
+ filterValue: {
67
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
68
+ required: false;
69
+ };
70
+ exportValue: {
71
+ type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
72
+ required: false;
73
+ };
74
+ headerComponent: {
75
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
76
+ required: false;
77
+ };
78
+ skeletonComponent: {
79
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
80
+ required: false;
81
+ };
82
+ hideOnScreen: {
83
+ type: PropType<boolean>;
84
+ required: false;
85
+ };
86
+ excludeFromExport: {
87
+ type: PropType<boolean>;
88
+ required: false;
89
+ };
90
+ visiblePriority: {
91
+ type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
92
+ default: "xs";
93
+ };
94
+ disableSort: {
95
+ type: PropType<boolean>;
96
+ default: false;
97
+ };
98
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
99
+ /**
100
+ * Called when the button has been clicked.
101
+ */
102
+ onClick: {
103
+ type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
104
+ required: false;
105
+ };
106
+ /**
107
+ * The icon CSS class to use as the content for the button.
108
+ */
109
+ iconClass: {
110
+ type: PropType<string>;
111
+ required: true;
112
+ };
113
+ headerClass: {
114
+ type: PropType<string>;
115
+ default: string;
116
+ };
117
+ itemClass: {
118
+ type: PropType<string>;
119
+ default: string;
120
+ };
121
+ width: {
122
+ type: PropType<string>;
123
+ default: string;
124
+ };
125
+ formatComponent: {
126
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
127
+ default: import("vue").DefineComponent<import("@Obsidian/Types/Controls/grid").StandardCellProps, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("@Obsidian/Types/Controls/grid").StandardCellProps>>, {}>;
128
+ };
129
+ columnType: {
130
+ type: PropType<string>;
131
+ default: string;
132
+ };
133
+ name: {
134
+ type: PropType<string>;
135
+ default: "";
136
+ };
137
+ title: {
138
+ type: PropType<string>;
139
+ required: false;
140
+ };
141
+ field: {
142
+ type: PropType<string>;
143
+ required: false;
144
+ };
145
+ quickFilterValue: {
146
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
147
+ required: false;
148
+ };
149
+ sortField: {
150
+ type: PropType<string>;
151
+ required: false;
152
+ };
153
+ sortValue: {
154
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
155
+ required: false;
156
+ };
157
+ filter: {
158
+ type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
159
+ required: false;
160
+ };
161
+ filterValue: {
162
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
163
+ required: false;
164
+ };
165
+ exportValue: {
166
+ type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
167
+ required: false;
168
+ };
169
+ headerComponent: {
170
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
171
+ required: false;
172
+ };
173
+ skeletonComponent: {
174
+ type: PropType<Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
175
+ required: false;
176
+ };
177
+ hideOnScreen: {
178
+ type: PropType<boolean>;
179
+ required: false;
180
+ };
181
+ excludeFromExport: {
182
+ type: PropType<boolean>;
183
+ required: false;
184
+ };
185
+ visiblePriority: {
186
+ type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
187
+ default: "xs";
188
+ };
189
+ disableSort: {
190
+ type: PropType<boolean>;
191
+ default: false;
192
+ };
193
+ }>>, {
194
+ name: string;
195
+ width: string;
196
+ headerClass: string;
197
+ columnType: string;
198
+ formatComponent: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
199
+ itemClass: string;
200
+ visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
201
+ disableSort: boolean;
202
+ }>;
203
+ /**
204
+ * A column that displays a single button with an icon on it.
205
+ */
206
+ export default _default;
@@ -1,151 +1,170 @@
1
+ import { PropType } from "vue";
1
2
  declare const _default: import("vue").DefineComponent<{
3
+ columnType: {
4
+ type: PropType<string>;
5
+ default: string;
6
+ };
2
7
  name: {
3
- type: import("vue").PropType<string>;
8
+ type: PropType<string>;
4
9
  default: "";
5
10
  };
6
11
  title: {
7
- type: import("vue").PropType<string>;
12
+ type: PropType<string>;
8
13
  required: false;
9
14
  };
10
15
  field: {
11
- type: import("vue").PropType<string>;
16
+ type: PropType<string>;
12
17
  required: false;
13
18
  };
14
19
  quickFilterValue: {
15
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
20
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
16
21
  required: false;
17
22
  };
18
23
  sortField: {
19
- type: import("vue").PropType<string>;
24
+ type: PropType<string>;
20
25
  required: false;
21
26
  };
22
27
  sortValue: {
23
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
28
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
24
29
  required: false;
25
30
  };
26
31
  filter: {
27
- type: import("vue").PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
32
+ type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
28
33
  required: false;
29
34
  };
30
35
  filterValue: {
31
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
36
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
32
37
  required: false;
33
38
  };
34
39
  exportValue: {
35
- type: import("vue").PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
40
+ type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
36
41
  required: false;
37
42
  };
38
43
  headerClass: {
39
- type: import("vue").PropType<string>;
44
+ type: PropType<string>;
40
45
  required: false;
41
46
  };
42
47
  itemClass: {
43
- type: import("vue").PropType<string>;
48
+ type: PropType<string>;
44
49
  required: false;
45
50
  };
46
51
  formatComponent: {
47
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
52
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
48
53
  required: false;
49
54
  };
50
55
  headerComponent: {
51
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
56
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
52
57
  required: false;
53
58
  };
54
59
  skeletonComponent: {
55
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
60
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
56
61
  required: false;
57
62
  };
58
63
  hideOnScreen: {
59
- type: import("vue").PropType<boolean>;
64
+ type: PropType<boolean>;
60
65
  required: false;
61
66
  };
62
67
  excludeFromExport: {
63
- type: import("vue").PropType<boolean>;
68
+ type: PropType<boolean>;
64
69
  required: false;
65
70
  };
66
71
  visiblePriority: {
67
- type: import("vue").PropType<"xs" | "sm" | "lg" | "xl" | "md">;
72
+ type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
68
73
  default: "xs";
69
74
  };
70
75
  width: {
71
- type: import("vue").PropType<string>;
76
+ type: PropType<string>;
72
77
  required: false;
73
78
  };
79
+ disableSort: {
80
+ type: PropType<boolean>;
81
+ default: false;
82
+ };
74
83
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
84
+ columnType: {
85
+ type: PropType<string>;
86
+ default: string;
87
+ };
75
88
  name: {
76
- type: import("vue").PropType<string>;
89
+ type: PropType<string>;
77
90
  default: "";
78
91
  };
79
92
  title: {
80
- type: import("vue").PropType<string>;
93
+ type: PropType<string>;
81
94
  required: false;
82
95
  };
83
96
  field: {
84
- type: import("vue").PropType<string>;
97
+ type: PropType<string>;
85
98
  required: false;
86
99
  };
87
100
  quickFilterValue: {
88
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
101
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
89
102
  required: false;
90
103
  };
91
104
  sortField: {
92
- type: import("vue").PropType<string>;
105
+ type: PropType<string>;
93
106
  required: false;
94
107
  };
95
108
  sortValue: {
96
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
109
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").SortValueFunction>;
97
110
  required: false;
98
111
  };
99
112
  filter: {
100
- type: import("vue").PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
113
+ type: PropType<import("@Obsidian/Types/Controls/grid").ColumnFilter>;
101
114
  required: false;
102
115
  };
103
116
  filterValue: {
104
- type: import("vue").PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
117
+ type: PropType<string | import("@Obsidian/Types/Controls/grid").FilterValueFunction>;
105
118
  required: false;
106
119
  };
107
120
  exportValue: {
108
- type: import("vue").PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
121
+ type: PropType<import("@Obsidian/Types/Controls/grid").ExportValueFunction>;
109
122
  required: false;
110
123
  };
111
124
  headerClass: {
112
- type: import("vue").PropType<string>;
125
+ type: PropType<string>;
113
126
  required: false;
114
127
  };
115
128
  itemClass: {
116
- type: import("vue").PropType<string>;
129
+ type: PropType<string>;
117
130
  required: false;
118
131
  };
119
132
  formatComponent: {
120
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
133
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
121
134
  required: false;
122
135
  };
123
136
  headerComponent: {
124
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
137
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
125
138
  required: false;
126
139
  };
127
140
  skeletonComponent: {
128
- type: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
141
+ type: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
129
142
  required: false;
130
143
  };
131
144
  hideOnScreen: {
132
- type: import("vue").PropType<boolean>;
145
+ type: PropType<boolean>;
133
146
  required: false;
134
147
  };
135
148
  excludeFromExport: {
136
- type: import("vue").PropType<boolean>;
149
+ type: PropType<boolean>;
137
150
  required: false;
138
151
  };
139
152
  visiblePriority: {
140
- type: import("vue").PropType<"xs" | "sm" | "lg" | "xl" | "md">;
153
+ type: PropType<"xs" | "sm" | "lg" | "xl" | "md">;
141
154
  default: "xs";
142
155
  };
143
156
  width: {
144
- type: import("vue").PropType<string>;
157
+ type: PropType<string>;
145
158
  required: false;
146
159
  };
160
+ disableSort: {
161
+ type: PropType<boolean>;
162
+ default: false;
163
+ };
147
164
  }>>, {
148
165
  name: string;
166
+ columnType: string;
149
167
  visiblePriority: "xs" | "sm" | "lg" | "xl" | "md";
168
+ disableSort: boolean;
150
169
  }>;
151
170
  export default _default;