quasar-factory-lib 0.0.82 → 0.0.83

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/package.json CHANGED
@@ -97,6 +97,6 @@
97
97
  "release": "standard-version"
98
98
  },
99
99
  "type": "module",
100
- "version": "0.0.82",
100
+ "version": "0.0.83",
101
101
  "author": ""
102
102
  }
@@ -256,7 +256,8 @@ export default defineComponent({
256
256
  return !this.smallDevice || this.showSearch
257
257
  },
258
258
  showGridHeader () {
259
- return this.selectionType === 'multiple'
259
+ // return this.selectionType === 'multiple'
260
+ return this.selectionType === 'multiple' || this.showAdvancedFilter
260
261
  },
261
262
  getTableSkeletonVisibility () {
262
263
  return !this.smallDevice && this.showSkeleton
@@ -27,11 +27,12 @@
27
27
  :advancedFilters="advancedFilters"
28
28
  :selectionType="selectionType"
29
29
  />
30
+
30
31
  <GridAdvancedFilters
31
32
  v-if="showAdvancedFilter && smallDevice"
32
- :sho-advanced-filter="showAdvancedFilter"
33
33
  :tableProps="tablePropsData"
34
34
  :advancedFilters="advancedFilters"
35
+ :show-advanced-filter="showAdvancedFilter"
35
36
  />
36
37
  </template>
37
38
  <script lang="ts">
@@ -62,6 +62,7 @@
62
62
  font-size: 14px;
63
63
  }
64
64
  @media only screen and (max-width: 1100px) {
65
+
65
66
  .my-table .q-table__grid-content {
66
67
  overflow: auto;
67
68
  height: 400px;
@@ -42,7 +42,6 @@
42
42
  :store="store"
43
43
  :table-style="tableStyle"
44
44
  :show-skeleton="showSkeleton"
45
- :selection-type="'multiple'"
46
45
  @on-select-visible-columns="(columns) => {
47
46
  store.visiblecolumns = columns
48
47
  }"