@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,11 +1,8 @@
|
|
|
1
1
|
import { InjectionKey, Ref } from "vue";
|
|
2
|
-
import { AccordionManager,
|
|
2
|
+
import { AccordionManager, CssStyleDeclarationKebabKey, ComponentMigrationHelper, ComponentTypeName, ContentAreaElements, DomWatcher, EditorComponentTypeName, HorizontalAlignment, StyleSheetElements, ValueConverter, ComponentStructure, TableElements, ButtonWidthModel, BorderStyle, ButtonComponentAdapter, DividerComponentAdapter, DividerGlobalAdapter, RsvpComponentAdapter, ButtonGlobalAdapter, ImageComponentAdapter, BodyGlobalAdapter, CodeComponentAdapter, TitleComponentAdapter, TextComponentAdapter, VideoComponentAdapter } from "./types.partial";
|
|
3
3
|
import { Enumerable } from "@Obsidian/Utility/linq";
|
|
4
4
|
export declare const AccordionGroupInjectionKey: InjectionKey<AccordionManager>;
|
|
5
5
|
export declare const EmptyDropzoneSvgPixelWidth = 103;
|
|
6
|
-
export declare const DefaultBodyWidth = 600;
|
|
7
|
-
export declare const DefaultBodyAlignment = "center";
|
|
8
|
-
export declare const DefaultBodyColor = "#ffffff";
|
|
9
6
|
export declare const DefaultEmailBackgroundColor = "#e7e7e7";
|
|
10
7
|
export declare const RockStylesCssClass: "rock-styles";
|
|
11
8
|
/**
|
|
@@ -71,25 +68,6 @@ export declare const GlobalCssClasses: {
|
|
|
71
68
|
};
|
|
72
69
|
export declare const GlobalStylesCssSelectors: {
|
|
73
70
|
readonly backgroundColor: ".email-wrapper";
|
|
74
|
-
readonly bodyWidth: string;
|
|
75
|
-
readonly bodyColor: string;
|
|
76
|
-
readonly bodyPadding: string;
|
|
77
|
-
readonly bodyAlignment: string;
|
|
78
|
-
readonly bodyBorderStyling: string;
|
|
79
|
-
readonly bodyMargin: string;
|
|
80
|
-
readonly buttonBackgroundColor: ".component-button .button-link";
|
|
81
|
-
readonly buttonTextStyling: ".component-button .button-link";
|
|
82
|
-
readonly buttonCornerRadius: string;
|
|
83
|
-
readonly buttonPadding: ".component-button .button-link";
|
|
84
|
-
readonly buttonMargin: string;
|
|
85
|
-
readonly buttonBorderStyling: string;
|
|
86
|
-
readonly buttonWidthValuesShell: ".component-button .button-shell, .component-rsvp .rsvp-button-shell";
|
|
87
|
-
readonly buttonWidthValuesButton: ".component-button .button-link, .component-rsvp .rsvp-accept-link, .component-rsvp .rsvp-decline-link";
|
|
88
|
-
readonly dividerMargin: string;
|
|
89
|
-
readonly dividerWidth: string;
|
|
90
|
-
readonly dividerStyle: string;
|
|
91
|
-
readonly dividerThickness: string;
|
|
92
|
-
readonly dividerColor: string;
|
|
93
71
|
};
|
|
94
72
|
export declare const numberToStringConverter: ValueConverter<number | null | undefined, string | null>;
|
|
95
73
|
export declare const stringConverter: ValueConverter<string | null | undefined, string | null>;
|
|
@@ -110,12 +88,7 @@ export declare function createComponentElementPlaceholder(document: Document): H
|
|
|
110
88
|
* @param cellInnerHtml Inner HTML string to place inside the `<td>` cell.
|
|
111
89
|
* @returns A table element with `.email-content` structure.
|
|
112
90
|
*/
|
|
113
|
-
export declare function createTable<T extends Element>(cellInnerHtml?: string | Enumerable<T> | T[] | undefined):
|
|
114
|
-
table: HTMLTableElement;
|
|
115
|
-
tbody: HTMLTableSectionElement;
|
|
116
|
-
tr: HTMLTableRowElement;
|
|
117
|
-
td: HTMLTableCellElement;
|
|
118
|
-
};
|
|
91
|
+
export declare function createTable<T extends Element>(cellInnerHtml?: string | Enumerable<T> | T[] | undefined): TableElements;
|
|
119
92
|
/**
|
|
120
93
|
* Creates a standard component structure with margin, border, and padding wrappers.
|
|
121
94
|
* @param componentCssClass - The CSS class for the component.
|
|
@@ -162,7 +135,7 @@ export declare function createCssRuleset(selector: string, declarations: Record<
|
|
|
162
135
|
* @example
|
|
163
136
|
* const container = document.getElementById("content");
|
|
164
137
|
* const elements = findDescendantContentAreaElements(container);
|
|
165
|
-
* console.
|
|
138
|
+
* console.debug(elements.outerTable); // Logs the first outer table found
|
|
166
139
|
*/
|
|
167
140
|
export declare function findDescendantContentAreaElements(element: HTMLElement): Partial<ContentAreaElements>;
|
|
168
141
|
export declare function addContentAreaElementsIfMissing(element: HTMLElement, { outerTableCssClass, innerTableCssClass }?: {
|
|
@@ -217,15 +190,15 @@ export declare function createDomWatcher(root: Document | Element, selector: str
|
|
|
217
190
|
additionalProjection?: (el: Element) => Element;
|
|
218
191
|
}): DomWatcher;
|
|
219
192
|
/**
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
193
|
+
* Removes temporary wrapper elements from an element's or document's children.
|
|
194
|
+
*
|
|
195
|
+
* This will place the wrapped elements in place of their associated wrappers,
|
|
196
|
+
* and the wrappers will be removed.
|
|
197
|
+
*/
|
|
225
198
|
export declare function removeTemporaryWrappers(element: Document | Element): void;
|
|
226
199
|
/**
|
|
227
|
-
|
|
228
|
-
|
|
200
|
+
* Removes temporary elements from a document or element.
|
|
201
|
+
*/
|
|
229
202
|
export declare function removeTemporaryElements(element: Document | Element): void;
|
|
230
203
|
/**
|
|
231
204
|
* Removes temporary CSS classes from the children of a document or element children.
|
|
@@ -240,90 +213,27 @@ export declare function getComponentVersionNumber(componentElement: Element): st
|
|
|
240
213
|
export declare function setComponentVersionNumber(componentElement: Element, version: string): void;
|
|
241
214
|
export declare function isComponentVersionNumber(str: string): boolean;
|
|
242
215
|
/**
|
|
243
|
-
* Compares two component version strings using a
|
|
216
|
+
* Compares two component version strings using a semantic like versioning system.
|
|
244
217
|
*
|
|
245
|
-
* Version format: `v<major>[.<minor>][-<phase
|
|
246
|
-
* - `v2` (Major
|
|
247
|
-
* - `v2.0` (
|
|
248
|
-
* - `v2.1` (
|
|
249
|
-
* - `v2.0-
|
|
250
|
-
* - `v2.0-
|
|
218
|
+
* Version format: `v<major>[.<minor>][.<patch>][-<phase>[.<phaseVersion>]]`
|
|
219
|
+
* - `v2` (Major only, treated as `v2.0.0`)
|
|
220
|
+
* - `v2.0` (Treated as `v2.0.0`)
|
|
221
|
+
* - `v2.1.3` (Patch included)
|
|
222
|
+
* - `v2.0-foo` (Pre release: phase "foo", no phase version)
|
|
223
|
+
* - `v2.0-foo.1` (Pre release: phase "foo", version 1)
|
|
251
224
|
*
|
|
252
|
-
*
|
|
253
|
-
* 1
|
|
254
|
-
* 2
|
|
255
|
-
* 3
|
|
256
|
-
* 4
|
|
257
|
-
* 5. **Phase Version (`alpha.1 < alpha.2`)**: If the phase is the same, numerical phase version is compared.
|
|
258
|
-
*
|
|
259
|
-
* **Examples:**
|
|
260
|
-
* ```typescript
|
|
261
|
-
* compareVersions("v2", "v2.1"); // -1 (v2.0 < v2.1)
|
|
262
|
-
* compareVersions("v2.0-alpha.1", "v2.0"); // -1 (alpha < stable)
|
|
263
|
-
* compareVersions("v2.0-beta.2", "v2.0-beta.10"); // -1 (beta.2 < beta.10)
|
|
264
|
-
* compareVersions("v2.0", "v3"); // -1 (v2 < v3)
|
|
265
|
-
* compareVersions("v10", "v2.1"); // 1 (v10 > v2.1)
|
|
266
|
-
* compareVersions("v2.0-beta.2", "v2.0-alpha.1"); // 1 (beta > alpha)
|
|
267
|
-
* compareVersions("v2.0-beta.2", "v2.0-beta.2"); // 0 (equal)
|
|
268
|
-
* ```
|
|
269
|
-
*
|
|
270
|
-
* @param {string} v1 - First version string (e.g., "v2.0-beta.1", "v2")
|
|
271
|
-
* @param {string} v2 - Second version string (e.g., "v2.0", "v2.1", "v3")
|
|
272
|
-
* @returns {number} Returns:
|
|
273
|
-
* - `-1` if `v1 < v2`
|
|
274
|
-
* - `1` if `v1 > v2`
|
|
275
|
-
* - `0` if they are equal
|
|
225
|
+
* Comparison rules:
|
|
226
|
+
* 1) Major, then minor, then patch (higher means newer)
|
|
227
|
+
* 2) If major minor patch match, a version with no phase is newer than a version with a phase (phase indicates pre-release and stable beats pre-release)
|
|
228
|
+
* 3) If both have a phase, phase is compared alphabetically (case insensitive)
|
|
229
|
+
* 4) If phases match, phaseVersion compares numerically. Missing phaseVersion is treated as 0
|
|
276
230
|
*/
|
|
277
231
|
export declare function compareComponentVersions(v1: string, v2: string): number;
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
createComponentElement(): HTMLElement;
|
|
281
|
-
};
|
|
282
|
-
type TitleComponentStructure = ComponentStructure & {
|
|
283
|
-
readonly headingEl: HTMLHeadElement | null;
|
|
284
|
-
readonly borderEl: HTMLElement;
|
|
285
|
-
readonly marginEl: HTMLElement;
|
|
286
|
-
readonly paddingEl: HTMLElement;
|
|
287
|
-
};
|
|
288
|
-
export type SupportedHeadingLevel = "h1" | "h2" | "h3";
|
|
289
|
-
export declare const SupportedHeadingLevels: SupportedHeadingLevel[];
|
|
290
|
-
export declare function getTitleComponentHelper(): ComponentMigrationHelper & {
|
|
291
|
-
getElements(componentElement: Element): TitleComponentStructure | null;
|
|
292
|
-
createComponentElement(): HTMLElement;
|
|
293
|
-
setCssClasses(componentElements: TitleComponentStructure): void;
|
|
294
|
-
};
|
|
295
|
-
type TextComponentStructure = ComponentStructure & {
|
|
296
|
-
readonly contentWrapper: HTMLHeadElement | null;
|
|
297
|
-
readonly borderEl: HTMLElement;
|
|
298
|
-
readonly marginEl: HTMLElement;
|
|
299
|
-
readonly paddingEl: HTMLElement;
|
|
300
|
-
};
|
|
301
|
-
export declare function getTextComponentHelper(): ComponentMigrationHelper & {
|
|
302
|
-
getElements(componentElement: Element): TextComponentStructure | null;
|
|
303
|
-
createComponentElement(): HTMLElement;
|
|
304
|
-
};
|
|
305
|
-
export declare function getButtonComponentHelper(): ComponentMigrationHelper & {
|
|
306
|
-
getElements(componentElement: Element): ComponentStructure & {
|
|
307
|
-
readonly linkButton: HTMLAnchorElement | null;
|
|
308
|
-
} | null;
|
|
309
|
-
createComponentElement(): HTMLElement;
|
|
310
|
-
};
|
|
311
|
-
export declare function getCodeComponentHelper(): ComponentMigrationHelper & {
|
|
312
|
-
getElements(componentElement: Element): ComponentStructure & {
|
|
313
|
-
readonly contentWrapper: HTMLElement | null;
|
|
314
|
-
} | null;
|
|
315
|
-
createComponentElement(): HTMLElement;
|
|
316
|
-
};
|
|
317
|
-
export declare function getDividerComponentHelper(): ComponentMigrationHelper & {
|
|
318
|
-
getElements(componentElement: Element): ComponentStructure | null;
|
|
319
|
-
createComponentElement(): HTMLElement;
|
|
320
|
-
};
|
|
321
|
-
export declare function getRsvpComponentHelper(): ComponentMigrationHelper & {
|
|
322
|
-
getElements(componentElement: Element): ComponentStructure | null;
|
|
323
|
-
createComponentElement(): HTMLElement;
|
|
232
|
+
type RowComponentStructure = ComponentStructure & {
|
|
233
|
+
readonly dropzone: HTMLElement | null;
|
|
324
234
|
};
|
|
325
235
|
export declare function getRowComponentHelper(): ComponentMigrationHelper & {
|
|
326
|
-
getElements(componentElement: Element):
|
|
236
|
+
getElements(componentElement: Element): RowComponentStructure | null;
|
|
327
237
|
createComponentElement(): HTMLElement;
|
|
328
238
|
};
|
|
329
239
|
type SectionComponentTypeName = Extract<EditorComponentTypeName, "section" | "one-column-section" | "two-column-section" | "three-column-section" | "four-column-section" | "right-sidebar-section" | "left-sidebar-section">;
|
|
@@ -333,18 +243,14 @@ export declare function getSectionComponentHelper(): ComponentMigrationHelper &
|
|
|
333
243
|
} | null;
|
|
334
244
|
createComponentElement(componentTypeName: SectionComponentTypeName): HTMLElement;
|
|
335
245
|
};
|
|
336
|
-
export declare function getImageComponentHelper(): ComponentMigrationHelper & {
|
|
337
|
-
getElements(componentElement: Element): ComponentStructure | null;
|
|
338
|
-
createComponentElement(): HTMLElement;
|
|
339
|
-
};
|
|
340
246
|
export declare function getComponentHelper(componentTypeName: ComponentTypeName): (ComponentMigrationHelper & {
|
|
341
|
-
getElements(componentElement: Element): ComponentStructure | null;
|
|
342
|
-
createComponentElement(): HTMLElement;
|
|
343
|
-
}) | (ComponentMigrationHelper & {
|
|
344
247
|
getElements(componentElement: Element): (ComponentStructure & {
|
|
345
248
|
readonly rowWrapper: HTMLTableElement | null;
|
|
346
249
|
}) | null;
|
|
347
250
|
createComponentElement(componentTypeName: SectionComponentTypeName): HTMLElement;
|
|
251
|
+
}) | (ComponentMigrationHelper & {
|
|
252
|
+
getElements(componentElement: Element): RowComponentStructure | null;
|
|
253
|
+
createComponentElement(): HTMLElement;
|
|
348
254
|
}) | null;
|
|
349
255
|
export declare const FontFamilies: {
|
|
350
256
|
readonly Arial: "Arial, Helvetica, sans-serif";
|
|
@@ -375,4 +281,49 @@ export declare const LineHeights: {
|
|
|
375
281
|
readonly title: "Very Loose";
|
|
376
282
|
};
|
|
377
283
|
};
|
|
284
|
+
/**
|
|
285
|
+
* Value provider used by ButtonWidthProperty controls for both local
|
|
286
|
+
* and global scopes. It abstracts get and set of the logical width model.
|
|
287
|
+
*/
|
|
288
|
+
export type ButtonWidthValueProvider = {
|
|
289
|
+
/**
|
|
290
|
+
* Reads the current button width model from either local or global scope.
|
|
291
|
+
*/
|
|
292
|
+
get: () => ButtonWidthModel;
|
|
293
|
+
/**
|
|
294
|
+
* Writes a new button width model to either local or global scope.
|
|
295
|
+
*/
|
|
296
|
+
set: (value: ButtonWidthModel) => void;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* If the specified element is within a rock content editable component,
|
|
300
|
+
* adds event listeners for rock content editable events.
|
|
301
|
+
*
|
|
302
|
+
* Remember to also call `removeRockContentEditableEventListener` when done.
|
|
303
|
+
*
|
|
304
|
+
* @param element
|
|
305
|
+
* @param eventHandler
|
|
306
|
+
*/
|
|
307
|
+
export declare function addRockContentEditableEventListener(element: HTMLElement, eventHandler: (event: Event) => void): void;
|
|
308
|
+
/**
|
|
309
|
+
* If the specified element is within a rock content editable component,
|
|
310
|
+
* removes event listeners for rock content editable events.
|
|
311
|
+
*
|
|
312
|
+
* Remember to call this when done with `addRockContentEditableEventListener`.
|
|
313
|
+
*
|
|
314
|
+
* @param element
|
|
315
|
+
* @param eventHandler
|
|
316
|
+
*/
|
|
317
|
+
export declare function removeRockContentEditableEventListener(element: HTMLElement, eventHandler: (event: Event) => void): void;
|
|
318
|
+
export declare const bodyGlobalAdapter: BodyGlobalAdapter;
|
|
319
|
+
export declare const buttonGlobalAdapter: ButtonGlobalAdapter;
|
|
320
|
+
export declare const dividerGlobalAdapter: DividerGlobalAdapter;
|
|
321
|
+
export declare const titleComponentAdapter: TitleComponentAdapter;
|
|
322
|
+
export declare const textComponentAdapter: TextComponentAdapter;
|
|
323
|
+
export declare const imageComponentAdapter: ImageComponentAdapter;
|
|
324
|
+
export declare const buttonComponentAdapter: ButtonComponentAdapter;
|
|
325
|
+
export declare const videoComponentAdapter: VideoComponentAdapter;
|
|
326
|
+
export declare const dividerComponentAdapter: DividerComponentAdapter;
|
|
327
|
+
export declare const rsvpComponentAdapter: RsvpComponentAdapter;
|
|
328
|
+
export declare const codeComponentAdapter: CodeComponentAdapter;
|
|
378
329
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
import { ComponentScreen } from "./learningActivity";
|
|
3
3
|
import { AssessmentItem } from "./assessmentLearningActivity.partial";
|
|
4
|
+
import { ContentArticleItem } from "./contentArticleLearningActivity.partial";
|
|
4
5
|
declare const _default: import("vue").DefineComponent<{
|
|
5
6
|
disabled: {
|
|
6
7
|
type: PropType<boolean>;
|
|
@@ -8,7 +9,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
9
|
};
|
|
9
10
|
/** The assessment item's configuration. */
|
|
10
11
|
modelValue: {
|
|
11
|
-
type: PropType<AssessmentItem>;
|
|
12
|
+
type: PropType<AssessmentItem | ContentArticleItem>;
|
|
12
13
|
required: true;
|
|
13
14
|
};
|
|
14
15
|
screenToShow: {
|
|
@@ -16,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
17
|
required: true;
|
|
17
18
|
};
|
|
18
19
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: AssessmentItem) => void;
|
|
20
|
+
"update:modelValue": (value: AssessmentItem | ContentArticleItem) => void;
|
|
20
21
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
22
|
disabled: {
|
|
22
23
|
type: PropType<boolean>;
|
|
@@ -24,7 +25,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
25
|
};
|
|
25
26
|
/** The assessment item's configuration. */
|
|
26
27
|
modelValue: {
|
|
27
|
-
type: PropType<AssessmentItem>;
|
|
28
|
+
type: PropType<AssessmentItem | ContentArticleItem>;
|
|
28
29
|
required: true;
|
|
29
30
|
};
|
|
30
31
|
screenToShow: {
|
|
@@ -32,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
33
|
required: true;
|
|
33
34
|
};
|
|
34
35
|
}>> & {
|
|
35
|
-
"onUpdate:modelValue"?: ((value: AssessmentItem) => any) | undefined;
|
|
36
|
+
"onUpdate:modelValue"?: ((value: AssessmentItem | ContentArticleItem) => any) | undefined;
|
|
36
37
|
}, {
|
|
37
38
|
disabled: boolean;
|
|
38
39
|
}, {}>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ComponentScreen } from "./learningActivity";
|
|
3
|
+
import { ContentArticleItem } from "./contentArticleLearningActivity.partial";
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
disabled: {
|
|
6
|
+
type: PropType<boolean>;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
/** The assessment item's configuration. */
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: PropType<ContentArticleItem>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
screenToShow: {
|
|
15
|
+
type: PropType<ComponentScreen>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: ContentArticleItem) => void;
|
|
20
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
disabled: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
/** The assessment item's configuration. */
|
|
26
|
+
modelValue: {
|
|
27
|
+
type: PropType<ContentArticleItem>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
screenToShow: {
|
|
31
|
+
type: PropType<ComponentScreen>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
}>> & {
|
|
35
|
+
"onUpdate:modelValue"?: ((value: ContentArticleItem) => any) | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
}, {}>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ComponentScreen } from "./learningActivity";
|
|
3
|
+
import { ContentArticleItem } from "./contentArticleLearningActivity.partial";
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
disabled: {
|
|
6
|
+
type: PropType<boolean>;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
/** The assessment item's configuration. */
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: PropType<ContentArticleItem>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
screenToShow: {
|
|
15
|
+
type: PropType<ComponentScreen>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: ContentArticleItem) => void;
|
|
20
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
disabled: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
/** The assessment item's configuration. */
|
|
26
|
+
modelValue: {
|
|
27
|
+
type: PropType<ContentArticleItem>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
screenToShow: {
|
|
31
|
+
type: PropType<ComponentScreen>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
}>> & {
|
|
35
|
+
"onUpdate:modelValue"?: ((value: ContentArticleItem) => any) | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
}, {}>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ComponentScreen } from "./learningActivity";
|
|
3
|
+
import { ContentArticleItem } from "./contentArticleLearningActivity.partial";
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
disabled: {
|
|
6
|
+
type: PropType<boolean>;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
/** The assessment item's configuration. */
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: PropType<ContentArticleItem>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
screenToShow: {
|
|
15
|
+
type: PropType<ComponentScreen>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: ContentArticleItem) => void;
|
|
20
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
disabled: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
/** The assessment item's configuration. */
|
|
26
|
+
modelValue: {
|
|
27
|
+
type: PropType<ContentArticleItem>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
screenToShow: {
|
|
31
|
+
type: PropType<ComponentScreen>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
}>> & {
|
|
35
|
+
"onUpdate:modelValue"?: ((value: ContentArticleItem) => any) | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
}, {}>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { LearningClassActivityCompletionBag } from "@Obsidian/ViewModels/Blocks/Lms/LearningClassActivityCompletionDetail/learningClassActivityCompletionBag";
|
|
2
|
+
import { ComponentScreen } from "./learningActivity";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
activityBag: {
|
|
5
|
+
type: import("vue").PropType<import("@Obsidian/ViewModels/Blocks/Lms/LearningClassActivityDetail/learningClassActivityBag").LearningClassActivityBag>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
completionBag: {
|
|
9
|
+
type: import("vue").PropType<LearningClassActivityCompletionBag>;
|
|
10
|
+
required: false;
|
|
11
|
+
};
|
|
12
|
+
disabled: {
|
|
13
|
+
type: import("vue").PropType<boolean>;
|
|
14
|
+
default: false;
|
|
15
|
+
};
|
|
16
|
+
screenToShow: {
|
|
17
|
+
type: import("vue").PropType<ComponentScreen>;
|
|
18
|
+
default: ComponentScreen.Summary;
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
completed(isSuccess: boolean): void;
|
|
22
|
+
closed(): void;
|
|
23
|
+
commentChanged(comment: string): void;
|
|
24
|
+
activitySettingsChanged(settings: Record<string, string>): void;
|
|
25
|
+
completionValuesChanged(values: Record<string, string>, extra?: import("./learningActivity").CompletionExtraValues | undefined): void;
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
activityBag: {
|
|
28
|
+
type: import("vue").PropType<import("@Obsidian/ViewModels/Blocks/Lms/LearningClassActivityDetail/learningClassActivityBag").LearningClassActivityBag>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
completionBag: {
|
|
32
|
+
type: import("vue").PropType<LearningClassActivityCompletionBag>;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
disabled: {
|
|
36
|
+
type: import("vue").PropType<boolean>;
|
|
37
|
+
default: false;
|
|
38
|
+
};
|
|
39
|
+
screenToShow: {
|
|
40
|
+
type: import("vue").PropType<ComponentScreen>;
|
|
41
|
+
default: ComponentScreen.Summary;
|
|
42
|
+
};
|
|
43
|
+
}>> & {
|
|
44
|
+
onClosed?: (() => any) | undefined;
|
|
45
|
+
onCompleted?: ((isSuccess: boolean) => any) | undefined;
|
|
46
|
+
onCommentChanged?: ((comment: string) => any) | undefined;
|
|
47
|
+
onActivitySettingsChanged?: ((settings: Record<string, string>) => any) | undefined;
|
|
48
|
+
onCompletionValuesChanged?: ((values: Record<string, string>, extra?: import("./learningActivity").CompletionExtraValues | undefined) => any) | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
screenToShow: ComponentScreen;
|
|
52
|
+
}, {}>;
|
|
53
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Guid } from "@Obsidian/Types";
|
|
2
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
3
|
+
export declare enum ContentArticleItemType {
|
|
4
|
+
Text = 0,
|
|
5
|
+
Section = 1,
|
|
6
|
+
Video = 2,
|
|
7
|
+
Note = 3
|
|
8
|
+
}
|
|
9
|
+
export type ContentArticleItem = {
|
|
10
|
+
type: ContentArticleItemType;
|
|
11
|
+
uniqueId: Guid;
|
|
12
|
+
hasBeenGraded?: boolean | null;
|
|
13
|
+
order: number;
|
|
14
|
+
text?: string | null;
|
|
15
|
+
title?: string | null;
|
|
16
|
+
summary?: string | null;
|
|
17
|
+
video?: ListItemBag | null;
|
|
18
|
+
label?: string | null;
|
|
19
|
+
inputRows?: number | null;
|
|
20
|
+
isRequired?: boolean | null;
|
|
21
|
+
note?: string | null;
|
|
22
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -2,7 +2,7 @@ import { PropType } from "vue";
|
|
|
2
2
|
import { SankeyDiagramNodeBag } from "@Obsidian/ViewModels/Controls/sankeyDiagramNodeBag";
|
|
3
3
|
import { SankeyDiagramEdgeBag } from "@Obsidian/ViewModels/Controls/sankeyDiagramEdgeBag";
|
|
4
4
|
import { SankeyDiagramSettingsBag } from "@Obsidian/ViewModels/Controls/sankeyDiagramSettingsBag";
|
|
5
|
-
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
6
|
flowNodes: {
|
|
7
7
|
type: PropType<SankeyDiagramNodeBag[]>;
|
|
8
8
|
default: () => never[];
|
|
@@ -49,5 +49,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
settings: SankeyDiagramSettingsBag;
|
|
50
50
|
flowNodes: SankeyDiagramNodeBag[];
|
|
51
51
|
flowEdges: SankeyDiagramEdgeBag[];
|
|
52
|
-
}, {}
|
|
52
|
+
}, {}>, {
|
|
53
|
+
legend?(_: {}): any;
|
|
54
|
+
}>;
|
|
53
55
|
export default _default;
|
|
56
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
|
+
new (): {
|
|
58
|
+
$slots: S;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
recpientIdkey: {
|
|
4
|
+
type: PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
isPersonHeaderHidden: {
|
|
8
|
+
type: PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
recpientIdkey: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
isPersonHeaderHidden: {
|
|
17
|
+
type: PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
}>>, {
|
|
21
|
+
isPersonHeaderHidden: boolean;
|
|
22
|
+
}, {}>, {
|
|
23
|
+
timelineHeaderActions?(_: {}): any;
|
|
24
|
+
timelineFooterActions?(_: {}): any;
|
|
25
|
+
}>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IContentSectionHolder } from "@Obsidian/Core/Controls/contentSection";
|
|
2
|
+
import { PropType } from "vue";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
sections: {
|
|
5
|
+
type: PropType<IContentSectionHolder[]>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
sections: {
|
|
10
|
+
type: PropType<IContentSectionHolder[]>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>>, {}, {}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
mode: {
|
|
4
|
+
type: PropType<"mobile" | "desktop">;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
source: {
|
|
8
|
+
type: PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
sourceMode: {
|
|
12
|
+
type: PropType<"html" | "url">;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
mode: {
|
|
17
|
+
type: PropType<"mobile" | "desktop">;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
source: {
|
|
21
|
+
type: PropType<string>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
sourceMode: {
|
|
25
|
+
type: PropType<"html" | "url">;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
sourceMode: "html" | "url";
|
|
30
|
+
}, {}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
message: {
|
|
4
|
+
type: PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
minimumPixelHeight: {
|
|
8
|
+
type: PropType<number>;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
message: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
minimumPixelHeight: {
|
|
17
|
+
type: PropType<number>;
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
}>>, {
|
|
21
|
+
minimumPixelHeight: number;
|
|
22
|
+
}, {}>;
|
|
23
|
+
export default _default;
|