@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
@@ -15,11 +15,13 @@ export declare function useThemeStyling(): {
|
|
15
15
|
};
|
16
16
|
styles: {
|
17
17
|
colorStylex: typeof colorStyling.getColorStylingx;
|
18
|
+
selectedTableRowStylex: typeof generalStylex.getSelectedTableRowStylex;
|
19
|
+
scrollStylex: typeof generalStylex.getScrollStylex;
|
20
|
+
borderDividerStylex: typeof generalStylex.getBorderDividerStylex;
|
18
21
|
selectedTableRowStyling: typeof import("./styles").getSelectedTableRowStyling;
|
19
22
|
colorStyling: typeof colorStyling.getColorStyling;
|
20
23
|
hoverStyling: typeof import("./styles").getHoverStyling;
|
21
24
|
scrollStyling: typeof import("./styles").getScrollStyling;
|
22
|
-
scrollStylex: typeof generalStylex.getScrollStylex;
|
23
25
|
borderDividerStyling: typeof import("./styles").getBorderDividerStyling;
|
24
26
|
css: {
|
25
27
|
generateAllStylesSchema: typeof generateAllStylesSchema;
|
@@ -5,18 +5,8 @@ export declare namespace colorStyling {
|
|
5
5
|
function backgroundOpacityOnColor(color: string, dark: boolean, opacity?: Number): any;
|
6
6
|
function getColorStylingx(color: string, opacity?: number): {
|
7
7
|
all: Readonly<import("internal/fx/ux/Styles.stylex").StylexType>;
|
8
|
-
background:
|
9
|
-
|
10
|
-
style?: Readonly<{
|
11
|
-
[$$Key$$: string]: string | number;
|
12
|
-
}>;
|
13
|
-
}>;
|
14
|
-
color: Readonly<{
|
15
|
-
className?: string;
|
16
|
-
style?: Readonly<{
|
17
|
-
[$$Key$$: string]: string | number;
|
18
|
-
}>;
|
19
|
-
}>;
|
8
|
+
background: import("internal/fx/ux/Styles.stylex").StylexType;
|
9
|
+
color: import("internal/fx/ux/Styles.stylex").StylexType;
|
20
10
|
};
|
21
11
|
function getColorStyling(color: string, opacity?: number): ColorStyles;
|
22
12
|
}
|
@@ -1,7 +1,10 @@
|
|
1
1
|
import { useColorSchemaStore } from "@omnia/fx/ux";
|
2
2
|
import { OBorderCombination } from "@omnia/fx-models";
|
3
|
+
import { StylexType } from "internal/fx/ux/Styles.stylex";
|
3
4
|
export declare namespace generalStylex {
|
4
|
-
function
|
5
|
+
function getSelectedTableRowStylex(dark: boolean): Readonly<StylexType>;
|
6
|
+
function getScrollStylex(colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexType>;
|
7
|
+
function getBorderDividerStylex(border: OBorderCombination, dark: boolean): Readonly<StylexType>;
|
5
8
|
}
|
6
9
|
export declare const generalStyles: {
|
7
10
|
getSelectedTableRowStyling: typeof getSelectedTableRowStyling;
|
@@ -3,7 +3,7 @@ import { ColorSchemaTypes, ThemeDefinitionV2, ThemeContextType } from "@omnia/fx
|
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
colorSchemaType: {
|
6
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
6
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
7
7
|
};
|
8
8
|
themeType: {
|
9
9
|
type: import("vue").PropType<ThemeContextType>;
|
@@ -29,7 +29,7 @@ declare const _default: {
|
|
29
29
|
}) => any;
|
30
30
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
31
31
|
colorSchemaType: {
|
32
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
32
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
33
33
|
};
|
34
34
|
themeType: {
|
35
35
|
type: import("vue").PropType<ThemeContextType>;
|
@@ -53,7 +53,7 @@ declare const _default: {
|
|
53
53
|
Defaults: {};
|
54
54
|
}, Readonly<import("vue").ExtractPropTypes<{
|
55
55
|
colorSchemaType: {
|
56
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
56
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
57
57
|
};
|
58
58
|
themeType: {
|
59
59
|
type: import("vue").PropType<ThemeContextType>;
|
@@ -76,7 +76,7 @@ declare const _default: {
|
|
76
76
|
__isSuspense?: never;
|
77
77
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
78
78
|
colorSchemaType: {
|
79
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
79
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
80
80
|
};
|
81
81
|
themeType: {
|
82
82
|
type: import("vue").PropType<ThemeContextType>;
|
@@ -103,7 +103,7 @@ declare const _default: {
|
|
103
103
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
104
104
|
propsDefinition: Omit<Readonly<{} & {
|
105
105
|
themeDefinition?: ThemeDefinitionV2;
|
106
|
-
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
106
|
+
colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
107
107
|
themeType?: ThemeContextType;
|
108
108
|
}>, "onTheme:initialized"> & {
|
109
109
|
"onTheme:initialized"?: (theme: {
|
@@ -18,7 +18,7 @@ declare const _default: {
|
|
18
18
|
props: () => {
|
19
19
|
theming: {
|
20
20
|
colorSchemaType: {
|
21
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
21
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
22
22
|
required: boolean;
|
23
23
|
};
|
24
24
|
container: {
|
@@ -55,7 +55,7 @@ declare const _default: {
|
|
55
55
|
props: () => {
|
56
56
|
theming: {
|
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: {
|
@@ -99,7 +99,7 @@ declare const _default: {
|
|
99
99
|
props: () => {
|
100
100
|
theming: {
|
101
101
|
colorSchemaType: {
|
102
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
102
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
103
103
|
required: boolean;
|
104
104
|
};
|
105
105
|
container: {
|
@@ -140,7 +140,7 @@ declare const _default: {
|
|
140
140
|
props: () => {
|
141
141
|
theming: {
|
142
142
|
colorSchemaType: {
|
143
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
143
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
144
144
|
required: boolean;
|
145
145
|
};
|
146
146
|
container: {
|
@@ -167,7 +167,7 @@ declare const _default: {
|
|
167
167
|
props?: {
|
168
168
|
theming: {
|
169
169
|
colorSchemaType: {
|
170
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
170
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
171
171
|
required: boolean;
|
172
172
|
};
|
173
173
|
container: {
|
@@ -1,25 +1,83 @@
|
|
1
|
-
import {
|
2
|
-
import { IDateTimeFieldEdit } from "./IDateTimeFieldEdit";
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
2
|
import { EnterprisePropertyDefinition, EnterprisePropertyDateTimeItemSettings } from "../../../../models";
|
4
|
-
|
5
|
-
|
6
|
-
export declare class DateTimeFieldEdit extends VueComponentBase implements IWebComponentInstance, IDateTimeFieldEdit {
|
7
|
-
valueBind: {
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
+
valueBind?: {
|
8
5
|
[propertyInternalName: string]: string;
|
9
6
|
};
|
10
|
-
|
11
|
-
disabled
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
7
|
+
} & DefineEmit<"valueChanged", (value: string) => void> & {
|
8
|
+
disabled?: boolean;
|
9
|
+
} & {
|
10
|
+
property?: EnterprisePropertyDefinition;
|
11
|
+
} & {
|
12
|
+
settings?: EnterprisePropertyDateTimeItemSettings;
|
13
|
+
} & {
|
14
|
+
includeTime?: boolean;
|
15
|
+
} & {
|
16
|
+
icon?: string;
|
17
|
+
} & {
|
18
|
+
tooltip?: string;
|
19
|
+
}>) => {
|
20
|
+
$: import("vue").ComponentInternalInstance;
|
21
|
+
$data: {};
|
22
|
+
$props: {};
|
23
|
+
$attrs: {
|
24
|
+
[x: string]: unknown;
|
25
|
+
};
|
26
|
+
$refs: {
|
27
|
+
[x: string]: unknown;
|
28
|
+
};
|
29
|
+
$slots: Readonly<{
|
30
|
+
[name: string]: import("vue").Slot<any>;
|
31
|
+
}>;
|
32
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
33
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
34
|
+
$emit: (event: string, ...args: any[]) => void;
|
35
|
+
$el: any;
|
36
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
37
|
+
beforeCreate?: (() => void) | (() => void)[];
|
38
|
+
created?: (() => void) | (() => void)[];
|
39
|
+
beforeMount?: (() => void) | (() => void)[];
|
40
|
+
mounted?: (() => void) | (() => void)[];
|
41
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
42
|
+
updated?: (() => void) | (() => void)[];
|
43
|
+
activated?: (() => void) | (() => void)[];
|
44
|
+
deactivated?: (() => void) | (() => void)[];
|
45
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
46
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
47
|
+
destroyed?: (() => void) | (() => void)[];
|
48
|
+
unmounted?: (() => void) | (() => void)[];
|
49
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
50
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
51
|
+
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)[];
|
52
|
+
};
|
53
|
+
$forceUpdate: () => void;
|
54
|
+
$nextTick: typeof import("vue").nextTick;
|
55
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
56
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
57
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
58
|
+
valueBind?: {
|
59
|
+
[propertyInternalName: string]: string;
|
60
|
+
};
|
61
|
+
} & DefineEmit<"valueChanged", (value: string) => void> & {
|
62
|
+
disabled?: boolean;
|
63
|
+
} & {
|
64
|
+
property?: EnterprisePropertyDefinition;
|
65
|
+
} & {
|
66
|
+
settings?: EnterprisePropertyDateTimeItemSettings;
|
67
|
+
} & {
|
68
|
+
includeTime?: boolean;
|
69
|
+
} & {
|
70
|
+
icon?: string;
|
71
|
+
} & {
|
72
|
+
tooltip?: string;
|
73
|
+
}> & {
|
74
|
+
"v-slots"?: {
|
75
|
+
default?: import("vue").Slot;
|
76
|
+
} & {};
|
77
|
+
} & {
|
78
|
+
onValueChanged?: (value: string) => any;
|
79
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "tooltip" | "disabled" | "valueBind" | "property" | "settings" | "includeTime">;
|
80
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
81
|
+
[key: string]: any;
|
82
|
+
}>;
|
83
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/TextFieldEdit.d.ts
CHANGED
@@ -1,30 +1,71 @@
|
|
1
|
-
import {
|
2
|
-
import { ITextFieldEdit } from "./ITextFieldEdit";
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
2
|
import { EnterprisePropertyDefinition, EnterprisePropertyTextItemSettings } from "../../../../models";
|
4
|
-
|
5
|
-
|
6
|
-
export declare class TextFieldEdit extends VueComponentBase<{
|
7
|
-
required?: boolean;
|
8
|
-
}, {}, {}> implements IWebComponentInstance, ITextFieldEdit {
|
9
|
-
valueBind: {
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
|
+
valueBind?: {
|
10
5
|
[propertyInternalName: string]: string;
|
11
6
|
};
|
12
|
-
|
13
|
-
disabled
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
settings
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
}
|
7
|
+
} & DefineEmit<"valueChanged", (value: string) => void> & {
|
8
|
+
disabled?: boolean;
|
9
|
+
} & {
|
10
|
+
property?: EnterprisePropertyDefinition;
|
11
|
+
} & {
|
12
|
+
settings?: EnterprisePropertyTextItemSettings;
|
13
|
+
}>) => {
|
14
|
+
$: import("vue").ComponentInternalInstance;
|
15
|
+
$data: {};
|
16
|
+
$props: {};
|
17
|
+
$attrs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$refs: {
|
21
|
+
[x: string]: unknown;
|
22
|
+
};
|
23
|
+
$slots: Readonly<{
|
24
|
+
[name: string]: import("vue").Slot<any>;
|
25
|
+
}>;
|
26
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
27
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
28
|
+
$emit: (event: string, ...args: any[]) => void;
|
29
|
+
$el: any;
|
30
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
31
|
+
beforeCreate?: (() => void) | (() => void)[];
|
32
|
+
created?: (() => void) | (() => void)[];
|
33
|
+
beforeMount?: (() => void) | (() => void)[];
|
34
|
+
mounted?: (() => void) | (() => void)[];
|
35
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
36
|
+
updated?: (() => void) | (() => void)[];
|
37
|
+
activated?: (() => void) | (() => void)[];
|
38
|
+
deactivated?: (() => void) | (() => void)[];
|
39
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
40
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
41
|
+
destroyed?: (() => void) | (() => void)[];
|
42
|
+
unmounted?: (() => void) | (() => void)[];
|
43
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
44
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
+
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)[];
|
46
|
+
};
|
47
|
+
$forceUpdate: () => void;
|
48
|
+
$nextTick: typeof import("vue").nextTick;
|
49
|
+
$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;
|
50
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
51
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
52
|
+
valueBind?: {
|
53
|
+
[propertyInternalName: string]: string;
|
54
|
+
};
|
55
|
+
} & DefineEmit<"valueChanged", (value: string) => void> & {
|
56
|
+
disabled?: boolean;
|
57
|
+
} & {
|
58
|
+
property?: EnterprisePropertyDefinition;
|
59
|
+
} & {
|
60
|
+
settings?: EnterprisePropertyTextItemSettings;
|
61
|
+
}> & {
|
62
|
+
"v-slots"?: {
|
63
|
+
default?: import("vue").Slot;
|
64
|
+
} & {};
|
65
|
+
} & {
|
66
|
+
onValueChanged?: (value: string) => any;
|
67
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "valueBind" | "property" | "settings">;
|
68
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
69
|
+
[key: string]: any;
|
70
|
+
}>;
|
71
|
+
export default _default;
|
@@ -97,7 +97,7 @@ declare const _default: {
|
|
97
97
|
required: boolean;
|
98
98
|
};
|
99
99
|
colorSchemaType: {
|
100
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
100
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
101
101
|
required: boolean;
|
102
102
|
};
|
103
103
|
container: {
|
@@ -212,7 +212,7 @@ declare const _default: {
|
|
212
212
|
required: boolean;
|
213
213
|
};
|
214
214
|
colorSchemaType: {
|
215
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
215
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
216
216
|
required: boolean;
|
217
217
|
};
|
218
218
|
container: {
|
@@ -332,7 +332,7 @@ declare const _default: {
|
|
332
332
|
required: boolean;
|
333
333
|
};
|
334
334
|
colorSchemaType: {
|
335
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
335
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
336
336
|
required: boolean;
|
337
337
|
};
|
338
338
|
container: {
|
@@ -449,7 +449,7 @@ declare const _default: {
|
|
449
449
|
required: boolean;
|
450
450
|
};
|
451
451
|
colorSchemaType: {
|
452
|
-
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic">;
|
452
|
+
type: import("vue").PropType<"background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic">;
|
453
453
|
required: boolean;
|
454
454
|
};
|
455
455
|
container: {
|
@@ -539,7 +539,7 @@ declare const _default: {
|
|
539
539
|
class?: String | String[];
|
540
540
|
label?: string;
|
541
541
|
size?: "small" | "default" | "x-small";
|
542
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
542
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
543
543
|
grow?: boolean;
|
544
544
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
545
545
|
"v-model"?: FilterPickerFilter[];
|
@@ -1,16 +1,47 @@
|
|
1
|
-
export declare const AzureAdSyncProviderSettings: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
}
|
1
|
+
export declare const AzureAdSyncProviderSettings: (props: import("../../..").ConstructComponentProps<Record<string, any>>) => {
|
2
|
+
$: import("vue").ComponentInternalInstance;
|
3
|
+
$data: {};
|
4
|
+
$props: {};
|
5
|
+
$attrs: {
|
6
|
+
[x: string]: unknown;
|
7
|
+
};
|
8
|
+
$refs: {
|
9
|
+
[x: string]: unknown;
|
10
|
+
};
|
11
|
+
$slots: Readonly<{
|
12
|
+
[name: string]: import("vue").Slot<any>;
|
13
|
+
}>;
|
14
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
15
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$emit: (event: string, ...args: any[]) => void;
|
17
|
+
$el: any;
|
18
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
19
|
+
beforeCreate?: (() => void) | (() => void)[];
|
20
|
+
created?: (() => void) | (() => void)[];
|
21
|
+
beforeMount?: (() => void) | (() => void)[];
|
22
|
+
mounted?: (() => void) | (() => void)[];
|
23
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
24
|
+
updated?: (() => void) | (() => void)[];
|
25
|
+
activated?: (() => void) | (() => void)[];
|
26
|
+
deactivated?: (() => void) | (() => void)[];
|
27
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
28
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
29
|
+
destroyed?: (() => void) | (() => void)[];
|
30
|
+
unmounted?: (() => void) | (() => void)[];
|
31
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
32
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
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)[];
|
34
|
+
};
|
35
|
+
$forceUpdate: () => void;
|
36
|
+
$nextTick: typeof import("vue").nextTick;
|
37
|
+
$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;
|
38
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
39
|
+
propsDefinition: import("../../..").ExtractProps<Record<string, any>> & {
|
40
|
+
"v-slots"?: {
|
41
|
+
default?: import("vue").Slot;
|
42
|
+
} & {};
|
43
|
+
} & {} & Omit<import("../../..").VueComponentBaseProps, string | number>;
|
44
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
|
+
[key: string]: any;
|
46
|
+
}>;
|
16
47
|
export declare function renderAzureAdSyncProviderSettings(): JSX.Element;
|
@@ -1,70 +1,60 @@
|
|
1
1
|
import { guid, IdentityProviderProperty } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
};
|
15
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
16
|
-
getSyncPropertyDisplayName: {
|
17
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
18
|
-
};
|
19
|
-
getSyncPropertiesApi: {
|
20
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
21
|
-
required: true;
|
22
|
-
};
|
23
|
-
providerId: {
|
24
|
-
type: import("vue").PropType<guid>;
|
25
|
-
required: true;
|
26
|
-
};
|
27
|
-
}>>, {}, true, {}, {}, {
|
28
|
-
P: {};
|
29
|
-
B: {};
|
30
|
-
D: {};
|
31
|
-
C: {};
|
32
|
-
M: {};
|
33
|
-
Defaults: {};
|
34
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
35
|
-
getSyncPropertyDisplayName: {
|
36
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
37
|
-
};
|
38
|
-
getSyncPropertiesApi: {
|
39
|
-
type: import("vue").PropType<() => Promise<IdentityProviderProperty[]>>;
|
40
|
-
required: true;
|
41
|
-
};
|
42
|
-
providerId: {
|
43
|
-
type: import("vue").PropType<guid>;
|
44
|
-
required: true;
|
45
|
-
};
|
46
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
47
|
-
__isFragment?: never;
|
48
|
-
__isTeleport?: never;
|
49
|
-
__isSuspense?: never;
|
50
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
51
|
-
getSyncPropertyDisplayName: {
|
52
|
-
type: import("vue").PropType<(property: IdentityProviderProperty) => string>;
|
2
|
+
declare const _default: (props: import("../../..").ConstructComponentProps<{
|
3
|
+
providerId: guid;
|
4
|
+
} & {
|
5
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
6
|
+
} & {
|
7
|
+
getSyncPropertyDisplayName?: (property: IdentityProviderProperty) => string;
|
8
|
+
}>) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
53
14
|
};
|
54
|
-
|
55
|
-
|
56
|
-
required: true;
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
57
17
|
};
|
58
|
-
|
59
|
-
|
60
|
-
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
61
41
|
};
|
62
|
-
|
63
|
-
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("../../..").ExtractProps<{
|
64
47
|
providerId: guid;
|
48
|
+
} & {
|
65
49
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
66
50
|
} & {
|
67
51
|
getSyncPropertyDisplayName?: (property: IdentityProviderProperty) => string;
|
68
|
-
}
|
69
|
-
|
52
|
+
}> & {
|
53
|
+
"v-slots"?: {
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
} & {};
|
56
|
+
} & {} & Omit<import("../../..").VueComponentBaseProps, "providerId" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
70
60
|
export default _default;
|