@platforma-open/milaboratories.humanization-score.model 0.3.1 → 0.3.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.
@@ -1,20 +1,18 @@
1
1
   WARN  Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.humanization-score.model@0.3.1 build /home/runner/work/humanization-score/humanization-score/model
3
+ > @platforma-open/milaboratories.humanization-score.model@0.3.2 build /home/runner/work/humanization-score/humanization-score/model
4
4
  > ts-builder build --target block-model && block-tools build-model
5
5
 
6
6
  Building block-model project...
7
7
  ↳ cli.mjs -c /home/runner/work/humanization-score/humanization-score/node_modules/.pnpm/@milaboratories+ts-builder@1.5.0_@types+node@24.5.2_rollup@4.55.1_vue@3.5.26_typescript@5.6.3__yaml@2.8.2/node_modules/@milaboratories/ts-builder/dist/configs/rolldown.block-model.config.js
8
- [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
9
-
10
8
  [log] <DIR>/index.d.ts.map asset │ size: 0.33 kB
11
- [log] <DIR>/index.js.map asset │ size: 6.59 kB
12
- [log] <DIR>/index.js chunk │ size: 2.68 kB
9
+ [log] <DIR>/index.js.map asset │ size: 6.11 kB
10
+ [log] <DIR>/index.js chunk │ size: 2.70 kB
13
11
  [log] <DIR>/index.d.ts chunk │ size: 57.01 kB
14
- [log] <DIR>/index.cjs.map asset │ size: 6.71 kB
15
- [log] <DIR>/index.cjs chunk │ size: 2.87 kB
16
- [log] <DIR>/bundle.js.map asset │ size: 711.16 kB
17
- [log] <DIR>/bundle.js chunk │ size: 361.44 kB
12
+ [log] <DIR>/index.cjs.map asset │ size: 6.19 kB
13
+ [log] <DIR>/index.cjs chunk │ size: 2.89 kB
14
+ [log] <DIR>/bundle.js.map asset │ size: 710.68 kB
15
+ [log] <DIR>/bundle.js chunk │ size: 361.48 kB
18
16
  [log]
19
- [success] rolldown v1.0.0-rc.18 Finished in 3.15 s
17
+ [success] rolldown v1.0.0-rc.18 Finished in 2.50 s
20
18
  Build completed successfully
@@ -1,5 +1,5 @@
1
1
   WARN  Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.humanization-score.model@0.3.1 lint /home/runner/work/humanization-score/humanization-score/model
3
+ > @platforma-open/milaboratories.humanization-score.model@0.3.2 lint /home/runner/work/humanization-score/humanization-score/model
4
4
  > eslint .
5
5
 
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.humanization-score.model@0.3.1 type-check /home/runner/work/humanization-score/humanization-score/model
3
+ > @platforma-open/milaboratories.humanization-score.model@0.3.2 type-check /home/runner/work/humanization-score/humanization-score/model
4
4
  > ts-builder type-check --target block-model
5
5
 
6
6
  ↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @platforma-open/milaboratories.humanization-score.model
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ac1bb58: Enrich the results table with every result-pool column sharing the humanness
8
+ score's `clonotypeKey` axis. The `pt` output now anchors on the score column and
9
+ uses an `enrichment` selector, so the original clonotype columns (sequences,
10
+ labels, etc.) are shown alongside the humanness score instead of the score alone.
11
+
3
12
  ## 0.3.1
4
13
 
5
14
  ### Patch Changes
package/dist/bundle.js CHANGED
@@ -10399,12 +10399,14 @@
10399
10399
  }).output("inputOptions", (ctx) => ctx.resultPool.getOptions(inputSelectors)).outputWithStatus("pt", (ctx) => {
10400
10400
  const pCols = ctx.outputs?.resolve("outputHumanness")?.getPColumns();
10401
10401
  if (pCols === void 0) return;
10402
+ const anchorCol = pCols[0];
10403
+ if (anchorCol === void 0) return;
10402
10404
  return createPlDataTableV3(ctx, {
10403
10405
  tableState: ctx.data.tableState,
10404
- columns: new ArrayColumnProvider(pCols).getAllColumns().map((column) => ({
10405
- column,
10406
- isPrimary: true
10407
- }))
10406
+ columns: {
10407
+ anchors: { main: anchorCol.spec },
10408
+ selector: { mode: "enrichment" }
10409
+ }
10408
10410
  });
10409
10411
  }).outputWithStatus("histogramPf", (ctx) => {
10410
10412
  const pCols = ctx.outputs?.resolve("outputHumanness")?.getPColumns();