@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/identities/components/shared/IdentitySyncRuleBlade.d.ts
CHANGED
@@ -1,89 +1,64 @@
|
|
1
1
|
import { IdentityProviderProperty, UserTypeEvaluation } from "@omnia/fx-models";
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
data: {
|
17
|
-
type: import("vue").PropType<UserTypeEvaluation>;
|
18
|
-
required: true;
|
19
|
-
};
|
20
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
getSyncPropertyDisplayName: {
|
22
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
23
|
-
required: true;
|
24
|
-
};
|
25
|
-
saveChanges: {
|
26
|
-
type: import("vue").PropType<(data: UserTypeEvaluation) => Promise<void>>;
|
27
|
-
required: true;
|
28
|
-
};
|
29
|
-
getSyncPropertiesApi: {
|
30
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
31
|
-
required: true;
|
32
|
-
};
|
33
|
-
data: {
|
34
|
-
type: import("vue").PropType<UserTypeEvaluation>;
|
35
|
-
required: true;
|
36
|
-
};
|
37
|
-
}>>, {}, true, {}, {}, {
|
38
|
-
P: {};
|
39
|
-
B: {};
|
40
|
-
D: {};
|
41
|
-
C: {};
|
42
|
-
M: {};
|
43
|
-
Defaults: {};
|
44
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
45
|
-
getSyncPropertyDisplayName: {
|
46
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
47
|
-
required: true;
|
48
|
-
};
|
49
|
-
saveChanges: {
|
50
|
-
type: import("vue").PropType<(data: UserTypeEvaluation) => Promise<void>>;
|
51
|
-
required: true;
|
52
|
-
};
|
53
|
-
getSyncPropertiesApi: {
|
54
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
55
|
-
required: true;
|
56
|
-
};
|
57
|
-
data: {
|
58
|
-
type: import("vue").PropType<UserTypeEvaluation>;
|
59
|
-
required: true;
|
60
|
-
};
|
61
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
62
|
-
__isFragment?: never;
|
63
|
-
__isTeleport?: never;
|
64
|
-
__isSuspense?: never;
|
65
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
66
|
-
getSyncPropertyDisplayName: {
|
67
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
68
|
-
required: true;
|
2
|
+
declare const _default: (props: import("../../../InternalDefineComponent").ConstructComponentProps<{
|
3
|
+
data: UserTypeEvaluation;
|
4
|
+
} & {
|
5
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
6
|
+
} & {
|
7
|
+
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
8
|
+
} & {
|
9
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
10
|
+
}>) => {
|
11
|
+
$: import("vue").ComponentInternalInstance;
|
12
|
+
$data: {};
|
13
|
+
$props: {};
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
69
16
|
};
|
70
|
-
|
71
|
-
|
72
|
-
required: true;
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
73
19
|
};
|
74
|
-
|
75
|
-
|
76
|
-
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot<any>;
|
22
|
+
}>;
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
28
|
+
beforeCreate?: (() => void) | (() => void)[];
|
29
|
+
created?: (() => void) | (() => void)[];
|
30
|
+
beforeMount?: (() => void) | (() => void)[];
|
31
|
+
mounted?: (() => void) | (() => void)[];
|
32
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
33
|
+
updated?: (() => void) | (() => void)[];
|
34
|
+
activated?: (() => void) | (() => void)[];
|
35
|
+
deactivated?: (() => void) | (() => void)[];
|
36
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
37
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
38
|
+
destroyed?: (() => void) | (() => void)[];
|
39
|
+
unmounted?: (() => void) | (() => void)[];
|
40
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
41
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
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)[];
|
77
43
|
};
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
propsDefinition: Omit<Readonly<{
|
44
|
+
$forceUpdate: () => void;
|
45
|
+
$nextTick: typeof import("vue").nextTick;
|
46
|
+
$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;
|
47
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
48
|
+
propsDefinition: import("../../../InternalDefineComponent").ExtractProps<{
|
84
49
|
data: UserTypeEvaluation;
|
50
|
+
} & {
|
85
51
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
86
|
-
|
52
|
+
} & {
|
87
53
|
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
88
|
-
} & {
|
89
|
-
|
54
|
+
} & {
|
55
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
56
|
+
}> & {
|
57
|
+
"v-slots"?: {
|
58
|
+
default?: import("vue").Slot;
|
59
|
+
} & {};
|
60
|
+
} & {} & Omit<import("../../../VueComponentBase").VueComponentBaseProps, "data" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName" | "saveChanges">;
|
61
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
62
|
+
[key: string]: any;
|
63
|
+
}>;
|
64
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts
CHANGED
@@ -1,92 +1,66 @@
|
|
1
1
|
import { IdentityProviderProperty, UserTypeEvaluation } from "@omnia/fx-models";
|
2
2
|
import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
3
3
|
import { Ref } from "vue";
|
4
|
-
declare const _default: {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
providerId: {
|
19
|
-
type: import("vue").PropType<guid>;
|
20
|
-
required: true;
|
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
|
-
openDetailBlade: {
|
24
|
-
type: import("vue").PropType<(item: UserTypeEvaluation, index: number, userTypeEvaluations: Ref<UserTypeEvaluation[]>, updateSettings: () => any) => any>;
|
25
|
-
required: true;
|
26
|
-
};
|
27
|
-
getSyncPropertyDisplayName: {
|
28
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
29
|
-
required: true;
|
30
|
-
};
|
31
|
-
getSyncPropertiesApi: {
|
32
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
33
|
-
required: true;
|
34
|
-
};
|
35
|
-
providerId: {
|
36
|
-
type: import("vue").PropType<guid>;
|
37
|
-
required: true;
|
38
|
-
};
|
39
|
-
}>>, {}, true, {}, {}, {
|
40
|
-
P: {};
|
41
|
-
B: {};
|
42
|
-
D: {};
|
43
|
-
C: {};
|
44
|
-
M: {};
|
45
|
-
Defaults: {};
|
46
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
openDetailBlade: {
|
48
|
-
type: import("vue").PropType<(item: UserTypeEvaluation, index: number, userTypeEvaluations: Ref<UserTypeEvaluation[]>, updateSettings: () => any) => any>;
|
49
|
-
required: true;
|
50
|
-
};
|
51
|
-
getSyncPropertyDisplayName: {
|
52
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
53
|
-
required: true;
|
54
|
-
};
|
55
|
-
getSyncPropertiesApi: {
|
56
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
57
|
-
required: true;
|
58
|
-
};
|
59
|
-
providerId: {
|
60
|
-
type: import("vue").PropType<guid>;
|
61
|
-
required: true;
|
62
|
-
};
|
63
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
64
|
-
__isFragment?: never;
|
65
|
-
__isTeleport?: never;
|
66
|
-
__isSuspense?: never;
|
67
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
68
|
-
openDetailBlade: {
|
69
|
-
type: import("vue").PropType<(item: UserTypeEvaluation, index: number, userTypeEvaluations: Ref<UserTypeEvaluation[]>, updateSettings: () => any) => any>;
|
70
|
-
required: true;
|
4
|
+
declare const _default: (props: import("../../../InternalDefineComponent").ConstructComponentProps<{
|
5
|
+
providerId: guid;
|
6
|
+
} & {
|
7
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
8
|
+
} & {
|
9
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
10
|
+
} & {
|
11
|
+
openDetailBlade: (item: UserTypeEvaluation, index: number, userTypeEvaluations: Ref<UserTypeEvaluation[]>, updateSettings: () => any) => any;
|
12
|
+
}>) => {
|
13
|
+
$: import("vue").ComponentInternalInstance;
|
14
|
+
$data: {};
|
15
|
+
$props: {};
|
16
|
+
$attrs: {
|
17
|
+
[x: string]: unknown;
|
71
18
|
};
|
72
|
-
|
73
|
-
|
74
|
-
required: true;
|
19
|
+
$refs: {
|
20
|
+
[x: string]: unknown;
|
75
21
|
};
|
76
|
-
|
77
|
-
|
78
|
-
|
22
|
+
$slots: Readonly<{
|
23
|
+
[name: string]: import("vue").Slot<any>;
|
24
|
+
}>;
|
25
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
26
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
27
|
+
$emit: (event: string, ...args: any[]) => void;
|
28
|
+
$el: any;
|
29
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
30
|
+
beforeCreate?: (() => void) | (() => void)[];
|
31
|
+
created?: (() => void) | (() => void)[];
|
32
|
+
beforeMount?: (() => void) | (() => void)[];
|
33
|
+
mounted?: (() => void) | (() => void)[];
|
34
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
35
|
+
updated?: (() => void) | (() => void)[];
|
36
|
+
activated?: (() => void) | (() => void)[];
|
37
|
+
deactivated?: (() => void) | (() => void)[];
|
38
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
39
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
40
|
+
destroyed?: (() => void) | (() => void)[];
|
41
|
+
unmounted?: (() => void) | (() => void)[];
|
42
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
43
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
44
|
+
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)[];
|
79
45
|
};
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
propsDefinition: Omit<Readonly<{
|
46
|
+
$forceUpdate: () => void;
|
47
|
+
$nextTick: typeof import("vue").nextTick;
|
48
|
+
$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
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
50
|
+
propsDefinition: import("../../../InternalDefineComponent").ExtractProps<{
|
86
51
|
providerId: guid;
|
52
|
+
} & {
|
87
53
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
54
|
+
} & {
|
88
55
|
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
56
|
+
} & {
|
89
57
|
openDetailBlade: (item: UserTypeEvaluation, index: number, userTypeEvaluations: Ref<UserTypeEvaluation[]>, updateSettings: () => any) => any;
|
90
|
-
} & {
|
91
|
-
|
58
|
+
}> & {
|
59
|
+
"v-slots"?: {
|
60
|
+
default?: import("vue").Slot;
|
61
|
+
} & {};
|
62
|
+
} & {} & Omit<import("../../../VueComponentBase").VueComponentBaseProps, "providerId" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName" | "openDetailBlade">;
|
63
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
64
|
+
[key: string]: any;
|
65
|
+
}>;
|
92
66
|
export default _default;
|
@@ -78,7 +78,7 @@ declare const _default: {
|
|
78
78
|
required: boolean;
|
79
79
|
};
|
80
80
|
colorSchemaType: {
|
81
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
81
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
82
82
|
required: boolean;
|
83
83
|
};
|
84
84
|
container: {
|
@@ -175,7 +175,7 @@ declare const _default: {
|
|
175
175
|
required: boolean;
|
176
176
|
};
|
177
177
|
colorSchemaType: {
|
178
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
178
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
179
179
|
required: boolean;
|
180
180
|
};
|
181
181
|
container: {
|
@@ -277,7 +277,7 @@ declare const _default: {
|
|
277
277
|
required: boolean;
|
278
278
|
};
|
279
279
|
colorSchemaType: {
|
280
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
280
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
281
281
|
required: boolean;
|
282
282
|
};
|
283
283
|
container: {
|
@@ -376,7 +376,7 @@ declare const _default: {
|
|
376
376
|
required: boolean;
|
377
377
|
};
|
378
378
|
colorSchemaType: {
|
379
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
379
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
380
380
|
required: boolean;
|
381
381
|
};
|
382
382
|
container: {
|
@@ -463,7 +463,7 @@ declare const _default: {
|
|
463
463
|
container?: boolean;
|
464
464
|
class?: String | String[];
|
465
465
|
mandatory?: boolean;
|
466
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
466
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
467
467
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
468
468
|
"v-model"?: MediaScalingSettings;
|
469
469
|
"onUpdate:modelValue"?: (value: MediaScalingSettings) => any;
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
14
14
|
type: import("vue").PropType<IIcon>;
|
15
15
|
};
|
16
16
|
colorSchemaType: {
|
17
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
17
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
18
18
|
required: boolean;
|
19
19
|
};
|
20
20
|
container: {
|
@@ -39,7 +39,7 @@ declare const _default: {
|
|
39
39
|
type: import("vue").PropType<IIcon>;
|
40
40
|
};
|
41
41
|
colorSchemaType: {
|
42
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
42
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
43
43
|
required: boolean;
|
44
44
|
};
|
45
45
|
container: {
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
73
73
|
type: import("vue").PropType<IIcon>;
|
74
74
|
};
|
75
75
|
colorSchemaType: {
|
76
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
76
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
77
77
|
required: boolean;
|
78
78
|
};
|
79
79
|
container: {
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
104
104
|
type: import("vue").PropType<IIcon>;
|
105
105
|
};
|
106
106
|
colorSchemaType: {
|
107
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
107
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
108
108
|
required: boolean;
|
109
109
|
};
|
110
110
|
container: {
|
@@ -124,7 +124,7 @@ declare const _default: {
|
|
124
124
|
title?: string;
|
125
125
|
container?: boolean;
|
126
126
|
description?: string;
|
127
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
127
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
128
128
|
colors?: import("../../..").ColorSchemaStoreType;
|
129
129
|
}>, never>;
|
130
130
|
};
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
14
14
|
type: import("vue").PropType<LayoutItem>;
|
15
15
|
};
|
16
16
|
colorSchemaType: {
|
17
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
17
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
18
18
|
required: boolean;
|
19
19
|
};
|
20
20
|
container: {
|
@@ -39,7 +39,7 @@ declare const _default: {
|
|
39
39
|
type: import("vue").PropType<LayoutItem>;
|
40
40
|
};
|
41
41
|
colorSchemaType: {
|
42
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
42
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
43
43
|
required: boolean;
|
44
44
|
};
|
45
45
|
container: {
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
73
73
|
type: import("vue").PropType<LayoutItem>;
|
74
74
|
};
|
75
75
|
colorSchemaType: {
|
76
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
76
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
77
77
|
required: boolean;
|
78
78
|
};
|
79
79
|
container: {
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
104
104
|
type: import("vue").PropType<LayoutItem>;
|
105
105
|
};
|
106
106
|
colorSchemaType: {
|
107
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
107
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
108
108
|
required: boolean;
|
109
109
|
};
|
110
110
|
container: {
|
@@ -120,7 +120,7 @@ declare const _default: {
|
|
120
120
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
121
121
|
propsDefinition: Omit<Readonly<{} & {
|
122
122
|
container?: boolean;
|
123
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
123
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
124
124
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
125
125
|
item?: LayoutItem;
|
126
126
|
parentContainer?: LayoutItem;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
declare const _default: {
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
3
|
colorSchemaType: {
|
4
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
4
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
5
5
|
required: boolean;
|
6
6
|
};
|
7
7
|
container: {
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
14
14
|
};
|
15
15
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
16
16
|
colorSchemaType: {
|
17
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
17
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
18
18
|
required: boolean;
|
19
19
|
};
|
20
20
|
container: {
|
@@ -36,7 +36,7 @@ declare const _default: {
|
|
36
36
|
Defaults: {};
|
37
37
|
}, Readonly<import("vue").ExtractPropTypes<{
|
38
38
|
colorSchemaType: {
|
39
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
39
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
40
40
|
required: boolean;
|
41
41
|
};
|
42
42
|
container: {
|
@@ -55,7 +55,7 @@ declare const _default: {
|
|
55
55
|
__isSuspense?: never;
|
56
56
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
57
57
|
colorSchemaType: {
|
58
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
58
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
59
59
|
required: boolean;
|
60
60
|
};
|
61
61
|
container: {
|
@@ -71,7 +71,7 @@ declare const _default: {
|
|
71
71
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
72
72
|
propsDefinition: Omit<Readonly<{} & {
|
73
73
|
container?: boolean;
|
74
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
74
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
75
75
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
76
76
|
}>, never>;
|
77
77
|
};
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts
CHANGED
@@ -14,7 +14,7 @@ declare const _default: {
|
|
14
14
|
type: import("vue").PropType<string>;
|
15
15
|
};
|
16
16
|
colorSchemaType: {
|
17
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
17
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
18
18
|
required: boolean;
|
19
19
|
};
|
20
20
|
container: {
|
@@ -39,7 +39,7 @@ declare const _default: {
|
|
39
39
|
type: import("vue").PropType<string>;
|
40
40
|
};
|
41
41
|
colorSchemaType: {
|
42
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
42
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
43
43
|
required: boolean;
|
44
44
|
};
|
45
45
|
container: {
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
73
73
|
type: import("vue").PropType<string>;
|
74
74
|
};
|
75
75
|
colorSchemaType: {
|
76
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
76
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
77
77
|
required: boolean;
|
78
78
|
};
|
79
79
|
container: {
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
104
104
|
type: import("vue").PropType<string>;
|
105
105
|
};
|
106
106
|
colorSchemaType: {
|
107
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
107
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
108
108
|
required: boolean;
|
109
109
|
};
|
110
110
|
container: {
|
@@ -121,7 +121,7 @@ declare const _default: {
|
|
121
121
|
propsDefinition: Omit<Readonly<{} & {
|
122
122
|
title?: string;
|
123
123
|
container?: boolean;
|
124
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
124
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
125
125
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
126
126
|
alternativeContent?: JSX.Element;
|
127
127
|
settingsKey?: any;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts
CHANGED
@@ -11,7 +11,7 @@ declare const _default: {
|
|
11
11
|
type: import("vue").PropType<boolean>;
|
12
12
|
};
|
13
13
|
colorSchemaType: {
|
14
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
14
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
15
15
|
required: boolean;
|
16
16
|
};
|
17
17
|
container: {
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
37
37
|
type: import("vue").PropType<boolean>;
|
38
38
|
};
|
39
39
|
colorSchemaType: {
|
40
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
40
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
41
41
|
required: boolean;
|
42
42
|
};
|
43
43
|
container: {
|
@@ -72,7 +72,7 @@ declare const _default: {
|
|
72
72
|
type: import("vue").PropType<boolean>;
|
73
73
|
};
|
74
74
|
colorSchemaType: {
|
75
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
75
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
76
76
|
required: boolean;
|
77
77
|
};
|
78
78
|
container: {
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
104
104
|
type: import("vue").PropType<boolean>;
|
105
105
|
};
|
106
106
|
colorSchemaType: {
|
107
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
107
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
108
108
|
required: boolean;
|
109
109
|
};
|
110
110
|
container: {
|
@@ -126,7 +126,7 @@ declare const _default: {
|
|
126
126
|
container?: boolean;
|
127
127
|
class?: String | String[];
|
128
128
|
filled?: boolean;
|
129
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
129
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
130
130
|
toned?: boolean;
|
131
131
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
132
132
|
getApi?: (store: ReturnType<typeof useSizeContainerStore>) => void;
|