@milaboratories/milaboratories.ui-examples.model 1.2.35 → 1.2.36
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.
- package/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +11 -1
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
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.2.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.2.36 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
|
[36m
|
|
9
9
|
[1m./src/index.ts[22m → [1mdist, dist[22m...[39m
|
|
10
|
-
[32mcreated [1mdist, dist[22m in [
|
|
10
|
+
[32mcreated [1mdist, dist[22m in [1m11.3s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
13
|
[1m[33m(!) Circular dependency[39m[22m
|
|
@@ -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.2.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.2.36 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
package/dist/bundle.js
CHANGED
|
@@ -4740,6 +4740,13 @@
|
|
|
4740
4740
|
newId: entry.newId,
|
|
4741
4741
|
axisFilters: entry.axisFilters,
|
|
4742
4742
|
};
|
|
4743
|
+
case 'artificialColumn':
|
|
4744
|
+
return {
|
|
4745
|
+
type: 'artificialColumn',
|
|
4746
|
+
column: cb(entry.column),
|
|
4747
|
+
newId: entry.newId,
|
|
4748
|
+
axesIndices: entry.axesIndices,
|
|
4749
|
+
};
|
|
4743
4750
|
case 'inlineColumn':
|
|
4744
4751
|
return entry;
|
|
4745
4752
|
case 'inner':
|
|
@@ -5022,6 +5029,9 @@
|
|
|
5022
5029
|
case 'slicedColumn':
|
|
5023
5030
|
columns.set(entry.column.id, entry.column);
|
|
5024
5031
|
return;
|
|
5032
|
+
case 'artificialColumn':
|
|
5033
|
+
columns.set(entry.column.id, entry.column);
|
|
5034
|
+
return;
|
|
5025
5035
|
case 'inlineColumn':
|
|
5026
5036
|
return;
|
|
5027
5037
|
case 'full':
|
|
@@ -6839,7 +6849,7 @@
|
|
|
6839
6849
|
}
|
|
6840
6850
|
}
|
|
6841
6851
|
|
|
6842
|
-
var version = "1.43.
|
|
6852
|
+
var version = "1.43.2";
|
|
6843
6853
|
|
|
6844
6854
|
const PlatformaSDKVersion = version;
|
|
6845
6855
|
|