react-semaphor 0.1.284 → 0.1.286
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-controls-4pDdG3me.js → dashboard-controls-ItYogy_p.js} +4 -4
- package/dist/chunks/{dashboard-controls-Dhry2k8x.js → dashboard-controls-L0PZjJCt.js} +318 -341
- package/dist/chunks/dashboard-filter-controls-button-BBM66Kjx.js +1107 -0
- package/dist/chunks/dashboard-filter-controls-button-C0aCuD2T.js +11 -0
- package/dist/chunks/{dashboard-json-CYnf5rdp.js → dashboard-json-BQ-vAiN1.js} +1 -1
- package/dist/chunks/{dashboard-json-D-KsLEGl.js → dashboard-json-DVGKEKGc.js} +1 -1
- package/dist/chunks/{dashboard-summary-settings-dialog-B4jsBFro.js → dashboard-summary-settings-dialog-DlXqW4ur.js} +1 -1
- package/dist/chunks/{dashboard-summary-settings-dialog-Cn4-fB2h.js → dashboard-summary-settings-dialog-jRhWndnZ.js} +1 -1
- package/dist/chunks/{edit-dashboard-visual-BQnApBvr.js → edit-dashboard-visual-BFIX635s.js} +2 -2
- package/dist/chunks/{edit-dashboard-visual-BDIt_S2F.js → edit-dashboard-visual-DOyPqIRy.js} +4 -4
- package/dist/chunks/{index-DBuN9Zf6.js → index-5fuOmhsI.js} +170 -170
- package/dist/chunks/{index-y1uW2fuZ.js → index-BJLFSwZr.js} +10190 -10214
- package/dist/chunks/resource-management-panel-DMIhpLZ1.js +933 -0
- package/dist/chunks/resource-management-panel-DPJ6MzLA.js +6 -0
- package/dist/chunks/{use-create-flow-overlay-state-Cr9AFdXx.js → use-create-flow-overlay-state-BU00QaON.js} +142 -145
- package/dist/chunks/use-create-flow-overlay-state-CvuLpw1f.js +21 -0
- package/dist/chunks/{use-visual-utils-DNp8XO6G.js → use-visual-utils-DUV4E_sx.js} +1 -1
- package/dist/chunks/{use-visual-utils-Ccmzx7-m.js → use-visual-utils-DlwYqcbg.js} +1 -1
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +5 -5
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +2 -2
- package/dist/types/main.d.ts +18 -2
- package/package.json +1 -1
- package/dist/chunks/dashboard-filter-controls-button-BZXrmJP2.js +0 -1072
- package/dist/chunks/dashboard-filter-controls-button-DEUvxIWD.js +0 -11
- package/dist/chunks/resource-management-panel-BC-cvjI9.js +0 -920
- package/dist/chunks/resource-management-panel-PSvKnmq5.js +0 -6
- package/dist/chunks/use-create-flow-overlay-state-COe7Ekru.js +0 -21
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("../chunks/index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("../chunks/index-5fuOmhsI.js"),e=require("../types/index.cjs"),r=require("../chunks/dashboard-summary-settings-dialog-jRhWndnZ.js");exports.Surfboard=a.DashboardPlus;exports.CONTROL_CARD_DEFAULT_VALUE=e.CONTROL_CARD_DEFAULT_VALUE;exports.EMPTY_SELECTION=e.EMPTY_SELECTION;exports.CalendarPreferencesDialog=r.CalendarPreferencesDialog;exports.DashboardSummarySettingsDialog=r.DashboardSummarySettingsDialog;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as o } from "../chunks/index-
|
|
1
|
+
import { a as o } from "../chunks/index-BJLFSwZr.js";
|
|
2
2
|
import { CONTROL_CARD_DEFAULT_VALUE as s, EMPTY_SELECTION as D } from "../types/index.js";
|
|
3
|
-
import { C as m, D as t } from "../chunks/dashboard-summary-settings-dialog-
|
|
3
|
+
import { C as m, D as t } from "../chunks/dashboard-summary-settings-dialog-DlXqW4ur.js";
|
|
4
4
|
export {
|
|
5
5
|
s as CONTROL_CARD_DEFAULT_VALUE,
|
|
6
6
|
m as CalendarPreferencesDialog,
|
package/dist/types/main.d.ts
CHANGED
|
@@ -304,11 +304,26 @@ declare type AddFrameOptions = {
|
|
|
304
304
|
copyLayoutFromFrameId?: string;
|
|
305
305
|
};
|
|
306
306
|
|
|
307
|
-
|
|
307
|
+
/**
|
|
308
|
+
* Segmented control that flips the editor between Drag-and-drop and SQL
|
|
309
|
+
* modes. Replaces the earlier single-switch toggle — two labeled buttons
|
|
310
|
+
* read more clearly than a toggle whose state requires translating an
|
|
311
|
+
* icon.
|
|
312
|
+
*
|
|
313
|
+
* Layout matches the Filter split-button: a bordered shell with two
|
|
314
|
+
* ghost-button segments inside. The active segment gets a muted fill;
|
|
315
|
+
* the inactive segment is transparent so the surface behind shows
|
|
316
|
+
* through.
|
|
317
|
+
*/
|
|
318
|
+
export declare function AdvancedModeToggle({ className }: AdvancedModeToggleProps): JSX.Element | null;
|
|
308
319
|
|
|
309
320
|
declare interface AdvancedModeToggleProps {
|
|
321
|
+
/** @deprecated Kept for API compatibility; the segmented control
|
|
322
|
+
* handles its own layout. */
|
|
310
323
|
className?: string;
|
|
324
|
+
/** @deprecated The old DevModeSwitch prop has no analogue here. */
|
|
311
325
|
labelClassName?: string;
|
|
326
|
+
/** @deprecated The old DevModeSwitch prop has no analogue here. */
|
|
312
327
|
switchClassName?: string;
|
|
313
328
|
}
|
|
314
329
|
|
|
@@ -5440,9 +5455,10 @@ export declare type VisualDisplayPreferences = {
|
|
|
5440
5455
|
};
|
|
5441
5456
|
};
|
|
5442
5457
|
|
|
5443
|
-
export declare function VisualEditingControls(
|
|
5458
|
+
export declare function VisualEditingControls(_props?: VisualEditingControlsProps): JSX.Element;
|
|
5444
5459
|
|
|
5445
5460
|
declare interface VisualEditingControlsProps {
|
|
5461
|
+
/** @deprecated Buttons self-size via `size="xs"`; prop is ignored. */
|
|
5446
5462
|
className?: string;
|
|
5447
5463
|
}
|
|
5448
5464
|
|