@omni-co/embed 0.3.9 → 0.3.10

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 CHANGED
@@ -97,5 +97,8 @@ type EmbedSsoDashboardProps = {
97
97
  // "abcd1234,efgh5678,ijkl9999": An allowlist of dashboard IDs that permisses and shows links to the specified dashboards.
98
98
  // undefined: If left undefined, the default behavior is to hide and disallow all links to other Omni dashboards on the embedded dashboard.
99
99
  linkAccess?: string;
100
+
101
+ // Optional custom theme property that styles the embedded dashboard.
102
+ customTheme?: CustomThemeProperties;
100
103
  };
101
104
  ```
@@ -14,6 +14,8 @@ export type CustomThemeProperties = {
14
14
  "dashboard-tile-title-font-family"?: string;
15
15
  "dashboard-tile-text-body-font-family"?: string;
16
16
  "dashboard-tile-text-code-font-family"?: string;
17
+ "dashboard-key-color": string;
18
+ "dashboard-key-text-color": string;
17
19
  };
18
20
  type EmbedSsoProps = {
19
21
  contentId: string;
@@ -14,6 +14,8 @@ export type CustomThemeProperties = {
14
14
  "dashboard-tile-title-font-family"?: string;
15
15
  "dashboard-tile-text-body-font-family"?: string;
16
16
  "dashboard-tile-text-code-font-family"?: string;
17
+ "dashboard-key-color": string;
18
+ "dashboard-key-text-color": string;
17
19
  };
18
20
  type EmbedSsoProps = {
19
21
  contentId: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.9",
2
+ "version": "0.3.10",
3
3
  "license": "MIT",
4
4
  "name": "@omni-co/embed",
5
5
  "author": "Nate Agrin <nate@exploreomni.com>",