@milaboratories/milaboratories.ui-examples.model 1.3.6 → 1.3.8
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 +3 -3
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/bundle.js +12 -8
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +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.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.3.8 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 [1m9.8s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
|
-
[32mcreated [1mdist[22m in [
|
|
13
|
+
[32mcreated [1mdist[22m in [1m10.7s[22m[39m
|
|
14
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.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.3.8 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,19 @@
|
|
|
1
1
|
# @milaboratories/milaboratories.ui-examples.model
|
|
2
2
|
|
|
3
|
+
## 1.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a81ce44]
|
|
8
|
+
- @platforma-sdk/model@1.46.0
|
|
9
|
+
|
|
10
|
+
## 1.3.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [bf6fe49]
|
|
15
|
+
- @platforma-sdk/model@1.45.45
|
|
16
|
+
|
|
3
17
|
## 1.3.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/bundle.js
CHANGED
|
@@ -5085,7 +5085,7 @@
|
|
|
5085
5085
|
? undefined
|
|
5086
5086
|
: {
|
|
5087
5087
|
...pObj,
|
|
5088
|
-
data: cb(pObj.data),
|
|
5088
|
+
data: cb(typeof pObj.data === 'function' ? pObj.data() : pObj.data),
|
|
5089
5089
|
};
|
|
5090
5090
|
}
|
|
5091
5091
|
function extractAllColumns(entry) {
|
|
@@ -6134,15 +6134,19 @@
|
|
|
6134
6134
|
const isValues = (d) => Array.isArray(d);
|
|
6135
6135
|
const isAccessor = (d) => d instanceof TreeNodeAccessor;
|
|
6136
6136
|
let ready = true;
|
|
6137
|
-
|
|
6138
|
-
|
|
6137
|
+
const data = typeof c.data === 'function' ? c.data() : c.data;
|
|
6138
|
+
if (data == null) {
|
|
6139
|
+
return false;
|
|
6140
|
+
}
|
|
6141
|
+
else if (isAccessor(data)) {
|
|
6142
|
+
ready &&= data.getIsReadyOrError();
|
|
6139
6143
|
}
|
|
6140
|
-
else if (isDataInfo(
|
|
6141
|
-
visitDataInfo(
|
|
6144
|
+
else if (isDataInfo(data)) {
|
|
6145
|
+
visitDataInfo(data, (v) => ready &&= v.getIsReadyOrError());
|
|
6142
6146
|
}
|
|
6143
|
-
else if (!isValues(
|
|
6147
|
+
else if (!isValues(data)) {
|
|
6144
6148
|
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
6145
|
-
throw Error(`unsupported column data type: ${
|
|
6149
|
+
throw Error(`unsupported column data type: ${data}`);
|
|
6146
6150
|
}
|
|
6147
6151
|
return ready;
|
|
6148
6152
|
}
|
|
@@ -6997,7 +7001,7 @@
|
|
|
6997
7001
|
}
|
|
6998
7002
|
}
|
|
6999
7003
|
|
|
7000
|
-
var version = "1.
|
|
7004
|
+
var version = "1.46.0";
|
|
7001
7005
|
|
|
7002
7006
|
const PlatformaSDKVersion = version;
|
|
7003
7007
|
|