@platforma-sdk/ui-vue 1.12.0 → 1.13.2
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/CHANGELOG.md +29 -0
- package/dist/lib.js +4960 -4952
- package/dist/lib.umd.cjs +29 -29
- package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts.map +1 -1
- package/dist/src/components/PlAgDataTable/sources/table-source.d.ts +1 -2
- package/dist/src/components/PlAgDataTable/sources/table-source.d.ts.map +1 -1
- package/dist/src/components/PlAgDataTable/types.d.ts +1 -16
- package/dist/src/components/PlAgDataTable/types.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/PlAgDataTable/PlAgDataTable.vue +13 -25
- package/src/components/PlAgDataTable/sources/table-source-heterogeneous.ts +1 -1
- package/src/components/PlAgDataTable/sources/table-source.ts +13 -5
- package/src/components/PlAgDataTable/types.ts +1 -17
- package/src/components/PlAgDataTable/ag-theme.css +0 -402
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @platforma-sdk/ui-vue
|
|
2
2
|
|
|
3
|
+
## 1.13.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6f56890]
|
|
8
|
+
- @milaboratories/uikit@2.2.12
|
|
9
|
+
- @platforma-sdk/model@1.13.2
|
|
10
|
+
|
|
11
|
+
## 1.13.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 3157ecd: - model: Default join used in `createPlDataTableSheet` is now a full join of data columns plus inner left join of labels
|
|
16
|
+
- model: Added `getPColumnByRef` utility method in the result pool
|
|
17
|
+
- model: Added `findLabels` method to get axis labels as map in the model
|
|
18
|
+
- model: Added utility methods to get PColumn partition axes values in the model
|
|
19
|
+
- ui/PlAgDataTable:
|
|
20
|
+
- removed transitions from style
|
|
21
|
+
- removed unused style.css
|
|
22
|
+
- moved PlDataTableSheet to a model
|
|
23
|
+
- renamed `{value, text}` to `{value, label}` in `PlDataTableSheet` options for consistency with other APIs (braking change)
|
|
24
|
+
- fixed a bug with non-disappearing label column when the corresponding axis is used in the sheets
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [3157ecd]
|
|
29
|
+
- @platforma-sdk/model@1.13.0
|
|
30
|
+
- @milaboratories/uikit@2.2.11
|
|
31
|
+
|
|
3
32
|
## 1.12.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|