@tamagui/slider 1.88.8 → 1.88.9
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 +11 -11
- package/types/Slider.d.ts +96 -48
- package/types/Slider.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/slider",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.9",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,22 +32,22 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/compose-refs": "1.88.
|
|
36
|
-
"@tamagui/constants": "1.88.
|
|
37
|
-
"@tamagui/core": "1.88.
|
|
38
|
-
"@tamagui/create-context": "1.88.
|
|
39
|
-
"@tamagui/get-token": "1.88.
|
|
40
|
-
"@tamagui/helpers": "1.88.
|
|
41
|
-
"@tamagui/stacks": "1.88.
|
|
42
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
43
|
-
"@tamagui/use-direction": "1.88.
|
|
35
|
+
"@tamagui/compose-refs": "1.88.9",
|
|
36
|
+
"@tamagui/constants": "1.88.9",
|
|
37
|
+
"@tamagui/core": "1.88.9",
|
|
38
|
+
"@tamagui/create-context": "1.88.9",
|
|
39
|
+
"@tamagui/get-token": "1.88.9",
|
|
40
|
+
"@tamagui/helpers": "1.88.9",
|
|
41
|
+
"@tamagui/stacks": "1.88.9",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.88.9",
|
|
43
|
+
"@tamagui/use-direction": "1.88.9"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": "*",
|
|
47
47
|
"react-native": "*"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@tamagui/build": "1.88.
|
|
50
|
+
"@tamagui/build": "1.88.9",
|
|
51
51
|
"react": "^18.2.0",
|
|
52
52
|
"react-native": "^0.72.6"
|
|
53
53
|
},
|
package/types/Slider.d.ts
CHANGED
|
@@ -11,9 +11,9 @@ export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
11
11
|
unstyled?: boolean | undefined;
|
|
12
12
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
13
13
|
}, {}>;
|
|
14
|
-
declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
15
|
-
elevation?: number | SizeTokens | undefined;
|
|
14
|
+
declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
16
15
|
size?: SizeTokens | undefined;
|
|
16
|
+
elevation?: number | SizeTokens | undefined;
|
|
17
17
|
fullscreen?: boolean | undefined;
|
|
18
18
|
circular?: boolean | undefined;
|
|
19
19
|
hoverTheme?: boolean | undefined;
|
|
@@ -22,9 +22,9 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
22
22
|
elevate?: boolean | undefined;
|
|
23
23
|
bordered?: number | boolean | undefined;
|
|
24
24
|
unstyled?: boolean | undefined;
|
|
25
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
26
|
-
elevation?: number | SizeTokens | undefined;
|
|
25
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
27
26
|
size?: SizeTokens | undefined;
|
|
27
|
+
elevation?: number | SizeTokens | undefined;
|
|
28
28
|
fullscreen?: boolean | undefined;
|
|
29
29
|
circular?: boolean | undefined;
|
|
30
30
|
hoverTheme?: boolean | undefined;
|
|
@@ -33,9 +33,9 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
33
33
|
elevate?: boolean | undefined;
|
|
34
34
|
bordered?: number | boolean | undefined;
|
|
35
35
|
unstyled?: boolean | undefined;
|
|
36
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
37
|
-
elevation?: number | SizeTokens | undefined;
|
|
36
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
38
37
|
size?: SizeTokens | undefined;
|
|
38
|
+
elevation?: number | SizeTokens | undefined;
|
|
39
39
|
fullscreen?: boolean | undefined;
|
|
40
40
|
circular?: boolean | undefined;
|
|
41
41
|
hoverTheme?: boolean | undefined;
|
|
@@ -44,9 +44,9 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
44
44
|
elevate?: boolean | undefined;
|
|
45
45
|
bordered?: number | boolean | undefined;
|
|
46
46
|
unstyled?: boolean | undefined;
|
|
47
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
48
|
-
elevation?: number | SizeTokens | undefined;
|
|
47
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
49
48
|
size?: SizeTokens | undefined;
|
|
49
|
+
elevation?: number | SizeTokens | undefined;
|
|
50
50
|
fullscreen?: boolean | undefined;
|
|
51
51
|
circular?: boolean | undefined;
|
|
52
52
|
hoverTheme?: boolean | undefined;
|
|
@@ -55,9 +55,9 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
55
55
|
elevate?: boolean | undefined;
|
|
56
56
|
bordered?: number | boolean | undefined;
|
|
57
57
|
unstyled?: boolean | undefined;
|
|
58
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
59
|
-
elevation?: number | SizeTokens | undefined;
|
|
58
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
60
59
|
size?: SizeTokens | undefined;
|
|
60
|
+
elevation?: number | SizeTokens | undefined;
|
|
61
61
|
fullscreen?: boolean | undefined;
|
|
62
62
|
circular?: boolean | undefined;
|
|
63
63
|
hoverTheme?: boolean | undefined;
|
|
@@ -74,27 +74,27 @@ export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComp
|
|
|
74
74
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
75
75
|
}, {}>;
|
|
76
76
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|
|
77
|
-
declare const SliderTrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
77
|
+
declare const SliderTrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
78
78
|
elevation?: number | SizeTokens | undefined;
|
|
79
79
|
size?: any;
|
|
80
80
|
fullscreen?: boolean | undefined;
|
|
81
81
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
82
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
82
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
83
83
|
elevation?: number | SizeTokens | undefined;
|
|
84
84
|
size?: any;
|
|
85
85
|
fullscreen?: boolean | undefined;
|
|
86
86
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
87
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
87
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
88
88
|
elevation?: number | SizeTokens | undefined;
|
|
89
89
|
size?: any;
|
|
90
90
|
fullscreen?: boolean | undefined;
|
|
91
91
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
92
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
93
93
|
elevation?: number | SizeTokens | undefined;
|
|
94
94
|
size?: any;
|
|
95
95
|
fullscreen?: boolean | undefined;
|
|
96
96
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
97
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
97
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
98
98
|
elevation?: number | SizeTokens | undefined;
|
|
99
99
|
size?: any;
|
|
100
100
|
fullscreen?: boolean | undefined;
|
|
@@ -122,7 +122,23 @@ export interface SliderThumbExtraProps {
|
|
|
122
122
|
}
|
|
123
123
|
export interface SliderThumbProps extends SizableStackProps, SliderThumbExtraProps {
|
|
124
124
|
}
|
|
125
|
-
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<import("@tamagui/core").
|
|
125
|
+
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
126
|
+
elevation?: number | SizeTokens | undefined;
|
|
127
|
+
size?: SizeTokens | undefined;
|
|
128
|
+
fullscreen?: boolean | undefined;
|
|
129
|
+
circular?: boolean | undefined;
|
|
130
|
+
hoverTheme?: boolean | undefined;
|
|
131
|
+
pressTheme?: boolean | undefined;
|
|
132
|
+
focusTheme?: boolean | undefined;
|
|
133
|
+
elevate?: boolean | undefined;
|
|
134
|
+
bordered?: number | boolean | undefined;
|
|
135
|
+
unstyled?: boolean | undefined;
|
|
136
|
+
transparent?: boolean | undefined;
|
|
137
|
+
backgrounded?: boolean | undefined;
|
|
138
|
+
radiused?: boolean | undefined;
|
|
139
|
+
padded?: boolean | undefined;
|
|
140
|
+
chromeless?: boolean | "all" | undefined;
|
|
141
|
+
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
126
142
|
elevation?: number | SizeTokens | undefined;
|
|
127
143
|
size?: SizeTokens | undefined;
|
|
128
144
|
fullscreen?: boolean | undefined;
|
|
@@ -140,9 +156,9 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
140
156
|
chromeless?: boolean | "all" | undefined;
|
|
141
157
|
}, {}>>;
|
|
142
158
|
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<TamaguiElement>> & {
|
|
143
|
-
Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
144
|
-
elevation?: number | SizeTokens | undefined;
|
|
159
|
+
Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
145
160
|
size?: SizeTokens | undefined;
|
|
161
|
+
elevation?: number | SizeTokens | undefined;
|
|
146
162
|
fullscreen?: boolean | undefined;
|
|
147
163
|
circular?: boolean | undefined;
|
|
148
164
|
hoverTheme?: boolean | undefined;
|
|
@@ -151,9 +167,9 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
151
167
|
elevate?: boolean | undefined;
|
|
152
168
|
bordered?: number | boolean | undefined;
|
|
153
169
|
unstyled?: boolean | undefined;
|
|
154
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
155
|
-
elevation?: number | SizeTokens | undefined;
|
|
170
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
156
171
|
size?: SizeTokens | undefined;
|
|
172
|
+
elevation?: number | SizeTokens | undefined;
|
|
157
173
|
fullscreen?: boolean | undefined;
|
|
158
174
|
circular?: boolean | undefined;
|
|
159
175
|
hoverTheme?: boolean | undefined;
|
|
@@ -162,9 +178,9 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
162
178
|
elevate?: boolean | undefined;
|
|
163
179
|
bordered?: number | boolean | undefined;
|
|
164
180
|
unstyled?: boolean | undefined;
|
|
165
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
166
|
-
elevation?: number | SizeTokens | undefined;
|
|
181
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
167
182
|
size?: SizeTokens | undefined;
|
|
183
|
+
elevation?: number | SizeTokens | undefined;
|
|
168
184
|
fullscreen?: boolean | undefined;
|
|
169
185
|
circular?: boolean | undefined;
|
|
170
186
|
hoverTheme?: boolean | undefined;
|
|
@@ -173,9 +189,9 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
173
189
|
elevate?: boolean | undefined;
|
|
174
190
|
bordered?: number | boolean | undefined;
|
|
175
191
|
unstyled?: boolean | undefined;
|
|
176
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
177
|
-
elevation?: number | SizeTokens | undefined;
|
|
192
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
178
193
|
size?: SizeTokens | undefined;
|
|
194
|
+
elevation?: number | SizeTokens | undefined;
|
|
179
195
|
fullscreen?: boolean | undefined;
|
|
180
196
|
circular?: boolean | undefined;
|
|
181
197
|
hoverTheme?: boolean | undefined;
|
|
@@ -184,9 +200,9 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
184
200
|
elevate?: boolean | undefined;
|
|
185
201
|
bordered?: number | boolean | undefined;
|
|
186
202
|
unstyled?: boolean | undefined;
|
|
187
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
188
|
-
elevation?: number | SizeTokens | undefined;
|
|
203
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
189
204
|
size?: SizeTokens | undefined;
|
|
205
|
+
elevation?: number | SizeTokens | undefined;
|
|
190
206
|
fullscreen?: boolean | undefined;
|
|
191
207
|
circular?: boolean | undefined;
|
|
192
208
|
hoverTheme?: boolean | undefined;
|
|
@@ -196,33 +212,49 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
196
212
|
bordered?: number | boolean | undefined;
|
|
197
213
|
unstyled?: boolean | undefined;
|
|
198
214
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
199
|
-
TrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
215
|
+
TrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
200
216
|
elevation?: number | SizeTokens | undefined;
|
|
201
217
|
size?: any;
|
|
202
218
|
fullscreen?: boolean | undefined;
|
|
203
219
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
204
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
220
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
205
221
|
elevation?: number | SizeTokens | undefined;
|
|
206
222
|
size?: any;
|
|
207
223
|
fullscreen?: boolean | undefined;
|
|
208
224
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
209
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
225
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
210
226
|
elevation?: number | SizeTokens | undefined;
|
|
211
227
|
size?: any;
|
|
212
228
|
fullscreen?: boolean | undefined;
|
|
213
229
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
214
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
230
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
215
231
|
elevation?: number | SizeTokens | undefined;
|
|
216
232
|
size?: any;
|
|
217
233
|
fullscreen?: boolean | undefined;
|
|
218
234
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
219
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
235
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
220
236
|
elevation?: number | SizeTokens | undefined;
|
|
221
237
|
size?: any;
|
|
222
238
|
fullscreen?: boolean | undefined;
|
|
223
239
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
224
240
|
}>> & React.RefAttributes<View>>;
|
|
225
|
-
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<import("@tamagui/core").
|
|
241
|
+
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
242
|
+
elevation?: number | SizeTokens | undefined;
|
|
243
|
+
size?: SizeTokens | undefined;
|
|
244
|
+
fullscreen?: boolean | undefined;
|
|
245
|
+
circular?: boolean | undefined;
|
|
246
|
+
hoverTheme?: boolean | undefined;
|
|
247
|
+
pressTheme?: boolean | undefined;
|
|
248
|
+
focusTheme?: boolean | undefined;
|
|
249
|
+
elevate?: boolean | undefined;
|
|
250
|
+
bordered?: number | boolean | undefined;
|
|
251
|
+
unstyled?: boolean | undefined;
|
|
252
|
+
transparent?: boolean | undefined;
|
|
253
|
+
backgrounded?: boolean | undefined;
|
|
254
|
+
radiused?: boolean | undefined;
|
|
255
|
+
padded?: boolean | undefined;
|
|
256
|
+
chromeless?: boolean | "all" | undefined;
|
|
257
|
+
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
226
258
|
elevation?: number | SizeTokens | undefined;
|
|
227
259
|
size?: SizeTokens | undefined;
|
|
228
260
|
fullscreen?: boolean | undefined;
|
|
@@ -240,9 +272,9 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
240
272
|
chromeless?: boolean | "all" | undefined;
|
|
241
273
|
}, {}>>;
|
|
242
274
|
};
|
|
243
|
-
declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
244
|
-
elevation?: number | SizeTokens | undefined;
|
|
275
|
+
declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
245
276
|
size?: SizeTokens | undefined;
|
|
277
|
+
elevation?: number | SizeTokens | undefined;
|
|
246
278
|
fullscreen?: boolean | undefined;
|
|
247
279
|
circular?: boolean | undefined;
|
|
248
280
|
hoverTheme?: boolean | undefined;
|
|
@@ -251,9 +283,9 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
251
283
|
elevate?: boolean | undefined;
|
|
252
284
|
bordered?: number | boolean | undefined;
|
|
253
285
|
unstyled?: boolean | undefined;
|
|
254
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
255
|
-
elevation?: number | SizeTokens | undefined;
|
|
286
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
256
287
|
size?: SizeTokens | undefined;
|
|
288
|
+
elevation?: number | SizeTokens | undefined;
|
|
257
289
|
fullscreen?: boolean | undefined;
|
|
258
290
|
circular?: boolean | undefined;
|
|
259
291
|
hoverTheme?: boolean | undefined;
|
|
@@ -262,9 +294,9 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
262
294
|
elevate?: boolean | undefined;
|
|
263
295
|
bordered?: number | boolean | undefined;
|
|
264
296
|
unstyled?: boolean | undefined;
|
|
265
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
266
|
-
elevation?: number | SizeTokens | undefined;
|
|
297
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
267
298
|
size?: SizeTokens | undefined;
|
|
299
|
+
elevation?: number | SizeTokens | undefined;
|
|
268
300
|
fullscreen?: boolean | undefined;
|
|
269
301
|
circular?: boolean | undefined;
|
|
270
302
|
hoverTheme?: boolean | undefined;
|
|
@@ -273,9 +305,9 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
273
305
|
elevate?: boolean | undefined;
|
|
274
306
|
bordered?: number | boolean | undefined;
|
|
275
307
|
unstyled?: boolean | undefined;
|
|
276
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
277
|
-
elevation?: number | SizeTokens | undefined;
|
|
308
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
278
309
|
size?: SizeTokens | undefined;
|
|
310
|
+
elevation?: number | SizeTokens | undefined;
|
|
279
311
|
fullscreen?: boolean | undefined;
|
|
280
312
|
circular?: boolean | undefined;
|
|
281
313
|
hoverTheme?: boolean | undefined;
|
|
@@ -284,9 +316,9 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
284
316
|
elevate?: boolean | undefined;
|
|
285
317
|
bordered?: number | boolean | undefined;
|
|
286
318
|
unstyled?: boolean | undefined;
|
|
287
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
288
|
-
elevation?: number | SizeTokens | undefined;
|
|
319
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
289
320
|
size?: SizeTokens | undefined;
|
|
321
|
+
elevation?: number | SizeTokens | undefined;
|
|
290
322
|
fullscreen?: boolean | undefined;
|
|
291
323
|
circular?: boolean | undefined;
|
|
292
324
|
hoverTheme?: boolean | undefined;
|
|
@@ -296,33 +328,49 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
296
328
|
bordered?: number | boolean | undefined;
|
|
297
329
|
unstyled?: boolean | undefined;
|
|
298
330
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
299
|
-
declare const Range: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
331
|
+
declare const Range: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
300
332
|
elevation?: number | SizeTokens | undefined;
|
|
301
333
|
size?: any;
|
|
302
334
|
fullscreen?: boolean | undefined;
|
|
303
335
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
304
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
336
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
305
337
|
elevation?: number | SizeTokens | undefined;
|
|
306
338
|
size?: any;
|
|
307
339
|
fullscreen?: boolean | undefined;
|
|
308
340
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
309
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
341
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
310
342
|
elevation?: number | SizeTokens | undefined;
|
|
311
343
|
size?: any;
|
|
312
344
|
fullscreen?: boolean | undefined;
|
|
313
345
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
314
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
346
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
315
347
|
elevation?: number | SizeTokens | undefined;
|
|
316
348
|
size?: any;
|
|
317
349
|
fullscreen?: boolean | undefined;
|
|
318
350
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
319
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
351
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
320
352
|
elevation?: number | SizeTokens | undefined;
|
|
321
353
|
size?: any;
|
|
322
354
|
fullscreen?: boolean | undefined;
|
|
323
355
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
324
356
|
}>> & React.RefAttributes<View>>;
|
|
325
|
-
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<import("@tamagui/core").
|
|
357
|
+
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
358
|
+
elevation?: number | SizeTokens | undefined;
|
|
359
|
+
size?: SizeTokens | undefined;
|
|
360
|
+
fullscreen?: boolean | undefined;
|
|
361
|
+
circular?: boolean | undefined;
|
|
362
|
+
hoverTheme?: boolean | undefined;
|
|
363
|
+
pressTheme?: boolean | undefined;
|
|
364
|
+
focusTheme?: boolean | undefined;
|
|
365
|
+
elevate?: boolean | undefined;
|
|
366
|
+
bordered?: number | boolean | undefined;
|
|
367
|
+
unstyled?: boolean | undefined;
|
|
368
|
+
transparent?: boolean | undefined;
|
|
369
|
+
backgrounded?: boolean | undefined;
|
|
370
|
+
radiused?: boolean | undefined;
|
|
371
|
+
padded?: boolean | undefined;
|
|
372
|
+
chromeless?: boolean | "all" | undefined;
|
|
373
|
+
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
326
374
|
elevation?: number | SizeTokens | undefined;
|
|
327
375
|
size?: SizeTokens | undefined;
|
|
328
376
|
fullscreen?: boolean | undefined;
|
package/types/Slider.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../src/Slider.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,QAAQ,EACR,UAAU,EACV,cAAc,EAKf,MAAM,eAAe,CAAA;AAItB,OAAO,EAAE,iBAAiB,EAAkB,MAAM,iBAAiB,CAAA;AAGnE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAwBnC,OAAO,EAIL,WAAW,EACX,gBAAgB,EAEjB,MAAM,SAAS,CAAA;AA2LhB,KAAK,kBAAkB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE5C,eAAO,MAAM,gBAAgB;;;;;;MAmB3B,CAAA;AAEF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAehB,CAAA;AAUD,eAAO,MAAM,sBAAsB;;;;;MAIjC,CAAA;AAEF,KAAK,sBAAsB,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;gCAsCtB,CAAA;AA4BD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;MAwB3B,CAAA;AAEF,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB,EAAE,qBAAqB;CAAG;AAGrF,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../src/Slider.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,QAAQ,EACR,UAAU,EACV,cAAc,EAKf,MAAM,eAAe,CAAA;AAItB,OAAO,EAAE,iBAAiB,EAAkB,MAAM,iBAAiB,CAAA;AAGnE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAwBnC,OAAO,EAIL,WAAW,EACX,gBAAgB,EAEjB,MAAM,SAAS,CAAA;AA2LhB,KAAK,kBAAkB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE5C,eAAO,MAAM,gBAAgB;;;;;;MAmB3B,CAAA;AAEF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAehB,CAAA;AAUD,eAAO,MAAM,sBAAsB;;;;;MAIjC,CAAA;AAEF,KAAK,sBAAsB,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;gCAsCtB,CAAA;AA4BD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;MAwB3B,CAAA;AAEF,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB,EAAE,qBAAqB;CAAG;AAGrF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8FhB,CAAA;AA6JD,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIV,CAAA;AAuCF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAAc,CAAA;AACzB,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;gCAAoB,CAAA;AAC/B,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAc,CAAA;AAEzB,OAAO,EACL,MAAM,EACN,WAAW,EACX,iBAAiB,EACjB,WAAW,EAEX,KAAK,EACL,KAAK,EACL,KAAK,GACN,CAAA;AAED,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,CAAA"}
|