@omnia/fx 8.0.222-dev → 8.0.224-dev
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/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/AppStore.d.ts +3 -2
- package/internal-do-not-import-from-here/stores/DynamicGroupStore.d.ts +9 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/markdown/MarkdownEditorStore.d.ts +78 -0
- package/internal-do-not-import-from-here/stores/markdown/MarkdownStateStore.d.ts +38 -0
- package/internal-do-not-import-from-here/stores/markdown/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +99 -452
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupActiveBlade.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupDeletedBlade.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupDetailBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupListingBlade.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupMembershipListing.d.ts +7 -4
- package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/AuthenticationBlade.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/DetailBlade.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserDetailStore.d.ts +11 -6
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementConstants.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/app/apps/admin/AppManagementCategoryJourney.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/app/apps/admin/CommunitiesAppsJourney.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/app/apps/admin/PublishingAppsJourney.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/app/apps/admin/TeamworkAppsJourney.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/app/loc/localize.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/app/management/api/AppManagementApi.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ChromeEditorStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ContainersEditorStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleViewer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPreview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/chrome/ChromeBlueprintsViewer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/chrome/ChromePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/chrome/ChromeViewer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaDefinitionPicker.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +100 -100
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerBlueprintsViewer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPreview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/stylepicker/StylePicker.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +443 -371
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +60 -60
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +443 -371
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Colors.d.ts +2 -12
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/General.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/aurora/themeprovider/ThemeProvider.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/DateTimeFieldEdit.d.ts +80 -22
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/TextFieldEdit.d.ts +68 -27
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +46 -15
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +51 -61
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +57 -82
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +55 -81
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelection.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelector.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.css_bak.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor_bak.d.ts +500 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownToolbar.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownToolbar.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.css.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.stylex.d.ts +6 -37
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.stylex.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.stylex.d.ts +2 -8
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/chart/Chart.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/checkbox/{Checkbox.css.d.ts → Checkbox.stylex.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.stylex.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.stylex.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.stylex.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.stylex.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.stylex.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.stylex.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.stylex.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/form/Form.stylex.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.stylex.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.stylex.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/link/Link.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/list/{List.css.d.ts → List.stylex.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.stylex.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.stylex.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/{NavigationDrawer.css.d.ts → NavigationDrawer.stylex.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.stylex.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/oxide/pagination/Pagination.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.stylex.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/skeletonloader/SkeletonLoader.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/splitpane/Splitpane.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/splitpane/SplitpaneItem.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/table/Table.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +4 -24
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/securitytrimmer/SecurityTrimmer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +48 -35
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +14 -988
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRenderer.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRendererPlugin.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +251 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentEditor.d.ts +1123 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/VelcronContentRenderer.d.ts +80 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/ActionMenu.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/{admin/textcompletion/components/TextCompletion.d.ts → velcron/components/contenteditorNew_bak/components/ActionMenu.d.ts} +8 -16
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector copy.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.css.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/BorderSelector.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/{admin/mediaflow/components/MediaflowProviderSecrets.d.ts → velcron/components/contenteditorNew_bak/components/DefinitionToolbar copy.d.ts } +11 -21
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/components/DefinitionToolbar.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/definitions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/editorHooks/ContentEditorHooks.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/EditorRenderingHooks.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew_bak/stores/ContentEditorStore.d.ts +220 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPreview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/VelcronPropertiesEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/BlueprintEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/ColorSchemaEditor.d.ts +105 -105
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyEditorCreator.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +9 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +143 -94
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/admin/dalle/components/DallESecret.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/admin/dalle/components/DallESecret.d.ts +0 -100
- package/internal-do-not-import-from-here/ux/admin/dalle/loc/localize.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/admin/mediaflow/loc/localize.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/admin/permissions/registrations/Registration.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/admin/textcompletion/SecretRegistrations.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/admin/textcompletion/components/TextCompletionConstants.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/admin/textcompletion/loc/localize.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/IDateTimeFieldEdit.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/ITextFieldEdit.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.css.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker_omfx.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +0 -13
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/oxide/form/Form.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.css.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.css.d.ts +0 -10
- /package/internal-do-not-import-from-here/ux/{admin/dalle/SecretRegistrations.d.ts → app/apps/admin/registration/AdminRegistrations.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{admin/mediaflow/MediaflowProviderSecretsRegistration.d.ts → velcron/components/contenteditorNew_bak/definitions/DefinitionRegistrations.d.ts} +0 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
import { guid } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
registrationId?: guid;
|
4
|
+
}>) => {
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
6
|
+
$data: {};
|
7
|
+
$props: {};
|
8
|
+
$attrs: {
|
9
|
+
[x: string]: unknown;
|
10
|
+
};
|
11
|
+
$refs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$slots: Readonly<{
|
15
|
+
[name: string]: import("vue").Slot<any>;
|
16
|
+
}>;
|
17
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
18
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$emit: (event: string, ...args: any[]) => void;
|
20
|
+
$el: any;
|
21
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
22
|
+
beforeCreate?: (() => void) | (() => void)[];
|
23
|
+
created?: (() => void) | (() => void)[];
|
24
|
+
beforeMount?: (() => void) | (() => void)[];
|
25
|
+
mounted?: (() => void) | (() => void)[];
|
26
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
27
|
+
updated?: (() => void) | (() => void)[];
|
28
|
+
activated?: (() => void) | (() => void)[];
|
29
|
+
deactivated?: (() => void) | (() => void)[];
|
30
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
31
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
32
|
+
destroyed?: (() => void) | (() => void)[];
|
33
|
+
unmounted?: (() => void) | (() => void)[];
|
34
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
35
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
37
|
+
};
|
38
|
+
$forceUpdate: () => void;
|
39
|
+
$nextTick: typeof import("vue").nextTick;
|
40
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
41
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
42
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
43
|
+
registrationId?: guid;
|
44
|
+
}> & {
|
45
|
+
"v-slots"?: {
|
46
|
+
default?: import("vue").Slot;
|
47
|
+
} & {};
|
48
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "registrationId">;
|
49
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
50
|
+
[key: string]: any;
|
51
|
+
}>;
|
52
|
+
export default _default;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { PluginContext, PluginInfo } from "@toast-ui/editor";
|
2
|
+
export interface MarkdownPluginContext {
|
3
|
+
componentCreator: (component: any, props: {}, attachToHtmlElement: HTMLElement) => void;
|
4
|
+
}
|
5
|
+
export declare function useSectionRendererPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { useMarkdownEditorStore } from "@omnia/fx/stores";
|
1
2
|
import { VelcronAppDefinition, VelcronDefinition, VelcronDefinitionRegistration, ContainerBlueprint, ContainerVariant, VelcronSectionInstance, guid, BorderSelectorActionRegistration } from "@omnia/fx-models";
|
2
3
|
type InsertMode = "add" | "change";
|
3
4
|
export interface InsertOptions {
|
@@ -12,6 +13,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
12
13
|
get: {
|
13
14
|
contentAsVelcron: () => VelcronAppDefinition<object>[];
|
14
15
|
contentAsSections: () => VelcronSectionInstance[];
|
16
|
+
section: {
|
17
|
+
byContentId(id: guid): VelcronSectionInstance;
|
18
|
+
};
|
15
19
|
};
|
16
20
|
state: {
|
17
21
|
definitions: VelcronSectionInstance[];
|
@@ -25,6 +29,10 @@ export declare const useVelcronContentEditorStore: () => {
|
|
25
29
|
toggleColorSchemaPreview: string;
|
26
30
|
toggleContainerBlueprintPreview: ContainerVariant | ContainerBlueprint;
|
27
31
|
toggleDefinitionPreview: VelcronDefinition;
|
32
|
+
scrollToElementTrigger: {
|
33
|
+
elementId: guid;
|
34
|
+
scrollToEnd: boolean;
|
35
|
+
};
|
28
36
|
showOverlay: boolean;
|
29
37
|
borderSelectorActions: BorderSelectorActionRegistration[];
|
30
38
|
allowPreviewToggle: boolean;
|
@@ -49,6 +57,10 @@ export declare const useVelcronContentEditorStore: () => {
|
|
49
57
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
50
58
|
onMutatedToggleContainerBlueprintPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<ContainerVariant | ContainerBlueprint>;
|
51
59
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinition>;
|
60
|
+
onMutatedScrollToElementTrigger: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
61
|
+
elementId: guid;
|
62
|
+
scrollToEnd: boolean;
|
63
|
+
}>;
|
52
64
|
onMutatedShowOverlay: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
53
65
|
onMutatedBorderSelectorActions: import("@omnia/fx").MessageBusExposeOnlySubscription<BorderSelectorActionRegistration[]>;
|
54
66
|
onMutatedAllowPreviewToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -63,6 +75,84 @@ export declare const useVelcronContentEditorStore: () => {
|
|
63
75
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
64
76
|
actions: {
|
65
77
|
onDispatching: {
|
78
|
+
setMarkdownEditorStore: {
|
79
|
+
subscribe(fn: (store: {
|
80
|
+
state: {
|
81
|
+
toolbar: {
|
82
|
+
show: boolean;
|
83
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
84
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
85
|
+
};
|
86
|
+
toolbarOwnerId: guid;
|
87
|
+
activeEditor: import("@toast-ui/editor").Editor;
|
88
|
+
};
|
89
|
+
events: {
|
90
|
+
onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
91
|
+
show: boolean;
|
92
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
93
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
94
|
+
}>;
|
95
|
+
onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
|
96
|
+
onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
|
97
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
98
|
+
actions: {
|
99
|
+
onDispatching: {
|
100
|
+
commands: {
|
101
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
102
|
+
};
|
103
|
+
toolbar: {
|
104
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
105
|
+
};
|
106
|
+
editor: {
|
107
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
108
|
+
};
|
109
|
+
};
|
110
|
+
onDispatched: {
|
111
|
+
commands: {
|
112
|
+
subscribe(fn: (result: {
|
113
|
+
exec: (command: string, payload: any) => void;
|
114
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
|
+
};
|
116
|
+
toolbar: {
|
117
|
+
subscribe(fn: (result: {
|
118
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
119
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
120
|
+
};
|
121
|
+
editor: {
|
122
|
+
subscribe(fn: (result: {
|
123
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
124
|
+
onLeave: (id: any) => void;
|
125
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
126
|
+
};
|
127
|
+
};
|
128
|
+
onFailure: {
|
129
|
+
commands: {
|
130
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
131
|
+
};
|
132
|
+
toolbar: {
|
133
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
134
|
+
};
|
135
|
+
editor: {
|
136
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
137
|
+
};
|
138
|
+
};
|
139
|
+
} & {
|
140
|
+
commands: () => {
|
141
|
+
exec: (command: string, payload: any) => void;
|
142
|
+
};
|
143
|
+
toolbar: () => {
|
144
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
145
|
+
};
|
146
|
+
editor: () => {
|
147
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
148
|
+
onLeave: (id: any) => void;
|
149
|
+
};
|
150
|
+
};
|
151
|
+
get: {
|
152
|
+
isActiveStore(): boolean;
|
153
|
+
};
|
154
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
155
|
+
};
|
66
156
|
selectorActions: {
|
67
157
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
68
158
|
};
|
@@ -86,9 +176,88 @@ export declare const useVelcronContentEditorStore: () => {
|
|
86
176
|
};
|
87
177
|
};
|
88
178
|
onDispatched: {
|
179
|
+
setMarkdownEditorStore: {
|
180
|
+
subscribe(fn: (result: void, store: {
|
181
|
+
state: {
|
182
|
+
toolbar: {
|
183
|
+
show: boolean;
|
184
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
185
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
186
|
+
};
|
187
|
+
toolbarOwnerId: guid;
|
188
|
+
activeEditor: import("@toast-ui/editor").Editor;
|
189
|
+
};
|
190
|
+
events: {
|
191
|
+
onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
192
|
+
show: boolean;
|
193
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
194
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
195
|
+
}>;
|
196
|
+
onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
|
197
|
+
onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
|
198
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
199
|
+
actions: {
|
200
|
+
onDispatching: {
|
201
|
+
commands: {
|
202
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
203
|
+
};
|
204
|
+
toolbar: {
|
205
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
206
|
+
};
|
207
|
+
editor: {
|
208
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
209
|
+
};
|
210
|
+
};
|
211
|
+
onDispatched: {
|
212
|
+
commands: {
|
213
|
+
subscribe(fn: (result: {
|
214
|
+
exec: (command: string, payload: any) => void;
|
215
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
216
|
+
};
|
217
|
+
toolbar: {
|
218
|
+
subscribe(fn: (result: {
|
219
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
220
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
221
|
+
};
|
222
|
+
editor: {
|
223
|
+
subscribe(fn: (result: {
|
224
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
225
|
+
onLeave: (id: any) => void;
|
226
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
227
|
+
};
|
228
|
+
};
|
229
|
+
onFailure: {
|
230
|
+
commands: {
|
231
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
232
|
+
};
|
233
|
+
toolbar: {
|
234
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
235
|
+
};
|
236
|
+
editor: {
|
237
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
238
|
+
};
|
239
|
+
};
|
240
|
+
} & {
|
241
|
+
commands: () => {
|
242
|
+
exec: (command: string, payload: any) => void;
|
243
|
+
};
|
244
|
+
toolbar: () => {
|
245
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
246
|
+
};
|
247
|
+
editor: () => {
|
248
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
249
|
+
onLeave: (id: any) => void;
|
250
|
+
};
|
251
|
+
};
|
252
|
+
get: {
|
253
|
+
isActiveStore(): boolean;
|
254
|
+
};
|
255
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
256
|
+
};
|
89
257
|
selectorActions: {
|
90
258
|
subscribe(fn: (result: {
|
91
259
|
hideDefaultSelector: () => void;
|
260
|
+
showCopySelector(): void;
|
92
261
|
remove: (id: guid) => void;
|
93
262
|
add: (action: BorderSelectorActionRegistration | Array<BorderSelectorActionRegistration>) => void;
|
94
263
|
run: (action: BorderSelectorActionRegistration, options: InsertOptions) => void;
|
@@ -130,6 +299,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
130
299
|
deleteReference: (definition: VelcronSectionInstance) => any;
|
131
300
|
change: (definitionRegistration: VelcronSectionInstance, newDefinitionId: guid, toggle?: boolean) => VelcronSectionInstance;
|
132
301
|
update: (definition: VelcronSectionInstance, velcronDefinition: VelcronAppDefinition) => void;
|
302
|
+
copy: (insertOptions: InsertOptions, setAsActive?: boolean) => VelcronSectionInstance;
|
133
303
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
134
304
|
};
|
135
305
|
preview: {
|
@@ -141,6 +311,84 @@ export declare const useVelcronContentEditorStore: () => {
|
|
141
311
|
};
|
142
312
|
};
|
143
313
|
onFailure: {
|
314
|
+
setMarkdownEditorStore: {
|
315
|
+
subscribe(fn: (failureReason: any, store: {
|
316
|
+
state: {
|
317
|
+
toolbar: {
|
318
|
+
show: boolean;
|
319
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
320
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
321
|
+
};
|
322
|
+
toolbarOwnerId: guid;
|
323
|
+
activeEditor: import("@toast-ui/editor").Editor;
|
324
|
+
};
|
325
|
+
events: {
|
326
|
+
onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
327
|
+
show: boolean;
|
328
|
+
textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
329
|
+
additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
|
330
|
+
}>;
|
331
|
+
onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
|
332
|
+
onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
|
333
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
334
|
+
actions: {
|
335
|
+
onDispatching: {
|
336
|
+
commands: {
|
337
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
338
|
+
};
|
339
|
+
toolbar: {
|
340
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
341
|
+
};
|
342
|
+
editor: {
|
343
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
344
|
+
};
|
345
|
+
};
|
346
|
+
onDispatched: {
|
347
|
+
commands: {
|
348
|
+
subscribe(fn: (result: {
|
349
|
+
exec: (command: string, payload: any) => void;
|
350
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
351
|
+
};
|
352
|
+
toolbar: {
|
353
|
+
subscribe(fn: (result: {
|
354
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
355
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
356
|
+
};
|
357
|
+
editor: {
|
358
|
+
subscribe(fn: (result: {
|
359
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
360
|
+
onLeave: (id: any) => void;
|
361
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
362
|
+
};
|
363
|
+
};
|
364
|
+
onFailure: {
|
365
|
+
commands: {
|
366
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
367
|
+
};
|
368
|
+
toolbar: {
|
369
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
370
|
+
};
|
371
|
+
editor: {
|
372
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
373
|
+
};
|
374
|
+
};
|
375
|
+
} & {
|
376
|
+
commands: () => {
|
377
|
+
exec: (command: string, payload: any) => void;
|
378
|
+
};
|
379
|
+
toolbar: () => {
|
380
|
+
addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
|
381
|
+
};
|
382
|
+
editor: () => {
|
383
|
+
onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
|
384
|
+
onLeave: (id: any) => void;
|
385
|
+
};
|
386
|
+
};
|
387
|
+
get: {
|
388
|
+
isActiveStore(): boolean;
|
389
|
+
};
|
390
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
391
|
+
};
|
144
392
|
selectorActions: {
|
145
393
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
146
394
|
};
|
@@ -164,8 +412,10 @@ export declare const useVelcronContentEditorStore: () => {
|
|
164
412
|
};
|
165
413
|
};
|
166
414
|
} & {
|
415
|
+
setMarkdownEditorStore(store: ReturnType<typeof useMarkdownEditorStore>): void;
|
167
416
|
selectorActions: () => {
|
168
417
|
hideDefaultSelector: () => void;
|
418
|
+
showCopySelector(): void;
|
169
419
|
remove: (id: guid) => void;
|
170
420
|
add: (action: BorderSelectorActionRegistration | Array<BorderSelectorActionRegistration>) => void;
|
171
421
|
run: (action: BorderSelectorActionRegistration, options: InsertOptions) => void;
|
@@ -197,6 +447,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
197
447
|
deleteReference: (definition: VelcronSectionInstance) => any;
|
198
448
|
change: (definitionRegistration: VelcronSectionInstance, newDefinitionId: guid, toggle?: boolean) => VelcronSectionInstance;
|
199
449
|
update: (definition: VelcronSectionInstance, velcronDefinition: VelcronAppDefinition) => void;
|
450
|
+
copy: (insertOptions: InsertOptions, setAsActive?: boolean) => VelcronSectionInstance;
|
200
451
|
};
|
201
452
|
preview: () => {
|
202
453
|
containerBlueprint: (definitionRegistration: VelcronSectionInstance, containerVariant: ContainerBlueprint | ContainerVariant, cancelPreview: boolean) => void;
|