@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
|
@@ -57,6 +57,7 @@ export declare class PostTemplate extends VueComponentBase<{}, {}, {}> implement
|
|
|
57
57
|
private draftMentionUsers;
|
|
58
58
|
private customCardThemeId;
|
|
59
59
|
private childTargetThemeId;
|
|
60
|
+
private useAccessibilityFeatures;
|
|
60
61
|
private dialogModel;
|
|
61
62
|
private deleteDialogModel;
|
|
62
63
|
onPostChange(newValue: IPersistedPost<IPostBaseWithContext<IPostBaseContext>>, oldValue: IPersistedPost<IPostBaseWithContext<IPostBaseContext>>): void;
|
|
@@ -79,6 +80,7 @@ export declare class PostTemplate extends VueComponentBase<{}, {}, {}> implement
|
|
|
79
80
|
onMentionUpdate(mentionUsers: Array<ResolvedUserIdentity>): void;
|
|
80
81
|
onEditPostClicked(): void;
|
|
81
82
|
getCommentLikeService(): ILikeService;
|
|
83
|
+
loadRTE(): void;
|
|
82
84
|
private renderUserLink;
|
|
83
85
|
/**
|
|
84
86
|
* Render title for post
|
|
@@ -13,6 +13,9 @@ export interface IProfileCard {
|
|
|
13
13
|
color?: string;
|
|
14
14
|
href?: string;
|
|
15
15
|
ripple?: boolean;
|
|
16
|
+
linkTabIndex?: number;
|
|
17
|
+
onSetFocus?: () => void;
|
|
18
|
+
onClickProxy?: (handler: (e: Event) => void) => void;
|
|
16
19
|
}
|
|
17
20
|
declare global {
|
|
18
21
|
namespace VueTsxSupport.JSX {
|
|
@@ -16,23 +16,29 @@ export declare class ProfileCardComponent extends VueComponentBase<IProfileCard>
|
|
|
16
16
|
color?: string;
|
|
17
17
|
href?: string;
|
|
18
18
|
ripple: boolean;
|
|
19
|
+
linkTabIndex?: number;
|
|
20
|
+
onSetFocus?: () => void;
|
|
21
|
+
onClickProxy?: (handler: (e: Event) => void) => void;
|
|
19
22
|
profileCardStore: ProfileCardStore;
|
|
20
23
|
dataSourcePropertiesService: DataSourcePropertiesService;
|
|
21
24
|
omniaCtx: OmniaContext;
|
|
22
25
|
omniaTheming: OmniaTheming;
|
|
23
26
|
featureStore: FeatureStore;
|
|
24
27
|
private userIdentityStore;
|
|
28
|
+
private focusStore;
|
|
25
29
|
private profileClasses;
|
|
26
30
|
private tenantPeopleInfo;
|
|
27
31
|
private showLinkToDelve;
|
|
28
32
|
private isOmniaUser;
|
|
29
33
|
private resolvedUser;
|
|
34
|
+
private accessibilityEnabled;
|
|
30
35
|
created(): void;
|
|
31
36
|
beforeDestroy(): void;
|
|
32
37
|
hasSlot(): boolean;
|
|
33
38
|
mounted(): void;
|
|
34
39
|
private isUseTheExistingProfileCard;
|
|
35
40
|
onOpenDialog(): void;
|
|
41
|
+
private readonly refKey;
|
|
36
42
|
private handleCustomClick;
|
|
37
43
|
render(): string | VueTsxSupport.JSX.Element | JSX.Element[];
|
|
38
44
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IPropertyConfigurationRenderer, PhoneNumberPropertyDefinition } from "@omnia/fx-models";
|
|
2
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>, never>, any, any, any>> & {
|
|
3
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>, never>;
|
|
4
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<any>, {}, import("vue-tsx-support").PropsForOutside<IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>, never>, any, any, any>> & {
|
|
5
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>, never>;
|
|
6
|
+
});
|
|
7
|
+
export default _default;
|
|
@@ -17,5 +17,6 @@ export interface IPropertyPicker {
|
|
|
17
17
|
selectionProperty?: IDataSourcePropertySelection;
|
|
18
18
|
selectablePropertyConverters?: Array<GuidValue>;
|
|
19
19
|
hideLabelIfSingleSource?: boolean;
|
|
20
|
-
|
|
20
|
+
hideConverter?: boolean;
|
|
21
|
+
keepSelectionAfterAdd?: boolean;
|
|
21
22
|
}
|
package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts
CHANGED
|
@@ -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;
|
package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import { IdentityCreationRequestCreatedResponse } from "@omnia/fx-models";
|
|
2
2
|
declare const IdentityCreationRequestConfirmEmailView: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
3
3
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
4
|
-
|
|
4
|
+
magicLinkExpiration: number;
|
|
5
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">, any, any, any>> & {
|
|
5
6
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
6
7
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
7
|
-
|
|
8
|
+
magicLinkExpiration: number;
|
|
9
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">;
|
|
8
10
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
9
11
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
10
|
-
|
|
12
|
+
magicLinkExpiration: number;
|
|
13
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">, any, any, any>> & {
|
|
11
14
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
12
15
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
13
|
-
|
|
16
|
+
magicLinkExpiration: number;
|
|
17
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">;
|
|
14
18
|
});
|
|
15
19
|
export default IdentityCreationRequestConfirmEmailView;
|
|
@@ -8,7 +8,7 @@ export declare module SignInLocalization {
|
|
|
8
8
|
Login: string;
|
|
9
9
|
SendMagicLink: string;
|
|
10
10
|
MagicLinkIsValidMessage: string;
|
|
11
|
-
|
|
11
|
+
MagicLinkValidTimeInMinutesMessage: string;
|
|
12
12
|
MagicLinkValidPeriodMessage: string;
|
|
13
13
|
MagicLinkValidUnit: string;
|
|
14
14
|
Password: {
|
|
@@ -40,7 +40,7 @@ export declare module SignInLocalization {
|
|
|
40
40
|
Email: string;
|
|
41
41
|
Send: string;
|
|
42
42
|
Retry: string;
|
|
43
|
-
|
|
43
|
+
SendResetPasswordMessageTooltip: string;
|
|
44
44
|
SentResetPasswordMessage: string;
|
|
45
45
|
SendResetPasswordError: string;
|
|
46
46
|
RetryResetPasswordWarning: string;
|
|
@@ -56,6 +56,10 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
|
|
|
56
56
|
currentShowMoreSize: {
|
|
57
57
|
[id: string]: number;
|
|
58
58
|
};
|
|
59
|
+
currentReplyCommentKey: {
|
|
60
|
+
[parentId: string]: string;
|
|
61
|
+
};
|
|
62
|
+
currentMainCommentKey: string;
|
|
59
63
|
private commentClasses;
|
|
60
64
|
private minIndexToShow;
|
|
61
65
|
private topComments;
|
|
@@ -75,7 +79,8 @@ export declare class CommentComponent extends VueComponentBase implements IWebCo
|
|
|
75
79
|
isElementInViewport(el: any): boolean;
|
|
76
80
|
getCommentsCountLabel(commentsCount: number): string;
|
|
77
81
|
renderTopicComments(): VueTsxSupport.JSX.Element;
|
|
78
|
-
|
|
82
|
+
setFocusWhenViewPrevOrMoreComment(parentCommentId: string, commentKey: string): void;
|
|
83
|
+
renderTopCommentShowMoreOption(id: string, replyComment?: boolean): VueTsxSupport.JSX.Element;
|
|
79
84
|
renderShowAllOption(id: string): VueTsxSupport.JSX.Element;
|
|
80
85
|
renderMainCommentComponent(comment: Comment, slimSpacing: boolean): VueTsxSupport.JSX.Element;
|
|
81
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,
|
|
5
|
+
import { CommentLikeStore, ICommentLikeService } from "../../stores";
|
|
6
6
|
import { OmniaContext } from "../../contexts";
|
|
7
7
|
import "./Like.css";
|
|
8
8
|
import { LikeStyles } from "../models";
|
|
@@ -39,6 +39,7 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
|
|
|
39
39
|
socialReactionStylings: Array<ISocialReactionStyling>;
|
|
40
40
|
isSocialReactionsMode: boolean;
|
|
41
41
|
isShowingSocialReactionsDetail: boolean;
|
|
42
|
+
isMenuOpen: boolean;
|
|
42
43
|
currentSocialReaction: ISocialReactionStyling;
|
|
43
44
|
likeClasses: {
|
|
44
45
|
likesToShow?: any;
|
|
@@ -54,6 +55,7 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
|
|
|
54
55
|
replyAndLikeActionLink?: any;
|
|
55
56
|
};
|
|
56
57
|
omniaUrl: string;
|
|
58
|
+
isExpandedMode: boolean;
|
|
57
59
|
beforeDestroy(): void;
|
|
58
60
|
created(): void;
|
|
59
61
|
mounted(): void;
|
|
@@ -64,6 +66,8 @@ export declare class LikeComponent extends VueComponentBase implements IWebCompo
|
|
|
64
66
|
renderLikedByTitle(likes: Array<ISocialReaction>, likesToShow: Array<LikeUser>): VueTsxSupport.JSX.Element[];
|
|
65
67
|
onOpenSocialReactionsDetail(): void;
|
|
66
68
|
onCloseSocialReactionsDetail(): void;
|
|
69
|
+
onOpenSocalReactions(e: Event): void;
|
|
70
|
+
onCloseSocialReactions(): void;
|
|
67
71
|
renderSocialReactions(): VueTsxSupport.JSX.Element;
|
|
68
72
|
renderLikes(): VueTsxSupport.JSX.Element[];
|
|
69
73
|
render(): VueTsxSupport.JSX.Element;
|
|
@@ -50,6 +50,7 @@ export declare class CommentLikeTemplate extends VueComponentBase<{}, {}, {}> im
|
|
|
50
50
|
private observer;
|
|
51
51
|
private isValidComment;
|
|
52
52
|
private deleteDialogModel;
|
|
53
|
+
private useAccessibilityFeatures;
|
|
53
54
|
private get isAdd();
|
|
54
55
|
private get isReply();
|
|
55
56
|
private get isMobile();
|
|
@@ -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"],"
|
|
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,10 +6,14 @@ 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';
|
|
12
15
|
import wc4d6cad2f0eb948e1aaefae35edab238c from './spfx/components/OmniaWPStandaloneContainer';
|
|
16
|
+
import wcd291917a0dd44ad0a96370e8f53be808 from './spfx/components/renderer/Settings';
|
|
13
17
|
import wc3a5a2bb94382402ba9927797758c1269 from './ux/analytics/metric/Metric';
|
|
14
18
|
import wc4d83f393bd894ea0b1c3eb4ebce3ad19 from './ux/analyticssettings/AnalyticsSettings';
|
|
15
19
|
import wca8f8d41d8ceb43e0b16398c209fd6b32 from './ux/app/appinstance/renderer/AppInstanceRollup';
|
|
@@ -124,6 +128,7 @@ import wc784d162feec24424a993d8ba812b9c94 from './ux/properties/builtins/multili
|
|
|
124
128
|
import wc4abd8ef8e96f4beca6d375984132b6ec from './ux/properties/builtins/multilingualText/MultilingualTextEditor';
|
|
125
129
|
import wcae83e3f39ff443b8abb93e483c14f48f from './ux/properties/builtins/phone-number/PhoneNumberDisplay';
|
|
126
130
|
import wcaad7c8da16f04a46b9503564b10a8f34 from './ux/properties/builtins/phone-number/PhoneNumberEditor';
|
|
131
|
+
import wcc2853e34fdbd45ec9118b7fd4323b751 from './ux/properties/builtins/phone-number/PhoneNumberConfiguration';
|
|
127
132
|
import wc13f465ea57024a47ae66d4bf1d927974 from './ux/properties/builtins/tags/TagsDisplay';
|
|
128
133
|
import wc4fc24b6b58014b5f9a3474a8f5cc4f00 from './ux/properties/builtins/tags/TagsEditor';
|
|
129
134
|
import wcdf429c59a8ec42cf8ec34907705793a9 from './ux/properties/builtins/text/TextDisplay';
|
|
@@ -180,10 +185,14 @@ declare global {
|
|
|
180
185
|
"omfx-filterengine-extended-taxonomy-defaultvalue-input": base.CombinedTsxComponentAttrs<typeof wc0fb3af1182d849fc89b04ed67949091e.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
181
186
|
"omfx-taxonomy-filterengine-renderer": base.CombinedTsxComponentAttrs<typeof wc28d15a1179a04eaa9f2e82abe15f7177.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
182
187
|
"omfx-filterengine-selectionsarea-taxonomyproperty": base.CombinedTsxComponentAttrs<typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
188
|
+
"omfx-sp-list-tree": base.CombinedTsxComponentAttrs<typeof wc4584d438a74748ab9ae5f9f4f431673f.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
183
189
|
"omfx-properties-term-set-display": base.CombinedTsxComponentAttrs<typeof wc7332138e1e7845d1a5e62597a27e44a4.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
184
190
|
"omfx-properties-term-set-editor": base.CombinedTsxComponentAttrs<typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
185
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;
|
|
186
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;
|
|
187
196
|
"omfx-metric-renderer": base.CombinedTsxComponentAttrs<typeof wc3a5a2bb94382402ba9927797758c1269.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
188
197
|
"omfx-analytics-settings": base.CombinedTsxComponentAttrs<typeof wc4d83f393bd894ea0b1c3eb4ebce3ad19.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
189
198
|
"omfx-app-instance-rollup": base.CombinedTsxComponentAttrs<typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
@@ -298,6 +307,7 @@ declare global {
|
|
|
298
307
|
"omfx-properties-multilingualtext-editor": base.CombinedTsxComponentAttrs<typeof wc4abd8ef8e96f4beca6d375984132b6ec.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
299
308
|
"omfx-properties-phone-number-display": base.CombinedTsxComponentAttrs<typeof wcae83e3f39ff443b8abb93e483c14f48f.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
300
309
|
"omfx-properties-phone-number-editor": base.CombinedTsxComponentAttrs<typeof wcaad7c8da16f04a46b9503564b10a8f34.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
310
|
+
"omfx-properties-phone-number-configuration": base.CombinedTsxComponentAttrs<typeof wcc2853e34fdbd45ec9118b7fd4323b751.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
301
311
|
"omfx-properties-tags-display": base.CombinedTsxComponentAttrs<typeof wc13f465ea57024a47ae66d4bf1d927974.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
302
312
|
"omfx-properties-tags-editor": base.CombinedTsxComponentAttrs<typeof wc4fc24b6b58014b5f9a3474a8f5cc4f00.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
303
313
|
"omfx-properties-text-display": base.CombinedTsxComponentAttrs<typeof wcdf429c59a8ec42cf8ec34907705793a9.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
package/messaging/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Omnia fx messaging",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/models/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Omnia fx models",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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.8.14
|
|
4
|
+
"version": "7.8.14",
|
|
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/
|
|
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": "
|
|
21
|
+
"author": "Omnia Digital Workplace AB",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.8.14
|
|
23
|
+
"@omnia/fx-models": "7.8.14",
|
|
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/
|
|
57
|
+
"url": "https://github.com/omniaintranet/OmniaFx/issues"
|
|
58
58
|
},
|
|
59
|
-
"homepage": "https://github.com/
|
|
59
|
+
"homepage": "https://github.com/omniaintranet/OmniaFx#readme"
|
|
60
60
|
}
|
package/services/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Omnia fx services",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/sp/models/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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/stores/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Omnia Fx Stores",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx.git"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/ux/admin/package.json
CHANGED
|
@@ -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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/ux/app/package.json
CHANGED
|
@@ -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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/ux/editor/package.json
CHANGED
|
@@ -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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|
package/ux/vuetify/package.json
CHANGED
|
@@ -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": "
|
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
}
|