@platforma-open/milaboratories.clonotype-clustering.model 2.8.0 → 2.9.0

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,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/clonotype-clustering/clonotype-clustering/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.clonotype-clustering.model@2.8.0 build /home/runner/work/clonotype-clustering/clonotype-clustering/model
3
+ > @platforma-open/milaboratories.clonotype-clustering.model@2.9.0 build /home/runner/work/clonotype-clustering/clonotype-clustering/model
4
4
  > tsup && vite build && block-tools build-model
5
5
 
6
6
  CLI Building entry: src/index.ts
@@ -11,21 +11,21 @@
11
11
  CLI Cleaning output folder
12
12
  CJS Build start
13
13
  ESM Build start
14
- ESM dist/index.js 5.09 KB
15
- ESM dist/index.js.map 12.37 KB
16
- ESM ⚡️ Build success in 173ms
17
- CJS dist/index.cjs 5.08 KB
18
- CJS dist/index.cjs.map 12.46 KB
19
- CJS ⚡️ Build success in 173ms
14
+ CJS dist/index.cjs 5.53 KB
15
+ CJS dist/index.cjs.map 13.61 KB
16
+ CJS ⚡️ Build success in 170ms
17
+ ESM dist/index.js 5.54 KB
18
+ ESM dist/index.js.map 13.51 KB
19
+ ESM ⚡️ Build success in 170ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 2314ms
22
- DTS dist/index.d.cts 4.60 KB
23
- DTS dist/index.d.ts 4.60 KB
21
+ DTS ⚡️ Build success in 2400ms
22
+ DTS dist/index.d.cts 5.64 KB
23
+ DTS dist/index.d.ts 5.64 KB
24
24
  vite v6.3.5 building for production...
25
25
  transforming...
26
26
  ✓ 11 modules transformed.
27
27
  rendering chunks...
28
28
  computing gzip size...
29
- dist/bundle.js 195.12 kB │ gzip: 38.26 kB │ map: 416.02 kB
30
- dist/bundle.js 208.46 kB │ gzip: 38.93 kB │ map: 417.61 kB
31
- ✓ built in 763ms
29
+ dist/bundle.js 195.70 kB │ gzip: 38.29 kB │ map: 417.03 kB
30
+ dist/bundle.js 209.08 kB │ gzip: 38.96 kB │ map: 418.61 kB
31
+ ✓ built in 829ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.clonotype-clustering.model
2
2
 
3
+ ## 2.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 469d0b6: Limited bubble plot to top 100 clusters. Fixed centroid export annotations.
8
+
3
9
  ## 2.8.0
4
10
 
5
11
  ### Minor Changes
package/dist/bundle.js CHANGED
@@ -6293,7 +6293,7 @@
6293
6293
  title: "Clonotype Clustering",
6294
6294
  tableState: Vt(),
6295
6295
  graphStateBubble: {
6296
- title: "Clusters Plot",
6296
+ title: "Top Clusters Plot",
6297
6297
  template: "bubble",
6298
6298
  currentTab: null,
6299
6299
  layersSettings: {
@@ -6432,6 +6432,25 @@
6432
6432
  return void 0;
6433
6433
  }
6434
6434
  return jn(ctx, pCols);
6435
+ }).output("bubblePlotPf", (ctx) => {
6436
+ var _a, _b;
6437
+ const pCols = (_b = (_a = ctx.outputs) == null ? void 0 : _a.resolve("bubblePlotPf")) == null ? void 0 : _b.getPColumns();
6438
+ if (pCols === void 0) {
6439
+ return void 0;
6440
+ }
6441
+ return jn(ctx, pCols);
6442
+ }).output("bubblePlotPfPcols", (ctx) => {
6443
+ var _a, _b;
6444
+ const pCols = (_b = (_a = ctx.outputs) == null ? void 0 : _a.resolve("bubblePlotPf")) == null ? void 0 : _b.getPColumns();
6445
+ if (pCols === void 0) {
6446
+ return void 0;
6447
+ }
6448
+ return pCols.map(
6449
+ (c2) => ({
6450
+ columnId: c2.id,
6451
+ spec: c2.spec
6452
+ })
6453
+ );
6435
6454
  }).output("clustersPfPcols", (ctx) => {
6436
6455
  var _a, _b;
6437
6456
  const pCols = (_b = (_a = ctx.outputs) == null ? void 0 : _a.resolve("pf")) == null ? void 0 : _b.getPColumns();
@@ -6452,7 +6471,7 @@
6452
6471
  return ((_a = ctx.uiState) == null ? void 0 : _a.title) ?? "Clonotype Clustering";
6453
6472
  }).sections((_ctx) => [
6454
6473
  { type: "link", href: "/", label: "Main" },
6455
- { type: "link", href: "/bubble", label: "Clusters Plot" },
6474
+ { type: "link", href: "/bubble", label: "Top Clusters Plot" },
6456
6475
  { type: "link", href: "/histogram", label: "Cluster Size Histogram" }
6457
6476
  ]).done();
6458
6477
  exports2.model = model;