@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,80 @@
|
|
1
|
+
import { DynamicState, ThemeDefinitionV2, VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
+
import { EditorRenderingHooks } from "./models";
|
3
|
+
export interface ContentEditorVelcronState extends DynamicState {
|
4
|
+
content: {
|
5
|
+
[id: string]: unknown;
|
6
|
+
};
|
7
|
+
}
|
8
|
+
declare const _default: {
|
9
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
10
|
+
sections: {
|
11
|
+
type: import("vue").PropType<VelcronSectionInstance[]>;
|
12
|
+
};
|
13
|
+
editMode: {
|
14
|
+
type: import("vue").PropType<boolean>;
|
15
|
+
};
|
16
|
+
themeDefinition: {
|
17
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
18
|
+
};
|
19
|
+
hooks: {
|
20
|
+
type: import("vue").PropType<EditorRenderingHooks>;
|
21
|
+
};
|
22
|
+
}>>, () => JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
23
|
+
sections: {
|
24
|
+
type: import("vue").PropType<VelcronSectionInstance[]>;
|
25
|
+
};
|
26
|
+
editMode: {
|
27
|
+
type: import("vue").PropType<boolean>;
|
28
|
+
};
|
29
|
+
themeDefinition: {
|
30
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
31
|
+
};
|
32
|
+
hooks: {
|
33
|
+
type: import("vue").PropType<EditorRenderingHooks>;
|
34
|
+
};
|
35
|
+
}>>, {}, true, {}, {}, {
|
36
|
+
P: {};
|
37
|
+
B: {};
|
38
|
+
D: {};
|
39
|
+
C: {};
|
40
|
+
M: {};
|
41
|
+
Defaults: {};
|
42
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
43
|
+
sections: {
|
44
|
+
type: import("vue").PropType<VelcronSectionInstance[]>;
|
45
|
+
};
|
46
|
+
editMode: {
|
47
|
+
type: import("vue").PropType<boolean>;
|
48
|
+
};
|
49
|
+
themeDefinition: {
|
50
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
51
|
+
};
|
52
|
+
hooks: {
|
53
|
+
type: import("vue").PropType<EditorRenderingHooks>;
|
54
|
+
};
|
55
|
+
}>>, () => JSX.Element[], {}, {}, {}, {}>;
|
56
|
+
__isFragment?: never;
|
57
|
+
__isTeleport?: never;
|
58
|
+
__isSuspense?: never;
|
59
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
60
|
+
sections: {
|
61
|
+
type: import("vue").PropType<VelcronSectionInstance[]>;
|
62
|
+
};
|
63
|
+
editMode: {
|
64
|
+
type: import("vue").PropType<boolean>;
|
65
|
+
};
|
66
|
+
themeDefinition: {
|
67
|
+
type: import("vue").PropType<ThemeDefinitionV2>;
|
68
|
+
};
|
69
|
+
hooks: {
|
70
|
+
type: import("vue").PropType<EditorRenderingHooks>;
|
71
|
+
};
|
72
|
+
}>>, () => JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
73
|
+
propsDefinition: Omit<Readonly<{} & {
|
74
|
+
themeDefinition?: ThemeDefinitionV2;
|
75
|
+
editMode?: boolean;
|
76
|
+
hooks?: EditorRenderingHooks;
|
77
|
+
sections?: VelcronSectionInstance[];
|
78
|
+
}>, never>;
|
79
|
+
};
|
80
|
+
export default _default;
|
@@ -1,14 +1,10 @@
|
|
1
|
-
import {
|
1
|
+
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
"
|
3
|
+
"v-model"?: VelcronSectionInstance;
|
4
4
|
} & {
|
5
|
-
modelValue:
|
5
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
6
6
|
} & {
|
7
|
-
|
8
|
-
} & {
|
9
|
-
profileId?: guid;
|
10
|
-
} & {
|
11
|
-
bladeId?: guid;
|
7
|
+
modelValue?: VelcronSectionInstance;
|
12
8
|
}>) => {
|
13
9
|
$: import("vue").ComponentInternalInstance;
|
14
10
|
$data: {};
|
@@ -48,20 +44,16 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
48
44
|
$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;
|
49
45
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
50
46
|
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
51
|
-
"
|
52
|
-
} & {
|
53
|
-
modelValue: Secret;
|
54
|
-
} & {
|
55
|
-
getApi: (api: ISecretFormApi) => void;
|
47
|
+
"v-model"?: VelcronSectionInstance;
|
56
48
|
} & {
|
57
|
-
|
49
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
58
50
|
} & {
|
59
|
-
|
51
|
+
modelValue?: VelcronSectionInstance;
|
60
52
|
}> & {
|
61
53
|
"v-slots"?: {
|
62
54
|
default?: import("vue").Slot;
|
63
55
|
} & {};
|
64
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
65
57
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
66
58
|
[key: string]: any;
|
67
59
|
}>;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
"v-model"?: VelcronSectionInstance;
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: VelcronSectionInstance;
|
8
|
+
}>) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
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)[];
|
41
|
+
};
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$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;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
47
|
+
"v-model"?: VelcronSectionInstance;
|
48
|
+
} & {
|
49
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
50
|
+
} & {
|
51
|
+
modelValue?: VelcronSectionInstance;
|
52
|
+
}> & {
|
53
|
+
"v-slots"?: {
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
} & {};
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
60
|
+
export default _default;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export declare const BorderSelectorStyles: {
|
2
|
+
spacingPickerOuter: string;
|
3
|
+
spacingPickerInner: string;
|
4
|
+
spacingSeparator: string;
|
5
|
+
spacingBackground: (selected: Boolean) => string;
|
6
|
+
actionButtonContainer: string;
|
7
|
+
commonStyles: string;
|
8
|
+
topSpacing: string;
|
9
|
+
bottomSpacing: string;
|
10
|
+
topSelector: string;
|
11
|
+
bottomSelector: string;
|
12
|
+
};
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
"v-model"?: VelcronSectionInstance;
|
4
|
+
} & {
|
5
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
6
|
+
} & {
|
7
|
+
modelValue?: VelcronSectionInstance;
|
8
|
+
}>) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
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)[];
|
41
|
+
};
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$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;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
47
|
+
"v-model"?: VelcronSectionInstance;
|
48
|
+
} & {
|
49
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
50
|
+
} & {
|
51
|
+
modelValue?: VelcronSectionInstance;
|
52
|
+
}> & {
|
53
|
+
"v-slots"?: {
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
} & {};
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
60
|
+
export default _default;
|
@@ -1,21 +1,13 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
export declare const mediaflowSecretsForms: {
|
4
|
-
readonly clientid: "clientid";
|
5
|
-
readonly clientsecret: "clientsecret";
|
6
|
-
readonly refreshtoken: "refreshtoken";
|
7
|
-
readonly integrationKey: "integrationKey";
|
8
|
-
};
|
1
|
+
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
+
type ToolbarVariant = "default" | "reference";
|
9
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
10
|
-
|
4
|
+
"v-model"?: VelcronSectionInstance;
|
11
5
|
} & {
|
12
|
-
|
6
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
13
7
|
} & {
|
14
|
-
|
8
|
+
modelValue?: VelcronSectionInstance;
|
15
9
|
} & {
|
16
|
-
|
17
|
-
} & {
|
18
|
-
useValidator?: IValidator;
|
10
|
+
variant?: ToolbarVariant;
|
19
11
|
}>) => {
|
20
12
|
$: import("vue").ComponentInternalInstance;
|
21
13
|
$data: {};
|
@@ -55,20 +47,18 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
55
47
|
$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;
|
56
48
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
57
49
|
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
58
|
-
|
59
|
-
} & {
|
60
|
-
profileId?: guid;
|
50
|
+
"v-model"?: VelcronSectionInstance;
|
61
51
|
} & {
|
62
|
-
|
52
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
63
53
|
} & {
|
64
|
-
|
54
|
+
modelValue?: VelcronSectionInstance;
|
65
55
|
} & {
|
66
|
-
|
56
|
+
variant?: ToolbarVariant;
|
67
57
|
}> & {
|
68
58
|
"v-slots"?: {
|
69
59
|
default?: import("vue").Slot;
|
70
60
|
} & {};
|
71
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
61
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">;
|
72
62
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
73
63
|
[key: string]: any;
|
74
64
|
}>;
|
@@ -0,0 +1,65 @@
|
|
1
|
+
import { VelcronSectionInstance } from "@omnia/fx-models";
|
2
|
+
type ToolbarVariant = "default" | "reference";
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
+
"v-model"?: VelcronSectionInstance;
|
5
|
+
} & {
|
6
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
7
|
+
} & {
|
8
|
+
modelValue?: VelcronSectionInstance;
|
9
|
+
} & {
|
10
|
+
variant?: ToolbarVariant;
|
11
|
+
}>) => {
|
12
|
+
$: import("vue").ComponentInternalInstance;
|
13
|
+
$data: {};
|
14
|
+
$props: {};
|
15
|
+
$attrs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$refs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$slots: Readonly<{
|
22
|
+
[name: string]: import("vue").Slot<any>;
|
23
|
+
}>;
|
24
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
26
|
+
$emit: (event: string, ...args: any[]) => void;
|
27
|
+
$el: any;
|
28
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
29
|
+
beforeCreate?: (() => void) | (() => void)[];
|
30
|
+
created?: (() => void) | (() => void)[];
|
31
|
+
beforeMount?: (() => void) | (() => void)[];
|
32
|
+
mounted?: (() => void) | (() => void)[];
|
33
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
34
|
+
updated?: (() => void) | (() => void)[];
|
35
|
+
activated?: (() => void) | (() => void)[];
|
36
|
+
deactivated?: (() => void) | (() => void)[];
|
37
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
38
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
39
|
+
destroyed?: (() => void) | (() => void)[];
|
40
|
+
unmounted?: (() => void) | (() => void)[];
|
41
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
43
|
+
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)[];
|
44
|
+
};
|
45
|
+
$forceUpdate: () => void;
|
46
|
+
$nextTick: typeof import("vue").nextTick;
|
47
|
+
$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;
|
48
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
49
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
50
|
+
"v-model"?: VelcronSectionInstance;
|
51
|
+
} & {
|
52
|
+
"onUpdate:modelValue"?: (value: VelcronSectionInstance) => void;
|
53
|
+
} & {
|
54
|
+
modelValue?: VelcronSectionInstance;
|
55
|
+
} & {
|
56
|
+
variant?: ToolbarVariant;
|
57
|
+
}> & {
|
58
|
+
"v-slots"?: {
|
59
|
+
default?: import("vue").Slot;
|
60
|
+
} & {};
|
61
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">;
|
62
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
63
|
+
[key: string]: any;
|
64
|
+
}>;
|
65
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./DefinitionRegistrations";
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
import { VelcronDefinition, VelcronRenderContext, VelcronSectionInstance } from "@omnia/fx-models";
|
3
|
+
export interface EditorRenderingHooks {
|
4
|
+
styles?: {
|
5
|
+
activeItem?: (item: VelcronSectionInstance) => string;
|
6
|
+
hover?: (item: VelcronSectionInstance) => string;
|
7
|
+
};
|
8
|
+
renderBorderSelectors?: (item: VelcronSectionInstance) => VNodeChild;
|
9
|
+
renderActionMenu?: (item: VelcronSectionInstance) => VNodeChild;
|
10
|
+
renderDefinitionToolbar?: (item: VelcronSectionInstance) => VNodeChild;
|
11
|
+
renderEmptyEditor?: () => VNodeChild;
|
12
|
+
definition?: {
|
13
|
+
wrapperStyleExtensions?: ((item: VelcronDefinition, renderContext: VelcronRenderContext) => string);
|
14
|
+
renderExtensions?: (item: VelcronDefinition, renderContext: VelcronRenderContext) => VNodeChild;
|
15
|
+
onItemSelected?: (item: VelcronDefinition, renderContext: VelcronRenderContext) => void;
|
16
|
+
};
|
17
|
+
item?: {
|
18
|
+
onItemClicked?: (item: VelcronSectionInstance) => void;
|
19
|
+
onItemDblClicked?: (item: VelcronSectionInstance) => void;
|
20
|
+
onMouseenter?: (item: VelcronSectionInstance) => void;
|
21
|
+
onMouseleave?: (item: VelcronSectionInstance) => void;
|
22
|
+
isActive?: (item: VelcronSectionInstance) => boolean;
|
23
|
+
};
|
24
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./EditorRenderingHooks";
|