@tamagui/slider 1.89.20 → 1.89.22
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 +168 -6
- package/types/Slider.d.ts.map +1 -1
- package/types/SliderImpl.d.ts +6 -0
- package/types/SliderImpl.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/slider",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.22",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,22 +32,22 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/compose-refs": "1.89.
|
|
36
|
-
"@tamagui/constants": "1.89.
|
|
37
|
-
"@tamagui/core": "1.89.
|
|
38
|
-
"@tamagui/create-context": "1.89.
|
|
39
|
-
"@tamagui/get-token": "1.89.
|
|
40
|
-
"@tamagui/helpers": "1.89.
|
|
41
|
-
"@tamagui/stacks": "1.89.
|
|
42
|
-
"@tamagui/use-controllable-state": "1.89.
|
|
43
|
-
"@tamagui/use-direction": "1.89.
|
|
35
|
+
"@tamagui/compose-refs": "1.89.22",
|
|
36
|
+
"@tamagui/constants": "1.89.22",
|
|
37
|
+
"@tamagui/core": "1.89.22",
|
|
38
|
+
"@tamagui/create-context": "1.89.22",
|
|
39
|
+
"@tamagui/get-token": "1.89.22",
|
|
40
|
+
"@tamagui/helpers": "1.89.22",
|
|
41
|
+
"@tamagui/stacks": "1.89.22",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.89.22",
|
|
43
|
+
"@tamagui/use-direction": "1.89.22"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": "*",
|
|
47
47
|
"react-native": "*"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@tamagui/build": "1.89.
|
|
50
|
+
"@tamagui/build": "1.89.22",
|
|
51
51
|
"react": "^18.2.0",
|
|
52
52
|
"react-native": "^0.72.6"
|
|
53
53
|
},
|
package/types/Slider.d.ts
CHANGED
|
@@ -8,14 +8,26 @@ export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
8
8
|
elevation?: number | SizeTokens | undefined;
|
|
9
9
|
size?: any;
|
|
10
10
|
fullscreen?: boolean | undefined;
|
|
11
|
+
inset?: number | SizeTokens | {
|
|
12
|
+
top?: number | undefined;
|
|
13
|
+
bottom?: number | undefined;
|
|
14
|
+
left?: number | undefined;
|
|
15
|
+
right?: number | undefined;
|
|
16
|
+
} | undefined;
|
|
11
17
|
unstyled?: boolean | undefined;
|
|
12
18
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
13
19
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
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> & {
|
|
20
|
+
declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "inset" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
15
21
|
size?: SizeTokens | undefined;
|
|
16
22
|
elevation?: number | SizeTokens | undefined;
|
|
17
23
|
fullscreen?: boolean | undefined;
|
|
18
24
|
circular?: boolean | undefined;
|
|
25
|
+
inset?: number | SizeTokens | {
|
|
26
|
+
top?: number | undefined;
|
|
27
|
+
bottom?: number | undefined;
|
|
28
|
+
left?: number | undefined;
|
|
29
|
+
right?: number | undefined;
|
|
30
|
+
} | undefined;
|
|
19
31
|
hoverTheme?: boolean | undefined;
|
|
20
32
|
pressTheme?: boolean | undefined;
|
|
21
33
|
focusTheme?: boolean | undefined;
|
|
@@ -27,6 +39,12 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
27
39
|
elevation?: number | SizeTokens | undefined;
|
|
28
40
|
fullscreen?: boolean | undefined;
|
|
29
41
|
circular?: boolean | undefined;
|
|
42
|
+
inset?: number | SizeTokens | {
|
|
43
|
+
top?: number | undefined;
|
|
44
|
+
bottom?: number | undefined;
|
|
45
|
+
left?: number | undefined;
|
|
46
|
+
right?: number | undefined;
|
|
47
|
+
} | undefined;
|
|
30
48
|
hoverTheme?: boolean | undefined;
|
|
31
49
|
pressTheme?: boolean | undefined;
|
|
32
50
|
focusTheme?: boolean | undefined;
|
|
@@ -38,6 +56,12 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
38
56
|
elevation?: number | SizeTokens | undefined;
|
|
39
57
|
fullscreen?: boolean | undefined;
|
|
40
58
|
circular?: boolean | undefined;
|
|
59
|
+
inset?: number | SizeTokens | {
|
|
60
|
+
top?: number | undefined;
|
|
61
|
+
bottom?: number | undefined;
|
|
62
|
+
left?: number | undefined;
|
|
63
|
+
right?: number | undefined;
|
|
64
|
+
} | undefined;
|
|
41
65
|
hoverTheme?: boolean | undefined;
|
|
42
66
|
pressTheme?: boolean | undefined;
|
|
43
67
|
focusTheme?: boolean | undefined;
|
|
@@ -49,23 +73,47 @@ export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComp
|
|
|
49
73
|
elevation?: number | SizeTokens | undefined;
|
|
50
74
|
size?: any;
|
|
51
75
|
fullscreen?: boolean | undefined;
|
|
76
|
+
inset?: number | SizeTokens | {
|
|
77
|
+
top?: number | undefined;
|
|
78
|
+
bottom?: number | undefined;
|
|
79
|
+
left?: number | undefined;
|
|
80
|
+
right?: number | undefined;
|
|
81
|
+
} | undefined;
|
|
52
82
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
53
83
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
54
84
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|
|
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> & {
|
|
85
|
+
declare const SliderTrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "inset" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
56
86
|
elevation?: number | SizeTokens | undefined;
|
|
57
87
|
size?: any;
|
|
58
88
|
fullscreen?: boolean | undefined;
|
|
89
|
+
inset?: number | SizeTokens | {
|
|
90
|
+
top?: number | undefined;
|
|
91
|
+
bottom?: number | undefined;
|
|
92
|
+
left?: number | undefined;
|
|
93
|
+
right?: number | undefined;
|
|
94
|
+
} | undefined;
|
|
59
95
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
60
96
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
61
97
|
elevation?: number | SizeTokens | undefined;
|
|
62
98
|
size?: any;
|
|
63
99
|
fullscreen?: boolean | undefined;
|
|
100
|
+
inset?: number | SizeTokens | {
|
|
101
|
+
top?: number | undefined;
|
|
102
|
+
bottom?: number | undefined;
|
|
103
|
+
left?: number | undefined;
|
|
104
|
+
right?: number | undefined;
|
|
105
|
+
} | undefined;
|
|
64
106
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
65
107
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
66
108
|
elevation?: number | SizeTokens | undefined;
|
|
67
109
|
size?: any;
|
|
68
110
|
fullscreen?: boolean | undefined;
|
|
111
|
+
inset?: number | SizeTokens | {
|
|
112
|
+
top?: number | undefined;
|
|
113
|
+
bottom?: number | undefined;
|
|
114
|
+
left?: number | undefined;
|
|
115
|
+
right?: number | undefined;
|
|
116
|
+
} | undefined;
|
|
69
117
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
70
118
|
}>> & React.RefAttributes<View>>;
|
|
71
119
|
export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -73,6 +121,12 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
73
121
|
size?: SizeTokens | undefined;
|
|
74
122
|
fullscreen?: boolean | undefined;
|
|
75
123
|
circular?: boolean | undefined;
|
|
124
|
+
inset?: number | SizeTokens | {
|
|
125
|
+
top?: number | undefined;
|
|
126
|
+
bottom?: number | undefined;
|
|
127
|
+
left?: number | undefined;
|
|
128
|
+
right?: number | undefined;
|
|
129
|
+
} | undefined;
|
|
76
130
|
hoverTheme?: boolean | undefined;
|
|
77
131
|
pressTheme?: boolean | undefined;
|
|
78
132
|
focusTheme?: boolean | undefined;
|
|
@@ -95,6 +149,12 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
95
149
|
size?: SizeTokens | undefined;
|
|
96
150
|
fullscreen?: boolean | undefined;
|
|
97
151
|
circular?: boolean | undefined;
|
|
152
|
+
inset?: number | SizeTokens | {
|
|
153
|
+
top?: number | undefined;
|
|
154
|
+
bottom?: number | undefined;
|
|
155
|
+
left?: number | undefined;
|
|
156
|
+
right?: number | undefined;
|
|
157
|
+
} | undefined;
|
|
98
158
|
hoverTheme?: boolean | undefined;
|
|
99
159
|
pressTheme?: boolean | undefined;
|
|
100
160
|
focusTheme?: boolean | undefined;
|
|
@@ -111,6 +171,12 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
111
171
|
size?: SizeTokens | undefined;
|
|
112
172
|
fullscreen?: boolean | undefined;
|
|
113
173
|
circular?: boolean | undefined;
|
|
174
|
+
inset?: number | SizeTokens | {
|
|
175
|
+
top?: number | undefined;
|
|
176
|
+
bottom?: number | undefined;
|
|
177
|
+
left?: number | undefined;
|
|
178
|
+
right?: number | undefined;
|
|
179
|
+
} | undefined;
|
|
114
180
|
hoverTheme?: boolean | undefined;
|
|
115
181
|
pressTheme?: boolean | undefined;
|
|
116
182
|
focusTheme?: boolean | undefined;
|
|
@@ -124,11 +190,17 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
124
190
|
chromeless?: boolean | "all" | undefined;
|
|
125
191
|
}, import("@tamagui/core").StaticConfigPublic>>;
|
|
126
192
|
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<TamaguiElement>> & {
|
|
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> & {
|
|
193
|
+
Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "inset" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
128
194
|
size?: SizeTokens | undefined;
|
|
129
195
|
elevation?: number | SizeTokens | undefined;
|
|
130
196
|
fullscreen?: boolean | undefined;
|
|
131
197
|
circular?: boolean | undefined;
|
|
198
|
+
inset?: number | SizeTokens | {
|
|
199
|
+
top?: number | undefined;
|
|
200
|
+
bottom?: number | undefined;
|
|
201
|
+
left?: number | undefined;
|
|
202
|
+
right?: number | undefined;
|
|
203
|
+
} | undefined;
|
|
132
204
|
hoverTheme?: boolean | undefined;
|
|
133
205
|
pressTheme?: boolean | undefined;
|
|
134
206
|
focusTheme?: boolean | undefined;
|
|
@@ -140,6 +212,12 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
140
212
|
elevation?: number | SizeTokens | undefined;
|
|
141
213
|
fullscreen?: boolean | undefined;
|
|
142
214
|
circular?: boolean | undefined;
|
|
215
|
+
inset?: number | SizeTokens | {
|
|
216
|
+
top?: number | undefined;
|
|
217
|
+
bottom?: number | undefined;
|
|
218
|
+
left?: number | undefined;
|
|
219
|
+
right?: number | undefined;
|
|
220
|
+
} | undefined;
|
|
143
221
|
hoverTheme?: boolean | undefined;
|
|
144
222
|
pressTheme?: boolean | undefined;
|
|
145
223
|
focusTheme?: boolean | undefined;
|
|
@@ -151,6 +229,12 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
151
229
|
elevation?: number | SizeTokens | undefined;
|
|
152
230
|
fullscreen?: boolean | undefined;
|
|
153
231
|
circular?: boolean | undefined;
|
|
232
|
+
inset?: number | SizeTokens | {
|
|
233
|
+
top?: number | undefined;
|
|
234
|
+
bottom?: number | undefined;
|
|
235
|
+
left?: number | undefined;
|
|
236
|
+
right?: number | undefined;
|
|
237
|
+
} | undefined;
|
|
154
238
|
hoverTheme?: boolean | undefined;
|
|
155
239
|
pressTheme?: boolean | undefined;
|
|
156
240
|
focusTheme?: boolean | undefined;
|
|
@@ -158,20 +242,38 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
158
242
|
bordered?: number | boolean | undefined;
|
|
159
243
|
unstyled?: boolean | undefined;
|
|
160
244
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
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> & {
|
|
245
|
+
TrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "inset" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
162
246
|
elevation?: number | SizeTokens | undefined;
|
|
163
247
|
size?: any;
|
|
164
248
|
fullscreen?: boolean | undefined;
|
|
249
|
+
inset?: number | SizeTokens | {
|
|
250
|
+
top?: number | undefined;
|
|
251
|
+
bottom?: number | undefined;
|
|
252
|
+
left?: number | undefined;
|
|
253
|
+
right?: number | undefined;
|
|
254
|
+
} | undefined;
|
|
165
255
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
166
256
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
167
257
|
elevation?: number | SizeTokens | undefined;
|
|
168
258
|
size?: any;
|
|
169
259
|
fullscreen?: boolean | undefined;
|
|
260
|
+
inset?: number | SizeTokens | {
|
|
261
|
+
top?: number | undefined;
|
|
262
|
+
bottom?: number | undefined;
|
|
263
|
+
left?: number | undefined;
|
|
264
|
+
right?: number | undefined;
|
|
265
|
+
} | undefined;
|
|
170
266
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
171
267
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
172
268
|
elevation?: number | SizeTokens | undefined;
|
|
173
269
|
size?: any;
|
|
174
270
|
fullscreen?: boolean | undefined;
|
|
271
|
+
inset?: number | SizeTokens | {
|
|
272
|
+
top?: number | undefined;
|
|
273
|
+
bottom?: number | undefined;
|
|
274
|
+
left?: number | undefined;
|
|
275
|
+
right?: number | undefined;
|
|
276
|
+
} | undefined;
|
|
175
277
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
176
278
|
}>> & React.RefAttributes<View>>;
|
|
177
279
|
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -179,6 +281,12 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
179
281
|
size?: SizeTokens | undefined;
|
|
180
282
|
fullscreen?: boolean | undefined;
|
|
181
283
|
circular?: boolean | undefined;
|
|
284
|
+
inset?: number | SizeTokens | {
|
|
285
|
+
top?: number | undefined;
|
|
286
|
+
bottom?: number | undefined;
|
|
287
|
+
left?: number | undefined;
|
|
288
|
+
right?: number | undefined;
|
|
289
|
+
} | undefined;
|
|
182
290
|
hoverTheme?: boolean | undefined;
|
|
183
291
|
pressTheme?: boolean | undefined;
|
|
184
292
|
focusTheme?: boolean | undefined;
|
|
@@ -195,6 +303,12 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
195
303
|
size?: SizeTokens | undefined;
|
|
196
304
|
fullscreen?: boolean | undefined;
|
|
197
305
|
circular?: boolean | undefined;
|
|
306
|
+
inset?: number | SizeTokens | {
|
|
307
|
+
top?: number | undefined;
|
|
308
|
+
bottom?: number | undefined;
|
|
309
|
+
left?: number | undefined;
|
|
310
|
+
right?: number | undefined;
|
|
311
|
+
} | undefined;
|
|
198
312
|
hoverTheme?: boolean | undefined;
|
|
199
313
|
pressTheme?: boolean | undefined;
|
|
200
314
|
focusTheme?: boolean | undefined;
|
|
@@ -208,11 +322,17 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
208
322
|
chromeless?: boolean | "all" | undefined;
|
|
209
323
|
}, import("@tamagui/core").StaticConfigPublic>>;
|
|
210
324
|
};
|
|
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> & {
|
|
325
|
+
declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "circular" | "inset" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
212
326
|
size?: SizeTokens | undefined;
|
|
213
327
|
elevation?: number | SizeTokens | undefined;
|
|
214
328
|
fullscreen?: boolean | undefined;
|
|
215
329
|
circular?: boolean | undefined;
|
|
330
|
+
inset?: number | SizeTokens | {
|
|
331
|
+
top?: number | undefined;
|
|
332
|
+
bottom?: number | undefined;
|
|
333
|
+
left?: number | undefined;
|
|
334
|
+
right?: number | undefined;
|
|
335
|
+
} | undefined;
|
|
216
336
|
hoverTheme?: boolean | undefined;
|
|
217
337
|
pressTheme?: boolean | undefined;
|
|
218
338
|
focusTheme?: boolean | undefined;
|
|
@@ -224,6 +344,12 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
224
344
|
elevation?: number | SizeTokens | undefined;
|
|
225
345
|
fullscreen?: boolean | undefined;
|
|
226
346
|
circular?: boolean | undefined;
|
|
347
|
+
inset?: number | SizeTokens | {
|
|
348
|
+
top?: number | undefined;
|
|
349
|
+
bottom?: number | undefined;
|
|
350
|
+
left?: number | undefined;
|
|
351
|
+
right?: number | undefined;
|
|
352
|
+
} | undefined;
|
|
227
353
|
hoverTheme?: boolean | undefined;
|
|
228
354
|
pressTheme?: boolean | undefined;
|
|
229
355
|
focusTheme?: boolean | undefined;
|
|
@@ -235,6 +361,12 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
235
361
|
elevation?: number | SizeTokens | undefined;
|
|
236
362
|
fullscreen?: boolean | undefined;
|
|
237
363
|
circular?: boolean | undefined;
|
|
364
|
+
inset?: number | SizeTokens | {
|
|
365
|
+
top?: number | undefined;
|
|
366
|
+
bottom?: number | undefined;
|
|
367
|
+
left?: number | undefined;
|
|
368
|
+
right?: number | undefined;
|
|
369
|
+
} | undefined;
|
|
238
370
|
hoverTheme?: boolean | undefined;
|
|
239
371
|
pressTheme?: boolean | undefined;
|
|
240
372
|
focusTheme?: boolean | undefined;
|
|
@@ -242,20 +374,38 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
242
374
|
bordered?: number | boolean | undefined;
|
|
243
375
|
unstyled?: boolean | undefined;
|
|
244
376
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
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> & {
|
|
377
|
+
declare const Range: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "inset" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
246
378
|
elevation?: number | SizeTokens | undefined;
|
|
247
379
|
size?: any;
|
|
248
380
|
fullscreen?: boolean | undefined;
|
|
381
|
+
inset?: number | SizeTokens | {
|
|
382
|
+
top?: number | undefined;
|
|
383
|
+
bottom?: number | undefined;
|
|
384
|
+
left?: number | undefined;
|
|
385
|
+
right?: number | undefined;
|
|
386
|
+
} | undefined;
|
|
249
387
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
250
388
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
251
389
|
elevation?: number | SizeTokens | undefined;
|
|
252
390
|
size?: any;
|
|
253
391
|
fullscreen?: boolean | undefined;
|
|
392
|
+
inset?: number | SizeTokens | {
|
|
393
|
+
top?: number | undefined;
|
|
394
|
+
bottom?: number | undefined;
|
|
395
|
+
left?: number | undefined;
|
|
396
|
+
right?: number | undefined;
|
|
397
|
+
} | undefined;
|
|
254
398
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
255
399
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
256
400
|
elevation?: number | SizeTokens | undefined;
|
|
257
401
|
size?: any;
|
|
258
402
|
fullscreen?: boolean | undefined;
|
|
403
|
+
inset?: number | SizeTokens | {
|
|
404
|
+
top?: number | undefined;
|
|
405
|
+
bottom?: number | undefined;
|
|
406
|
+
left?: number | undefined;
|
|
407
|
+
right?: number | undefined;
|
|
408
|
+
} | undefined;
|
|
259
409
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
260
410
|
}>> & React.RefAttributes<View>>;
|
|
261
411
|
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -263,6 +413,12 @@ declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiCo
|
|
|
263
413
|
size?: SizeTokens | undefined;
|
|
264
414
|
fullscreen?: boolean | undefined;
|
|
265
415
|
circular?: boolean | undefined;
|
|
416
|
+
inset?: number | SizeTokens | {
|
|
417
|
+
top?: number | undefined;
|
|
418
|
+
bottom?: number | undefined;
|
|
419
|
+
left?: number | undefined;
|
|
420
|
+
right?: number | undefined;
|
|
421
|
+
} | undefined;
|
|
266
422
|
hoverTheme?: boolean | undefined;
|
|
267
423
|
pressTheme?: boolean | undefined;
|
|
268
424
|
focusTheme?: boolean | undefined;
|
|
@@ -279,6 +435,12 @@ declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiCo
|
|
|
279
435
|
size?: SizeTokens | undefined;
|
|
280
436
|
fullscreen?: boolean | undefined;
|
|
281
437
|
circular?: boolean | undefined;
|
|
438
|
+
inset?: number | SizeTokens | {
|
|
439
|
+
top?: number | undefined;
|
|
440
|
+
bottom?: number | undefined;
|
|
441
|
+
left?: number | undefined;
|
|
442
|
+
right?: number | undefined;
|
|
443
|
+
} | undefined;
|
|
282
444
|
hoverTheme?: boolean | undefined;
|
|
283
445
|
pressTheme?: boolean | undefined;
|
|
284
446
|
focusTheme?: 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,KAAK,EAEV,QAAQ,EACR,UAAU,EACV,cAAc,EACf,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAIxD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAwBxC,OAAO,KAAK,EAIV,WAAW,EACX,gBAAgB,EAEjB,MAAM,SAAS,CAAA;AA2LhB,KAAK,kBAAkB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE5C,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../src/Slider.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAEV,QAAQ,EACR,UAAU,EACV,cAAc,EACf,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAIxD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAwBxC,OAAO,KAAK,EAIV,WAAW,EACX,gBAAgB,EAEjB,MAAM,SAAS,CAAA;AA2LhB,KAAK,kBAAkB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE5C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;8CAmB3B,CAAA;AAEF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAehB,CAAA;AAUD,eAAO,MAAM,sBAAsB;;;;;;;;;;;8CAIjC,CAAA;AAEF,KAAK,sBAAsB,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAsCtB,CAAA;AA4BD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;8CAwB3B,CAAA;AAEF,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB,EAAE,qBAAqB;CAAG;AAGrF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+CA8FhB,CAAA;AA6JD,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIV,CAAA;AAuCF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAAc,CAAA;AACzB,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAAoB,CAAA;AAC/B,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+CAAc,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"}
|
package/types/SliderImpl.d.ts
CHANGED
|
@@ -6,6 +6,12 @@ export declare const SliderFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
6
6
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
7
7
|
size?: any;
|
|
8
8
|
fullscreen?: boolean | undefined;
|
|
9
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
10
|
+
top?: number | undefined;
|
|
11
|
+
bottom?: number | undefined;
|
|
12
|
+
left?: number | undefined;
|
|
13
|
+
right?: number | undefined;
|
|
14
|
+
} | undefined;
|
|
9
15
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
10
16
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
11
17
|
export declare const SliderImpl: React.ForwardRefExoticComponent<SliderImplProps & React.RefAttributes<View>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SliderImpl.d.ts","sourceRoot":"","sources":["../src/SliderImpl.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAKnD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAGxC,OAAO,KAAK,EAAe,eAAe,EAAE,MAAM,SAAS,CAAA;AAE3D,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"SliderImpl.d.ts","sourceRoot":"","sources":["../src/SliderImpl.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAKnD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAGxC,OAAO,KAAK,EAAe,eAAe,EAAE,MAAM,SAAS,CAAA;AAE3D,eAAO,MAAM,WAAW;;;;;;;;;;;8CA6BtB,CAAA;AA0BF,eAAO,MAAM,UAAU,8EA+EtB,CAAA"}
|