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