@tanstack/svelte-table 9.0.0-beta.18 → 9.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/svelte-table",
3
- "version": "9.0.0-beta.18",
3
+ "version": "9.0.0-beta.19",
4
4
  "description": "Headless UI for building powerful tables & datagrids for Svelte.",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -53,7 +53,7 @@
53
53
  ],
54
54
  "dependencies": {
55
55
  "@tanstack/svelte-store": "^0.12.0",
56
- "@tanstack/table-core": "9.0.0-beta.18"
56
+ "@tanstack/table-core": "9.0.0-beta.19"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@sveltejs/package": "^2.5.8",
@@ -99,7 +99,7 @@ table uses ... })`.
99
99
  <script lang="ts">
100
100
  // v8
101
101
  import { writable } from 'svelte/store'
102
- const options = writable({ ... })
102
+ const options = writable({ data, columns })
103
103
  $: $options.state = $state
104
104
  </script>
105
105
  ```