@tamagui/slider 1.15.4 → 1.15.6
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/package.json +10 -10
- package/types/Slider.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/slider",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.6",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.15.
|
|
35
|
-
"@tamagui/core": "1.15.
|
|
36
|
-
"@tamagui/create-context": "1.15.
|
|
37
|
-
"@tamagui/get-size": "1.15.
|
|
38
|
-
"@tamagui/helpers": "1.15.
|
|
39
|
-
"@tamagui/stacks": "1.15.
|
|
40
|
-
"@tamagui/use-controllable-state": "1.15.
|
|
41
|
-
"@tamagui/use-direction": "1.15.
|
|
34
|
+
"@tamagui/compose-refs": "1.15.6",
|
|
35
|
+
"@tamagui/core": "1.15.6",
|
|
36
|
+
"@tamagui/create-context": "1.15.6",
|
|
37
|
+
"@tamagui/get-size": "1.15.6",
|
|
38
|
+
"@tamagui/helpers": "1.15.6",
|
|
39
|
+
"@tamagui/stacks": "1.15.6",
|
|
40
|
+
"@tamagui/use-controllable-state": "1.15.6",
|
|
41
|
+
"@tamagui/use-direction": "1.15.6"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": "*",
|
|
45
45
|
"react-native": "*"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tamagui/build": "1.15.
|
|
48
|
+
"@tamagui/build": "1.15.6",
|
|
49
49
|
"react": "^18.2.0",
|
|
50
50
|
"react-native": "^0.71.4"
|
|
51
51
|
},
|
package/types/Slider.d.ts
CHANGED
|
@@ -59,9 +59,9 @@ export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
59
59
|
readonly orientation?: "vertical" | "horizontal" | undefined;
|
|
60
60
|
} & {
|
|
61
61
|
readonly size?: any;
|
|
62
|
-
} &
|
|
62
|
+
} & {
|
|
63
63
|
[x: string]: undefined;
|
|
64
|
-
}
|
|
64
|
+
}, {
|
|
65
65
|
displayName: string | undefined;
|
|
66
66
|
}>;
|
|
67
67
|
declare const SliderTrack: React.ForwardRefExoticComponent<SliderTrackProps & React.RefAttributes<SliderTrackElement>>;
|
|
@@ -120,9 +120,9 @@ export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComp
|
|
|
120
120
|
readonly orientation?: "vertical" | "horizontal" | undefined;
|
|
121
121
|
} & {
|
|
122
122
|
readonly size?: any;
|
|
123
|
-
} &
|
|
123
|
+
} & {
|
|
124
124
|
[x: string]: undefined;
|
|
125
|
-
}
|
|
125
|
+
}, {
|
|
126
126
|
displayName: string | undefined;
|
|
127
127
|
}>;
|
|
128
128
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|