@milaboratories/milaboratories.ui-examples.model 1.3.3 → 1.3.5
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 -5
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/bundle.js +8 -10
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -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.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.3.5 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 [1m6.6s[22m[39m
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
|
-
[
|
|
14
|
-
../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
|
|
15
|
-
[32mcreated [1mdist[22m in [1m6s[22m[39m
|
|
13
|
+
[32mcreated [1mdist[22m in [1m4.3s[22m[39m
|
|
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.
|
|
3
|
+
> @milaboratories/milaboratories.ui-examples.model@1.3.5 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,20 @@
|
|
|
1
1
|
# @milaboratories/milaboratories.ui-examples.model
|
|
2
2
|
|
|
3
|
+
## 1.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d088e83: add pl-advanced-filter
|
|
8
|
+
- Updated dependencies [d088e83]
|
|
9
|
+
- @platforma-sdk/model@1.45.35
|
|
10
|
+
|
|
11
|
+
## 1.3.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [17e5fe7]
|
|
16
|
+
- @platforma-sdk/model@1.45.30
|
|
17
|
+
|
|
3
18
|
## 1.3.3
|
|
4
19
|
|
|
5
20
|
### 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.
|
|
7000
|
+
var version = "1.45.35";
|
|
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;
|
|
@@ -7801,6 +7798,7 @@
|
|
|
7801
7798
|
{ type: 'link', href: '/pl-autocomplete', label: 'PlAutocomplete' },
|
|
7802
7799
|
{ type: 'link', href: '/pl-autocomplete-multi', label: 'PlAutocompleteMulti' },
|
|
7803
7800
|
{ type: 'link', href: '/radio', label: 'PlRadio' },
|
|
7801
|
+
{ type: 'link', href: '/advanced-filter', label: 'PlAdvancedFilter' },
|
|
7804
7802
|
...(dynamicSections.length
|
|
7805
7803
|
? [
|
|
7806
7804
|
{ type: 'delimiter' },
|