nuxt-hs-ui 2.1.18 → 2.1.19

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/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.1.18",
7
+ "version": "2.1.19",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -109,12 +109,12 @@ watch(
109
109
  const initTabulator = () => {
110
110
  // console.log(ct, 'initTabulator');
111
111
  if (table.value === null) return;
112
- let height = 0;
112
+ const option = props.option;
113
113
  if (props.rowCountHeight !== 0) {
114
+ let height = 0;
114
115
  height = props.rowCountHeight * 39 + 85 + 2;
116
+ option.height = height === 0 ? "" : height;
115
117
  }
116
- const option = props.option;
117
- option.height = height === 0 ? "" : height;
118
118
  option.columns = props.columns;
119
119
  option.data = data.value;
120
120
  option.reactiveData = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",