@milaboratories/milaboratories.ui-examples.model 1.3.2 → 1.3.4

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,16 +1,14 @@
1
1
   WARN  Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @milaboratories/milaboratories.ui-examples.model@1.3.2 build /home/runner/_work/platforma/platforma/etc/blocks/ui-examples/model
3
+ > @milaboratories/milaboratories.ui-examples.model@1.3.4 build /home/runner/_work/platforma/platforma/etc/blocks/ui-examples/model
4
4
  > ts-builder build --target block-model && block-tools build-model
5
5
 
6
6
  Building block-model project...
7
7
  ↳ rollup -c /configs/rollup.block-model.config.js
8
8
  
9
9
  ./src/index.ts → dist, dist...
10
- created dist, dist in 9.2s
10
+ created dist, dist in 6.3s
11
11
  
12
12
  ./src/index.ts → dist...
13
- (!) Circular dependency
14
- ../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
15
- created dist in 5.4s
13
+ created dist in 7.9s
16
14
  Build completed successfully
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @milaboratories/milaboratories.ui-examples.model@1.3.2 type-check /home/runner/_work/platforma/platforma/etc/blocks/ui-examples/model
3
+ > @milaboratories/milaboratories.ui-examples.model@1.3.4 type-check /home/runner/_work/platforma/platforma/etc/blocks/ui-examples/model
4
4
  > ts-builder types --target block-model
5
5
 
6
6
  ↳ tsc --noEmit --project ./tsconfig.json
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @milaboratories/milaboratories.ui-examples.model
2
2
 
3
+ ## 1.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [17e5fe7]
8
+ - @platforma-sdk/model@1.45.30
9
+
10
+ ## 1.3.3
11
+
12
+ ### Patch Changes
13
+
14
+ - 5814e48: Small changes in sdk
15
+ - Updated dependencies [55b218b]
16
+ - Updated dependencies [5814e48]
17
+ - @platforma-sdk/model@1.45.26
18
+
3
19
  ## 1.3.2
4
20
 
5
21
  ### Patch Changes
package/dist/bundle.js CHANGED
@@ -4742,9 +4742,15 @@
4742
4742
  function readAnnotationJson(spec, key) {
4743
4743
  return readMetadataJson(spec?.annotations, AnnotationJson, key);
4744
4744
  }
4745
+ function isLinkerColumn(column) {
4746
+ return !!readAnnotationJson(column, Annotation.IsLinkerColumn);
4747
+ }
4745
4748
  /// Well-known column names
4746
4749
  const PColumnName = {
4747
4750
  Label: 'pl7.app/label'};
4751
+ function isLabelColumn(column) {
4752
+ return column.axesSpec.length === 1 && column.name === PColumnName.Label;
4753
+ }
4748
4754
  /** Get column id and spec from a column */
4749
4755
  function getColumnIdAndSpec(column) {
4750
4756
  return {
@@ -6991,7 +6997,7 @@
6991
6997
  }
6992
6998
  }
6993
6999
 
6994
- var version = "1.45.23";
7000
+ var version = "1.45.30";
6995
7001
 
6996
7002
  const PlatformaSDKVersion = version;
6997
7003
 
@@ -7206,10 +7212,6 @@
7206
7212
  }
7207
7213
  return state;
7208
7214
  }
7209
- /** Check if column is a label column */
7210
- function isLabelColumn(column) {
7211
- return column.axesSpec.length === 1 && column.name === PColumnName.Label;
7212
- }
7213
7215
  /** Get all label columns from the result pool */
7214
7216
  function getAllLabelColumns(resultPool) {
7215
7217
  return new PColumnCollection()
@@ -7423,11 +7425,6 @@
7423
7425
  };
7424
7426
  }
7425
7427
 
7426
- /** Check if column is a linker column */
7427
- function isLinkerColumn(column) {
7428
- return !!readAnnotationJson(column, Annotation.IsLinkerColumn);
7429
- }
7430
-
7431
7428
  var stringify = {exports: {}};
7432
7429
 
7433
7430
  var hasRequiredStringify;