@omnia/fx 7.7.93-preview → 7.8.0

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.
Files changed (117) hide show
  1. package/README.md +2 -2
  2. package/events/package.json +3 -3
  3. package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +59 -21
  4. package/internal-do-not-import-from-here/core/http/RequestAborter.d.ts +5 -0
  5. package/internal-do-not-import-from-here/core/http/index.d.ts +1 -0
  6. package/internal-do-not-import-from-here/core/utils/Utils.d.ts +10 -1
  7. package/internal-do-not-import-from-here/index.d.ts +4 -0
  8. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  9. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  10. package/internal-do-not-import-from-here/services/AIEngineSetupService.d.ts +10 -0
  11. package/internal-do-not-import-from-here/services/BusinessProfileService.d.ts +1 -0
  12. package/internal-do-not-import-from-here/services/OmniaSearchUserService.d.ts +1 -0
  13. package/internal-do-not-import-from-here/services/SecurityRoles.d.ts +1 -0
  14. package/internal-do-not-import-from-here/services/SemanticSearchService.d.ts +12 -0
  15. package/internal-do-not-import-from-here/services/TargetingPropertyService.d.ts +1 -0
  16. package/internal-do-not-import-from-here/services/index.d.ts +2 -0
  17. package/internal-do-not-import-from-here/shared/models/Future.d.ts +8 -0
  18. package/internal-do-not-import-from-here/shared/models/Future.js +36 -0
  19. package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +17 -37
  20. package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +20 -27
  21. package/internal-do-not-import-from-here/spfx/components/OmniaWPStandaloneContainer.d.ts +11 -0
  22. package/internal-do-not-import-from-here/spfx/components/OmniaWPStandaloneInstanceHandler.d.ts +1 -0
  23. package/internal-do-not-import-from-here/spfx/components/SpfxFontFamilyBase.d.ts +5 -0
  24. package/internal-do-not-import-from-here/spfx/components/renderer/Settings.d.ts +24 -0
  25. package/internal-do-not-import-from-here/spfx/components/useOmniaWP.d.ts +69 -0
  26. package/internal-do-not-import-from-here/spfx/models/ClientManifests.d.ts +9 -0
  27. package/internal-do-not-import-from-here/spfx/models/SettingsModel.d.ts +7 -0
  28. package/internal-do-not-import-from-here/spfx/models/index.d.ts +1 -0
  29. package/internal-do-not-import-from-here/spfx/tooling/index.d.ts +6 -0
  30. package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +1 -0
  31. package/internal-do-not-import-from-here/stores/FocusStore.d.ts +11 -0
  32. package/internal-do-not-import-from-here/stores/MediaPickerStore.d.ts +5 -1
  33. package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +1 -0
  34. package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
  35. package/internal-do-not-import-from-here/ux/UxModels.d.ts +12 -0
  36. package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +6 -2
  37. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +6 -0
  38. package/internal-do-not-import-from-here/ux/analytics/metric/Metric.d.ts +35 -0
  39. package/internal-do-not-import-from-here/ux/analyticssettings/AnalyticsSettings.d.ts +31 -0
  40. package/internal-do-not-import-from-here/ux/analyticssettings/loc/localize.d.ts +13 -0
  41. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InternalConstants.d.ts +1 -0
  42. package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/AppInstanceSummaryStep.d.ts +1 -0
  43. package/internal-do-not-import-from-here/ux/authenticationchecker/AuthenticationChecker.d.ts +3 -1
  44. package/internal-do-not-import-from-here/ux/button/Button.d.ts +2 -0
  45. package/internal-do-not-import-from-here/ux/button/IButton.d.ts +2 -0
  46. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +4 -0
  47. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +16 -0
  48. package/internal-do-not-import-from-here/ux/dialog/IDialog.d.ts +9 -0
  49. package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +1 -0
  50. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/IMediaFieldDisplay.d.ts +15 -0
  51. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/MediaFieldDisplay.d.ts +18 -0
  52. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/mediafield/index.d.ts +1 -0
  53. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +2 -0
  54. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/index.d.ts +1 -0
  55. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/IMediaFieldEdit.d.ts +16 -0
  56. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/MediaFieldEdit.d.ts +32 -0
  57. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/mediafield/index.d.ts +1 -0
  58. package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +1 -0
  59. package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -0
  60. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +4 -2
  61. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +29 -0
  62. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +4 -0
  63. package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +9 -0
  64. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +1 -0
  65. package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +3 -2
  66. package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +6 -2
  67. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +5 -1
  68. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +5 -0
  69. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +3 -0
  70. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +2 -1
  71. package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +3 -0
  72. package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +1 -0
  73. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +3 -0
  74. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/loc/localize.d.ts +0 -2
  75. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowReportUsage.d.ts +27 -0
  76. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/index.d.ts +1 -0
  77. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowPostProcessor.d.ts +2 -0
  78. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +4 -1
  79. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +10 -0
  80. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +1 -0
  81. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/IUnsplashProvider.d.ts +17 -0
  82. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/Ioc/localize.d.ts +11 -0
  83. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.css.d.ts +5 -0
  84. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +31 -0
  85. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/models/UnsplashImage.d.ts +31 -0
  86. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +9 -0
  87. package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +1 -0
  88. package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +2 -0
  89. package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +3 -0
  90. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -0
  91. package/internal-do-not-import-from-here/ux/profilecard/index.d.ts +1 -0
  92. package/internal-do-not-import-from-here/ux/profilecard/loc/localize.d.ts +1 -0
  93. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +10 -1
  94. package/internal-do-not-import-from-here/ux/social/Comment.d.ts +16 -7
  95. package/internal-do-not-import-from-here/ux/social/Like.d.ts +6 -1
  96. package/internal-do-not-import-from-here/ux/social/loc/localize.d.ts +1 -0
  97. package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +5 -0
  98. package/internal-do-not-import-from-here/ux/user/UserTokenProvider.d.ts +4 -0
  99. package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +3 -0
  100. package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
  101. package/internal-do-not-import-from-here/wctypings.d.ts +14 -0
  102. package/messaging/package.json +3 -3
  103. package/models/package.json +3 -3
  104. package/package.json +6 -6
  105. package/services/package.json +3 -3
  106. package/sp/models/package.json +3 -3
  107. package/sp/package.json +3 -3
  108. package/spfx/package.json +3 -3
  109. package/spfx/tooling/package.json +3 -3
  110. package/stores/package.json +3 -3
  111. package/ux/admin/package.json +3 -3
  112. package/ux/app/package.json +3 -3
  113. package/ux/editor/package.json +3 -3
  114. package/ux/package.json +3 -3
  115. package/ux/richtexteditor/package.json +3 -3
  116. package/ux/vuetify/package.json +3 -3
  117. package/internal-do-not-import-from-here/spfx/components/IOmniaWPContainerSettings.d.ts +0 -17
@@ -1,4 +1,5 @@
1
- import { PropertyConfiguration, PropertyDefinition, PropertyValue } from "@omnia/fx-models";
1
+ import { PropertyConfiguration, PropertyDefinition, PropertyValue, PropertyStyles, IPropertyRendererScopedSlots } from "@omnia/fx-models";
2
+ import { ScopedSlots } from "@omnia/fx/ux";
2
3
  declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
3
4
  valueBind: PropertyValue;
4
5
  propertyDefintionId: import("@omnia/fx-models").GuidValue;
@@ -7,6 +8,8 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
7
8
  disabled: boolean;
8
9
  editMode: boolean;
9
10
  persistentLabels: boolean;
11
+ propertyStyles: PropertyStyles;
12
+ scopedSlots: ScopedSlots<IPropertyRendererScopedSlots>;
10
13
  }, "configuration" | "valueBind" | "propertyDefintionId">, any, any, any>> & {
11
14
  propsDefinition: import("vue-tsx-support").PropsForOutside<{
12
15
  valueBind: PropertyValue;
@@ -16,6 +19,8 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
16
19
  disabled: boolean;
17
20
  editMode: boolean;
18
21
  persistentLabels: boolean;
22
+ propertyStyles: PropertyStyles;
23
+ scopedSlots: ScopedSlots<IPropertyRendererScopedSlots>;
19
24
  }, "configuration" | "valueBind" | "propertyDefintionId">;
20
25
  }) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => import("vue").VNode>, {}, import("vue-tsx-support").PropsForOutside<{
21
26
  valueBind: PropertyValue;
@@ -25,6 +30,8 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
25
30
  disabled: boolean;
26
31
  editMode: boolean;
27
32
  persistentLabels: boolean;
33
+ propertyStyles: PropertyStyles;
34
+ scopedSlots: ScopedSlots<IPropertyRendererScopedSlots>;
28
35
  }, "configuration" | "valueBind" | "propertyDefintionId">, any, any, any>> & {
29
36
  propsDefinition: import("vue-tsx-support").PropsForOutside<{
30
37
  valueBind: PropertyValue;
@@ -34,6 +41,8 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
34
41
  disabled: boolean;
35
42
  editMode: boolean;
36
43
  persistentLabels: boolean;
44
+ propertyStyles: PropertyStyles;
45
+ scopedSlots: ScopedSlots<IPropertyRendererScopedSlots>;
37
46
  }, "configuration" | "valueBind" | "propertyDefintionId">;
38
47
  });
39
48
  export default _default;
@@ -1,12 +1,12 @@
1
- import { IWebComponentInstance } from "../..";
2
- import { Comment, OmitProperties, ThemeDefinition, ResolvedUserIdentity, IOmniaContext, IBlockInstance } from "../../models";
3
- import { ICommentComponent } from "./IComment";
4
- import { CommentLocalization } from "./loc/localize";
5
- import "./Comment.css";
6
1
  import { CommentStyles, VueComponentBase } from "..";
7
- import { IRichTextEditor } from "../richtexteditor";
2
+ import { IWebComponentInstance } from "../..";
3
+ import { Comment, IBlockInstance, IOmniaContext, OmitProperties, ResolvedUserIdentity, ThemeDefinition } from "../../models";
8
4
  import { CommentSorting } from "../../models/Social";
9
5
  import { DirectionRuleStore, FeatureStore } from "../../stores";
6
+ import { IRichTextEditor } from "../richtexteditor";
7
+ import "./Comment.css";
8
+ import { ICommentComponent } from "./IComment";
9
+ import { CommentLocalization } from "./loc/localize";
10
10
  export declare class CommentComponent extends VueComponentBase implements IWebComponentInstance, ICommentComponent {
11
11
  private userIdentityStore;
12
12
  directionStore: DirectionRuleStore;
@@ -34,6 +34,10 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
34
34
  contextParams?: {
35
35
  [key: string]: string | number;
36
36
  };
37
+ markedBestReply?: () => void;
38
+ commented?: () => void;
39
+ commentedReply?: () => void;
40
+ reactedSocial?: () => void;
37
41
  private reverseSortOrder;
38
42
  isLoading: boolean;
39
43
  showOnlyBestReply: boolean;
@@ -52,6 +56,10 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
52
56
  currentShowMoreSize: {
53
57
  [id: string]: number;
54
58
  };
59
+ currentReplyCommentKey: {
60
+ [parentId: string]: string;
61
+ };
62
+ currentMainCommentKey: string;
55
63
  private commentClasses;
56
64
  private minIndexToShow;
57
65
  private topComments;
@@ -71,7 +79,8 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
71
79
  isElementInViewport(el: any): boolean;
72
80
  getCommentsCountLabel(commentsCount: number): string;
73
81
  renderTopicComments(): VueTsxSupport.JSX.Element;
74
- renderTopCommentShowMoreOption(id: string): VueTsxSupport.JSX.Element;
82
+ setFocusWhenViewPrevOrMoreComment(parentCommentId: string, commentKey: string): void;
83
+ renderTopCommentShowMoreOption(id: string, replyComment?: boolean): VueTsxSupport.JSX.Element;
75
84
  renderShowAllOption(id: string): VueTsxSupport.JSX.Element;
76
85
  renderMainCommentComponent(comment: Comment, slimSpacing: boolean): VueTsxSupport.JSX.Element;
77
86
  renderCommentsWithChildren(parentComment: Comment): VueTsxSupport.JSX.Element;
@@ -2,7 +2,7 @@ import { IWebComponentInstance, SubscriptionHandler } from "../..";
2
2
  import { ReactionType, ResolvedUserIdentity, UserIdentity, ISocialReactionStyling, ISocialReaction } from "../../models";
3
3
  import { ILikeComponent } from "./ILike";
4
4
  import { CommentLocalization } from "./loc/localize";
5
- import { CommentLikeStore, type ICommentLikeService } from "../../stores";
5
+ import { CommentLikeStore, ICommentLikeService } from "../../stores";
6
6
  import { OmniaContext } from "../../contexts";
7
7
  import "./Like.css";
8
8
  import { LikeStyles } from "../models";
@@ -33,11 +33,13 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
33
33
  styles?: typeof LikeStyles;
34
34
  isCompactMode?: boolean;
35
35
  isSummaryMode?: boolean;
36
+ reactedSocial?: () => void;
36
37
  currentUser: ResolvedUserIdentity;
37
38
  showLikeListing: boolean;
38
39
  socialReactionStylings: Array<ISocialReactionStyling>;
39
40
  isSocialReactionsMode: boolean;
40
41
  isShowingSocialReactionsDetail: boolean;
42
+ isMenuOpen: boolean;
41
43
  currentSocialReaction: ISocialReactionStyling;
42
44
  likeClasses: {
43
45
  likesToShow?: any;
@@ -53,6 +55,7 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
53
55
  replyAndLikeActionLink?: any;
54
56
  };
55
57
  omniaUrl: string;
58
+ isExpandedMode: boolean;
56
59
  beforeDestroy(): void;
57
60
  created(): void;
58
61
  mounted(): void;
@@ -63,6 +66,8 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
63
66
  renderLikedByTitle(likes: Array<ISocialReaction>, likesToShow: Array<LikeUser>): VueTsxSupport.JSX.Element[];
64
67
  onOpenSocialReactionsDetail(): void;
65
68
  onCloseSocialReactionsDetail(): void;
69
+ onOpenSocalReactions(e: Event): void;
70
+ onCloseSocialReactions(): void;
66
71
  renderSocialReactions(): VueTsxSupport.JSX.Element;
67
72
  renderLikes(): VueTsxSupport.JSX.Element[];
68
73
  render(): VueTsxSupport.JSX.Element;
@@ -25,6 +25,7 @@ export declare module CommentLocalization {
25
25
  DeleteComment: string;
26
26
  ConfirmDelete: string;
27
27
  ValidateCommentMessage: string;
28
+ EditActionsButtonArialLabel: string;
28
29
  CommentCountLabel: {
29
30
  ZeroComment: string;
30
31
  OneComment: string;
@@ -24,6 +24,10 @@ export declare class CommentLikeTemplate extends VueComponentBase<{}, {}, {}> im
24
24
  cardStyle?: ThemeDefinition;
25
25
  hideEdit?: boolean;
26
26
  readOnly?: boolean;
27
+ markedBestReply?: () => void;
28
+ commented?: () => void;
29
+ commentedReply?: () => void;
30
+ reactedSocial?: () => void;
27
31
  private omniaUxLocalization;
28
32
  private commentLoc;
29
33
  identityLoc: IdentitiesLocalization.locInterface;
@@ -46,6 +50,7 @@ export declare class CommentLikeTemplate extends VueComponentBase<{}, {}, {}> im
46
50
  private observer;
47
51
  private isValidComment;
48
52
  private deleteDialogModel;
53
+ private useAccessibilityFeatures;
49
54
  private get isAdd();
50
55
  private get isReply();
51
56
  private get isMobile();
@@ -0,0 +1,4 @@
1
+ import { TokenDefinition } from "@omnia/fx-models";
2
+ export declare class UserTokenDefinition extends TokenDefinition<string> {
3
+ prefixToken: string;
4
+ }
@@ -35,5 +35,8 @@ export declare module UserPropertyProviderLocalization {
35
35
  TimeProperty: string;
36
36
  UserIdentityProperty: string;
37
37
  };
38
+ Tokens: {
39
+ Username: string;
40
+ };
38
41
  }
39
42
  }
@@ -1 +1 @@
1
- {"omfx-enterpriseproperties-taxonomyfield-value-definition":["availableParents"],"omfx-sp-language-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-targeting-filter":["filter","onFilterChanged","fullWidth"],"omfx-term-picker":["startWithIds","termSetId","preSelectedTermIds","lcid","onTermsSelected","filterOptions","validator","description"],"omfx-termset-picker":["termSetId","onChanged"],"omnia-fx-spfx-wp-settings":["onClosed","onChange"],"omfx-queryable-enterpriseproperties":["serviceId","additionalBuiltInProperties "],"omfx-app-instance-delete-blade":["appInstance","handleClose","handleDeleteCompleted"],"omfx-appinstance-editing-journey":["appInstance","content","onCanceled","onSave","onCompleted"],"omfx-app-instance-permission-blade":["appInstance","handleClose","onAppPermissionsUpdated"],"omfx-app-instance-information-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-users-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-enterprise-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-provisioning-wizard":["initialAppTemplate","initialAppDefinition","initialAppInstance","onInstancePropertiesChanged","onProvisioningStarted","onProvisioningCompleted","styles","templatesToShow"],"omfx-button":["preset","icon","tooltip","size","mode","styles","onClick"],"omfx-color-picker":["display","valueBind","onValueChanged","errorMessages","validator","attachedToParent"],"omfx-confirm-dialog":["dialogOptions","onClose","styles","icon"],"omfx-connected-tenant":["onValueChanged","scopedSlots"],"omfx-context-language-picker":["onValueChanged","scopedSlots"],"omfx-datatable":["items","header","onSort","renderItem","onPaging","scrollElementSelector"],"omfx-date-time-picker":["valueBind","onValueChanged","formatter","description"],"omfx-enterpriseproperties-datetimefield-display":["settings"],"omfx-enterpriseproperty-picker":["preSelectedPropertyInternalName","propertyItems","externalPropertyItems","onChange","requiredWithValidator","excludedPropertyTypeIds"],"omfx-enterprisepropertyset-picker":["preSelectedPropertySetId","propertySetItems","onChange","requiredWithValidator"],"omfx-features-journey":["onInstanceClosed"],"omfx-file-uploader":["onFileChanged","limitedFileTypes"],"omfx-numeric-indicator":["clickCallback","valueBind","label","style"],"omfx-barchart-indicator":["clickCallback","loadData","hasData","chartValues"],"omfx-heading":["styles","onChange"],"omfx-icon":["valueBind","styles","iconAttrs"],"omfx-icon-picker":["valueBind","onValueChanged","errorMessages","validator"],"omfx-iframe":["js","html","css","iframeHeight","iframeCustomStyle"],"omfx-media-imagegrid":["images","onImageSelected","searchStatus"],"omfx-input-language-picker":["multilingualContext"],"omfx-journey":["onInstanceCreated","onInstanceClosed","blades"],"omfx-language-picker":["valueBind","onValueChanged","scopedSlots","styles","loadLanguage"],"omfx-media-picker-image":["image","imageStyle"],"omfx-media-picker-video":["video"],"omfx-multilingual-input":["valueBind","richTextSettings","requiredWithValidator","onValueChanged"],"omfx-organizationtree":["valueBind","onNewUserSelected"],"omfx-reportees":["users","manager","onUserClick"],"omfx-permission-input":["settings","contextParams"],"omfx-persona":["largeImage","linkToProfilecard","highlight","user","onUserClick"],"omfx-post-component":["richTextSettings","cardStyle","showMoreSize","styles","allowLikes","enableMention","customSlots"],"omfx-aboutuser":["user"],"omfx-profilecard":["user","scopedSlots","appendToBody"],"omfx-profilecard-dialog":["user"],"omfx-rich-text-editor":["onContentChange","onContentDataChange","onInstanceCreated"],"omfx-rich-text-editor-renderer":["editorContent","editorContent"],"omfx-rollup-empty":["text","renderingMode"],"omfx-rollup-filter":["valueBind","onFilterChange","useRollupFilterRouter"],"omfx-security-trimer":["content","alternativeContent","roles"],"omfx-settings-pane":["valueBind","onCancel","onSave"],"omfx-comment-component":["topicId","comments","template","dynamicInput","richTextSettings","enableBestReply","canMarkBestReply","sortOrder","allowLikes","cardStyle","showMoreSize","additionalRoles"],"omfx-people-tagging-component":["content","disabled","richTextSettings","enableMention","contentChanged","mentionChanged","resetContetnRte"],"omfx-like-component":["topicId","commendId","commentLikeService","likes","likeListingTemplate","extendComponents"],"omfx-like-listing-template":["likes","socialReactionStylings","currentSocialReaction","close"],"omfx-spacing-picker":["valueBind","onValueChanged"],"omfx-status-message-overlay":["content"],"omfx-template-picker":["valueBind","templates","onValueChanged"],"omfx-text-translator":["onTranslateCompleted"],"omfx-themedefinition-editor":["hideBodySettings","hideChromeSettings","hideBorderSettings","valueBind","onValueChanged","attachedToParent"],"omfx-timezone-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-url-input":["valueBind","requiredWithValidator","onValueChanged","onBlur"],"omfx-field-validation":["useValidator","checkValue","rules","getCheckValue"],"omfx-wizard":["styles","onInstanceCreated","steps"]}
1
+ {"omfx-enterpriseproperties-taxonomyfield-value-definition":["availableParents"],"omfx-sp-language-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-targeting-filter":["filter","onFilterChanged","fullWidth"],"omfx-term-picker":["startWithIds","termSetId","preSelectedTermIds","lcid","onTermsSelected","filterOptions","validator","description"],"omfx-termset-picker":["termSetId","onChanged"],"omfx-queryable-enterpriseproperties":["serviceId","additionalBuiltInProperties "],"omfx-app-instance-delete-blade":["appInstance","handleClose","handleDeleteCompleted"],"omfx-appinstance-editing-journey":["appInstance","content","onCanceled","onSave","onCompleted"],"omfx-app-instance-permission-blade":["appInstance","handleClose","onAppPermissionsUpdated"],"omfx-app-instance-information-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-users-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-enterprise-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-provisioning-wizard":["initialAppTemplate","initialAppDefinition","initialAppInstance","onInstancePropertiesChanged","onProvisioningStarted","onProvisioningCompleted","styles","templatesToShow"],"omfx-button":["preset","icon","tooltip","size","mode","styles","onClick","onKeyDown","tabindex"],"omfx-color-picker":["display","valueBind","onValueChanged","errorMessages","validator","attachedToParent"],"omfx-confirm-dialog":["dialogOptions","onClose","styles","icon"],"omfx-connected-tenant":["onValueChanged","scopedSlots"],"omfx-context-language-picker":["onValueChanged","scopedSlots"],"omfx-datatable":["items","header","onSort","renderItem","onPaging","scrollElementSelector"],"omfx-date-time-picker":["valueBind","onValueChanged","formatter","description"],"omfx-enterpriseproperties-datetimefield-display":["settings"],"omfx-enterpriseproperty-picker":["preSelectedPropertyInternalName","propertyItems","externalPropertyItems","onChange","requiredWithValidator","excludedPropertyTypeIds"],"omfx-enterprisepropertyset-picker":["preSelectedPropertySetId","propertySetItems","onChange","requiredWithValidator"],"omfx-features-journey":["onInstanceClosed"],"omfx-file-uploader":["onFileChanged","limitedFileTypes"],"omfx-numeric-indicator":["clickCallback","valueBind","label","style"],"omfx-barchart-indicator":["clickCallback","loadData","hasData","chartValues"],"omfx-heading":["styles","onChange"],"omfx-icon":["valueBind","styles","iconAttrs"],"omfx-icon-picker":["valueBind","onValueChanged","errorMessages","validator"],"omfx-iframe":["js","html","css","iframeHeight","iframeCustomStyle"],"omfx-media-imagegrid":["images","onImageSelected","searchStatus"],"omfx-input-language-picker":["multilingualContext"],"omfx-journey":["onInstanceCreated","onInstanceClosed","blades"],"omfx-language-picker":["valueBind","onValueChanged","scopedSlots","styles","loadLanguage"],"omfx-media-picker-image":["image","imageStyle"],"omfx-media-picker-video":["video"],"omfx-multilingual-input":["valueBind","richTextSettings","requiredWithValidator","onValueChanged"],"omfx-organizationtree":["valueBind","onNewUserSelected"],"omfx-reportees":["users","manager","onUserClick"],"omfx-permission-input":["settings","contextParams"],"omfx-persona":["largeImage","linkToProfilecard","highlight","user","onUserClick"],"omfx-post-component":["richTextSettings","cardStyle","showMoreSize","styles","allowLikes","enableMention","customSlots"],"omfx-aboutuser":["user"],"omfx-profilecard":["user","scopedSlots","appendToBody"],"omfx-profilecard-dialog":["user"],"omfx-rich-text-editor":["onContentChange","onContentDataChange","onInstanceCreated"],"omfx-rich-text-editor-renderer":["editorContent","editorContent"],"omfx-rollup-empty":["text","renderingMode"],"omfx-rollup-filter":["valueBind","onFilterChange","useRollupFilterRouter"],"omfx-security-trimer":["content","alternativeContent","roles"],"omfx-settings-pane":["valueBind","onCancel","onSave"],"omfx-comment-component":["topicId","comments","template","dynamicInput","richTextSettings","enableBestReply","canMarkBestReply","sortOrder","allowLikes","cardStyle","showMoreSize","additionalRoles"],"omfx-people-tagging-component":["content","disabled","richTextSettings","enableMention","contentChanged","mentionChanged","resetContetnRte"],"omfx-like-component":["topicId","commendId","commentLikeService","likes","likeListingTemplate","extendComponents"],"omfx-like-listing-template":["likes","socialReactionStylings","currentSocialReaction","close"],"omfx-spacing-picker":["valueBind","onValueChanged"],"omfx-status-message-overlay":["content"],"omfx-template-picker":["valueBind","templates","onValueChanged"],"omfx-text-translator":["onTranslateCompleted"],"omfx-themedefinition-editor":["hideBodySettings","hideChromeSettings","hideBorderSettings","valueBind","onValueChanged","attachedToParent"],"omfx-timezone-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-url-input":["valueBind","requiredWithValidator","onValueChanged","onBlur"],"omfx-field-validation":["useValidator","checkValue","rules","getCheckValue"],"omfx-wizard":["styles","onInstanceCreated","steps"]}
@@ -6,9 +6,16 @@ import wcded30c240e6c4688955867472a8d0a02 from '../../fx-sp/internal-do-not-impo
6
6
  import wc0fb3af1182d849fc89b04ed67949091e from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/ExtendedTaxonomyPropertyDefaultValueInput';
7
7
  import wc28d15a1179a04eaa9f2e82abe15f7177 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/TaxonomyPropertyRenderer';
8
8
  import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/SelectionsAreaTaxonomyRenderer';
9
+ import wc4584d438a74748ab9ae5f9f4f431673f from '../../fx-sp/internal-do-not-import-from-here/ux/listtree/ListTree';
9
10
  import wc7332138e1e7845d1a5e62597a27e44a4 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetDisplay';
10
11
  import wc83dee8a1eea84537ad9544e8b9fc4cb1 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetEditor';
11
12
  import wca9cc1e1ff5894f4db7005bc49c6c47c5 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetConfiguration';
13
+ import wc5057354b14bb430e854a22e21d9ab7af from './spfx/components/OmniaWPContainerSettings';
14
+ import wca7105d996040472b8d55819f99a434db from './spfx/components/OmniaWPContainer';
15
+ import wc4d6cad2f0eb948e1aaefae35edab238c from './spfx/components/OmniaWPStandaloneContainer';
16
+ import wcd291917a0dd44ad0a96370e8f53be808 from './spfx/components/renderer/Settings';
17
+ import wc3a5a2bb94382402ba9927797758c1269 from './ux/analytics/metric/Metric';
18
+ import wc4d83f393bd894ea0b1c3eb4ebce3ad19 from './ux/analyticssettings/AnalyticsSettings';
12
19
  import wca8f8d41d8ceb43e0b16398c209fd6b32 from './ux/app/appinstance/renderer/AppInstanceRollup';
13
20
  import wc99576cfe75504d4babc4575e968f3f9c from './ux/app/appinstance/renderer/AppInstanceRollupRenderer';
14
21
  import wcfb44f129de804adbb2f134176c1c17a5 from './ux/app/appinstance/renderer/metric/MetricDetailsDialogRenderer';
@@ -178,9 +185,16 @@ declare global {
178
185
  "omfx-filterengine-extended-taxonomy-defaultvalue-input": base.CombinedTsxComponentAttrs<typeof wc0fb3af1182d849fc89b04ed67949091e.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
179
186
  "omfx-taxonomy-filterengine-renderer": base.CombinedTsxComponentAttrs<typeof wc28d15a1179a04eaa9f2e82abe15f7177.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
180
187
  "omfx-filterengine-selectionsarea-taxonomyproperty": base.CombinedTsxComponentAttrs<typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
188
+ "omfx-sp-list-tree": base.CombinedTsxComponentAttrs<typeof wc4584d438a74748ab9ae5f9f4f431673f.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
181
189
  "omfx-properties-term-set-display": base.CombinedTsxComponentAttrs<typeof wc7332138e1e7845d1a5e62597a27e44a4.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
182
190
  "omfx-properties-term-set-editor": base.CombinedTsxComponentAttrs<typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
183
191
  "omfx-properties-term-set-configuration": base.CombinedTsxComponentAttrs<typeof wca9cc1e1ff5894f4db7005bc49c6c47c5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
192
+ "omnia-fx-spfx-wp-settings": base.CombinedTsxComponentAttrs<typeof wc5057354b14bb430e854a22e21d9ab7af.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
193
+ "omnia-fx-spfx-wp": base.CombinedTsxComponentAttrs<typeof wca7105d996040472b8d55819f99a434db.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
194
+ "omnia-fx-spfx-wp-standalone": base.CombinedTsxComponentAttrs<typeof wc4d6cad2f0eb948e1aaefae35edab238c.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
195
+ "omnia-fx-spfx-wp-settings-renderer": base.CombinedTsxComponentAttrs<typeof wcd291917a0dd44ad0a96370e8f53be808.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
196
+ "omfx-metric-renderer": base.CombinedTsxComponentAttrs<typeof wc3a5a2bb94382402ba9927797758c1269.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
197
+ "omfx-analytics-settings": base.CombinedTsxComponentAttrs<typeof wc4d83f393bd894ea0b1c3eb4ebce3ad19.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
184
198
  "omfx-app-instance-rollup": base.CombinedTsxComponentAttrs<typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
185
199
  "omfx-app-instance-rollup-renderer": base.CombinedTsxComponentAttrs<typeof wc99576cfe75504d4babc4575e968f3f9c.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
186
200
  "omfx-app-instance-rollup-metric-detail": base.CombinedTsxComponentAttrs<typeof wcfb44f129de804adbb2f134176c1c17a5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx messaging",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx models",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.7.93-preview",
4
+ "version": "7.8.0",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/preciofishbone/OmniaFx.git"
12
+ "url": "git+https://github.com/omniaintranet/OmniaFx.git"
13
13
  },
14
14
  "keywords": [
15
15
  "omnia",
@@ -18,9 +18,9 @@
18
18
  "office365",
19
19
  "sharepoint"
20
20
  ],
21
- "author": "Precio Fishbone",
21
+ "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "7.7.93-preview",
23
+ "@omnia/fx-models": "7.8.0",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -54,7 +54,7 @@
54
54
  "devDependencies": {},
55
55
  "typings": "./index.d.ts",
56
56
  "bugs": {
57
- "url": "https://github.com/preciofishbone/OmniaFx/issues"
57
+ "url": "https://github.com/omniaintranet/OmniaFx/issues"
58
58
  },
59
- "homepage": "https://github.com/preciofishbone/OmniaFx#readme"
59
+ "homepage": "https://github.com/omniaintranet/OmniaFx#readme"
60
60
  }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx services",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx sp",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
package/sp/package.json CHANGED
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx sp",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
package/spfx/package.json CHANGED
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx spfx",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx spfx tooling",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia Fx Stores",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx.git"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx.git"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux admin",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux app",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux app",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
package/ux/package.json CHANGED
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux admin",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -3,10 +3,10 @@
3
3
  "version": "1.0.0",
4
4
  "description": "Omnia fx ux vuetify",
5
5
  "typings": "./index.d.ts",
6
- "author": "Precio Fishbone",
6
+ "author": "Omnia Digital Workplace AB",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/preciofishbone/OmniaFx"
10
+ "url": "git+https://github.com/omniaintranet/OmniaFx"
11
11
  }
12
- }
12
+ }
@@ -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
- }