@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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
3
|
+
import { BtnType } from "@Obsidian/Enums/Controls/btnType";
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
label: {
|
|
5
6
|
type: PropType<string>;
|
|
@@ -14,7 +15,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
15
|
default: "";
|
|
15
16
|
};
|
|
16
17
|
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
17
|
-
/** Used as a label on the button when using checkmark selection style */
|
|
18
18
|
formGroupClasses: {
|
|
19
19
|
type: PropType<string>;
|
|
20
20
|
default: "";
|
|
@@ -23,10 +23,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
type: PropType<string>;
|
|
24
24
|
default: "";
|
|
25
25
|
};
|
|
26
|
-
/**
|
|
27
|
-
* When set to 'title', when an item is selected, the selected item is displayed as the button text, or if set to 'checkmark'
|
|
28
|
-
* it will place a check next to the selected item and display a given `title` as the button text
|
|
29
|
-
*/
|
|
30
26
|
isRequiredIndicatorHidden: {
|
|
31
27
|
type: PropType<boolean>;
|
|
32
28
|
default: false;
|
|
@@ -54,6 +50,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
54
50
|
type: PropType<"title" | "checkmark">;
|
|
55
51
|
default: string;
|
|
56
52
|
};
|
|
53
|
+
btnType: {
|
|
54
|
+
type: PropType<BtnType>;
|
|
55
|
+
default: "default";
|
|
56
|
+
};
|
|
57
57
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
58
58
|
"update:modelValue": (v: string) => void;
|
|
59
59
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -70,7 +70,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
70
|
default: "";
|
|
71
71
|
};
|
|
72
72
|
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
73
|
-
/** Used as a label on the button when using checkmark selection style */
|
|
74
73
|
formGroupClasses: {
|
|
75
74
|
type: PropType<string>;
|
|
76
75
|
default: "";
|
|
@@ -79,10 +78,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
79
78
|
type: PropType<string>;
|
|
80
79
|
default: "";
|
|
81
80
|
};
|
|
82
|
-
/**
|
|
83
|
-
* When set to 'title', when an item is selected, the selected item is displayed as the button text, or if set to 'checkmark'
|
|
84
|
-
* it will place a check next to the selected item and display a given `title` as the button text
|
|
85
|
-
*/
|
|
86
81
|
isRequiredIndicatorHidden: {
|
|
87
82
|
type: PropType<boolean>;
|
|
88
83
|
default: false;
|
|
@@ -110,11 +105,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
110
105
|
type: PropType<"title" | "checkmark">;
|
|
111
106
|
default: string;
|
|
112
107
|
};
|
|
108
|
+
btnType: {
|
|
109
|
+
type: PropType<BtnType>;
|
|
110
|
+
default: "default";
|
|
111
|
+
};
|
|
113
112
|
}>> & {
|
|
114
113
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
115
114
|
}, {
|
|
116
115
|
label: string;
|
|
117
116
|
title: string;
|
|
117
|
+
btnType: BtnType;
|
|
118
118
|
help: string;
|
|
119
119
|
modelValue: string;
|
|
120
120
|
disableLabel: boolean;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
/**
|
|
4
|
+
* Forces the picker to be displayed even if only one campus can be
|
|
5
|
+
* selected.
|
|
6
|
+
*/
|
|
7
|
+
forceVisible: {
|
|
8
|
+
type: PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* If true then inactive campuses will be included in the list of
|
|
13
|
+
* options.
|
|
14
|
+
*/
|
|
15
|
+
includeInactive: {
|
|
16
|
+
type: PropType<boolean>;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Campus type defined value guids that limit which campuses are
|
|
21
|
+
* included in the list of campus options.
|
|
22
|
+
*/
|
|
23
|
+
campusTypeFilter: {
|
|
24
|
+
type: PropType<string | string[] | undefined>;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Campus status defined value guids that limit which campuses are
|
|
29
|
+
* included in the list of campus options.
|
|
30
|
+
*/
|
|
31
|
+
campusStatusFilter: {
|
|
32
|
+
type: PropType<string | string[] | undefined>;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
|
+
isVisible: (value: boolean) => void;
|
|
37
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
/**
|
|
39
|
+
* Forces the picker to be displayed even if only one campus can be
|
|
40
|
+
* selected.
|
|
41
|
+
*/
|
|
42
|
+
forceVisible: {
|
|
43
|
+
type: PropType<boolean>;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* If true then inactive campuses will be included in the list of
|
|
48
|
+
* options.
|
|
49
|
+
*/
|
|
50
|
+
includeInactive: {
|
|
51
|
+
type: PropType<boolean>;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Campus type defined value guids that limit which campuses are
|
|
56
|
+
* included in the list of campus options.
|
|
57
|
+
*/
|
|
58
|
+
campusTypeFilter: {
|
|
59
|
+
type: PropType<string | string[] | undefined>;
|
|
60
|
+
required: false;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Campus status defined value guids that limit which campuses are
|
|
64
|
+
* included in the list of campus options.
|
|
65
|
+
*/
|
|
66
|
+
campusStatusFilter: {
|
|
67
|
+
type: PropType<string | string[] | undefined>;
|
|
68
|
+
required: false;
|
|
69
|
+
};
|
|
70
|
+
}>> & {
|
|
71
|
+
onIsVisible?: ((value: boolean) => any) | undefined;
|
|
72
|
+
}, {
|
|
73
|
+
includeInactive: boolean;
|
|
74
|
+
forceVisible: boolean;
|
|
75
|
+
}, {}>;
|
|
76
|
+
export default _default;
|
|
@@ -24,7 +24,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
default: "";
|
|
25
25
|
};
|
|
26
26
|
isRequiredIndicatorHidden: {
|
|
27
|
-
type: PropType<boolean>;
|
|
27
|
+
type: PropType<boolean>;
|
|
28
28
|
default: false;
|
|
29
29
|
};
|
|
30
30
|
enhanceForLongLists: {
|
|
@@ -44,6 +44,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
44
|
default: false;
|
|
45
45
|
};
|
|
46
46
|
blankValue: {
|
|
47
|
+
/**
|
|
48
|
+
* The actual items to make available to the picker. This allows us to do any
|
|
49
|
+
* post-processing, such as adding additional items, and still be lazy loaded as well.
|
|
50
|
+
*/
|
|
47
51
|
type: PropType<string>;
|
|
48
52
|
default: "";
|
|
49
53
|
};
|
|
@@ -106,7 +110,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
106
110
|
default: "";
|
|
107
111
|
};
|
|
108
112
|
isRequiredIndicatorHidden: {
|
|
109
|
-
type: PropType<boolean>;
|
|
113
|
+
type: PropType<boolean>;
|
|
110
114
|
default: false;
|
|
111
115
|
};
|
|
112
116
|
enhanceForLongLists: {
|
|
@@ -126,6 +130,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
126
130
|
default: false;
|
|
127
131
|
};
|
|
128
132
|
blankValue: {
|
|
133
|
+
/**
|
|
134
|
+
* The actual items to make available to the picker. This allows us to do any
|
|
135
|
+
* post-processing, such as adding additional items, and still be lazy loaded as well.
|
|
136
|
+
*/
|
|
129
137
|
type: PropType<string>;
|
|
130
138
|
default: "";
|
|
131
139
|
};
|
|
@@ -2,6 +2,7 @@ import { PropType } from "vue";
|
|
|
2
2
|
import { ChartData, ChartOptions, Plugin } from "@Obsidian/Libs/chart";
|
|
3
3
|
declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTypeRegistry>(__VLS_props: Partial<{
|
|
4
4
|
plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
5
|
+
disableAnimations: boolean;
|
|
5
6
|
}> & Omit<{
|
|
6
7
|
readonly type: [{
|
|
7
8
|
type: PropType<T>;
|
|
@@ -19,6 +20,8 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
19
20
|
required: true;
|
|
20
21
|
};
|
|
21
22
|
readonly plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
23
|
+
readonly disableAnimations: boolean;
|
|
24
|
+
onUpdated?: (() => any) | undefined;
|
|
22
25
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
23
26
|
type: {
|
|
24
27
|
type: PropType<T>;
|
|
@@ -36,9 +39,16 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
36
39
|
type: PropType<Plugin<T, import("chart.js/dist/types/basic").AnyObject>[]>;
|
|
37
40
|
default: null;
|
|
38
41
|
};
|
|
39
|
-
|
|
42
|
+
disableAnimations: {
|
|
43
|
+
type: PropType<boolean>;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
}>> & {
|
|
47
|
+
onUpdated?: (() => any) | undefined;
|
|
48
|
+
}, "plugins" | "disableAnimations"> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
|
|
40
49
|
props: Partial<{
|
|
41
50
|
plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
51
|
+
disableAnimations: boolean;
|
|
42
52
|
}> & Omit<{
|
|
43
53
|
readonly type: [{
|
|
44
54
|
type: PropType<T>;
|
|
@@ -56,6 +66,8 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
56
66
|
required: true;
|
|
57
67
|
};
|
|
58
68
|
readonly plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
69
|
+
readonly disableAnimations: boolean;
|
|
70
|
+
onUpdated?: (() => any) | undefined;
|
|
59
71
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
60
72
|
type: {
|
|
61
73
|
type: PropType<T>;
|
|
@@ -73,14 +85,21 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
73
85
|
type: PropType<Plugin<T, import("chart.js/dist/types/basic").AnyObject>[]>;
|
|
74
86
|
default: null;
|
|
75
87
|
};
|
|
76
|
-
|
|
88
|
+
disableAnimations: {
|
|
89
|
+
type: PropType<boolean>;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
}>> & {
|
|
93
|
+
onUpdated?: (() => any) | undefined;
|
|
94
|
+
}, "plugins" | "disableAnimations">;
|
|
77
95
|
expose(exposed: {}): void;
|
|
78
96
|
attrs: any;
|
|
79
97
|
slots: {};
|
|
80
|
-
emit:
|
|
98
|
+
emit: (e: "updated") => void;
|
|
81
99
|
}, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: Promise<{
|
|
82
100
|
props: Partial<{
|
|
83
101
|
plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
102
|
+
disableAnimations: boolean;
|
|
84
103
|
}> & Omit<{
|
|
85
104
|
readonly type: [{
|
|
86
105
|
type: PropType<T>;
|
|
@@ -98,6 +117,8 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
98
117
|
required: true;
|
|
99
118
|
};
|
|
100
119
|
readonly plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
120
|
+
readonly disableAnimations: boolean;
|
|
121
|
+
onUpdated?: (() => any) | undefined;
|
|
101
122
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
102
123
|
type: {
|
|
103
124
|
type: PropType<T>;
|
|
@@ -115,17 +136,24 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
115
136
|
type: PropType<Plugin<T, import("chart.js/dist/types/basic").AnyObject>[]>;
|
|
116
137
|
default: null;
|
|
117
138
|
};
|
|
118
|
-
|
|
139
|
+
disableAnimations: {
|
|
140
|
+
type: PropType<boolean>;
|
|
141
|
+
default: boolean;
|
|
142
|
+
};
|
|
143
|
+
}>> & {
|
|
144
|
+
onUpdated?: (() => any) | undefined;
|
|
145
|
+
}, "plugins" | "disableAnimations">;
|
|
119
146
|
expose(exposed: {}): void;
|
|
120
147
|
attrs: any;
|
|
121
148
|
slots: {};
|
|
122
|
-
emit:
|
|
149
|
+
emit: (e: "updated") => void;
|
|
123
150
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
124
151
|
[key: string]: any;
|
|
125
152
|
}> & {
|
|
126
153
|
__ctx?: {
|
|
127
154
|
props: Partial<{
|
|
128
155
|
plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
156
|
+
disableAnimations: boolean;
|
|
129
157
|
}> & Omit<{
|
|
130
158
|
readonly type: [{
|
|
131
159
|
type: PropType<T>;
|
|
@@ -143,6 +171,8 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
143
171
|
required: true;
|
|
144
172
|
};
|
|
145
173
|
readonly plugins: Plugin<T, import("chart.js/dist/types/basic").AnyObject>[];
|
|
174
|
+
readonly disableAnimations: boolean;
|
|
175
|
+
onUpdated?: (() => any) | undefined;
|
|
146
176
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
147
177
|
type: {
|
|
148
178
|
type: PropType<T>;
|
|
@@ -160,11 +190,17 @@ declare const _default: <T extends keyof import("@Obsidian/Libs/chart").ChartTyp
|
|
|
160
190
|
type: PropType<Plugin<T, import("chart.js/dist/types/basic").AnyObject>[]>;
|
|
161
191
|
default: null;
|
|
162
192
|
};
|
|
163
|
-
|
|
193
|
+
disableAnimations: {
|
|
194
|
+
type: PropType<boolean>;
|
|
195
|
+
default: boolean;
|
|
196
|
+
};
|
|
197
|
+
}>> & {
|
|
198
|
+
onUpdated?: (() => any) | undefined;
|
|
199
|
+
}, "plugins" | "disableAnimations">;
|
|
164
200
|
expose(exposed: {}): void;
|
|
165
201
|
attrs: any;
|
|
166
202
|
slots: {};
|
|
167
|
-
emit:
|
|
203
|
+
emit: (e: "updated") => void;
|
|
168
204
|
} | undefined;
|
|
169
205
|
};
|
|
170
206
|
export default _default;
|
|
@@ -8,10 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
8
8
|
type: PropType<string>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
rules:
|
|
12
|
-
type: PropType<string>;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
11
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
15
12
|
text: {
|
|
16
13
|
type: PropType<string>;
|
|
17
14
|
default: string;
|
|
@@ -27,10 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
27
24
|
type: PropType<string>;
|
|
28
25
|
required: true;
|
|
29
26
|
};
|
|
30
|
-
rules:
|
|
31
|
-
type: PropType<string>;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
27
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
34
28
|
text: {
|
|
35
29
|
type: PropType<string>;
|
|
36
30
|
default: string;
|
|
@@ -39,7 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
39
33
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40
34
|
}, {
|
|
41
35
|
text: string;
|
|
42
|
-
rules:
|
|
36
|
+
rules: import("@Obsidian/ValidationRules").ValidationRule | import("@Obsidian/ValidationRules").ValidationRule[];
|
|
43
37
|
}, {}>, {
|
|
44
38
|
textAppend?(_: {}): any;
|
|
45
39
|
inputGroupAppend?(_: {}): any;
|
|
@@ -21,7 +21,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
};
|
|
22
22
|
/** The name of the syntax mode that represents the expected language. */
|
|
23
23
|
mode: {
|
|
24
|
-
type: PropType<0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml">;
|
|
24
|
+
type: PropType<0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml" | "json">;
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
27
|
/** If set then line wrapping will be disabled. */
|
|
@@ -34,6 +34,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
type: PropType<number>;
|
|
35
35
|
required: false;
|
|
36
36
|
};
|
|
37
|
+
maxEditorHeight: {
|
|
38
|
+
type: PropType<number | undefined>;
|
|
39
|
+
default: undefined;
|
|
40
|
+
};
|
|
37
41
|
/** A list of merge fields to make available. Not currently used! */
|
|
38
42
|
mergeFields: {
|
|
39
43
|
type: PropType<string[]>;
|
|
@@ -64,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
68
|
};
|
|
65
69
|
/** The name of the syntax mode that represents the expected language. */
|
|
66
70
|
mode: {
|
|
67
|
-
type: PropType<0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml">;
|
|
71
|
+
type: PropType<0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml" | "json">;
|
|
68
72
|
default: string;
|
|
69
73
|
};
|
|
70
74
|
/** If set then line wrapping will be disabled. */
|
|
@@ -77,6 +81,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
81
|
type: PropType<number>;
|
|
78
82
|
required: false;
|
|
79
83
|
};
|
|
84
|
+
maxEditorHeight: {
|
|
85
|
+
type: PropType<number | undefined>;
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
80
88
|
/** A list of merge fields to make available. Not currently used! */
|
|
81
89
|
mergeFields: {
|
|
82
90
|
type: PropType<string[]>;
|
|
@@ -92,9 +100,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
100
|
}, {
|
|
93
101
|
disabled: boolean;
|
|
94
102
|
modelValue: string;
|
|
95
|
-
mode: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml";
|
|
103
|
+
mode: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | "html" | "text" | "css" | "lava" | "javascript" | "less" | "powershell" | "sql" | "typescript" | "csharp" | "markdown" | "xml" | "json";
|
|
96
104
|
editor: "ace" | "monaco";
|
|
97
105
|
theme: 0 | 1 | 2 | 22 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 27 | 21 | 24 | 23 | 29 | "rock" | "chrome" | "crimson_editor" | "dawn" | "dreamweaver" | "eclipse" | "solarized_light" | "textmate" | "tomorrow" | "xcode" | "github" | "ambiance" | "chaos" | "clouds_midnight" | "cobalt" | "idle_fingers" | "kr_theme" | "merbivore" | "merbivore_soft" | "mono_industrial" | "monokai" | "pastel_on_dark" | "solarized_dark" | "terminal" | "tomorrow_night" | "tomorrow_night_blue" | "tomorrow_night_bright" | "tomorrow_night_eighties" | "twilight" | "vibrant_ink" | 26 | 28 | "vs" | "vs-dark" | "hc-light" | "hc-black";
|
|
98
106
|
noLineWrap: boolean;
|
|
107
|
+
maxEditorHeight: number | undefined;
|
|
99
108
|
}, {}>;
|
|
100
109
|
export default _default;
|
|
@@ -62,6 +62,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
62
62
|
type: PropType<string | null>;
|
|
63
63
|
default: null;
|
|
64
64
|
};
|
|
65
|
+
includeInactive: {
|
|
66
|
+
type: PropType<boolean | null>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
65
69
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
66
70
|
"update:modelValue": (value: ListItemBag | ListItemBag[] | null) => void;
|
|
67
71
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -126,6 +130,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
126
130
|
type: PropType<string | null>;
|
|
127
131
|
default: null;
|
|
128
132
|
};
|
|
133
|
+
includeInactive: {
|
|
134
|
+
type: PropType<boolean | null>;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
129
137
|
}>> & {
|
|
130
138
|
"onUpdate:modelValue"?: ((value: ListItemBag | ListItemBag[] | null) => any) | undefined;
|
|
131
139
|
}, {
|
|
@@ -138,6 +146,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
146
|
isRequiredIndicatorHidden: boolean;
|
|
139
147
|
multiple: boolean;
|
|
140
148
|
enhanceForLongLists: boolean;
|
|
149
|
+
includeInactive: boolean | null;
|
|
141
150
|
showBlankItem: boolean;
|
|
142
151
|
blankValue: string;
|
|
143
152
|
lazyMode: import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode;
|
|
@@ -49,10 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
displayStyle: {
|
|
50
50
|
type: PropType<import("@Obsidian/Enums/Controls/pickerDisplayStyle").PickerDisplayStyle>;
|
|
51
51
|
default: "auto";
|
|
52
|
-
};
|
|
53
|
-
* The actual items to make available to the picker. This allows us to do any
|
|
54
|
-
* post-processing, such as adding additional items, and still be lazy loaded as well.
|
|
55
|
-
*/
|
|
52
|
+
};
|
|
56
53
|
columnCount: {
|
|
57
54
|
type: PropType<number>;
|
|
58
55
|
default: 0;
|
|
@@ -120,10 +117,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
117
|
displayStyle: {
|
|
121
118
|
type: PropType<import("@Obsidian/Enums/Controls/pickerDisplayStyle").PickerDisplayStyle>;
|
|
122
119
|
default: "auto";
|
|
123
|
-
};
|
|
124
|
-
* The actual items to make available to the picker. This allows us to do any
|
|
125
|
-
* post-processing, such as adding additional items, and still be lazy loaded as well.
|
|
126
|
-
*/
|
|
120
|
+
};
|
|
127
121
|
columnCount: {
|
|
128
122
|
type: PropType<number>;
|
|
129
123
|
default: 0;
|
|
@@ -140,6 +140,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
140
140
|
type: BooleanConstructor;
|
|
141
141
|
default: boolean;
|
|
142
142
|
};
|
|
143
|
+
/**
|
|
144
|
+
* Element for the scroll container. This is a v-model, so that parents can do scroll
|
|
145
|
+
* manipulation, such as virtiual scrolling.
|
|
146
|
+
*/
|
|
147
|
+
scrollContainer: {
|
|
148
|
+
type: PropType<HTMLElement | undefined>;
|
|
149
|
+
default: undefined;
|
|
150
|
+
};
|
|
143
151
|
label: {
|
|
144
152
|
type: PropType<string>;
|
|
145
153
|
default: "";
|
|
@@ -157,9 +165,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
157
165
|
type: PropType<string>;
|
|
158
166
|
default: "";
|
|
159
167
|
};
|
|
160
|
-
/**
|
|
161
|
-
* Text or HTML to show inside the closed picker's box, usually listing selected values.
|
|
162
|
-
*/
|
|
163
168
|
validationTitle: {
|
|
164
169
|
type: PropType<string>;
|
|
165
170
|
default: "";
|
|
@@ -178,6 +183,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
178
183
|
primaryButtonClicked: () => void;
|
|
179
184
|
"update:showPopup": (v: boolean) => void;
|
|
180
185
|
"update:isFullscreen": (v: boolean) => void;
|
|
186
|
+
"update:scrollContainer": (v: HTMLElement | undefined) => void;
|
|
181
187
|
secondaryButtonClicked: () => void;
|
|
182
188
|
clearButtonClicked: () => void;
|
|
183
189
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -321,6 +327,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
321
327
|
type: BooleanConstructor;
|
|
322
328
|
default: boolean;
|
|
323
329
|
};
|
|
330
|
+
/**
|
|
331
|
+
* Element for the scroll container. This is a v-model, so that parents can do scroll
|
|
332
|
+
* manipulation, such as virtiual scrolling.
|
|
333
|
+
*/
|
|
334
|
+
scrollContainer: {
|
|
335
|
+
type: PropType<HTMLElement | undefined>;
|
|
336
|
+
default: undefined;
|
|
337
|
+
};
|
|
324
338
|
label: {
|
|
325
339
|
type: PropType<string>;
|
|
326
340
|
default: "";
|
|
@@ -338,9 +352,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
338
352
|
type: PropType<string>;
|
|
339
353
|
default: "";
|
|
340
354
|
};
|
|
341
|
-
/**
|
|
342
|
-
* Text or HTML to show inside the closed picker's box, usually listing selected values.
|
|
343
|
-
*/
|
|
344
355
|
validationTitle: {
|
|
345
356
|
type: PropType<string>;
|
|
346
357
|
default: "";
|
|
@@ -361,6 +372,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
361
372
|
onClearButtonClicked?: (() => any) | undefined;
|
|
362
373
|
"onUpdate:showPopup"?: ((v: boolean) => any) | undefined;
|
|
363
374
|
"onUpdate:isFullscreen"?: ((v: boolean) => any) | undefined;
|
|
375
|
+
"onUpdate:scrollContainer"?: ((v: HTMLElement | undefined) => any) | undefined;
|
|
364
376
|
}, {
|
|
365
377
|
label: string;
|
|
366
378
|
disabled: boolean;
|
|
@@ -387,6 +399,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
387
399
|
showFullscreenButton: boolean;
|
|
388
400
|
forceContentReloadOnOpen: boolean;
|
|
389
401
|
fullWidth: boolean;
|
|
402
|
+
scrollContainer: HTMLElement | undefined;
|
|
390
403
|
}, {}>, {
|
|
391
404
|
prepend?(_: {
|
|
392
405
|
isInputGroupSupported: boolean;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
/**
|
|
4
|
+
* The title of the section. This should be a brief, descriptive label
|
|
5
|
+
* about the contents of the section.
|
|
6
|
+
*/
|
|
7
|
+
title: {
|
|
8
|
+
type: PropType<string>;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* The icon to display next to the title. This is optional and can be
|
|
13
|
+
* left out if no icon is desired.
|
|
14
|
+
*/
|
|
15
|
+
icon: {
|
|
16
|
+
type: PropType<string>;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Whether the section should be displayed with a light background.
|
|
21
|
+
*/
|
|
22
|
+
light: {
|
|
23
|
+
type: PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* A section has the ability to be collapsed and re-opened.
|
|
28
|
+
* This will disable that so the section is always expanded.
|
|
29
|
+
*/
|
|
30
|
+
disableCollapse: {
|
|
31
|
+
type: PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Whether the section should be collapsed by default. This only applies
|
|
36
|
+
* if `disableCollapse` is false.
|
|
37
|
+
*/
|
|
38
|
+
isCollapsed: {
|
|
39
|
+
type: PropType<boolean>;
|
|
40
|
+
required: false;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* The text to display for the button to show the overflow content.
|
|
45
|
+
*/
|
|
46
|
+
overflowText: {
|
|
47
|
+
type: PropType<string>;
|
|
48
|
+
required: false;
|
|
49
|
+
};
|
|
50
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
|
+
/**
|
|
52
|
+
* The title of the section. This should be a brief, descriptive label
|
|
53
|
+
* about the contents of the section.
|
|
54
|
+
*/
|
|
55
|
+
title: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
required: false;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* The icon to display next to the title. This is optional and can be
|
|
61
|
+
* left out if no icon is desired.
|
|
62
|
+
*/
|
|
63
|
+
icon: {
|
|
64
|
+
type: PropType<string>;
|
|
65
|
+
required: false;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Whether the section should be displayed with a light background.
|
|
69
|
+
*/
|
|
70
|
+
light: {
|
|
71
|
+
type: PropType<boolean>;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* A section has the ability to be collapsed and re-opened.
|
|
76
|
+
* This will disable that so the section is always expanded.
|
|
77
|
+
*/
|
|
78
|
+
disableCollapse: {
|
|
79
|
+
type: PropType<boolean>;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Whether the section should be collapsed by default. This only applies
|
|
84
|
+
* if `disableCollapse` is false.
|
|
85
|
+
*/
|
|
86
|
+
isCollapsed: {
|
|
87
|
+
type: PropType<boolean>;
|
|
88
|
+
required: false;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* The text to display for the button to show the overflow content.
|
|
93
|
+
*/
|
|
94
|
+
overflowText: {
|
|
95
|
+
type: PropType<string>;
|
|
96
|
+
required: false;
|
|
97
|
+
};
|
|
98
|
+
}>>, {
|
|
99
|
+
light: boolean;
|
|
100
|
+
disableCollapse: boolean;
|
|
101
|
+
isCollapsed: boolean;
|
|
102
|
+
}, {}>, {
|
|
103
|
+
headerSecondaryActions?(_: {}): any;
|
|
104
|
+
headerActions?(_: {}): any;
|
|
105
|
+
default?(_: {}): any;
|
|
106
|
+
overflow?(_: {}): any;
|
|
107
|
+
footerActions?(_: {}): any;
|
|
108
|
+
footerSecondaryActions?(_: {}): any;
|
|
109
|
+
}>;
|
|
110
|
+
export default _default;
|
|
111
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
112
|
+
new (): {
|
|
113
|
+
$slots: S;
|
|
114
|
+
};
|
|
115
|
+
};
|