@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.
@@ -3,6 +3,6 @@
3
3
  "id": {
4
4
  "organization": "milaboratories",
5
5
  "name": "ui-examples",
6
- "version": "1.4.1"
6
+ "version": "1.4.2"
7
7
  }
8
8
  }
package/block-pack/ui.tgz CHANGED
Binary file
package/dist/AGENTS.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