synapse-react-client 3.3.7 → 3.3.8
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/index.cjs +23 -23
- package/dist/index.d.ts +5 -1
- package/dist/index.js +7347 -7319
- package/dist/style/base/_core.scss +0 -43
- package/dist/style/components/_query-wrapper-plot-nav.scss +1 -0
- package/dist/umd/synapse-react-client.development.css +1 -36
- package/dist/umd/synapse-react-client.development.js +962 -845
- package/dist/umd/synapse-react-client.production.min.css +1 -1
- package/dist/umd/synapse-react-client.production.min.js +187 -187
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1528,7 +1528,11 @@ declare const EXPERIMENTAL_MODE_COOKIE = "SynapseTestWebsite";
|
|
|
1528
1528
|
|
|
1529
1529
|
declare const EXPERIMENTAL_TOOL: string;
|
|
1530
1530
|
|
|
1531
|
-
export declare const ExperimentalMode: default_2.
|
|
1531
|
+
export declare const ExperimentalMode: default_2.FunctionComponent<ExperimentalModeProps>;
|
|
1532
|
+
|
|
1533
|
+
declare type ExperimentalModeProps = {
|
|
1534
|
+
onExperimentalModeToggle?: (newValue: boolean) => void;
|
|
1535
|
+
};
|
|
1532
1536
|
|
|
1533
1537
|
declare const EXPLORE: string;
|
|
1534
1538
|
|