slickgrid-vue 10.1.0 → 10.1.1

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -49,7 +49,7 @@ interface User {
49
49
  }
50
50
 
51
51
  // it could also be `Column<User>[]`
52
- const columnDefinitions: Ref<Column[]> = ref([
52
+ const columns: Ref<Column[]> = ref([
53
53
  { id: 'firstName', name: 'First Name', field: 'firstName', sortable: true },
54
54
  { id: 'lastName', name: 'Last Name', field: 'lastName', sortable: true },
55
55
  { id: 'age', name: 'Age', field: 'age', type: 'number', sortable: true },
@@ -58,15 +58,15 @@ const dataset = ref<User[]>([
58
58
  { id: 1, firstName: 'John', lastName: 'Doe', age: 20 },
59
59
  { id: 2, firstName: 'Jane', lastName: 'Smith', age: 21 },
60
60
  ]);
61
- const gridOptions = ref<GridOption>({ /*...*/ }); // optional grid options
61
+ const options = ref<GridOption>({ /*...*/ }); // optional grid options
62
62
  </script>
63
63
 
64
64
  <template>
65
65
  <slickgrid-vue
66
66
  grid-id="grid1"
67
- v-model:columns="columnDefinitions"
67
+ v-model:columns="columns"
68
68
  v-model:dataset="dataset"
69
- v-model:options="gridOptions"
69
+ v-model:options="options"
70
70
  ></slickgrid-vue>
71
71
  </template>
72
72
  ```
@@ -78,7 +78,7 @@ const gridOptions = ref<GridOption>({ /*...*/ }); // optional grid options
78
78
 
79
79
  | Slickgrid-Vue | Vue | Migration Guide | Notes | Date |
80
80
  |:---------------:| --------- | --------------- | ----- | ---- |
81
- | 10.x | Vue >=3.5.0 | [Migration 10.x](https://ghiscoding.gitbook.io/slickgrid-vue/migrations/migration-to-10.x) | Smaller code, requires Slickgrid-Universal [10.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v10.0.0) | 2026-03-02 |
81
+ | 10.x | Vue >=3.5.0 | [Migration 10.x](https://ghiscoding.gitbook.io/slickgrid-vue/migrations/migration-to-10.x) | modernization and accessibility, requires Slickgrid-Universal [10.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v10.0.0) | 2026-03-02 |
82
82
  | 9.x | Vue >=3.5.0 | [Migration 9.x](https://ghiscoding.gitbook.io/slickgrid-vue/migrations/migration-to-9.x) | ESM-Only, requires Slickgrid-Universal [9.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v9.0.0) | 2025-05-10 |
83
83
 
84
84
  ### Like it? ⭐ it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slickgrid-vue",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "Slickgrid-Vue",
5
5
  "license": "MIT",
6
6
  "author": "Ghislain B.",
@@ -47,17 +47,17 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@formkit/tempo": "^1.0.0",
50
- "@slickgrid-universal/common": "10.1.0",
51
- "@slickgrid-universal/custom-footer-component": "10.1.0",
52
- "@slickgrid-universal/empty-warning-component": "10.1.0",
53
- "@slickgrid-universal/event-pub-sub": "10.1.0",
54
- "@slickgrid-universal/pagination-component": "10.1.0",
55
- "@slickgrid-universal/utils": "10.1.0",
50
+ "@slickgrid-universal/common": "10.1.1",
51
+ "@slickgrid-universal/custom-footer-component": "10.1.1",
52
+ "@slickgrid-universal/empty-warning-component": "10.1.1",
53
+ "@slickgrid-universal/event-pub-sub": "10.1.1",
54
+ "@slickgrid-universal/pagination-component": "10.1.1",
55
+ "@slickgrid-universal/utils": "10.1.1",
56
56
  "dequal": "^2.0.3",
57
57
  "sortablejs": "^1.15.7"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "vue": ">=3.5.0"
61
61
  },
62
- "gitHead": "a3eee6a849bf67e76161ddef91a18b91a4f4ef1f"
62
+ "gitHead": "3fcfc35958eb2d000e9d31ad4d195ba9cf485b5c"
63
63
  }