@platforma-open/milaboratories.sort-seq-analysis.block 1.0.5 → 1.0.6
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/block-pack/CHANGELOG.md +6 -0
- package/block-pack/main.plj.gz +0 -0
- package/block-pack/manifest.json +1 -1
- package/block-pack/model.json +1 -1
- package/block-pack/published.json +1 -1
- package/block-pack/ui.tgz +0 -0
- package/dist/AGENTS.d.ts +171 -88
- package/dist/AGENTS.d.ts.map +1 -1
- package/dist/index.d.ts +171 -88
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +52 -54
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -4624,11 +4624,13 @@ interface ValueWithUTagAndAuthor<V> extends ValueWithUTag<V> {
|
|
|
4624
4624
|
readonly author?: AuthorMarker;
|
|
4625
4625
|
}
|
|
4626
4626
|
//#endregion
|
|
4627
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4627
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/block_state_patch.d.ts
|
|
4628
4628
|
//#region src/block_state_patch.d.ts
|
|
4629
4629
|
/** Patch for the structural object */
|
|
4630
4630
|
type Patch<K, V> = {
|
|
4631
|
-
/** Field name to patch */
|
|
4631
|
+
/** Field name to patch */
|
|
4632
|
+
readonly key: K;
|
|
4633
|
+
/** New value for the field */
|
|
4632
4634
|
readonly value: V;
|
|
4633
4635
|
};
|
|
4634
4636
|
/** Creates union type of all possible shallow patches for the given structure */
|
|
@@ -4636,7 +4638,8 @@ type Unionize<T extends Record<string, unknown>> = { [K in keyof T]: Patch<K, T[
|
|
|
4636
4638
|
/** Patch for the BlockState, pushed by onStateUpdates method in SDK. */
|
|
4637
4639
|
type BlockStatePatch<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> = Unionize<BlockState<Args, Outputs, UiState, Href>>;
|
|
4638
4640
|
//#endregion
|
|
4639
|
-
//#
|
|
4641
|
+
//#endregion
|
|
4642
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/plugin_handle.d.ts
|
|
4640
4643
|
//#region src/plugin_handle.d.ts
|
|
4641
4644
|
/**
|
|
4642
4645
|
* Phantom-only base type for constraining PluginHandle's type parameter.
|
|
@@ -4663,7 +4666,7 @@ interface PluginFactoryLike<Data extends Record<string, unknown> = Record<string
|
|
|
4663
4666
|
*/
|
|
4664
4667
|
type PluginHandle<F extends PluginFactoryLike = PluginFactoryLike> = Branded<string, F>;
|
|
4665
4668
|
//#endregion
|
|
4666
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4669
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/block_storage.d.ts
|
|
4667
4670
|
/** Payload for storage mutation operations. SDK defines specific operations. */
|
|
4668
4671
|
type MutateStoragePayload<T = unknown> = {
|
|
4669
4672
|
operation: "update-block-data";
|
|
@@ -4674,7 +4677,7 @@ type MutateStoragePayload<T = unknown> = {
|
|
|
4674
4677
|
value: unknown;
|
|
4675
4678
|
};
|
|
4676
4679
|
//#endregion
|
|
4677
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4680
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/bconfig/lambdas.d.ts
|
|
4678
4681
|
/** Additional information that may alter lambda rendering procedure. */
|
|
4679
4682
|
type ConfigRenderLambdaFlags = {
|
|
4680
4683
|
/**
|
|
@@ -4710,7 +4713,8 @@ type InferOutputsFromLambdas<OutputsCfg extends Record<string, ConfigRenderLambd
|
|
|
4710
4713
|
} ? false : true;
|
|
4711
4714
|
}; };
|
|
4712
4715
|
//#endregion
|
|
4713
|
-
//#
|
|
4716
|
+
//#endregion
|
|
4717
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/block_api_v1.d.ts
|
|
4714
4718
|
//#region src/block_api_v1.d.ts
|
|
4715
4719
|
/** Returned by state subscription methods to be able to cancel the subscription. */
|
|
4716
4720
|
type CancelSubscription = () => void;
|
|
@@ -4772,6 +4776,7 @@ interface BlockApiV1<Args = unknown, Outputs extends BlockOutputsBase = BlockOut
|
|
|
4772
4776
|
setNavigationState(state: NavigationState<Href>): Promise<void>;
|
|
4773
4777
|
}
|
|
4774
4778
|
//#endregion
|
|
4779
|
+
//#endregion
|
|
4775
4780
|
//#region ../node_modules/.pnpm/fast-json-patch@3.1.1/node_modules/fast-json-patch/module/core.d.ts
|
|
4776
4781
|
declare type Operation = AddOperation<any> | RemoveOperation | ReplaceOperation<any> | MoveOperation | CopyOperation | TestOperation<any> | GetOperation<any>;
|
|
4777
4782
|
interface BaseOperation {
|
|
@@ -4805,7 +4810,7 @@ interface GetOperation<T> extends BaseOperation {
|
|
|
4805
4810
|
value: T;
|
|
4806
4811
|
}
|
|
4807
4812
|
//#endregion
|
|
4808
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4813
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/block_api_v2.d.ts
|
|
4809
4814
|
//#region src/block_api_v2.d.ts
|
|
4810
4815
|
/** Defines methods to read and write current block data. */
|
|
4811
4816
|
interface BlockApiV2<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> {
|
|
@@ -4855,12 +4860,13 @@ interface BlockApiV2<Args = unknown, Outputs extends BlockOutputsBase = BlockOut
|
|
|
4855
4860
|
dispose(): Promise<ResultOrError<void>>;
|
|
4856
4861
|
}
|
|
4857
4862
|
//#endregion
|
|
4858
|
-
//#
|
|
4863
|
+
//#endregion
|
|
4864
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/version.d.ts
|
|
4859
4865
|
type SdkInfo = {
|
|
4860
4866
|
readonly sdkVersion: string;
|
|
4861
4867
|
};
|
|
4862
4868
|
//#endregion
|
|
4863
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4869
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/services/block_services.d.ts
|
|
4864
4870
|
//#region src/services/block_services.d.ts
|
|
4865
4871
|
/**
|
|
4866
4872
|
* Services required by all V3 blocks by default.
|
|
@@ -4877,14 +4883,14 @@ declare const BLOCK_SERVICE_FLAGS: {
|
|
|
4877
4883
|
};
|
|
4878
4884
|
type BlockServiceFlags = typeof BLOCK_SERVICE_FLAGS;
|
|
4879
4885
|
//#endregion
|
|
4880
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4886
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/services/service_resolve.d.ts
|
|
4881
4887
|
//#region src/services/service_resolve.d.ts
|
|
4882
4888
|
type FlagToName<Flag extends string> = Flag extends `requires${infer K}` ? K extends keyof ServiceNameLiterals ? ServiceNameLiterals[K] : never : never;
|
|
4883
4889
|
type RequiredServiceNames<Flags> = { [K in keyof Flags & `requires${string}`]: Flags[K] extends true ? FlagToName<K & string> : never; }[keyof Flags & `requires${string}`];
|
|
4884
4890
|
type ResolveUiServices<Flags> = Pick<UiServices$1, RequiredServiceNames<Flags> & keyof UiServices$1>;
|
|
4885
4891
|
type BlockDefaultUiServices = ResolveUiServices<BlockServiceFlags>;
|
|
4886
4892
|
//#endregion
|
|
4887
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4893
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/plugin_model.d.ts
|
|
4888
4894
|
/**
|
|
4889
4895
|
* Runtime definition for a single public output field.
|
|
4890
4896
|
* Stored in PluginModel and passed through BlockModelInfo to the UI layer.
|
|
@@ -4893,7 +4899,7 @@ type PublicOutputFieldDef = {
|
|
|
4893
4899
|
readonly getter: (data: unknown) => unknown;
|
|
4894
4900
|
};
|
|
4895
4901
|
//#endregion
|
|
4896
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4902
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/block_api_v3.d.ts
|
|
4897
4903
|
//#region src/block_api_v3.d.ts
|
|
4898
4904
|
/** Defines methods to read and write current block data. */
|
|
4899
4905
|
interface BlockApiV3<_Data = unknown, _Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, Href extends `/${string}` = `/${string}`> {
|
|
@@ -4924,7 +4930,8 @@ interface BlockApiV3<_Data = unknown, _Args = unknown, Outputs extends BlockOutp
|
|
|
4924
4930
|
dispose(): Promise<ResultOrError<void>>;
|
|
4925
4931
|
}
|
|
4926
4932
|
//#endregion
|
|
4927
|
-
//#
|
|
4933
|
+
//#endregion
|
|
4934
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/platforma.d.ts
|
|
4928
4935
|
//#region src/platforma.d.ts
|
|
4929
4936
|
/** Defines all methods to interact with the platform environment from within a block UI. @deprecated */
|
|
4930
4937
|
interface PlatformaV1<Args = unknown, Outputs extends Record<string, OutputWithStatus<unknown>> = Record<string, OutputWithStatus<unknown>>, UiState = unknown, Href extends `/${string}` = `/${string}`> extends BlockApiV1<Args, Outputs, UiState, Href>, DriverKit {
|
|
@@ -4965,25 +4972,35 @@ type InferOutputsType<Pl extends Platforma> = Pl extends Platforma<unknown, infe
|
|
|
4965
4972
|
type InferDataType<Pl extends Platforma> = Pl extends Platforma<unknown, Record<string, OutputWithStatus<unknown>>, infer Data> ? Data : never;
|
|
4966
4973
|
type InferHrefType<Pl extends Platforma> = Pl extends Platforma<unknown, BlockOutputsBase, unknown, infer Href> ? Href : never;
|
|
4967
4974
|
//#endregion
|
|
4968
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
4975
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/typesV8.d.ts
|
|
4969
4976
|
//#region src/components/PlDataTable/typesV8.d.ts
|
|
4970
4977
|
type PlTableColumnIdJson$1 = CanonicalizedJson<PTableColumnId>;
|
|
4971
4978
|
type PlDataTableGridStateCore$1 = {
|
|
4972
|
-
/** Includes column ordering */
|
|
4973
|
-
|
|
4974
|
-
|
|
4979
|
+
/** Includes column ordering */
|
|
4980
|
+
columnOrder?: {
|
|
4981
|
+
/** All colIds in order */
|
|
4982
|
+
orderedColIds: PlTableColumnIdJson$1[];
|
|
4983
|
+
};
|
|
4984
|
+
/** Includes current sort columns and direction */
|
|
4975
4985
|
sort?: {
|
|
4976
|
-
/** Sorted columns and directions in order */
|
|
4977
|
-
|
|
4986
|
+
/** Sorted columns and directions in order */
|
|
4987
|
+
sortModel: {
|
|
4988
|
+
/** Column Id to apply the sort to. */
|
|
4989
|
+
colId: PlTableColumnIdJson$1;
|
|
4990
|
+
/** Sort direction */
|
|
4978
4991
|
sort: "asc" | "desc";
|
|
4979
4992
|
}[];
|
|
4980
|
-
};
|
|
4993
|
+
};
|
|
4994
|
+
/** Includes column visibility */
|
|
4981
4995
|
columnVisibility?: {
|
|
4982
|
-
/** All colIds which were hidden */
|
|
4996
|
+
/** All colIds which were hidden */
|
|
4997
|
+
hiddenColIds: PlTableColumnIdJson$1[];
|
|
4983
4998
|
};
|
|
4984
4999
|
};
|
|
4985
5000
|
type PlDataTableSheetState$1 = {
|
|
4986
|
-
/** id of the axis */
|
|
5001
|
+
/** id of the axis */
|
|
5002
|
+
axisId: AxisId;
|
|
5003
|
+
/** selected value */
|
|
4987
5004
|
value: string | number;
|
|
4988
5005
|
};
|
|
4989
5006
|
/** Tree-based filter state compatible with PlAdvancedFilter's RootFilter */
|
|
@@ -4997,11 +5014,17 @@ type PlDataTableFilterSpecLeaf$1 = FilterSpecLeaf<PTableColumnId>;
|
|
|
4997
5014
|
type PlDataTableFilters$1 = RootFilterSpec<PlDataTableFilterSpecLeaf$1>;
|
|
4998
5015
|
type PlDataTableFiltersWithMeta$1 = RootFilterSpec<PlDataTableFilterSpecLeaf$1, PlDataTableFilterMeta$1>;
|
|
4999
5016
|
type PlDataTableStateV2CacheEntry$1 = {
|
|
5000
|
-
/** DataSource identifier for state management */
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5017
|
+
/** DataSource identifier for state management */
|
|
5018
|
+
sourceId: string;
|
|
5019
|
+
/** Internal ag-grid state */
|
|
5020
|
+
gridState: PlDataTableGridStateCore$1;
|
|
5021
|
+
/** Sheets state */
|
|
5022
|
+
sheetsState: PlDataTableSheetState$1[];
|
|
5023
|
+
/** User filters state (tree-based, compatible with PlAdvancedFilter) */
|
|
5024
|
+
filtersState: null | PlDataTableFiltersWithMeta$1;
|
|
5025
|
+
/** Default filters state from model (snapshot of defaults) */
|
|
5026
|
+
defaultFiltersState: null | PlDataTableFiltersWithMeta$1;
|
|
5027
|
+
/** Fast search string */
|
|
5005
5028
|
searchString?: string;
|
|
5006
5029
|
};
|
|
5007
5030
|
type PTableParamsV2$1 = {
|
|
@@ -5018,12 +5041,15 @@ type PTableParamsV2$1 = {
|
|
|
5018
5041
|
defaultFilters: null | PlDataTableFilters$1;
|
|
5019
5042
|
};
|
|
5020
5043
|
type PlDataTableStateV2Normalized$1 = {
|
|
5021
|
-
/** Version for upgrades */
|
|
5022
|
-
|
|
5044
|
+
/** Version for upgrades */
|
|
5045
|
+
version: 8;
|
|
5046
|
+
/** Internal states, LRU cache for 5 sourceId-s */
|
|
5047
|
+
stateCache: PlDataTableStateV2CacheEntry$1[];
|
|
5048
|
+
/** PTable params derived from the cache state for the current sourceId */
|
|
5023
5049
|
pTableParams: PTableParamsV2$1;
|
|
5024
5050
|
};
|
|
5025
5051
|
//#endregion
|
|
5026
|
-
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.
|
|
5052
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/typesV4.d.ts
|
|
5027
5053
|
//#region src/components/PlDataTable/typesV4.d.ts
|
|
5028
5054
|
type PlDataTableFilterState = {
|
|
5029
5055
|
id: PTableColumnId;
|
|
@@ -5035,87 +5061,120 @@ type PlDataTableFilterState = {
|
|
|
5035
5061
|
};
|
|
5036
5062
|
/** PlTableFilters filter entry */
|
|
5037
5063
|
type PlTableFilterIsNotNA = {
|
|
5038
|
-
/** Predicate type */
|
|
5064
|
+
/** Predicate type */
|
|
5065
|
+
type: "isNotNA";
|
|
5039
5066
|
};
|
|
5040
5067
|
/** PlTableFilters filter entry */
|
|
5041
5068
|
type PlTableFilterIsNA = {
|
|
5042
|
-
/** Predicate type */
|
|
5069
|
+
/** Predicate type */
|
|
5070
|
+
type: "isNA";
|
|
5043
5071
|
};
|
|
5044
5072
|
/** PlTableFilters filter entries applicable to both string and number values */
|
|
5045
5073
|
type PlTableFilterCommon = PlTableFilterIsNotNA | PlTableFilterIsNA;
|
|
5046
5074
|
/** PlTableFilters numeric filter entry */
|
|
5047
5075
|
type PlTableFilterNumberEquals = {
|
|
5048
|
-
/** Predicate type */
|
|
5076
|
+
/** Predicate type */
|
|
5077
|
+
type: "number_equals";
|
|
5078
|
+
/** Reference value */
|
|
5049
5079
|
reference: number;
|
|
5050
5080
|
};
|
|
5051
5081
|
/** PlTableFilters numeric filter entry */
|
|
5052
5082
|
type PlTableFilterNumberNotEquals = {
|
|
5053
|
-
/** Predicate type */
|
|
5083
|
+
/** Predicate type */
|
|
5084
|
+
type: "number_notEquals";
|
|
5085
|
+
/** Reference value */
|
|
5054
5086
|
reference: number;
|
|
5055
5087
|
};
|
|
5056
5088
|
/** PlTableFilters numeric filter entry */
|
|
5057
5089
|
type PlTableFilterNumberGreaterThan = {
|
|
5058
|
-
/** Predicate type */
|
|
5090
|
+
/** Predicate type */
|
|
5091
|
+
type: "number_greaterThan";
|
|
5092
|
+
/** Reference value */
|
|
5059
5093
|
reference: number;
|
|
5060
5094
|
};
|
|
5061
5095
|
/** PlTableFilters numeric filter entry */
|
|
5062
5096
|
type PlTableFilterNumberGreaterThanOrEqualTo = {
|
|
5063
|
-
/** Predicate type */
|
|
5097
|
+
/** Predicate type */
|
|
5098
|
+
type: "number_greaterThanOrEqualTo";
|
|
5099
|
+
/** Reference value */
|
|
5064
5100
|
reference: number;
|
|
5065
5101
|
};
|
|
5066
5102
|
/** PlTableFilters numeric filter entry */
|
|
5067
5103
|
type PlTableFilterNumberLessThan = {
|
|
5068
|
-
/** Predicate type */
|
|
5104
|
+
/** Predicate type */
|
|
5105
|
+
type: "number_lessThan";
|
|
5106
|
+
/** Reference value */
|
|
5069
5107
|
reference: number;
|
|
5070
5108
|
};
|
|
5071
5109
|
/** PlTableFilters numeric filter entry */
|
|
5072
5110
|
type PlTableFilterNumberLessThanOrEqualTo = {
|
|
5073
|
-
/** Predicate type */
|
|
5111
|
+
/** Predicate type */
|
|
5112
|
+
type: "number_lessThanOrEqualTo";
|
|
5113
|
+
/** Reference value */
|
|
5074
5114
|
reference: number;
|
|
5075
5115
|
};
|
|
5076
5116
|
/** PlTableFilters numeric filter entry */
|
|
5077
5117
|
type PlTableFilterNumberBetween = {
|
|
5078
|
-
/** Predicate type */
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5118
|
+
/** Predicate type */
|
|
5119
|
+
type: "number_between";
|
|
5120
|
+
/** Reference value for the lower bound */
|
|
5121
|
+
lowerBound: number;
|
|
5122
|
+
/** Defines whether values equal to lower bound reference value should be matched */
|
|
5123
|
+
includeLowerBound: boolean;
|
|
5124
|
+
/** Reference value for the upper bound */
|
|
5125
|
+
upperBound: number;
|
|
5126
|
+
/** Defines whether values equal to upper bound reference value should be matched */
|
|
5082
5127
|
includeUpperBound: boolean;
|
|
5083
5128
|
};
|
|
5084
5129
|
/** All PlTableFilters numeric filter entries */
|
|
5085
5130
|
type PlTableFilterNumber = PlTableFilterCommon | PlTableFilterNumberEquals | PlTableFilterNumberNotEquals | PlTableFilterNumberGreaterThan | PlTableFilterNumberGreaterThanOrEqualTo | PlTableFilterNumberLessThan | PlTableFilterNumberLessThanOrEqualTo | PlTableFilterNumberBetween;
|
|
5086
5131
|
/** PlTableFilters string filter entry */
|
|
5087
5132
|
type PlTableFilterStringEquals = {
|
|
5088
|
-
/** Predicate type */
|
|
5133
|
+
/** Predicate type */
|
|
5134
|
+
type: "string_equals";
|
|
5135
|
+
/** Reference value */
|
|
5089
5136
|
reference: string;
|
|
5090
5137
|
};
|
|
5091
5138
|
/** PlTableFilters string filter entry */
|
|
5092
5139
|
type PlTableFilterStringNotEquals = {
|
|
5093
|
-
/** Predicate type */
|
|
5140
|
+
/** Predicate type */
|
|
5141
|
+
type: "string_notEquals";
|
|
5142
|
+
/** Reference value */
|
|
5094
5143
|
reference: string;
|
|
5095
5144
|
};
|
|
5096
5145
|
/** PlTableFilters string filter entry */
|
|
5097
5146
|
type PlTableFilterStringContains = {
|
|
5098
|
-
/** Predicate type */
|
|
5147
|
+
/** Predicate type */
|
|
5148
|
+
type: "string_contains";
|
|
5149
|
+
/** Reference value */
|
|
5099
5150
|
reference: string;
|
|
5100
5151
|
};
|
|
5101
5152
|
/** PlTableFilters string filter entry */
|
|
5102
5153
|
type PlTableFilterStringDoesNotContain = {
|
|
5103
|
-
/** Predicate type */
|
|
5154
|
+
/** Predicate type */
|
|
5155
|
+
type: "string_doesNotContain";
|
|
5156
|
+
/** Reference value */
|
|
5104
5157
|
reference: string;
|
|
5105
5158
|
};
|
|
5106
5159
|
/** PlTableFilters string filter entry */
|
|
5107
5160
|
type PlTableFilterStringMatches = {
|
|
5108
|
-
/** Predicate type */
|
|
5161
|
+
/** Predicate type */
|
|
5162
|
+
type: "string_matches";
|
|
5163
|
+
/** Reference value */
|
|
5109
5164
|
reference: string;
|
|
5110
5165
|
};
|
|
5111
5166
|
/** PlTableFilters string filter entry */
|
|
5112
5167
|
type PlTableFilterStringDoesNotMatch = {
|
|
5113
|
-
/** Predicate type */
|
|
5168
|
+
/** Predicate type */
|
|
5169
|
+
type: "string_doesNotMatch";
|
|
5170
|
+
/** Reference value */
|
|
5114
5171
|
reference: string;
|
|
5115
5172
|
};
|
|
5116
5173
|
/** PlTableFilters string filter entry */
|
|
5117
5174
|
type PlTableFilterStringContainsFuzzyMatch = {
|
|
5118
|
-
/** Predicate type */
|
|
5175
|
+
/** Predicate type */
|
|
5176
|
+
type: "string_containsFuzzyMatch";
|
|
5177
|
+
/** Reference value */
|
|
5119
5178
|
reference: string;
|
|
5120
5179
|
/**
|
|
5121
5180
|
* Maximum acceptable edit distance between reference value and matched substring
|
|
@@ -5142,25 +5201,36 @@ type PlTableFilterString = PlTableFilterCommon | PlTableFilterStringEquals | PlT
|
|
|
5142
5201
|
/** All PlTableFilters filter entries */
|
|
5143
5202
|
type PlTableFilter = PlTableFilterNumber | PlTableFilterString;
|
|
5144
5203
|
//#endregion
|
|
5145
|
-
//#
|
|
5204
|
+
//#endregion
|
|
5205
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/typesV7.d.ts
|
|
5146
5206
|
//#region src/components/PlDataTable/typesV7.d.ts
|
|
5147
5207
|
type PlTableColumnIdJson = CanonicalizedJson<PTableColumnId>;
|
|
5148
5208
|
type PlDataTableGridStateCore = {
|
|
5149
|
-
/** Includes column ordering */
|
|
5150
|
-
|
|
5151
|
-
|
|
5209
|
+
/** Includes column ordering */
|
|
5210
|
+
columnOrder?: {
|
|
5211
|
+
/** All colIds in order */
|
|
5212
|
+
orderedColIds: PlTableColumnIdJson[];
|
|
5213
|
+
};
|
|
5214
|
+
/** Includes current sort columns and direction */
|
|
5152
5215
|
sort?: {
|
|
5153
|
-
/** Sorted columns and directions in order */
|
|
5154
|
-
|
|
5216
|
+
/** Sorted columns and directions in order */
|
|
5217
|
+
sortModel: {
|
|
5218
|
+
/** Column Id to apply the sort to. */
|
|
5219
|
+
colId: PlTableColumnIdJson;
|
|
5220
|
+
/** Sort direction */
|
|
5155
5221
|
sort: "asc" | "desc";
|
|
5156
5222
|
}[];
|
|
5157
|
-
};
|
|
5223
|
+
};
|
|
5224
|
+
/** Includes column visibility */
|
|
5158
5225
|
columnVisibility?: {
|
|
5159
|
-
/** All colIds which were hidden */
|
|
5226
|
+
/** All colIds which were hidden */
|
|
5227
|
+
hiddenColIds: PlTableColumnIdJson[];
|
|
5160
5228
|
};
|
|
5161
5229
|
};
|
|
5162
5230
|
type PlDataTableSheetState = {
|
|
5163
|
-
/** id of the axis */
|
|
5231
|
+
/** id of the axis */
|
|
5232
|
+
axisId: AxisId;
|
|
5233
|
+
/** selected value */
|
|
5164
5234
|
value: string | number;
|
|
5165
5235
|
};
|
|
5166
5236
|
/** Tree-based filter state compatible with PlAdvancedFilter's RootFilter */
|
|
@@ -5174,11 +5244,17 @@ type PlDataTableFilterSpecLeaf = FilterSpecLeaf<CanonicalizedJson<PTableColumnId
|
|
|
5174
5244
|
type PlDataTableFilters = RootFilterSpec<PlDataTableFilterSpecLeaf>;
|
|
5175
5245
|
type PlDataTableFiltersWithMeta = RootFilterSpec<PlDataTableFilterSpecLeaf, PlDataTableFilterMeta>;
|
|
5176
5246
|
type PlDataTableStateV2CacheEntry = {
|
|
5177
|
-
/** DataSource identifier for state management */
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
|
|
5247
|
+
/** DataSource identifier for state management */
|
|
5248
|
+
sourceId: string;
|
|
5249
|
+
/** Internal ag-grid state */
|
|
5250
|
+
gridState: PlDataTableGridStateCore;
|
|
5251
|
+
/** Sheets state */
|
|
5252
|
+
sheetsState: PlDataTableSheetState[];
|
|
5253
|
+
/** User filters state (tree-based, compatible with PlAdvancedFilter) */
|
|
5254
|
+
filtersState: null | PlDataTableFiltersWithMeta;
|
|
5255
|
+
/** Default filters state from model (snapshot of defaults) */
|
|
5256
|
+
defaultFiltersState: null | PlDataTableFiltersWithMeta;
|
|
5257
|
+
/** Fast search string */
|
|
5182
5258
|
searchString?: string;
|
|
5183
5259
|
};
|
|
5184
5260
|
type PTableParamsV2 = {
|
|
@@ -5195,12 +5271,16 @@ type PTableParamsV2 = {
|
|
|
5195
5271
|
defaultFilters: null | PlDataTableFilters;
|
|
5196
5272
|
};
|
|
5197
5273
|
type PlDataTableStateV2Normalized = {
|
|
5198
|
-
/** Version for upgrades */
|
|
5199
|
-
|
|
5274
|
+
/** Version for upgrades */
|
|
5275
|
+
version: 7;
|
|
5276
|
+
/** Internal states, LRU cache for 5 sourceId-s */
|
|
5277
|
+
stateCache: PlDataTableStateV2CacheEntry[];
|
|
5278
|
+
/** PTable params derived from the cache state for the current sourceId */
|
|
5200
5279
|
pTableParams: PTableParamsV2;
|
|
5201
5280
|
};
|
|
5202
5281
|
//#endregion
|
|
5203
|
-
//#
|
|
5282
|
+
//#endregion
|
|
5283
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/typesV6.d.ts
|
|
5204
5284
|
//#region src/components/PlDataTable/typesV6.d.ts
|
|
5205
5285
|
/**
|
|
5206
5286
|
* v6 colId scheme: bare canonicalized `PTableColumnSpec` (full spec including
|
|
@@ -5236,7 +5316,8 @@ type PlDataTableStateV2V6 = {
|
|
|
5236
5316
|
pTableParams: PTableParamsV2;
|
|
5237
5317
|
};
|
|
5238
5318
|
//#endregion
|
|
5239
|
-
//#
|
|
5319
|
+
//#endregion
|
|
5320
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/typesV5.d.ts
|
|
5240
5321
|
//#region src/components/PlDataTable/typesV5.d.ts
|
|
5241
5322
|
/**
|
|
5242
5323
|
* v5 colId wrapper. v5 stored every grid colId as `{ source, labeled }` —
|
|
@@ -5264,7 +5345,8 @@ type PlDataTableGridStateV5 = {
|
|
|
5264
5345
|
};
|
|
5265
5346
|
};
|
|
5266
5347
|
//#endregion
|
|
5267
|
-
//#
|
|
5348
|
+
//#endregion
|
|
5349
|
+
//#region ../node_modules/.pnpm/@platforma-sdk+model@1.83.9/node_modules/@platforma-sdk/model/dist/components/PlDataTable/state-migration.d.ts
|
|
5268
5350
|
//#region src/components/PlDataTable/state-migration.d.ts
|
|
5269
5351
|
/**
|
|
5270
5352
|
* PlDataTableV2 persisted state
|
|
@@ -5344,7 +5426,8 @@ type PlDataTableStateV2 = {
|
|
|
5344
5426
|
gridState: PlDataTableGridStateV6;
|
|
5345
5427
|
sheetsState: PlDataTableSheetState$1[];
|
|
5346
5428
|
filtersState: PlDataTableFilterState[];
|
|
5347
|
-
}[];
|
|
5429
|
+
}[];
|
|
5430
|
+
/** Old format; only fields used in migration are typed */
|
|
5348
5431
|
pTableParams: {
|
|
5349
5432
|
sourceId: string | null;
|
|
5350
5433
|
hiddenColIds: PObjectId[] | null;
|
|
@@ -5363,10 +5446,10 @@ type PlDataTableStateV2 = {
|
|
|
5363
5446
|
pTableParams: PTableParamsV2;
|
|
5364
5447
|
} | PlDataTableStateV2V6 | PlDataTableStateV2Normalized | PlDataTableStateV2Normalized$1;
|
|
5365
5448
|
//#endregion
|
|
5366
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5449
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/spec.d.ts
|
|
5367
5450
|
type ColumnOrAxisIdString = string;
|
|
5368
5451
|
//#endregion
|
|
5369
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5452
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/common.d.ts
|
|
5370
5453
|
type InputStateMap = Record<string, ComponentStateSimple | ComponentStateFilter>;
|
|
5371
5454
|
type ChartType = 'discrete' | 'scatterplot' | 'scatterplot-umap' | 'heatmap' | 'dendro' | 'histogram' | 'bubble' | 'selection';
|
|
5372
5455
|
interface InputStateParent<Type extends ChartType> {
|
|
@@ -5396,7 +5479,7 @@ interface ComponentStateFilter {
|
|
|
5396
5479
|
selectorStates: SelectorStateFilter[];
|
|
5397
5480
|
}
|
|
5398
5481
|
//#endregion
|
|
5399
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5482
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/bubble.d.ts
|
|
5400
5483
|
interface BubbleUIState extends InputStateParent<'bubble'> {
|
|
5401
5484
|
type: 'bubble';
|
|
5402
5485
|
components: {
|
|
@@ -5415,7 +5498,7 @@ interface BubbleUIState extends InputStateParent<'bubble'> {
|
|
|
5415
5498
|
};
|
|
5416
5499
|
}
|
|
5417
5500
|
//#endregion
|
|
5418
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5501
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/dendro.d.ts
|
|
5419
5502
|
interface DendroUIState extends InputStateParent<'dendro'> {
|
|
5420
5503
|
components: {
|
|
5421
5504
|
value: ComponentStateSimple;
|
|
@@ -5436,7 +5519,7 @@ interface DendroUIState extends InputStateParent<'dendro'> {
|
|
|
5436
5519
|
};
|
|
5437
5520
|
}
|
|
5438
5521
|
//#endregion
|
|
5439
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5522
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/discrete.d.ts
|
|
5440
5523
|
interface DiscreteUIState extends InputStateParent<'discrete'> {
|
|
5441
5524
|
type: 'discrete';
|
|
5442
5525
|
components: {
|
|
@@ -5449,7 +5532,7 @@ interface DiscreteUIState extends InputStateParent<'discrete'> {
|
|
|
5449
5532
|
};
|
|
5450
5533
|
}
|
|
5451
5534
|
//#endregion
|
|
5452
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5535
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/heatmap.d.ts
|
|
5453
5536
|
interface HeatmapUIState extends InputStateParent<'heatmap'> {
|
|
5454
5537
|
type: 'heatmap';
|
|
5455
5538
|
components: {
|
|
@@ -5469,7 +5552,7 @@ interface HeatmapUIState extends InputStateParent<'heatmap'> {
|
|
|
5469
5552
|
};
|
|
5470
5553
|
}
|
|
5471
5554
|
//#endregion
|
|
5472
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5555
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/histogram.d.ts
|
|
5473
5556
|
interface HistogramUIState extends InputStateParent<'histogram'> {
|
|
5474
5557
|
type: 'histogram';
|
|
5475
5558
|
components: {
|
|
@@ -5481,7 +5564,7 @@ interface HistogramUIState extends InputStateParent<'histogram'> {
|
|
|
5481
5564
|
};
|
|
5482
5565
|
}
|
|
5483
5566
|
//#endregion
|
|
5484
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5567
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/scatterplot.d.ts
|
|
5485
5568
|
interface ScatterplotUIState extends InputStateParent<'scatterplot'> {
|
|
5486
5569
|
type: 'scatterplot';
|
|
5487
5570
|
components: {
|
|
@@ -5500,7 +5583,7 @@ interface ScatterplotUIState extends InputStateParent<'scatterplot'> {
|
|
|
5500
5583
|
};
|
|
5501
5584
|
}
|
|
5502
5585
|
//#endregion
|
|
5503
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5586
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/scatterplot-umap.d.ts
|
|
5504
5587
|
interface ScatterplotUmapUIState extends InputStateParent<'scatterplot-umap'> {
|
|
5505
5588
|
type: 'scatterplot-umap';
|
|
5506
5589
|
components: {
|
|
@@ -5518,7 +5601,7 @@ interface ScatterplotUmapUIState extends InputStateParent<'scatterplot-umap'> {
|
|
|
5518
5601
|
};
|
|
5519
5602
|
}
|
|
5520
5603
|
//#endregion
|
|
5521
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5604
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/controllers/controllersByChartType/selection.d.ts
|
|
5522
5605
|
interface SelectionUIState extends InputStateParent<'selection'> {
|
|
5523
5606
|
type: 'selection';
|
|
5524
5607
|
components: {
|
|
@@ -5531,7 +5614,7 @@ interface SelectionUIState extends InputStateParent<'selection'> {
|
|
|
5531
5614
|
};
|
|
5532
5615
|
}
|
|
5533
5616
|
//#endregion
|
|
5534
|
-
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.
|
|
5617
|
+
//#region ../node_modules/.pnpm/@milaboratories+pf-plots@1.5.0_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model@1.83.9/node_modules/@milaboratories/pf-plots/dist/index.d.ts
|
|
5535
5618
|
type InputNamesByChartType = { [K in ChartType]: K extends 'discrete' ? keyof DiscreteUIState['components'] : K extends 'heatmap' ? keyof HeatmapUIState['components'] : K extends 'dendro' ? keyof DendroUIState['components'] : K extends 'scatterplot' ? keyof ScatterplotUIState['components'] : K extends 'scatterplot-umap' ? keyof ScatterplotUmapUIState['components'] : K extends 'histogram' ? keyof HistogramUIState['components'] : K extends 'bubble' ? keyof BubbleUIState['components'] : K extends 'selection' ? keyof SelectionUIState['components'] : never; };
|
|
5536
5619
|
//#endregion
|
|
5537
5620
|
//#region ../node_modules/.pnpm/@vue+shared@3.5.24/node_modules/@vue/shared/dist/shared.d.ts
|
|
@@ -6848,7 +6931,7 @@ declare module '@vue/runtime-core' {
|
|
|
6848
6931
|
}
|
|
6849
6932
|
}
|
|
6850
6933
|
//#endregion
|
|
6851
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
6934
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/dataBindAes.d.ts
|
|
6852
6935
|
/** Mapping for categorical axes (string axes) */
|
|
6853
6936
|
interface AestheticMappingCategorical {
|
|
6854
6937
|
type: 'categorical';
|
|
@@ -6869,7 +6952,7 @@ interface AestheticValues {
|
|
|
6869
6952
|
dotShape: DotShape;
|
|
6870
6953
|
}
|
|
6871
6954
|
//#endregion
|
|
6872
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
6955
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/components/AesSettings/types.d.ts
|
|
6873
6956
|
type CategoricalPalette = 'light' | 'bright' | 'dark' | 'paired' | 'triadic' | 'magnetic';
|
|
6874
6957
|
type SequentialPalette = 'viridis' | 'magma' | 'density' | 'salinity' | 'sunset' | 'perceptual_rainbow';
|
|
6875
6958
|
type DivergingPalette = 'spectrum' | 'teal_red' | 'blue_red' | 'lime_rose' | 'viridis_magma';
|
|
@@ -6878,7 +6961,7 @@ type Palette = CategoricalPalette | ContinuousPalette;
|
|
|
6878
6961
|
type DotShape = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '21' | '22' | '23' | '24' | '25';
|
|
6879
6962
|
type LineType = 'solid' | 'dashed' | 'dotted' | 'dotdash' | 'longdash' | 'twodash';
|
|
6880
6963
|
//#endregion
|
|
6881
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
6964
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/utils/createChartSettingsForRender/resolveLabelParts.d.ts
|
|
6882
6965
|
/**
|
|
6883
6966
|
* Order/visibility overlay for a multi-source axis label, persisted in the
|
|
6884
6967
|
* block state (see `AxesState.axisX.labelParts` in constantsCommon.ts and
|
|
@@ -6900,7 +6983,7 @@ type LabelPartsSeed = {
|
|
|
6900
6983
|
};
|
|
6901
6984
|
type LabelPartsState = LabelPartsSeed | LabelPartsOverlay | null;
|
|
6902
6985
|
//#endregion
|
|
6903
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
6986
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/constantsCommon.d.ts
|
|
6904
6987
|
type DiscreteStatisticsState = {
|
|
6905
6988
|
overall: {
|
|
6906
6989
|
data: {
|
|
@@ -7232,7 +7315,7 @@ type AxesState = {
|
|
|
7232
7315
|
};
|
|
7233
7316
|
};
|
|
7234
7317
|
//#endregion
|
|
7235
|
-
//#region ../node_modules/.pnpm/@milaboratories+uikit@2.15.
|
|
7318
|
+
//#region ../node_modules/.pnpm/@milaboratories+uikit@2.15.29_@vue+compiler-dom@3.5.41_@vue+server-renderer@3.5.24_vue@3.5.24_eto4fb74bz22sf4jggadvk4hwa/node_modules/@milaboratories/uikit/dist/types.d.ts
|
|
7236
7319
|
declare global {
|
|
7237
7320
|
var platforma: Platforma | undefined;
|
|
7238
7321
|
interface Window {
|
|
@@ -7240,7 +7323,7 @@ declare global {
|
|
|
7240
7323
|
}
|
|
7241
7324
|
}
|
|
7242
7325
|
//#endregion
|
|
7243
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
7326
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/forms/index.d.ts
|
|
7244
7327
|
declare const forms: {
|
|
7245
7328
|
settings: {
|
|
7246
7329
|
icon: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -7352,10 +7435,10 @@ type Polygon = {
|
|
|
7352
7435
|
closed: boolean;
|
|
7353
7436
|
};
|
|
7354
7437
|
//#endregion
|
|
7355
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
7438
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/utils/loadDefaultSources.d.ts
|
|
7356
7439
|
type LoadedDefaultOptionsMap<T extends ChartType> = Record<InputNamesByChartType[T], (SelectorStateFilter | SelectorStateSimple)[]>;
|
|
7357
7440
|
//#endregion
|
|
7358
|
-
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+
|
|
7441
|
+
//#region ../node_modules/.pnpm/@milaboratories+graph-maker@1.6.1_@milaboratories+pl-model-common@1.48.0_@platforma-sdk+model_2pe2gncfj2eaqmjbuzf4dszamu/node_modules/@milaboratories/graph-maker/dist/types.d.ts
|
|
7359
7442
|
type DeepPartial$1<T> = { [P in keyof T]?: Partial<T[P]>; };
|
|
7360
7443
|
type GraphMakerState = {
|
|
7361
7444
|
/** Editable title on the top */
|