@milaboratories/milaboratories.pool-explorer.model 1.0.97 → 1.0.98
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 +6 -0
- package/dist/bundle.js +29 -1
- 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,16 +1,16 @@
|
|
|
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.pool-explorer.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.pool-explorer.model@1.0.98 build /home/runner/_work/platforma/platforma/etc/blocks/pool-explorer/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 [1m4.1s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
13
|
[1m[33m(!) Circular dependency[39m[22m
|
|
14
14
|
../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
|
|
15
|
-
[32mcreated [1mdist[22m in [
|
|
15
|
+
[32mcreated [1mdist[22m in [1m3.9s[22m[39m
|
|
16
16
|
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.pool-explorer.model@1.0.
|
|
3
|
+
> @milaboratories/milaboratories.pool-explorer.model@1.0.98 type-check /home/runner/_work/platforma/platforma/etc/blocks/pool-explorer/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
|
@@ -4572,14 +4572,27 @@
|
|
|
4572
4572
|
const Annotation = {
|
|
4573
4573
|
DiscreteValues: 'pl7.app/discreteValues',
|
|
4574
4574
|
Graph: {
|
|
4575
|
+
Axis: {
|
|
4576
|
+
HighCardinality: 'pl7.app/graph/axis/highCardinality',
|
|
4577
|
+
LowerLimit: 'pl7.app/graph/axis/lowerLimit',
|
|
4578
|
+
SymmetricRange: 'pl7.app/graph/axis/symmetricRange',
|
|
4579
|
+
UpperLimit: 'pl7.app/graph/axis/upperLimit',
|
|
4580
|
+
},
|
|
4581
|
+
IsDenseAxis: 'pl7.app/graph/isDenseAxis',
|
|
4575
4582
|
IsVirtual: 'pl7.app/graph/isVirtual',
|
|
4583
|
+
Palette: 'pl7.app/graph/palette',
|
|
4584
|
+
Thresholds: 'pl7.app/graph/thresholds',
|
|
4585
|
+
TreatAbsentValuesAs: 'pl7.app/graph/treatAbsentValuesAs',
|
|
4576
4586
|
},
|
|
4577
4587
|
HideDataFromUi: 'pl7.app/hideDataFromUi',
|
|
4578
4588
|
HideDataFromGraphs: 'pl7.app/hideDataFromGraphs',
|
|
4589
|
+
IsDiscreteFilter: 'pl7.app/isDiscreteFilter',
|
|
4579
4590
|
IsLinkerColumn: 'pl7.app/isLinkerColumn',
|
|
4591
|
+
IsSubset: 'pl7.app/isSubset',
|
|
4580
4592
|
Label: 'pl7.app/label',
|
|
4581
4593
|
Max: 'pl7.app/max',
|
|
4582
4594
|
Min: 'pl7.app/min',
|
|
4595
|
+
MultipliesBy: 'pl7.app/multipliesBy',
|
|
4583
4596
|
Parents: 'pl7.app/parents',
|
|
4584
4597
|
Sequence: {
|
|
4585
4598
|
Annotation: {
|
|
@@ -4591,14 +4604,29 @@
|
|
|
4591
4604
|
OrderPriority: 'pl7.app/table/orderPriority'},
|
|
4592
4605
|
Trace: 'pl7.app/trace',
|
|
4593
4606
|
};
|
|
4607
|
+
const ValueTypeSchema = z.enum(['Int', 'Long', 'Float', 'Double', 'String']);
|
|
4594
4608
|
({
|
|
4595
4609
|
[Annotation.DiscreteValues]: z.array(z.string()).or(z.array(z.number())),
|
|
4610
|
+
[Annotation.Graph.Axis.HighCardinality]: z.boolean(),
|
|
4611
|
+
[Annotation.Graph.Axis.LowerLimit]: z.number(),
|
|
4612
|
+
[Annotation.Graph.Axis.UpperLimit]: z.number(),
|
|
4613
|
+
[Annotation.Graph.Axis.SymmetricRange]: z.boolean(),
|
|
4614
|
+
[Annotation.Graph.IsDenseAxis]: z.boolean(),
|
|
4615
|
+
[Annotation.Graph.Palette]: z.object({ mapping: z.record(z.number()), name: z.string() }),
|
|
4616
|
+
[Annotation.Graph.Thresholds]: z.array(z.object({
|
|
4617
|
+
columnId: z.object({ valueType: ValueTypeSchema, name: z.string() }),
|
|
4618
|
+
value: z.number(),
|
|
4619
|
+
})),
|
|
4620
|
+
[Annotation.Graph.TreatAbsentValuesAs]: z.number(),
|
|
4596
4621
|
[Annotation.Graph.IsVirtual]: z.boolean(),
|
|
4597
4622
|
[Annotation.HideDataFromUi]: z.boolean(),
|
|
4598
4623
|
[Annotation.HideDataFromGraphs]: z.boolean(),
|
|
4624
|
+
[Annotation.IsDiscreteFilter]: z.boolean(),
|
|
4599
4625
|
[Annotation.IsLinkerColumn]: z.boolean(),
|
|
4626
|
+
[Annotation.IsSubset]: z.boolean(),
|
|
4600
4627
|
[Annotation.Max]: z.number(),
|
|
4601
4628
|
[Annotation.Min]: z.number(),
|
|
4629
|
+
[Annotation.MultipliesBy]: z.array(z.string()),
|
|
4602
4630
|
[Annotation.Parents]: z.array(z.string()),
|
|
4603
4631
|
[Annotation.Sequence.Annotation.Mapping]: z.record(z.string(), z.string()),
|
|
4604
4632
|
[Annotation.Sequence.IsAnnotation]: z.boolean(),
|
|
@@ -6772,7 +6800,7 @@
|
|
|
6772
6800
|
}
|
|
6773
6801
|
}
|
|
6774
6802
|
|
|
6775
|
-
var version = "1.43.
|
|
6803
|
+
var version = "1.43.29";
|
|
6776
6804
|
|
|
6777
6805
|
const PlatformaSDKVersion = version;
|
|
6778
6806
|
|