@tanstack/svelte-table 8.19.2 → 9.0.0-alpha.10

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.
@@ -1,5 +0,0 @@
1
- <script>
2
- export let content
3
- </script>
4
-
5
- {content}
@@ -1,15 +0,0 @@
1
- import type { SvelteComponentDev } from 'svelte/internal'
2
- import { create_ssr_component, escape } from 'svelte/internal'
3
- import PlaceholderClient from './placeholder.svelte'
4
-
5
- type X = typeof PlaceholderClient
6
-
7
- const PlaceholderServer = create_ssr_component(
8
- ($$result: any, $$props: any, $$bindings: any, slots: any) => {
9
- return `${escape($$props.content)}`
10
- }
11
- ) as any as typeof SvelteComponentDev
12
-
13
- export default typeof document === 'undefined'
14
- ? PlaceholderServer
15
- : PlaceholderClient