@rockrms/obsidian-framework 17.6.1 → 18.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +25 -0
- package/types/Controls/Grid/Columns/column.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/copyColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +36 -9
- package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +29 -0
- package/types/Controls/Grid/Columns/editColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/htmlColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/personColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/rockFieldColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +80 -0
- package/types/Controls/Grid/Columns/textColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +43 -1
- package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +8 -0
- package/types/Controls/Internal/AI/Skills/groupManagerSkill.obs.d.ts +32 -0
- package/types/Controls/Internal/AI/Skills/prayerSkill.obs.d.ts +32 -0
- package/types/Controls/Internal/AI/Skills/skillConfiguration.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/Events/launchWorkflow.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/lavaEvent.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/logMessage.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/sendFallbackChatNotification.obs.d.ts +41 -0
- package/types/Controls/Internal/Automation/Triggers/ChatMessage/criteria.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/Automation/Triggers/ChatMessage/editRule.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/Automation/Triggers/EntityChange/editSimpleRule.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/Automation/Triggers/EntityChange/simpleCriteria.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/Automation/Triggers/chatMessage.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/Triggers/entityChange.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/automationEventHeader.obs.d.ts +54 -0
- package/types/Controls/Internal/CommunicationRecipientActivity/types.partial.d.ts +12 -0
- package/types/Controls/Internal/DevicePreview/utils.partial.d.ts +4 -0
- package/types/Controls/Internal/EmailEditor/api.d.ts +2 -0
- package/types/Controls/Internal/EmailEditor/borderPicker.partial.obs.d.ts +39 -0
- package/types/Controls/Internal/EmailEditor/borderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/buttonWidthPicker.partial.obs.d.ts +28 -0
- package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/contentToggle.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/EmailEditor/emailDesigner.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +11 -18
- package/types/Controls/Internal/EmailEditor/emailIFrame.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/fontFamilyPicker.partial.obs.d.ts +17 -0
- package/types/Controls/Internal/EmailEditor/hrefPicker.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/letterCasePicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/lineHeightPicker2.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/percentRangeSlider.partial.obs.d.ts +55 -0
- package/types/Controls/Internal/EmailEditor/pixelBox.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/properties/buttonWidthProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/properties/colorPickerProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/properties/communicationTemplateProperty.partial.obs.d.ts +8 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/adaptiveMessageComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +11 -3
- package/types/Controls/Internal/EmailEditor/propertyPanels/componentPropertyPanelBase.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +20 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +36 -21
- package/types/Controls/Internal/EmailEditor/propertyPanels/imageComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/rowComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/rsvpComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/sectionComponentPropertyPanel.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/titleComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/videoComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/providers.partial.d.ts +3 -21
- package/types/Controls/Internal/EmailEditor/shorthandBorderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/shorthandColorPicker.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/shorthandDropDownList.partial.obs.d.ts +91 -0
- package/types/Controls/Internal/EmailEditor/shorthandPixelBox.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +37 -16
- package/types/Controls/Internal/EmailEditor/textAlignmentPicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/textFormatPicker2.partial.obs.d.ts +104 -0
- package/types/Controls/Internal/EmailEditor/types.partial.d.ts +507 -5
- package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +73 -122
- package/types/Controls/Internal/LearningActivity/assessmentItemSection.obs.d.ts +5 -4
- package/types/Controls/Internal/LearningActivity/contentArticleItemNote.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleItemText.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleItemVideo.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.obs.d.ts +53 -0
- package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.partial.d.ts +22 -0
- package/types/Controls/Internal/MobilePreview/mobileBackground.partial.obs.d.ts +2 -0
- package/types/Controls/Internal/MobilePreview/mobilePreview.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/MobilePreview/types.partial.d.ts +6 -0
- package/types/Controls/Internal/SankeyDiagram/sankeyDiagram.obs.d.ts +9 -2
- package/types/Controls/Internal/communicationRecipientActivity.obs.d.ts +31 -0
- package/types/Controls/Internal/contentSectionNav.obs.d.ts +14 -0
- package/types/Controls/Internal/devicePreview.obs.d.ts +31 -0
- package/types/Controls/Internal/emailPreview.obs.d.ts +23 -0
- package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +0 -8
- package/types/Controls/Internal/pushNotificationMobilePreview.obs.d.ts +31 -0
- package/types/Controls/Internal/smsMobilePreview.obs.d.ts +40 -0
- package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +8 -0
- package/types/Controls/addressControl.obs.d.ts +2 -2
- package/types/Controls/barChart.obs.d.ts +464 -0
- package/types/Controls/binaryFilePicker.obs.d.ts +0 -6
- package/types/Controls/blockTemplatePicker.obs.d.ts +4 -4
- package/types/Controls/buttonDropDownList.obs.d.ts +10 -10
- package/types/Controls/campusContextPicker.obs.d.ts +76 -0
- package/types/Controls/campusPicker.obs.d.ts +10 -2
- package/types/Controls/chart.obs.d.ts +43 -7
- package/types/Controls/checkBox.obs.d.ts +3 -9
- package/types/Controls/codeEditor.obs.d.ts +12 -3
- package/types/Controls/componentPicker.obs.d.ts +9 -0
- package/types/Controls/contentChannelItemPicker.obs.d.ts +2 -8
- package/types/Controls/contentDropDownPicker.obs.d.ts +19 -6
- package/types/Controls/contentSection.obs.d.ts +115 -0
- package/types/Controls/contentSectionContainer.obs.d.ts +47 -0
- package/types/Controls/contentStack.obs.d.ts +63 -0
- package/types/Controls/contextSlicer.obs.d.ts +66 -0
- package/types/Controls/copyButton.obs.d.ts +22 -2
- package/types/Controls/datePicker.obs.d.ts +2 -0
- package/types/Controls/displayCard.obs.d.ts +127 -0
- package/types/Controls/displayCardAddButton.obs.d.ts +24 -0
- package/types/Controls/displayCardContainer.obs.d.ts +23 -0
- package/types/Controls/doughnutChart.obs.d.ts +364 -0
- package/types/Controls/dropDownContent.obs.d.ts +9 -0
- package/types/Controls/dynamicComponent.obs.d.ts +70 -0
- package/types/Controls/enhancedProgressBar.obs.d.ts +117 -0
- package/types/Controls/entityTypePicker.obs.d.ts +4 -38
- package/types/Controls/ethnicityPicker.obs.d.ts +6 -8
- package/types/Controls/eventCalendarPicker.obs.d.ts +8 -0
- package/types/Controls/expanderPanel.obs.d.ts +1 -1
- package/types/Controls/fieldFilterContainer.obs.d.ts +7 -0
- package/types/Controls/fieldFilterRuleRow.obs.d.ts +48 -0
- package/types/Controls/fieldTypePicker.obs.d.ts +16 -0
- package/types/Controls/fileUploader.obs.d.ts +27 -0
- package/types/Controls/financialStatementTemplatePicker.obs.d.ts +16 -0
- package/types/Controls/firstNameTextBox.obs.d.ts +0 -2
- package/types/Controls/geoPicker.obs.d.ts +6 -2
- package/types/Controls/gradePicker.obs.d.ts +0 -6
- package/types/Controls/groupAndRolePicker.obs.d.ts +2 -10
- package/types/Controls/groupRolePicker.obs.d.ts +2 -2
- package/types/Controls/groupTypeGroupPicker.obs.d.ts +0 -6
- package/types/Controls/groupTypePicker.obs.d.ts +6 -4
- package/types/Controls/hint.obs.d.ts +16 -0
- package/types/Controls/htmlEditor.obs.d.ts +25 -0
- package/types/Controls/iconPicker.obs.d.ts +91 -0
- package/types/Controls/imageEditor.obs.d.ts +1 -1
- package/types/Controls/inlineCheckBox.obs.d.ts +11 -1
- package/types/Controls/interactionChannelPicker.obs.d.ts +8 -0
- package/types/Controls/kpi.obs.d.ts +12 -5
- package/types/Controls/lavaCommandPicker.obs.d.ts +20 -2
- package/types/Controls/learningClassActivityPicker.obs.d.ts +147 -0
- package/types/Controls/learningClassPicker.obs.d.ts +147 -0
- package/types/Controls/lineChart.obs.d.ts +378 -0
- package/types/Controls/locationAddressPicker.obs.d.ts +2 -6
- package/types/Controls/mediaElementPicker.obs.d.ts +4 -4
- package/types/Controls/modal.obs.d.ts +33 -1
- package/types/Controls/numberBox.obs.d.ts +11 -0
- package/types/Controls/panel.obs.d.ts +94 -6
- package/types/Controls/phoneNumberBox.obs.d.ts +23 -6
- package/types/Controls/pieChart.obs.d.ts +364 -0
- package/types/Controls/progressBar.obs.d.ts +9 -0
- package/types/Controls/racePicker.obs.d.ts +8 -8
- package/types/Controls/registrationInstanceBasePicker.obs.d.ts +4 -10
- package/types/Controls/registrationInstancePicker.obs.d.ts +21 -0
- package/types/Controls/reminderTypePicker.obs.d.ts +8 -6
- package/types/Controls/remoteAuthsPicker.obs.d.ts +16 -0
- package/types/Controls/rockAttributeFilter.obs.d.ts +3 -3
- package/types/Controls/rockFormField.obs.d.ts +10 -10
- package/types/Controls/scheduleBuilder.obs.d.ts +11 -0
- package/types/Controls/slidingDateRangePicker.obs.d.ts +12 -3
- package/types/Controls/stepProgramPicker.obs.d.ts +8 -0
- package/types/Controls/stepProgramStepTypePicker.obs.d.ts +21 -0
- package/types/Controls/stepStatusPicker.obs.d.ts +0 -6
- package/types/Controls/streakTypePicker.obs.d.ts +16 -0
- package/types/Controls/tabbedContent.obs.d.ts +1 -1
- package/types/Controls/textBox.obs.d.ts +9 -0
- package/types/Controls/wordCloud.obs.d.ts +1 -1
- package/types/Controls/workflowBasePicker.obs.d.ts +0 -6
- package/types/Core/Controls/chart.d.ts +221 -0
- package/types/Core/Controls/contentSection.d.ts +62 -0
- package/types/Core/Core/Automation/component.d.ts +15 -0
- package/types/Core/Reporting/comparisonType.d.ts +1 -1
- package/types/Core/Utilities/contextEntity.d.ts +54 -0
- package/types/{Controls/Grid/virtualScroller.partial.d.ts → Core/Utilities/virtualScroll.d.ts} +48 -1
- package/types/Directives/dragDrop.d.ts +1 -1
- package/types/Enums/AI/Agent/agentType.d.ts +14 -0
- package/types/Enums/AI/Agent/audienceType.d.ts +23 -0
- package/types/Enums/AI/Agent/authorRole.d.ts +25 -0
- package/types/Enums/AI/Agent/modelServiceRole.d.ts +22 -0
- package/types/Enums/AI/Agent/parameterSchemaDataType.d.ts +26 -0
- package/types/Enums/AI/Agent/toolStatus.d.ts +13 -0
- package/types/Enums/AI/Agent/toolType.d.ts +13 -0
- package/types/Enums/Blocks/Communication/CommunicationDetail/pushOpenAction.d.ts +15 -0
- package/types/Enums/Blocks/Communication/CommunicationFlowDetail/pushOpenAction.d.ts +15 -0
- package/types/Enums/Blocks/Communication/EmailPreferenceEntry/communicationChannelType.d.ts +11 -0
- package/types/Enums/CheckIn/adultsOrChildrenSelectionMode.d.ts +27 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/browserFamily.d.ts +24 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/deviceType.d.ts +13 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/geolocationLocationComponent.d.ts +14 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/previousActivityType.d.ts +11 -0
- package/types/Enums/Cms/blockRole.d.ts +51 -0
- package/types/Enums/Cms/lavaEndpointHttpMethod.d.ts +15 -0
- package/types/Enums/Cms/lavaEndpointSecurityMode.d.ts +15 -0
- package/types/Enums/Communication/Chat/chatMessageEventType.d.ts +11 -0
- package/types/Enums/Communication/Chat/chatViewStyle.d.ts +20 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientInactiveReason.d.ts +23 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientStatus.d.ts +11 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientUnsubscribeScope.d.ts +11 -0
- package/types/Enums/Communication/communicationFlowTriggerType.d.ts +13 -0
- package/types/Enums/Communication/communicationInteractionOperation.d.ts +11 -0
- package/types/Enums/Communication/communicationRecipientActivity.d.ts +25 -0
- package/types/Enums/Communication/communicationTemplateUsageType.d.ts +9 -0
- package/types/Enums/Communication/conversionGoalType.d.ts +19 -0
- package/types/Enums/Communication/exitConditionType.d.ts +15 -0
- package/types/Enums/Communication/inferredCommunicationStatus.d.ts +24 -0
- package/types/Enums/Communication/unsubscribeLevel.d.ts +2 -2
- package/types/Enums/Controls/hintType.d.ts +8 -0
- package/types/Enums/Core/Automation/Triggers/chatMessageCriteriaRuleType.d.ts +15 -0
- package/types/Enums/Core/Automation/Triggers/entityChangeModificationType.d.ts +13 -0
- package/types/Enums/Core/Automation/Triggers/entityChangeSimpleChangeType.d.ts +40 -0
- package/types/Enums/Engagement/completionFlow.d.ts +13 -0
- package/types/Enums/Engagement/engagementType.d.ts +13 -0
- package/types/Enums/Engagement/stepChartMeasure.d.ts +23 -0
- package/types/Enums/Engagement/stepProgramView.d.ts +17 -0
- package/types/Enums/Geography/travelMode.d.ts +13 -0
- package/types/Enums/Group/appliesToPlacementConfiguration.d.ts +13 -0
- package/types/Enums/Group/placementMode.d.ts +15 -0
- package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -1
- package/types/FieldTypes/badgesField.partial.d.ts +3 -0
- package/types/FieldTypes/badgesFieldComponents.d.ts +30 -0
- package/types/FieldTypes/binaryFileField.partial.d.ts +2 -1
- package/types/FieldTypes/binaryFileFieldComponents.d.ts +19 -9
- package/types/FieldTypes/blockTemplateFieldComponents.d.ts +1 -1
- package/types/FieldTypes/colorSelectorComponents.d.ts +17 -3
- package/types/FieldTypes/communicationFlowField.partial.d.ts +13 -0
- package/types/FieldTypes/communicationFlowFieldComponents.d.ts +61 -0
- package/types/FieldTypes/connectionActivityTypeFieldComponents.d.ts +2 -2
- package/types/FieldTypes/contentChannelItemFieldComponents.d.ts +1 -1
- package/types/FieldTypes/groupTypeGroupField.partial.d.ts +1 -1
- package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
- package/types/FieldTypes/urlLinkFieldComponents.d.ts +10 -11
- package/types/FieldTypes/utils.d.ts +1 -1
- package/types/PageState/index.d.ts +1 -0
- package/types/PageState/state.d.ts +0 -1
- package/types/SystemGuids/blockType.d.ts +6 -0
- package/types/SystemGuids/category.d.ts +4 -0
- package/types/SystemGuids/definedType.d.ts +8 -0
- package/types/SystemGuids/definedValue.d.ts +58 -0
- package/types/SystemGuids/entityType.d.ts +38 -2
- package/types/SystemGuids/fieldType.d.ts +4 -0
- package/types/SystemGuids/group.d.ts +2 -0
- package/types/SystemGuids/page.d.ts +13 -0
- package/types/SystemGuids/pageRoute.d.ts +2 -0
- package/types/SystemGuids/serviceJob.d.ts +31 -1
- package/types/SystemGuids/stepProgram.d.ts +5 -0
- package/types/SystemGuids/stepStatus.d.ts +7 -0
- package/types/SystemGuids/stepType.d.ts +11 -0
- package/types/Templates/detailBlock.d.ts +21 -0
- package/types/Templates/rockPage.d.ts +7 -3
- package/types/Types/Controls/dropDownMenu.d.ts +1 -1
- package/types/Types/Controls/grid.d.ts +45 -0
- package/types/Types/Utility/block.d.ts +3 -0
- package/types/Types/Utility/browserBus.d.ts +11 -0
- package/types/Types/Utility/http.d.ts +3 -0
- package/types/Utility/block.d.ts +90 -10
- package/types/Utility/browserBus.d.ts +4 -0
- package/types/Utility/chartUtils.d.ts +139 -0
- package/types/Utility/component.d.ts +28 -14
- package/types/Utility/cssUtils.d.ts +13 -0
- package/types/Utility/dom.d.ts +10 -0
- package/types/Utility/http.d.ts +11 -0
- package/types/Utility/jsonUtils.d.ts +8 -0
- package/types/Utility/lava.d.ts +2 -0
- package/types/Utility/linq.d.ts +323 -67
- package/types/Utility/objectUtils.d.ts +20 -0
- package/types/Utility/rockDateTime.d.ts +19 -1
- package/types/Utility/rockTimeSpan.d.ts +30 -0
- package/types/Utility/stringUtils.d.ts +14 -0
- package/types/Utility/tooltip.d.ts +14 -1
- package/types/Utility/treeItemProviders.d.ts +1 -1
- package/types/Utility/util.d.ts +4 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/agentSkillBag.d.ts +51 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentBag.d.ts +108 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/editSkillResponseBag.d.ts +41 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/getComponentDefinitionResponseBag.d.ts +44 -0
- package/types/ViewModels/Blocks/AI/AIAgentList/aiAgentListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderBag.d.ts +55 -0
- package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AIProviderList/aiProviderListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISettings/aiSettingsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/AI/AISettings/aiSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillBag.d.ts +63 -0
- package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISkillList/aiSkillListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolBag.d.ts +88 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolListOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/parameterSchemaBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Administration/ExternalApplicationList/externalApplicationListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/generalConfigurationBag.d.ts +12 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/systemConfigurationInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/BulkImport/bulkImportToolBox.d.ts +33 -0
- package/types/ViewModels/Blocks/BulkImport/bulkImportToolOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/addIndividualOptionsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/editFamilyResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +7 -0
- package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInRegistrationSettingsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +4 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +7 -0
- package/types/ViewModels/Blocks/Cms/AssetManager/assetManagerOptionsBag.d.ts +2 -2
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationList/lavaApplicationListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointBag.d.ts +75 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointList/lavaEndpointListOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsBag.d.ts +0 -6
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +6 -3
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkList/pageShortLinkListOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/additionalFilterConfigurationBag.d.ts +64 -0
- package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts → Cms/RequestFilterDetail/browserRequestFilterBag.d.ts} +11 -14
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/cookieRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/deviceTypeRequestFilterBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/environmentRequestFilterBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/geolocationRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/ipAddressRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/previousActivityRequestFilterBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/queryStringRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/timePickerValueBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterList/requestFilterListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/ThemeDetail/themeFieldBag.d.ts +3 -3
- package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatPersonDataBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatReactionBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatViewConfigurationBag.d.ts +9 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActionResponseBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActivityFlowBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsResponseBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDeliveryBreakdownBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailBag.d.ts +59 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailInitializationBox.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailPermissionsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationKpisBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationLinkAnalyticsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationMessagePreviewBag.d.ts +91 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridDataBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridSettingsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRedirectBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/createPersonalTemplateRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationBag.d.ts +2 -2
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/{communicationEntryWizardGetEmailPreviewHtmlBag.d.ts → communicationEntryWizardGetPreviewBag.d.ts} +11 -4
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/checkShortLinkTokenBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowCommunicationBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCommunicationTemplateBag.d.ts +97 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCompletedFormSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailConversionGoalSettingsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailEnteredDataViewSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailInitializationBox.d.ts +68 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupTypeSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailRegisteredSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailTookStepSettingsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowCommunicationBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceCommunicationBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/initializationBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/recipientMetricsBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowList/communicationFlowListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/communicationFlowInstanceBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/completedFormSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/conversionGoalSettingsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/enteredDataViewSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/gridRowBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/initializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupTypeSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/messageBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/performanceBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/registeredSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/tookStepSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationList/communicationListOptionsBag.d.ts +14 -8
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockDataBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportChartDataBag.d.ts +38 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportFiltersBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/communicationChannelBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +93 -37
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageChannelSubscriptionRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageEmailSubscriptionRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateCommunicationPreferenceRequestBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateContactInfoRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateEmailPreferenceRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +9 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationEventBag.d.ts +74 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerBag.d.ts +90 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerDetailOptionsBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/getComponentDefinitionResponseBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerList/automationTriggerListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +2 -0
- package/types/ViewModels/Blocks/Core/DefinedTypeList/definedTypeListOptionsBag.d.ts +0 -2
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +2 -1
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Crm/PersonDuplicateDetail/personDuplicateDetailOptionsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/chartDataBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/seriesBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +25 -3
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +6 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +4 -4
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepProgramBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepStatusBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeBag.d.ts +34 -8
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeDetailOptionsBag.d.ts +12 -1
- package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts → Engagement/StepTypeDetail/stepTypeDetailsBag.d.ts} +4 -7
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeTransferBag.d.ts +36 -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 +3 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/persistSessionResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Event/RegistrationInstanceList/registrationInstanceListOptionsBag.d.ts +6 -6
- package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupMembersBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/attributeDataBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/attributeFiltersBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/destinationGroupTypeRoleBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/detachGroupBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupMemberBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementInitializationBox.d.ts +75 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementKeysBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/personBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/personFiltersBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingsBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupTypeBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementPeopleBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/realTimeConnectionKeysBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/registrantBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityAttributesBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityKeysBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityParticipantBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassFacilitatorBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceBox.d.ts +7 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +0 -8
- package/types/ViewModels/Blocks/Reporting/Insights/insightsChartDataBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/Insights/insightsInitializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Reporting/Insights/insightsOptionsBag.d.ts +58 -0
- package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterBox.d.ts +30 -0
- package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterBox.d.ts +30 -0
- package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Workflow/FormBuilder/formBuilderDetailLinkToFormBag.d.ts +36 -0
- package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +6 -0
- package/types/ViewModels/CheckIn/attendeeBag.d.ts +4 -0
- package/types/ViewModels/CheckIn/kioskBag.d.ts +7 -0
- package/types/ViewModels/CheckIn/proximityAttendanceNotificationBag.d.ts +34 -0
- package/types/ViewModels/Cms/contextEntityItemBag.d.ts +39 -0
- package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +7 -0
- package/types/ViewModels/Controls/dynamicComponentDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Controls/iconLibraryBag.d.ts +43 -0
- package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaBag.d.ts +33 -0
- package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaRuleBag.d.ts +43 -0
- package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaBag.d.ts +42 -0
- package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaRuleBag.d.ts +58 -0
- package/types/ViewModels/Core/Automation/automationValueDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Entities/prayerRequestBag.d.ts +117 -0
- package/types/ViewModels/Entities/scheduleBag.d.ts +103 -0
- package/types/ViewModels/Entities/scheduleCategoryExclusionBag.d.ts +60 -0
- package/types/ViewModels/Event/RegistrationEntry/registrationRegistrantUpdatedMessageBag.d.ts +59 -0
- package/types/ViewModels/Group/GroupMember/groupMemberUpdatedMessageBag.d.ts +61 -0
- package/types/ViewModels/Reporting/BarChart/barSeriesBag.d.ts +43 -0
- package/types/ViewModels/Reporting/LineChart/lineSeriesBag.d.ts +43 -0
- package/types/ViewModels/Reporting/PieChart/pieSeriesBag.d.ts +34 -0
- package/types/ViewModels/Reporting/chartBag.d.ts +37 -0
- package/types/ViewModels/Reporting/chartOptionsBag.d.ts +26 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientActivityBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityResultsBag.d.ts +60 -0
- package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +3 -0
- package/types/ViewModels/Rest/Controls/dataFilterFormatSelectionOptionsBag.d.ts +47 -0
- package/types/ViewModels/Rest/Controls/emailEditorGetGroupOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/formattedFieldSelectGetSortByPropertiesOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/hasCompletedCourseSelectGetCoursesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/iconPickerGetIconLibrariesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/inGroupFilterGetGroupRolesForGroupsOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/inGroupGroupTypeSelectGetRolesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/interactionCountSelectGetComponentsOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/interactionDateSelectGetComponentsOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/learningClassActivityPickerGetLearningClassActivitiesOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/learningClassPickerGetLearningClassesOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +9 -0
- package/types/ViewModels/Rest/Controls/memberListSelectGetGroupRolesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +7 -0
- package/types/ViewModels/Rest/Utilities/updateContextEntityOptionsBag.d.ts +39 -0
- package/types/Core/Reporting/filterExpressionType.d.ts +0 -28
- package/types/Core/Reporting/filterMode.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockrms/obsidian-framework",
|
|
3
3
|
"description": "Type definitions to allow building a plugin against the Obsidian framework.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "18.2.4",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"scripts": {},
|
|
7
7
|
"exports": "./types/*.d.ts",
|
|
@@ -128,6 +128,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
type: PropType<boolean>;
|
|
129
129
|
default: false;
|
|
130
130
|
};
|
|
131
|
+
tooltip: {
|
|
132
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
133
|
+
required: false;
|
|
134
|
+
};
|
|
135
|
+
tooltipHtml: {
|
|
136
|
+
type: PropType<boolean>;
|
|
137
|
+
default: false;
|
|
138
|
+
};
|
|
131
139
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
132
140
|
formatComponent: {
|
|
133
141
|
type: PropType<Component>;
|
|
@@ -243,6 +251,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
243
251
|
type: PropType<boolean>;
|
|
244
252
|
default: false;
|
|
245
253
|
};
|
|
254
|
+
tooltip: {
|
|
255
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
256
|
+
required: false;
|
|
257
|
+
};
|
|
258
|
+
tooltipHtml: {
|
|
259
|
+
type: PropType<boolean>;
|
|
260
|
+
default: false;
|
|
261
|
+
};
|
|
246
262
|
}>>, {
|
|
247
263
|
name: string;
|
|
248
264
|
formatComponent: Component;
|
|
@@ -251,5 +267,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
251
267
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
252
268
|
wrapped: boolean;
|
|
253
269
|
disableSort: boolean;
|
|
270
|
+
tooltipHtml: boolean;
|
|
254
271
|
}, {}>;
|
|
255
272
|
export default _default;
|
|
@@ -72,6 +72,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
72
|
type: PropType<string | null>;
|
|
73
73
|
default: null;
|
|
74
74
|
};
|
|
75
|
+
/**
|
|
76
|
+
* If a function is provided, it will be called with the row to determine
|
|
77
|
+
* if the button should be visible.
|
|
78
|
+
*/
|
|
79
|
+
visible: {
|
|
80
|
+
type: PropType<(row: Record<string, unknown>) => boolean>;
|
|
81
|
+
required: false;
|
|
82
|
+
};
|
|
75
83
|
/**
|
|
76
84
|
* If true, the button will be disabled and not clickable.
|
|
77
85
|
* If a function is provided, it will be called with the row to determine if the button should be disabled.
|
|
@@ -148,6 +156,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
148
156
|
type: PropType<boolean>;
|
|
149
157
|
default: false;
|
|
150
158
|
};
|
|
159
|
+
tooltipHtml: {
|
|
160
|
+
type: PropType<boolean>;
|
|
161
|
+
default: false;
|
|
162
|
+
};
|
|
151
163
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
152
164
|
/**
|
|
153
165
|
* Called when the button has been clicked.
|
|
@@ -217,6 +229,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
217
229
|
type: PropType<string | null>;
|
|
218
230
|
default: null;
|
|
219
231
|
};
|
|
232
|
+
/**
|
|
233
|
+
* If a function is provided, it will be called with the row to determine
|
|
234
|
+
* if the button should be visible.
|
|
235
|
+
*/
|
|
236
|
+
visible: {
|
|
237
|
+
type: PropType<(row: Record<string, unknown>) => boolean>;
|
|
238
|
+
required: false;
|
|
239
|
+
};
|
|
220
240
|
/**
|
|
221
241
|
* If true, the button will be disabled and not clickable.
|
|
222
242
|
* If a function is provided, it will be called with the row to determine if the button should be disabled.
|
|
@@ -293,6 +313,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
293
313
|
type: PropType<boolean>;
|
|
294
314
|
default: false;
|
|
295
315
|
};
|
|
316
|
+
tooltipHtml: {
|
|
317
|
+
type: PropType<boolean>;
|
|
318
|
+
default: false;
|
|
319
|
+
};
|
|
296
320
|
}>>, {
|
|
297
321
|
disabled: boolean | ((row: Record<string, unknown>) => boolean);
|
|
298
322
|
tooltip: string | null;
|
|
@@ -305,5 +329,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
305
329
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
306
330
|
wrapped: boolean;
|
|
307
331
|
disableSort: boolean;
|
|
332
|
+
tooltipHtml: boolean;
|
|
308
333
|
}, {}>;
|
|
309
334
|
export default _default;
|
|
@@ -88,6 +88,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
88
|
type: PropType<boolean>;
|
|
89
89
|
default: false;
|
|
90
90
|
};
|
|
91
|
+
tooltip: {
|
|
92
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
93
|
+
required: false;
|
|
94
|
+
};
|
|
95
|
+
tooltipHtml: {
|
|
96
|
+
type: PropType<boolean>;
|
|
97
|
+
default: false;
|
|
98
|
+
};
|
|
91
99
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
92
100
|
columnType: {
|
|
93
101
|
type: PropType<string>;
|
|
@@ -177,11 +185,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
185
|
type: PropType<boolean>;
|
|
178
186
|
default: false;
|
|
179
187
|
};
|
|
188
|
+
tooltip: {
|
|
189
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
190
|
+
required: false;
|
|
191
|
+
};
|
|
192
|
+
tooltipHtml: {
|
|
193
|
+
type: PropType<boolean>;
|
|
194
|
+
default: false;
|
|
195
|
+
};
|
|
180
196
|
}>>, {
|
|
181
197
|
name: string;
|
|
182
198
|
columnType: string;
|
|
183
199
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
184
200
|
wrapped: boolean;
|
|
185
201
|
disableSort: boolean;
|
|
202
|
+
tooltipHtml: boolean;
|
|
186
203
|
}, {}>;
|
|
187
204
|
export default _default;
|
|
@@ -125,6 +125,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
125
|
type: PropType<boolean>;
|
|
126
126
|
default: false;
|
|
127
127
|
};
|
|
128
|
+
tooltip: {
|
|
129
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
130
|
+
required: false;
|
|
131
|
+
};
|
|
132
|
+
tooltipHtml: {
|
|
133
|
+
type: PropType<boolean>;
|
|
134
|
+
default: false;
|
|
135
|
+
};
|
|
128
136
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
129
137
|
name: {
|
|
130
138
|
type: PropType<string>;
|
|
@@ -244,6 +252,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
244
252
|
type: PropType<boolean>;
|
|
245
253
|
default: false;
|
|
246
254
|
};
|
|
255
|
+
tooltip: {
|
|
256
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
257
|
+
required: false;
|
|
258
|
+
};
|
|
259
|
+
tooltipHtml: {
|
|
260
|
+
type: PropType<boolean>;
|
|
261
|
+
default: false;
|
|
262
|
+
};
|
|
247
263
|
}>>, {
|
|
248
264
|
name: string;
|
|
249
265
|
width: string;
|
|
@@ -253,6 +269,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
253
269
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
254
270
|
wrapped: boolean;
|
|
255
271
|
disableSort: boolean;
|
|
272
|
+
tooltipHtml: boolean;
|
|
256
273
|
valueToCopy: (row: Record<string, unknown>, column: ColumnDefinition, grid: IGridState) => string;
|
|
257
274
|
}, {}>;
|
|
258
275
|
export default _default;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { Component, PropType } from "vue";
|
|
2
|
-
import { ColumnDefinition, ExportValueFunction } from "@Obsidian/Types/Controls/grid";
|
|
2
|
+
import { ColumnDefinition, QuickFilterValueFunction, ExportValueFunction } from "@Obsidian/Types/Controls/grid";
|
|
3
|
+
/**
|
|
4
|
+
* Gets the value to use when displaying a cell of this column.
|
|
5
|
+
*
|
|
6
|
+
* @param row The row that will be displayed.
|
|
7
|
+
* @param column The column that will be displayed.
|
|
8
|
+
*
|
|
9
|
+
* @returns A string value or undefined if the cell has no value.
|
|
10
|
+
*/
|
|
11
|
+
declare function getDisplayedValue(row: Record<string, unknown>, column: ColumnDefinition): string | undefined;
|
|
3
12
|
/**
|
|
4
13
|
* Gets the value to use when exporting a cell of this column.
|
|
5
14
|
*
|
|
@@ -65,6 +74,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
74
|
};
|
|
66
75
|
}>>, {}, {}>;
|
|
67
76
|
};
|
|
77
|
+
quickFilterValue: {
|
|
78
|
+
type: PropType<QuickFilterValueFunction>;
|
|
79
|
+
default: typeof getDisplayedValue;
|
|
80
|
+
};
|
|
68
81
|
exportValue: {
|
|
69
82
|
type: PropType<ExportValueFunction>;
|
|
70
83
|
default: typeof getExportValue;
|
|
@@ -85,10 +98,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
98
|
type: PropType<string>;
|
|
86
99
|
required: false;
|
|
87
100
|
};
|
|
88
|
-
quickFilterValue: {
|
|
89
|
-
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
90
|
-
required: false;
|
|
91
|
-
};
|
|
92
101
|
sortField: {
|
|
93
102
|
type: PropType<string>;
|
|
94
103
|
required: false;
|
|
@@ -145,6 +154,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
145
154
|
type: PropType<boolean>;
|
|
146
155
|
default: false;
|
|
147
156
|
};
|
|
157
|
+
tooltip: {
|
|
158
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
159
|
+
required: false;
|
|
160
|
+
};
|
|
161
|
+
tooltipHtml: {
|
|
162
|
+
type: PropType<boolean>;
|
|
163
|
+
default: false;
|
|
164
|
+
};
|
|
148
165
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
149
166
|
formatComponent: {
|
|
150
167
|
type: PropType<Component>;
|
|
@@ -198,6 +215,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
198
215
|
};
|
|
199
216
|
}>>, {}, {}>;
|
|
200
217
|
};
|
|
218
|
+
quickFilterValue: {
|
|
219
|
+
type: PropType<QuickFilterValueFunction>;
|
|
220
|
+
default: typeof getDisplayedValue;
|
|
221
|
+
};
|
|
201
222
|
exportValue: {
|
|
202
223
|
type: PropType<ExportValueFunction>;
|
|
203
224
|
default: typeof getExportValue;
|
|
@@ -218,10 +239,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
218
239
|
type: PropType<string>;
|
|
219
240
|
required: false;
|
|
220
241
|
};
|
|
221
|
-
quickFilterValue: {
|
|
222
|
-
type: PropType<string | import("@Obsidian/Types/Controls/grid").QuickFilterValueFunction>;
|
|
223
|
-
required: false;
|
|
224
|
-
};
|
|
225
242
|
sortField: {
|
|
226
243
|
type: PropType<string>;
|
|
227
244
|
required: false;
|
|
@@ -278,8 +295,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
278
295
|
type: PropType<boolean>;
|
|
279
296
|
default: false;
|
|
280
297
|
};
|
|
298
|
+
tooltip: {
|
|
299
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
300
|
+
required: false;
|
|
301
|
+
};
|
|
302
|
+
tooltipHtml: {
|
|
303
|
+
type: PropType<boolean>;
|
|
304
|
+
default: false;
|
|
305
|
+
};
|
|
281
306
|
}>>, {
|
|
282
307
|
name: string;
|
|
308
|
+
quickFilterValue: QuickFilterValueFunction;
|
|
283
309
|
formatComponent: Component;
|
|
284
310
|
exportValue: ExportValueFunction;
|
|
285
311
|
skeletonComponent: Component;
|
|
@@ -287,5 +313,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
287
313
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
288
314
|
wrapped: boolean;
|
|
289
315
|
disableSort: boolean;
|
|
316
|
+
tooltipHtml: boolean;
|
|
290
317
|
}, {}>;
|
|
291
318
|
export default _default;
|
|
@@ -156,6 +156,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
156
156
|
type: PropType<boolean>;
|
|
157
157
|
default: false;
|
|
158
158
|
};
|
|
159
|
+
tooltip: {
|
|
160
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
161
|
+
required: false;
|
|
162
|
+
};
|
|
163
|
+
tooltipHtml: {
|
|
164
|
+
type: PropType<boolean>;
|
|
165
|
+
default: false;
|
|
166
|
+
};
|
|
159
167
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
160
168
|
formatComponent: {
|
|
161
169
|
type: PropType<Component>;
|
|
@@ -289,6 +297,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
289
297
|
type: PropType<boolean>;
|
|
290
298
|
default: false;
|
|
291
299
|
};
|
|
300
|
+
tooltip: {
|
|
301
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
302
|
+
required: false;
|
|
303
|
+
};
|
|
304
|
+
tooltipHtml: {
|
|
305
|
+
type: PropType<boolean>;
|
|
306
|
+
default: false;
|
|
307
|
+
};
|
|
292
308
|
}>>, {
|
|
293
309
|
name: string;
|
|
294
310
|
quickFilterValue: string | QuickFilterValueFunction;
|
|
@@ -299,5 +315,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
299
315
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
300
316
|
wrapped: boolean;
|
|
301
317
|
disableSort: boolean;
|
|
318
|
+
tooltipHtml: boolean;
|
|
302
319
|
}, {}>;
|
|
303
320
|
export default _default;
|
|
@@ -164,6 +164,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
164
164
|
type: PropType<boolean>;
|
|
165
165
|
default: false;
|
|
166
166
|
};
|
|
167
|
+
tooltip: {
|
|
168
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
169
|
+
required: false;
|
|
170
|
+
};
|
|
171
|
+
tooltipHtml: {
|
|
172
|
+
type: PropType<boolean>;
|
|
173
|
+
default: false;
|
|
174
|
+
};
|
|
167
175
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
168
176
|
formatComponent: {
|
|
169
177
|
type: PropType<Component>;
|
|
@@ -305,6 +313,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
305
313
|
type: PropType<boolean>;
|
|
306
314
|
default: false;
|
|
307
315
|
};
|
|
316
|
+
tooltip: {
|
|
317
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
318
|
+
required: false;
|
|
319
|
+
};
|
|
320
|
+
tooltipHtml: {
|
|
321
|
+
type: PropType<boolean>;
|
|
322
|
+
default: false;
|
|
323
|
+
};
|
|
308
324
|
}>>, {
|
|
309
325
|
name: string;
|
|
310
326
|
quickFilterValue: string | QuickFilterValueFunction;
|
|
@@ -315,6 +331,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
315
331
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
316
332
|
wrapped: boolean;
|
|
317
333
|
disableSort: boolean;
|
|
334
|
+
tooltipHtml: boolean;
|
|
318
335
|
showSeconds: boolean;
|
|
319
336
|
}, {}>;
|
|
320
337
|
export default _default;
|
|
@@ -80,6 +80,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
80
|
type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
|
|
81
81
|
required: false;
|
|
82
82
|
};
|
|
83
|
+
/**
|
|
84
|
+
* An optional callback to get an additional message for the delete confirmation.
|
|
85
|
+
*/
|
|
86
|
+
additionalMessage: {
|
|
87
|
+
type: PropType<((row: Record<string, unknown>) => string | null | undefined) | undefined>;
|
|
88
|
+
};
|
|
83
89
|
title: {
|
|
84
90
|
type: PropType<string>;
|
|
85
91
|
required: false;
|
|
@@ -144,6 +150,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
150
|
type: PropType<boolean>;
|
|
145
151
|
default: false;
|
|
146
152
|
};
|
|
153
|
+
tooltip: {
|
|
154
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
155
|
+
required: false;
|
|
156
|
+
};
|
|
157
|
+
tooltipHtml: {
|
|
158
|
+
type: PropType<boolean>;
|
|
159
|
+
default: false;
|
|
160
|
+
};
|
|
147
161
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
148
162
|
name: {
|
|
149
163
|
type: PropType<string>;
|
|
@@ -220,6 +234,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
220
234
|
type: PropType<(key: string, grid: IGridState) => (void | Promise<void>)>;
|
|
221
235
|
required: false;
|
|
222
236
|
};
|
|
237
|
+
/**
|
|
238
|
+
* An optional callback to get an additional message for the delete confirmation.
|
|
239
|
+
*/
|
|
240
|
+
additionalMessage: {
|
|
241
|
+
type: PropType<((row: Record<string, unknown>) => string | null | undefined) | undefined>;
|
|
242
|
+
};
|
|
223
243
|
title: {
|
|
224
244
|
type: PropType<string>;
|
|
225
245
|
required: false;
|
|
@@ -284,6 +304,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
284
304
|
type: PropType<boolean>;
|
|
285
305
|
default: false;
|
|
286
306
|
};
|
|
307
|
+
tooltip: {
|
|
308
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
309
|
+
required: false;
|
|
310
|
+
};
|
|
311
|
+
tooltipHtml: {
|
|
312
|
+
type: PropType<boolean>;
|
|
313
|
+
default: false;
|
|
314
|
+
};
|
|
287
315
|
}>>, {
|
|
288
316
|
name: string;
|
|
289
317
|
width: string;
|
|
@@ -294,6 +322,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
294
322
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
295
323
|
wrapped: boolean;
|
|
296
324
|
disableSort: boolean;
|
|
325
|
+
tooltipHtml: boolean;
|
|
297
326
|
disableConfirmation: boolean;
|
|
298
327
|
}, {}>;
|
|
299
328
|
export default _default;
|
|
@@ -135,6 +135,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
135
|
type: PropType<boolean>;
|
|
136
136
|
default: false;
|
|
137
137
|
};
|
|
138
|
+
tooltip: {
|
|
139
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
140
|
+
required: false;
|
|
141
|
+
};
|
|
142
|
+
tooltipHtml: {
|
|
143
|
+
type: PropType<boolean>;
|
|
144
|
+
default: false;
|
|
145
|
+
};
|
|
138
146
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
139
147
|
name: {
|
|
140
148
|
type: PropType<string>;
|
|
@@ -267,6 +275,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
267
275
|
type: PropType<boolean>;
|
|
268
276
|
default: false;
|
|
269
277
|
};
|
|
278
|
+
tooltip: {
|
|
279
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
280
|
+
required: false;
|
|
281
|
+
};
|
|
282
|
+
tooltipHtml: {
|
|
283
|
+
type: PropType<boolean>;
|
|
284
|
+
default: false;
|
|
285
|
+
};
|
|
270
286
|
}>>, {
|
|
271
287
|
name: string;
|
|
272
288
|
width: string;
|
|
@@ -277,5 +293,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
277
293
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
278
294
|
wrapped: boolean;
|
|
279
295
|
disableSort: boolean;
|
|
296
|
+
tooltipHtml: boolean;
|
|
280
297
|
}, {}>;
|
|
281
298
|
export default _default;
|
|
@@ -157,6 +157,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
157
157
|
type: PropType<boolean>;
|
|
158
158
|
default: false;
|
|
159
159
|
};
|
|
160
|
+
tooltip: {
|
|
161
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
162
|
+
required: false;
|
|
163
|
+
};
|
|
164
|
+
tooltipHtml: {
|
|
165
|
+
type: PropType<boolean>;
|
|
166
|
+
default: false;
|
|
167
|
+
};
|
|
160
168
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
169
|
formatComponent: {
|
|
162
170
|
type: PropType<Component>;
|
|
@@ -295,6 +303,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
295
303
|
type: PropType<boolean>;
|
|
296
304
|
default: false;
|
|
297
305
|
};
|
|
306
|
+
tooltip: {
|
|
307
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
308
|
+
required: false;
|
|
309
|
+
};
|
|
310
|
+
tooltipHtml: {
|
|
311
|
+
type: PropType<boolean>;
|
|
312
|
+
default: false;
|
|
313
|
+
};
|
|
298
314
|
}>>, {
|
|
299
315
|
name: string;
|
|
300
316
|
quickFilterValue: QuickFilterValueFunction;
|
|
@@ -305,5 +321,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
305
321
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
306
322
|
wrapped: boolean;
|
|
307
323
|
disableSort: boolean;
|
|
324
|
+
tooltipHtml: boolean;
|
|
308
325
|
}, {}>;
|
|
309
326
|
export default _default;
|
|
@@ -171,6 +171,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
171
|
type: PropType<boolean>;
|
|
172
172
|
default: false;
|
|
173
173
|
};
|
|
174
|
+
tooltip: {
|
|
175
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
176
|
+
required: false;
|
|
177
|
+
};
|
|
178
|
+
tooltipHtml: {
|
|
179
|
+
type: PropType<boolean>;
|
|
180
|
+
default: false;
|
|
181
|
+
};
|
|
174
182
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
175
183
|
formatComponent: {
|
|
176
184
|
type: PropType<Component>;
|
|
@@ -312,6 +320,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
312
320
|
type: PropType<boolean>;
|
|
313
321
|
default: false;
|
|
314
322
|
};
|
|
323
|
+
tooltip: {
|
|
324
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
325
|
+
required: false;
|
|
326
|
+
};
|
|
327
|
+
tooltipHtml: {
|
|
328
|
+
type: PropType<boolean>;
|
|
329
|
+
default: false;
|
|
330
|
+
};
|
|
315
331
|
}>>, {
|
|
316
332
|
name: string;
|
|
317
333
|
filterValue: FilterValueFunction;
|
|
@@ -323,5 +339,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
323
339
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
324
340
|
wrapped: boolean;
|
|
325
341
|
disableSort: boolean;
|
|
342
|
+
tooltipHtml: boolean;
|
|
326
343
|
}, {}>;
|
|
327
344
|
export default _default;
|
|
@@ -195,6 +195,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
195
|
type: PropType<boolean>;
|
|
196
196
|
default: false;
|
|
197
197
|
};
|
|
198
|
+
tooltip: {
|
|
199
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
200
|
+
required: false;
|
|
201
|
+
};
|
|
202
|
+
tooltipHtml: {
|
|
203
|
+
type: PropType<boolean>;
|
|
204
|
+
default: false;
|
|
205
|
+
};
|
|
198
206
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
199
207
|
formatComponent: {
|
|
200
208
|
type: PropType<Component>;
|
|
@@ -365,6 +373,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
365
373
|
type: PropType<boolean>;
|
|
366
374
|
default: false;
|
|
367
375
|
};
|
|
376
|
+
tooltip: {
|
|
377
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
378
|
+
required: false;
|
|
379
|
+
};
|
|
380
|
+
tooltipHtml: {
|
|
381
|
+
type: PropType<boolean>;
|
|
382
|
+
default: false;
|
|
383
|
+
};
|
|
368
384
|
}>>, {
|
|
369
385
|
name: string;
|
|
370
386
|
filterValue: string | FilterValueFunction;
|
|
@@ -378,5 +394,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
378
394
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
379
395
|
wrapped: boolean;
|
|
380
396
|
disableSort: boolean;
|
|
397
|
+
tooltipHtml: boolean;
|
|
381
398
|
}, {}>;
|
|
382
399
|
export default _default;
|
|
@@ -234,6 +234,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
234
234
|
type: PropType<boolean>;
|
|
235
235
|
default: false;
|
|
236
236
|
};
|
|
237
|
+
tooltip: {
|
|
238
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
239
|
+
required: false;
|
|
240
|
+
};
|
|
241
|
+
tooltipHtml: {
|
|
242
|
+
type: PropType<boolean>;
|
|
243
|
+
default: false;
|
|
244
|
+
};
|
|
237
245
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
238
246
|
formatComponent: {
|
|
239
247
|
type: PropType<Component>;
|
|
@@ -455,6 +463,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
455
463
|
type: PropType<boolean>;
|
|
456
464
|
default: false;
|
|
457
465
|
};
|
|
466
|
+
tooltip: {
|
|
467
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
468
|
+
required: false;
|
|
469
|
+
};
|
|
470
|
+
tooltipHtml: {
|
|
471
|
+
type: PropType<boolean>;
|
|
472
|
+
default: false;
|
|
473
|
+
};
|
|
458
474
|
}>>, {
|
|
459
475
|
name: string;
|
|
460
476
|
formatComponent: Component;
|
|
@@ -464,5 +480,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
464
480
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
465
481
|
wrapped: boolean;
|
|
466
482
|
disableSort: boolean;
|
|
483
|
+
tooltipHtml: boolean;
|
|
467
484
|
}, {}>;
|
|
468
485
|
export default _default;
|
|
@@ -146,6 +146,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
146
146
|
type: PropType<boolean>;
|
|
147
147
|
default: false;
|
|
148
148
|
};
|
|
149
|
+
tooltip: {
|
|
150
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
151
|
+
required: false;
|
|
152
|
+
};
|
|
153
|
+
tooltipHtml: {
|
|
154
|
+
type: PropType<boolean>;
|
|
155
|
+
default: false;
|
|
156
|
+
};
|
|
149
157
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
150
158
|
formatComponent: {
|
|
151
159
|
type: PropType<Component>;
|
|
@@ -279,6 +287,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
279
287
|
type: PropType<boolean>;
|
|
280
288
|
default: false;
|
|
281
289
|
};
|
|
290
|
+
tooltip: {
|
|
291
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
292
|
+
required: false;
|
|
293
|
+
};
|
|
294
|
+
tooltipHtml: {
|
|
295
|
+
type: PropType<boolean>;
|
|
296
|
+
default: false;
|
|
297
|
+
};
|
|
282
298
|
}>>, {
|
|
283
299
|
name: string;
|
|
284
300
|
formatComponent: Component;
|
|
@@ -288,5 +304,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
288
304
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
289
305
|
wrapped: boolean;
|
|
290
306
|
disableSort: boolean;
|
|
307
|
+
tooltipHtml: boolean;
|
|
291
308
|
}, {}>;
|
|
292
309
|
export default _default;
|
|
@@ -184,6 +184,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
184
184
|
type: PropType<boolean>;
|
|
185
185
|
default: false;
|
|
186
186
|
};
|
|
187
|
+
tooltip: {
|
|
188
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
189
|
+
required: false;
|
|
190
|
+
};
|
|
191
|
+
tooltipHtml: {
|
|
192
|
+
type: PropType<boolean>;
|
|
193
|
+
default: false;
|
|
194
|
+
};
|
|
187
195
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
188
196
|
formatComponent: {
|
|
189
197
|
type: PropType<Component>;
|
|
@@ -354,6 +362,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
354
362
|
type: PropType<boolean>;
|
|
355
363
|
default: false;
|
|
356
364
|
};
|
|
365
|
+
tooltip: {
|
|
366
|
+
type: PropType<string | import("@Obsidian/Types/Controls/grid").TooltipFunction>;
|
|
367
|
+
required: false;
|
|
368
|
+
};
|
|
369
|
+
tooltipHtml: {
|
|
370
|
+
type: PropType<boolean>;
|
|
371
|
+
default: false;
|
|
372
|
+
};
|
|
357
373
|
}>>, {
|
|
358
374
|
name: string;
|
|
359
375
|
quickFilterValue: QuickFilterValueFunction;
|
|
@@ -365,6 +381,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
365
381
|
visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
|
|
366
382
|
wrapped: boolean;
|
|
367
383
|
disableSort: boolean;
|
|
384
|
+
tooltipHtml: boolean;
|
|
368
385
|
enableHoverInfo: boolean;
|
|
369
386
|
showAsLink: boolean;
|
|
370
387
|
hideAvatar: boolean;
|