@platforma-sdk/ui-vue 1.29.9 → 1.29.13
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 +18 -0
- package/dist/lib.js +9477 -9003
- package/dist/lib.js.map +1 -1
- package/dist/lib.umd.cjs +27 -27
- package/dist/lib.umd.cjs.map +1 -1
- package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts.map +1 -1
- package/dist/src/components/PlAgDataTable/PlAgDataTableV2.vue.d.ts +78 -0
- package/dist/src/components/PlAgDataTable/PlAgDataTableV2.vue.d.ts.map +1 -0
- package/dist/src/components/PlAgDataTable/index.d.ts +1 -0
- package/dist/src/components/PlAgDataTable/index.d.ts.map +1 -1
- package/dist/src/components/PlAgDataTable/sources/common.d.ts +21 -0
- package/dist/src/components/PlAgDataTable/sources/common.d.ts.map +1 -0
- package/dist/src/components/PlAgDataTable/sources/table-source-v2.d.ts +16 -0
- package/dist/src/components/PlAgDataTable/sources/table-source-v2.d.ts.map +1 -0
- package/dist/src/components/PlAgDataTable/sources/table-source.d.ts +4 -15
- package/dist/src/components/PlAgDataTable/sources/table-source.d.ts.map +1 -1
- package/dist/src/components/PlAgDataTable/types.d.ts +14 -2
- package/dist/src/components/PlAgDataTable/types.d.ts.map +1 -1
- package/dist/src/lib.d.ts +2 -1
- package/dist/src/lib.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 +10 -6
- package/src/components/PlAgDataTable/PlAgDataTableV2.vue +539 -0
- package/src/components/PlAgDataTable/index.ts +1 -0
- package/src/components/PlAgDataTable/sources/common.ts +127 -0
- package/src/components/PlAgDataTable/sources/table-source-heterogeneous.ts +2 -2
- package/src/components/PlAgDataTable/sources/table-source-v2.ts +260 -0
- package/src/components/PlAgDataTable/sources/table-source.ts +2 -115
- package/src/components/PlAgDataTable/types.ts +19 -1
- package/src/lib.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @platforma-sdk/ui-vue
|
|
2
2
|
|
|
3
|
+
## 1.29.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 04176b1: Use CanonicalizedJson type
|
|
8
|
+
- Updated dependencies [37e6f75]
|
|
9
|
+
- @platforma-sdk/model@1.29.13
|
|
10
|
+
- @milaboratories/uikit@2.2.67
|
|
11
|
+
|
|
12
|
+
## 1.29.12
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 621e15a: PlAgDataTableV2 component (does not include hidden columns in join)
|
|
17
|
+
- Updated dependencies [621e15a]
|
|
18
|
+
- @platforma-sdk/model@1.29.12
|
|
19
|
+
- @milaboratories/uikit@2.2.67
|
|
20
|
+
|
|
3
21
|
## 1.29.9
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|