@omnia/fx 8.0.31-vnext → 8.0.33-vnext
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/console/components/Console.d.ts +52 -7
- package/internal-do-not-import-from-here/console/components/MessageOverlay.d.ts +52 -7
- package/internal-do-not-import-from-here/core/Extend.d.ts +1 -1
- package/internal-do-not-import-from-here/core/services/ClientManifestHelper.d.ts +5 -0
- package/internal-do-not-import-from-here/core/services/ServiceManifestProvider.d.ts +9 -3
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +1 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/runtime/core/InternalWebComponentBootstrapper.d.ts +3 -9
- package/internal-do-not-import-from-here/runtime/core/ManifestPublisher.d.ts +1 -1
- package/internal-do-not-import-from-here/runtime/core/ManifestResourceLoader.d.ts +3 -3
- package/internal-do-not-import-from-here/runtime/core/PrivateWebComponentBootstrapper.d.ts +0 -6
- package/internal-do-not-import-from-here/runtime/core/ServerSideLoader.d.ts +4 -4
- package/internal-do-not-import-from-here/shared/models/Equals.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/Equals.js +14 -0
- package/internal-do-not-import-from-here/shared/models/Guid.d.ts +8 -2
- package/internal-do-not-import-from-here/shared/models/Guid.js +23 -2
- package/internal-do-not-import-from-here/shared/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/index.js +1 -0
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +7 -9
- package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +41 -13
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChromeWrapper.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +57 -13
- package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +77 -49
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditItem.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Item.d.ts +60 -16
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAction.d.ts +57 -13
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAdmin.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/EditLayout.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutListing.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/addlayout/AddLayout.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +59 -15
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/BlockWords.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/StepRow.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/authsetup/steps/EmailVerify.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/authsetup/steps/OTP.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/authsetup/steps/Password.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/commandpalette/CommandPalette.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockCurrent.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockFuture.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +73 -31
- package/internal-do-not-import-from-here/ux/compositiontests/TestInjectComponent.d.ts +53 -7
- package/internal-do-not-import-from-here/ux/compositiontests/WowComp.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +67 -23
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +57 -13
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +75 -31
- package/internal-do-not-import-from-here/ux/docs/chrome/DocsChrome.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +57 -29
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +55 -13
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +56 -21
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +56 -21
- package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +56 -21
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +62 -18
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyDropdownRenderer.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyListRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +61 -45
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +57 -13
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +56 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +64 -42
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +71 -27
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +73 -29
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +68 -24
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +78 -34
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +79 -35
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +73 -51
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +70 -51
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +56 -54
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +56 -34
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +58 -27
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperTools.d.ts +54 -14
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/devicepreviewer/DevicePreviewer.d.ts +56 -21
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +54 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +60 -42
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +59 -31
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +60 -41
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlockInstance.d.ts +57 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +62 -48
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +61 -43
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +55 -21
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TabsSettingsStylePanel.d.ts +53 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +52 -14
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/backgroundsettings/BackgroundSettings.d.ts +63 -43
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Spacing.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Style.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Targeting.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +60 -42
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.d.ts +56 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/canvas/Spacing.d.ts +54 -14
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/imagebackgroundsettings/ImageBackgroundSettings.d.ts +56 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layoutclipboard/LayoutClipboard.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/General.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Spacing.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/AccordionListingSettingsPanel.d.ts +53 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/ColumnListingSettingsPanel.d.ts +53 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/SectionItemListing.d.ts +58 -31
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/StepListingSettingsPanel.d.ts +53 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/TabListingSettingsPanel.d.ts +53 -13
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings.d.ts +54 -14
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/settingstabs/TabLayoutSettings.d.ts +53 -12
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +59 -37
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutBlockRendererHelper.d.ts +74 -74
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +60 -40
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +55 -19
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +61 -38
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +60 -36
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +61 -37
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +59 -31
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +59 -31
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +63 -43
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +62 -42
- package/internal-do-not-import-from-here/ux/limited-label/LimitedLabel.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/magiclink/MagicLink.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +75 -37
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +53 -12
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +59 -15
- package/internal-do-not-import-from-here/ux/models/IdentityPicker.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +74 -45
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +61 -17
- package/internal-do-not-import-from-here/ux/oxide/alignmentpicker/AlignmentPicker.d.ts +73 -37
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +60 -51
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +55 -23
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +65 -61
- package/internal-do-not-import-from-here/ux/oxide/btn/docs/ButtonIntro.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +54 -13
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +74 -58
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +54 -24
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +73 -51
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +60 -54
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +70 -73
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +70 -67
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableVirtual.d.ts +68 -62
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +67 -72
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +52 -13
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +59 -45
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +176 -125
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +56 -38
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +56 -24
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +52 -18
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +56 -38
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +57 -44
- package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +56 -38
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +80 -57
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +74 -58
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +68 -86
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/BasicPanelTypes.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelAlignment.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelVariants.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/Scrolling.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/SettingsPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +54 -28
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +73 -43
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +84 -82
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +76 -66
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +73 -45
- package/internal-do-not-import-from-here/ux/oxide/spacer/Spacer.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +56 -24
- package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +57 -29
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +73 -47
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +74 -58
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +59 -48
- package/internal-do-not-import-from-here/ux/oxide/table/Table.d.ts +53 -23
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +58 -40
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +73 -55
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +77 -75
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +64 -31
- package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarIntro.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +58 -26
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +59 -36
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/TreeviewIntro.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/playground_test/Play2Component.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +55 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +60 -18
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +60 -18
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +60 -18
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +60 -18
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +60 -18
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +58 -16
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +61 -17
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +59 -15
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyBindingValueRenderer.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +58 -14
- package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +55 -20
- package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +82 -135
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +147 -163
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Bold/BoldToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/BulletList/BulletListToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/History/HistoryToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Italic/ItalicToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/OrderedList/OrderedListToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Underline/UnderlineToolbar.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +55 -25
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +72 -75
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/signin/SignInBlock.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/signin/SignInPage.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +57 -13
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/signout/SignOut.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +83 -73
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/LayoutEngineTest.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +57 -29
- package/internal-do-not-import-from-here/ux/theming/components/ThemeDefinitionEditor.d.ts +81 -57
- package/internal-do-not-import-from-here/ux/theming-v2/blueprintpicker/BlueprintPicker.d.ts +73 -37
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +77 -43
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +75 -43
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +73 -43
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +57 -18
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeCodeEditor.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BlueprintEditor.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BlueprintSelector.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/components/BlockBlueprintEditor.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ColorSelector.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ComponentsViewer.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/FxViewer.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/colors/ThemeViewer.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/use/UseDebouncer.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +57 -15
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutBladeBuilder.d.ts +53 -9
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.d.ts +52 -14
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.d.ts +52 -15
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlock.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +52 -15
- package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +74 -37
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +62 -83
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddDataObject.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AppExplorer.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +55 -11
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDefinitionPropertiesPane.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/ConditionalStatements.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/EventsPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/StylingPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-data/EditDataMemberPanel.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +52 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +62 -46
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Markdown.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +54 -10
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +59 -15
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +61 -17
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +3 -1
- package/package.json +4 -4
@@ -9,134 +9,81 @@ declare const _default: {
|
|
9
9
|
new (...args: any[]): {
|
10
10
|
$: import("vue").ComponentInternalInstance;
|
11
11
|
$data: {};
|
12
|
-
$props:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
"
|
32
|
-
|
33
|
-
};
|
34
|
-
|
35
|
-
|
36
|
-
}
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
};
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
}
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
editorContent?: import("typestyle/lib/types").NestedCSSProperties;
|
88
|
-
selectedNode?: (background: string) => import("typestyle/lib/types").NestedCSSProperties;
|
89
|
-
hiddenToolsBlock?: import("typestyle/lib/types").NestedCSSProperties;
|
90
|
-
editor?: import("typestyle/lib/types").NestedCSSProperties;
|
91
|
-
subToolBar?: import("typestyle/lib/types").NestedCSSProperties;
|
92
|
-
bubbleMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
93
|
-
stickyMenu?: (top: number, width: number) => import("typestyle/lib/types").NestedCSSProperties;
|
94
|
-
genericExtensionElementStyle?: (theming: import("@omnia/fx/ux").ITheming, useAccessibilityFeature: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
95
|
-
menubarLanguagePicker?: import("typestyle/lib/types").NestedCSSProperties;
|
96
|
-
}>;
|
97
|
-
} & {
|
98
|
-
type: import("vue").PropType<{
|
99
|
-
menubar?: import("typestyle/lib/types").NestedCSSProperties;
|
100
|
-
menubarDark?: import("typestyle/lib/types").NestedCSSProperties;
|
101
|
-
menubarLight?: import("typestyle/lib/types").NestedCSSProperties;
|
102
|
-
editorContent?: import("typestyle/lib/types").NestedCSSProperties;
|
103
|
-
selectedNode?: (background: string) => import("typestyle/lib/types").NestedCSSProperties;
|
104
|
-
hiddenToolsBlock?: import("typestyle/lib/types").NestedCSSProperties;
|
105
|
-
editor?: import("typestyle/lib/types").NestedCSSProperties;
|
106
|
-
subToolBar?: import("typestyle/lib/types").NestedCSSProperties;
|
107
|
-
bubbleMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
108
|
-
stickyMenu?: (top: number, width: number) => import("typestyle/lib/types").NestedCSSProperties;
|
109
|
-
genericExtensionElementStyle?: (theming: import("@omnia/fx/ux").ITheming, useAccessibilityFeature: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
110
|
-
menubarLanguagePicker?: import("typestyle/lib/types").NestedCSSProperties;
|
111
|
-
}>;
|
112
|
-
};
|
113
|
-
"on-focus": {
|
114
|
-
type: import("vue").PropType<() => void>;
|
115
|
-
};
|
116
|
-
onFocus: {
|
117
|
-
type: import("vue").PropType<() => void>;
|
118
|
-
};
|
119
|
-
"on-blur": {
|
120
|
-
type: import("vue").PropType<() => void>;
|
121
|
-
};
|
122
|
-
onBlur: {
|
123
|
-
type: import("vue").PropType<() => void>;
|
124
|
-
};
|
125
|
-
"on-content-data-change": {
|
126
|
-
type: import("vue").PropType<(richtextHelper: RichTextContentHelper) => void>;
|
127
|
-
};
|
128
|
-
onContentDataChange: {
|
129
|
-
type: import("vue").PropType<(richtextHelper: RichTextContentHelper) => void>;
|
130
|
-
};
|
131
|
-
onContentChange: {
|
132
|
-
type: import("vue").PropType<(content: string) => void>;
|
133
|
-
required: true;
|
134
|
-
};
|
135
|
-
initialContent: {
|
136
|
-
type: import("vue").PropType<string>;
|
137
|
-
required: true;
|
138
|
-
};
|
139
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
12
|
+
$props: {
|
13
|
+
readonly outlined?: boolean;
|
14
|
+
style?: unknown;
|
15
|
+
class?: unknown;
|
16
|
+
key?: string | number | symbol;
|
17
|
+
readonly disabled?: boolean;
|
18
|
+
readonly placeholder?: RichTextEditorPlaceHolder;
|
19
|
+
readonly onFocus?: () => void;
|
20
|
+
readonly onBlur?: () => void;
|
21
|
+
ref?: import("vue").VNodeRef;
|
22
|
+
ref_for?: boolean;
|
23
|
+
ref_key?: string;
|
24
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
27
|
+
[key: string]: any;
|
28
|
+
}>) => void)[];
|
29
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
30
|
+
[key: string]: any;
|
31
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
32
|
+
[key: string]: any;
|
33
|
+
}>) => void)[];
|
34
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
35
|
+
[key: string]: any;
|
36
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
37
|
+
[key: string]: any;
|
38
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
39
|
+
[key: string]: any;
|
40
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
41
|
+
[key: string]: any;
|
42
|
+
}>) => void)[];
|
43
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
44
|
+
[key: string]: any;
|
45
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
46
|
+
[key: string]: any;
|
47
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
50
|
+
[key: string]: any;
|
51
|
+
}>) => void)[];
|
52
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
55
|
+
[key: string]: any;
|
56
|
+
}>) => void)[];
|
57
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
60
|
+
[key: string]: any;
|
61
|
+
}>) => void)[];
|
62
|
+
readonly mode?: RichTextModes;
|
63
|
+
readonly "aria-describedby"?: string;
|
64
|
+
readonly "aria-invalid"?: boolean;
|
65
|
+
readonly styles?: unknown;
|
66
|
+
readonly ariaInvalid?: boolean;
|
67
|
+
readonly onContentChange: (content: string) => void;
|
68
|
+
readonly initialContent: string;
|
69
|
+
readonly bodyClass?: string;
|
70
|
+
readonly onContentDataChange?: (richtextHelper: RichTextContentHelper) => void;
|
71
|
+
readonly registerFocus?: (callback: () => void) => void;
|
72
|
+
readonly onConfigureExtensions?: (currentExtensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>;
|
73
|
+
readonly resetContent?: boolean;
|
74
|
+
readonly autoFocus?: boolean;
|
75
|
+
readonly ariaDescribedby?: string;
|
76
|
+
readonly disableAutofocus?: boolean;
|
77
|
+
readonly "on-content-data-change"?: (richtextHelper: RichTextContentHelper) => void;
|
78
|
+
readonly "on-blur"?: () => void;
|
79
|
+
readonly "on-focus"?: () => void;
|
80
|
+
readonly "body-class"?: string;
|
81
|
+
readonly "reset-content"?: boolean;
|
82
|
+
readonly "on-configure-extensions"?: (currentExtensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>;
|
83
|
+
readonly onConfiguredExtensions?: (currentExtensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension) => Promise<Array<RichTextEditorExtension>>;
|
84
|
+
readonly "on-configured-extensions"?: (currentExtensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension) => Promise<Array<RichTextEditorExtension>>;
|
85
|
+
readonly "register-focus"?: (callback: () => void) => void;
|
86
|
+
};
|
140
87
|
$attrs: {
|
141
88
|
[x: string]: unknown;
|
142
89
|
};
|
@@ -144,10 +91,10 @@ declare const _default: {
|
|
144
91
|
[x: string]: unknown;
|
145
92
|
};
|
146
93
|
$slots: Readonly<{
|
147
|
-
[name: string]: import("vue").Slot
|
94
|
+
[name: string]: import("vue").Slot<any>;
|
148
95
|
}>;
|
149
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
150
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
96
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
97
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
151
98
|
$emit: (event: string, ...args: any[]) => void;
|
152
99
|
$el: any;
|
153
100
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
@@ -277,7 +224,7 @@ declare const _default: {
|
|
277
224
|
type: import("vue").PropType<string>;
|
278
225
|
required: true;
|
279
226
|
};
|
280
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
227
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
281
228
|
beforeCreate?: (() => void) | (() => void)[];
|
282
229
|
created?: (() => void) | (() => void)[];
|
283
230
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -292,7 +239,7 @@ declare const _default: {
|
|
292
239
|
unmounted?: (() => void) | (() => void)[];
|
293
240
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
294
241
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
295
|
-
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)[];
|
242
|
+
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)[];
|
296
243
|
};
|
297
244
|
$forceUpdate: () => void;
|
298
245
|
$nextTick: typeof nextTick;
|
@@ -555,7 +502,7 @@ declare const _default: {
|
|
555
502
|
type: import("vue").PropType<string>;
|
556
503
|
required: true;
|
557
504
|
};
|
558
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
505
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
559
506
|
propsDefinition: Omit<Readonly<{
|
560
507
|
onContentChange: (content: string) => void;
|
561
508
|
initialContent: string;
|
@@ -569,6 +516,7 @@ declare const _default: {
|
|
569
516
|
"aria-describedby"?: string;
|
570
517
|
"aria-invalid"?: boolean;
|
571
518
|
styles?: unknown;
|
519
|
+
ariaInvalid?: boolean;
|
572
520
|
bodyClass?: string;
|
573
521
|
onContentDataChange?: (richtextHelper: RichTextContentHelper) => void;
|
574
522
|
registerFocus?: (callback: () => void) => void;
|
@@ -576,7 +524,6 @@ declare const _default: {
|
|
576
524
|
resetContent?: boolean;
|
577
525
|
autoFocus?: boolean;
|
578
526
|
ariaDescribedby?: string;
|
579
|
-
ariaInvalid?: boolean;
|
580
527
|
disableAutofocus?: boolean;
|
581
528
|
"on-content-data-change"?: (richtextHelper: RichTextContentHelper) => void;
|
582
529
|
"on-blur"?: () => void;
|