@omni-co/embed 0.20.0 → 0.21.0
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/lib/cjs/constants.d.ts +11 -1
- package/lib/cjs/constants.js +10 -0
- package/lib/cjs/types.d.ts +2 -0
- package/lib/esm/constants.d.ts +11 -1
- package/lib/esm/constants.js +10 -0
- package/lib/esm/types.d.ts +2 -0
- package/lib/omni_internal_browser/constants.d.ts +11 -1
- package/lib/omni_internal_browser/constants.js +10 -0
- package/lib/omni_internal_browser/types.d.ts +2 -0
- package/package.json +1 -1
package/lib/cjs/constants.d.ts
CHANGED
|
@@ -89,7 +89,17 @@ export declare enum EmbedUiSettings {
|
|
|
89
89
|
* Controls the folder-path breadcrumb in the document title header when in
|
|
90
90
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
91
91
|
*/
|
|
92
|
-
DOCUMENT_BREADCRUMB = "documentBreadcrumb"
|
|
92
|
+
DOCUMENT_BREADCRUMB = "documentBreadcrumb",
|
|
93
|
+
/**
|
|
94
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
95
|
+
* Defaults to true.
|
|
96
|
+
*/
|
|
97
|
+
DASHBOARD_GENERATED_AT = "dashboardGeneratedAt",
|
|
98
|
+
/**
|
|
99
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
100
|
+
* menu. Defaults to true.
|
|
101
|
+
*/
|
|
102
|
+
TILE_RAN_TIMESTAMP = "tileRanTimestamp"
|
|
93
103
|
}
|
|
94
104
|
/**
|
|
95
105
|
* Display modes for the `documentBreadcrumb` UI setting.
|
package/lib/cjs/constants.js
CHANGED
|
@@ -105,4 +105,14 @@ var EmbedUiSettings;
|
|
|
105
105
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
106
106
|
*/
|
|
107
107
|
EmbedUiSettings["DOCUMENT_BREADCRUMB"] = "documentBreadcrumb";
|
|
108
|
+
/**
|
|
109
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
110
|
+
* Defaults to true.
|
|
111
|
+
*/
|
|
112
|
+
EmbedUiSettings["DASHBOARD_GENERATED_AT"] = "dashboardGeneratedAt";
|
|
113
|
+
/**
|
|
114
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
115
|
+
* menu. Defaults to true.
|
|
116
|
+
*/
|
|
117
|
+
EmbedUiSettings["TILE_RAN_TIMESTAMP"] = "tileRanTimestamp";
|
|
108
118
|
})(EmbedUiSettings || (exports.EmbedUiSettings = EmbedUiSettings = {}));
|
package/lib/cjs/types.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export type EmbedUiSettingsObject = {
|
|
|
9
9
|
[EmbedUiSettings.SHOW_NAVIGATION]?: boolean;
|
|
10
10
|
[EmbedUiSettings.DASHBOARD_CHART_CONTEXT_MENU]?: boolean;
|
|
11
11
|
[EmbedUiSettings.DOCUMENT_BREADCRUMB]?: BreadcrumbDisplayMode;
|
|
12
|
+
[EmbedUiSettings.DASHBOARD_GENERATED_AT]?: boolean;
|
|
13
|
+
[EmbedUiSettings.TILE_RAN_TIMESTAMP]?: boolean;
|
|
12
14
|
};
|
|
13
15
|
type UserAttributeValue = string | string[] | number | number[];
|
|
14
16
|
type HostProps = ({
|
package/lib/esm/constants.d.ts
CHANGED
|
@@ -89,7 +89,17 @@ export declare enum EmbedUiSettings {
|
|
|
89
89
|
* Controls the folder-path breadcrumb in the document title header when in
|
|
90
90
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
91
91
|
*/
|
|
92
|
-
DOCUMENT_BREADCRUMB = "documentBreadcrumb"
|
|
92
|
+
DOCUMENT_BREADCRUMB = "documentBreadcrumb",
|
|
93
|
+
/**
|
|
94
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
95
|
+
* Defaults to true.
|
|
96
|
+
*/
|
|
97
|
+
DASHBOARD_GENERATED_AT = "dashboardGeneratedAt",
|
|
98
|
+
/**
|
|
99
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
100
|
+
* menu. Defaults to true.
|
|
101
|
+
*/
|
|
102
|
+
TILE_RAN_TIMESTAMP = "tileRanTimestamp"
|
|
93
103
|
}
|
|
94
104
|
/**
|
|
95
105
|
* Display modes for the `documentBreadcrumb` UI setting.
|
package/lib/esm/constants.js
CHANGED
|
@@ -102,4 +102,14 @@ export var EmbedUiSettings;
|
|
|
102
102
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
103
103
|
*/
|
|
104
104
|
EmbedUiSettings["DOCUMENT_BREADCRUMB"] = "documentBreadcrumb";
|
|
105
|
+
/**
|
|
106
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
107
|
+
* Defaults to true.
|
|
108
|
+
*/
|
|
109
|
+
EmbedUiSettings["DASHBOARD_GENERATED_AT"] = "dashboardGeneratedAt";
|
|
110
|
+
/**
|
|
111
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
112
|
+
* menu. Defaults to true.
|
|
113
|
+
*/
|
|
114
|
+
EmbedUiSettings["TILE_RAN_TIMESTAMP"] = "tileRanTimestamp";
|
|
105
115
|
})(EmbedUiSettings || (EmbedUiSettings = {}));
|
package/lib/esm/types.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export type EmbedUiSettingsObject = {
|
|
|
9
9
|
[EmbedUiSettings.SHOW_NAVIGATION]?: boolean;
|
|
10
10
|
[EmbedUiSettings.DASHBOARD_CHART_CONTEXT_MENU]?: boolean;
|
|
11
11
|
[EmbedUiSettings.DOCUMENT_BREADCRUMB]?: BreadcrumbDisplayMode;
|
|
12
|
+
[EmbedUiSettings.DASHBOARD_GENERATED_AT]?: boolean;
|
|
13
|
+
[EmbedUiSettings.TILE_RAN_TIMESTAMP]?: boolean;
|
|
12
14
|
};
|
|
13
15
|
type UserAttributeValue = string | string[] | number | number[];
|
|
14
16
|
type HostProps = ({
|
|
@@ -89,7 +89,17 @@ export declare enum EmbedUiSettings {
|
|
|
89
89
|
* Controls the folder-path breadcrumb in the document title header when in
|
|
90
90
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
91
91
|
*/
|
|
92
|
-
DOCUMENT_BREADCRUMB = "documentBreadcrumb"
|
|
92
|
+
DOCUMENT_BREADCRUMB = "documentBreadcrumb",
|
|
93
|
+
/**
|
|
94
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
95
|
+
* Defaults to true.
|
|
96
|
+
*/
|
|
97
|
+
DASHBOARD_GENERATED_AT = "dashboardGeneratedAt",
|
|
98
|
+
/**
|
|
99
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
100
|
+
* menu. Defaults to true.
|
|
101
|
+
*/
|
|
102
|
+
TILE_RAN_TIMESTAMP = "tileRanTimestamp"
|
|
93
103
|
}
|
|
94
104
|
/**
|
|
95
105
|
* Display modes for the `documentBreadcrumb` UI setting.
|
|
@@ -102,4 +102,14 @@ export var EmbedUiSettings;
|
|
|
102
102
|
* APPLICATION mode. Accepts a `BreadcrumbDisplayMode` value. Defaults to "link".
|
|
103
103
|
*/
|
|
104
104
|
EmbedUiSettings["DOCUMENT_BREADCRUMB"] = "documentBreadcrumb";
|
|
105
|
+
/**
|
|
106
|
+
* When false, hides the `Generated <timestamp>` stamp in the dashboard footer.
|
|
107
|
+
* Defaults to true.
|
|
108
|
+
*/
|
|
109
|
+
EmbedUiSettings["DASHBOARD_GENERATED_AT"] = "dashboardGeneratedAt";
|
|
110
|
+
/**
|
|
111
|
+
* When false, hides the "Query ran <timestamp>" entry in a dashboard tile's
|
|
112
|
+
* menu. Defaults to true.
|
|
113
|
+
*/
|
|
114
|
+
EmbedUiSettings["TILE_RAN_TIMESTAMP"] = "tileRanTimestamp";
|
|
105
115
|
})(EmbedUiSettings || (EmbedUiSettings = {}));
|
|
@@ -9,6 +9,8 @@ export type EmbedUiSettingsObject = {
|
|
|
9
9
|
[EmbedUiSettings.SHOW_NAVIGATION]?: boolean;
|
|
10
10
|
[EmbedUiSettings.DASHBOARD_CHART_CONTEXT_MENU]?: boolean;
|
|
11
11
|
[EmbedUiSettings.DOCUMENT_BREADCRUMB]?: BreadcrumbDisplayMode;
|
|
12
|
+
[EmbedUiSettings.DASHBOARD_GENERATED_AT]?: boolean;
|
|
13
|
+
[EmbedUiSettings.TILE_RAN_TIMESTAMP]?: boolean;
|
|
12
14
|
};
|
|
13
15
|
type UserAttributeValue = string | string[] | number | number[];
|
|
14
16
|
type HostProps = ({
|
package/package.json
CHANGED