@platforma-open/milaboratories.vj-usage.model 2.1.6 → 2.1.7

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/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.vj-usage.model@2.1.6 build /home/runner/work/vj-gene-usage/vj-gene-usage/model
3
+ > @platforma-open/milaboratories.vj-usage.model@2.1.7 build /home/runner/work/vj-gene-usage/vj-gene-usage/model
4
4
  > ts-builder build --target block-model && block-tools build-model
5
5
 
6
6
  Building block-model project...
@@ -11,6 +11,6 @@ Building block-model project...
11
11
  
12
12
  ./src/index.ts → dist...
13
13
  (!) Circular dependency
14
- ../node_modules/.pnpm/@platforma-sdk+model@1.53.3/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.3/node_modules/@platforma-sdk/model/dist/pframe_utils/columns.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.3/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js
15
- created dist in 3.2s
14
+ ../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/pframe_utils/columns.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js
15
+ created dist in 3.3s
16
16
  Build completed successfully
@@ -1,5 +1,5 @@
1
1
   WARN  Issue while reading "/home/runner/work/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.vj-usage.model@2.1.6 lint /home/runner/work/vj-gene-usage/vj-gene-usage/model
3
+ > @platforma-open/milaboratories.vj-usage.model@2.1.7 lint /home/runner/work/vj-gene-usage/vj-gene-usage/model
4
4
  > eslint .
5
5
 
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.vj-usage.model@2.1.6 type-check /home/runner/work/vj-gene-usage/vj-gene-usage/model
3
+ > @platforma-open/milaboratories.vj-usage.model@2.1.7 type-check /home/runner/work/vj-gene-usage/vj-gene-usage/model
4
4
  > ts-builder types --target block-model
5
5
 
6
6
  ↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.vj-usage.model
2
2
 
3
+ ## 2.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - ece9ae6: update dependencies
8
+
3
9
  ## 2.1.6
4
10
 
5
11
  ### Patch Changes
package/dist/bundle.js CHANGED
@@ -7515,7 +7515,7 @@
7515
7515
  }
7516
7516
  }
7517
7517
 
7518
- var version = "1.53.3";
7518
+ var version = "1.53.11";
7519
7519
 
7520
7520
  const PlatformaSDKVersion = version;
7521
7521
 
@@ -8022,7 +8022,7 @@
8022
8022
  // if current block doesn't produce own columns then use all columns from result pool
8023
8023
  const columns = new PColumnCollection();
8024
8024
  columns.addColumnProvider(ctx.resultPool);
8025
- const allColumns = columns.getUniversalEntries(predicate, { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? [];
8025
+ const allColumns = columns.getColumns(predicate, { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? [];
8026
8026
  const allAxes = new Map(allColumns
8027
8027
  .flatMap((column) => getNormalizedAxesList(column.spec.axesSpec))
8028
8028
  .map((axisSpec) => {
@@ -8050,7 +8050,7 @@
8050
8050
  }
8051
8051
  }
8052
8052
  // all linker columns always go to pFrame - even it's impossible to use some of them they all are hidden
8053
- const linkerColumns = columns.getUniversalEntries((spec) => predicate(spec) && isLinkerColumn(spec)) ?? [];
8053
+ const linkerColumns = columns.getColumns((spec) => predicate(spec) && isLinkerColumn(spec), { dontWaitAllData: true }) ?? [];
8054
8054
  const availableWithLinkersAxes = getAvailableWithLinkersAxes(linkerColumns, blockAxes);
8055
8055
  // all possible axes from connected linkers
8056
8056
  for (const item of availableWithLinkersAxes) {
@@ -8059,7 +8059,7 @@
8059
8059
  }
8060
8060
  const blockAxesArr = Array.from(blockAxes.values());
8061
8061
  // all compatible with block columns but without label columns
8062
- let compatibleWithoutLabels = (columns.getUniversalEntries((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
8062
+ let compatibleWithoutLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
8063
8063
  const axisId = getAxisId(axisSpec);
8064
8064
  return blockAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
8065
8065
  }), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => !isLabelColumn(column.spec));
@@ -8072,12 +8072,12 @@
8072
8072
  }
8073
8073
  const allAxesArr = Array.from(allAxes.values());
8074
8074
  // extend allowed columns - add columns thad doesn't have axes from block, but have all axes in 'allAxes' list (that means all axes from linkers or from 'hanging' of other selected columns)
8075
- compatibleWithoutLabels = (columns.getUniversalEntries((spec) => predicate(spec) && spec.axesSpec.every((axisSpec) => {
8075
+ compatibleWithoutLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.every((axisSpec) => {
8076
8076
  const axisId = getAxisId(axisSpec);
8077
8077
  return allAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
8078
8078
  }), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => !isLabelColumn(column.spec));
8079
8079
  // label columns must be compatible with full set of axes - block axes and axes from compatible columns from result pool
8080
- const compatibleLabels = (columns.getUniversalEntries((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
8080
+ const compatibleLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
8081
8081
  const axisId = getAxisId(axisSpec);
8082
8082
  return allAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
8083
8083
  }), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => isLabelColumn(column.spec));