@omnia/fx 8.0.119-dev → 8.0.121-dev
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/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +32 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +32 -4
- package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/getMediaProvider.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +75 -50
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/MediaGallerySelector.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaFileProcessor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaPickerImageHandler.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/utils.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/types.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/ImageHandler.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/VideoHandler.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/cropByRatio.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/filter.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/flip.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/utils.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseImageHandler.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseVideoHandler.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +6 -38
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +51 -66
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/filters/ImageFilters.d.ts +5 -20
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.d.ts +4 -19
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/cropUtils.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/transformUtils.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/ImageTransformerStore.d.ts +236 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IImageTransformHandler.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerGalleryHandler.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerProviderMediaHandler.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerCommonStore.d.ts +84 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerGalleryStore.d.ts +190 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/ProviderStore.d.ts +241 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/constants.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/index.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/types.d.ts +55 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +48 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider.d.ts +4 -395
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/handler.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/searchFilters.d.ts +19 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +4 -395
- package/internal-do-not-import-from-here/ux/models/MultiTextInputItem.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +3 -7
- package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.css.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.d.ts +68 -31
- package/internal-do-not-import-from-here/ux/organizationtree/reportees/Reportees.d.ts +63 -18
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/persona/Persona.css.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +71 -26
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +707 -681
- package/internal-do-not-import-from-here/wctypings.d.ts +149 -101
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.d.ts +0 -30
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid copy.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +0 -138
- package/internal-do-not-import-from-here/ux/imagegrid/loc/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/index.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/Interfaces.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaGalleryStore.d.ts +0 -59
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerEditorStore.d.ts +0 -159
- package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerProviderStore.d.ts +0 -116
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/IYouTubeProvider.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MultiSelectMediaProviderComponentBase.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/organizationtree/IOrganizationTree.d.ts +0 -22
- package/internal-do-not-import-from-here/ux/organizationtree/reportees/IReportees.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/persona/IPersona.d.ts +0 -23
- /package/internal-do-not-import-from-here/ux/{imagegrid → mediapickerV2}/index.d.ts +0 -0
@@ -57,7 +57,6 @@ import wc9cbe10e4fe1a48929727942cea5f7338 from './ux/identitypicker/IdentityPick
|
|
57
57
|
import wcec81357974804c539bff6c58a8785c22 from './ux/identitypicker/IdentityPicker';
|
58
58
|
import wc5d74b2de65164761a3dce6a534b64bd1 from './ux/identitypicker/IdentityPickerDialog';
|
59
59
|
import wc70593d481fa54e68be9f4fe41f0f5c92 from './ux/identitypicker/IdentityPickerButton';
|
60
|
-
import wcdfefc1520763443190e92700bad98412 from './ux/imagegrid/ImageGrid';
|
61
60
|
import wc91919b3f54de42dab709575b8a9ca233 from './ux/inputlanguagepicker/InputLanguagePicker';
|
62
61
|
import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/JourneyV2';
|
63
62
|
import wc4357bb8264e3482c8710afed3b2be35c from './ux/journey/JourneyBlade';
|
@@ -75,8 +74,10 @@ import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
|
|
75
74
|
import wce95c4611a45548a79e4c3984d8e5228d from './ux/multilingualinput/MultilingualInput';
|
76
75
|
import wccdadf45bd7774609a713c4e1d6862783 from './ux/multitextinput/MultiTextInput';
|
77
76
|
import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
|
77
|
+
import wc02e199d7f0af45508837fccb8a041f58 from './ux/organizationtree/OrganizationTree';
|
78
78
|
import wcfb67bd4d1cc24073ab123c822d78ea17 from './ux/permissioninput/PermissionInput';
|
79
79
|
import wcd4adc78e79ad4c2c889e52755e2bbede from './ux/permissioninput/TenantAdminPermissionInput';
|
80
|
+
import wc73919d3e5df64b92aded98d7bc04d6f7 from './ux/persona/Persona';
|
80
81
|
import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWizard';
|
81
82
|
import wc6489472fd8d24a1b9413537fde528566 from './ux/profilecard/ProfileCard';
|
82
83
|
import wc6d1d84cb210643c59ca8437fc36c75a1 from './ux/profilecard/ProfileCardRenderer';
|
@@ -176,10 +177,12 @@ import wc29f45ded4fb4479fab6fd6fd79505642 from './ux/mediapickerV2/chrome/MediaP
|
|
176
177
|
import wccbf09a1933f049f7ab9785a3b5b5323a from './ux/mediapickerV2/imagegrid/ImageGrid';
|
177
178
|
import wc8c48b06bb9aa40699a8291b6e2c9780f from './ux/mediapickerV2/imagetransformer/ImageTransformer';
|
178
179
|
import wce559eebf085841a3a89804dc09e78c30 from './ux/mediapickerV2/mediaprovider/MediaProvider';
|
180
|
+
import wce748b3103fe44732b8993513d863035b from './ux/mediapickerproviders/Youtube/YouTubeProvider';
|
179
181
|
import wcfc7e793328e64088ab1b37b8f89e8693 from './ux/mediapickerproviders/bingprovider-v2/BingProvider';
|
180
182
|
import wc781b7e9953cf4f5b9a402cad1a0cc654 from './ux/mediapickerproviders/mycomputerprovider/MyComputerProvider';
|
181
183
|
import wc0c762bb5c7e64ccd8a89907200dffca5 from './ux/mediapickerproviders/pexelsprovider-V2/PexelProvider';
|
182
184
|
import wc6e7529d994f9489ea5be5a129406caa2 from './ux/mediapickerproviders/unsplash/UnsplashProvider';
|
185
|
+
import wcd66f4320b87a4577bbcba906d78096ed from './ux/organizationtree/reportees/Reportees';
|
183
186
|
import wc8a200f29d7484601b901dd76ca8ec771 from './ux/oxide/alert/Alert';
|
184
187
|
import wc90d19714df6c4b16bd5d42bc705e7692 from './ux/oxide/appbar/Appbar';
|
185
188
|
import wc8848766a05fd4a7a8e1a89376b3cf09a from './ux/oxide/avatar/Avatar';
|
@@ -291,6 +294,7 @@ import wcd89913a1055942b38285fcab85751865 from './ux/layoutcanvas/editor/devicep
|
|
291
294
|
import wc1beebdd70f174f3fb54e443f3ae13a5c from './ux/layoutcanvas/editor/sizecontainer/SizeContainer';
|
292
295
|
import wcac5f615df97543cf97b3ae930ba113d0 from './ux/mediagallery/gallerydialogproviders/slider/Slider';
|
293
296
|
import wc12d1bca1d50b4186acd50014584389c9 from './ux/mediagallery/galleryviewproviders/photowall/PhotoWall';
|
297
|
+
import wc97a809187ad54028a26f31428c844710 from './ux/mediapickerV2/chrome/components/MediaGallerySelector';
|
294
298
|
import wcca498a9d23e947afa4c5695f01ba7959 from './ux/oxide/slidepanel/block/SlidePanelBlock';
|
295
299
|
import wc916c23c53dbf4d5a8e421e9449c6b203 from './ux/properties/builtins/birthday/BirthdayDisplay';
|
296
300
|
import wc5b7f85ec36cf4e88911e7951ccec4e2b from './ux/properties/builtins/birthday/BirthdayConfiguration';
|
@@ -574,9 +578,6 @@ declare global {
|
|
574
578
|
"omfx-identity-picker-button": typeof wc70593d481fa54e68be9f4fe41f0f5c92 extends {
|
575
579
|
propsDefinition: infer TProp;
|
576
580
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc70593d481fa54e68be9f4fe41f0f5c92 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc70593d481fa54e68be9f4fe41f0f5c92>, "propsDefinition">> : never;
|
577
|
-
"omfx-media-imagegrid": typeof wcdfefc1520763443190e92700bad98412 extends {
|
578
|
-
propsDefinition: infer TProp;
|
579
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcdfefc1520763443190e92700bad98412 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcdfefc1520763443190e92700bad98412>, "propsDefinition">> : never;
|
580
581
|
"omfx-input-language-picker": typeof wc91919b3f54de42dab709575b8a9ca233 extends {
|
581
582
|
propsDefinition: infer TProp;
|
582
583
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc91919b3f54de42dab709575b8a9ca233 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc91919b3f54de42dab709575b8a9ca233>, "propsDefinition">> : never;
|
@@ -628,12 +629,18 @@ declare global {
|
|
628
629
|
"omfx-option-picker": typeof wc7f06e68f94904b48b827b23acd148bec extends {
|
629
630
|
propsDefinition: infer TProp;
|
630
631
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc7f06e68f94904b48b827b23acd148bec extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc7f06e68f94904b48b827b23acd148bec>, "propsDefinition">> : never;
|
632
|
+
"omfx-organizationtree": typeof wc02e199d7f0af45508837fccb8a041f58 extends {
|
633
|
+
propsDefinition: infer TProp;
|
634
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc02e199d7f0af45508837fccb8a041f58 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc02e199d7f0af45508837fccb8a041f58>, "propsDefinition">> : never;
|
631
635
|
"omfx-permission-input": typeof wcfb67bd4d1cc24073ab123c822d78ea17 extends {
|
632
636
|
propsDefinition: infer TProp;
|
633
637
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfb67bd4d1cc24073ab123c822d78ea17 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfb67bd4d1cc24073ab123c822d78ea17>, "propsDefinition">> : never;
|
634
638
|
"omfx-tenant-admin-permission-input": typeof wcd4adc78e79ad4c2c889e52755e2bbede extends {
|
635
639
|
propsDefinition: infer TProp;
|
636
640
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd4adc78e79ad4c2c889e52755e2bbede extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd4adc78e79ad4c2c889e52755e2bbede>, "propsDefinition">> : never;
|
641
|
+
"omfx-persona": typeof wc73919d3e5df64b92aded98d7bc04d6f7 extends {
|
642
|
+
propsDefinition: infer TProp;
|
643
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc73919d3e5df64b92aded98d7bc04d6f7 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc73919d3e5df64b92aded98d7bc04d6f7>, "propsDefinition">> : never;
|
637
644
|
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6 extends {
|
638
645
|
propsDefinition: infer TProp;
|
639
646
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1a58948a606a42078da3fb919cc4f7e6 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1a58948a606a42078da3fb919cc4f7e6>, "propsDefinition">> : never;
|
@@ -931,6 +938,9 @@ declare global {
|
|
931
938
|
"omfx-media-provider": typeof wce559eebf085841a3a89804dc09e78c30 extends {
|
932
939
|
propsDefinition: infer TProp;
|
933
940
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce559eebf085841a3a89804dc09e78c30 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce559eebf085841a3a89804dc09e78c30>, "propsDefinition">> : never;
|
941
|
+
"omfx-youtube-provider": typeof wce748b3103fe44732b8993513d863035b extends {
|
942
|
+
propsDefinition: infer TProp;
|
943
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce748b3103fe44732b8993513d863035b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce748b3103fe44732b8993513d863035b>, "propsDefinition">> : never;
|
934
944
|
"omfx-media-picker-bing-provider": typeof wcfc7e793328e64088ab1b37b8f89e8693 extends {
|
935
945
|
propsDefinition: infer TProp;
|
936
946
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfc7e793328e64088ab1b37b8f89e8693 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfc7e793328e64088ab1b37b8f89e8693>, "propsDefinition">> : never;
|
@@ -943,6 +953,9 @@ declare global {
|
|
943
953
|
"omfx-media-picker-unsplash-provider": typeof wc6e7529d994f9489ea5be5a129406caa2 extends {
|
944
954
|
propsDefinition: infer TProp;
|
945
955
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6e7529d994f9489ea5be5a129406caa2 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6e7529d994f9489ea5be5a129406caa2>, "propsDefinition">> : never;
|
956
|
+
"omfx-reportees": typeof wcd66f4320b87a4577bbcba906d78096ed extends {
|
957
|
+
propsDefinition: infer TProp;
|
958
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd66f4320b87a4577bbcba906d78096ed extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd66f4320b87a4577bbcba906d78096ed>, "propsDefinition">> : never;
|
946
959
|
"o-alert": typeof wc8a200f29d7484601b901dd76ca8ec771 extends {
|
947
960
|
propsDefinition: infer TProp;
|
948
961
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc8a200f29d7484601b901dd76ca8ec771 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc8a200f29d7484601b901dd76ca8ec771>, "propsDefinition">> : never;
|
@@ -1276,6 +1289,9 @@ declare global {
|
|
1276
1289
|
"omniafx-media-gallery-display-photowall": typeof wc12d1bca1d50b4186acd50014584389c9 extends {
|
1277
1290
|
propsDefinition: infer TProp;
|
1278
1291
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc12d1bca1d50b4186acd50014584389c9 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc12d1bca1d50b4186acd50014584389c9>, "propsDefinition">> : never;
|
1292
|
+
"omfx-media-gallery-selector": typeof wc97a809187ad54028a26f31428c844710 extends {
|
1293
|
+
propsDefinition: infer TProp;
|
1294
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc97a809187ad54028a26f31428c844710 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc97a809187ad54028a26f31428c844710>, "propsDefinition">> : never;
|
1279
1295
|
"omfx-slidepanel-block": typeof wcca498a9d23e947afa4c5695f01ba7959 extends {
|
1280
1296
|
propsDefinition: infer TProp;
|
1281
1297
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcca498a9d23e947afa4c5695f01ba7959 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcca498a9d23e947afa4c5695f01ba7959>, "propsDefinition">> : never;
|
@@ -2368,103 +2384,6 @@ declare global {
|
|
2368
2384
|
};
|
2369
2385
|
};
|
2370
2386
|
};
|
2371
|
-
"media": {
|
2372
|
-
"imagegrid": {
|
2373
|
-
"v2": typeof wccbf09a1933f049f7ab9785a3b5b5323a extends {
|
2374
|
-
propsDefinition: infer TProp;
|
2375
|
-
} ? {
|
2376
|
-
new (...args: any[]): {
|
2377
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2378
|
-
};
|
2379
|
-
} : typeof wccbf09a1933f049f7ab9785a3b5b5323a;
|
2380
|
-
};
|
2381
|
-
"picker": {
|
2382
|
-
"image": typeof wce9bb3179713943d787e139cedf749838 extends {
|
2383
|
-
propsDefinition: infer TProp;
|
2384
|
-
} ? {
|
2385
|
-
new (...args: any[]): {
|
2386
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2387
|
-
};
|
2388
|
-
} : typeof wce9bb3179713943d787e139cedf749838;
|
2389
|
-
"v2": typeof wc29f45ded4fb4479fab6fd6fd79505642 extends {
|
2390
|
-
propsDefinition: infer TProp;
|
2391
|
-
} ? {
|
2392
|
-
new (...args: any[]): {
|
2393
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2394
|
-
};
|
2395
|
-
} : typeof wc29f45ded4fb4479fab6fd6fd79505642;
|
2396
|
-
"bing": {
|
2397
|
-
"provider": typeof wcfc7e793328e64088ab1b37b8f89e8693 extends {
|
2398
|
-
propsDefinition: infer TProp;
|
2399
|
-
} ? {
|
2400
|
-
new (...args: any[]): {
|
2401
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2402
|
-
};
|
2403
|
-
} : typeof wcfc7e793328e64088ab1b37b8f89e8693;
|
2404
|
-
};
|
2405
|
-
"mycomputer": {
|
2406
|
-
"provider": typeof wc781b7e9953cf4f5b9a402cad1a0cc654 extends {
|
2407
|
-
propsDefinition: infer TProp;
|
2408
|
-
} ? {
|
2409
|
-
new (...args: any[]): {
|
2410
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2411
|
-
};
|
2412
|
-
} : typeof wc781b7e9953cf4f5b9a402cad1a0cc654;
|
2413
|
-
};
|
2414
|
-
"pexels": {
|
2415
|
-
"provider": {
|
2416
|
-
"v2": typeof wc0c762bb5c7e64ccd8a89907200dffca5 extends {
|
2417
|
-
propsDefinition: infer TProp;
|
2418
|
-
} ? {
|
2419
|
-
new (...args: any[]): {
|
2420
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2421
|
-
};
|
2422
|
-
} : typeof wc0c762bb5c7e64ccd8a89907200dffca5;
|
2423
|
-
};
|
2424
|
-
};
|
2425
|
-
"unsplash": {
|
2426
|
-
"provider": typeof wc6e7529d994f9489ea5be5a129406caa2 extends {
|
2427
|
-
propsDefinition: infer TProp;
|
2428
|
-
} ? {
|
2429
|
-
new (...args: any[]): {
|
2430
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2431
|
-
};
|
2432
|
-
} : typeof wc6e7529d994f9489ea5be5a129406caa2;
|
2433
|
-
};
|
2434
|
-
};
|
2435
|
-
"scaling": {
|
2436
|
-
"settings": typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e extends {
|
2437
|
-
propsDefinition: infer TProp;
|
2438
|
-
} ? {
|
2439
|
-
new (...args: any[]): {
|
2440
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2441
|
-
};
|
2442
|
-
} : typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e;
|
2443
|
-
};
|
2444
|
-
"display": {
|
2445
|
-
"renderer": typeof wcc15cd6402e584ab18c73ed2b5e3eded9 extends {
|
2446
|
-
propsDefinition: infer TProp;
|
2447
|
-
} ? {
|
2448
|
-
new (...args: any[]): {
|
2449
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2450
|
-
};
|
2451
|
-
} : typeof wcc15cd6402e584ab18c73ed2b5e3eded9;
|
2452
|
-
};
|
2453
|
-
"imagegrid$": typeof wcdfefc1520763443190e92700bad98412 extends {
|
2454
|
-
propsDefinition: infer TProp;
|
2455
|
-
} ? {
|
2456
|
-
new (...args: any[]): {
|
2457
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2458
|
-
};
|
2459
|
-
} : typeof wcdfefc1520763443190e92700bad98412;
|
2460
|
-
"provider": typeof wce559eebf085841a3a89804dc09e78c30 extends {
|
2461
|
-
propsDefinition: infer TProp;
|
2462
|
-
} ? {
|
2463
|
-
new (...args: any[]): {
|
2464
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2465
|
-
};
|
2466
|
-
} : typeof wce559eebf085841a3a89804dc09e78c30;
|
2467
|
-
};
|
2468
2387
|
"input": {
|
2469
2388
|
"language": {
|
2470
2389
|
"picker": typeof wc91919b3f54de42dab709575b8a9ca233 extends {
|
@@ -2567,6 +2486,105 @@ declare global {
|
|
2567
2486
|
};
|
2568
2487
|
} : typeof wcc8b990d01ddc45ab930b4409fc406435;
|
2569
2488
|
};
|
2489
|
+
"media": {
|
2490
|
+
"picker": {
|
2491
|
+
"image": typeof wce9bb3179713943d787e139cedf749838 extends {
|
2492
|
+
propsDefinition: infer TProp;
|
2493
|
+
} ? {
|
2494
|
+
new (...args: any[]): {
|
2495
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2496
|
+
};
|
2497
|
+
} : typeof wce9bb3179713943d787e139cedf749838;
|
2498
|
+
"v2": typeof wc29f45ded4fb4479fab6fd6fd79505642 extends {
|
2499
|
+
propsDefinition: infer TProp;
|
2500
|
+
} ? {
|
2501
|
+
new (...args: any[]): {
|
2502
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2503
|
+
};
|
2504
|
+
} : typeof wc29f45ded4fb4479fab6fd6fd79505642;
|
2505
|
+
"bing": {
|
2506
|
+
"provider": typeof wcfc7e793328e64088ab1b37b8f89e8693 extends {
|
2507
|
+
propsDefinition: infer TProp;
|
2508
|
+
} ? {
|
2509
|
+
new (...args: any[]): {
|
2510
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2511
|
+
};
|
2512
|
+
} : typeof wcfc7e793328e64088ab1b37b8f89e8693;
|
2513
|
+
};
|
2514
|
+
"mycomputer": {
|
2515
|
+
"provider": typeof wc781b7e9953cf4f5b9a402cad1a0cc654 extends {
|
2516
|
+
propsDefinition: infer TProp;
|
2517
|
+
} ? {
|
2518
|
+
new (...args: any[]): {
|
2519
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2520
|
+
};
|
2521
|
+
} : typeof wc781b7e9953cf4f5b9a402cad1a0cc654;
|
2522
|
+
};
|
2523
|
+
"pexels": {
|
2524
|
+
"provider": {
|
2525
|
+
"v2": typeof wc0c762bb5c7e64ccd8a89907200dffca5 extends {
|
2526
|
+
propsDefinition: infer TProp;
|
2527
|
+
} ? {
|
2528
|
+
new (...args: any[]): {
|
2529
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2530
|
+
};
|
2531
|
+
} : typeof wc0c762bb5c7e64ccd8a89907200dffca5;
|
2532
|
+
};
|
2533
|
+
};
|
2534
|
+
"unsplash": {
|
2535
|
+
"provider": typeof wc6e7529d994f9489ea5be5a129406caa2 extends {
|
2536
|
+
propsDefinition: infer TProp;
|
2537
|
+
} ? {
|
2538
|
+
new (...args: any[]): {
|
2539
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2540
|
+
};
|
2541
|
+
} : typeof wc6e7529d994f9489ea5be5a129406caa2;
|
2542
|
+
};
|
2543
|
+
};
|
2544
|
+
"scaling": {
|
2545
|
+
"settings": typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e extends {
|
2546
|
+
propsDefinition: infer TProp;
|
2547
|
+
} ? {
|
2548
|
+
new (...args: any[]): {
|
2549
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2550
|
+
};
|
2551
|
+
} : typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e;
|
2552
|
+
};
|
2553
|
+
"display": {
|
2554
|
+
"renderer": typeof wcc15cd6402e584ab18c73ed2b5e3eded9 extends {
|
2555
|
+
propsDefinition: infer TProp;
|
2556
|
+
} ? {
|
2557
|
+
new (...args: any[]): {
|
2558
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2559
|
+
};
|
2560
|
+
} : typeof wcc15cd6402e584ab18c73ed2b5e3eded9;
|
2561
|
+
};
|
2562
|
+
"imagegrid": {
|
2563
|
+
"v2": typeof wccbf09a1933f049f7ab9785a3b5b5323a extends {
|
2564
|
+
propsDefinition: infer TProp;
|
2565
|
+
} ? {
|
2566
|
+
new (...args: any[]): {
|
2567
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2568
|
+
};
|
2569
|
+
} : typeof wccbf09a1933f049f7ab9785a3b5b5323a;
|
2570
|
+
};
|
2571
|
+
"provider": typeof wce559eebf085841a3a89804dc09e78c30 extends {
|
2572
|
+
propsDefinition: infer TProp;
|
2573
|
+
} ? {
|
2574
|
+
new (...args: any[]): {
|
2575
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2576
|
+
};
|
2577
|
+
} : typeof wce559eebf085841a3a89804dc09e78c30;
|
2578
|
+
"gallery": {
|
2579
|
+
"selector": typeof wc97a809187ad54028a26f31428c844710 extends {
|
2580
|
+
propsDefinition: infer TProp;
|
2581
|
+
} ? {
|
2582
|
+
new (...args: any[]): {
|
2583
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2584
|
+
};
|
2585
|
+
} : typeof wc97a809187ad54028a26f31428c844710;
|
2586
|
+
};
|
2587
|
+
};
|
2570
2588
|
"monaco": {
|
2571
2589
|
"editor": typeof wc2e8004b49c8d44dd8edb56ce884c2b57 extends {
|
2572
2590
|
propsDefinition: infer TProp;
|
@@ -2605,6 +2623,13 @@ declare global {
|
|
2605
2623
|
};
|
2606
2624
|
} : typeof wc7f06e68f94904b48b827b23acd148bec;
|
2607
2625
|
};
|
2626
|
+
"organizationtree": typeof wc02e199d7f0af45508837fccb8a041f58 extends {
|
2627
|
+
propsDefinition: infer TProp;
|
2628
|
+
} ? {
|
2629
|
+
new (...args: any[]): {
|
2630
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2631
|
+
};
|
2632
|
+
} : typeof wc02e199d7f0af45508837fccb8a041f58;
|
2608
2633
|
"permission": {
|
2609
2634
|
"input": typeof wcfb67bd4d1cc24073ab123c822d78ea17 extends {
|
2610
2635
|
propsDefinition: infer TProp;
|
@@ -2627,6 +2652,13 @@ declare global {
|
|
2627
2652
|
};
|
2628
2653
|
};
|
2629
2654
|
};
|
2655
|
+
"persona": typeof wc73919d3e5df64b92aded98d7bc04d6f7 extends {
|
2656
|
+
propsDefinition: infer TProp;
|
2657
|
+
} ? {
|
2658
|
+
new (...args: any[]): {
|
2659
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2660
|
+
};
|
2661
|
+
} : typeof wc73919d3e5df64b92aded98d7bc04d6f7;
|
2630
2662
|
"presetup": {
|
2631
2663
|
"wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6 extends {
|
2632
2664
|
propsDefinition: infer TProp;
|
@@ -3656,6 +3688,22 @@ declare global {
|
|
3656
3688
|
} : typeof wc8c48b06bb9aa40699a8291b6e2c9780f;
|
3657
3689
|
};
|
3658
3690
|
};
|
3691
|
+
"youtube": {
|
3692
|
+
"provider": typeof wce748b3103fe44732b8993513d863035b extends {
|
3693
|
+
propsDefinition: infer TProp;
|
3694
|
+
} ? {
|
3695
|
+
new (...args: any[]): {
|
3696
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3697
|
+
};
|
3698
|
+
} : typeof wce748b3103fe44732b8993513d863035b;
|
3699
|
+
};
|
3700
|
+
"reportees": typeof wcd66f4320b87a4577bbcba906d78096ed extends {
|
3701
|
+
propsDefinition: infer TProp;
|
3702
|
+
} ? {
|
3703
|
+
new (...args: any[]): {
|
3704
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3705
|
+
};
|
3706
|
+
} : typeof wcd66f4320b87a4577bbcba906d78096ed;
|
3659
3707
|
"emoticon": typeof wc58330f37503947799af05363e58bda3c extends {
|
3660
3708
|
propsDefinition: infer TProp;
|
3661
3709
|
} ? {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.121-dev",
|
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": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.121-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.d.ts
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>> & {
|
3
|
-
"onItem:add"?: () => any;
|
4
|
-
}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
5
|
-
"item:add": () => true;
|
6
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
7
|
-
"onItem:add"?: () => any;
|
8
|
-
}, {}, true, {}, {}, {
|
9
|
-
P: {};
|
10
|
-
B: {};
|
11
|
-
D: {};
|
12
|
-
C: {};
|
13
|
-
M: {};
|
14
|
-
Defaults: {};
|
15
|
-
}, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
16
|
-
"onItem:add"?: () => any;
|
17
|
-
}, () => JSX.Element, {}, {}, {}, {}>;
|
18
|
-
__isFragment?: never;
|
19
|
-
__isTeleport?: never;
|
20
|
-
__isSuspense?: never;
|
21
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>> & {
|
22
|
-
"onItem:add"?: () => any;
|
23
|
-
}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
24
|
-
"item:add": () => true;
|
25
|
-
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
26
|
-
propsDefinition: Omit<Readonly<{} & {}>, "onItem:add"> & {
|
27
|
-
"onItem:add"?: () => any;
|
28
|
-
};
|
29
|
-
};
|
30
|
-
export default _default;
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1,138 +0,0 @@
|
|
1
|
-
import { MediaItem, MediaPickerEnums } from "../../models";
|
2
|
-
import "./ImageGrid.css";
|
3
|
-
import { VNodeChild } from "vue";
|
4
|
-
declare const _default: {
|
5
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
6
|
-
"v-slots": import("vue").Prop<{
|
7
|
-
default?: import("../DefineVueTypings").Slot<any[]>;
|
8
|
-
} & {
|
9
|
-
itemDetailSlot?: (item: MediaItem) => VNodeChild;
|
10
|
-
}>;
|
11
|
-
"search-status": {
|
12
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
13
|
-
};
|
14
|
-
searchStatus: {
|
15
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
16
|
-
};
|
17
|
-
"append-to-grid": {
|
18
|
-
type: import("vue").PropType<boolean>;
|
19
|
-
required: false;
|
20
|
-
};
|
21
|
-
appendToGrid: {
|
22
|
-
type: import("vue").PropType<boolean>;
|
23
|
-
required: false;
|
24
|
-
};
|
25
|
-
images: {
|
26
|
-
type: import("vue").PropType<MediaItem[]>;
|
27
|
-
required: false;
|
28
|
-
} & {
|
29
|
-
type: import("vue").PropType<MediaItem[]>;
|
30
|
-
required: false;
|
31
|
-
};
|
32
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
33
|
-
"v-slots": import("vue").Prop<{
|
34
|
-
default?: import("../DefineVueTypings").Slot<any[]>;
|
35
|
-
} & {
|
36
|
-
itemDetailSlot?: (item: MediaItem) => VNodeChild;
|
37
|
-
}>;
|
38
|
-
"search-status": {
|
39
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
40
|
-
};
|
41
|
-
searchStatus: {
|
42
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
43
|
-
};
|
44
|
-
"append-to-grid": {
|
45
|
-
type: import("vue").PropType<boolean>;
|
46
|
-
required: false;
|
47
|
-
};
|
48
|
-
appendToGrid: {
|
49
|
-
type: import("vue").PropType<boolean>;
|
50
|
-
required: false;
|
51
|
-
};
|
52
|
-
images: {
|
53
|
-
type: import("vue").PropType<MediaItem[]>;
|
54
|
-
required: false;
|
55
|
-
} & {
|
56
|
-
type: import("vue").PropType<MediaItem[]>;
|
57
|
-
required: false;
|
58
|
-
};
|
59
|
-
}>>, {}, true, {}, {}, {
|
60
|
-
P: {};
|
61
|
-
B: {};
|
62
|
-
D: {};
|
63
|
-
C: {};
|
64
|
-
M: {};
|
65
|
-
Defaults: {};
|
66
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
67
|
-
"v-slots": import("vue").Prop<{
|
68
|
-
default?: import("../DefineVueTypings").Slot<any[]>;
|
69
|
-
} & {
|
70
|
-
itemDetailSlot?: (item: MediaItem) => VNodeChild;
|
71
|
-
}>;
|
72
|
-
"search-status": {
|
73
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
74
|
-
};
|
75
|
-
searchStatus: {
|
76
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
77
|
-
};
|
78
|
-
"append-to-grid": {
|
79
|
-
type: import("vue").PropType<boolean>;
|
80
|
-
required: false;
|
81
|
-
};
|
82
|
-
appendToGrid: {
|
83
|
-
type: import("vue").PropType<boolean>;
|
84
|
-
required: false;
|
85
|
-
};
|
86
|
-
images: {
|
87
|
-
type: import("vue").PropType<MediaItem[]>;
|
88
|
-
required: false;
|
89
|
-
} & {
|
90
|
-
type: import("vue").PropType<MediaItem[]>;
|
91
|
-
required: false;
|
92
|
-
};
|
93
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
94
|
-
__isFragment?: never;
|
95
|
-
__isTeleport?: never;
|
96
|
-
__isSuspense?: never;
|
97
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
98
|
-
"v-slots": import("vue").Prop<{
|
99
|
-
default?: import("../DefineVueTypings").Slot<any[]>;
|
100
|
-
} & {
|
101
|
-
itemDetailSlot?: (item: MediaItem) => VNodeChild;
|
102
|
-
}>;
|
103
|
-
"search-status": {
|
104
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
105
|
-
};
|
106
|
-
searchStatus: {
|
107
|
-
type: import("vue").PropType<MediaPickerEnums.MediaSearchStatus>;
|
108
|
-
};
|
109
|
-
"append-to-grid": {
|
110
|
-
type: import("vue").PropType<boolean>;
|
111
|
-
required: false;
|
112
|
-
};
|
113
|
-
appendToGrid: {
|
114
|
-
type: import("vue").PropType<boolean>;
|
115
|
-
required: false;
|
116
|
-
};
|
117
|
-
images: {
|
118
|
-
type: import("vue").PropType<MediaItem[]>;
|
119
|
-
required: false;
|
120
|
-
} & {
|
121
|
-
type: import("vue").PropType<MediaItem[]>;
|
122
|
-
required: false;
|
123
|
-
};
|
124
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
125
|
-
propsDefinition: Omit<Readonly<{} & {
|
126
|
-
"v-slots"?: {
|
127
|
-
default?: import("../DefineVueTypings").Slot<any[]>;
|
128
|
-
} & {
|
129
|
-
itemDetailSlot?: (item: MediaItem) => VNodeChild;
|
130
|
-
};
|
131
|
-
images?: MediaItem[];
|
132
|
-
appendToGrid?: boolean;
|
133
|
-
"append-to-grid"?: boolean;
|
134
|
-
searchStatus?: MediaPickerEnums.MediaSearchStatus;
|
135
|
-
"search-status"?: MediaPickerEnums.MediaSearchStatus;
|
136
|
-
}>, never>;
|
137
|
-
};
|
138
|
-
export default _default;
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./localize";
|
File without changes
|
File without changes
|
@@ -1,59 +0,0 @@
|
|
1
|
-
import { GuidValue, MediaPickerImageTransformationResult, MediaPickerMedia, MediaPickerProvider, MediaPickerVideo } from "@omnia/fx-models";
|
2
|
-
export interface MediaState {
|
3
|
-
id: GuidValue;
|
4
|
-
isVideo: boolean;
|
5
|
-
isChanged: boolean;
|
6
|
-
media?: MediaPickerMedia;
|
7
|
-
transformerInfo?: MediaPickerImageTransformationResult;
|
8
|
-
isNew: boolean;
|
9
|
-
convertingFromBase64ToMediaPicker: boolean;
|
10
|
-
provider?: MediaPickerProvider;
|
11
|
-
index?: number;
|
12
|
-
}
|
13
|
-
export declare const useMediaPickerGalleryStore: () => {
|
14
|
-
state: {
|
15
|
-
selectedMediaGallery: MediaPickerMedia[];
|
16
|
-
mediaStates: MediaState[];
|
17
|
-
galleryItemLimit: number;
|
18
|
-
editingMediaIndex: number;
|
19
|
-
editingMediaId: GuidValue;
|
20
|
-
finishItemCount: number;
|
21
|
-
};
|
22
|
-
events: {
|
23
|
-
onMutatedSelectedMediaGallery: import("internal/fx/core").MessageBusExposeOnlySubscription<MediaPickerMedia[]>;
|
24
|
-
onMutatedMediaStates: import("internal/fx/core").MessageBusExposeOnlySubscription<MediaState[]>;
|
25
|
-
onMutatedGalleryItemLimit: import("internal/fx/core").MessageBusExposeOnlySubscription<number>;
|
26
|
-
onMutatedEditingMediaIndex: import("internal/fx/core").MessageBusExposeOnlySubscription<number>;
|
27
|
-
onMutatedEditingMediaId: import("internal/fx/core").MessageBusExposeOnlySubscription<GuidValue>;
|
28
|
-
onMutatedFinishItemCount: import("internal/fx/core").MessageBusExposeOnlySubscription<number>;
|
29
|
-
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
30
|
-
actions: {
|
31
|
-
onDispatching: {
|
32
|
-
gallery: {
|
33
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
34
|
-
};
|
35
|
-
};
|
36
|
-
onDispatched: {
|
37
|
-
gallery: {
|
38
|
-
subscribe(fn: (result: {
|
39
|
-
setSelected(value: MediaPickerMedia | Array<MediaPickerMedia>): void;
|
40
|
-
setItemLimit(value: number): void;
|
41
|
-
addItem(value: MediaPickerImageTransformationResult | MediaPickerVideo, provider: MediaPickerProvider, mediaStateId: GuidValue): void;
|
42
|
-
save(): Promise<MediaPickerMedia[]>;
|
43
|
-
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
44
|
-
};
|
45
|
-
};
|
46
|
-
onFailure: {
|
47
|
-
gallery: {
|
48
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
49
|
-
};
|
50
|
-
};
|
51
|
-
} & {
|
52
|
-
gallery: () => {
|
53
|
-
setSelected(value: MediaPickerMedia | Array<MediaPickerMedia>): void;
|
54
|
-
setItemLimit(value: number): void;
|
55
|
-
addItem(value: MediaPickerImageTransformationResult | MediaPickerVideo, provider: MediaPickerProvider, mediaStateId: GuidValue): void;
|
56
|
-
save(): Promise<MediaPickerMedia[]>;
|
57
|
-
};
|
58
|
-
};
|
59
|
-
};
|