@omnia/fx 7.8.14-preview → 7.8.14
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/README.md +2 -2
- package/events/package.json +3 -3
- package/internal-do-not-import-from-here/core/Cookies.d.ts +2 -1
- package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +62 -23
- package/internal-do-not-import-from-here/core/http/RequestAborter.d.ts +5 -0
- package/internal-do-not-import-from-here/core/http/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +11 -1
- package/internal-do-not-import-from-here/index.d.ts +4 -0
- 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.manifest.json +1 -1
- package/internal-do-not-import-from-here/rules/DisplayRules.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AIEngineSetupService.d.ts +10 -0
- package/internal-do-not-import-from-here/services/BusinessProfileService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/OmniaSearchUserService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/SecurityRoles.d.ts +1 -0
- package/internal-do-not-import-from-here/services/SemanticSearchService.d.ts +3 -1
- package/internal-do-not-import-from-here/services/TargetingPropertyService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Future.d.ts +8 -0
- package/internal-do-not-import-from-here/shared/models/Future.js +36 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/SharedConstants.js +1 -0
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +17 -37
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +20 -27
- package/internal-do-not-import-from-here/spfx/components/SpfxFontFamilyBase.d.ts +5 -0
- package/internal-do-not-import-from-here/spfx/components/renderer/Settings.d.ts +24 -0
- package/internal-do-not-import-from-here/spfx/components/useOmniaWP.d.ts +69 -0
- package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/BlockTitleSettingsStore.d.ts +4 -2
- package/internal-do-not-import-from-here/stores/FocusStore.d.ts +11 -0
- package/internal-do-not-import-from-here/stores/MediaPickerStore.d.ts +5 -1
- package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/analytics/metric/Metric.d.ts +13 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InternalConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/AppInstanceSummaryStep.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/authenticationchecker/AuthenticationChecker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/button/Button.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/button/IButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/dialog/IDialog.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/IMediaFieldDisplay.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/MediaFieldDisplay.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/IMediaFieldEdit.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/MediaFieldEdit.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/RichTextFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/identities/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitle.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/loc/localize.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowReportUsage.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowPostProcessor.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/models/UnsplashImage.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/models/enterpriseproperties/PersonFieldDisplayStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/profilecard/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberConfiguration.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/social/Like.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/social/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/user/UserTokenProvider.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +3 -0
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -0
- package/messaging/package.json +3 -3
- package/models/package.json +3 -3
- package/package.json +6 -6
- package/services/package.json +3 -3
- package/sp/models/package.json +3 -3
- package/sp/package.json +3 -3
- package/spfx/package.json +3 -3
- package/spfx/tooling/package.json +3 -3
- package/stores/package.json +3 -3
- package/ux/admin/package.json +3 -3
- package/ux/app/package.json +3 -3
- package/ux/editor/package.json +3 -3
- package/ux/package.json +3 -3
- package/ux/richtexteditor/package.json +3 -3
- package/ux/vuetify/package.json +3 -3
- package/internal-do-not-import-from-here/spfx/components/IOmniaWPContainerSettings.d.ts +0 -17
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { GuidValue } from "../../models";
|
|
2
|
-
export interface IOmniaWPContainerSettings {
|
|
3
|
-
[name: string]: any;
|
|
4
|
-
onClosed?: () => void;
|
|
5
|
-
onChange?: (blockManifestId: GuidValue, elementName: string) => void;
|
|
6
|
-
}
|
|
7
|
-
declare global {
|
|
8
|
-
namespace VueTsxSupport.JSX {
|
|
9
|
-
interface Element {
|
|
10
|
-
}
|
|
11
|
-
interface ElementClass {
|
|
12
|
-
}
|
|
13
|
-
interface IntrinsicElements {
|
|
14
|
-
"omnia-fx-spfx-wp-settings": IOmniaWPContainerSettings;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|