@varialkit/slider 0.1.1 → 0.1.3
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/examples.tsx +5 -5
- package/package.json +2 -2
package/examples.tsx
CHANGED
|
@@ -69,7 +69,7 @@ export const stories = {
|
|
|
69
69
|
</div>
|
|
70
70
|
</div>
|
|
71
71
|
),
|
|
72
|
-
code: `import { Slider } from "@
|
|
72
|
+
code: `import { Slider } from "@varialkit/slider";
|
|
73
73
|
|
|
74
74
|
export function Example() {
|
|
75
75
|
return (
|
|
@@ -123,7 +123,7 @@ export function Example() {
|
|
|
123
123
|
</div>
|
|
124
124
|
</div>
|
|
125
125
|
),
|
|
126
|
-
code: `import { Slider } from "@
|
|
126
|
+
code: `import { Slider } from "@varialkit/slider";
|
|
127
127
|
|
|
128
128
|
export function Example() {
|
|
129
129
|
return (
|
|
@@ -177,7 +177,7 @@ export function Example() {
|
|
|
177
177
|
</div>
|
|
178
178
|
</div>
|
|
179
179
|
),
|
|
180
|
-
code: `import { Slider } from "@
|
|
180
|
+
code: `import { Slider } from "@varialkit/slider";
|
|
181
181
|
|
|
182
182
|
export function Example() {
|
|
183
183
|
return (
|
|
@@ -231,7 +231,7 @@ export function Example() {
|
|
|
231
231
|
</div>
|
|
232
232
|
);
|
|
233
233
|
},
|
|
234
|
-
code: `import { Slider } from "@
|
|
234
|
+
code: `import { Slider } from "@varialkit/slider";
|
|
235
235
|
|
|
236
236
|
export function Example() {
|
|
237
237
|
const [rangeValue, setRangeValue] = React.useState([20, 80]);
|
|
@@ -284,7 +284,7 @@ export function Example() {
|
|
|
284
284
|
</div>
|
|
285
285
|
);
|
|
286
286
|
},
|
|
287
|
-
code: `import { Slider } from "@
|
|
287
|
+
code: `import { Slider } from "@varialkit/slider";
|
|
288
288
|
|
|
289
289
|
export function Example() {
|
|
290
290
|
const [value, setValue] = React.useState([20, 80]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varialkit/slider",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"react": "^19.0.0",
|
|
18
18
|
"react-dom": "^19.0.0",
|
|
19
|
-
"@varialkit/tooltip": "0.1.
|
|
19
|
+
"@varialkit/tooltip": "0.1.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/react": "19.0.10",
|