@devtable/dashboard 13.4.0 → 13.4.1

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.
@@ -2946,6 +2946,7 @@ export declare const tokens: {
2946
2946
  label: string;
2947
2947
  value: string;
2948
2948
  group: string;
2949
+ group_id: string;
2949
2950
  disabled: boolean;
2950
2951
  }[];
2951
2952
  readonly realQueryOptions: {
@@ -2962,6 +2963,7 @@ export declare const tokens: {
2962
2963
  label: string;
2963
2964
  value: string;
2964
2965
  group: string;
2966
+ group_id: string;
2965
2967
  disabled: boolean;
2966
2968
  }[];
2967
2969
  explainDataKey(dataKey: string): {
@@ -5495,6 +5497,7 @@ export declare const tokens: {
5495
5497
  label: string;
5496
5498
  value: string;
5497
5499
  group: string;
5500
+ group_id: string;
5498
5501
  disabled: boolean;
5499
5502
  }[];
5500
5503
  readonly realQueryOptions: {
@@ -5511,6 +5514,7 @@ export declare const tokens: {
5511
5514
  label: string;
5512
5515
  value: string;
5513
5516
  group: string;
5517
+ group_id: string;
5514
5518
  disabled: boolean;
5515
5519
  }[];
5516
5520
  explainDataKey(dataKey: string): {
@@ -8376,6 +8376,7 @@ export declare const useEditPanelContext: () => {
8376
8376
  label: string;
8377
8377
  value: string;
8378
8378
  group: string;
8379
+ group_id: string;
8379
8380
  disabled: boolean;
8380
8381
  }[];
8381
8382
  readonly realQueryOptions: {
@@ -8392,6 +8393,7 @@ export declare const useEditPanelContext: () => {
8392
8393
  label: string;
8393
8394
  value: string;
8394
8395
  group: string;
8396
+ group_id: string;
8395
8397
  disabled: boolean;
8396
8398
  }[];
8397
8399
  explainDataKey(dataKey: string): {
@@ -10925,6 +10927,7 @@ export declare const useEditPanelContext: () => {
10925
10927
  label: string;
10926
10928
  value: string;
10927
10929
  group: string;
10930
+ group_id: string;
10928
10931
  disabled: boolean;
10929
10932
  }[];
10930
10933
  readonly realQueryOptions: {
@@ -10941,6 +10944,7 @@ export declare const useEditPanelContext: () => {
10941
10944
  label: string;
10942
10945
  value: string;
10943
10946
  group: string;
10947
+ group_id: string;
10944
10948
  disabled: boolean;
10945
10949
  }[];
10946
10950
  explainDataKey(dataKey: string): {
@@ -2518,6 +2518,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
2518
2518
  label: string;
2519
2519
  value: string;
2520
2520
  group: string;
2521
+ group_id: string;
2521
2522
  disabled: boolean;
2522
2523
  }[];
2523
2524
  readonly realQueryOptions: {
@@ -2534,6 +2535,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
2534
2535
  label: string;
2535
2536
  value: string;
2536
2537
  group: string;
2538
+ group_id: string;
2537
2539
  disabled: boolean;
2538
2540
  }[];
2539
2541
  explainDataKey(dataKey: TDataKey): {
@@ -1731,7 +1731,7 @@ class Pi {
1731
1731
  }), this.instanceRegistry.clear(), this.factoryRegistry.clear();
1732
1732
  }
1733
1733
  }
1734
- const lc = "13.4.0", ng = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1734
+ const lc = "13.4.1", ng = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1735
1735
  __proto__: null,
1736
1736
  version: lc
1737
1737
  }, Symbol.toStringTag, { value: "Module" }));
@@ -27630,6 +27630,7 @@ const JD = p.model("EditorModel", {
27630
27630
  label: i,
27631
27631
  value: `${e.id}.${i}`,
27632
27632
  group: e.name,
27633
+ group_id: e.id,
27633
27634
  disabled: !1
27634
27635
  }));
27635
27636
  }).flat();
@@ -27655,12 +27656,13 @@ const JD = p.model("EditorModel", {
27655
27656
  },
27656
27657
  dataFieldOptions(e, n, s) {
27657
27658
  let i = [...this.realDataFieldOptions];
27658
- if (s && (i = i.filter((a) => a.group === s)), e && !i.find((a) => a.value === e)) {
27659
+ if (s && (i = i.filter((a) => a.group_id === s)), e && !i.find((a) => a.value === e)) {
27659
27660
  const a = O(e), o = t.queryByID(a.queryID);
27660
27661
  i.unshift({
27661
27662
  label: a.columnKey,
27662
27663
  value: e,
27663
27664
  group: o ? o.name : a.queryID,
27665
+ group_id: o ? o.id : "",
27664
27666
  disabled: !0
27665
27667
  });
27666
27668
  }
@@ -27668,6 +27670,7 @@ const JD = p.model("EditorModel", {
27668
27670
  label: "unset",
27669
27671
  value: "",
27670
27672
  group: "",
27673
+ group_id: "",
27671
27674
  disabled: !1
27672
27675
  }), i;
27673
27676
  },