radial-progress-svelte
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -11,2 +11,3 @@ import { SvelteComponent } from "svelte"; | ||
backgroundColor?: string; | ||
size?: number | undefined; | ||
}; | ||
@@ -13,0 +14,0 @@ events: { |
{ | ||
"name": "radial-progress-svelte", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "dev": "vite dev", |
@@ -25,2 +25,3 @@ <h1 align="center">🤗 Svelte Radial Progress</h1> | ||
const thickness = 30; | ||
const size = 200; | ||
const data = [ | ||
@@ -35,3 +36,3 @@ { value: 40, color: '#2B2EFF' }, | ||
<RadialProgress {data} {maxTotalSize} {thickness}> | ||
<RadialProgress {data} {maxTotalSize} {thickness} {size}> | ||
<div>{totalProgress} / {maxTotalSize}</div> | ||
@@ -38,0 +39,0 @@ </RadialProgress> |
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
7948
30
111