@omnia/fx 7.8.7-preview → 7.8.9-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/stores/ProfileCardHandlerStore.d.ts +16 -10
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/models/CommentStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileSwitchingBtn.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/profilecard/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
|
@@ -1,19 +1,25 @@
|
|
|
1
|
+
import { OmniaContext } from "../contexts";
|
|
2
|
+
import { UserTypeLayoutMode } from "../models";
|
|
1
3
|
import { Store } from "./Store";
|
|
4
|
+
import { UserTypeStore } from "./UserTypeStore";
|
|
5
|
+
import { VersionedLayoutStore } from "./VersionedLayoutStore";
|
|
2
6
|
export declare class ProfileCardHandlerStore extends Store {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
7
|
+
omniaContext: OmniaContext;
|
|
8
|
+
userTypeStore: UserTypeStore;
|
|
9
|
+
versionedLayoutStore: VersionedLayoutStore;
|
|
10
|
+
onActivated(): Promise<void>;
|
|
11
|
+
mode: import("./Store").StoreState<UserTypeLayoutMode>;
|
|
12
|
+
isUsingProfileCard: import("./Store").StoreState<boolean>;
|
|
6
13
|
getters: {
|
|
7
|
-
|
|
8
|
-
|
|
14
|
+
getLayoutMode: () => UserTypeLayoutMode;
|
|
15
|
+
isUsingProfileCard: () => boolean;
|
|
9
16
|
};
|
|
10
17
|
mutations: {
|
|
11
|
-
|
|
12
|
-
setIsSaving: import("./Store").StoreMutation<(value: boolean) => void, (value: boolean) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
|
18
|
+
setMode: import("./Store").StoreMutation<(value: UserTypeLayoutMode) => void, (value: UserTypeLayoutMode) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
|
13
19
|
};
|
|
14
20
|
actions: {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
switchMode: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
22
|
+
useProfileCard: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
23
|
+
stopUsingProfileCard: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
18
24
|
};
|
|
19
25
|
}
|
|
@@ -42,6 +42,7 @@ export declare class DateTimePicker extends VueComponentBase implements IWebComp
|
|
|
42
42
|
private isError;
|
|
43
43
|
private defaultFormatter;
|
|
44
44
|
private isMobileMode;
|
|
45
|
+
private isClicking;
|
|
45
46
|
onValueBindChanged(newValue: string): void;
|
|
46
47
|
created(): void;
|
|
47
48
|
mounted(): void;
|
package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IWebComponentInstance } from "../../../";
|
|
2
|
+
import { IUnsplashProviderComponent } from "./IUnsplashProvider";
|
|
3
|
+
import { GridViewMediaProviderComponent } from "../mediaproviderbase/GridViewMediaProviderComponent";
|
|
4
|
+
import { ImageItem, VideoItem, ImageInformation, VideoInformation, MediaPickerImageTransformationResult, MediaPickerVideo } from "@omnia/fx-models";
|
|
5
|
+
export declare class UnsplashProviderComponent extends GridViewMediaProviderComponent implements IWebComponentInstance, IUnsplashProviderComponent {
|
|
6
|
+
getMediaItems(searchKeyword: string): Promise<Array<ImageItem | VideoItem>>;
|
|
7
|
+
getMoreMediaItems(lastLoadedIndex: number): Promise<Array<ImageItem | VideoItem>>;
|
|
8
|
+
getMediaInfo(mediaItem: ImageItem | VideoItem): Promise<ImageInformation | VideoInformation>;
|
|
9
|
+
beforeSaved(resultToBeSaved: MediaPickerImageTransformationResult | VideoInformation): Promise<MediaPickerImageTransformationResult | MediaPickerVideo>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
2
|
+
isMobileMode: boolean;
|
|
3
|
+
}, never>, any, any, any>> & {
|
|
4
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
5
|
+
isMobileMode: boolean;
|
|
6
|
+
}, never>;
|
|
7
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
8
|
+
isMobileMode: boolean;
|
|
9
|
+
}, never>, any, any, any>> & {
|
|
10
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
11
|
+
isMobileMode: boolean;
|
|
12
|
+
}, never>;
|
|
13
|
+
});
|
|
14
|
+
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GuidValue, LayoutRendererCanvasApi, UserTypeLayoutMode } from "@omnia/fx-models";
|
|
2
1
|
import { ServiceContainerContext } from "@omnia/fx";
|
|
2
|
+
import { GuidValue, LayoutRendererCanvasApi, UserTypeLayoutMode } from "@omnia/fx-models";
|
|
3
3
|
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
4
4
|
userTypeId: GuidValue;
|
|
5
5
|
editMode: boolean;
|
|
@@ -83,6 +83,7 @@ import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
|
|
|
83
83
|
import wcd4adc78e79ad4c2c889e52755e2bbede from './ux/permissioninput/TenantAdminPermissionInput';
|
|
84
84
|
import wcb6ddbf2c41224cd29b92fcecbbdd31a0 from './ux/playground_test/Play2Component';
|
|
85
85
|
import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWizard';
|
|
86
|
+
import wc6b7b970b284443abb7a86f0afa4462e3 from './ux/profilecard/ProfileSwitchingBtn';
|
|
86
87
|
import wc6d1d84cb210643c59ca8437fc36c75a1 from './ux/profilecard/ProfileCardRenderer';
|
|
87
88
|
import wc916c23c53dbf4d5a8e421e9449c6b203 from './ux/properties/builtins/birthday/BirthdayDisplay';
|
|
88
89
|
import wc5b7f85ec36cf4e88911e7951ccec4e2b from './ux/properties/builtins/birthday/BirthdayConfiguration';
|
|
@@ -255,6 +256,7 @@ declare global {
|
|
|
255
256
|
"omfx-tenant-admin-permission-input": base.CombinedTsxComponentAttrs<typeof wcd4adc78e79ad4c2c889e52755e2bbede.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
256
257
|
"omnia-play-2": base.CombinedTsxComponentAttrs<typeof wcb6ddbf2c41224cd29b92fcecbbdd31a0.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
257
258
|
"omfx-presetup-wizard": base.CombinedTsxComponentAttrs<typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
259
|
+
"omfx-profileswitch-btn": base.CombinedTsxComponentAttrs<typeof wc6b7b970b284443abb7a86f0afa4462e3.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
258
260
|
"omfx-profilecard-renderer": base.CombinedTsxComponentAttrs<typeof wc6d1d84cb210643c59ca8437fc36c75a1.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
259
261
|
"omfx-properties-birthday-display": base.CombinedTsxComponentAttrs<typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
260
262
|
"omfx-properties-birthday-configuration": base.CombinedTsxComponentAttrs<typeof wc5b7f85ec36cf4e88911e7951ccec4e2b.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.9-preview",
|
|
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",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.9-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|