@platforma-sdk/ui-vue 1.8.19 → 1.8.21
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 +13 -0
- package/dist/lib.js +7 -4
- package/dist/lib.umd.cjs +2 -2
- package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/components/PlAgDataTable/PlAgDataTable.vue +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/ui-vue",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/lib.umd.cjs",
|
|
6
6
|
"module": "dist/lib.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@ag-grid-community/theming": "^32.3.2",
|
|
38
38
|
"@ag-grid-enterprise/side-bar": "^32.3.2",
|
|
39
39
|
"@ag-grid-enterprise/column-tool-panel": "^32.3.2",
|
|
40
|
-
"@milaboratories/uikit": "^2.2.
|
|
40
|
+
"@milaboratories/uikit": "^2.2.1",
|
|
41
41
|
"@platforma-sdk/model": "^1.8.19"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -10,12 +10,12 @@ import type {
|
|
|
10
10
|
StateUpdatedEvent,
|
|
11
11
|
} from '@ag-grid-community/core';
|
|
12
12
|
import { ModuleRegistry } from '@ag-grid-community/core';
|
|
13
|
-
import { ServerSideRowModelModule } from '@ag-grid-enterprise/server-side-row-model';
|
|
14
|
-
import { SideBarModule } from '@ag-grid-enterprise/side-bar';
|
|
15
|
-
import { ColumnsToolPanelModule } from '@ag-grid-enterprise/column-tool-panel';
|
|
16
13
|
import { AgGridVue } from '@ag-grid-community/vue3';
|
|
17
14
|
import { ClipboardModule } from '@ag-grid-enterprise/clipboard';
|
|
15
|
+
import { ColumnsToolPanelModule } from '@ag-grid-enterprise/column-tool-panel';
|
|
18
16
|
import { RangeSelectionModule } from '@ag-grid-enterprise/range-selection';
|
|
17
|
+
import { ServerSideRowModelModule } from '@ag-grid-enterprise/server-side-row-model';
|
|
18
|
+
import { SideBarModule } from '@ag-grid-enterprise/side-bar';
|
|
19
19
|
import { PlDropdownLine } from '@milaboratories/uikit';
|
|
20
20
|
import type { AxisId, PlDataTableState, PTableRecordFilter, PTableSorting } from '@platforma-sdk/model';
|
|
21
21
|
import canonicalize from 'canonicalize';
|
|
@@ -248,6 +248,9 @@ const gridOptions = ref<GridOptions>({
|
|
|
248
248
|
onRowDataUpdated: (event) => {
|
|
249
249
|
event.api.autoSizeAllColumns();
|
|
250
250
|
},
|
|
251
|
+
defaultColDef: {
|
|
252
|
+
suppressHeaderMenuButton: true,
|
|
253
|
+
},
|
|
251
254
|
maintainColumnOrder: true,
|
|
252
255
|
localeText: {
|
|
253
256
|
loadingError: '...',
|