react-semaphor 0.1.102 → 0.1.103

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.
Files changed (28) hide show
  1. package/dist/chunks/{dashboard-controls-BcI9OPvx.js → dashboard-controls-DAzaYym5.js} +283 -283
  2. package/dist/chunks/{dashboard-controls-B69rp7Eg.js → dashboard-controls-Ds2RCrWu.js} +2 -2
  3. package/dist/chunks/{dashboard-json-DsxHtR1h.js → dashboard-json-BQy-8SIJ.js} +1 -1
  4. package/dist/chunks/{dashboard-json-BJ1c04y3.js → dashboard-json-o5bAUblk.js} +1 -1
  5. package/dist/chunks/{edit-dashboard-visual-C2PPgPSf.js → edit-dashboard-visual-BHwFOR_7.js} +3 -3
  6. package/dist/chunks/{edit-dashboard-visual-CRvSRhC4.js → edit-dashboard-visual-DLOAVvlt.js} +1 -1
  7. package/dist/chunks/{editor-action-buttons-D74G-fOO.js → editor-action-buttons-Bw5bnTxX.js} +2 -2
  8. package/dist/chunks/{editor-action-buttons-18dPoIIF.js → editor-action-buttons-rOZTI_GI.js} +1 -1
  9. package/dist/chunks/{index-DLEb3N-R.js → index-CPOSsRox.js} +13199 -13073
  10. package/dist/chunks/{index-BYjv54tY.js → index-dvY8LY1x.js} +150 -150
  11. package/dist/chunks/{resource-management-panel-DToljP14.js → resource-management-panel-CGTRDq_I.js} +1 -1
  12. package/dist/chunks/{resource-management-panel-k_ZQIBfh.js → resource-management-panel-C_TggF7q.js} +2 -2
  13. package/dist/chunks/{schedule-dashboard-fjtSpUVj.js → schedule-dashboard-CUvbs5p8.js} +3 -3
  14. package/dist/chunks/{schedule-dashboard-vZXqGP-q.js → schedule-dashboard-DV_zyKrN.js} +1 -1
  15. package/dist/chunks/{use-visual-utils-Btxew3Er.js → use-visual-utils-DcXPSN6e.js} +1 -1
  16. package/dist/chunks/{use-visual-utils-CMaqO2nT.js → use-visual-utils-s86DJ2mG.js} +1 -1
  17. package/dist/dashboard/index.cjs +1 -1
  18. package/dist/dashboard/index.js +1 -1
  19. package/dist/index.cjs +1 -1
  20. package/dist/index.js +4 -4
  21. package/dist/style.css +1 -1
  22. package/dist/surfboard/index.cjs +1 -1
  23. package/dist/surfboard/index.js +1 -1
  24. package/dist/types/dashboard.d.ts +19 -0
  25. package/dist/types/main.d.ts +19 -0
  26. package/dist/types/surfboard.d.ts +19 -0
  27. package/dist/types/types.d.ts +19 -0
  28. package/package.json +1 -1
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-BYjv54tY.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-dvY8LY1x.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
@@ -1,4 +1,4 @@
1
- import { a } from "../chunks/index-DLEb3N-R.js";
1
+ import { a } from "../chunks/index-CPOSsRox.js";
2
2
  import { EMPTY_SELECTION as E } from "../types/index.js";
3
3
  export {
4
4
  E as EMPTY_SELECTION,
@@ -1491,6 +1491,10 @@ export declare type TStyle = {
1491
1491
  dark?: StyleProps;
1492
1492
  };
1493
1493
 
1494
+ export declare interface UpdateUserPreferenceRequest {
1495
+ defaultDashboardId: string | null;
1496
+ }
1497
+
1494
1498
  /**
1495
1499
  * URL Parameter for drill-to-URL interpolation
1496
1500
  * Represents a placeholder in the URL template (e.g., {{product_id}})
@@ -1518,6 +1522,21 @@ declare interface URLParameter {
1518
1522
  field?: Field;
1519
1523
  }
1520
1524
 
1525
+ export declare interface UserPreference {
1526
+ id: string;
1527
+ actorType: 'ORG_USER' | 'TENANT_USER';
1528
+ projectId: string;
1529
+ defaultDashboardId: string | null;
1530
+ defaultDashboard?: {
1531
+ id: string;
1532
+ title: string;
1533
+ description: string;
1534
+ };
1535
+ preferences: Record<string, any> | null;
1536
+ createdAt: string;
1537
+ updatedAt: string;
1538
+ }
1539
+
1521
1540
  /**
1522
1541
  * Display mode for visual components - controls which UI elements are shown
1523
1542
  */
@@ -2698,6 +2698,10 @@ export declare type UIConfig = {
2698
2698
  showDashboardAssistant?: boolean;
2699
2699
  };
2700
2700
 
2701
+ export declare interface UpdateUserPreferenceRequest {
2702
+ defaultDashboardId: string | null;
2703
+ }
2704
+
2701
2705
  /**
2702
2706
  * URL Parameter for drill-to-URL interpolation
2703
2707
  * Represents a placeholder in the URL template (e.g., {{product_id}})
@@ -2834,6 +2838,21 @@ export declare const useEditorStore: UseBoundStore<Omit<StoreApi<EditorStore>, "
2834
2838
  setState(nextStateOrUpdater: EditorStore | Partial<EditorStore> | ((state: WritableDraft<EditorStore>) => void), shouldReplace?: boolean | undefined): void;
2835
2839
  }>;
2836
2840
 
2841
+ export declare interface UserPreference {
2842
+ id: string;
2843
+ actorType: 'ORG_USER' | 'TENANT_USER';
2844
+ projectId: string;
2845
+ defaultDashboardId: string | null;
2846
+ defaultDashboard?: {
2847
+ id: string;
2848
+ title: string;
2849
+ description: string;
2850
+ };
2851
+ preferences: Record<string, any> | null;
2852
+ createdAt: string;
2853
+ updatedAt: string;
2854
+ }
2855
+
2837
2856
  export declare function useTextFilterHook(filterId: string): {
2838
2857
  isLoading: boolean;
2839
2858
  isFetching: boolean;
@@ -1496,6 +1496,10 @@ export declare type TStyle = {
1496
1496
  dark?: StyleProps;
1497
1497
  };
1498
1498
 
1499
+ export declare interface UpdateUserPreferenceRequest {
1500
+ defaultDashboardId: string | null;
1501
+ }
1502
+
1499
1503
  /**
1500
1504
  * URL Parameter for drill-to-URL interpolation
1501
1505
  * Represents a placeholder in the URL template (e.g., {{product_id}})
@@ -1523,6 +1527,21 @@ declare interface URLParameter {
1523
1527
  field?: Field;
1524
1528
  }
1525
1529
 
1530
+ export declare interface UserPreference {
1531
+ id: string;
1532
+ actorType: 'ORG_USER' | 'TENANT_USER';
1533
+ projectId: string;
1534
+ defaultDashboardId: string | null;
1535
+ defaultDashboard?: {
1536
+ id: string;
1537
+ title: string;
1538
+ description: string;
1539
+ };
1540
+ preferences: Record<string, any> | null;
1541
+ createdAt: string;
1542
+ updatedAt: string;
1543
+ }
1544
+
1526
1545
  /**
1527
1546
  * Display mode for visual components - controls which UI elements are shown
1528
1547
  */
@@ -1488,6 +1488,10 @@ export declare type TStyle = {
1488
1488
  dark?: StyleProps;
1489
1489
  };
1490
1490
 
1491
+ export declare interface UpdateUserPreferenceRequest {
1492
+ defaultDashboardId: string | null;
1493
+ }
1494
+
1491
1495
  /**
1492
1496
  * URL Parameter for drill-to-URL interpolation
1493
1497
  * Represents a placeholder in the URL template (e.g., {{product_id}})
@@ -1515,6 +1519,21 @@ declare interface URLParameter {
1515
1519
  field?: Field;
1516
1520
  }
1517
1521
 
1522
+ export declare interface UserPreference {
1523
+ id: string;
1524
+ actorType: 'ORG_USER' | 'TENANT_USER';
1525
+ projectId: string;
1526
+ defaultDashboardId: string | null;
1527
+ defaultDashboard?: {
1528
+ id: string;
1529
+ title: string;
1530
+ description: string;
1531
+ };
1532
+ preferences: Record<string, any> | null;
1533
+ createdAt: string;
1534
+ updatedAt: string;
1535
+ }
1536
+
1518
1537
  /**
1519
1538
  * Display mode for visual components - controls which UI elements are shown
1520
1539
  */
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "email": "support@semaphor.cloud"
6
6
  },
7
7
  "license": "MIT",
8
- "version": "0.1.102",
8
+ "version": "0.1.103",
9
9
  "description": "Fully interactive and customizable dashboards for your apps.",
10
10
  "keywords": [
11
11
  "react",