@milaboratories/milaboratories.pool-explorer 1.2.66 → 1.2.67
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/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 +30 -3
- package/dist/AGENTS.d.ts.map +1 -1
- package/dist/index.d.ts +30 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8998 -8250
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -1291,6 +1291,18 @@ interface WritePTableToFsOptions {
|
|
|
1291
1291
|
path: string;
|
|
1292
1292
|
format: PTableDownloadFormat;
|
|
1293
1293
|
columnIndices: number[];
|
|
1294
|
+
/**
|
|
1295
|
+
* Optional header names aligned 1:1 with {@link columnIndices}. When provided,
|
|
1296
|
+
* each is written verbatim — letting callers supply disambiguated labels the
|
|
1297
|
+
* spec's intrinsic `pl7.app/label` may not carry. When omitted (or an
|
|
1298
|
+
* individual entry is empty), the header falls back to the column's
|
|
1299
|
+
* spec-derived label.
|
|
1300
|
+
*
|
|
1301
|
+
* Additive on purpose: the UI (ui-vue) and the desktop-app runtime version
|
|
1302
|
+
* independently, so a newer UI must not send a shape an older runtime cannot
|
|
1303
|
+
* read. Older runtimes ignore this field and use {@link columnIndices} alone.
|
|
1304
|
+
*/
|
|
1305
|
+
headerNames?: string[];
|
|
1294
1306
|
range?: TableRange;
|
|
1295
1307
|
chunkSize?: number;
|
|
1296
1308
|
includeHeader?: boolean;
|
|
@@ -1320,6 +1332,18 @@ interface ExportPTableOptions {
|
|
|
1320
1332
|
/** Unified indices of the columns to export, in output order
|
|
1321
1333
|
* (axes first, then data columns). */
|
|
1322
1334
|
columnIndices: number[];
|
|
1335
|
+
/**
|
|
1336
|
+
* Optional header names aligned 1:1 with {@link columnIndices}. When provided,
|
|
1337
|
+
* each is written verbatim — letting callers supply disambiguated labels the
|
|
1338
|
+
* spec's intrinsic `pl7.app/label` may not carry. When omitted (or an
|
|
1339
|
+
* individual entry is empty), the header falls back to the column's
|
|
1340
|
+
* spec-derived label.
|
|
1341
|
+
*
|
|
1342
|
+
* Additive on purpose: the UI (ui-vue) and the desktop-app runtime version
|
|
1343
|
+
* independently, so a newer UI must not send a shape an older runtime cannot
|
|
1344
|
+
* read. Older runtimes ignore this field and use {@link columnIndices} alone.
|
|
1345
|
+
*/
|
|
1346
|
+
headerNames?: string[];
|
|
1323
1347
|
} //#endregion
|
|
1324
1348
|
//#endregion
|
|
1325
1349
|
//#region ../../../../lib/model/common/dist/drivers/pframe/data_info.d.ts
|
|
@@ -4512,9 +4536,12 @@ type InferHrefType<Pl extends Platforma> = Pl extends Platforma<unknown, BlockOu
|
|
|
4512
4536
|
//#endregion
|
|
4513
4537
|
//#region ../model/dist/index.d.ts
|
|
4514
4538
|
//#region src/index.d.ts
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4539
|
+
/**
|
|
4540
|
+
* Pool Explorer persists nothing: the page renders whatever the result pool
|
|
4541
|
+
* currently exposes, and its filter controls are local Vue state. The kind's
|
|
4542
|
+
* `BlockParams` is empty for the same reason, so `init` takes no params.
|
|
4543
|
+
*/
|
|
4544
|
+
type BlockData$1 = Record<string, never>;
|
|
4518
4545
|
declare const platforma: PlatformaExtended<PlatformaV3<BlockData$1, BlockData$1, InferOutputsFromLambdas<{
|
|
4519
4546
|
allSpecs: ConfigRenderLambda<{
|
|
4520
4547
|
readonly entries: {
|