@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
|
@@ -5,10 +5,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
type: PropType<DebugTiming>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
-
startTimeMs: {
|
|
9
|
-
type: PropType<number>;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
8
|
totalMs: {
|
|
13
9
|
type: PropType<number>;
|
|
14
10
|
required: true;
|
|
@@ -18,10 +14,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
14
|
type: PropType<DebugTiming>;
|
|
19
15
|
required: true;
|
|
20
16
|
};
|
|
21
|
-
startTimeMs: {
|
|
22
|
-
type: PropType<number>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
17
|
totalMs: {
|
|
26
18
|
type: PropType<number>;
|
|
27
19
|
required: true;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
isLoading: {
|
|
4
|
+
type: PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
pushTitle: {
|
|
8
|
+
type: PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
pushMessage: {
|
|
12
|
+
type: PropType<string>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
isLoading: {
|
|
17
|
+
type: PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
pushTitle: {
|
|
21
|
+
type: PropType<string>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
pushMessage: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
isLoading: boolean;
|
|
30
|
+
}, {}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { BinaryFileAttachment } from "./MobilePreview/types.partial";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
isLoading: {
|
|
5
|
+
type: PropType<boolean>;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
smsMessage: {
|
|
9
|
+
type: PropType<string>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
smsFromNumberName: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
smsAttachmentLinks: {
|
|
17
|
+
type: PropType<BinaryFileAttachment[]>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
isLoading: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
smsMessage: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
smsFromNumberName: {
|
|
30
|
+
type: PropType<string>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
smsAttachmentLinks: {
|
|
34
|
+
type: PropType<BinaryFileAttachment[]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
}>>, {
|
|
38
|
+
isLoading: boolean;
|
|
39
|
+
}, {}>;
|
|
40
|
+
export default _default;
|
|
@@ -21,6 +21,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
type: PropType<string>;
|
|
22
22
|
required: false;
|
|
23
23
|
};
|
|
24
|
+
context: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
required: false;
|
|
27
|
+
};
|
|
24
28
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
29
|
"update:modelValue": (value: ListItemBag | null) => void;
|
|
26
30
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -44,6 +48,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
48
|
type: PropType<string>;
|
|
45
49
|
required: false;
|
|
46
50
|
};
|
|
51
|
+
context: {
|
|
52
|
+
type: PropType<string>;
|
|
53
|
+
required: false;
|
|
54
|
+
};
|
|
47
55
|
}>> & {
|
|
48
56
|
"onUpdate:modelValue"?: ((value: ListItemBag | null) => any) | undefined;
|
|
49
57
|
}, {
|
|
@@ -30,7 +30,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
|
-
/** If false,
|
|
33
|
+
/** If false, automatically fill state and country fields with default values if not provided in model value */
|
|
34
34
|
omitDefaultValues: {
|
|
35
35
|
type: BooleanConstructor;
|
|
36
36
|
default: boolean;
|
|
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
type: BooleanConstructor;
|
|
78
78
|
default: boolean;
|
|
79
79
|
};
|
|
80
|
-
/** If false,
|
|
80
|
+
/** If false, automatically fill state and country fields with default values if not provided in model value */
|
|
81
81
|
omitDefaultValues: {
|
|
82
82
|
type: BooleanConstructor;
|
|
83
83
|
default: boolean;
|
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { BarChartClickEvent, BarLabelPosition, BarLabelSpec, BarSeries, LabelDateFormat, LegendAlign, LegendPosition, TooltipCallback } from "@Obsidian/Core/Controls/chart";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
/** The configuration for the bar labels for all series. */
|
|
5
|
+
barLabels: {
|
|
6
|
+
type: PropType<Partial<Record<BarLabelPosition, BarLabelSpec>> | undefined>;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* The category axis label.
|
|
10
|
+
*/
|
|
11
|
+
categoryLabel: {
|
|
12
|
+
type: PropType<string | undefined>;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The maximum number of ticks to show on the category axis.
|
|
16
|
+
*/
|
|
17
|
+
categoryMaxTickCount: {
|
|
18
|
+
type: PropType<number | undefined>;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Whether to show the category axis grid lines. Hidden by default.
|
|
22
|
+
*/
|
|
23
|
+
categoryShowGridLines: {
|
|
24
|
+
type: PropType<boolean | undefined>;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Whether to show all ticks on the category axis.
|
|
28
|
+
*/
|
|
29
|
+
categoryShowAllTicks: {
|
|
30
|
+
type: PropType<boolean | undefined>;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* The CSS style string to set the height of the bar chart component.
|
|
34
|
+
* - Accepts any valid CSS height value (e.g., "400px", "50vh") or undefined.
|
|
35
|
+
* - Value defaults to "100%" if undefined.
|
|
36
|
+
*/
|
|
37
|
+
height: {
|
|
38
|
+
type: PropType<string | undefined>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Whether the legend is hidden.
|
|
43
|
+
*/
|
|
44
|
+
hideLegend: {
|
|
45
|
+
type: PropType<boolean | undefined>;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Whether to display horizontal bars instead of vertical bars.
|
|
49
|
+
*/
|
|
50
|
+
horizontal: {
|
|
51
|
+
type: PropType<boolean | undefined>;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* The format to use for the date labels.
|
|
55
|
+
*
|
|
56
|
+
* When set, `labels` is treated as an array of ISO date strings.
|
|
57
|
+
*/
|
|
58
|
+
labelDateFormat: {
|
|
59
|
+
type: PropType<LabelDateFormat | undefined>;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* When supplying date strings, they MUST be in ISO format and you MUST set `labelDateFormat`.
|
|
63
|
+
*/
|
|
64
|
+
labels: {
|
|
65
|
+
type: PropType<string[]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* The alignment of the legend in the chart.
|
|
70
|
+
*/
|
|
71
|
+
legendAlign: {
|
|
72
|
+
type: PropType<LegendAlign | null | undefined>;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* The position of the legend in the chart.
|
|
76
|
+
*/
|
|
77
|
+
legendPosition: {
|
|
78
|
+
type: PropType<LegendPosition | undefined>;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* When `true`, bars from multiple datasets are drawn in the same position
|
|
82
|
+
* and overlap each other rather than being shown side-by-side (grouped)
|
|
83
|
+
* or stacked.
|
|
84
|
+
*
|
|
85
|
+
* Note: If the dataset values should accumulate into a single bar,
|
|
86
|
+
* use the `stack` prop instead.
|
|
87
|
+
*
|
|
88
|
+
* For example:
|
|
89
|
+
* - Default (grouped): each dataset has its own bar next to the others
|
|
90
|
+
* for the same category.
|
|
91
|
+
* - stack: dataset values accumulate vertically (or horizontally) into
|
|
92
|
+
* a single bar for each category.
|
|
93
|
+
* - overlap: all datasets share the same bar slot and are drawn on top of
|
|
94
|
+
* each other. This is often combined with transparency to allow visual
|
|
95
|
+
* comparison without stacking values.
|
|
96
|
+
*
|
|
97
|
+
* Charting pros: Equivalent to Chart.js’s `grouped: false` setting for
|
|
98
|
+
* bar charts. Unlike stacking, values do not accumulate — bars simply
|
|
99
|
+
* share the same baseline and x-position.
|
|
100
|
+
*/
|
|
101
|
+
overlap: {
|
|
102
|
+
type: PropType<boolean | undefined>;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* The series data to display in the chart.
|
|
106
|
+
*/
|
|
107
|
+
series: {
|
|
108
|
+
type: PropType<BarSeries[]>;
|
|
109
|
+
required: true;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* When `true`, bars from multiple data series are stacked on top of each other
|
|
113
|
+
* instead of being drawn side-by-side.
|
|
114
|
+
*
|
|
115
|
+
* Note: If the bars should share the same position without accumulating
|
|
116
|
+
* their values, use the `overlap` prop instead.
|
|
117
|
+
*
|
|
118
|
+
* For example:
|
|
119
|
+
* - Without stacking (default), each series is shown with its own separate bar
|
|
120
|
+
* for the same category (grouped layout).
|
|
121
|
+
* - With stacking enabled, series values for the same category accumulate
|
|
122
|
+
* vertically (or horizontally, if using horizontal bars) into a single bar.
|
|
123
|
+
*
|
|
124
|
+
* This makes it easy to compare both the total value across series and the
|
|
125
|
+
* contribution of each series to that total.
|
|
126
|
+
*
|
|
127
|
+
* Charting pros: This prop switches the bar layout mode from "grouped" to
|
|
128
|
+
* "stack" (cumulative). Stacking preserves relative series proportions
|
|
129
|
+
* within a category but alters absolute comparisons across categories.
|
|
130
|
+
*/
|
|
131
|
+
stack: {
|
|
132
|
+
type: PropType<boolean | undefined>;
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* The title of the chart.
|
|
136
|
+
*/
|
|
137
|
+
title: {
|
|
138
|
+
type: PropType<string | undefined>;
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* The tooltip formatter function.
|
|
142
|
+
*/
|
|
143
|
+
tooltip: {
|
|
144
|
+
type: PropType<TooltipCallback | undefined>;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* The tooltip title formatter function.
|
|
148
|
+
*/
|
|
149
|
+
tooltipTitle: {
|
|
150
|
+
type: PropType<TooltipCallback | undefined>;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* The type of data represented in the chart.
|
|
154
|
+
*
|
|
155
|
+
* For "percent", the data MUST be in decimal form (e.g., 0.1 for 10%).
|
|
156
|
+
*/
|
|
157
|
+
type: {
|
|
158
|
+
type: PropType<"number" | "percent">;
|
|
159
|
+
default: string;
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* Whether the chart has unfilled areas.
|
|
163
|
+
*
|
|
164
|
+
* The per series property, `props.data[n].isUnfilled`, overrides this setting.
|
|
165
|
+
*/
|
|
166
|
+
unfilled: {
|
|
167
|
+
type: PropType<boolean | undefined>;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Whether to hide the value axis grid lines. Shown by default.
|
|
171
|
+
*/
|
|
172
|
+
valueHideGridLines: {
|
|
173
|
+
type: PropType<boolean | undefined>;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* The value axis label.
|
|
177
|
+
*/
|
|
178
|
+
valueLabel: {
|
|
179
|
+
type: PropType<string | undefined>;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* The maximum number of ticks to show on the value axis.
|
|
183
|
+
*/
|
|
184
|
+
valueMaxTickCount: {
|
|
185
|
+
type: PropType<number | undefined>;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* The number of decimal places to display for values.
|
|
189
|
+
* Applies to both axis tick labels and tooltips.
|
|
190
|
+
*/
|
|
191
|
+
valuePrecision: {
|
|
192
|
+
type: PropType<number | undefined>;
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* The minimum value to display in the value axis if there is nothing lower.
|
|
196
|
+
*
|
|
197
|
+
* This is useful for controlling the starting point of the value axis.
|
|
198
|
+
* The actual minimum value will be used if there is a lower value present.
|
|
199
|
+
*/
|
|
200
|
+
valueSuggestedMin: {
|
|
201
|
+
type: PropType<number | undefined>;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* The maximum value to display in the value axis if there is nothing higher.
|
|
205
|
+
*
|
|
206
|
+
* This is useful for controlling the ending point of the value axis.
|
|
207
|
+
* The actual maximum value will be used if there is a higher value present.
|
|
208
|
+
*/
|
|
209
|
+
valueSuggestedMax: {
|
|
210
|
+
type: PropType<number | undefined>;
|
|
211
|
+
};
|
|
212
|
+
/**
|
|
213
|
+
* The number of ticks to show on the value axis.
|
|
214
|
+
*
|
|
215
|
+
* This overrides `valueMaxTickCount`.
|
|
216
|
+
*/
|
|
217
|
+
valueTickCount: {
|
|
218
|
+
type: PropType<number | undefined>;
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* The CSS style string to set the width of the bar chart component.
|
|
222
|
+
* - Accepts any valid CSS width value (e.g., "600px", "100%") or undefined.
|
|
223
|
+
* - Value defaults to "100%" if undefined.
|
|
224
|
+
*/
|
|
225
|
+
width: {
|
|
226
|
+
type: PropType<string | undefined>;
|
|
227
|
+
default: string;
|
|
228
|
+
};
|
|
229
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
230
|
+
click: (value: BarChartClickEvent) => void;
|
|
231
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
232
|
+
/** The configuration for the bar labels for all series. */
|
|
233
|
+
barLabels: {
|
|
234
|
+
type: PropType<Partial<Record<BarLabelPosition, BarLabelSpec>> | undefined>;
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* The category axis label.
|
|
238
|
+
*/
|
|
239
|
+
categoryLabel: {
|
|
240
|
+
type: PropType<string | undefined>;
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* The maximum number of ticks to show on the category axis.
|
|
244
|
+
*/
|
|
245
|
+
categoryMaxTickCount: {
|
|
246
|
+
type: PropType<number | undefined>;
|
|
247
|
+
};
|
|
248
|
+
/**
|
|
249
|
+
* Whether to show the category axis grid lines. Hidden by default.
|
|
250
|
+
*/
|
|
251
|
+
categoryShowGridLines: {
|
|
252
|
+
type: PropType<boolean | undefined>;
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* Whether to show all ticks on the category axis.
|
|
256
|
+
*/
|
|
257
|
+
categoryShowAllTicks: {
|
|
258
|
+
type: PropType<boolean | undefined>;
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* The CSS style string to set the height of the bar chart component.
|
|
262
|
+
* - Accepts any valid CSS height value (e.g., "400px", "50vh") or undefined.
|
|
263
|
+
* - Value defaults to "100%" if undefined.
|
|
264
|
+
*/
|
|
265
|
+
height: {
|
|
266
|
+
type: PropType<string | undefined>;
|
|
267
|
+
default: string;
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* Whether the legend is hidden.
|
|
271
|
+
*/
|
|
272
|
+
hideLegend: {
|
|
273
|
+
type: PropType<boolean | undefined>;
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* Whether to display horizontal bars instead of vertical bars.
|
|
277
|
+
*/
|
|
278
|
+
horizontal: {
|
|
279
|
+
type: PropType<boolean | undefined>;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* The format to use for the date labels.
|
|
283
|
+
*
|
|
284
|
+
* When set, `labels` is treated as an array of ISO date strings.
|
|
285
|
+
*/
|
|
286
|
+
labelDateFormat: {
|
|
287
|
+
type: PropType<LabelDateFormat | undefined>;
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* When supplying date strings, they MUST be in ISO format and you MUST set `labelDateFormat`.
|
|
291
|
+
*/
|
|
292
|
+
labels: {
|
|
293
|
+
type: PropType<string[]>;
|
|
294
|
+
required: true;
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* The alignment of the legend in the chart.
|
|
298
|
+
*/
|
|
299
|
+
legendAlign: {
|
|
300
|
+
type: PropType<LegendAlign | null | undefined>;
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* The position of the legend in the chart.
|
|
304
|
+
*/
|
|
305
|
+
legendPosition: {
|
|
306
|
+
type: PropType<LegendPosition | undefined>;
|
|
307
|
+
};
|
|
308
|
+
/**
|
|
309
|
+
* When `true`, bars from multiple datasets are drawn in the same position
|
|
310
|
+
* and overlap each other rather than being shown side-by-side (grouped)
|
|
311
|
+
* or stacked.
|
|
312
|
+
*
|
|
313
|
+
* Note: If the dataset values should accumulate into a single bar,
|
|
314
|
+
* use the `stack` prop instead.
|
|
315
|
+
*
|
|
316
|
+
* For example:
|
|
317
|
+
* - Default (grouped): each dataset has its own bar next to the others
|
|
318
|
+
* for the same category.
|
|
319
|
+
* - stack: dataset values accumulate vertically (or horizontally) into
|
|
320
|
+
* a single bar for each category.
|
|
321
|
+
* - overlap: all datasets share the same bar slot and are drawn on top of
|
|
322
|
+
* each other. This is often combined with transparency to allow visual
|
|
323
|
+
* comparison without stacking values.
|
|
324
|
+
*
|
|
325
|
+
* Charting pros: Equivalent to Chart.js’s `grouped: false` setting for
|
|
326
|
+
* bar charts. Unlike stacking, values do not accumulate — bars simply
|
|
327
|
+
* share the same baseline and x-position.
|
|
328
|
+
*/
|
|
329
|
+
overlap: {
|
|
330
|
+
type: PropType<boolean | undefined>;
|
|
331
|
+
};
|
|
332
|
+
/**
|
|
333
|
+
* The series data to display in the chart.
|
|
334
|
+
*/
|
|
335
|
+
series: {
|
|
336
|
+
type: PropType<BarSeries[]>;
|
|
337
|
+
required: true;
|
|
338
|
+
};
|
|
339
|
+
/**
|
|
340
|
+
* When `true`, bars from multiple data series are stacked on top of each other
|
|
341
|
+
* instead of being drawn side-by-side.
|
|
342
|
+
*
|
|
343
|
+
* Note: If the bars should share the same position without accumulating
|
|
344
|
+
* their values, use the `overlap` prop instead.
|
|
345
|
+
*
|
|
346
|
+
* For example:
|
|
347
|
+
* - Without stacking (default), each series is shown with its own separate bar
|
|
348
|
+
* for the same category (grouped layout).
|
|
349
|
+
* - With stacking enabled, series values for the same category accumulate
|
|
350
|
+
* vertically (or horizontally, if using horizontal bars) into a single bar.
|
|
351
|
+
*
|
|
352
|
+
* This makes it easy to compare both the total value across series and the
|
|
353
|
+
* contribution of each series to that total.
|
|
354
|
+
*
|
|
355
|
+
* Charting pros: This prop switches the bar layout mode from "grouped" to
|
|
356
|
+
* "stack" (cumulative). Stacking preserves relative series proportions
|
|
357
|
+
* within a category but alters absolute comparisons across categories.
|
|
358
|
+
*/
|
|
359
|
+
stack: {
|
|
360
|
+
type: PropType<boolean | undefined>;
|
|
361
|
+
};
|
|
362
|
+
/**
|
|
363
|
+
* The title of the chart.
|
|
364
|
+
*/
|
|
365
|
+
title: {
|
|
366
|
+
type: PropType<string | undefined>;
|
|
367
|
+
};
|
|
368
|
+
/**
|
|
369
|
+
* The tooltip formatter function.
|
|
370
|
+
*/
|
|
371
|
+
tooltip: {
|
|
372
|
+
type: PropType<TooltipCallback | undefined>;
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* The tooltip title formatter function.
|
|
376
|
+
*/
|
|
377
|
+
tooltipTitle: {
|
|
378
|
+
type: PropType<TooltipCallback | undefined>;
|
|
379
|
+
};
|
|
380
|
+
/**
|
|
381
|
+
* The type of data represented in the chart.
|
|
382
|
+
*
|
|
383
|
+
* For "percent", the data MUST be in decimal form (e.g., 0.1 for 10%).
|
|
384
|
+
*/
|
|
385
|
+
type: {
|
|
386
|
+
type: PropType<"number" | "percent">;
|
|
387
|
+
default: string;
|
|
388
|
+
};
|
|
389
|
+
/**
|
|
390
|
+
* Whether the chart has unfilled areas.
|
|
391
|
+
*
|
|
392
|
+
* The per series property, `props.data[n].isUnfilled`, overrides this setting.
|
|
393
|
+
*/
|
|
394
|
+
unfilled: {
|
|
395
|
+
type: PropType<boolean | undefined>;
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* Whether to hide the value axis grid lines. Shown by default.
|
|
399
|
+
*/
|
|
400
|
+
valueHideGridLines: {
|
|
401
|
+
type: PropType<boolean | undefined>;
|
|
402
|
+
};
|
|
403
|
+
/**
|
|
404
|
+
* The value axis label.
|
|
405
|
+
*/
|
|
406
|
+
valueLabel: {
|
|
407
|
+
type: PropType<string | undefined>;
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* The maximum number of ticks to show on the value axis.
|
|
411
|
+
*/
|
|
412
|
+
valueMaxTickCount: {
|
|
413
|
+
type: PropType<number | undefined>;
|
|
414
|
+
};
|
|
415
|
+
/**
|
|
416
|
+
* The number of decimal places to display for values.
|
|
417
|
+
* Applies to both axis tick labels and tooltips.
|
|
418
|
+
*/
|
|
419
|
+
valuePrecision: {
|
|
420
|
+
type: PropType<number | undefined>;
|
|
421
|
+
};
|
|
422
|
+
/**
|
|
423
|
+
* The minimum value to display in the value axis if there is nothing lower.
|
|
424
|
+
*
|
|
425
|
+
* This is useful for controlling the starting point of the value axis.
|
|
426
|
+
* The actual minimum value will be used if there is a lower value present.
|
|
427
|
+
*/
|
|
428
|
+
valueSuggestedMin: {
|
|
429
|
+
type: PropType<number | undefined>;
|
|
430
|
+
};
|
|
431
|
+
/**
|
|
432
|
+
* The maximum value to display in the value axis if there is nothing higher.
|
|
433
|
+
*
|
|
434
|
+
* This is useful for controlling the ending point of the value axis.
|
|
435
|
+
* The actual maximum value will be used if there is a higher value present.
|
|
436
|
+
*/
|
|
437
|
+
valueSuggestedMax: {
|
|
438
|
+
type: PropType<number | undefined>;
|
|
439
|
+
};
|
|
440
|
+
/**
|
|
441
|
+
* The number of ticks to show on the value axis.
|
|
442
|
+
*
|
|
443
|
+
* This overrides `valueMaxTickCount`.
|
|
444
|
+
*/
|
|
445
|
+
valueTickCount: {
|
|
446
|
+
type: PropType<number | undefined>;
|
|
447
|
+
};
|
|
448
|
+
/**
|
|
449
|
+
* The CSS style string to set the width of the bar chart component.
|
|
450
|
+
* - Accepts any valid CSS width value (e.g., "600px", "100%") or undefined.
|
|
451
|
+
* - Value defaults to "100%" if undefined.
|
|
452
|
+
*/
|
|
453
|
+
width: {
|
|
454
|
+
type: PropType<string | undefined>;
|
|
455
|
+
default: string;
|
|
456
|
+
};
|
|
457
|
+
}>> & {
|
|
458
|
+
onClick?: ((value: BarChartClickEvent) => any) | undefined;
|
|
459
|
+
}, {
|
|
460
|
+
type: "number" | "percent";
|
|
461
|
+
width: string | undefined;
|
|
462
|
+
height: string | undefined;
|
|
463
|
+
}, {}>;
|
|
464
|
+
export default _default;
|
|
@@ -30,9 +30,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: PropType<boolean>;
|
|
31
31
|
default: false;
|
|
32
32
|
};
|
|
33
|
-
/**
|
|
34
|
-
* Loads the items from the server.
|
|
35
|
-
*/
|
|
36
33
|
lazyMode: {
|
|
37
34
|
type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
|
|
38
35
|
default: "onDemand";
|
|
@@ -97,9 +94,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
94
|
type: PropType<boolean>;
|
|
98
95
|
default: false;
|
|
99
96
|
};
|
|
100
|
-
/**
|
|
101
|
-
* Loads the items from the server.
|
|
102
|
-
*/
|
|
103
97
|
lazyMode: {
|
|
104
98
|
type: PropType<import("@Obsidian/Enums/Controls/controlLazyMode").ControlLazyMode>;
|
|
105
99
|
default: "onDemand";
|
|
@@ -29,13 +29,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
29
29
|
};
|
|
30
30
|
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
31
31
|
formGroupClasses: {
|
|
32
|
-
type: PropType<string>;
|
|
32
|
+
type: PropType<string>; /** V-Model of the template string */
|
|
33
33
|
default: "";
|
|
34
34
|
};
|
|
35
35
|
validationTitle: {
|
|
36
36
|
type: PropType<string>;
|
|
37
37
|
default: "";
|
|
38
|
-
};
|
|
38
|
+
};
|
|
39
39
|
isRequiredIndicatorHidden: {
|
|
40
40
|
type: PropType<boolean>;
|
|
41
41
|
default: false;
|
|
@@ -73,13 +73,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
73
|
};
|
|
74
74
|
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
75
75
|
formGroupClasses: {
|
|
76
|
-
type: PropType<string>;
|
|
76
|
+
type: PropType<string>; /** V-Model of the template string */
|
|
77
77
|
default: "";
|
|
78
78
|
};
|
|
79
79
|
validationTitle: {
|
|
80
80
|
type: PropType<string>;
|
|
81
81
|
default: "";
|
|
82
|
-
};
|
|
82
|
+
};
|
|
83
83
|
isRequiredIndicatorHidden: {
|
|
84
84
|
type: PropType<boolean>;
|
|
85
85
|
default: false;
|