New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tanstack/svelte-table

Package Overview
Dependencies
Maintainers
1
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/svelte-table - npm Package Compare versions

Comparing version 8.0.12 to 8.0.13

90

build/stats-react.json

@@ -14,3 +14,3 @@ {

"name": "table-core/build/esm/index.js",
"uid": "e169-175"
"uid": "75ae-175"
},

@@ -21,15 +21,15 @@ {

{
"uid": "e169-177",
"uid": "75ae-177",
"name": "placeholder.svelte"
},
{
"uid": "e169-179",
"uid": "75ae-179",
"name": "placeholder.ts"
},
{
"uid": "e169-181",
"uid": "75ae-181",
"name": "render-component.ts"
},
{
"uid": "e169-183",
"uid": "75ae-183",
"name": "index.ts"

@@ -47,38 +47,38 @@ }

"nodeParts": {
"e169-175": {
"75ae-175": {
"renderedLength": 139119,
"gzipLength": 23690,
"brotliLength": 0,
"mainUid": "e169-174"
"mainUid": "75ae-174"
},
"e169-177": {
"75ae-177": {
"renderedLength": 927,
"gzipLength": 445,
"brotliLength": 0,
"mainUid": "e169-176"
"mainUid": "75ae-176"
},
"e169-179": {
"75ae-179": {
"renderedLength": 246,
"gzipLength": 184,
"brotliLength": 0,
"mainUid": "e169-178"
"mainUid": "75ae-178"
},
"e169-181": {
"75ae-181": {
"renderedLength": 1458,
"gzipLength": 539,
"brotliLength": 0,
"mainUid": "e169-180"
"mainUid": "75ae-180"
},
"e169-183": {
"75ae-183": {
"renderedLength": 3046,
"gzipLength": 993,
"brotliLength": 0,
"mainUid": "e169-182"
"mainUid": "75ae-182"
}
},
"nodeMetas": {
"e169-174": {
"75ae-174": {
"id": "/packages/table-core/build/esm/index.js",
"moduleParts": {
"index.production.js": "e169-175"
"index.production.js": "75ae-175"
},

@@ -88,14 +88,14 @@ "imported": [],

{
"uid": "e169-182"
"uid": "75ae-182"
}
]
},
"e169-176": {
"75ae-176": {
"id": "/packages/svelte-table/src/placeholder.svelte",
"moduleParts": {
"index.production.js": "e169-177"
"index.production.js": "75ae-177"
},
"imported": [
{
"uid": "e169-184"
"uid": "75ae-184"
}

@@ -105,17 +105,17 @@ ],

{
"uid": "e169-178"
"uid": "75ae-178"
}
]
},
"e169-178": {
"75ae-178": {
"id": "/packages/svelte-table/src/placeholder.ts",
"moduleParts": {
"index.production.js": "e169-179"
"index.production.js": "75ae-179"
},
"imported": [
{
"uid": "e169-184"
"uid": "75ae-184"
},
{
"uid": "e169-176"
"uid": "75ae-176"
}

@@ -125,14 +125,14 @@ ],

{
"uid": "e169-182"
"uid": "75ae-182"
}
]
},
"e169-180": {
"75ae-180": {
"id": "/packages/svelte-table/src/render-component.ts",
"moduleParts": {
"index.production.js": "e169-181"
"index.production.js": "75ae-181"
},
"imported": [
{
"uid": "e169-184"
"uid": "75ae-184"
}

@@ -142,26 +142,26 @@ ],

{
"uid": "e169-182"
"uid": "75ae-182"
}
]
},
"e169-182": {
"75ae-182": {
"id": "/packages/svelte-table/src/index.ts",
"moduleParts": {
"index.production.js": "e169-183"
"index.production.js": "75ae-183"
},
"imported": [
{
"uid": "e169-174"
"uid": "75ae-174"
},
{
"uid": "e169-178"
"uid": "75ae-178"
},
{
"uid": "e169-184"
"uid": "75ae-184"
},
{
"uid": "e169-185"
"uid": "75ae-185"
},
{
"uid": "e169-180"
"uid": "75ae-180"
}

@@ -172,3 +172,3 @@ ],

},
"e169-184": {
"75ae-184": {
"id": "svelte/internal",

@@ -179,12 +179,12 @@ "moduleParts": {},

{
"uid": "e169-182"
"uid": "75ae-182"
},
{
"uid": "e169-178"
"uid": "75ae-178"
},
{
"uid": "e169-180"
"uid": "75ae-180"
},
{
"uid": "e169-176"
"uid": "75ae-176"
}

@@ -194,3 +194,3 @@ ],

},
"e169-185": {
"75ae-185": {
"id": "svelte/store",

@@ -201,3 +201,3 @@ "moduleParts": {},

{
"uid": "e169-182"
"uid": "75ae-182"
}

@@ -204,0 +204,0 @@ ],

@@ -0,7 +1,21 @@

/**
* svelte-table
*
* Copyright (c) TanStack
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
import * as _tanstack_table_core from '@tanstack/table-core';
import { Table, TableGenerics, TableOptions } from '@tanstack/table-core';
export * from '@tanstack/table-core';
import { Readable } from 'svelte/store';
export { renderComponent } from './render-component';
export * from '@tanstack/table-core';
export declare function render(component: any, props: any): any;
export declare const createTable: () => Table<{
declare function renderClient(Comp: any, props: any): any;
declare const renderComponent: typeof renderClient;
declare function render(component: any, props: any): any;
declare const createTable: () => Table<{
Renderer: typeof render;

@@ -11,2 +25,4 @@ Rendered: any;

declare type ReadableOrVal<T> = T | Readable<T>;
export declare function createTableInstance<TGenerics extends TableGenerics>(table: Table<TGenerics>, options: ReadableOrVal<TableOptions<TGenerics>>): Readable<import("@tanstack/table-core").TableInstance<TGenerics>>;
declare function createTableInstance<TGenerics extends TableGenerics>(table: Table<TGenerics>, options: ReadableOrVal<TableOptions<TGenerics>>): Readable<_tanstack_table_core.TableInstance<TGenerics>>;
export { createTable, createTableInstance, render, renderComponent };
{
"name": "@tanstack/svelte-table",
"author": "Tanner Linsley",
"version": "8.0.12",
"version": "8.0.13",
"description": "Headless UI for building powerful tables & datagrids for Svelte.",

@@ -37,3 +37,3 @@ "license": "MIT",

"dependencies": {
"@tanstack/table-core": "8.0.12"
"@tanstack/table-core": "8.0.13"
},

@@ -40,0 +40,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc