@milaboratories/milaboratories.ui-examples.ui 1.5.10 → 1.5.11

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/dist/index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta http-equiv="Content-Security-Policy" content="script-src 'self' blob: data: 'unsafe-eval';">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <script type="module" crossorigin src="./assets/index-Bc8FSKwj.js"></script>
7
+ <script type="module" crossorigin src="./assets/index-B325ak5O.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="./assets/index-DVTP_zd1.css">
9
9
  </head>
10
10
  <body>
@@ -1 +1 @@
1
- {"version":3,"file":"PlAgDataTableV2Page.vue.d.ts","sourceRoot":"","sources":["../../src/pages/PlAgDataTableV2Page.vue"],"names":[],"mappings":";AAofA,wBAKG"}
1
+ {"version":3,"file":"PlAgDataTableV2Page.vue.d.ts","sourceRoot":"","sources":["../../src/pages/PlAgDataTableV2Page.vue"],"names":[],"mappings":";AA4dA,wBAKG"}
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@milaboratories/milaboratories.ui-examples.ui",
3
- "version": "1.5.10",
3
+ "version": "1.5.11",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "vue": "^3.5.13",
7
- "@milaboratories/milaboratories.ui-examples.model": "1.2.9",
8
- "@platforma-sdk/model": "^1.40.5"
7
+ "@milaboratories/milaboratories.ui-examples.model": "1.2.10",
8
+ "@platforma-sdk/model": "^1.40.6"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@vitejs/plugin-vue": "^5.2.3",
@@ -18,11 +18,11 @@
18
18
  "ag-grid-enterprise": "^33.3.2",
19
19
  "ag-grid-vue3": "^33.3.2",
20
20
  "rollup-plugin-sourcemaps2": "^0.5.2",
21
- "@milaboratories/ts-configs": "1.0.4",
22
21
  "@milaboratories/build-configs": "1.0.4",
23
- "@platforma-sdk/ui-vue": "^1.40.5",
22
+ "@milaboratories/ts-configs": "1.0.4",
23
+ "@platforma-sdk/ui-vue": "^1.40.6",
24
24
  "@milaboratories/helpers": "^1.6.18",
25
- "@milaboratories/uikit": "^2.3.14"
25
+ "@milaboratories/uikit": "^2.3.15"
26
26
  },
27
27
  "scripts": {
28
28
  "dev": "vite",
@@ -10,7 +10,6 @@ import {
10
10
  PlBtnGhost,
11
11
  PlSlideModal,
12
12
  usePlDataTableSettingsV2,
13
- type PlTableLabeledSelectionModel,
14
13
  type PlAgDataTableV2Controller,
15
14
  } from '@platforma-sdk/ui-vue';
16
15
  import type { ICellRendererParams } from 'ag-grid-enterprise';
@@ -92,15 +91,6 @@ watch(
92
91
  (selection) => console.log(`selection changed`, toValue(selection)),
93
92
  );
94
93
 
95
- const selectionLabeled = ref<PlTableLabeledSelectionModel>({
96
- spec: [],
97
- selectedLabeledKeys: [],
98
- });
99
- watch(
100
- () => selectionLabeled.value,
101
- (selection) => console.log(`selectionLabeled changed`, toValue(selection)),
102
- );
103
-
104
94
  const reactiveText = ref(false);
105
95
 
106
96
  const now = ref(new Date());
@@ -154,7 +144,6 @@ watch(
154
144
  ref="tableRef"
155
145
  v-model="app.model.ui.dataTableV2.state"
156
146
  v-model:selection="selection"
157
- v-model:selection-labeled="selectionLabeled"
158
147
  :settings="tableSettings"
159
148
  :cell-renderer-selector="cellRendererSelector"
160
149
  v-bind="reactiveTextProps"