@tamagui/slider 1.88.9 → 1.88.10
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 +21 -117
- 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.10",
|
|
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.10",
|
|
36
|
+
"@tamagui/constants": "1.88.10",
|
|
37
|
+
"@tamagui/core": "1.88.10",
|
|
38
|
+
"@tamagui/create-context": "1.88.10",
|
|
39
|
+
"@tamagui/get-token": "1.88.10",
|
|
40
|
+
"@tamagui/helpers": "1.88.10",
|
|
41
|
+
"@tamagui/stacks": "1.88.10",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.88.10",
|
|
43
|
+
"@tamagui/use-direction": "1.88.10"
|
|
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.10",
|
|
51
51
|
"react": "^18.2.0",
|
|
52
52
|
"react-native": "^0.72.6"
|
|
53
53
|
},
|
package/types/Slider.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ 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, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
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> & {
|
|
15
15
|
size?: SizeTokens | undefined;
|
|
16
16
|
elevation?: number | SizeTokens | undefined;
|
|
17
17
|
fullscreen?: boolean | undefined;
|
|
@@ -22,7 +22,7 @@ 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
|
-
}
|
|
25
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
26
26
|
size?: SizeTokens | undefined;
|
|
27
27
|
elevation?: number | SizeTokens | undefined;
|
|
28
28
|
fullscreen?: boolean | undefined;
|
|
@@ -33,29 +33,7 @@ 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
|
-
}
|
|
37
|
-
size?: SizeTokens | undefined;
|
|
38
|
-
elevation?: number | SizeTokens | undefined;
|
|
39
|
-
fullscreen?: boolean | undefined;
|
|
40
|
-
circular?: boolean | undefined;
|
|
41
|
-
hoverTheme?: boolean | undefined;
|
|
42
|
-
pressTheme?: boolean | undefined;
|
|
43
|
-
focusTheme?: boolean | undefined;
|
|
44
|
-
elevate?: boolean | undefined;
|
|
45
|
-
bordered?: number | boolean | undefined;
|
|
46
|
-
unstyled?: boolean | undefined;
|
|
47
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
48
|
-
size?: SizeTokens | undefined;
|
|
49
|
-
elevation?: number | SizeTokens | undefined;
|
|
50
|
-
fullscreen?: boolean | undefined;
|
|
51
|
-
circular?: boolean | undefined;
|
|
52
|
-
hoverTheme?: boolean | undefined;
|
|
53
|
-
pressTheme?: boolean | undefined;
|
|
54
|
-
focusTheme?: boolean | undefined;
|
|
55
|
-
elevate?: boolean | undefined;
|
|
56
|
-
bordered?: number | boolean | undefined;
|
|
57
|
-
unstyled?: boolean | undefined;
|
|
58
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
36
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
59
37
|
size?: SizeTokens | undefined;
|
|
60
38
|
elevation?: number | SizeTokens | undefined;
|
|
61
39
|
fullscreen?: boolean | undefined;
|
|
@@ -74,27 +52,17 @@ export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComp
|
|
|
74
52
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
75
53
|
}, {}>;
|
|
76
54
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|
|
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
|
-
elevation?: number | SizeTokens | undefined;
|
|
79
|
-
size?: any;
|
|
80
|
-
fullscreen?: boolean | undefined;
|
|
81
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
82
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
55
|
+
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> & {
|
|
83
56
|
elevation?: number | SizeTokens | undefined;
|
|
84
57
|
size?: any;
|
|
85
58
|
fullscreen?: boolean | undefined;
|
|
86
59
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
87
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
60
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
88
61
|
elevation?: number | SizeTokens | undefined;
|
|
89
62
|
size?: any;
|
|
90
63
|
fullscreen?: boolean | undefined;
|
|
91
64
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
-
}
|
|
93
|
-
elevation?: number | SizeTokens | undefined;
|
|
94
|
-
size?: any;
|
|
95
|
-
fullscreen?: boolean | undefined;
|
|
96
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
97
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
65
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
98
66
|
elevation?: number | SizeTokens | undefined;
|
|
99
67
|
size?: any;
|
|
100
68
|
fullscreen?: boolean | undefined;
|
|
@@ -122,7 +90,7 @@ export interface SliderThumbExtraProps {
|
|
|
122
90
|
}
|
|
123
91
|
export interface SliderThumbProps extends SizableStackProps, SliderThumbExtraProps {
|
|
124
92
|
}
|
|
125
|
-
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase
|
|
93
|
+
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
126
94
|
elevation?: number | SizeTokens | undefined;
|
|
127
95
|
size?: SizeTokens | undefined;
|
|
128
96
|
fullscreen?: boolean | undefined;
|
|
@@ -156,29 +124,7 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
156
124
|
chromeless?: boolean | "all" | undefined;
|
|
157
125
|
}, {}>>;
|
|
158
126
|
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<TamaguiElement>> & {
|
|
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 & {
|
|
160
|
-
size?: SizeTokens | undefined;
|
|
161
|
-
elevation?: number | SizeTokens | undefined;
|
|
162
|
-
fullscreen?: boolean | undefined;
|
|
163
|
-
circular?: boolean | undefined;
|
|
164
|
-
hoverTheme?: boolean | undefined;
|
|
165
|
-
pressTheme?: boolean | undefined;
|
|
166
|
-
focusTheme?: boolean | undefined;
|
|
167
|
-
elevate?: boolean | undefined;
|
|
168
|
-
bordered?: number | boolean | undefined;
|
|
169
|
-
unstyled?: boolean | undefined;
|
|
170
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
171
|
-
size?: SizeTokens | undefined;
|
|
172
|
-
elevation?: number | SizeTokens | undefined;
|
|
173
|
-
fullscreen?: boolean | undefined;
|
|
174
|
-
circular?: boolean | undefined;
|
|
175
|
-
hoverTheme?: boolean | undefined;
|
|
176
|
-
pressTheme?: boolean | undefined;
|
|
177
|
-
focusTheme?: boolean | undefined;
|
|
178
|
-
elevate?: boolean | undefined;
|
|
179
|
-
bordered?: number | boolean | undefined;
|
|
180
|
-
unstyled?: boolean | undefined;
|
|
181
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
127
|
+
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> & {
|
|
182
128
|
size?: SizeTokens | undefined;
|
|
183
129
|
elevation?: number | SizeTokens | undefined;
|
|
184
130
|
fullscreen?: boolean | undefined;
|
|
@@ -189,7 +135,7 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
189
135
|
elevate?: boolean | undefined;
|
|
190
136
|
bordered?: number | boolean | undefined;
|
|
191
137
|
unstyled?: boolean | undefined;
|
|
192
|
-
}
|
|
138
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
193
139
|
size?: SizeTokens | undefined;
|
|
194
140
|
elevation?: number | SizeTokens | undefined;
|
|
195
141
|
fullscreen?: boolean | undefined;
|
|
@@ -200,7 +146,7 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
200
146
|
elevate?: boolean | undefined;
|
|
201
147
|
bordered?: number | boolean | undefined;
|
|
202
148
|
unstyled?: boolean | undefined;
|
|
203
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
149
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
204
150
|
size?: SizeTokens | undefined;
|
|
205
151
|
elevation?: number | SizeTokens | undefined;
|
|
206
152
|
fullscreen?: boolean | undefined;
|
|
@@ -212,33 +158,23 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
212
158
|
bordered?: number | boolean | undefined;
|
|
213
159
|
unstyled?: boolean | undefined;
|
|
214
160
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
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 & {
|
|
161
|
+
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> & {
|
|
216
162
|
elevation?: number | SizeTokens | undefined;
|
|
217
163
|
size?: any;
|
|
218
164
|
fullscreen?: boolean | undefined;
|
|
219
165
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
220
|
-
}
|
|
166
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
221
167
|
elevation?: number | SizeTokens | undefined;
|
|
222
168
|
size?: any;
|
|
223
169
|
fullscreen?: boolean | undefined;
|
|
224
170
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
225
|
-
}
|
|
226
|
-
elevation?: number | SizeTokens | undefined;
|
|
227
|
-
size?: any;
|
|
228
|
-
fullscreen?: boolean | undefined;
|
|
229
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
230
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
231
|
-
elevation?: number | SizeTokens | undefined;
|
|
232
|
-
size?: any;
|
|
233
|
-
fullscreen?: boolean | undefined;
|
|
234
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
235
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
171
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
236
172
|
elevation?: number | SizeTokens | undefined;
|
|
237
173
|
size?: any;
|
|
238
174
|
fullscreen?: boolean | undefined;
|
|
239
175
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
240
176
|
}>> & React.RefAttributes<View>>;
|
|
241
|
-
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase
|
|
177
|
+
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
242
178
|
elevation?: number | SizeTokens | undefined;
|
|
243
179
|
size?: SizeTokens | undefined;
|
|
244
180
|
fullscreen?: boolean | undefined;
|
|
@@ -272,18 +208,7 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
272
208
|
chromeless?: boolean | "all" | undefined;
|
|
273
209
|
}, {}>>;
|
|
274
210
|
};
|
|
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 & {
|
|
276
|
-
size?: SizeTokens | undefined;
|
|
277
|
-
elevation?: number | SizeTokens | undefined;
|
|
278
|
-
fullscreen?: boolean | undefined;
|
|
279
|
-
circular?: boolean | undefined;
|
|
280
|
-
hoverTheme?: boolean | undefined;
|
|
281
|
-
pressTheme?: boolean | undefined;
|
|
282
|
-
focusTheme?: boolean | undefined;
|
|
283
|
-
elevate?: boolean | undefined;
|
|
284
|
-
bordered?: number | boolean | undefined;
|
|
285
|
-
unstyled?: boolean | undefined;
|
|
286
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
211
|
+
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> & {
|
|
287
212
|
size?: SizeTokens | undefined;
|
|
288
213
|
elevation?: number | SizeTokens | undefined;
|
|
289
214
|
fullscreen?: boolean | undefined;
|
|
@@ -294,7 +219,7 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
294
219
|
elevate?: boolean | undefined;
|
|
295
220
|
bordered?: number | boolean | undefined;
|
|
296
221
|
unstyled?: boolean | undefined;
|
|
297
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
222
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
298
223
|
size?: SizeTokens | undefined;
|
|
299
224
|
elevation?: number | SizeTokens | undefined;
|
|
300
225
|
fullscreen?: boolean | undefined;
|
|
@@ -305,18 +230,7 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
305
230
|
elevate?: boolean | undefined;
|
|
306
231
|
bordered?: number | boolean | undefined;
|
|
307
232
|
unstyled?: boolean | undefined;
|
|
308
|
-
}
|
|
309
|
-
size?: SizeTokens | undefined;
|
|
310
|
-
elevation?: number | SizeTokens | undefined;
|
|
311
|
-
fullscreen?: boolean | undefined;
|
|
312
|
-
circular?: boolean | undefined;
|
|
313
|
-
hoverTheme?: boolean | undefined;
|
|
314
|
-
pressTheme?: boolean | undefined;
|
|
315
|
-
focusTheme?: boolean | undefined;
|
|
316
|
-
elevate?: boolean | undefined;
|
|
317
|
-
bordered?: number | boolean | undefined;
|
|
318
|
-
unstyled?: boolean | undefined;
|
|
319
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
233
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
320
234
|
size?: SizeTokens | undefined;
|
|
321
235
|
elevation?: number | SizeTokens | undefined;
|
|
322
236
|
fullscreen?: boolean | undefined;
|
|
@@ -328,33 +242,23 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
328
242
|
bordered?: number | boolean | undefined;
|
|
329
243
|
unstyled?: boolean | undefined;
|
|
330
244
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
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 & {
|
|
332
|
-
elevation?: number | SizeTokens | undefined;
|
|
333
|
-
size?: any;
|
|
334
|
-
fullscreen?: boolean | undefined;
|
|
335
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
336
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
337
|
-
elevation?: number | SizeTokens | undefined;
|
|
338
|
-
size?: any;
|
|
339
|
-
fullscreen?: boolean | undefined;
|
|
340
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
341
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
245
|
+
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> & {
|
|
342
246
|
elevation?: number | SizeTokens | undefined;
|
|
343
247
|
size?: any;
|
|
344
248
|
fullscreen?: boolean | undefined;
|
|
345
249
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
346
|
-
}
|
|
250
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
347
251
|
elevation?: number | SizeTokens | undefined;
|
|
348
252
|
size?: any;
|
|
349
253
|
fullscreen?: boolean | undefined;
|
|
350
254
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
351
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
255
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
352
256
|
elevation?: number | SizeTokens | undefined;
|
|
353
257
|
size?: any;
|
|
354
258
|
fullscreen?: boolean | undefined;
|
|
355
259
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
356
260
|
}>> & React.RefAttributes<View>>;
|
|
357
|
-
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase
|
|
261
|
+
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
358
262
|
elevation?: number | SizeTokens | undefined;
|
|
359
263
|
size?: SizeTokens | undefined;
|
|
360
264
|
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
|
|
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"}
|