react-semaphor 0.1.133 → 0.1.134
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-C1rIPoLI.js → dashboard-controls-bovlMmw3.js} +1 -1
- package/dist/chunks/{dashboard-controls-YCOwB4c7.js → dashboard-controls-ecdj2GHc.js} +3 -3
- package/dist/chunks/{dashboard-export-dialog-BpjTGwvL.js → dashboard-export-dialog-CK5b2y_K.js} +3 -3
- package/dist/chunks/{dashboard-export-dialog-CsU5-_Nc.js → dashboard-export-dialog-D5jbZpR7.js} +1 -1
- package/dist/chunks/{dashboard-json-DDxHEaDO.js → dashboard-json-DKVaKR05.js} +1 -1
- package/dist/chunks/{dashboard-json-BwJ6kZV2.js → dashboard-json-DUtSSb_n.js} +1 -1
- package/dist/chunks/{edit-dashboard-visual-DdK_bxBz.js → edit-dashboard-visual-BHmq3HBV.js} +2048 -2099
- package/dist/chunks/edit-dashboard-visual-CSw8uIEZ.js +195 -0
- package/dist/chunks/{editor-action-buttons-CK2siDBM.js → editor-action-buttons-D7ofzkZ0.js} +2 -2
- package/dist/chunks/{editor-action-buttons-CmA0eoCZ.js → editor-action-buttons-xX1IQPAT.js} +1 -1
- package/dist/chunks/{index-BCmbfOd2.js → index-Ba5bDBGc.js} +200 -200
- package/dist/chunks/{index-DilTtW4W.js → index-BbG-vwjD.js} +16062 -15782
- package/dist/chunks/{resource-management-panel-Bt1zi1Yb.js → resource-management-panel-Bewt6347.js} +2 -2
- package/dist/chunks/{resource-management-panel-Fs9hg3pC.js → resource-management-panel-CrQMV9vG.js} +1 -1
- package/dist/chunks/{use-visual-utils-CzQAEa-2.js → use-visual-utils-BijuWjGP.js} +1 -1
- package/dist/chunks/{use-visual-utils-Cjv_OnmO.js → use-visual-utils-auHWALCR.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 +9 -0
- package/dist/types/main.d.ts +9 -0
- package/dist/types/surfboard.d.ts +9 -0
- package/dist/types/types.d.ts +9 -0
- package/package.json +1 -1
- package/dist/chunks/edit-dashboard-visual-BoV4X2or.js +0 -195
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-Ba5bDBGc.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -1371,6 +1371,14 @@ export declare type TCustomCardPreferences = {
|
|
|
1371
1371
|
}[];
|
|
1372
1372
|
};
|
|
1373
1373
|
|
|
1374
|
+
declare type TCustomFilterPreferences = {
|
|
1375
|
+
url: string;
|
|
1376
|
+
componentName: string;
|
|
1377
|
+
pluginFilterType?: string;
|
|
1378
|
+
icon?: string;
|
|
1379
|
+
settings?: Record<string, string | number | boolean>;
|
|
1380
|
+
};
|
|
1381
|
+
|
|
1374
1382
|
export declare type TDashboard = {
|
|
1375
1383
|
id: string;
|
|
1376
1384
|
title?: string;
|
|
@@ -1463,6 +1471,7 @@ declare type TFilter = {
|
|
|
1463
1471
|
excludeSheetIds?: string[];
|
|
1464
1472
|
applyToCardIds?: string[];
|
|
1465
1473
|
excludeCardIds?: string[];
|
|
1474
|
+
customFilterPreferences?: TCustomFilterPreferences;
|
|
1466
1475
|
};
|
|
1467
1476
|
|
|
1468
1477
|
declare type TFilterValue = FilterForString | FilterForEqual | FilterForCompare | FilterForBetween | FilterForIn | FilterForDate;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -2309,6 +2309,14 @@ export declare type TCustomCardPreferences = {
|
|
|
2309
2309
|
}[];
|
|
2310
2310
|
};
|
|
2311
2311
|
|
|
2312
|
+
declare type TCustomFilterPreferences = {
|
|
2313
|
+
url: string;
|
|
2314
|
+
componentName: string;
|
|
2315
|
+
pluginFilterType?: string;
|
|
2316
|
+
icon?: string;
|
|
2317
|
+
settings?: Record<string, string | number | boolean>;
|
|
2318
|
+
};
|
|
2319
|
+
|
|
2312
2320
|
export declare type TDashboard = {
|
|
2313
2321
|
id: string;
|
|
2314
2322
|
title?: string;
|
|
@@ -2401,6 +2409,7 @@ declare type TFilter = {
|
|
|
2401
2409
|
excludeSheetIds?: string[];
|
|
2402
2410
|
applyToCardIds?: string[];
|
|
2403
2411
|
excludeCardIds?: string[];
|
|
2412
|
+
customFilterPreferences?: TCustomFilterPreferences;
|
|
2404
2413
|
};
|
|
2405
2414
|
|
|
2406
2415
|
export declare type TFilterValue = FilterForString | FilterForEqual | FilterForCompare | FilterForBetween | FilterForIn | FilterForDate;
|
|
@@ -1376,6 +1376,14 @@ export declare type TCustomCardPreferences = {
|
|
|
1376
1376
|
}[];
|
|
1377
1377
|
};
|
|
1378
1378
|
|
|
1379
|
+
declare type TCustomFilterPreferences = {
|
|
1380
|
+
url: string;
|
|
1381
|
+
componentName: string;
|
|
1382
|
+
pluginFilterType?: string;
|
|
1383
|
+
icon?: string;
|
|
1384
|
+
settings?: Record<string, string | number | boolean>;
|
|
1385
|
+
};
|
|
1386
|
+
|
|
1379
1387
|
export declare type TDashboard = {
|
|
1380
1388
|
id: string;
|
|
1381
1389
|
title?: string;
|
|
@@ -1468,6 +1476,7 @@ declare type TFilter = {
|
|
|
1468
1476
|
excludeSheetIds?: string[];
|
|
1469
1477
|
applyToCardIds?: string[];
|
|
1470
1478
|
excludeCardIds?: string[];
|
|
1479
|
+
customFilterPreferences?: TCustomFilterPreferences;
|
|
1471
1480
|
};
|
|
1472
1481
|
|
|
1473
1482
|
declare type TFilterValue = FilterForString | FilterForEqual | FilterForCompare | FilterForBetween | FilterForIn | FilterForDate;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1368,6 +1368,14 @@ export declare type TCustomCardPreferences = {
|
|
|
1368
1368
|
}[];
|
|
1369
1369
|
};
|
|
1370
1370
|
|
|
1371
|
+
declare type TCustomFilterPreferences = {
|
|
1372
|
+
url: string;
|
|
1373
|
+
componentName: string;
|
|
1374
|
+
pluginFilterType?: string;
|
|
1375
|
+
icon?: string;
|
|
1376
|
+
settings?: Record<string, string | number | boolean>;
|
|
1377
|
+
};
|
|
1378
|
+
|
|
1371
1379
|
export declare type TDashboard = {
|
|
1372
1380
|
id: string;
|
|
1373
1381
|
title?: string;
|
|
@@ -1460,6 +1468,7 @@ declare type TFilter = {
|
|
|
1460
1468
|
excludeSheetIds?: string[];
|
|
1461
1469
|
applyToCardIds?: string[];
|
|
1462
1470
|
excludeCardIds?: string[];
|
|
1471
|
+
customFilterPreferences?: TCustomFilterPreferences;
|
|
1463
1472
|
};
|
|
1464
1473
|
|
|
1465
1474
|
declare type TFilterValue = FilterForString | FilterForEqual | FilterForCompare | FilterForBetween | FilterForIn | FilterForDate;
|