@omnia/fx 7.8.11-preview → 7.8.13-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.
@@ -0,0 +1,35 @@
1
+ import { FontAwesomeIcon, IIcon } 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<{
3
+ title: string;
4
+ metricInfo: string;
5
+ description: string;
6
+ icon: IIcon | FontAwesomeIcon;
7
+ iconColor: string;
8
+ onClickCallBack: () => void;
9
+ }, never>, any, any, any>> & {
10
+ propsDefinition: import("vue-tsx-support").PropsForOutside<{
11
+ title: string;
12
+ metricInfo: string;
13
+ description: string;
14
+ icon: IIcon | FontAwesomeIcon;
15
+ iconColor: string;
16
+ onClickCallBack: () => void;
17
+ }, never>;
18
+ }) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
19
+ title: string;
20
+ metricInfo: string;
21
+ description: string;
22
+ icon: IIcon | FontAwesomeIcon;
23
+ iconColor: string;
24
+ onClickCallBack: () => void;
25
+ }, never>, any, any, any>> & {
26
+ propsDefinition: import("vue-tsx-support").PropsForOutside<{
27
+ title: string;
28
+ metricInfo: string;
29
+ description: string;
30
+ icon: IIcon | FontAwesomeIcon;
31
+ iconColor: string;
32
+ onClickCallBack: () => void;
33
+ }, never>;
34
+ });
35
+ export default _default;
@@ -4,24 +4,28 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
4
4
  eventActions: EventAction[];
5
5
  isEditMode: boolean;
6
6
  analyticsSettingsChanged: () => void;
7
- }, "analyticsSettings" | "eventActions">, any, any, any>> & {
7
+ allowEventActionTemplate: boolean;
8
+ }, "analyticsSettings">, any, any, any>> & {
8
9
  propsDefinition: import("vue-tsx-support").PropsForOutside<{
9
10
  analyticsSettings: AnalyticsSettings;
10
11
  eventActions: EventAction[];
11
12
  isEditMode: boolean;
12
13
  analyticsSettingsChanged: () => void;
13
- }, "analyticsSettings" | "eventActions">;
14
+ allowEventActionTemplate: boolean;
15
+ }, "analyticsSettings">;
14
16
  }) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
15
17
  analyticsSettings: AnalyticsSettings;
16
18
  eventActions: EventAction[];
17
19
  isEditMode: boolean;
18
20
  analyticsSettingsChanged: () => void;
19
- }, "analyticsSettings" | "eventActions">, any, any, any>> & {
21
+ allowEventActionTemplate: boolean;
22
+ }, "analyticsSettings">, any, any, any>> & {
20
23
  propsDefinition: import("vue-tsx-support").PropsForOutside<{
21
24
  analyticsSettings: AnalyticsSettings;
22
25
  eventActions: EventAction[];
23
26
  isEditMode: boolean;
24
27
  analyticsSettingsChanged: () => void;
25
- }, "analyticsSettings" | "eventActions">;
28
+ allowEventActionTemplate: boolean;
29
+ }, "analyticsSettings">;
26
30
  });
27
31
  export default _default;
@@ -6,6 +6,7 @@ export declare module AnalyticsSettingsLocalization {
6
6
  EnableEventTracking: string;
7
7
  EventCategory: string;
8
8
  EventActions: string;
9
+ EventAction: string;
9
10
  EventName: string;
10
11
  };
11
12
  }
@@ -1,27 +1,27 @@
1
1
  import { ImageItem } from "../../../../models";
2
2
  interface UnsplashImageSource {
3
- original: string;
4
- large2x: string;
5
- large: string;
6
- medium: string;
3
+ full: string;
4
+ raw: string;
5
+ regular: string;
7
6
  small: string;
8
- portrait: string;
9
- landscape: string;
10
- tiny: string;
7
+ small_s3: string;
8
+ thumb: string;
11
9
  }
12
10
  export interface UnsplashServerImage {
13
11
  id: number;
14
12
  width: number;
15
13
  height: number;
16
- url: string;
17
- photographer: string;
18
- photographer_url: string;
19
- photographer_id: number;
20
- avg_color: string;
21
- src: UnsplashImageSource;
22
- liked: boolean;
14
+ color: string;
15
+ urls: UnsplashImageSource;
16
+ user: UnsplashUser;
17
+ slug: string;
23
18
  }
24
19
  export interface UnsplashImage extends ImageItem {
25
20
  serverImage: UnsplashServerImage;
26
21
  }
22
+ export interface UnsplashUser {
23
+ id: string;
24
+ username: string;
25
+ name: string;
26
+ }
27
27
  export {};
@@ -1,6 +1,6 @@
1
1
  import { UnsplashImage } from "../models/UnsplashImage";
2
2
  export declare class UnsplashImageService {
3
- private httpClient;
4
3
  private commonHttpClient;
5
- search: (keyword: string, offset?: number, limit?: number) => Promise<Array<UnsplashImage>>;
4
+ search: (searchText: string, offset?: number, limit?: number) => Promise<Array<UnsplashImage>>;
5
+ private getImages;
6
6
  }
@@ -10,6 +10,7 @@ import wc7332138e1e7845d1a5e62597a27e44a4 from '../../fx-sp/internal-do-not-impo
10
10
  import wc83dee8a1eea84537ad9544e8b9fc4cb1 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetEditor';
11
11
  import wca9cc1e1ff5894f4db7005bc49c6c47c5 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetConfiguration';
12
12
  import wc4d6cad2f0eb948e1aaefae35edab238c from './spfx/components/OmniaWPStandaloneContainer';
13
+ import wc3a5a2bb94382402ba9927797758c1269 from './ux/analytics/metric/Metric';
13
14
  import wc4d83f393bd894ea0b1c3eb4ebce3ad19 from './ux/analyticssettings/AnalyticsSettings';
14
15
  import wca8f8d41d8ceb43e0b16398c209fd6b32 from './ux/app/appinstance/renderer/AppInstanceRollup';
15
16
  import wc99576cfe75504d4babc4575e968f3f9c from './ux/app/appinstance/renderer/AppInstanceRollupRenderer';
@@ -183,6 +184,7 @@ declare global {
183
184
  "omfx-properties-term-set-editor": base.CombinedTsxComponentAttrs<typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
184
185
  "omfx-properties-term-set-configuration": base.CombinedTsxComponentAttrs<typeof wca9cc1e1ff5894f4db7005bc49c6c47c5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
185
186
  "omnia-fx-spfx-wp-standalone": base.CombinedTsxComponentAttrs<typeof wc4d6cad2f0eb948e1aaefae35edab238c.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
187
+ "omfx-metric-renderer": base.CombinedTsxComponentAttrs<typeof wc3a5a2bb94382402ba9927797758c1269.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
186
188
  "omfx-analytics-settings": base.CombinedTsxComponentAttrs<typeof wc4d83f393bd894ea0b1c3eb4ebce3ad19.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
187
189
  "omfx-app-instance-rollup": base.CombinedTsxComponentAttrs<typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
188
190
  "omfx-app-instance-rollup-renderer": base.CombinedTsxComponentAttrs<typeof wc99576cfe75504d4babc4575e968f3f9c.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.11-preview",
4
+ "version": "7.8.13-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.11-preview",
23
+ "@omnia/fx-models": "7.8.13-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",