@omnia/fx 8.0.8-vnext → 8.0.10-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 +3 -0
- package/internal-do-not-import-from-here/console/components/MessageOverlay.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.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/shared/models/theming/BlueprintDefinition.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +34 -21
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +23 -21
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +16 -15
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +9 -8
- package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +11 -0
- package/internal-do-not-import-from-here/shared/models/theming/{ThemeMethods.js → UseThemeMethods.js} +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/index.js +1 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +160 -0
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +49 -2
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +48 -15
- package/internal-do-not-import-from-here/ux/VueTags.d.ts +7 -9
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +46 -60
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChromeOld.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +62 -6
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditItem.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Item.d.ts +82 -11
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAction.d.ts +70 -8
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAdmin.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +66 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/EditLayout.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutListing.d.ts +66 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/addlayout/AddLayout.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +53 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/BlockWords.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +66 -7
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +74 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +74 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +74 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +75 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +74 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +74 -9
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/StepRow.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/authsetup/steps/EmailVerify.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/authsetup/steps/OTP.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/authsetup/steps/Password.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/commandpalette/CommandPalette.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockCurrent.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockFuture.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +18 -1
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +70 -8
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +54 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +70 -8
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +62 -6
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +13 -13
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +66 -7
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +28 -28
- package/internal-do-not-import-from-here/ux/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/Icons.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/OneColumnIcon.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnHeroIcon.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnIcon.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnPageIcon.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/TwoColumnIcon.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.css.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/limited-label/LimitedLabel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/magiclink/MagicLink.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +243 -0
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +176 -0
- package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +115 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +184 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +129 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +128 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +133 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +104 -0
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +142 -0
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +150 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +143 -0
- package/internal-do-not-import-from-here/ux/oxide/spacer/Spacer.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +115 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +115 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +121 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +155 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +133 -0
- package/internal-do-not-import-from-here/ux/playground_test/Play2Component.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +12 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyDatasourceRenderer.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/signin/SignInBlock.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/signin/SignInPage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +59 -5
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +58 -5
- package/internal-do-not-import-from-here/ux/signout/SignOut.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseBlueprintStyling.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseVuetifyStyling.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/index.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +15 -15
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ColorSelector.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeCodeEditor.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewer.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/user/UserPropertyRenderer.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/user/components/PropertyConfigurationRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +10 -3
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderDisplay.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutBladeBuilder.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlock.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlockSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddDataObject.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AppExplorer.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +50 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ShareApp.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/ConditionalStatements.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/EventsPanel.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/StylingPanel.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-data/EditDataMemberPanel.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ColorSchemaPicker/ColorSchemaPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +51 -2
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexView.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +48 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/vuetify/index.d.ts +1 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +38 -0
- package/package.json +2 -2
- package/ux/index.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/ThemeMethods.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/ComponentDefinitions.d.ts +0 -60
- package/internal-do-not-import-from-here/ux/theming-v2/styling/themeStyling.d.ts +0 -50
- package/internal-do-not-import-from-here/vue/VueHotReloadApi.d.ts +0 -1
package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts
CHANGED
@@ -1,12 +1,71 @@
|
|
1
1
|
import { IdentityProviderProperty, UserTypeEvaluation } from "@omnia/fx-models";
|
2
|
-
export declare const IdentitySyncRuleBlade:
|
2
|
+
export declare const IdentitySyncRuleBlade: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
7
|
+
data: UserTypeEvaluation;
|
8
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
9
|
+
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
10
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
11
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot;
|
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<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
26
|
+
data: UserTypeEvaluation;
|
27
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
28
|
+
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
29
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
30
|
+
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, 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) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
50
|
+
} & Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
51
|
+
data: UserTypeEvaluation;
|
52
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
53
|
+
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
54
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
55
|
+
}>>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
56
|
+
__isFragment?: never;
|
57
|
+
__isTeleport?: never;
|
58
|
+
__isSuspense?: never;
|
59
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
3
60
|
data: UserTypeEvaluation;
|
4
61
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
5
62
|
saveChanges: (data: UserTypeEvaluation) => Promise<void>;
|
6
63
|
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
7
|
-
}
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
64
|
+
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
65
|
+
propsDefinition: Readonly<{} & {
|
66
|
+
data?: UserTypeEvaluation;
|
67
|
+
getSyncPropertiesApi?: () => Promise<IdentityProviderProperty[]>;
|
68
|
+
getSyncPropertyDisplayName?: (property: IdentityProviderProperty) => string;
|
69
|
+
saveChanges?: (data: UserTypeEvaluation) => Promise<void>;
|
70
|
+
}>;
|
71
|
+
};
|
package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts
CHANGED
@@ -59,10 +59,10 @@ declare const _default: {
|
|
59
59
|
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
60
60
|
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
61
61
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
62
|
-
propsDefinition: Readonly<
|
63
|
-
providerId
|
64
|
-
getSyncPropertiesApi
|
65
|
-
getSyncPropertyDisplayName
|
66
|
-
}
|
62
|
+
propsDefinition: Readonly<{} & {
|
63
|
+
providerId?: GuidValue;
|
64
|
+
getSyncPropertiesApi?: () => Promise<IdentityProviderProperty[]>;
|
65
|
+
getSyncPropertyDisplayName?: (property: IdentityProviderProperty) => string;
|
66
|
+
}>;
|
67
67
|
};
|
68
68
|
export default _default;
|
@@ -150,33 +150,33 @@ declare const _default: {
|
|
150
150
|
hideDynamicGroupSelection: boolean;
|
151
151
|
showAsButton: boolean;
|
152
152
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
153
|
-
propsDefinition: Readonly<
|
154
|
-
|
155
|
-
|
156
|
-
type
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
onMenuToggle
|
175
|
-
hideTab
|
176
|
-
hideGroupTypeSelection
|
177
|
-
hideUserTypeSelection
|
178
|
-
hideDynamicGroupSelection
|
179
|
-
showAsButton
|
180
|
-
}
|
153
|
+
propsDefinition: Readonly<{} & {
|
154
|
+
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
155
|
+
label?: string;
|
156
|
+
type?: PrincipalTypes;
|
157
|
+
top?: boolean;
|
158
|
+
multiple?: boolean;
|
159
|
+
disabled?: boolean;
|
160
|
+
valueBind?: Identity[];
|
161
|
+
description?: string;
|
162
|
+
required?: boolean;
|
163
|
+
ariaDescribedby?: string;
|
164
|
+
ariaInvalid?: boolean;
|
165
|
+
providerIds?: GuidValue[];
|
166
|
+
onValueBindChanged?: (values: Identity[]) => void;
|
167
|
+
attachToParent?: boolean;
|
168
|
+
keepSelectionMenu?: boolean;
|
169
|
+
singleLine?: boolean;
|
170
|
+
showCurrentUserOption?: boolean;
|
171
|
+
autoOpenSelection?: boolean;
|
172
|
+
disabledIdentities?: Identity[];
|
173
|
+
blockedIdentities?: Identity[];
|
174
|
+
onMenuToggle?: (values: boolean) => void;
|
175
|
+
hideTab?: boolean;
|
176
|
+
hideGroupTypeSelection?: boolean;
|
177
|
+
hideUserTypeSelection?: boolean;
|
178
|
+
hideDynamicGroupSelection?: boolean;
|
179
|
+
showAsButton?: boolean;
|
180
|
+
}>;
|
181
181
|
};
|
182
182
|
export default _default;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { LayoutEditorCanvasApi, LayoutEditorCanvasStyles, LayoutItem } from "@omnia/fx/models";
|
2
|
-
import { LayoutMediaContext, LayoutFileContext } from "@omnia/fx/ux";
|
2
|
+
import { LayoutMediaContext, LayoutFileContext, ThemeStoreV2 } from "@omnia/fx/ux";
|
3
3
|
import { BlockCatalogStore, LayoutCanvasStore, ThemingRenditionManager } from "../";
|
4
|
-
import {
|
4
|
+
import { ThemeStore, VueComponentBase } from "../..";
|
5
5
|
import { SubscriptionHandler } from "../../..";
|
6
6
|
import { IWebComponentInstance } from "../../../runtime/core/InternalWebComponentBootstrapper";
|
7
7
|
import { MediaPickerService } from "../../../services";
|
@@ -9,7 +9,7 @@ import { BlockTitleSettingsStore, DirectionRuleStore } from "../../../stores";
|
|
9
9
|
import { AnchorLink } from "../../AnchorLink";
|
10
10
|
import { ILayoutEditorCanvas } from "./ILayoutEditorCanvas";
|
11
11
|
import "./LayoutEditorCanvas.css";
|
12
|
-
export
|
12
|
+
export declare class LayoutEditorCanvas extends VueComponentBase implements IWebComponentInstance, ILayoutEditorCanvas {
|
13
13
|
styles?: Partial<typeof LayoutEditorCanvasStyles>;
|
14
14
|
getApi: (inst: LayoutEditorCanvasApi) => void;
|
15
15
|
provider: string;
|
@@ -17,7 +17,7 @@ export default class LayoutEditorCanvas extends VueComponentBase implements IWeb
|
|
17
17
|
mediaContext: LayoutMediaContext;
|
18
18
|
fileContext: LayoutFileContext;
|
19
19
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
20
|
-
|
20
|
+
themeStoreV2: ThemeStoreV2;
|
21
21
|
layoutItemStore: BlockCatalogStore;
|
22
22
|
SubscriptionHandler: SubscriptionHandler;
|
23
23
|
mediaPickerService: MediaPickerService;
|
@@ -33,6 +33,8 @@ export default class LayoutEditorCanvas extends VueComponentBase implements IWeb
|
|
33
33
|
private isDragging;
|
34
34
|
private originalScreenWidth;
|
35
35
|
private originalWindowWidth;
|
36
|
+
private colorSchemaDrawer;
|
37
|
+
private colorSchemaHeader;
|
36
38
|
beforeCreate(): void;
|
37
39
|
created(): void;
|
38
40
|
destroyed(): void;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IWebComponentInstance } from "../../../..";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export declare class OneColumnIconComponent extends VueComponentBase implements IWebComponentInstance {
|
4
|
+
colorSchemaStore: ColorSchemaStore;
|
4
5
|
mounted(): void;
|
5
6
|
render(): JSX.Element;
|
6
7
|
}
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnHeroIcon.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IWebComponentInstance } from "../../../..";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export declare class ThreeColumnHeroIconComponent extends VueComponentBase implements IWebComponentInstance {
|
4
|
+
colorSchemaStore: ColorSchemaStore;
|
4
5
|
mounted(): void;
|
5
6
|
render(): JSX.Element;
|
6
7
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IWebComponentInstance } from "../../../..";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export declare class ThreeColumnIconComponent extends VueComponentBase implements IWebComponentInstance {
|
4
|
+
colorSchemaStore: ColorSchemaStore;
|
4
5
|
mounted(): void;
|
5
6
|
render(): JSX.Element;
|
6
7
|
}
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnPageIcon.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IWebComponentInstance } from "../../../..";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export declare class ThreeColumnPageIconComponent extends VueComponentBase implements IWebComponentInstance {
|
4
|
+
colorSchemaStore: ColorSchemaStore;
|
4
5
|
mounted(): void;
|
5
6
|
render(): JSX.Element;
|
6
7
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IWebComponentInstance } from "../../../..";
|
2
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export declare class TwoColumnIconComponent extends VueComponentBase implements IWebComponentInstance {
|
4
|
+
colorSchemaStore: ColorSchemaStore;
|
4
5
|
mounted(): void;
|
5
6
|
render(): JSX.Element;
|
6
7
|
}
|
@@ -1,9 +1,8 @@
|
|
1
|
-
import { Color } from "../../../../models";
|
2
1
|
/**
|
3
2
|
* Styles for the LayoutEditorStyles component
|
4
3
|
*/
|
5
4
|
export declare const LayoutItemStyles: {
|
6
5
|
container: string;
|
7
|
-
wrapper: (
|
8
|
-
text: string;
|
6
|
+
wrapper: (backgroundColor: string) => string;
|
7
|
+
text: (textColor: string) => string;
|
9
8
|
};
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { ColorSchemaStore } from "@omnia/fx/ux";
|
1
2
|
import { LayoutItemRegistration } from "../../../../models";
|
2
3
|
import { VueComponentBase } from "../../../VueComponentBase";
|
3
4
|
export interface LayoutSectionProps {
|
@@ -8,6 +9,7 @@ export interface LayoutSectionEvents {
|
|
8
9
|
}
|
9
10
|
export declare class LayoutItemSelection extends VueComponentBase<LayoutSectionProps, LayoutSectionEvents> {
|
10
11
|
item: LayoutItemRegistration;
|
12
|
+
colorSchemaStore: ColorSchemaStore;
|
11
13
|
mounted(): void;
|
12
14
|
/**
|
13
15
|
* Eventhandler for item clicked
|
@@ -5,11 +5,9 @@ import { Color } from "../../../../models";
|
|
5
5
|
export declare const LayoutItemSelectorStyles: {
|
6
6
|
blockDialog: string;
|
7
7
|
smallPosition: string;
|
8
|
-
notScrollOutside: string;
|
9
8
|
selectorWrapper: string;
|
10
9
|
contentWrapper: (background: Color) => string;
|
11
10
|
closeButton: string;
|
12
|
-
expansionPanel: (background: Color) => string;
|
13
11
|
dialogHeader: (textColor: string) => string;
|
14
12
|
searchBox: string;
|
15
13
|
footerWrapper: string;
|
@@ -17,4 +15,5 @@ export declare const LayoutItemSelectorStyles: {
|
|
17
15
|
noBlockWrapper: string;
|
18
16
|
blockWrapper: string;
|
19
17
|
};
|
18
|
+
expansionPanel: string;
|
20
19
|
};
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { BlockCatalogStore, LayoutCanvasStore } from "../../";
|
2
2
|
import { VueComponentBaseProps } from "../../..";
|
3
|
-
import { LayoutItem, LayoutItemRegistration } from "../../../../models";
|
3
|
+
import { LayoutItem, LayoutItemRegistration, ColorTypes, ColorSchemaTypes } from "../../../../models";
|
4
4
|
import { VueComponentBase } from "../../..";
|
5
5
|
import { FeatureStore } from "../../../../stores";
|
6
6
|
export interface LayoutItemSelectorProps extends VueComponentBaseProps {
|
7
7
|
container: LayoutItem;
|
8
|
-
|
8
|
+
colorType?: ColorTypes;
|
9
|
+
colorSchemaType?: ColorSchemaTypes;
|
9
10
|
small: boolean;
|
10
11
|
siblingId?: string;
|
11
12
|
postInsert?: boolean;
|
@@ -14,8 +15,9 @@ export declare class LayoutItemSelector extends VueComponentBase<LayoutItemSelec
|
|
14
15
|
container: LayoutItem;
|
15
16
|
siblingId?: string;
|
16
17
|
postInsert?: boolean;
|
17
|
-
color: string;
|
18
18
|
small: boolean;
|
19
|
+
colorType: ColorTypes;
|
20
|
+
colorSchemaType: ColorSchemaTypes;
|
19
21
|
layoutEditorStore: LayoutCanvasStore;
|
20
22
|
layoutItemStore: BlockCatalogStore;
|
21
23
|
featureStore: FeatureStore;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ClipboardStore } from "@omnia/fx/stores";
|
2
|
-
import { VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux";
|
2
|
+
import { ColorSchemaStore, VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux";
|
3
3
|
import { LayoutCanvasStore } from "../..";
|
4
4
|
import { LayoutItem } from "../../../../models";
|
5
5
|
export interface ActionToolbarProps extends VueComponentBaseProps {
|
@@ -13,6 +13,7 @@ export interface ActionToolbarEvents {
|
|
13
13
|
export declare class LayoutItemActionToolbar extends VueComponentBase<ActionToolbarProps, ActionToolbarEvents> {
|
14
14
|
layoutEditorStore: LayoutCanvasStore;
|
15
15
|
clipboardStore: ClipboardStore;
|
16
|
+
colorSchemaStore: ColorSchemaStore;
|
16
17
|
private omniaUxLoc;
|
17
18
|
item: LayoutItem;
|
18
19
|
parentContainer: LayoutItem;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.css.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BlockLayoutSettings, SectionSettings } from "../../../../models";
|
1
|
+
import { BlockLayoutSettings, ColorSchema, SectionSettings } from "../../../../models";
|
2
2
|
import { ITheming } from "../../..";
|
3
3
|
/**
|
4
4
|
* Styles for the LayoutColumnStyles component
|
@@ -9,8 +9,8 @@ export declare const LayoutBlockStyles: {
|
|
9
9
|
container: (sectionSettings: SectionSettings, blockSettings: BlockLayoutSettings, theme: ITheming) => string;
|
10
10
|
general: string;
|
11
11
|
blockPadding: (blockSettings: BlockLayoutSettings) => string;
|
12
|
-
selectedMarkup: (
|
13
|
-
toolbar:
|
12
|
+
selectedMarkup: (colorSchema: ColorSchema, blockSettings: BlockLayoutSettings, fixedMargin: boolean) => string;
|
13
|
+
toolbar: string;
|
14
14
|
positionItemSelectorOnBorderTop: string;
|
15
15
|
positionItemSelectorOnBorderBottom: string;
|
16
16
|
padLockIcon: string;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import { VNode } from "vue";
|
2
|
+
import { ColorSchemaStore } from "@omnia/fx/ux";
|
2
3
|
import { BlockCatalogStore, LayoutCanvasStore, ThemingRenditionManager } from "../../";
|
3
4
|
import { BlockInstance, LayoutFileContext, LayoutMediaContext, ThemeStore, VueComponentBase, VueComponentBaseProps } from "../../..";
|
4
5
|
import { Block, LayoutItem, SectionSettings } from "../../../../models";
|
@@ -29,6 +30,7 @@ export declare class LayoutBlock extends VueComponentBase<BlockProps> {
|
|
29
30
|
protected multilingualStore: MultilingualStore;
|
30
31
|
private omniaUxLoc;
|
31
32
|
blockInstance: BlockInstance;
|
33
|
+
colorSchemaStore: ColorSchemaStore;
|
32
34
|
private editorTheme;
|
33
35
|
created(): void;
|
34
36
|
mounted(): void;
|
@@ -37,7 +39,7 @@ export declare class LayoutBlock extends VueComponentBase<BlockProps> {
|
|
37
39
|
* Creates the element
|
38
40
|
* @param h
|
39
41
|
*/
|
40
|
-
|
42
|
+
createNode(): VNode;
|
41
43
|
/**
|
42
44
|
* Event handler when block is selected
|
43
45
|
* @param e
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { ColorSchemaStore } from "@omnia/fx/ux";
|
1
2
|
import { LayoutCanvasStore } from "../../";
|
2
3
|
import { SectionSettings, SectionItem, ColumnedSectionItemSettings } from "../../../../models";
|
3
4
|
import { VueComponentBase } from "../../..";
|
@@ -18,6 +19,8 @@ export declare class LayoutColumn extends VueComponentBase<ColumnProps> {
|
|
18
19
|
useScrollMargingFix: boolean;
|
19
20
|
editorStore: LayoutCanvasStore;
|
20
21
|
mediaPickerService: MediaPickerService;
|
22
|
+
colorSchemaStore: ColorSchemaStore;
|
23
|
+
created(): void;
|
21
24
|
private get backgroundImage();
|
22
25
|
/**
|
23
26
|
* Function to render the columns
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.css.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { ColorSchema } from "@omnia/fx-models";
|
2
2
|
/**
|
3
3
|
* Styles for the LayoutColumnStyles component
|
4
4
|
*/
|
@@ -6,10 +6,10 @@ export declare const LayoutSectionStyles: {
|
|
6
6
|
layoutMode: {
|
7
7
|
selectedPadding: string;
|
8
8
|
regularPadding: string;
|
9
|
-
selectorContainer: (
|
9
|
+
selectorContainer: (colorSchema: ColorSchema, isSelected: any) => string;
|
10
10
|
topLevelSpacing: string;
|
11
11
|
showhideTransition: (show: any) => string;
|
12
|
-
toolbar: (
|
12
|
+
toolbar: (colorSchema: ColorSchema) => string;
|
13
13
|
removeScrollMargin: string;
|
14
14
|
positionItemSelectorOnBorderTop: string;
|
15
15
|
positionItemSelectorOnBorderTopCorrection: string;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
+
import { ColorSchemaStore, ThemeStore, ThemeStoreV2 } from "@omnia/fx/ux";
|
1
2
|
import { LayoutCanvasStore } from "../../";
|
2
3
|
import { StateMutation } from "@omnia/fx/models";
|
3
4
|
import { LayoutItem, Section } from "../../../../models";
|
4
5
|
import { ThemingRenditionManager } from "../../";
|
5
|
-
import { VueComponentBase
|
6
|
+
import { VueComponentBase } from "../../..";
|
6
7
|
import { BlockTitleSettingsStore, DirectionRuleStore } from "../../../../stores";
|
7
8
|
import { MediaPickerService } from "../../../../services";
|
8
9
|
export interface LayoutSectionProps {
|
@@ -22,6 +23,8 @@ export declare class LayoutSection extends VueComponentBase<LayoutSectionProps>
|
|
22
23
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
23
24
|
mediaPickerService: MediaPickerService;
|
24
25
|
themeStore: ThemeStore;
|
26
|
+
themeStoreV2: ThemeStoreV2;
|
27
|
+
colorSchemaStore: ColorSchemaStore;
|
25
28
|
directionRuleStore: DirectionRuleStore;
|
26
29
|
themingRenditionManager: ThemingRenditionManager;
|
27
30
|
private omniaUxLoc;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { ColorSchemaStore } from "../../..";
|
2
|
+
import { VueComponentBaseProps, VueComponentBase } from "../../..";
|
2
3
|
import { LayoutCanvasStore } from "../../";
|
3
4
|
import { MultilingualStore, BlockTitleSettingsStore } from "../../../../stores";
|
4
5
|
export interface LayoutSettingsProps extends VueComponentBaseProps {
|
@@ -7,7 +8,7 @@ export interface LayoutSettingsEvents {
|
|
7
8
|
}
|
8
9
|
export declare class LayoutSettingsPanel extends VueComponentBase<LayoutSettingsProps, LayoutSettingsEvents> {
|
9
10
|
editorStore: LayoutCanvasStore;
|
10
|
-
|
11
|
+
colorSchemaStore: ColorSchemaStore;
|
11
12
|
MultilingualStore: MultilingualStore;
|
12
13
|
private subscriptionHandler;
|
13
14
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
@@ -18,6 +19,8 @@ export declare class LayoutSettingsPanel extends VueComponentBase<LayoutSettings
|
|
18
19
|
created(): void;
|
19
20
|
mounted(): void;
|
20
21
|
private populateData;
|
22
|
+
renderIcon(): JSX.Element;
|
23
|
+
createTabControl(): JSX.Element;
|
21
24
|
renderTabs(): JSX.Element;
|
22
25
|
renderOneTab(): JSX.Element;
|
23
26
|
render(): JSX.Element;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { BlockTitleSettingsStore, MultilingualStore } from "@omnia/fx/stores";
|
2
|
-
import {
|
2
|
+
import { ColorSchemaStore, VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux";
|
3
3
|
import { BlockCatalogStore, LayoutCanvasStore } from "../../";
|
4
4
|
export interface SectionSettingsProps extends VueComponentBaseProps {
|
5
5
|
}
|
@@ -7,8 +7,7 @@ export interface BlockSettingsEvents {
|
|
7
7
|
}
|
8
8
|
export declare class LayoutStructure extends VueComponentBase<SectionSettingsProps, BlockSettingsEvents> {
|
9
9
|
private section;
|
10
|
-
|
11
|
-
themeStore: ThemeStore;
|
10
|
+
colorSchemaStore: ColorSchemaStore;
|
12
11
|
MultilingualStore: MultilingualStore;
|
13
12
|
private subscriptionHandler;
|
14
13
|
private omniaUxLoc;
|
@@ -29,5 +28,6 @@ export declare class LayoutStructure extends VueComponentBase<SectionSettingsPro
|
|
29
28
|
private getClickStyle;
|
30
29
|
isLayoutSelected(): boolean;
|
31
30
|
private shouldShowMenu;
|
31
|
+
renderIcon(): JSX.Element;
|
32
32
|
render(): JSX.Element;
|
33
33
|
}
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
+
import { ColorSchemaStore } from "../../..";
|
1
2
|
import { BlockTitleSettings } from "../../../../models";
|
2
|
-
import { VueComponentBaseProps, VueComponentBase
|
3
|
+
import { VueComponentBaseProps, VueComponentBase } from "../../..";
|
3
4
|
import { LayoutCanvasStore } from "../../";
|
4
5
|
import { MultilingualStore, BlockTitleSettingsStore } from "../../../../stores";
|
5
6
|
export interface SectionSettingsProps extends VueComponentBaseProps {
|
@@ -9,7 +10,7 @@ export interface BlockSettingsEvents {
|
|
9
10
|
export declare class SectionSettingsPanel extends VueComponentBase<SectionSettingsProps, BlockSettingsEvents> {
|
10
11
|
private section;
|
11
12
|
editorStore: LayoutCanvasStore;
|
12
|
-
|
13
|
+
colorSchemaStore: ColorSchemaStore;
|
13
14
|
MultilingualStore: MultilingualStore;
|
14
15
|
private subscriptionHandler;
|
15
16
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts
CHANGED
@@ -1,22 +1,23 @@
|
|
1
1
|
import { BlockCatalogStore, LayoutCanvasStore } from "../../";
|
2
|
-
import { LayoutItem } from "../../../../models";
|
2
|
+
import { ColorSchemaTypes, ColorTypes, LayoutItem } from "../../../../models";
|
3
3
|
import { VueComponentBase } from "../../..";
|
4
4
|
export interface TargetSelectorProps {
|
5
5
|
container: LayoutItem;
|
6
|
-
color: string;
|
7
6
|
small: boolean;
|
8
7
|
siblingId?: string;
|
9
8
|
postInsert?: boolean;
|
9
|
+
colorType?: ColorTypes;
|
10
|
+
colorSchemaType?: ColorSchemaTypes;
|
10
11
|
}
|
11
12
|
export declare class TargetSelector extends VueComponentBase<TargetSelectorProps> {
|
12
13
|
container: LayoutItem;
|
13
14
|
siblingId?: string;
|
14
15
|
postInsert?: boolean;
|
15
|
-
color: string;
|
16
16
|
small: boolean;
|
17
|
+
colorType: ColorTypes;
|
18
|
+
colorSchemaType: ColorSchemaTypes;
|
17
19
|
layoutEditorStore: LayoutCanvasStore;
|
18
20
|
layoutItemStore: BlockCatalogStore;
|
19
|
-
private model;
|
20
21
|
mounted(): void;
|
21
22
|
/**
|
22
23
|
* Eventhandler for adding a layout item
|
@@ -57,10 +57,10 @@ declare const limitedLabelComponent: {
|
|
57
57
|
text: string;
|
58
58
|
maxWidth: string;
|
59
59
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
60
|
-
propsDefinition: Readonly<
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
}
|
60
|
+
propsDefinition: Readonly<{} & {
|
61
|
+
text?: string;
|
62
|
+
maxWidth?: string;
|
63
|
+
activateOnLength?: number;
|
64
|
+
}>;
|
65
65
|
};
|
66
66
|
export default limitedLabelComponent;
|
@@ -42,6 +42,6 @@ declare const _default: {
|
|
42
42
|
__isTeleport?: never;
|
43
43
|
__isSuspense?: never;
|
44
44
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
45
|
-
propsDefinition: Readonly<
|
45
|
+
propsDefinition: Readonly<{} & {}>;
|
46
46
|
};
|
47
47
|
export default _default;
|
@@ -81,16 +81,16 @@ declare const _default: {
|
|
81
81
|
required: boolean;
|
82
82
|
hideDetails: boolean;
|
83
83
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
84
|
-
propsDefinition: Readonly<
|
85
|
-
title
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
}
|
84
|
+
propsDefinition: Readonly<{} & {
|
85
|
+
title?: string;
|
86
|
+
options?: object[];
|
87
|
+
valueBind?: any[];
|
88
|
+
onValueChanged?: (value: any[]) => void;
|
89
|
+
required?: boolean;
|
90
|
+
hideDetails?: boolean;
|
91
|
+
optionValue?: string;
|
92
|
+
optionText?: string;
|
93
|
+
multipleChoice?: boolean;
|
94
|
+
}>;
|
95
95
|
};
|
96
96
|
export default _default;
|