react-semaphor 0.0.611 → 0.0.613
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-D4ui9-zt.js → dashboard-plus-CbGYJMZr.js} +2493 -2457
- package/dist/chunks/{dashboard-plus-COAXbMNB.js → dashboard-plus-LJc2Z37u.js} +22 -22
- package/dist/chunks/{index-CUoUHwg-.js → index-CBkmCgz9.js} +18737 -18439
- package/dist/chunks/index-dVkN_Ch1.js +919 -0
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +3 -3
- 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 +1 -0
- package/dist/types/main.d.ts +3 -0
- package/dist/types/surfboard.d.ts +1 -0
- package/dist/types/types.d.ts +1 -0
- package/package.json +1 -1
- package/dist/chunks/index-DwwZJ4zq.js +0 -876
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-LJc2Z37u.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
|
@@ -68,6 +68,7 @@ declare type Actions = {
|
|
|
68
68
|
setCardSql: (sheetId: string, cardId: string, sql: string) => void;
|
|
69
69
|
setCardPython: (cardId: string, pythonCode: string) => void;
|
|
70
70
|
setCardDescription: (sheetId: string, cardId: string, description: string) => void;
|
|
71
|
+
setCardKpiOptions: (sheetId: string, cardId: string, kpiOptions: Record<string, any>) => void;
|
|
71
72
|
addFrame: (sheetId: string, frame: TFrame, position?: 'start' | 'end') => void;
|
|
72
73
|
updateFrame: (sheetId: string, frame: TFrame) => void;
|
|
73
74
|
updateCard: (sheetId: string, card: TCard) => void;
|
|
@@ -120,6 +121,7 @@ declare type Actions = {
|
|
|
120
121
|
declare type Actions_2 = TableActions & ExplorerActions & DrillActions & {
|
|
121
122
|
setEditorFilterMode: (filterColumnName: string, filterMode: 'include' | 'exclude') => void;
|
|
122
123
|
setLowerIsBetter: (lowerIsBetter: boolean) => void;
|
|
124
|
+
setValueAlignment: (valueAlignment: 'left' | 'center') => void;
|
|
123
125
|
clearEditorFilter: (filterColumn: FilterByColumn) => void;
|
|
124
126
|
removeEditorFilter: (filterColumn: FilterByColumn) => void;
|
|
125
127
|
updateEditorFilterValue: (filterColumnName: string, filterValue: OldFilterValue, clearFilter?: boolean) => void;
|
|
@@ -1515,6 +1517,7 @@ export declare type TCardPreferences = {
|
|
|
1515
1517
|
kpiVisualOptions?: {
|
|
1516
1518
|
lowerIsBetter?: boolean;
|
|
1517
1519
|
countryLogoId?: string;
|
|
1520
|
+
valueAlignment?: 'left' | 'center';
|
|
1518
1521
|
formatOptions?: TFormatOptions;
|
|
1519
1522
|
metricComparison?: {
|
|
1520
1523
|
enabled?: boolean;
|
package/dist/types/types.d.ts
CHANGED