@milaboratories/milaboratories.ui-examples 1.4.1 → 1.4.2
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 +9 -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 +24 -0
- package/dist/AGENTS.d.ts.map +1 -1
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9005 -8255
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
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
|