react-semaphor 0.0.599 → 0.0.600
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-BaplQ0xO.js → dashboard-plus-BmCs016Q.js} +56 -61
- package/dist/chunks/{dashboard-plus-DEvUJH_h.js → dashboard-plus-Bzs4D9wv.js} +52 -64
- package/dist/chunks/{index-44bfQto9.js → index-Cps7ZMha.js} +182 -166
- package/dist/chunks/{index-C_CNJIjg.js → index-DT9VO-bl.js} +17620 -17375
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +98 -49
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/main.d.ts +8 -0
- package/package.json +1 -1
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-BmCs016Q.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
|
@@ -2108,6 +2108,8 @@ export declare function useTextFilterHook(filterId: string): {
|
|
|
2108
2108
|
allSelected: boolean;
|
|
2109
2109
|
};
|
|
2110
2110
|
|
|
2111
|
+
export declare function Visual(props: VisualProps): JSX_2.Element;
|
|
2112
|
+
|
|
2111
2113
|
/**
|
|
2112
2114
|
* Display mode for visual components - controls which UI elements are shown
|
|
2113
2115
|
*/
|
|
@@ -2145,4 +2147,10 @@ export declare type VisualDisplayPreferences = {
|
|
|
2145
2147
|
};
|
|
2146
2148
|
};
|
|
2147
2149
|
|
|
2150
|
+
declare type VisualProps = DashboardProps & {
|
|
2151
|
+
cardId: string;
|
|
2152
|
+
dashboardId: string;
|
|
2153
|
+
displayPreferences?: VisualDisplayPreferences;
|
|
2154
|
+
};
|
|
2155
|
+
|
|
2148
2156
|
export { }
|