@omnia/workplace 7.10.0-preview.16 → 7.10.0-preview.18

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.
@@ -13,7 +13,7 @@ export declare const AnnouncementStyles: {
13
13
  annoucementView?: types.NestedCSSProperties;
14
14
  setHighPriorityAnnouncementColor?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
15
15
  setAnnouncementColor?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
16
- setStatusWrapperStyle?: (bgColor: string) => types.NestedCSSProperties;
16
+ setStatusWrapperStyle?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
17
17
  setBlockPadding?: (val: SpacingSettings) => types.NestedCSSProperties;
18
18
  commentCountWrapper?: types.NestedCSSProperties;
19
19
  buttonWithContent?: types.NestedCSSProperties;
@@ -4,6 +4,7 @@ export declare class AnalyticsStoreService {
4
4
  private httpClient;
5
5
  constructor();
6
6
  getSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
7
+ getAdminSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
7
8
  getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
8
9
  getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
9
10
  getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
@@ -14,6 +14,8 @@ export declare class AnalyticsStore extends Store {
14
14
  private ensuredLoadDimensionsPromise;
15
15
  private settings;
16
16
  private ensuredLoadSettingsPromise;
17
+ private adminSettings;
18
+ private ensuredLoadAdminSettingsPromise;
17
19
  private tokens;
18
20
  private ensuredLoadTokenPromise;
19
21
  private scopeInfos;
@@ -40,6 +42,7 @@ export declare class AnalyticsStore extends Store {
40
42
  getters: {
41
43
  dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
42
44
  settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
45
+ adminSettings: (businessProfileId?: GuidValue) => AnalyticsSettings;
43
46
  scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
44
47
  widgetCategoryInfo: (businessProfileId?: GuidValue) => WidgetCategoryInfo[];
45
48
  tokens: (businessProfileId?: GuidValue) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.10.0-preview.16",
4
+ "version": "7.10.0-preview.18",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"