@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
package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyEditorCreator.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { EditorLocation, VelcronEditor } from "../../core";
|
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
previewColorSchemaType: {
|
5
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
5
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
6
6
|
};
|
7
7
|
location: {
|
8
8
|
type: import("vue").PropType<EditorLocation>;
|
@@ -89,7 +89,7 @@ declare const _default: {
|
|
89
89
|
"value:leave": (value: any) => true;
|
90
90
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
91
91
|
previewColorSchemaType: {
|
92
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
92
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
93
93
|
};
|
94
94
|
location: {
|
95
95
|
type: import("vue").PropType<EditorLocation>;
|
@@ -179,7 +179,7 @@ declare const _default: {
|
|
179
179
|
Defaults: {};
|
180
180
|
}, Readonly<import("vue").ExtractPropTypes<{
|
181
181
|
previewColorSchemaType: {
|
182
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
182
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
183
183
|
};
|
184
184
|
location: {
|
185
185
|
type: import("vue").PropType<EditorLocation>;
|
@@ -266,7 +266,7 @@ declare const _default: {
|
|
266
266
|
__isSuspense?: never;
|
267
267
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
268
268
|
previewColorSchemaType: {
|
269
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
269
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
270
270
|
};
|
271
271
|
location: {
|
272
272
|
type: import("vue").PropType<EditorLocation>;
|
@@ -420,7 +420,7 @@ declare const _default: {
|
|
420
420
|
"onUpdate:modelValue"?: (value: any) => any;
|
421
421
|
modelValue?: any;
|
422
422
|
location?: EditorLocation;
|
423
|
-
previewColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
423
|
+
previewColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
424
424
|
}>, "onUpdate:modelValue" | "onValue:enter" | "onValue:leave"> & {
|
425
425
|
"onUpdate:modelValue"?: (value: any) => any;
|
426
426
|
"onValue:enter"?: (value: any) => any;
|
@@ -169,10 +169,19 @@ export declare class VersionedLayoutDefinitionEditorItem implements IEditorItem
|
|
169
169
|
questionCircle: import("@omnia/fx-models").FontAwesomeIcon;
|
170
170
|
upload: import("@omnia/fx-models").FontAwesomeIcon;
|
171
171
|
user: import("@omnia/fx-models").FontAwesomeIcon;
|
172
|
+
userAlt: import("@omnia/fx-models").FontAwesomeIcon;
|
173
|
+
userCircle: import("@omnia/fx-models").FontAwesomeIcon;
|
172
174
|
global: import("@omnia/fx-models").FontAwesomeIcon;
|
173
175
|
arrowLeft: import("@omnia/fx-models").FontAwesomeIcon;
|
174
176
|
arrowRight: import("@omnia/fx-models").FontAwesomeIcon;
|
175
177
|
rule: import("@omnia/fx-models").FontAwesomeIcon;
|
178
|
+
idCard: import("@omnia/fx-models").FontAwesomeIcon;
|
179
|
+
sync: import("@omnia/fx-models").FontAwesomeIcon;
|
180
|
+
list: import("@omnia/fx-models").FontAwesomeIcon;
|
181
|
+
shield: import("@omnia/fx-models").FontAwesomeIcon;
|
182
|
+
authentication: import("@omnia/fx-models").FontAwesomeIcon;
|
183
|
+
addUser: import("@omnia/fx-models").FontAwesomeIcon;
|
184
|
+
spin: import("@omnia/fx-models").FontAwesomeIcon;
|
176
185
|
};
|
177
186
|
system: {
|
178
187
|
settings: {
|
@@ -67,6 +67,7 @@ import wc168b37eb8cbc4e46944cbf9a6a5e9063 from './ux/magiclink/MagicLinkSuccess'
|
|
67
67
|
import wcd836de74ad894f4999e21046b1ba2cab from './ux/magiclink/MagicLinkFailure';
|
68
68
|
import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
|
69
69
|
import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
|
70
|
+
import wccbd18219fce4454d92afd1867f0ef43b from './ux/markdown/MarkdownToolbar';
|
70
71
|
import wce9bb3179713943d787e139cedf749838 from './ux/mediapickerimage/MediaPickerImage';
|
71
72
|
import wc4b2648ed8b124e62a09b21b099b43399 from './ux/mediapickervideo/MediaPickerVideo';
|
72
73
|
import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
|
@@ -136,7 +137,6 @@ import wceb90230ea21a47af8ba7c2a3a18b8c6b from '../../fx-sp/internal-do-not-impo
|
|
136
137
|
import wc22cd73487d484024b495097211e8a2c1 from '../../fx-sp/internal-do-not-import-from-here/ux/termsetpicker/TermSetPicker';
|
137
138
|
import wcbc947f375ee34d2a98e2d431f2e45b62 from './ux/admin/chrome/AdminChromeWrapper';
|
138
139
|
import wc253e469ef68e4cb5b526343736c2ff11 from './ux/admin/chrome/AdminChrome';
|
139
|
-
import wc28b79dc39fc04a07ae50fa8d77e4a84b from './ux/admin/dalle/components/DallESecret';
|
140
140
|
import wc759fc5cd65954caaaaf142223a054ea5 from './ux/admin/queryableproperties/QueryablePropertiesJourney';
|
141
141
|
import wcf74692483c39443d969714abc70bb73c from './ux/admin/recaptcha/ReCaptcha';
|
142
142
|
import wc1d60e6da39df4458b6213b4d64bf2843 from './ux/admin/secrets/TenantSecretsJourney';
|
@@ -147,13 +147,13 @@ import wc08e71efb7ee2488db6822d7cfb9c7e8b from './ux/admin/security/AdminJourney
|
|
147
147
|
import wc5618d436945b4fdfb43293dac1a541a6 from './ux/admin/settings/TenantAdminSettingsJourney';
|
148
148
|
import wc8d451f6cbcf442c3a4a07d3ad5de09a3 from './ux/admin/system/SystemJourney';
|
149
149
|
import wc29e4919fca93492d9b81ddca5a5dc28a from './ux/admin/systemlayout/SystemLayoutJourney';
|
150
|
-
import wc8f0de086dd4048209dcf73e01556c5ae from './ux/admin/textcompletion/components/TextCompletion';
|
151
150
|
import wc1d19aeb722e44b9e9d2617035854dd2a from './ux/admin/usermanagement/UserManagementJourney';
|
152
151
|
import wc9539268b741944dd970796a5ff9d0b0d from './ux/admin/usermanagement/BusinessProfileUserManagementJourney';
|
153
152
|
import wcebd9788ab21748688f4e594ecf568806 from './ux/admin/usermanagement/usertypes/UserTypeJourney';
|
154
153
|
import wc242dc5602ede41f0b6d4151884a2ec63 from './ux/admin/usermanagement/synchronization/SyncProviderListingBlade';
|
155
154
|
import wc0ab38b6f985240ec83c437db8a27d7c6 from './ux/admin/usermanagement/synchronization/SyncProviderSettingsBlade';
|
156
155
|
import wc6a15d7edea3d4b548b71d8a7f3e50295 from './ux/admin/usermanagement/synchronization/SyncProviderLogsBlade';
|
156
|
+
import wce77bbdc8d37d4449b3515d9f408e7ec8 from './ux/admin/usermanagement/synchronization/OmniaSearchUserLogsBlade';
|
157
157
|
import wcf5842aadad834b4bb7b8ef9d6eb8b8e1 from './ux/admin/usermanagement/users/UserJourney';
|
158
158
|
import wc6f1fc2596ddb411abf1741ed422947e3 from './ux/admin/usermanagement/users/active/Journey';
|
159
159
|
import wc6f3f70caafc54724b3f8405986a21717 from './ux/admin/usermanagement/users/pending_approval/Journey';
|
@@ -163,9 +163,7 @@ import wc0a208072d45f4f498d59ab7b9da9a10d from './ux/admin/usermanagement/groups
|
|
163
163
|
import wcf333ebaad0094169a2ff868e8b751bf9 from './ux/admin/usermanagement/groups/ActiveGroupListing';
|
164
164
|
import wc3620baa9550145fa955e79d176a72a51 from './ux/admin/usermanagement/groups/DeletedGroupListing';
|
165
165
|
import wc836c198b2a2c418f89a0cf47ed44092d from './ux/admin/usermanagement/groups/GroupDetailBlade';
|
166
|
-
import wc38678117b6684024acfb3085c38d3040 from './ux/admin/usermanagement/groups/GroupMembershipListing';
|
167
166
|
import wc9c3a9218af534e48b95ba122eb43db64 from './ux/admin/usermanagement/dynamicgroups/DynamicGroupListingBlade';
|
168
|
-
import wcf43ef789418d4f56bd2788420f3d9823 from './ux/admin/usermanagement/dynamicgroups/DynamicGroupDetailBlade';
|
169
167
|
import wc77fa3438c9204b32bddc1b8361e530c2 from './ux/admin/usermanagement/userproperties/UserPropertyListingBlade';
|
170
168
|
import wc3967363b80cd4b12900f7a9c7975bf6a from './ux/admin/usermanagement/userproperties/UserPropertyDetailBlade';
|
171
169
|
import wc95a66c4940c7442cb815359c5d299365 from './ux/admin/usermanagement/usertypes/tabs/AuthenticationTab';
|
@@ -324,11 +322,14 @@ import wc83dee8a1eea84537ad9544e8b9fc4cb1 from '../../fx-sp/internal-do-not-impo
|
|
324
322
|
import wca9cc1e1ff5894f4db7005bc49c6c47c5 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetConfiguration';
|
325
323
|
import wc2b69d826807c470e9db10a19bba2d1e0 from './ux/admin/businessprofile/manageprofiles/BusinessProfilesJourney';
|
326
324
|
import wc4b86a4364255448ca502e1daeb94d142 from './ux/admin/businessprofile/settings/BusinessProfileSettingsJourney';
|
327
|
-
import wc6ef676e6d54a43a2b6e9707347934f94 from './ux/admin/mediaflow/components/MediaflowProviderSecrets';
|
328
325
|
import wc01dbddb70b1a48dcaf16cd4f534cd2de from './ux/admin/permissions/businessprofile/BusinessProfilePermissionJourney';
|
329
326
|
import wcaf0c761e8ba54dee858ca7593adcce76 from './ux/admin/permissions/tenant/TenantAdministratorPermissionJourney';
|
330
327
|
import wcecdcbe77649d423b9f45a2b3a4369a83 from './ux/admin/usermanagement/loginscreen/AuthenticationScreenLayoutBlade';
|
331
328
|
import wc479f9b8eedeb4c4195a31ac3e2b5299e from './ux/admin/usermanagement/loginscreen/chrome/Chrome';
|
329
|
+
import wc0c165626e6834b5284303c38248bc2ec from './ux/app/apps/admin/PublishingAppsJourney';
|
330
|
+
import wc97fc43f2fa6e429483740135f5884c00 from './ux/app/apps/admin/TeamworkAppsJourney';
|
331
|
+
import wc633b2666fb3c48078175013704c7f7ac from './ux/app/apps/admin/CommunitiesAppsJourney';
|
332
|
+
import wca457ba6d0da84795925235989b9c0c9a from './ux/app/apps/admin/AppManagementCategoryJourney';
|
332
333
|
import wc1f34388f1f4140d3a38e6b0cc8897fc5 from './ux/aurora/components/backgroundstyle/BackgroundStyleEditor';
|
333
334
|
import wc811d753f7c54407093158c49519020f5 from './ux/aurora/components/backgroundstyle/BackgroundStyleViewer';
|
334
335
|
import wc21b90a7556c8450ead8de25357de90d3 from './ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker';
|
@@ -373,8 +374,10 @@ import wc4fc2b52f62484d5caced1c31f7ead58b from './ux/enterpriseproperties/displa
|
|
373
374
|
import wc8bb3a534205140f58cea8130e5b10715 from './ux/enterpriseproperties/display/datetimefield/DatetimeFieldDisplay';
|
374
375
|
import wc08f6ee02c5d94b648f630ec352fdd94c from './ux/enterpriseproperties/display/personfield/PersonFieldDisplay';
|
375
376
|
import wcbb27e780de41442fa9cab8cef6c71100 from './ux/enterpriseproperties/edit/datafield/DataFieldEdit';
|
377
|
+
import wcf689d794d21e48389aa2504cc5798d65 from './ux/enterpriseproperties/edit/datetimefield/DateTimeFieldEdit';
|
376
378
|
import wc4a5ec32ee02846e7b89b47a710a0268a from './ux/enterpriseproperties/edit/personfield/PersonFieldEdit';
|
377
379
|
import wc65c3c7b9916e4243b56436166f2c94ae from './ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit';
|
380
|
+
import wce5575bd6b2014c3a8a67899459211110 from './ux/enterpriseproperties/edit/textfield/TextFieldEdit';
|
378
381
|
import wc4ecc566131194348b7ec8495a06d4fd6 from './ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings';
|
379
382
|
import wceed905b1712c498ebd5bb24f12ed10d7 from './ux/filterengine/components/settings/person/PersonPropertySettings';
|
380
383
|
import wcad26e9b3bf774d949d153b9f9d1d4b02 from './ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput';
|
@@ -729,6 +732,9 @@ declare global {
|
|
729
732
|
"omfx-markdown-renderer": typeof wcc8b990d01ddc45ab930b4409fc406435 extends {
|
730
733
|
propsDefinition: infer TProp;
|
731
734
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc8b990d01ddc45ab930b4409fc406435 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc8b990d01ddc45ab930b4409fc406435>, "propsDefinition">> : never;
|
735
|
+
"omfx-markdown-editor-toolbar": typeof wccbd18219fce4454d92afd1867f0ef43b extends {
|
736
|
+
propsDefinition: infer TProp;
|
737
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wccbd18219fce4454d92afd1867f0ef43b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wccbd18219fce4454d92afd1867f0ef43b>, "propsDefinition">> : never;
|
732
738
|
"omfx-media-picker-image": typeof wce9bb3179713943d787e139cedf749838 extends {
|
733
739
|
propsDefinition: infer TProp;
|
734
740
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce9bb3179713943d787e139cedf749838 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce9bb3179713943d787e139cedf749838>, "propsDefinition">> : never;
|
@@ -936,13 +942,10 @@ declare global {
|
|
936
942
|
"omnia-admin-renderer": typeof wc253e469ef68e4cb5b526343736c2ff11 extends {
|
937
943
|
propsDefinition: infer TProp;
|
938
944
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc253e469ef68e4cb5b526343736c2ff11 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc253e469ef68e4cb5b526343736c2ff11>, "propsDefinition">> : never;
|
939
|
-
"omnia-tad-openai-dalle-secret": typeof wc28b79dc39fc04a07ae50fa8d77e4a84b extends {
|
940
|
-
propsDefinition: infer TProp;
|
941
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc28b79dc39fc04a07ae50fa8d77e4a84b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc28b79dc39fc04a07ae50fa8d77e4a84b>, "propsDefinition">> : never;
|
942
945
|
"omfx-queryable-enterpriseproperties": typeof wc759fc5cd65954caaaaf142223a054ea5 extends {
|
943
946
|
propsDefinition: infer TProp;
|
944
947
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc759fc5cd65954caaaaf142223a054ea5 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc759fc5cd65954caaaaf142223a054ea5>, "propsDefinition">> : never;
|
945
|
-
"
|
948
|
+
"oa-recaptcha-secret": typeof wcf74692483c39443d969714abc70bb73c extends {
|
946
949
|
propsDefinition: infer TProp;
|
947
950
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf74692483c39443d969714abc70bb73c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf74692483c39443d969714abc70bb73c>, "propsDefinition">> : never;
|
948
951
|
"oa-tenant-secrets-journey": typeof wc1d60e6da39df4458b6213b4d64bf2843 extends {
|
@@ -969,9 +972,6 @@ declare global {
|
|
969
972
|
"omnia-tad-systemlayout": typeof wc29e4919fca93492d9b81ddca5a5dc28a extends {
|
970
973
|
propsDefinition: infer TProp;
|
971
974
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc29e4919fca93492d9b81ddca5a5dc28a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc29e4919fca93492d9b81ddca5a5dc28a>, "propsDefinition">> : never;
|
972
|
-
"omnia-tad-text-completion-form": typeof wc8f0de086dd4048209dcf73e01556c5ae extends {
|
973
|
-
propsDefinition: infer TProp;
|
974
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc8f0de086dd4048209dcf73e01556c5ae extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc8f0de086dd4048209dcf73e01556c5ae>, "propsDefinition">> : never;
|
975
975
|
"oa-tenant-user-management-journey": typeof wc1d19aeb722e44b9e9d2617035854dd2a extends {
|
976
976
|
propsDefinition: infer TProp;
|
977
977
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1d19aeb722e44b9e9d2617035854dd2a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1d19aeb722e44b9e9d2617035854dd2a>, "propsDefinition">> : never;
|
@@ -990,6 +990,9 @@ declare global {
|
|
990
990
|
"oa-user-management-sync-provider-logs": typeof wc6a15d7edea3d4b548b71d8a7f3e50295 extends {
|
991
991
|
propsDefinition: infer TProp;
|
992
992
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6a15d7edea3d4b548b71d8a7f3e50295 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6a15d7edea3d4b548b71d8a7f3e50295>, "propsDefinition">> : never;
|
993
|
+
"oa-user-management-omnia-search-user-logs": typeof wce77bbdc8d37d4449b3515d9f408e7ec8 extends {
|
994
|
+
propsDefinition: infer TProp;
|
995
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce77bbdc8d37d4449b3515d9f408e7ec8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce77bbdc8d37d4449b3515d9f408e7ec8>, "propsDefinition">> : never;
|
993
996
|
"oa-user-management-user-journey": typeof wcf5842aadad834b4bb7b8ef9d6eb8b8e1 extends {
|
994
997
|
propsDefinition: infer TProp;
|
995
998
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf5842aadad834b4bb7b8ef9d6eb8b8e1 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf5842aadad834b4bb7b8ef9d6eb8b8e1>, "propsDefinition">> : never;
|
@@ -1017,15 +1020,9 @@ declare global {
|
|
1017
1020
|
"oa-user-management-group-detail": typeof wc836c198b2a2c418f89a0cf47ed44092d extends {
|
1018
1021
|
propsDefinition: infer TProp;
|
1019
1022
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc836c198b2a2c418f89a0cf47ed44092d extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc836c198b2a2c418f89a0cf47ed44092d>, "propsDefinition">> : never;
|
1020
|
-
"oa-user-management-group-membership-listing": typeof wc38678117b6684024acfb3085c38d3040 extends {
|
1021
|
-
propsDefinition: infer TProp;
|
1022
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc38678117b6684024acfb3085c38d3040 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc38678117b6684024acfb3085c38d3040>, "propsDefinition">> : never;
|
1023
1023
|
"oa-user-management-dynamicgroup-listing": typeof wc9c3a9218af534e48b95ba122eb43db64 extends {
|
1024
1024
|
propsDefinition: infer TProp;
|
1025
1025
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc9c3a9218af534e48b95ba122eb43db64 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc9c3a9218af534e48b95ba122eb43db64>, "propsDefinition">> : never;
|
1026
|
-
"oa-user-management-dynamicgroup-detail": typeof wcf43ef789418d4f56bd2788420f3d9823 extends {
|
1027
|
-
propsDefinition: infer TProp;
|
1028
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf43ef789418d4f56bd2788420f3d9823 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf43ef789418d4f56bd2788420f3d9823>, "propsDefinition">> : never;
|
1029
1026
|
"oa-user-management-userproperty-listing": typeof wc77fa3438c9204b32bddc1b8361e530c2 extends {
|
1030
1027
|
propsDefinition: infer TProp;
|
1031
1028
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc77fa3438c9204b32bddc1b8361e530c2 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc77fa3438c9204b32bddc1b8361e530c2>, "propsDefinition">> : never;
|
@@ -1500,9 +1497,6 @@ declare global {
|
|
1500
1497
|
"oa-businessprofile-settings-journey": typeof wc4b86a4364255448ca502e1daeb94d142 extends {
|
1501
1498
|
propsDefinition: infer TProp;
|
1502
1499
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc4b86a4364255448ca502e1daeb94d142 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc4b86a4364255448ca502e1daeb94d142>, "propsDefinition">> : never;
|
1503
|
-
"omnia-mediaflow-integration-key-secret": typeof wc6ef676e6d54a43a2b6e9707347934f94 extends {
|
1504
|
-
propsDefinition: infer TProp;
|
1505
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6ef676e6d54a43a2b6e9707347934f94 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6ef676e6d54a43a2b6e9707347934f94>, "propsDefinition">> : never;
|
1506
1500
|
"oa-business-profile-permission-journey": typeof wc01dbddb70b1a48dcaf16cd4f534cd2de extends {
|
1507
1501
|
propsDefinition: infer TProp;
|
1508
1502
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc01dbddb70b1a48dcaf16cd4f534cd2de extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc01dbddb70b1a48dcaf16cd4f534cd2de>, "propsDefinition">> : never;
|
@@ -1515,6 +1509,18 @@ declare global {
|
|
1515
1509
|
"oa-authenticationscreen-chrome": typeof wc479f9b8eedeb4c4195a31ac3e2b5299e extends {
|
1516
1510
|
propsDefinition: infer TProp;
|
1517
1511
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc479f9b8eedeb4c4195a31ac3e2b5299e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc479f9b8eedeb4c4195a31ac3e2b5299e>, "propsDefinition">> : never;
|
1512
|
+
"oa-publishing-apps-admin-journey": typeof wc0c165626e6834b5284303c38248bc2ec extends {
|
1513
|
+
propsDefinition: infer TProp;
|
1514
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc0c165626e6834b5284303c38248bc2ec extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc0c165626e6834b5284303c38248bc2ec>, "propsDefinition">> : never;
|
1515
|
+
"oa-teamwork-apps-admin-journey": typeof wc97fc43f2fa6e429483740135f5884c00 extends {
|
1516
|
+
propsDefinition: infer TProp;
|
1517
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc97fc43f2fa6e429483740135f5884c00 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc97fc43f2fa6e429483740135f5884c00>, "propsDefinition">> : never;
|
1518
|
+
"oa-communities-apps-admin-journey": typeof wc633b2666fb3c48078175013704c7f7ac extends {
|
1519
|
+
propsDefinition: infer TProp;
|
1520
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc633b2666fb3c48078175013704c7f7ac extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc633b2666fb3c48078175013704c7f7ac>, "propsDefinition">> : never;
|
1521
|
+
"oa-app-management-category": typeof wca457ba6d0da84795925235989b9c0c9a extends {
|
1522
|
+
propsDefinition: infer TProp;
|
1523
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wca457ba6d0da84795925235989b9c0c9a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wca457ba6d0da84795925235989b9c0c9a>, "propsDefinition">> : never;
|
1518
1524
|
"omfx-background-editor": typeof wc1f34388f1f4140d3a38e6b0cc8897fc5 extends {
|
1519
1525
|
propsDefinition: infer TProp;
|
1520
1526
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1f34388f1f4140d3a38e6b0cc8897fc5 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1f34388f1f4140d3a38e6b0cc8897fc5>, "propsDefinition">> : never;
|
@@ -1647,12 +1653,18 @@ declare global {
|
|
1647
1653
|
"omfx-enterpriseproperties-datafield-edit": typeof wcbb27e780de41442fa9cab8cef6c71100 extends {
|
1648
1654
|
propsDefinition: infer TProp;
|
1649
1655
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcbb27e780de41442fa9cab8cef6c71100 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcbb27e780de41442fa9cab8cef6c71100>, "propsDefinition">> : never;
|
1656
|
+
"omfx-enterpriseproperties-datetimefield-edit": typeof wcf689d794d21e48389aa2504cc5798d65 extends {
|
1657
|
+
propsDefinition: infer TProp;
|
1658
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf689d794d21e48389aa2504cc5798d65 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf689d794d21e48389aa2504cc5798d65>, "propsDefinition">> : never;
|
1650
1659
|
"omfx-enterpriseproperties-personfield-edit": typeof wc4a5ec32ee02846e7b89b47a710a0268a extends {
|
1651
1660
|
propsDefinition: infer TProp;
|
1652
1661
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc4a5ec32ee02846e7b89b47a710a0268a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc4a5ec32ee02846e7b89b47a710a0268a>, "propsDefinition">> : never;
|
1653
1662
|
"omfx-enterpriseproperties-tags-edit": typeof wc65c3c7b9916e4243b56436166f2c94ae extends {
|
1654
1663
|
propsDefinition: infer TProp;
|
1655
1664
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc65c3c7b9916e4243b56436166f2c94ae extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc65c3c7b9916e4243b56436166f2c94ae>, "propsDefinition">> : never;
|
1665
|
+
"omfx-enterpriseproperties-textfield-edit": typeof wce5575bd6b2014c3a8a67899459211110 extends {
|
1666
|
+
propsDefinition: infer TProp;
|
1667
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce5575bd6b2014c3a8a67899459211110 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce5575bd6b2014c3a8a67899459211110>, "propsDefinition">> : never;
|
1656
1668
|
"omfx-enterpriseproperties-extended-property-settings": typeof wc4ecc566131194348b7ec8495a06d4fd6 extends {
|
1657
1669
|
propsDefinition: infer TProp;
|
1658
1670
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc4ecc566131194348b7ec8495a06d4fd6 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc4ecc566131194348b7ec8495a06d4fd6>, "propsDefinition">> : never;
|
@@ -2084,27 +2096,16 @@ declare global {
|
|
2084
2096
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2085
2097
|
};
|
2086
2098
|
} : typeof wcbc947f375ee34d2a98e2d431f2e45b62;
|
2087
|
-
"
|
2088
|
-
"
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
new (...args: any[]): {
|
2094
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2095
|
-
};
|
2096
|
-
} : typeof wc28b79dc39fc04a07ae50fa8d77e4a84b;
|
2099
|
+
"security": {
|
2100
|
+
"journey": typeof wc64414dbb034543c89572b254ef41aae7 extends {
|
2101
|
+
propsDefinition: infer TProp;
|
2102
|
+
} ? {
|
2103
|
+
new (...args: any[]): {
|
2104
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2097
2105
|
};
|
2098
|
-
};
|
2099
|
-
|
2100
|
-
|
2101
|
-
propsDefinition: infer TProp;
|
2102
|
-
} ? {
|
2103
|
-
new (...args: any[]): {
|
2104
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2105
|
-
};
|
2106
|
-
} : typeof wcf74692483c39443d969714abc70bb73c;
|
2107
|
-
};
|
2106
|
+
} : typeof wc64414dbb034543c89572b254ef41aae7;
|
2107
|
+
};
|
2108
|
+
"tad": {
|
2108
2109
|
"security": {
|
2109
2110
|
"journey": typeof wc48770aa703464610ace370d3f3e65f14 extends {
|
2110
2111
|
propsDefinition: infer TProp;
|
@@ -2130,17 +2131,6 @@ declare global {
|
|
2130
2131
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2131
2132
|
};
|
2132
2133
|
} : typeof wc29e4919fca93492d9b81ddca5a5dc28a;
|
2133
|
-
"text": {
|
2134
|
-
"completion": {
|
2135
|
-
"form": typeof wc8f0de086dd4048209dcf73e01556c5ae extends {
|
2136
|
-
propsDefinition: infer TProp;
|
2137
|
-
} ? {
|
2138
|
-
new (...args: any[]): {
|
2139
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2140
|
-
};
|
2141
|
-
} : typeof wc8f0de086dd4048209dcf73e01556c5ae;
|
2142
|
-
};
|
2143
|
-
};
|
2144
2134
|
"tenant": {
|
2145
2135
|
"mediapicker": {
|
2146
2136
|
"cropratios": typeof wca49a79f59f1e471d813f12926f411f9c extends {
|
@@ -2188,15 +2178,6 @@ declare global {
|
|
2188
2178
|
};
|
2189
2179
|
} : typeof wcfcf7035a4e22428fbcdd47843d4882ba;
|
2190
2180
|
};
|
2191
|
-
"security": {
|
2192
|
-
"journey": typeof wc64414dbb034543c89572b254ef41aae7 extends {
|
2193
|
-
propsDefinition: infer TProp;
|
2194
|
-
} ? {
|
2195
|
-
new (...args: any[]): {
|
2196
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2197
|
-
};
|
2198
|
-
} : typeof wc64414dbb034543c89572b254ef41aae7;
|
2199
|
-
};
|
2200
2181
|
"pad": {
|
2201
2182
|
"security": {
|
2202
2183
|
"journey": typeof wc08e71efb7ee2488db6822d7cfb9c7e8b extends {
|
@@ -2335,19 +2316,6 @@ declare global {
|
|
2335
2316
|
} : typeof wc3147213782724576b53d13e580af67ae;
|
2336
2317
|
};
|
2337
2318
|
};
|
2338
|
-
"mediaflow": {
|
2339
|
-
"integration": {
|
2340
|
-
"key": {
|
2341
|
-
"secret": typeof wc6ef676e6d54a43a2b6e9707347934f94 extends {
|
2342
|
-
propsDefinition: infer TProp;
|
2343
|
-
} ? {
|
2344
|
-
new (...args: any[]): {
|
2345
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2346
|
-
};
|
2347
|
-
} : typeof wc6ef676e6d54a43a2b6e9707347934f94;
|
2348
|
-
};
|
2349
|
-
};
|
2350
|
-
};
|
2351
2319
|
};
|
2352
2320
|
"dev": {
|
2353
2321
|
"socket": typeof wce6b88bd8d41949c8af6fed268ae64430 extends {
|
@@ -3172,20 +3140,29 @@ declare global {
|
|
3172
3140
|
} : typeof wcd836de74ad894f4999e21046b1ba2cab;
|
3173
3141
|
};
|
3174
3142
|
"markdown": {
|
3175
|
-
"editor":
|
3143
|
+
"editor": {
|
3144
|
+
"toolbar": typeof wccbd18219fce4454d92afd1867f0ef43b extends {
|
3145
|
+
propsDefinition: infer TProp;
|
3146
|
+
} ? {
|
3147
|
+
new (...args: any[]): {
|
3148
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3149
|
+
};
|
3150
|
+
} : typeof wccbd18219fce4454d92afd1867f0ef43b;
|
3151
|
+
};
|
3152
|
+
"renderer": typeof wcc8b990d01ddc45ab930b4409fc406435 extends {
|
3176
3153
|
propsDefinition: infer TProp;
|
3177
3154
|
} ? {
|
3178
3155
|
new (...args: any[]): {
|
3179
3156
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3180
3157
|
};
|
3181
|
-
} : typeof
|
3182
|
-
"
|
3158
|
+
} : typeof wcc8b990d01ddc45ab930b4409fc406435;
|
3159
|
+
"editor$": typeof wc744b3f31e00c4815b63ecaf638ad7a7a extends {
|
3183
3160
|
propsDefinition: infer TProp;
|
3184
3161
|
} ? {
|
3185
3162
|
new (...args: any[]): {
|
3186
3163
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3187
3164
|
};
|
3188
|
-
} : typeof
|
3165
|
+
} : typeof wc744b3f31e00c4815b63ecaf638ad7a7a;
|
3189
3166
|
};
|
3190
3167
|
"media": {
|
3191
3168
|
"picker": {
|
@@ -5383,6 +5360,13 @@ declare global {
|
|
5383
5360
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5384
5361
|
};
|
5385
5362
|
} : typeof wc8bb3a534205140f58cea8130e5b10715;
|
5363
|
+
"edit": typeof wcf689d794d21e48389aa2504cc5798d65 extends {
|
5364
|
+
propsDefinition: infer TProp;
|
5365
|
+
} ? {
|
5366
|
+
new (...args: any[]): {
|
5367
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5368
|
+
};
|
5369
|
+
} : typeof wcf689d794d21e48389aa2504cc5798d65;
|
5386
5370
|
};
|
5387
5371
|
"personfield": {
|
5388
5372
|
"display": typeof wc08f6ee02c5d94b648f630ec352fdd94c extends {
|
@@ -5409,6 +5393,15 @@ declare global {
|
|
5409
5393
|
};
|
5410
5394
|
} : typeof wc65c3c7b9916e4243b56436166f2c94ae;
|
5411
5395
|
};
|
5396
|
+
"textfield": {
|
5397
|
+
"edit": typeof wce5575bd6b2014c3a8a67899459211110 extends {
|
5398
|
+
propsDefinition: infer TProp;
|
5399
|
+
} ? {
|
5400
|
+
new (...args: any[]): {
|
5401
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5402
|
+
};
|
5403
|
+
} : typeof wce5575bd6b2014c3a8a67899459211110;
|
5404
|
+
};
|
5412
5405
|
"extended": {
|
5413
5406
|
"property": {
|
5414
5407
|
"settings": typeof wc4ecc566131194348b7ec8495a06d4fd6 extends {
|
@@ -5479,6 +5472,15 @@ declare global {
|
|
5479
5472
|
};
|
5480
5473
|
};
|
5481
5474
|
let oa: {
|
5475
|
+
"recaptcha": {
|
5476
|
+
"secret": typeof wcf74692483c39443d969714abc70bb73c extends {
|
5477
|
+
propsDefinition: infer TProp;
|
5478
|
+
} ? {
|
5479
|
+
new (...args: any[]): {
|
5480
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5481
|
+
};
|
5482
|
+
} : typeof wcf74692483c39443d969714abc70bb73c;
|
5483
|
+
};
|
5482
5484
|
"tenant": {
|
5483
5485
|
"secrets": {
|
5484
5486
|
"journey": typeof wc1d60e6da39df4458b6213b4d64bf2843 extends {
|
@@ -5618,6 +5620,19 @@ declare global {
|
|
5618
5620
|
} : typeof wc6a15d7edea3d4b548b71d8a7f3e50295;
|
5619
5621
|
};
|
5620
5622
|
};
|
5623
|
+
"omnia": {
|
5624
|
+
"search": {
|
5625
|
+
"user": {
|
5626
|
+
"logs": typeof wce77bbdc8d37d4449b3515d9f408e7ec8 extends {
|
5627
|
+
propsDefinition: infer TProp;
|
5628
|
+
} ? {
|
5629
|
+
new (...args: any[]): {
|
5630
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5631
|
+
};
|
5632
|
+
} : typeof wce77bbdc8d37d4449b3515d9f408e7ec8;
|
5633
|
+
};
|
5634
|
+
};
|
5635
|
+
};
|
5621
5636
|
"user": {
|
5622
5637
|
"journey": typeof wcf5842aadad834b4bb7b8ef9d6eb8b8e1 extends {
|
5623
5638
|
propsDefinition: infer TProp;
|
@@ -5693,15 +5708,6 @@ declare global {
|
|
5693
5708
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5694
5709
|
};
|
5695
5710
|
} : typeof wc836c198b2a2c418f89a0cf47ed44092d;
|
5696
|
-
"membership": {
|
5697
|
-
"listing": typeof wc38678117b6684024acfb3085c38d3040 extends {
|
5698
|
-
propsDefinition: infer TProp;
|
5699
|
-
} ? {
|
5700
|
-
new (...args: any[]): {
|
5701
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5702
|
-
};
|
5703
|
-
} : typeof wc38678117b6684024acfb3085c38d3040;
|
5704
|
-
};
|
5705
5711
|
};
|
5706
5712
|
"active": {
|
5707
5713
|
"group": {
|
@@ -5733,13 +5739,6 @@ declare global {
|
|
5733
5739
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5734
5740
|
};
|
5735
5741
|
} : typeof wc9c3a9218af534e48b95ba122eb43db64;
|
5736
|
-
"detail": typeof wcf43ef789418d4f56bd2788420f3d9823 extends {
|
5737
|
-
propsDefinition: infer TProp;
|
5738
|
-
} ? {
|
5739
|
-
new (...args: any[]): {
|
5740
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5741
|
-
};
|
5742
|
-
} : typeof wcf43ef789418d4f56bd2788420f3d9823;
|
5743
5742
|
};
|
5744
5743
|
"userproperty": {
|
5745
5744
|
"listing": typeof wc77fa3438c9204b32bddc1b8361e530c2 extends {
|
@@ -5810,6 +5809,56 @@ declare global {
|
|
5810
5809
|
};
|
5811
5810
|
} : typeof wc479f9b8eedeb4c4195a31ac3e2b5299e;
|
5812
5811
|
};
|
5812
|
+
"publishing": {
|
5813
|
+
"apps": {
|
5814
|
+
"admin": {
|
5815
|
+
"journey": typeof wc0c165626e6834b5284303c38248bc2ec extends {
|
5816
|
+
propsDefinition: infer TProp;
|
5817
|
+
} ? {
|
5818
|
+
new (...args: any[]): {
|
5819
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5820
|
+
};
|
5821
|
+
} : typeof wc0c165626e6834b5284303c38248bc2ec;
|
5822
|
+
};
|
5823
|
+
};
|
5824
|
+
};
|
5825
|
+
"teamwork": {
|
5826
|
+
"apps": {
|
5827
|
+
"admin": {
|
5828
|
+
"journey": typeof wc97fc43f2fa6e429483740135f5884c00 extends {
|
5829
|
+
propsDefinition: infer TProp;
|
5830
|
+
} ? {
|
5831
|
+
new (...args: any[]): {
|
5832
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5833
|
+
};
|
5834
|
+
} : typeof wc97fc43f2fa6e429483740135f5884c00;
|
5835
|
+
};
|
5836
|
+
};
|
5837
|
+
};
|
5838
|
+
"communities": {
|
5839
|
+
"apps": {
|
5840
|
+
"admin": {
|
5841
|
+
"journey": typeof wc633b2666fb3c48078175013704c7f7ac extends {
|
5842
|
+
propsDefinition: infer TProp;
|
5843
|
+
} ? {
|
5844
|
+
new (...args: any[]): {
|
5845
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5846
|
+
};
|
5847
|
+
} : typeof wc633b2666fb3c48078175013704c7f7ac;
|
5848
|
+
};
|
5849
|
+
};
|
5850
|
+
};
|
5851
|
+
"app": {
|
5852
|
+
"management": {
|
5853
|
+
"category": typeof wca457ba6d0da84795925235989b9c0c9a extends {
|
5854
|
+
propsDefinition: infer TProp;
|
5855
|
+
} ? {
|
5856
|
+
new (...args: any[]): {
|
5857
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5858
|
+
};
|
5859
|
+
} : typeof wca457ba6d0da84795925235989b9c0c9a;
|
5860
|
+
};
|
5861
|
+
};
|
5813
5862
|
"auditlogs": {
|
5814
5863
|
"journey": typeof wc05be354b04b344449edd7269f762a43c extends {
|
5815
5864
|
propsDefinition: infer TProp;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.224-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.224-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|