react-semaphor 0.0.642 → 0.0.644
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/dist/chunks/dashboard-plus-Bntl46bA.js +340 -0
- package/dist/chunks/{dashboard-plus-Cwvy81Z8.js → dashboard-plus-Dkj_cMhr.js} +4515 -4464
- package/dist/chunks/{index-D9K5qlK0.js → index-BCjwV6pU.js} +202 -209
- package/dist/chunks/{index-DgFF31sH.js → index-CbnZLQ5d.js} +21170 -21262
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +3 -3
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +2 -0
- package/dist/types/main.d.ts +12 -2
- package/dist/types/surfboard.d.ts +2 -0
- package/dist/types/types.d.ts +2 -0
- package/package.json +1 -1
- package/dist/chunks/dashboard-plus-BfJdInCz.js +0 -340
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-Bntl46bA.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
package/dist/types/main.d.ts
CHANGED
|
@@ -645,7 +645,7 @@ export declare type Dialect = 'mysql' | 'postgresql' | 'bigquery' | 'redshift' |
|
|
|
645
645
|
|
|
646
646
|
export declare type DisplayDataType = 'string' | 'date' | 'number' | 'html' | 'none';
|
|
647
647
|
|
|
648
|
-
export declare function downloadPdf(password?: string): Promise<void>;
|
|
648
|
+
export declare function downloadPdf(apiServiceUrl: string, password?: string): Promise<void>;
|
|
649
649
|
|
|
650
650
|
declare interface DrillActions {
|
|
651
651
|
updateDrillHierarchies: (h: DrillHierarchy[]) => void;
|
|
@@ -1054,7 +1054,7 @@ declare interface InlineDrillInteraction {
|
|
|
1054
1054
|
label?: string;
|
|
1055
1055
|
}
|
|
1056
1056
|
|
|
1057
|
-
export declare function invalidateToken(): Promise<any>;
|
|
1057
|
+
export declare function invalidateToken(apiServiceUrl: string): Promise<any>;
|
|
1058
1058
|
|
|
1059
1059
|
export declare function isBooleanDataType(dataType: string): boolean;
|
|
1060
1060
|
|
|
@@ -1571,6 +1571,8 @@ export declare type TCardPreferences = {
|
|
|
1571
1571
|
displayOptions?: {
|
|
1572
1572
|
showFilterInfo?: boolean;
|
|
1573
1573
|
showCardToolbar?: boolean;
|
|
1574
|
+
showChrome?: boolean;
|
|
1575
|
+
allowScroll?: boolean;
|
|
1574
1576
|
};
|
|
1575
1577
|
};
|
|
1576
1578
|
|
|
@@ -1861,6 +1863,14 @@ export declare type TokenProps = {
|
|
|
1861
1863
|
* UI behavior and feature flags.
|
|
1862
1864
|
*/
|
|
1863
1865
|
config?: UIConfig;
|
|
1866
|
+
/**
|
|
1867
|
+
* Dataservice URL.
|
|
1868
|
+
*/
|
|
1869
|
+
dataServiceUrl: string;
|
|
1870
|
+
/**
|
|
1871
|
+
* API service URL.
|
|
1872
|
+
*/
|
|
1873
|
+
apiServiceUrl: string;
|
|
1864
1874
|
};
|
|
1865
1875
|
|
|
1866
1876
|
/**
|
package/dist/types/types.d.ts
CHANGED