@rockrms/obsidian-framework 1.16.3-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -0
- package/tsconfig.base.json +7 -0
- package/types/Controls/Grid/Cells/booleanCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/currencyCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/currencySkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateTimeCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateTimeSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/deleteCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/editCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/labelCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/labelSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberBadgeCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberBadgeSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/personCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/personSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/reorderCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/securityCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/selectCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/selectHeaderCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/textCell.partial.d.ts +28 -0
- package/types/Controls/Grid/Cells/textSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +44 -0
- package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +164 -0
- package/types/Controls/Grid/Columns/column.partial.d.ts +151 -0
- package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +165 -0
- package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +177 -0
- package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +177 -0
- package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +206 -0
- package/types/Controls/Grid/Columns/editColumn.partial.d.ts +170 -0
- package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +225 -0
- package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +341 -0
- package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +165 -0
- package/types/Controls/Grid/Columns/personColumn.partial.d.ts +185 -0
- package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +176 -0
- package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +196 -0
- package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +157 -0
- package/types/Controls/Grid/Columns/textColumn.partial.d.ts +217 -0
- package/types/Controls/Grid/Filters/booleanFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/dateFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/numberFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/pickExistingFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/textFilter.partial.obs.d.ts +6 -0
- package/types/Controls/Grid/actionButton.partial.obs.d.ts +30 -0
- package/types/Controls/Grid/actionGroup.partial.obs.d.ts +32 -0
- package/types/Controls/Grid/columnHeaderCell.partial.obs.d.ts +66 -0
- package/types/Controls/Grid/columnHeaderRow.partial.obs.d.ts +95 -0
- package/types/Controls/Grid/dataCell.partial.obs.d.ts +52 -0
- package/types/Controls/Grid/dataRow.partial.obs.d.ts +95 -0
- package/types/Controls/Grid/dataRows.partial.obs.d.ts +70 -0
- package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +76 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +546 -0
- package/types/Controls/Grid/lightFooterRow.partial.obs.d.ts +34 -0
- package/types/Controls/Grid/pagePicker.partial.obs.d.ts +31 -0
- package/types/Controls/Grid/pageSizePicker.partial.obs.d.ts +41 -0
- package/types/Controls/Grid/pagerRow.partial.obs.d.ts +73 -0
- package/types/Controls/Grid/popupActionButton.partial.obs.d.ts +34 -0
- package/types/Controls/Grid/popupActionGroup.partial.obs.d.ts +28 -0
- package/types/Controls/Grid/skeletonCell.partial.obs.d.ts +26 -0
- package/types/Controls/Grid/skeletonRow.partial.obs.d.ts +46 -0
- package/types/Controls/Grid/skeletonRows.partial.obs.d.ts +44 -0
- package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +70 -0
- package/types/Controls/Grid/virtualScroller.partial.d.ts +172 -0
- package/types/Controls/Internal/nmiGatewayControl.obs.d.ts +38 -0
- package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +30 -0
- package/types/Controls/Internal/pageDebugTimings.obs.d.ts +14 -0
- package/types/Controls/Internal/tag.obs.d.ts +30 -0
- package/types/Controls/Internal/testGatewayControl.obs.d.ts +24 -0
- package/types/Controls/Internal/treeListItem.obs.d.ts +80 -0
- package/types/Controls/accountPicker.obs.d.ts +128 -0
- package/types/Controls/achievementTypePicker.obs.d.ts +130 -0
- package/types/Controls/addressControl.obs.d.ts +110 -0
- package/types/Controls/assessmentTypePicker.obs.d.ts +139 -0
- package/types/Controls/assetStorageProviderPicker.obs.d.ts +130 -0
- package/types/Controls/attributeEditor.obs.d.ts +83 -0
- package/types/Controls/attributeValuesContainer.obs.d.ts +142 -0
- package/types/Controls/auditDetail.obs.d.ts +37 -0
- package/types/Controls/badgeComponentPicker.obs.d.ts +139 -0
- package/types/Controls/badgeList.obs.d.ts +41 -0
- package/types/Controls/badgePicker.obs.d.ts +139 -0
- package/types/Controls/baseAsyncPicker.obs.d.ts +178 -0
- package/types/Controls/basicTimePicker.obs.d.ts +38 -0
- package/types/Controls/binaryFilePicker.obs.d.ts +138 -0
- package/types/Controls/binaryFileTypePicker.obs.d.ts +130 -0
- package/types/Controls/birthdayPicker.obs.d.ts +2 -0
- package/types/Controls/blockTemplatePicker.obs.d.ts +93 -0
- package/types/Controls/buttonDropDownList.obs.d.ts +108 -0
- package/types/Controls/buttonGroup.obs.d.ts +114 -0
- package/types/Controls/cacheabilityPicker.obs.d.ts +18 -0
- package/types/Controls/campusAccountAmountPicker.obs.d.ts +257 -0
- package/types/Controls/campusPicker.obs.d.ts +178 -0
- package/types/Controls/captcha.obs.d.ts +82 -0
- package/types/Controls/categorizedValuePicker.obs.d.ts +85 -0
- package/types/Controls/categorizedValuePickerDropDownLevel.obs.d.ts +85 -0
- package/types/Controls/categoryPicker.obs.d.ts +60 -0
- package/types/Controls/checkBox.obs.d.ts +51 -0
- package/types/Controls/checkBoxList.obs.d.ts +88 -0
- package/types/Controls/codeEditor.obs.d.ts +89 -0
- package/types/Controls/colorPicker.obs.d.ts +27 -0
- package/types/Controls/colorSelector.obs.d.ts +110 -0
- package/types/Controls/componentFromUrl.obs.d.ts +13 -0
- package/types/Controls/componentPicker.obs.d.ts +139 -0
- package/types/Controls/connectionRequestPicker.obs.d.ts +36 -0
- package/types/Controls/connectionStatus.obs.d.ts +28 -0
- package/types/Controls/contentChannelItemPicker.obs.d.ts +153 -0
- package/types/Controls/contentDropDownPicker.obs.d.ts +404 -0
- package/types/Controls/copyButton.obs.d.ts +42 -0
- package/types/Controls/countdownTimer.obs.d.ts +19 -0
- package/types/Controls/currencyBox.obs.d.ts +33 -0
- package/types/Controls/dataViewPicker.obs.d.ts +147 -0
- package/types/Controls/datePartsPicker.obs.d.ts +86 -0
- package/types/Controls/datePicker.obs.d.ts +185 -0
- package/types/Controls/datePickerBase.obs.d.ts +148 -0
- package/types/Controls/dateRangePicker.obs.d.ts +30 -0
- package/types/Controls/dateTimePicker.obs.d.ts +58 -0
- package/types/Controls/dayOfWeekPicker.obs.d.ts +28 -0
- package/types/Controls/definedValuePicker.obs.d.ts +158 -0
- package/types/Controls/dialog.obs.d.ts +36 -0
- package/types/Controls/dropDownContent.obs.d.ts +49 -0
- package/types/Controls/dropDownList.obs.d.ts +191 -0
- package/types/Controls/dropDownMenu.obs.d.ts +45 -0
- package/types/Controls/electronicSignature.obs.d.ts +55 -0
- package/types/Controls/emailBox.obs.d.ts +40 -0
- package/types/Controls/entityTypePicker.obs.d.ts +139 -0
- package/types/Controls/ethnicityPicker.obs.d.ts +132 -0
- package/types/Controls/eventCalendarPicker.obs.d.ts +132 -0
- package/types/Controls/eventItemPicker.obs.d.ts +139 -0
- package/types/Controls/fieldFilterContainer.obs.d.ts +19 -0
- package/types/Controls/fieldFilterEditor.obs.d.ts +46 -0
- package/types/Controls/fieldFilterRuleRow.obs.d.ts +30 -0
- package/types/Controls/fieldTypeEditor.obs.d.ts +38 -0
- package/types/Controls/fieldTypePicker.obs.d.ts +130 -0
- package/types/Controls/fileUploader.obs.d.ts +55 -0
- package/types/Controls/financialGatewayPicker.obs.d.ts +148 -0
- package/types/Controls/financialStatementTemplatePicker.obs.d.ts +130 -0
- package/types/Controls/following.obs.d.ts +37 -0
- package/types/Controls/fullscreen.obs.d.ts +47 -0
- package/types/Controls/gatewayControl.obs.d.ts +41 -0
- package/types/Controls/genderDropDownList.obs.d.ts +21 -0
- package/types/Controls/geoPicker.obs.d.ts +149 -0
- package/types/Controls/geoPickerMap.obs.d.ts +105 -0
- package/types/Controls/gradePicker.obs.d.ts +148 -0
- package/types/Controls/grid.d.ts +54 -0
- package/types/Controls/groupAndRolePicker.obs.d.ts +183 -0
- package/types/Controls/groupMemberPicker.obs.d.ts +139 -0
- package/types/Controls/groupPicker.obs.d.ts +72 -0
- package/types/Controls/groupRolePicker.obs.d.ts +157 -0
- package/types/Controls/groupTypeGroupPicker.obs.d.ts +165 -0
- package/types/Controls/groupTypePicker.obs.d.ts +165 -0
- package/types/Controls/helpBlock.obs.d.ts +13 -0
- package/types/Controls/imageEditor.obs.d.ts +145 -0
- package/types/Controls/imageUploader.obs.d.ts +64 -0
- package/types/Controls/inlineCheckBox.obs.d.ts +25 -0
- package/types/Controls/inlineRangeSlider.obs.d.ts +54 -0
- package/types/Controls/inlineSwitch.obs.d.ts +44 -0
- package/types/Controls/inputGroupDropDown.obs.d.ts +29 -0
- package/types/Controls/interactionChannelInteractionComponentPicker.obs.d.ts +39 -0
- package/types/Controls/interactionChannelPicker.obs.d.ts +130 -0
- package/types/Controls/interactionComponentPicker.obs.d.ts +139 -0
- package/types/Controls/intervalPicker.obs.d.ts +87 -0
- package/types/Controls/itemsWithPreAndPostHtml.obs.d.ts +22 -0
- package/types/Controls/javaScriptAnchor.obs.d.ts +9 -0
- package/types/Controls/keyValueList.obs.d.ts +62 -0
- package/types/Controls/kpi.obs.d.ts +85 -0
- package/types/Controls/lavaCommandPicker.obs.d.ts +130 -0
- package/types/Controls/listBox.obs.d.ts +65 -0
- package/types/Controls/listItems.obs.d.ts +29 -0
- package/types/Controls/loading.obs.d.ts +32 -0
- package/types/Controls/loadingIndicator.obs.d.ts +28 -0
- package/types/Controls/locationAddressPicker.obs.d.ts +83 -0
- package/types/Controls/locationItemPicker.obs.d.ts +52 -0
- package/types/Controls/locationList.obs.d.ts +175 -0
- package/types/Controls/locationPicker.obs.d.ts +32 -0
- package/types/Controls/mediaElementPicker.obs.d.ts +217 -0
- package/types/Controls/mediaSelector.obs.d.ts +107 -0
- package/types/Controls/mergeFieldPicker.obs.d.ts +90 -0
- package/types/Controls/mergeTemplatePicker.obs.d.ts +38 -0
- package/types/Controls/metricCategoryPicker.obs.d.ts +37 -0
- package/types/Controls/metricItemPicker.obs.d.ts +46 -0
- package/types/Controls/modal.obs.d.ts +114 -0
- package/types/Controls/modalAlert.obs.d.ts +48 -0
- package/types/Controls/monthDayPicker.obs.d.ts +18 -0
- package/types/Controls/monthYearPicker.obs.d.ts +18 -0
- package/types/Controls/noteTextEditor.obs.d.ts +96 -0
- package/types/Controls/notificationBox.obs.d.ts +49 -0
- package/types/Controls/numberBox.obs.d.ts +89 -0
- package/types/Controls/numberRangeBox.obs.d.ts +43 -0
- package/types/Controls/numberUpDown.obs.d.ts +93 -0
- package/types/Controls/numberUpDownBase.obs.d.ts +45 -0
- package/types/Controls/numberUpDownGroup.obs.d.ts +26 -0
- package/types/Controls/pagePicker.obs.d.ts +134 -0
- package/types/Controls/panel.obs.d.ts +153 -0
- package/types/Controls/personLink.obs.d.ts +60 -0
- package/types/Controls/personPicker.obs.d.ts +76 -0
- package/types/Controls/phoneNumberBox.obs.d.ts +92 -0
- package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +80 -0
- package/types/Controls/popOver.obs.d.ts +85 -0
- package/types/Controls/progressBar.obs.d.ts +13 -0
- package/types/Controls/progressTracker.obs.d.ts +29 -0
- package/types/Controls/progressTrackerSegment.obs.d.ts +46 -0
- package/types/Controls/racePicker.obs.d.ts +132 -0
- package/types/Controls/radioButtonList.obs.d.ts +98 -0
- package/types/Controls/rangeSlider.obs.d.ts +102 -0
- package/types/Controls/rating.obs.d.ts +32 -0
- package/types/Controls/registrationInstanceBasePicker.obs.d.ts +143 -0
- package/types/Controls/registrationInstancePicker.obs.d.ts +39 -0
- package/types/Controls/registrationTemplatePicker.obs.d.ts +28 -0
- package/types/Controls/registryEntry.obs.d.ts +85 -0
- package/types/Controls/reminderTypePicker.obs.d.ts +143 -0
- package/types/Controls/remoteAuthsPicker.obs.d.ts +130 -0
- package/types/Controls/reportPicker.obs.d.ts +52 -0
- package/types/Controls/rockAttributeFilter.obs.d.ts +52 -0
- package/types/Controls/rockButton.obs.d.ts +115 -0
- package/types/Controls/rockField.obs.d.ts +73 -0
- package/types/Controls/rockForm.obs.d.ts +68 -0
- package/types/Controls/rockFormField.obs.d.ts +82 -0
- package/types/Controls/rockFormFieldError.obs.d.ts +21 -0
- package/types/Controls/rockLabel.obs.d.ts +22 -0
- package/types/Controls/rockLiteral.obs.d.ts +31 -0
- package/types/Controls/rockSuspense.obs.d.ts +42 -0
- package/types/Controls/rockValidation.obs.d.ts +16 -0
- package/types/Controls/saveFinancialAccountForm.obs.d.ts +36 -0
- package/types/Controls/scheduleBuilder.obs.d.ts +69 -0
- package/types/Controls/schedulePicker.obs.d.ts +28 -0
- package/types/Controls/sectionContainer.obs.d.ts +54 -0
- package/types/Controls/sectionHeader.obs.d.ts +40 -0
- package/types/Controls/skeleton.obs.d.ts +9 -0
- package/types/Controls/slidingDateRangePicker.obs.d.ts +46 -0
- package/types/Controls/socialSecurityNumberBox.obs.d.ts +23 -0
- package/types/Controls/standardFilterDaysBack.obs.d.ts +66 -0
- package/types/Controls/staticFormControl.obs.d.ts +12 -0
- package/types/Controls/stepProgramPicker.obs.d.ts +130 -0
- package/types/Controls/stepProgramStepStatusPicker.obs.d.ts +50 -0
- package/types/Controls/stepProgramStepTypePicker.obs.d.ts +50 -0
- package/types/Controls/stepStatusPicker.obs.d.ts +139 -0
- package/types/Controls/stepTypePicker.obs.d.ts +139 -0
- package/types/Controls/streakTypePicker.obs.d.ts +130 -0
- package/types/Controls/structuredContentEditor.obs.d.ts +93 -0
- package/types/Controls/switch.obs.d.ts +27 -0
- package/types/Controls/tabbedBar.obs.d.ts +42 -0
- package/types/Controls/tabbedContent.obs.d.ts +22 -0
- package/types/Controls/tagList.obs.d.ts +116 -0
- package/types/Controls/textBox.obs.d.ts +117 -0
- package/types/Controls/timeIntervalPicker.obs.d.ts +67 -0
- package/types/Controls/timePicker.obs.d.ts +78 -0
- package/types/Controls/toggle.obs.d.ts +71 -0
- package/types/Controls/transitionVerticalCollapse.obs.d.ts +22 -0
- package/types/Controls/treeItemPicker.obs.d.ts +132 -0
- package/types/Controls/treeList.obs.d.ts +90 -0
- package/types/Controls/urlLinkBox.obs.d.ts +31 -0
- package/types/Controls/valueDetailList.obs.d.ts +14 -0
- package/types/Controls/valueList.obs.d.ts +56 -0
- package/types/Controls/wordCloud.obs.d.ts +233 -0
- package/types/Controls/workflowActionTypePicker.obs.d.ts +18 -0
- package/types/Controls/workflowBasePicker.obs.d.ts +139 -0
- package/types/Controls/workflowPicker.obs.d.ts +39 -0
- package/types/Controls/workflowTypePicker.obs.d.ts +94 -0
- package/types/Core/Controls/financialGateway.d.ts +16 -0
- package/types/Core/Controls/grid.d.ts +406 -0
- package/types/Core/Controls/valueDetailListItemBuilder.d.ts +30 -0
- package/types/Core/Core/personPreferences.d.ts +92 -0
- package/types/Core/Reporting/comparisonType.d.ts +39 -0
- package/types/Core/Reporting/comparisonTypeOptions.d.ts +14 -0
- package/types/Core/Reporting/filterExpressionType.d.ts +28 -0
- package/types/Core/Reporting/filterMode.d.ts +7 -0
- package/types/Core/Utilities/colorPair.d.ts +25 -0
- package/types/Core/Utilities/rockColor.d.ts +270 -0
- package/types/Directives/dragDrop.d.ts +130 -0
- package/types/Directives/dragScroll.d.ts +28 -0
- package/types/Enums/AI/chatMessageRole.d.ts +13 -0
- package/types/Enums/AI/moderationFlags.d.ts +21 -0
- package/types/Enums/Blocks/Cms/ContentCollectionView/searchOrder.d.ts +20 -0
- package/types/Enums/Blocks/Crm/FamilyPreRegistration/communicationPreference.d.ts +15 -0
- package/types/Enums/Blocks/Crm/familyPreRegistrationCommunicationPreference.d.ts +15 -0
- package/types/Enums/Blocks/Engagement/SignUp/registerMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailDateSelectionMode.d.ts +15 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailLocationSelectionMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailScheduleSelectionMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/Scheduling/resourceListSourceType.d.ts +19 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxActionType.d.ts +16 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType.d.ts +15 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowConfirmationStatus.d.ts +15 -0
- package/types/Enums/Blocks/Group/Scheduling/updateSchedulePreferenceMode.d.ts +19 -0
- package/types/Enums/Blocks/Security/AccountEntry/accountEntryStep.d.ts +19 -0
- package/types/Enums/Blocks/Security/ConfirmAccount/confirmAccountViewType.d.ts +17 -0
- package/types/Enums/Blocks/Security/ForgotUserName/sendInstructionsResultType.d.ts +16 -0
- package/types/Enums/Blocks/Security/Login/loginMethod.d.ts +11 -0
- package/types/Enums/Blocks/Security/Login/passwordlessLoginStep.d.ts +11 -0
- package/types/Enums/Cms/blockLocation.d.ts +15 -0
- package/types/Enums/Cms/botGuardianLevel.d.ts +13 -0
- package/types/Enums/Cms/contentChannelDateType.d.ts +13 -0
- package/types/Enums/Cms/contentChannelItemStatus.d.ts +13 -0
- package/types/Enums/Cms/contentCollectionFilterControl.d.ts +25 -0
- package/types/Enums/Cms/contentControlType.d.ts +11 -0
- package/types/Enums/Cms/contentLibraryItemExperienceLevel.d.ts +13 -0
- package/types/Enums/Cms/displayInNavWhen.d.ts +13 -0
- package/types/Enums/Cms/persistedDatasetDataFormat.d.ts +9 -0
- package/types/Enums/Cms/persistedDatasetScriptType.d.ts +9 -0
- package/types/Enums/Cms/siteType.d.ts +13 -0
- package/types/Enums/Cms/tagType.d.ts +11 -0
- package/types/Enums/Communication/communicationMessageFilter.d.ts +13 -0
- package/types/Enums/Communication/communicationRecipientStatus.d.ts +19 -0
- package/types/Enums/Communication/communicationStatus.d.ts +20 -0
- package/types/Enums/Communication/notificationClassification.d.ts +15 -0
- package/types/Enums/Communication/segmentCriteria.d.ts +11 -0
- package/types/Enums/Connection/connectionRequestViewModelSortProperty.d.ts +41 -0
- package/types/Enums/Connection/connectionTypeViewMode.d.ts +11 -0
- package/types/Enums/Connection/connectionWorkflowTriggerType.d.ts +27 -0
- package/types/Enums/Connection/groupRequirementsFilter.d.ts +13 -0
- package/types/Enums/Controls/alertType.d.ts +12 -0
- package/types/Enums/Controls/btnSize.d.ts +11 -0
- package/types/Enums/Controls/btnType.d.ts +17 -0
- package/types/Enums/Controls/controlLazyMode.d.ts +18 -0
- package/types/Enums/Controls/dayOfWeek.d.ts +21 -0
- package/types/Enums/Controls/detailPanelMode.d.ts +13 -0
- package/types/Enums/Controls/gatewayEmitStrings.d.ts +11 -0
- package/types/Enums/Controls/mediaSelectorMode.d.ts +11 -0
- package/types/Enums/Controls/mergeTemplateOwnership.d.ts +28 -0
- package/types/Enums/Controls/modalAlertType.d.ts +9 -0
- package/types/Enums/Controls/pickerDisplayStyle.d.ts +11 -0
- package/types/Enums/Controls/requirementLevel.d.ts +24 -0
- package/types/Enums/Controls/rockCacheabilityType.d.ts +10 -0
- package/types/Enums/Controls/slidingDateRangeType.d.ts +21 -0
- package/types/Enums/Controls/timeUnitType.d.ts +17 -0
- package/types/Enums/Core/Grid/booleanFilterMethod.d.ts +13 -0
- package/types/Enums/Core/Grid/columnPositionAnchor.d.ts +20 -0
- package/types/Enums/Core/Grid/dateFilterMethod.d.ts +79 -0
- package/types/Enums/Core/Grid/numberFilterMethod.d.ts +30 -0
- package/types/Enums/Core/Grid/pickExistingFilterMethod.d.ts +11 -0
- package/types/Enums/Core/Grid/textFilterMethod.d.ts +19 -0
- package/types/Enums/Core/addressInvalidReason.d.ts +13 -0
- package/types/Enums/Core/auditType.d.ts +13 -0
- package/types/Enums/Core/cameraBarcodeConfiguration.d.ts +15 -0
- package/types/Enums/Core/changeType.d.ts +10 -0
- package/types/Enums/Core/colorDepth.d.ts +19 -0
- package/types/Enums/Core/colorRecipe.d.ts +19 -0
- package/types/Enums/Core/colorScheme.d.ts +11 -0
- package/types/Enums/Core/followingSuggestedStatus.d.ts +13 -0
- package/types/Enums/Core/format.d.ts +25 -0
- package/types/Enums/Core/jobNotificationStatus.d.ts +15 -0
- package/types/Enums/Core/keyboardInputMode.d.ts +21 -0
- package/types/Enums/Core/kioskType.d.ts +13 -0
- package/types/Enums/Core/matchFlag.d.ts +17 -0
- package/types/Enums/Core/moveType.d.ts +15 -0
- package/types/Enums/Core/ncoaType.d.ts +15 -0
- package/types/Enums/Core/noteApprovalStatus.d.ts +15 -0
- package/types/Enums/Core/noteFormatType.d.ts +19 -0
- package/types/Enums/Core/notificationMessageActionType.d.ts +28 -0
- package/types/Enums/Core/printFrom.d.ts +11 -0
- package/types/Enums/Core/printTo.d.ts +13 -0
- package/types/Enums/Core/processed.d.ts +17 -0
- package/types/Enums/Core/resolution.d.ts +17 -0
- package/types/Enums/Core/signatureDocumentStatus.d.ts +17 -0
- package/types/Enums/Core/signatureType.d.ts +11 -0
- package/types/Enums/Core/specialRole.d.ts +15 -0
- package/types/Enums/Core/timeIntervalUnit.d.ts +19 -0
- package/types/Enums/Core/updatedAddressType.d.ts +13 -0
- package/types/Enums/Crm/ageBracket.d.ts +27 -0
- package/types/Enums/Crm/ageClassification.d.ts +13 -0
- package/types/Enums/Crm/assessmentRequestStatus.d.ts +20 -0
- package/types/Enums/Crm/authenticationServiceType.d.ts +11 -0
- package/types/Enums/Crm/emailPreference.d.ts +13 -0
- package/types/Enums/Crm/gender.d.ts +13 -0
- package/types/Enums/Crm/personalizationType.d.ts +11 -0
- package/types/Enums/Engagement/streakOccurrenceFrequency.d.ts +15 -0
- package/types/Enums/Engagement/streakStructureType.d.ts +25 -0
- package/types/Enums/Event/attendanceGraphBy.d.ts +17 -0
- package/types/Enums/Event/attendanceStatus.d.ts +13 -0
- package/types/Enums/Event/checkInStatus.d.ts +24 -0
- package/types/Enums/Event/interactiveExperienceApprovalStatus.d.ts +13 -0
- package/types/Enums/Event/interactiveExperienceCampusBehavior.d.ts +29 -0
- package/types/Enums/Event/interactiveExperiencePushNotificationType.d.ts +25 -0
- package/types/Enums/Event/registrantsSameFamily.d.ts +13 -0
- package/types/Enums/Event/registrarOption.d.ts +18 -0
- package/types/Enums/Event/registrationCostSummaryType.d.ts +12 -0
- package/types/Enums/Event/registrationFeeType.d.ts +11 -0
- package/types/Enums/Event/registrationFieldSource.d.ts +15 -0
- package/types/Enums/Event/registrationPersonFieldType.d.ts +38 -0
- package/types/Enums/Event/rsvp.d.ts +18 -0
- package/types/Enums/Event/scheduledAttendanceItemMatchesPreference.d.ts +13 -0
- package/types/Enums/Event/scheduledAttendanceItemStatus.d.ts +15 -0
- package/types/Enums/Event/schedulerResourceGroupMemberFilterType.d.ts +11 -0
- package/types/Enums/Event/sessionStatus.d.ts +13 -0
- package/types/Enums/Event/signatureDocumentAction.d.ts +11 -0
- package/types/Enums/Finance/alertType.d.ts +11 -0
- package/types/Enums/Finance/batchStatus.d.ts +22 -0
- package/types/Enums/Finance/benevolenceWorkflowTriggerType.d.ts +15 -0
- package/types/Enums/Finance/financialScheduledTransactionStatus.d.ts +19 -0
- package/types/Enums/Finance/mICRStatus.d.ts +14 -0
- package/types/Enums/Finance/transactionGraphBy.d.ts +13 -0
- package/types/Enums/Group/appliesToAgeClassification.d.ts +13 -0
- package/types/Enums/Group/attendanceRecordRequiredForCheckIn.d.ts +13 -0
- package/types/Enums/Group/attendanceRule.d.ts +16 -0
- package/types/Enums/Group/dueDateType.d.ts +15 -0
- package/types/Enums/Group/groupCapacityRule.d.ts +13 -0
- package/types/Enums/Group/groupMemberStatus.d.ts +13 -0
- package/types/Enums/Group/meetsGroupRequirement.d.ts +14 -0
- package/types/Enums/Group/participationType.d.ts +11 -0
- package/types/Enums/Group/requirementCheckType.d.ts +13 -0
- package/types/Enums/Group/scheduleConfirmationLogic.d.ts +11 -0
- package/types/Enums/Net/cookieSameSiteMode.d.ts +36 -0
- package/types/Enums/Net/responseElementLocation.d.ts +20 -0
- package/types/Enums/Reporting/comparisonType.d.ts +40 -0
- package/types/Enums/Reporting/fieldFilterSourceType.d.ts +21 -0
- package/types/Enums/Reporting/filterExpressionType.d.ts +17 -0
- package/types/Enums/Reporting/metricNumericDataType.d.ts +13 -0
- package/types/Enums/Reporting/metricValueType.d.ts +11 -0
- package/types/Enums/Reporting/reportFieldType.d.ts +10 -0
- package/types/Enums/Reporting/unitType.d.ts +13 -0
- package/types/Enums/Workflow/workflowActionFormPersonEntryOption.d.ts +13 -0
- package/types/Enums/Workflow/workflowActionFormShowHideOption.d.ts +11 -0
- package/types/Enums/Workflow/workflowLoggingLevel.d.ts +15 -0
- package/types/Enums/Workflow/workflowTriggerType.d.ts +19 -0
- package/types/Enums/Workflow/workflowTriggerValueChangeType.d.ts +11 -0
- package/types/FieldTypes/addressField.partial.d.ts +19 -0
- package/types/FieldTypes/addressFieldComponents.d.ts +39 -0
- package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -0
- package/types/FieldTypes/backgroundCheckFieldComponents.d.ts +71 -0
- package/types/FieldTypes/booleanField.partial.d.ts +19 -0
- package/types/FieldTypes/booleanFieldComponents.d.ts +107 -0
- package/types/FieldTypes/campusField.partial.d.ts +29 -0
- package/types/FieldTypes/campusFieldComponents.d.ts +99 -0
- package/types/FieldTypes/campusesField.partial.d.ts +26 -0
- package/types/FieldTypes/campusesFieldComponents.d.ts +72 -0
- package/types/FieldTypes/categoriesField.partial.d.ts +16 -0
- package/types/FieldTypes/categoriesFieldComponents.d.ts +66 -0
- package/types/FieldTypes/categorizedDefinedValueField.partial.d.ts +18 -0
- package/types/FieldTypes/categorizedDefinedValueFieldComponents.d.ts +70 -0
- package/types/FieldTypes/categoryField.partial.d.ts +16 -0
- package/types/FieldTypes/categoryFieldComponents.d.ts +66 -0
- package/types/FieldTypes/checkListField.partial.d.ts +21 -0
- package/types/FieldTypes/checkListFieldComponents.d.ts +93 -0
- package/types/FieldTypes/colorField.partial.d.ts +9 -0
- package/types/FieldTypes/colorFieldComponents.d.ts +69 -0
- package/types/FieldTypes/colorSelectorComponents.d.ts +73 -0
- package/types/FieldTypes/colorSelectorField.partial.d.ts +12 -0
- package/types/FieldTypes/colorSelectorField.types.partial.d.ts +4 -0
- package/types/FieldTypes/colorSelectorField.utils.partial.d.ts +23 -0
- package/types/FieldTypes/communicationPreferenceField.partial.d.ts +15 -0
- package/types/FieldTypes/communicationPreferenceFieldComponents.d.ts +70 -0
- package/types/FieldTypes/connectionTypeField.partial.d.ts +13 -0
- package/types/FieldTypes/connectionTypeFieldComponents.d.ts +35 -0
- package/types/FieldTypes/connectionTypesField.partial.d.ts +13 -0
- package/types/FieldTypes/connectionTypesFieldComponents.d.ts +36 -0
- package/types/FieldTypes/currencyField.partial.d.ts +12 -0
- package/types/FieldTypes/currencyFieldComponents.d.ts +31 -0
- package/types/FieldTypes/dateField.partial.d.ts +49 -0
- package/types/FieldTypes/dateFieldComponents.d.ts +123 -0
- package/types/FieldTypes/dateRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/dateRangeFieldComponents.d.ts +31 -0
- package/types/FieldTypes/dateTimeField.partial.d.ts +38 -0
- package/types/FieldTypes/dateTimeFieldComponents.d.ts +113 -0
- package/types/FieldTypes/dayOfWeekField.partial.d.ts +11 -0
- package/types/FieldTypes/dayOfWeekFieldComponents.d.ts +59 -0
- package/types/FieldTypes/daysOfWeekField.partial.d.ts +12 -0
- package/types/FieldTypes/daysOfWeekFieldComponents.d.ts +34 -0
- package/types/FieldTypes/decimalField.partial.d.ts +12 -0
- package/types/FieldTypes/decimalFieldComponents.d.ts +31 -0
- package/types/FieldTypes/decimalRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/decimalRangeFieldComponents.d.ts +32 -0
- package/types/FieldTypes/definedValueField.partial.d.ts +70 -0
- package/types/FieldTypes/definedValueFieldComponents.d.ts +105 -0
- package/types/FieldTypes/definedValueRangeField.partial.d.ts +25 -0
- package/types/FieldTypes/definedValueRangeFieldComponents.d.ts +36 -0
- package/types/FieldTypes/emailField.partial.d.ts +13 -0
- package/types/FieldTypes/emailFieldComponents.d.ts +61 -0
- package/types/FieldTypes/fieldType.d.ts +25 -0
- package/types/FieldTypes/fileField.partial.d.ts +28 -0
- package/types/FieldTypes/fileFieldComponents.d.ts +62 -0
- package/types/FieldTypes/financialAccountField.partial.d.ts +17 -0
- package/types/FieldTypes/financialAccountFieldComponents.d.ts +62 -0
- package/types/FieldTypes/financialAccountsField.partial.d.ts +17 -0
- package/types/FieldTypes/financialAccountsFieldComponents.d.ts +62 -0
- package/types/FieldTypes/genderField.partial.d.ts +10 -0
- package/types/FieldTypes/genderFieldComponents.d.ts +57 -0
- package/types/FieldTypes/groupAndRoleField.partial.d.ts +21 -0
- package/types/FieldTypes/groupAndRoleFieldComponents.d.ts +72 -0
- package/types/FieldTypes/groupField.partial.d.ts +11 -0
- package/types/FieldTypes/groupFieldComponents.d.ts +35 -0
- package/types/FieldTypes/groupLocationTypeField.partial.d.ts +15 -0
- package/types/FieldTypes/groupLocationTypeFieldComponents.d.ts +65 -0
- package/types/FieldTypes/groupMemberField.partial.d.ts +16 -0
- package/types/FieldTypes/groupMemberFieldComponents.d.ts +64 -0
- package/types/FieldTypes/groupRoleField.partial.d.ts +14 -0
- package/types/FieldTypes/groupRoleFieldComponents.d.ts +64 -0
- package/types/FieldTypes/groupTypeField.partial.d.ts +15 -0
- package/types/FieldTypes/groupTypeFieldComponents.d.ts +59 -0
- package/types/FieldTypes/groupTypesField.partial.d.ts +15 -0
- package/types/FieldTypes/groupTypesFieldComponents.d.ts +55 -0
- package/types/FieldTypes/imageField.partial.d.ts +31 -0
- package/types/FieldTypes/imageFieldComponents.d.ts +63 -0
- package/types/FieldTypes/index.d.ts +1 -0
- package/types/FieldTypes/integerField.partial.d.ts +12 -0
- package/types/FieldTypes/integerFieldComponents.d.ts +31 -0
- package/types/FieldTypes/integerRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/integerRangeFieldComponents.d.ts +32 -0
- package/types/FieldTypes/keyValueListField.partial.d.ts +31 -0
- package/types/FieldTypes/keyValueListFieldComponents.d.ts +72 -0
- package/types/FieldTypes/locationListField.partial.d.ts +26 -0
- package/types/FieldTypes/locationListFieldComponents.d.ts +76 -0
- package/types/FieldTypes/mediaSelectorField.partial.d.ts +14 -0
- package/types/FieldTypes/mediaSelectorFieldComponents.d.ts +70 -0
- package/types/FieldTypes/memoField.partial.d.ts +18 -0
- package/types/FieldTypes/memoFieldComponents.d.ts +91 -0
- package/types/FieldTypes/monthDayField.partial.d.ts +10 -0
- package/types/FieldTypes/monthDayFieldComponents.d.ts +31 -0
- package/types/FieldTypes/multiSelectField.partial.d.ts +24 -0
- package/types/FieldTypes/multiSelectFieldComponents.d.ts +101 -0
- package/types/FieldTypes/noteTypeField.partial.d.ts +17 -0
- package/types/FieldTypes/noteTypeFieldComponents.d.ts +63 -0
- package/types/FieldTypes/noteTypesField.partial.d.ts +18 -0
- package/types/FieldTypes/noteTypesFieldComponents.d.ts +65 -0
- package/types/FieldTypes/personField.partial.d.ts +14 -0
- package/types/FieldTypes/personFieldComponents.d.ts +58 -0
- package/types/FieldTypes/phoneNumberField.partial.d.ts +10 -0
- package/types/FieldTypes/phoneNumberFieldComponents.d.ts +32 -0
- package/types/FieldTypes/rangeSliderField.partial.d.ts +16 -0
- package/types/FieldTypes/rangeSliderFieldComponents.d.ts +59 -0
- package/types/FieldTypes/ratingField.partial.d.ts +21 -0
- package/types/FieldTypes/ratingFieldComponents.d.ts +57 -0
- package/types/FieldTypes/registryEntryField.partial.d.ts +7 -0
- package/types/FieldTypes/registryEntryFieldComponents.d.ts +32 -0
- package/types/FieldTypes/reminderTypeField.partial.d.ts +19 -0
- package/types/FieldTypes/reminderTypeFieldComponents.d.ts +36 -0
- package/types/FieldTypes/reminderTypesField.partial.d.ts +17 -0
- package/types/FieldTypes/reminderTypesFieldComponents.d.ts +57 -0
- package/types/FieldTypes/scheduleField.partial.d.ts +11 -0
- package/types/FieldTypes/scheduleFieldComponents.d.ts +35 -0
- package/types/FieldTypes/schedulesField.partial.d.ts +11 -0
- package/types/FieldTypes/schedulesFieldComponents.d.ts +35 -0
- package/types/FieldTypes/singleSelectField.partial.d.ts +21 -0
- package/types/FieldTypes/singleSelectFieldComponents.d.ts +101 -0
- package/types/FieldTypes/slidingDateRangeField.partial.d.ts +15 -0
- package/types/FieldTypes/slidingDateRangeFieldComponents.d.ts +66 -0
- package/types/FieldTypes/socialMediaAccountField.partial.d.ts +19 -0
- package/types/FieldTypes/socialMediaAccountFieldComponents.d.ts +58 -0
- package/types/FieldTypes/ssnField.partial.d.ts +8 -0
- package/types/FieldTypes/ssnFieldComponents.d.ts +30 -0
- package/types/FieldTypes/structureContentEditorField.partial.d.ts +7 -0
- package/types/FieldTypes/structureContentEditorFieldComponents.d.ts +30 -0
- package/types/FieldTypes/textField.partial.d.ts +15 -0
- package/types/FieldTypes/textFieldComponents.d.ts +66 -0
- package/types/FieldTypes/timeField.partial.d.ts +12 -0
- package/types/FieldTypes/timeFieldComponents.d.ts +34 -0
- package/types/FieldTypes/timeZoneField.partial.d.ts +14 -0
- package/types/FieldTypes/timeZoneFieldComponents.d.ts +32 -0
- package/types/FieldTypes/urlLinkField.partial.d.ts +17 -0
- package/types/FieldTypes/urlLinkFieldComponents.d.ts +59 -0
- package/types/FieldTypes/utils.d.ts +111 -0
- package/types/FieldTypes/valueListField.partial.d.ts +21 -0
- package/types/FieldTypes/valueListFieldComponents.d.ts +67 -0
- package/types/PageState/index.d.ts +19 -0
- package/types/PageState/state.d.ts +14 -0
- package/types/SystemGuids/achievementType.d.ts +6 -0
- package/types/SystemGuids/assessmentType.d.ts +13 -0
- package/types/SystemGuids/attribute.d.ts +382 -0
- package/types/SystemGuids/authScope.d.ts +13 -0
- package/types/SystemGuids/badge.d.ts +33 -0
- package/types/SystemGuids/benevolenceType.d.ts +4 -0
- package/types/SystemGuids/binaryFile.d.ts +4 -0
- package/types/SystemGuids/binaryFiletype.d.ts +31 -0
- package/types/SystemGuids/block.d.ts +63 -0
- package/types/SystemGuids/blockType.d.ts +161 -0
- package/types/SystemGuids/category.d.ts +103 -0
- package/types/SystemGuids/communication.d.ts +7 -0
- package/types/SystemGuids/connectionActivityType.d.ts +13 -0
- package/types/SystemGuids/contentChannelType.d.ts +5 -0
- package/types/SystemGuids/definedType.d.ts +196 -0
- package/types/SystemGuids/definedValue.d.ts +511 -0
- package/types/SystemGuids/entityType.d.ts +739 -0
- package/types/SystemGuids/fieldType.d.ts +287 -0
- package/types/SystemGuids/financialAccount.d.ts +9 -0
- package/types/SystemGuids/financialStatementTemplate.d.ts +4 -0
- package/types/SystemGuids/followingEventType.d.ts +19 -0
- package/types/SystemGuids/group.d.ts +41 -0
- package/types/SystemGuids/groupRole.d.ts +61 -0
- package/types/SystemGuids/groupType.d.ts +39 -0
- package/types/SystemGuids/interactionChannel.d.ts +22 -0
- package/types/SystemGuids/layout.d.ts +17 -0
- package/types/SystemGuids/metric.d.ts +11 -0
- package/types/SystemGuids/noteType.d.ts +27 -0
- package/types/SystemGuids/page.d.ts +1709 -0
- package/types/SystemGuids/pageRoute.d.ts +38 -0
- package/types/SystemGuids/person.d.ts +6 -0
- package/types/SystemGuids/serviceJob.d.ts +141 -0
- package/types/SystemGuids/signatureDocumentTemplate.d.ts +4 -0
- package/types/SystemGuids/site.d.ts +9 -0
- package/types/SystemGuids/snippetType.d.ts +5 -0
- package/types/SystemGuids/streakType.d.ts +4 -0
- package/types/SystemGuids/systemCommunication.d.ts +88 -0
- package/types/SystemGuids/systemEmail.d.ts +43 -0
- package/types/SystemGuids/workflowType.d.ts +9 -0
- package/types/Templates/block.d.ts +14 -0
- package/types/Templates/detailBlock.d.ts +363 -0
- package/types/Templates/rockBlock.partial.d.ts +272 -0
- package/types/Templates/rockPage.d.ts +40 -0
- package/types/Types/Controls/autocomplete.d.ts +29 -0
- package/types/Types/Controls/datePartsPicker.d.ts +5 -0
- package/types/Types/Controls/dateRangePicker.d.ts +4 -0
- package/types/Types/Controls/dropDownMenu.d.ts +33 -0
- package/types/Types/Controls/geo.d.ts +58 -0
- package/types/Types/Controls/grid.d.ts +897 -0
- package/types/Types/Controls/itemsWithPreAndPostHtml.d.ts +5 -0
- package/types/Types/Controls/keyValueItem.d.ts +22 -0
- package/types/Types/Controls/numberRangeBox.d.ts +10 -0
- package/types/Types/Controls/numberUpDownGroup.d.ts +6 -0
- package/types/Types/Controls/panelAction.d.ts +47 -0
- package/types/Types/Controls/progressTracker.d.ts +6 -0
- package/types/Types/Controls/valueDetailListItem.d.ts +32 -0
- package/types/Types/Core/personPreferences.d.ts +101 -0
- package/types/Types/Reporting/comparisonValue.d.ts +28 -0
- package/types/Types/Utility/block.d.ts +42 -0
- package/types/Types/Utility/component.d.ts +29 -0
- package/types/Types/Utility/http.d.ts +40 -0
- package/types/Types/Utility/support.d.ts +26 -0
- package/types/Types/fieldType.d.ts +173 -0
- package/types/Types/index.d.ts +18 -0
- package/types/Types/validationRules.d.ts +44 -0
- package/types/Utility/address.d.ts +6 -0
- package/types/Utility/arrayUtils.d.ts +11 -0
- package/types/Utility/aspDateFormat.d.ts +9 -0
- package/types/Utility/block.d.ts +186 -0
- package/types/Utility/booleanUtils.d.ts +16 -0
- package/types/Utility/bus.d.ts +23 -0
- package/types/Utility/cache.d.ts +32 -0
- package/types/Utility/cancellation.d.ts +58 -0
- package/types/Utility/component.d.ts +199 -0
- package/types/Utility/dateKey.d.ts +41 -0
- package/types/Utility/dialogs.d.ts +38 -0
- package/types/Utility/email.d.ts +5 -0
- package/types/Utility/enumUtils.d.ts +9 -0
- package/types/Utility/fieldTypes.d.ts +20 -0
- package/types/Utility/form.d.ts +33 -0
- package/types/Utility/fullscreen.d.ts +33 -0
- package/types/Utility/geo.d.ts +45 -0
- package/types/Utility/guid.d.ts +39 -0
- package/types/Utility/http.d.ts +94 -0
- package/types/Utility/internetCalendar.d.ts +242 -0
- package/types/Utility/lava.d.ts +1 -0
- package/types/Utility/linq.d.ts +174 -0
- package/types/Utility/listItemBag.d.ts +2 -0
- package/types/Utility/mergeField.d.ts +8 -0
- package/types/Utility/numberUtils.d.ts +54 -0
- package/types/Utility/objectUtils.d.ts +1 -0
- package/types/Utility/page.d.ts +49 -0
- package/types/Utility/phone.d.ts +28 -0
- package/types/Utility/popover.d.ts +16 -0
- package/types/Utility/promiseUtils.d.ts +43 -0
- package/types/Utility/realTime.d.ts +79 -0
- package/types/Utility/rockDateTime.d.ts +316 -0
- package/types/Utility/slidingDateRange.d.ts +82 -0
- package/types/Utility/stringUtils.d.ts +120 -0
- package/types/Utility/structuredContentEditor.d.ts +8 -0
- package/types/Utility/suspense.d.ts +98 -0
- package/types/Utility/tooltip.d.ts +22 -0
- package/types/Utility/treeItemProviders.d.ts +512 -0
- package/types/Utility/url.d.ts +39 -0
- package/types/Utility/util.d.ts +26 -0
- package/types/Utility/validationRules.d.ts +49 -0
- package/types/ValidationRules/index.d.ts +3 -0
- package/types/ViewModels/Blocks/Bus/QueueDetail/queueBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Bus/QueueDetail/queueDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageDetailOptionsBag.d.ts +27 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageList/adaptiveMessageListOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/attributeFilterBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/availableContentSourceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentSourceBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/customFieldFilterBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/filterSettingsBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionInitializationBox.d.ts +79 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionListItemBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +121 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/filterOptionsBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchFilterBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchQueryBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultSourceBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutBag.d.ts +53 -0
- package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutDetailOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerDownloadItemBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerInitializationBox.d.ts +61 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemBag.d.ts +91 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemFiltersBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerValidationResultsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +79 -0
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderDetailOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetBag.d.ts +106 -0
- package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/SiteDetail/siteBag.d.ts +161 -0
- package/types/ViewModels/Blocks/Cms/SiteDetail/siteDetailOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/SiteList/siteListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +90 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetDetailOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusDetailOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusScheduleBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/categoryBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/categoryDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +89 -0
- package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/addressStandardizationResultBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/locationBag.d.ts +85 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/locationDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +82 -0
- package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/Notes/deleteNoteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/Notes/editNoteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/Notes/noteBag.d.ts +82 -0
- package/types/ViewModels/Blocks/Core/Notes/noteEditBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Core/Notes/noteTypeBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Core/Notes/notesInitializationBox.d.ts +87 -0
- package/types/ViewModels/Blocks/Core/Notes/saveNoteRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Core/Notes/watchNoteRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionResponseBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesRequestBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesResponseBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageListInitializationBox.d.ts +37 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleDetailOptionsBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleExclusionBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +81 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBox.d.ts +54 -0
- package/types/ViewModels/Blocks/Core/TagDetail/tagBag.d.ts +76 -0
- package/types/ViewModels/Blocks/Core/TagDetail/tagDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/AssessmentList/assessmentListBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeBag.d.ts +75 -0
- package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationCreateAccountRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDateAndTimeFieldBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDatePickerFieldBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationFieldBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesResponseBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +170 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationPersonBag.d.ts +93 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveRequestBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationScheduleDateBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSmsOptInFieldBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/Badges/badgesConfigurationBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Crm/PhotoOptOut/photoOptOutBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceDetailInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendeeBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpDetail/signUpDetailInitializationBox.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsBag.d.ts +100 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderInitializationBox.d.ts +85 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderResultsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderSelectedFiltersBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +66 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegistrantBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Engagement/Steps/stepFlowInitializationBox.d.ts +51 -0
- package/types/ViewModels/Blocks/Engagement/StreakDetail/streakBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Engagement/StreakDetail/streakDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeBag.d.ts +96 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventAttributeBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventCalendarItemAttributeBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemBag.d.ts +89 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemOccurenceAttributeBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManager/experienceManagerInitializationBox.d.ts +72 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManagerOccurrences/experienceManagerOccurrencesInitializationBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/experienceVisualizerInitializationBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/visualizerOccurrenceBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionTypeBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceBag.d.ts +155 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceDetailOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceScheduleBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceVisualizerTypeBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperience/liveExperienceInitializationBox.d.ts +57 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperienceOccurrences/liveExperienceOccurrencesInitializationBox.d.ts +49 -0
- package/types/ViewModels/Blocks/Event/RegistrationListLavaBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailBag.d.ts +86 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailOptionsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/searchKeyBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchAccountTotalsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchCurrencyTotalsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +58 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusResponseBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryOptionsBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonResponseBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAttendanceBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetAttendanceRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationScheduleDatesRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationSchedulesRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationsRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetOrCreateRequestBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailInitializationBox.d.ts +164 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailMarkAttendanceRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateAttendanceOccurrenceTypeRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateDidNotOccurRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateNotesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +77 -0
- package/types/ViewModels/Blocks/Group/GroupSchedulePreference/assignmentScheduleAndLocationBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/GroupSchedulePreference/preferencePageContentBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupDataBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/confirmDeclineBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/contentBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleUnavailability/contentBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/assignmentOptionsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/currentScheduleBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/deleteAssignmentRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getAssignmentOptionsRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSchedulePreferencesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSignUpsRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/groupBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/initializationBox.d.ts +92 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionResponseBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentResponseBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveDeclineReasonRequestBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSchedulePreferenceRequestBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpResponseBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveUnavailabilityRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceAssignmentBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferencesBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/scheduleRowBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceLocationBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupScheduleOccurrenceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerAppliedFiltersBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerApplyResourceSettingsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSchedulesResponseBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSettingsBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerFiltersBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGetPreferencesBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerLocationsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +79 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferenceBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferencesBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerResourceSettingsBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSchedulesBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSendNowResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUnassignedResourceCountBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUpdatePreferenceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/landingPageContentBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBlockBox.d.ts +65 -0
- package/types/ViewModels/Blocks/Mobile/Communication/SmsConversation/conversationDetailBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Mobile/Communication/SmsConversationList/phoneNumberBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestBag.d.ts +90 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailAddPersonResponseBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +140 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateFileValidationBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetServiceTimesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetWeekendDatesRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryInitializationBox.d.ts +60 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricCategoryBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricItemBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntrySaveRequestBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryAccountInfoBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryCompletedStepBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryConfirmationSentStepBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonItemBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonSelectionStepBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryExistingAccountStepBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryForgotUsernameRequestBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +107 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPasswordlessConfirmationSentStepBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPersonInfoBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPhoneNumberBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterRequestBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterResponseBox.d.ts +50 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAccountConfirmationViewOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountActionNamesBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertControlBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertViewOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordViewOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountConfirmRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountContentViewOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteConfirmationViewOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountInitializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowChangePasswordViewRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowDeleteConfirmationRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountViewBox.d.ts +68 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/changePasswordNotSupportedResultBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameCaptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsResultBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginMfaBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginRequestBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginResponseBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Security/Login/externalAuthenticationButtonBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/loginInitializationBox.d.ts +114 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginAutoVerifyOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginMfaBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginOptionsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartRequestBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyRequestBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyResponseBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Security/Login/remoteLoginStartRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Login/remoteLoginStartResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppBag.d.ts +72 -0
- package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/rockCacheabilityBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/timeIntervalBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/themeListItemBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/topicAndChannelBag.d.ts +31 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmMetricBag.d.ts +31 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeBag.d.ts +69 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +60 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerBag.d.ts +81 -0
- package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerDetailBox.d.ts +50 -0
- package/types/ViewModels/Blocks/blockActionContextBag.d.ts +37 -0
- package/types/ViewModels/Blocks/blockBox.d.ts +37 -0
- package/types/ViewModels/Blocks/customSettingsBox.d.ts +40 -0
- package/types/ViewModels/Blocks/detailBlockBox.d.ts +56 -0
- package/types/ViewModels/Blocks/listBlockBox.d.ts +59 -0
- package/types/ViewModels/Cms/blockCustomActionBag.d.ts +42 -0
- package/types/ViewModels/Cms/contentCollectionAttributeFilterSettingsBag.d.ts +39 -0
- package/types/ViewModels/Cms/contentCollectionCustomFieldBag.d.ts +44 -0
- package/types/ViewModels/Cms/contentCollectionCustomFieldFilterSettingsBag.d.ts +39 -0
- package/types/ViewModels/Cms/contentCollectionFilterSettingsBag.d.ts +78 -0
- package/types/ViewModels/Cms/contentCollectionSourceAdditionalSettingsBag.d.ts +43 -0
- package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +62 -0
- package/types/ViewModels/Cms/obsidianBlockPreferencesBag.d.ts +36 -0
- package/types/ViewModels/Communication/conversationAttachmentBag.d.ts +34 -0
- package/types/ViewModels/Communication/conversationMessageBag.d.ts +95 -0
- package/types/ViewModels/Connection/connectionRequestCountsBag.d.ts +34 -0
- package/types/ViewModels/Controls/addressControlBag.d.ts +46 -0
- package/types/ViewModels/Controls/birthdayPickerBag.d.ts +34 -0
- package/types/ViewModels/Controls/campusPickerItemBag.d.ts +51 -0
- package/types/ViewModels/Controls/electronicSignatureValue.d.ts +31 -0
- package/types/ViewModels/Controls/fieldTypeEditorGetAvailableFieldTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationOptionsBag.d.ts +39 -0
- package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationResultBag.d.ts +46 -0
- package/types/ViewModels/Controls/gatewayControlBag.d.ts +31 -0
- package/types/ViewModels/Controls/monthDayValue.d.ts +27 -0
- package/types/ViewModels/Controls/monthYearValue.d.ts +27 -0
- package/types/ViewModels/Controls/noteMentionItemBag.d.ts +43 -0
- package/types/ViewModels/Controls/phoneNumberBoxWithSmsControlBag.d.ts +34 -0
- package/types/ViewModels/Controls/rockCacheability.d.ts +33 -0
- package/types/ViewModels/Controls/rockCacheabilityBag.d.ts +36 -0
- package/types/ViewModels/Controls/slidingDateRangeBag.d.ts +43 -0
- package/types/ViewModels/Controls/timePickerValue.d.ts +25 -0
- package/types/ViewModels/Core/Grid/attributeFieldDefinitionBag.d.ts +47 -0
- package/types/ViewModels/Core/Grid/customActionBag.d.ts +48 -0
- package/types/ViewModels/Core/Grid/customColumnDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Core/Grid/fieldDefinitionBag.d.ts +31 -0
- package/types/ViewModels/Core/Grid/gridCommunicationBag.d.ts +39 -0
- package/types/ViewModels/Core/Grid/gridDataBag.d.ts +28 -0
- package/types/ViewModels/Core/Grid/gridDefinitionBag.d.ts +76 -0
- package/types/ViewModels/Core/Grid/gridEntitySetBag.d.ts +39 -0
- package/types/ViewModels/Core/Grid/gridEntitySetItemBag.d.ts +40 -0
- package/types/ViewModels/Core/Grid/personFieldBag.d.ts +37 -0
- package/types/ViewModels/Core/notificationMessageActionBag.d.ts +42 -0
- package/types/ViewModels/Core/notificationMessageMetadataBag.d.ts +54 -0
- package/types/ViewModels/Core/personPreferenceValueBag.d.ts +34 -0
- package/types/ViewModels/Crm/currentPersonBag.d.ts +43 -0
- package/types/ViewModels/Crm/renderedBadgeBag.d.ts +31 -0
- package/types/ViewModels/Engagement/achievementCompletedMessageBag.d.ts +63 -0
- package/types/ViewModels/Event/InteractiveExperiences/actionRenderConfigurationBag.d.ts +39 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceActionStyleBag.d.ts +49 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceAnswerBag.d.ts +49 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceOccurrenceStateBag.d.ts +31 -0
- package/types/ViewModels/Event/InteractiveExperiences/experiencePlaceholderStyleBag.d.ts +34 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceSettingsBag.d.ts +42 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceStyleBag.d.ts +47 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceVisualizerStyleBag.d.ts +46 -0
- package/types/ViewModels/Event/InteractiveExperiences/joinExperienceResponseBag.d.ts +47 -0
- package/types/ViewModels/Event/InteractiveExperiences/pingExperienceResponseBag.d.ts +28 -0
- package/types/ViewModels/Event/InteractiveExperiences/visualizerRenderConfigurationBag.d.ts +42 -0
- package/types/ViewModels/Event/attendanceOccurrenceUpdatedMessageBag.d.ts +45 -0
- package/types/ViewModels/Event/attendanceUpdatedMessageBag.d.ts +67 -0
- package/types/ViewModels/Finance/savedFinancialAccountListItemBag.d.ts +49 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +38 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +48 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +30 -0
- package/types/ViewModels/Reporting/fieldFilterGroupBag.d.ts +40 -0
- package/types/ViewModels/Reporting/fieldFilterRuleBag.d.ts +52 -0
- package/types/ViewModels/Reporting/fieldFilterSourceBag.d.ts +46 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetParentGuidsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetPreviewItemsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetSearchedAccountsOptionsBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/achievementTypePickerGetAchievementTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/addressControlConfigurationBag.d.ts +82 -0
- package/types/ViewModels/Rest/Controls/addressControlGetConfigurationOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/addressControlValidateAddressOptionsBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/addressControlValidateAddressResultsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/assessmentTypePickerGetAssessmentTypesOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/assetStorageProviderPickerGetAssetStorageProvidersOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/auditDetailGetAuditDetailsOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/badgeComponentPickerGetBadgeComponentsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/badgeListGetBadgesOptionsBag.d.ts +51 -0
- package/types/ViewModels/Rest/Controls/badgePickerGetBadgesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/binaryFilePickerGetBinaryFilesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/binaryFileTypePickerGetBinaryFileTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesResultsBag.d.ts +35 -0
- package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsResultItemBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/campusPickerGetCampusesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/captchaControlConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/captchaControlTokenValidateTokenResultBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/captchaControlValidateTokenOptionsBag.d.ts +27 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerNodeBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/categoryPickerChildTreeItemsOptionsBag.d.ts +119 -0
- package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/connectionRequestPickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetContentChannelItemsOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/dataViewPickerGetDataViewsOptionsBag.d.ts +86 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerGetAttributesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerGetDefinedValuesOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerSaveNewValueOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/entityTagListAddEntityTagOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/entityTagListCreatePersonalTagOptionsBag.d.ts +51 -0
- package/types/ViewModels/Rest/Controls/entityTagListGetAvailableTagsOptionsBag.d.ts +63 -0
- package/types/ViewModels/Rest/Controls/entityTagListGetEntityTagsOptionsBag.d.ts +60 -0
- package/types/ViewModels/Rest/Controls/entityTagListRemoveEntityTagOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/entityTagListSaveTagValuesOptionsBag.d.ts +64 -0
- package/types/ViewModels/Rest/Controls/entityTagListTagBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/entityTypePickerGetEntityTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/ethnicityPickerGetEthnicitiesResultsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/eventItemPickerGetEventItemsOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/financialGatewayPickerGetFinancialGatewaysOptionsBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/followingGetFollowingOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/followingGetFollowingResponseBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/followingSetFollowingOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/geoPickerGetGoogleMapSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/geoPickerGetSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/geoPickerGoogleMapSettingsBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/geoPickerSettingsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/gradePickerGetGradesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/groupAndRolePickerGetRolesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupMemberPickerGetGroupMembersOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupPickerGetChildrenOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleResultsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetGroupRolesOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupTypeOfGroupOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupTypePickerGetGroupTypesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/interactionChannelInteractionComponentPickerGetChannelFromComponentOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/interactionComponentPickerGetInteractionComponentsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/locationListGetLocationsOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/locationListSaveNewLocationOptionsBag.d.ts +52 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaElementsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaFoldersOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeResultsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/mergeFieldPickerFormatSelectedValueOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/mergeFieldPickerGetChildrenOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/mergeTemplatePickerGetMergeTemplatesOptionsBag.d.ts +52 -0
- package/types/ViewModels/Rest/Controls/metricCategoryPickerGetChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/metricItemPickerGetChildrenOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/noteEditorMentionSearchOptionsBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/noteEditorMentionSearchResultsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetChildrenOptionsBag.d.ts +57 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetPageNameOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetPageRoutesOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetSelectedPageHierarchyOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pageRouteValueBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/personLinkGetPopupHtmlOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/personPickerSearchOptionsBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/phoneNumberCountryCodeRulesConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/racePickerGetRacesResultsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationInstancesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationTemplateForInstanceOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationTemplatePickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/reminderTypePickerGetReminderTypesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/reportPickerGetChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountResultBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/schedulePickerGetChildrenOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/stepStatusPickerGetStepStatusesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/stepTypePickerGetStepTypesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/structuredContentEditorConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/structuredContentEditorGetConfigurationOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/workflowActionTypePickerGetChildrenOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowTypeForWorkflowOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/workflowTypePickerGetWorkflowTypesOptionsBag.d.ts +90 -0
- package/types/ViewModels/Rest/Utilities/updatePersonPreferencesAccessedOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Utilities/updatePersonPreferencesOptionsBag.d.ts +31 -0
- package/types/ViewModels/Utility/debugTiming.d.ts +32 -0
- package/types/ViewModels/Utility/entityAuditBag.d.ts +54 -0
- package/types/ViewModels/Utility/listItemBag.d.ts +37 -0
- package/types/ViewModels/Utility/publicAttributeBag.d.ts +64 -0
- package/types/ViewModels/Utility/publicAttributeCategoryBag.d.ts +40 -0
- package/types/ViewModels/Utility/publicComparisonValueBag.d.ts +31 -0
- package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +123 -0
- package/types/ViewModels/Utility/taskActivityProgressLogBag.d.ts +31 -0
- package/types/ViewModels/Utility/taskActivityProgressStatusBag.d.ts +52 -0
- package/types/ViewModels/Utility/taskActivityProgressUpdateBag.d.ts +37 -0
- package/types/ViewModels/Utility/timeInterval.d.ts +27 -0
- package/types/ViewModels/Utility/timeIntervalBag.d.ts +31 -0
- package/types/ViewModels/Utility/treeItemBag.d.ts +57 -0
- package/types/ViewModels/Utility/validPropertiesBox.d.ts +31 -0
- package/types/ViewModels/entity.d.ts +24 -0
- package/types/ViewModels/index.d.ts +22 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationValues: {
|
|
8
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
9
|
+
default: () => import("./utils").ConfigurationValues;
|
|
10
|
+
};
|
|
11
|
+
dataEntryMode: {
|
|
12
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
internalValue: import("vue").Ref<{
|
|
16
|
+
category?: string | null | undefined;
|
|
17
|
+
disabled?: boolean | null | undefined;
|
|
18
|
+
text?: string | null | undefined;
|
|
19
|
+
value?: string | null | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
definedTypeValue: import("vue").ComputedRef<string | null | undefined>;
|
|
22
|
+
selectableValues: import("vue").ComputedRef<ListItemBag[]>;
|
|
23
|
+
isEditMode: import("vue").ComputedRef<boolean>;
|
|
24
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
modelValue: {
|
|
26
|
+
type: import("vue").PropType<string>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
configurationValues: {
|
|
30
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
31
|
+
default: () => import("./utils").ConfigurationValues;
|
|
32
|
+
};
|
|
33
|
+
dataEntryMode: {
|
|
34
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
35
|
+
};
|
|
36
|
+
}>>, {
|
|
37
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
38
|
+
}>;
|
|
39
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
40
|
+
modelValue: {
|
|
41
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
configurationProperties: {
|
|
45
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
definedType: import("vue").Ref<{
|
|
50
|
+
category?: string | null | undefined;
|
|
51
|
+
disabled?: boolean | null | undefined;
|
|
52
|
+
text?: string | null | undefined;
|
|
53
|
+
value?: string | null | undefined;
|
|
54
|
+
}>;
|
|
55
|
+
definedTypes: import("vue").ComputedRef<ListItemBag[]>;
|
|
56
|
+
selectableDefinedValues: import("vue").Ref<string[]>;
|
|
57
|
+
options: import("vue").ComputedRef<ListItemBag[]>;
|
|
58
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfigurationValue")[], "update:modelValue" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
modelValue: {
|
|
60
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
61
|
+
required: true;
|
|
62
|
+
};
|
|
63
|
+
configurationProperties: {
|
|
64
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
}>> & {
|
|
68
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
}, {}>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
export declare const enum ConfigurationValueKey {
|
|
4
|
+
EntityTypeName = "entityTypeName",
|
|
5
|
+
QualifierColumn = "qualifierColumn",
|
|
6
|
+
QualifierValue = "qualifierValue"
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* The field type handler for the Address field.
|
|
10
|
+
*/
|
|
11
|
+
export declare class CategoryFieldType extends FieldTypeBase {
|
|
12
|
+
getTextValue(value: string, _configurationValues: Record<string, string>): string;
|
|
13
|
+
getEditComponent(): Component;
|
|
14
|
+
getConfigurationComponent(): Component;
|
|
15
|
+
isFilterable(): boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
configurationValues: {
|
|
7
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
8
|
+
default: () => import("./utils").ConfigurationValues;
|
|
9
|
+
};
|
|
10
|
+
dataEntryMode: {
|
|
11
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
12
|
+
};
|
|
13
|
+
}, {
|
|
14
|
+
internalValue: import("vue").Ref<{
|
|
15
|
+
category?: string | null | undefined;
|
|
16
|
+
disabled?: boolean | null | undefined;
|
|
17
|
+
text?: string | null | undefined;
|
|
18
|
+
value?: string | null | undefined;
|
|
19
|
+
}>;
|
|
20
|
+
entityTypeGuid: import("vue").ComputedRef<string | null | undefined>;
|
|
21
|
+
}, 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
|
+
modelValue: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
configurationValues: {
|
|
27
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
28
|
+
default: () => import("./utils").ConfigurationValues;
|
|
29
|
+
};
|
|
30
|
+
dataEntryMode: {
|
|
31
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
35
|
+
}>;
|
|
36
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
37
|
+
modelValue: {
|
|
38
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
configurationProperties: {
|
|
42
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
}, {
|
|
46
|
+
qualifierColumn: import("vue").Ref<string>;
|
|
47
|
+
qualifierValue: import("vue").Ref<string>;
|
|
48
|
+
entityType: import("vue").Ref<{
|
|
49
|
+
category?: string | null | undefined;
|
|
50
|
+
disabled?: boolean | null | undefined;
|
|
51
|
+
text?: string | null | undefined;
|
|
52
|
+
value?: string | null | undefined;
|
|
53
|
+
}>;
|
|
54
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfigurationValue")[], "update:modelValue" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
+
modelValue: {
|
|
56
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
57
|
+
required: true;
|
|
58
|
+
};
|
|
59
|
+
configurationProperties: {
|
|
60
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
61
|
+
required: true;
|
|
62
|
+
};
|
|
63
|
+
}>> & {
|
|
64
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
66
|
+
}, {}>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
|
|
3
|
+
import { ComparisonValue } from "@Obsidian/Types/Reporting/comparisonValue";
|
|
4
|
+
import { FieldTypeBase } from "./fieldType";
|
|
5
|
+
export declare const enum ConfigurationValueKey {
|
|
6
|
+
Values = "values",
|
|
7
|
+
RepeatColumns = "repeatColumns",
|
|
8
|
+
ListItems = "listItems"
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* The field type handler for the Check List field.
|
|
12
|
+
*/
|
|
13
|
+
export declare class CheckListFieldType extends FieldTypeBase {
|
|
14
|
+
getTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
15
|
+
getEditComponent(): Component;
|
|
16
|
+
getConfigurationComponent(): Component;
|
|
17
|
+
getSupportedComparisonTypes(): ComparisonType;
|
|
18
|
+
getFilterComponent(): Component;
|
|
19
|
+
getFilterValueText(value: ComparisonValue, configurationValues: Record<string, string>): string;
|
|
20
|
+
doesValueMatchFilter(value: string, filterValue: ComparisonValue, _configurationValues: Record<string, string>): boolean;
|
|
21
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationValues: {
|
|
8
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
9
|
+
default: () => import("./utils").ConfigurationValues;
|
|
10
|
+
};
|
|
11
|
+
dataEntryMode: {
|
|
12
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
isRequired: boolean;
|
|
16
|
+
}, {
|
|
17
|
+
internalValue: string[];
|
|
18
|
+
}, {
|
|
19
|
+
/** The options to choose from */
|
|
20
|
+
options(): ListItemBag[];
|
|
21
|
+
/** Any additional attributes that will be assigned to the check box list control */
|
|
22
|
+
checkBoxListConfigAttributes(): Record<string, number | boolean>;
|
|
23
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
modelValue: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
configurationValues: {
|
|
29
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
30
|
+
default: () => import("./utils").ConfigurationValues;
|
|
31
|
+
};
|
|
32
|
+
dataEntryMode: {
|
|
33
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const FilterComponent: import("vue").DefineComponent<{
|
|
39
|
+
modelValue: {
|
|
40
|
+
type: import("vue").PropType<string>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
configurationValues: {
|
|
44
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
45
|
+
default: () => import("./utils").ConfigurationValues;
|
|
46
|
+
};
|
|
47
|
+
dataEntryMode: {
|
|
48
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
49
|
+
};
|
|
50
|
+
}, {
|
|
51
|
+
internalValue: import("vue").Ref<string[]>;
|
|
52
|
+
options: import("vue").ComputedRef<ListItemBag[]>;
|
|
53
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
|
+
modelValue: {
|
|
55
|
+
type: import("vue").PropType<string>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
configurationValues: {
|
|
59
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
60
|
+
default: () => import("./utils").ConfigurationValues;
|
|
61
|
+
};
|
|
62
|
+
dataEntryMode: {
|
|
63
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
64
|
+
};
|
|
65
|
+
}>>, {
|
|
66
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
67
|
+
}>;
|
|
68
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
71
|
+
required: true;
|
|
72
|
+
};
|
|
73
|
+
configurationProperties: {
|
|
74
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
77
|
+
}, {
|
|
78
|
+
listItems: import("vue").Ref<string>;
|
|
79
|
+
repeatColumns: import("vue").Ref<number | null>;
|
|
80
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfiguration" | "updateConfigurationValue")[], "update:modelValue" | "updateConfiguration" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
|
+
modelValue: {
|
|
82
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
configurationProperties: {
|
|
86
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
87
|
+
required: true;
|
|
88
|
+
};
|
|
89
|
+
}>> & {
|
|
90
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
onUpdateConfiguration?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
}, {}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
/**
|
|
4
|
+
* The field type handler for the Color field.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ColorFieldType extends FieldTypeBase {
|
|
7
|
+
getEditComponent(): Component;
|
|
8
|
+
getConfigurationComponent(): Component;
|
|
9
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
declare enum ConfigurationValueKey {
|
|
3
|
+
ColorControlType = "selectiontype",
|
|
4
|
+
ColorPicker = "Color Picker",
|
|
5
|
+
NamedColor = "Named Color"
|
|
6
|
+
}
|
|
7
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
8
|
+
modelValue: {
|
|
9
|
+
type: import("vue").PropType<string>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
configurationValues: {
|
|
13
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
14
|
+
default: () => import("./utils").ConfigurationValues;
|
|
15
|
+
};
|
|
16
|
+
dataEntryMode: {
|
|
17
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
18
|
+
};
|
|
19
|
+
}, {
|
|
20
|
+
internalValue: import("vue").Ref<string>;
|
|
21
|
+
dropDownListOptions: ListItemBag[];
|
|
22
|
+
isNamedPicker: import("vue").ComputedRef<boolean>;
|
|
23
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
modelValue: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
configurationValues: {
|
|
29
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
30
|
+
default: () => import("./utils").ConfigurationValues;
|
|
31
|
+
};
|
|
32
|
+
dataEntryMode: {
|
|
33
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
34
|
+
};
|
|
35
|
+
}>> & {
|
|
36
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
}, {
|
|
38
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
39
|
+
}>;
|
|
40
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
41
|
+
modelValue: {
|
|
42
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
configurationProperties: {
|
|
46
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
colorControlType: import("vue").Ref<string>;
|
|
51
|
+
typeList: {
|
|
52
|
+
text: ConfigurationValueKey;
|
|
53
|
+
value: ConfigurationValueKey;
|
|
54
|
+
}[];
|
|
55
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfiguration" | "updateConfigurationValue")[], "update:modelValue" | "updateConfiguration" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
56
|
+
modelValue: {
|
|
57
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
configurationProperties: {
|
|
61
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
}>> & {
|
|
65
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
66
|
+
onUpdateConfiguration?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
68
|
+
}, {}>;
|
|
69
|
+
export {};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
configurationProperties: {
|
|
7
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
}, {
|
|
11
|
+
allowMultiple: import("vue").Ref<boolean>;
|
|
12
|
+
colors: import("vue").Ref<string[]>;
|
|
13
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfiguration" | "updateConfigurationValue")[], "update:modelValue" | "updateConfiguration" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
configurationProperties: {
|
|
19
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>> & {
|
|
23
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
onUpdateConfiguration?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
}, {}>;
|
|
27
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
28
|
+
modelValue: {
|
|
29
|
+
type: import("vue").PropType<string>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
configurationValues: {
|
|
33
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
34
|
+
default: () => import("./utils").ConfigurationValues;
|
|
35
|
+
};
|
|
36
|
+
dataEntryMode: {
|
|
37
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
38
|
+
}; /**
|
|
39
|
+
* Update the modelValue property if any value of the dictionary has
|
|
40
|
+
* actually changed. This helps prevent unwanted postbacks if the value
|
|
41
|
+
* didn't really change - which can happen if multiple values get updated
|
|
42
|
+
* at the same time.
|
|
43
|
+
*
|
|
44
|
+
* @returns true if a new modelValue was emitted to the parent component.
|
|
45
|
+
*/
|
|
46
|
+
}, {
|
|
47
|
+
allowMultiple: import("vue").ComputedRef<boolean>;
|
|
48
|
+
selectedColors: import("vue").WritableComputedRef<string[]>;
|
|
49
|
+
items: import("vue").ComputedRef<string[]>;
|
|
50
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
|
+
modelValue: {
|
|
52
|
+
type: import("vue").PropType<string>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
configurationValues: {
|
|
56
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
57
|
+
default: () => import("./utils").ConfigurationValues;
|
|
58
|
+
};
|
|
59
|
+
dataEntryMode: {
|
|
60
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
61
|
+
}; /**
|
|
62
|
+
* Update the modelValue property if any value of the dictionary has
|
|
63
|
+
* actually changed. This helps prevent unwanted postbacks if the value
|
|
64
|
+
* didn't really change - which can happen if multiple values get updated
|
|
65
|
+
* at the same time.
|
|
66
|
+
*
|
|
67
|
+
* @returns true if a new modelValue was emitted to the parent component.
|
|
68
|
+
*/
|
|
69
|
+
}>> & {
|
|
70
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
}, {
|
|
72
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
73
|
+
}>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
/**
|
|
4
|
+
* The field type handler for the Color field.
|
|
5
|
+
*/
|
|
6
|
+
export declare class ColorSelectorFieldType extends FieldTypeBase {
|
|
7
|
+
getTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
8
|
+
getHtmlValue(value: string, configurationValues: Record<string, string>): string;
|
|
9
|
+
getEditComponent(): Component;
|
|
10
|
+
getConfigurationComponent(): Component;
|
|
11
|
+
private processSelectors;
|
|
12
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests if the provided string is a valid hexadecimal color.
|
|
3
|
+
* Validate formats are:
|
|
4
|
+
* 1. #RGB
|
|
5
|
+
* 2. #RGBA
|
|
6
|
+
* 3. #RRGGBB
|
|
7
|
+
* 4. #RRGGBBAA
|
|
8
|
+
* @param value The value to test.
|
|
9
|
+
*/
|
|
10
|
+
export declare function isValidHexColor(value: string): boolean;
|
|
11
|
+
export declare function deserializeColors(value: string): string[];
|
|
12
|
+
export declare function serializeColors(values: string[]): string;
|
|
13
|
+
export declare function deserializeValue(value: string): string[];
|
|
14
|
+
export declare function serializeValue(values: string[]): string;
|
|
15
|
+
export declare function deserializeAllowMultiple(value: string): boolean;
|
|
16
|
+
export declare function serializeAllowMultiple(allowMultiple: boolean): string;
|
|
17
|
+
export declare function getSelectedColors(colors: string[], values: string[]): string[];
|
|
18
|
+
/**
|
|
19
|
+
* Sets the camouflaged class if the element color is similar to the target element (or parent if not set).
|
|
20
|
+
* @param {Element} element The element to compare.
|
|
21
|
+
* @param {Element} ancestorElement (Optional) The target element with which to compare colors. Defaults to the parent element.
|
|
22
|
+
*/
|
|
23
|
+
export declare function setCamouflagedClass(element: Element, ancestorElement?: Element | null): void;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
export declare const enum ConfigurationValueKey {
|
|
4
|
+
RepeatColumns = "repeatColumns",
|
|
5
|
+
Options = "options"
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The field type handler for the Address field.
|
|
9
|
+
*/
|
|
10
|
+
export declare class CommunicationPreferenceField extends FieldTypeBase {
|
|
11
|
+
getTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
12
|
+
getEditComponent(): Component;
|
|
13
|
+
getConfigurationComponent(): Component;
|
|
14
|
+
isFilterable(): boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationValues: {
|
|
8
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
9
|
+
default: () => import("./utils").ConfigurationValues;
|
|
10
|
+
};
|
|
11
|
+
dataEntryMode: {
|
|
12
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
internalValue: import("vue").Ref<string>;
|
|
16
|
+
options: import("vue").ComputedRef<ListItemBag[] | null | undefined>;
|
|
17
|
+
repeatColumns: import("vue").ComputedRef<string>;
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
type: import("vue").PropType<string>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
configurationValues: {
|
|
24
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
25
|
+
default: () => import("./utils").ConfigurationValues;
|
|
26
|
+
};
|
|
27
|
+
dataEntryMode: {
|
|
28
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
29
|
+
};
|
|
30
|
+
}>>, {
|
|
31
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
32
|
+
}>;
|
|
33
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
34
|
+
modelValue: {
|
|
35
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
configurationProperties: {
|
|
39
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
40
|
+
required: true; /**
|
|
41
|
+
* Update the modelValue property if any value of the dictionary has
|
|
42
|
+
* actually changed. This helps prevent unwanted postbacks if the value
|
|
43
|
+
* didn't really change - which can happen if multiple values get updated
|
|
44
|
+
* at the same time.
|
|
45
|
+
*
|
|
46
|
+
* @returns true if a new modelValue was emitted to the parent component.
|
|
47
|
+
*/
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
columns: import("vue").Ref<string>;
|
|
51
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfigurationValue")[], "update:modelValue" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
+
modelValue: {
|
|
53
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
configurationProperties: {
|
|
57
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
58
|
+
required: true; /**
|
|
59
|
+
* Update the modelValue property if any value of the dictionary has
|
|
60
|
+
* actually changed. This helps prevent unwanted postbacks if the value
|
|
61
|
+
* didn't really change - which can happen if multiple values get updated
|
|
62
|
+
* at the same time.
|
|
63
|
+
*
|
|
64
|
+
* @returns true if a new modelValue was emitted to the parent component.
|
|
65
|
+
*/
|
|
66
|
+
};
|
|
67
|
+
}>> & {
|
|
68
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
}, {}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
export declare const enum ConfigurationValueKey {
|
|
4
|
+
Values = "values"
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* The field type handler for the MultiSelect field.
|
|
8
|
+
*/
|
|
9
|
+
export declare class ConnectionTypeField extends FieldTypeBase {
|
|
10
|
+
getTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
11
|
+
getEditComponent(): Component;
|
|
12
|
+
getConfigurationComponent(): Component;
|
|
13
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationValues: {
|
|
8
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
9
|
+
default: () => import("./utils").ConfigurationValues;
|
|
10
|
+
};
|
|
11
|
+
dataEntryMode: {
|
|
12
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
isRequired: boolean;
|
|
16
|
+
}, {
|
|
17
|
+
internalValue: string;
|
|
18
|
+
}, {
|
|
19
|
+
options(): ListItemBag[];
|
|
20
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
modelValue: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
configurationValues: {
|
|
26
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
27
|
+
default: () => import("./utils").ConfigurationValues;
|
|
28
|
+
};
|
|
29
|
+
dataEntryMode: {
|
|
30
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
31
|
+
};
|
|
32
|
+
}>>, {
|
|
33
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
34
|
+
}>;
|
|
35
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { FieldTypeBase } from "./fieldType";
|
|
3
|
+
export declare const enum ConfigurationValueKey {
|
|
4
|
+
Values = "values"
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* The field type handler for the Connection Types field.
|
|
8
|
+
*/
|
|
9
|
+
export declare class ConnectionTypesField extends FieldTypeBase {
|
|
10
|
+
getTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
11
|
+
getEditComponent(): Component;
|
|
12
|
+
getConfigurationComponent(): Component;
|
|
13
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationValues: {
|
|
8
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
9
|
+
default: () => import("./utils").ConfigurationValues;
|
|
10
|
+
};
|
|
11
|
+
dataEntryMode: {
|
|
12
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
isRequired: boolean;
|
|
16
|
+
}, {
|
|
17
|
+
internalValue: string[];
|
|
18
|
+
}, {
|
|
19
|
+
options(): ListItemBag[];
|
|
20
|
+
repeatColumns(): number;
|
|
21
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
modelValue: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
configurationValues: {
|
|
27
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
28
|
+
default: () => import("./utils").ConfigurationValues;
|
|
29
|
+
};
|
|
30
|
+
dataEntryMode: {
|
|
31
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
35
|
+
}>;
|
|
36
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|