react-semaphor 0.1.140 → 0.1.142
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-DCdXE-1I.js → dashboard-controls-BMLlOkS9.js} +3 -3
- package/dist/chunks/{dashboard-controls-ZLM2lY1W.js → dashboard-controls-BdQcYRkf.js} +1 -1
- package/dist/chunks/{dashboard-export-dialog-DtrfJ9Js.js → dashboard-export-dialog-BpNaUA5x.js} +1 -1
- package/dist/chunks/{dashboard-export-dialog-BDIPA0iP.js → dashboard-export-dialog-CbMcLZvW.js} +3 -3
- package/dist/chunks/{dashboard-json-C5mUnJ_6.js → dashboard-json-DD-d9gYu.js} +1 -1
- package/dist/chunks/{dashboard-json-CjX2S2P5.js → dashboard-json-DgQozDAv.js} +1 -1
- package/dist/chunks/{edit-dashboard-visual-Drzczr6I.js → edit-dashboard-visual-CR3NqJ7m.js} +10 -10
- package/dist/chunks/{edit-dashboard-visual-BEAVr2Mh.js → edit-dashboard-visual-CRMhXxdG.js} +2122 -2074
- package/dist/chunks/{editor-action-buttons-DgFLwd7e.js → editor-action-buttons-CNQtSzD5.js} +2 -2
- package/dist/chunks/{editor-action-buttons-5G0hV-FE.js → editor-action-buttons-DYrSZQhJ.js} +1 -1
- package/dist/chunks/{index-COVj17uo.js → index-CReqnEJI.js} +136 -136
- package/dist/chunks/{index-CnzyKX5P.js → index-QdSI9E0a.js} +10769 -10626
- package/dist/chunks/{resource-management-panel-4U6ulEyR.js → resource-management-panel-CBXn6QHi.js} +2 -2
- package/dist/chunks/{resource-management-panel-CBeNy1ff.js → resource-management-panel-CXSx9QhW.js} +1 -1
- package/dist/chunks/{use-visual-utils-Cyhtukxh.js → use-visual-utils-BDuNB0Iz.js} +1 -1
- package/dist/chunks/{use-visual-utils-C2iWEneY.js → use-visual-utils-BnCl386t.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 +4 -4
- 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 +14 -0
- package/dist/types/main.d.ts +14 -0
- package/dist/types/surfboard.d.ts +14 -0
- package/dist/types/types.d.ts +14 -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/index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-CReqnEJI.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -1512,6 +1512,20 @@ export declare type TFunnelConfig = {
|
|
|
1512
1512
|
* - 'percentOfFirst': First stage = 100%, others relative to first
|
|
1513
1513
|
*/
|
|
1514
1514
|
percentMode?: TFunnelPercentMode;
|
|
1515
|
+
/**
|
|
1516
|
+
* Controls how much funnel segments narrow based on their values.
|
|
1517
|
+
* - 0: No shrink (all segments same width)
|
|
1518
|
+
* - 1: Full shrink (segments narrow proportionally to values, default)
|
|
1519
|
+
* Lower values prevent segments from becoming too narrow for labels.
|
|
1520
|
+
*/
|
|
1521
|
+
shrinkFraction?: number;
|
|
1522
|
+
/**
|
|
1523
|
+
* Hide labels for segments smaller than this percentage of total.
|
|
1524
|
+
* - 0: Show all labels (default)
|
|
1525
|
+
* - 10: Hide labels for segments < 10% of total
|
|
1526
|
+
* Range: 0-25
|
|
1527
|
+
*/
|
|
1528
|
+
labelThreshold?: number;
|
|
1515
1529
|
};
|
|
1516
1530
|
|
|
1517
1531
|
/**
|
package/dist/types/main.d.ts
CHANGED
|
@@ -2459,6 +2459,20 @@ export declare type TFunnelConfig = {
|
|
|
2459
2459
|
* - 'percentOfFirst': First stage = 100%, others relative to first
|
|
2460
2460
|
*/
|
|
2461
2461
|
percentMode?: TFunnelPercentMode;
|
|
2462
|
+
/**
|
|
2463
|
+
* Controls how much funnel segments narrow based on their values.
|
|
2464
|
+
* - 0: No shrink (all segments same width)
|
|
2465
|
+
* - 1: Full shrink (segments narrow proportionally to values, default)
|
|
2466
|
+
* Lower values prevent segments from becoming too narrow for labels.
|
|
2467
|
+
*/
|
|
2468
|
+
shrinkFraction?: number;
|
|
2469
|
+
/**
|
|
2470
|
+
* Hide labels for segments smaller than this percentage of total.
|
|
2471
|
+
* - 0: Show all labels (default)
|
|
2472
|
+
* - 10: Hide labels for segments < 10% of total
|
|
2473
|
+
* Range: 0-25
|
|
2474
|
+
*/
|
|
2475
|
+
labelThreshold?: number;
|
|
2462
2476
|
};
|
|
2463
2477
|
|
|
2464
2478
|
/**
|
|
@@ -1517,6 +1517,20 @@ export declare type TFunnelConfig = {
|
|
|
1517
1517
|
* - 'percentOfFirst': First stage = 100%, others relative to first
|
|
1518
1518
|
*/
|
|
1519
1519
|
percentMode?: TFunnelPercentMode;
|
|
1520
|
+
/**
|
|
1521
|
+
* Controls how much funnel segments narrow based on their values.
|
|
1522
|
+
* - 0: No shrink (all segments same width)
|
|
1523
|
+
* - 1: Full shrink (segments narrow proportionally to values, default)
|
|
1524
|
+
* Lower values prevent segments from becoming too narrow for labels.
|
|
1525
|
+
*/
|
|
1526
|
+
shrinkFraction?: number;
|
|
1527
|
+
/**
|
|
1528
|
+
* Hide labels for segments smaller than this percentage of total.
|
|
1529
|
+
* - 0: Show all labels (default)
|
|
1530
|
+
* - 10: Hide labels for segments < 10% of total
|
|
1531
|
+
* Range: 0-25
|
|
1532
|
+
*/
|
|
1533
|
+
labelThreshold?: number;
|
|
1520
1534
|
};
|
|
1521
1535
|
|
|
1522
1536
|
/**
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1509,6 +1509,20 @@ export declare type TFunnelConfig = {
|
|
|
1509
1509
|
* - 'percentOfFirst': First stage = 100%, others relative to first
|
|
1510
1510
|
*/
|
|
1511
1511
|
percentMode?: TFunnelPercentMode;
|
|
1512
|
+
/**
|
|
1513
|
+
* Controls how much funnel segments narrow based on their values.
|
|
1514
|
+
* - 0: No shrink (all segments same width)
|
|
1515
|
+
* - 1: Full shrink (segments narrow proportionally to values, default)
|
|
1516
|
+
* Lower values prevent segments from becoming too narrow for labels.
|
|
1517
|
+
*/
|
|
1518
|
+
shrinkFraction?: number;
|
|
1519
|
+
/**
|
|
1520
|
+
* Hide labels for segments smaller than this percentage of total.
|
|
1521
|
+
* - 0: Show all labels (default)
|
|
1522
|
+
* - 10: Hide labels for segments < 10% of total
|
|
1523
|
+
* Range: 0-25
|
|
1524
|
+
*/
|
|
1525
|
+
labelThreshold?: number;
|
|
1512
1526
|
};
|
|
1513
1527
|
|
|
1514
1528
|
/**
|