react-semaphor 0.1.426 → 0.1.428
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/CHANGELOG.md +5 -0
- package/dist/brand-studio/index.cjs +1 -1
- package/dist/brand-studio/index.js +1 -1
- package/dist/chunks/{calendar-preferences-dialog-tBSngRN-.js → calendar-preferences-dialog-BF9bNAF_.js} +2 -2
- package/dist/chunks/{calendar-preferences-dialog-C-gN-vlq.js → calendar-preferences-dialog-_L9eBQfj.js} +1 -1
- package/dist/chunks/{code-editor-tfzm8LWW.js → code-editor-BoowcKU0.js} +23 -23
- package/dist/chunks/{code-editor-Pod1s6SK.js → code-editor-CojfM3qp.js} +772 -757
- package/dist/chunks/{dashboard-ZoKNg47G.js → dashboard-509sbC4_.js} +30989 -30715
- package/dist/chunks/dashboard-CMDXBLnG.js +1402 -0
- package/dist/chunks/{dashboard-briefing-launcher-0kR-QThz.js → dashboard-briefing-launcher-B-ZTWJwo.js} +1 -1
- package/dist/chunks/{dashboard-briefing-launcher-BE-sNAzW.js → dashboard-briefing-launcher-DIdYHNTq.js} +3 -3
- package/dist/chunks/{dashboard-controls-BUYTVauu.js → dashboard-controls-CWprw-Pb.js} +8 -8
- package/dist/chunks/{dashboard-controls-Ce_Bps8f.js → dashboard-controls-CbRzWo1N.js} +543 -534
- package/dist/chunks/{dashboard-json-81uc8aVR.js → dashboard-json-BEZrxx_k.js} +1 -1
- package/dist/chunks/{dashboard-json-4quaFoSw.js → dashboard-json-jO4GQfZk.js} +2 -2
- package/dist/chunks/{edit-dashboard-visual-nVRXv1Lq.js → edit-dashboard-visual-D3uhqgm3.js} +1 -1
- package/dist/chunks/{edit-dashboard-visual-DqQsH7rN.js → edit-dashboard-visual-KgQTjqWp.js} +302 -302
- package/dist/chunks/{use-create-flow-overlay-state-CoANTEXS.js → use-create-flow-overlay-state-BiMYdjZP.js} +1 -1
- package/dist/chunks/{use-create-flow-overlay-state-DUVIsF0y.js → use-create-flow-overlay-state-CGsLzp9A.js} +2 -2
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/data-app-builder/index.cjs +1 -1
- package/dist/data-app-builder/index.js +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +6 -6
- 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 +19 -0
- package/dist/types/types.d.ts +18 -0
- package/package.json +1 -1
- package/dist/chunks/dashboard-JNK2ly_e.js +0 -1402
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../chunks/dashboard-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../chunks/dashboard-CMDXBLnG.js"),e=require("../chunks/common-types-C73-Ud1-.js"),a=require("../chunks/calendar-preferences-dialog-_L9eBQfj.js");exports.Surfboard=r.DashboardPlus;exports.CONTROL_CARD_DEFAULT_VALUE=e.CONTROL_CARD_DEFAULT_VALUE;exports.EMPTY_SELECTION=e.EMPTY_SELECTION;exports.CalendarPreferencesDialog=a.CalendarPreferencesDialog;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a as e } from "../chunks/dashboard-
|
|
1
|
+
import { a as e } from "../chunks/dashboard-509sbC4_.js";
|
|
2
2
|
import { C, E } from "../chunks/common-types-ClkOI-3O.js";
|
|
3
|
-
import { C as s } from "../chunks/calendar-preferences-dialog-
|
|
3
|
+
import { C as s } from "../chunks/calendar-preferences-dialog-BF9bNAF_.js";
|
|
4
4
|
export {
|
|
5
5
|
C as CONTROL_CARD_DEFAULT_VALUE,
|
|
6
6
|
s as CalendarPreferencesDialog,
|
package/dist/types/main.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare type Actions_2 = {
|
|
|
44
44
|
upsertDashboardInput: (input: DashboardInput) => void;
|
|
45
45
|
removeDashboardInput: (inputId: string) => void;
|
|
46
46
|
setDefaultDashboardInputValues: (values: DashboardInputValues | undefined) => void;
|
|
47
|
+
setDefaultDashboardInputComparisonSelection: (input: Pick<DashboardInput, 'id' | 'runtimeScope'>, target: DashboardInputRuntimeTarget, selection: GlobalDateComparisonSelection | undefined) => void;
|
|
47
48
|
setDashboardInputValues: (values: DashboardInputValues) => void;
|
|
48
49
|
setDashboardInputSlot: (input: Pick<DashboardInput, 'id' | 'runtimeScope'>, target: DashboardInputRuntimeTarget, slot: DashboardInputSlot) => void;
|
|
49
50
|
setDashboardInputComparisonSelection: (input: Pick<DashboardInput, 'id' | 'runtimeScope'>, target: DashboardInputRuntimeTarget, selection: GlobalDateComparisonSelection) => void;
|
|
@@ -6980,6 +6981,24 @@ export declare type UIConfig = {
|
|
|
6980
6981
|
* If unset, runtime falls back to `showBriefings`; if both are unset, briefings are visible.
|
|
6981
6982
|
*/
|
|
6982
6983
|
showBriefings?: boolean;
|
|
6984
|
+
/**
|
|
6985
|
+
* Controls visibility of the Dashboard Hub navigation control.
|
|
6986
|
+
* Defaults to true unless explicitly disabled. This does not grant access
|
|
6987
|
+
* to the dashboard hub when the token identity cannot navigate there.
|
|
6988
|
+
*/
|
|
6989
|
+
showDashboardHub?: boolean;
|
|
6990
|
+
/**
|
|
6991
|
+
* Controls visibility of dashboard sharing controls.
|
|
6992
|
+
* Defaults to true unless explicitly disabled. This does not grant sharing
|
|
6993
|
+
* permissions when the current user cannot share the dashboard.
|
|
6994
|
+
*/
|
|
6995
|
+
showDashboardSharing?: boolean;
|
|
6996
|
+
/**
|
|
6997
|
+
* Controls visibility of group-management controls.
|
|
6998
|
+
* Defaults to true unless explicitly disabled. This does not grant group
|
|
6999
|
+
* management permissions to the current user.
|
|
7000
|
+
*/
|
|
7001
|
+
showGroupManagement?: boolean;
|
|
6983
7002
|
/**
|
|
6984
7003
|
* Effective project-level feature visibility projected by semaphor-app.
|
|
6985
7004
|
* Project policy can disable features for every token; embed config can only
|
package/dist/types/types.d.ts
CHANGED
|
@@ -4694,6 +4694,24 @@ export declare type UIConfig = {
|
|
|
4694
4694
|
* If unset, runtime falls back to `showBriefings`; if both are unset, briefings are visible.
|
|
4695
4695
|
*/
|
|
4696
4696
|
showBriefings?: boolean;
|
|
4697
|
+
/**
|
|
4698
|
+
* Controls visibility of the Dashboard Hub navigation control.
|
|
4699
|
+
* Defaults to true unless explicitly disabled. This does not grant access
|
|
4700
|
+
* to the dashboard hub when the token identity cannot navigate there.
|
|
4701
|
+
*/
|
|
4702
|
+
showDashboardHub?: boolean;
|
|
4703
|
+
/**
|
|
4704
|
+
* Controls visibility of dashboard sharing controls.
|
|
4705
|
+
* Defaults to true unless explicitly disabled. This does not grant sharing
|
|
4706
|
+
* permissions when the current user cannot share the dashboard.
|
|
4707
|
+
*/
|
|
4708
|
+
showDashboardSharing?: boolean;
|
|
4709
|
+
/**
|
|
4710
|
+
* Controls visibility of group-management controls.
|
|
4711
|
+
* Defaults to true unless explicitly disabled. This does not grant group
|
|
4712
|
+
* management permissions to the current user.
|
|
4713
|
+
*/
|
|
4714
|
+
showGroupManagement?: boolean;
|
|
4697
4715
|
/**
|
|
4698
4716
|
* Effective project-level feature visibility projected by semaphor-app.
|
|
4699
4717
|
* Project policy can disable features for every token; embed config can only
|