@alaarab/ogrid-vue 2.0.12 → 2.0.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.
@@ -189,7 +189,7 @@ export function createDataGridTable(ui) {
189
189
  const wrapperStyle = {
190
190
  position: 'relative',
191
191
  flex: '1',
192
- minHeight: '0',
192
+ minHeight: isLoading && items.length === 0 ? '200px' : '0',
193
193
  width: fitToContent ? 'fit-content' : '100%',
194
194
  maxWidth: '100%',
195
195
  overflowX: suppressHorizontalScroll ? 'hidden' : allowOverflowX ? 'auto' : 'hidden',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-vue",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "OGrid Vue – Vue 3 composables, headless components, and utilities for OGrid data grids.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -35,7 +35,7 @@
35
35
  "node": ">=18"
36
36
  },
37
37
  "dependencies": {
38
- "@alaarab/ogrid-core": "2.0.12"
38
+ "@alaarab/ogrid-core": "2.0.13"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "vue": "^3.3.0"