svelte2tsx
Advanced tools
Comparing version 0.1.175 to 0.1.176
{ | ||
"name": "svelte2tsx", | ||
"version": "0.1.175", | ||
"version": "0.1.176", | ||
"description": "Convert Svelte components to TSX for type checking", | ||
@@ -35,3 +35,3 @@ "author": "David Pershouse", | ||
"source-map-support": "^0.5.16", | ||
"svelte": "~3.32.1", | ||
"svelte": "~3.35.0", | ||
"tiny-glob": "^0.2.6", | ||
@@ -38,0 +38,0 @@ "tslib": "^1.10.0", |
@@ -26,3 +26,2 @@ # svelte2tsx | ||
<h1>hello {world}</h1> | ||
``` | ||
@@ -29,0 +28,0 @@ |
@@ -31,4 +31,5 @@ /// <reference lib="dom" /> | ||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
interface IntrinsicAttributes {} | ||
interface IntrinsicAttributes { | ||
slot?: string; | ||
} | ||
@@ -956,2 +957,3 @@ // TypeScript SVGElement has no `dataset` (Chrome 55+, Firefox 51+). | ||
sveltebody: HTMLProps<HTMLElement>; | ||
sveltefragment: { slot?: string; }; | ||
@@ -958,0 +960,0 @@ [name: string]: { [name: string]: any }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
345620
52