@milaboratories/milaboratories.ui-examples.model 1.2.26 → 1.2.27
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 +5 -5
- package/.turbo/turbo-type-check.log +2 -2
- package/CHANGELOG.md +7 -0
- package/dist/bundle.js +3 -14
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +6 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
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.27 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
10
|
[1m[36m[plugin unplugin-dts]
|
|
11
11
|
[unplugin:dts] Start generate declaration files...[39m[22m
|
|
12
|
-
[1m[36m[plugin unplugin-dts] [unplugin:dts] Declaration files built in
|
|
12
|
+
[1m[36m[plugin unplugin-dts] [unplugin:dts] Declaration files built in 8241ms.
|
|
13
13
|
[39m[22m
|
|
14
|
-
[32mcreated [1mdist, dist[22m in [
|
|
14
|
+
[32mcreated [1mdist, dist[22m in [1m18.1s[22m[39m
|
|
15
15
|
[36m
|
|
16
16
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
17
17
|
[1m[33m(!) Circular dependency[39m[22m
|
|
18
18
|
../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
|
|
19
|
-
[32mcreated [1mdist[22m in [
|
|
19
|
+
[32mcreated [1mdist[22m in [1m7.4s[22m[39m
|
|
20
20
|
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.2.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.2.27 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
|
@@ -4595,12 +4595,8 @@
|
|
|
4595
4595
|
|
|
4596
4596
|
const ValueType = {
|
|
4597
4597
|
Int: 'Int',
|
|
4598
|
-
Long: 'Long',
|
|
4599
4598
|
Float: 'Float',
|
|
4600
|
-
|
|
4601
|
-
String: 'String',
|
|
4602
|
-
Bytes: 'Bytes',
|
|
4603
|
-
};
|
|
4599
|
+
String: 'String'};
|
|
4604
4600
|
function readMetadata(metadata, key) {
|
|
4605
4601
|
return metadata?.[key];
|
|
4606
4602
|
}
|
|
@@ -4652,13 +4648,6 @@
|
|
|
4652
4648
|
},
|
|
4653
4649
|
Trace: 'pl7.app/trace',
|
|
4654
4650
|
};
|
|
4655
|
-
const AxisSpec = z.object({
|
|
4656
|
-
type: z.nativeEnum(ValueType),
|
|
4657
|
-
name: z.string(),
|
|
4658
|
-
domain: z.record(z.string(), z.string()).optional(),
|
|
4659
|
-
annotations: z.record(z.string(), z.string()).optional(),
|
|
4660
|
-
parentAxes: z.array(z.number()).optional(),
|
|
4661
|
-
}).passthrough();
|
|
4662
4651
|
const AnnotationJson = {
|
|
4663
4652
|
[Annotation.DiscreteValues]: z.array(z.string()).or(z.array(z.number())),
|
|
4664
4653
|
[Annotation.Graph.IsVirtual]: z.boolean(),
|
|
@@ -4666,7 +4655,7 @@
|
|
|
4666
4655
|
[Annotation.IsLinkerColumn]: z.boolean(),
|
|
4667
4656
|
[Annotation.Max]: z.number(),
|
|
4668
4657
|
[Annotation.Min]: z.number(),
|
|
4669
|
-
[Annotation.Parents]: z.array(
|
|
4658
|
+
[Annotation.Parents]: z.array(z.string()),
|
|
4670
4659
|
[Annotation.Sequence.Annotation.Mapping]: z.record(z.string(), z.string()),
|
|
4671
4660
|
[Annotation.Sequence.IsAnnotation]: z.boolean(),
|
|
4672
4661
|
[Annotation.Table.OrderPriority]: z.number(),
|
|
@@ -6840,7 +6829,7 @@
|
|
|
6840
6829
|
}
|
|
6841
6830
|
}
|
|
6842
6831
|
|
|
6843
|
-
var version = "1.42.
|
|
6832
|
+
var version = "1.42.22";
|
|
6844
6833
|
|
|
6845
6834
|
const PlatformaSDKVersion = version;
|
|
6846
6835
|
|