@tamagui/slider 2.0.0-1768741592663 → 2.0.0-1768781784925
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/dist/cjs/Slider.cjs +50 -49
- package/dist/cjs/Slider.js +52 -53
- package/dist/cjs/Slider.js.map +1 -1
- package/dist/cjs/Slider.native.js +28 -63
- package/dist/cjs/Slider.native.js.map +1 -1
- package/dist/esm/Slider.js +55 -56
- package/dist/esm/Slider.js.map +1 -1
- package/dist/esm/Slider.mjs +52 -51
- package/dist/esm/Slider.mjs.map +1 -1
- package/dist/esm/Slider.native.js +30 -65
- package/dist/esm/Slider.native.js.map +1 -1
- package/dist/jsx/Slider.js +55 -56
- package/dist/jsx/Slider.js.map +1 -1
- package/dist/jsx/Slider.mjs +52 -51
- package/dist/jsx/Slider.mjs.map +1 -1
- package/dist/jsx/Slider.native.js +28 -63
- package/dist/jsx/Slider.native.js.map +1 -1
- package/package.json +12 -12
- package/src/Slider.tsx +73 -86
- package/types/Slider.d.ts +32 -118
- package/types/Slider.d.ts.map +1 -1
package/types/Slider.d.ts
CHANGED
|
@@ -11,20 +11,14 @@ export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
11
11
|
unstyled?: boolean | undefined;
|
|
12
12
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
13
13
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
14
|
-
declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "
|
|
14
|
+
declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "elevate" | "bordered" | "chromeless" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
15
15
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
16
16
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
17
17
|
transparent?: boolean | undefined;
|
|
18
18
|
fullscreen?: boolean | undefined;
|
|
19
19
|
circular?: boolean | undefined;
|
|
20
|
-
backgrounded?: boolean | undefined;
|
|
21
|
-
radiused?: boolean | undefined;
|
|
22
|
-
hoverTheme?: boolean | undefined;
|
|
23
|
-
pressTheme?: boolean | undefined;
|
|
24
|
-
focusTheme?: boolean | undefined;
|
|
25
|
-
padded?: boolean | undefined;
|
|
26
20
|
elevate?: boolean | undefined;
|
|
27
|
-
bordered?:
|
|
21
|
+
bordered?: boolean | undefined;
|
|
28
22
|
chromeless?: boolean | "all" | undefined;
|
|
29
23
|
unstyled?: boolean | undefined;
|
|
30
24
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
@@ -33,14 +27,8 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
33
27
|
transparent?: boolean | undefined;
|
|
34
28
|
fullscreen?: boolean | undefined;
|
|
35
29
|
circular?: boolean | undefined;
|
|
36
|
-
backgrounded?: boolean | undefined;
|
|
37
|
-
radiused?: boolean | undefined;
|
|
38
|
-
hoverTheme?: boolean | undefined;
|
|
39
|
-
pressTheme?: boolean | undefined;
|
|
40
|
-
focusTheme?: boolean | undefined;
|
|
41
|
-
padded?: boolean | undefined;
|
|
42
30
|
elevate?: boolean | undefined;
|
|
43
|
-
bordered?:
|
|
31
|
+
bordered?: boolean | undefined;
|
|
44
32
|
chromeless?: boolean | "all" | undefined;
|
|
45
33
|
unstyled?: boolean | undefined;
|
|
46
34
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
@@ -49,14 +37,8 @@ declare const SliderTrack: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
49
37
|
transparent?: boolean | undefined;
|
|
50
38
|
fullscreen?: boolean | undefined;
|
|
51
39
|
circular?: boolean | undefined;
|
|
52
|
-
backgrounded?: boolean | undefined;
|
|
53
|
-
radiused?: boolean | undefined;
|
|
54
|
-
hoverTheme?: boolean | undefined;
|
|
55
|
-
pressTheme?: boolean | undefined;
|
|
56
|
-
focusTheme?: boolean | undefined;
|
|
57
|
-
padded?: boolean | undefined;
|
|
58
40
|
elevate?: boolean | undefined;
|
|
59
|
-
bordered?:
|
|
41
|
+
bordered?: boolean | undefined;
|
|
60
42
|
chromeless?: boolean | "all" | undefined;
|
|
61
43
|
unstyled?: boolean | undefined;
|
|
62
44
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
@@ -64,23 +46,27 @@ export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComp
|
|
|
64
46
|
elevation?: number | SizeTokens | undefined;
|
|
65
47
|
size?: any;
|
|
66
48
|
fullscreen?: boolean | undefined;
|
|
49
|
+
unstyled?: boolean | undefined;
|
|
67
50
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
68
51
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
69
52
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|
|
70
|
-
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> & {
|
|
53
|
+
declare const SliderTrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "unstyled" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
71
54
|
elevation?: number | SizeTokens | undefined;
|
|
72
55
|
size?: any;
|
|
73
56
|
fullscreen?: boolean | undefined;
|
|
57
|
+
unstyled?: boolean | undefined;
|
|
74
58
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
75
59
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
76
60
|
elevation?: number | SizeTokens | undefined;
|
|
77
61
|
size?: any;
|
|
78
62
|
fullscreen?: boolean | undefined;
|
|
63
|
+
unstyled?: boolean | undefined;
|
|
79
64
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
80
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, {
|
|
81
66
|
elevation?: number | SizeTokens | undefined;
|
|
82
67
|
size?: any;
|
|
83
68
|
fullscreen?: boolean | undefined;
|
|
69
|
+
unstyled?: boolean | undefined;
|
|
84
70
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
85
71
|
}>> & React.RefAttributes<View>>;
|
|
86
72
|
export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -89,14 +75,8 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
89
75
|
transparent?: boolean | undefined;
|
|
90
76
|
fullscreen?: boolean | undefined;
|
|
91
77
|
circular?: boolean | undefined;
|
|
92
|
-
backgrounded?: boolean | undefined;
|
|
93
|
-
radiused?: boolean | undefined;
|
|
94
|
-
hoverTheme?: boolean | undefined;
|
|
95
|
-
pressTheme?: boolean | undefined;
|
|
96
|
-
focusTheme?: boolean | undefined;
|
|
97
|
-
padded?: boolean | undefined;
|
|
98
78
|
elevate?: boolean | undefined;
|
|
99
|
-
bordered?:
|
|
79
|
+
bordered?: boolean | undefined;
|
|
100
80
|
chromeless?: boolean | "all" | undefined;
|
|
101
81
|
unstyled?: boolean | undefined;
|
|
102
82
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
@@ -111,14 +91,8 @@ declare const SliderThumb: import("@tamagui/core").TamaguiComponent<Omit<import(
|
|
|
111
91
|
transparent?: boolean | undefined;
|
|
112
92
|
fullscreen?: boolean | undefined;
|
|
113
93
|
circular?: boolean | undefined;
|
|
114
|
-
backgrounded?: boolean | undefined;
|
|
115
|
-
radiused?: boolean | undefined;
|
|
116
|
-
hoverTheme?: boolean | undefined;
|
|
117
|
-
pressTheme?: boolean | undefined;
|
|
118
|
-
focusTheme?: boolean | undefined;
|
|
119
|
-
padded?: boolean | undefined;
|
|
120
94
|
elevate?: boolean | undefined;
|
|
121
|
-
bordered?:
|
|
95
|
+
bordered?: boolean | undefined;
|
|
122
96
|
chromeless?: boolean | "all" | undefined;
|
|
123
97
|
unstyled?: boolean | undefined;
|
|
124
98
|
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -127,34 +101,22 @@ declare const SliderThumb: import("@tamagui/core").TamaguiComponent<Omit<import(
|
|
|
127
101
|
transparent?: boolean | undefined;
|
|
128
102
|
fullscreen?: boolean | undefined;
|
|
129
103
|
circular?: boolean | undefined;
|
|
130
|
-
backgrounded?: boolean | undefined;
|
|
131
|
-
radiused?: boolean | undefined;
|
|
132
|
-
hoverTheme?: boolean | undefined;
|
|
133
|
-
pressTheme?: boolean | undefined;
|
|
134
|
-
focusTheme?: boolean | undefined;
|
|
135
|
-
padded?: boolean | undefined;
|
|
136
104
|
elevate?: boolean | undefined;
|
|
137
|
-
bordered?:
|
|
105
|
+
bordered?: boolean | undefined;
|
|
138
106
|
chromeless?: boolean | "all" | undefined;
|
|
139
107
|
unstyled?: boolean | undefined;
|
|
140
108
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
141
109
|
declare const Slider: React.ForwardRefExoticComponent<SliderProps & {
|
|
142
110
|
__scopeSlider?: string;
|
|
143
111
|
} & React.RefAttributes<unknown>> & {
|
|
144
|
-
Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "
|
|
112
|
+
Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "elevate" | "bordered" | "chromeless" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
145
113
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
146
114
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
147
115
|
transparent?: boolean | undefined;
|
|
148
116
|
fullscreen?: boolean | undefined;
|
|
149
117
|
circular?: boolean | undefined;
|
|
150
|
-
backgrounded?: boolean | undefined;
|
|
151
|
-
radiused?: boolean | undefined;
|
|
152
|
-
hoverTheme?: boolean | undefined;
|
|
153
|
-
pressTheme?: boolean | undefined;
|
|
154
|
-
focusTheme?: boolean | undefined;
|
|
155
|
-
padded?: boolean | undefined;
|
|
156
118
|
elevate?: boolean | undefined;
|
|
157
|
-
bordered?:
|
|
119
|
+
bordered?: boolean | undefined;
|
|
158
120
|
chromeless?: boolean | "all" | undefined;
|
|
159
121
|
unstyled?: boolean | undefined;
|
|
160
122
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
@@ -163,14 +125,8 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & {
|
|
|
163
125
|
transparent?: boolean | undefined;
|
|
164
126
|
fullscreen?: boolean | undefined;
|
|
165
127
|
circular?: boolean | undefined;
|
|
166
|
-
backgrounded?: boolean | undefined;
|
|
167
|
-
radiused?: boolean | undefined;
|
|
168
|
-
hoverTheme?: boolean | undefined;
|
|
169
|
-
pressTheme?: boolean | undefined;
|
|
170
|
-
focusTheme?: boolean | undefined;
|
|
171
|
-
padded?: boolean | undefined;
|
|
172
128
|
elevate?: boolean | undefined;
|
|
173
|
-
bordered?:
|
|
129
|
+
bordered?: boolean | undefined;
|
|
174
130
|
chromeless?: boolean | "all" | undefined;
|
|
175
131
|
unstyled?: boolean | undefined;
|
|
176
132
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
@@ -179,31 +135,28 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & {
|
|
|
179
135
|
transparent?: boolean | undefined;
|
|
180
136
|
fullscreen?: boolean | undefined;
|
|
181
137
|
circular?: boolean | undefined;
|
|
182
|
-
backgrounded?: boolean | undefined;
|
|
183
|
-
radiused?: boolean | undefined;
|
|
184
|
-
hoverTheme?: boolean | undefined;
|
|
185
|
-
pressTheme?: boolean | undefined;
|
|
186
|
-
focusTheme?: boolean | undefined;
|
|
187
|
-
padded?: boolean | undefined;
|
|
188
138
|
elevate?: boolean | undefined;
|
|
189
|
-
bordered?:
|
|
139
|
+
bordered?: boolean | undefined;
|
|
190
140
|
chromeless?: boolean | "all" | undefined;
|
|
191
141
|
unstyled?: boolean | undefined;
|
|
192
142
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
193
|
-
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> & {
|
|
143
|
+
TrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "unstyled" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
194
144
|
elevation?: number | SizeTokens | undefined;
|
|
195
145
|
size?: any;
|
|
196
146
|
fullscreen?: boolean | undefined;
|
|
147
|
+
unstyled?: boolean | undefined;
|
|
197
148
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
198
149
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
199
150
|
elevation?: number | SizeTokens | undefined;
|
|
200
151
|
size?: any;
|
|
201
152
|
fullscreen?: boolean | undefined;
|
|
153
|
+
unstyled?: boolean | undefined;
|
|
202
154
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
203
155
|
} & 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
156
|
elevation?: number | SizeTokens | undefined;
|
|
205
157
|
size?: any;
|
|
206
158
|
fullscreen?: boolean | undefined;
|
|
159
|
+
unstyled?: boolean | undefined;
|
|
207
160
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
208
161
|
}>> & React.RefAttributes<View>>;
|
|
209
162
|
Thumb: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -212,14 +165,8 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & {
|
|
|
212
165
|
transparent?: boolean | undefined;
|
|
213
166
|
fullscreen?: boolean | undefined;
|
|
214
167
|
circular?: boolean | undefined;
|
|
215
|
-
backgrounded?: boolean | undefined;
|
|
216
|
-
radiused?: boolean | undefined;
|
|
217
|
-
hoverTheme?: boolean | undefined;
|
|
218
|
-
pressTheme?: boolean | undefined;
|
|
219
|
-
focusTheme?: boolean | undefined;
|
|
220
|
-
padded?: boolean | undefined;
|
|
221
168
|
elevate?: boolean | undefined;
|
|
222
|
-
bordered?:
|
|
169
|
+
bordered?: boolean | undefined;
|
|
223
170
|
chromeless?: boolean | "all" | undefined;
|
|
224
171
|
unstyled?: boolean | undefined;
|
|
225
172
|
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -228,32 +175,20 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & {
|
|
|
228
175
|
transparent?: boolean | undefined;
|
|
229
176
|
fullscreen?: boolean | undefined;
|
|
230
177
|
circular?: boolean | undefined;
|
|
231
|
-
backgrounded?: boolean | undefined;
|
|
232
|
-
radiused?: boolean | undefined;
|
|
233
|
-
hoverTheme?: boolean | undefined;
|
|
234
|
-
pressTheme?: boolean | undefined;
|
|
235
|
-
focusTheme?: boolean | undefined;
|
|
236
|
-
padded?: boolean | undefined;
|
|
237
178
|
elevate?: boolean | undefined;
|
|
238
|
-
bordered?:
|
|
179
|
+
bordered?: boolean | undefined;
|
|
239
180
|
chromeless?: boolean | "all" | undefined;
|
|
240
181
|
unstyled?: boolean | undefined;
|
|
241
182
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
242
183
|
};
|
|
243
|
-
declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "
|
|
184
|
+
declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "transparent" | "fullscreen" | "circular" | "elevate" | "bordered" | "chromeless" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
244
185
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
245
186
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
246
187
|
transparent?: boolean | undefined;
|
|
247
188
|
fullscreen?: boolean | undefined;
|
|
248
189
|
circular?: boolean | undefined;
|
|
249
|
-
backgrounded?: boolean | undefined;
|
|
250
|
-
radiused?: boolean | undefined;
|
|
251
|
-
hoverTheme?: boolean | undefined;
|
|
252
|
-
pressTheme?: boolean | undefined;
|
|
253
|
-
focusTheme?: boolean | undefined;
|
|
254
|
-
padded?: boolean | undefined;
|
|
255
190
|
elevate?: boolean | undefined;
|
|
256
|
-
bordered?:
|
|
191
|
+
bordered?: boolean | undefined;
|
|
257
192
|
chromeless?: boolean | "all" | undefined;
|
|
258
193
|
unstyled?: boolean | undefined;
|
|
259
194
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
@@ -262,14 +197,8 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
262
197
|
transparent?: boolean | undefined;
|
|
263
198
|
fullscreen?: boolean | undefined;
|
|
264
199
|
circular?: boolean | undefined;
|
|
265
|
-
backgrounded?: boolean | undefined;
|
|
266
|
-
radiused?: boolean | undefined;
|
|
267
|
-
hoverTheme?: boolean | undefined;
|
|
268
|
-
pressTheme?: boolean | undefined;
|
|
269
|
-
focusTheme?: boolean | undefined;
|
|
270
|
-
padded?: boolean | undefined;
|
|
271
200
|
elevate?: boolean | undefined;
|
|
272
|
-
bordered?:
|
|
201
|
+
bordered?: boolean | undefined;
|
|
273
202
|
chromeless?: boolean | "all" | undefined;
|
|
274
203
|
unstyled?: boolean | undefined;
|
|
275
204
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
@@ -278,31 +207,28 @@ declare const Track: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
278
207
|
transparent?: boolean | undefined;
|
|
279
208
|
fullscreen?: boolean | undefined;
|
|
280
209
|
circular?: boolean | undefined;
|
|
281
|
-
backgrounded?: boolean | undefined;
|
|
282
|
-
radiused?: boolean | undefined;
|
|
283
|
-
hoverTheme?: boolean | undefined;
|
|
284
|
-
pressTheme?: boolean | undefined;
|
|
285
|
-
focusTheme?: boolean | undefined;
|
|
286
|
-
padded?: boolean | undefined;
|
|
287
210
|
elevate?: boolean | undefined;
|
|
288
|
-
bordered?:
|
|
211
|
+
bordered?: boolean | undefined;
|
|
289
212
|
chromeless?: boolean | "all" | undefined;
|
|
290
213
|
unstyled?: boolean | undefined;
|
|
291
214
|
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
292
|
-
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> & {
|
|
215
|
+
declare const Range: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "size" | "fullscreen" | "unstyled" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
293
216
|
elevation?: number | SizeTokens | undefined;
|
|
294
217
|
size?: any;
|
|
295
218
|
fullscreen?: boolean | undefined;
|
|
219
|
+
unstyled?: boolean | undefined;
|
|
296
220
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
297
221
|
} & 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
222
|
elevation?: number | SizeTokens | undefined;
|
|
299
223
|
size?: any;
|
|
300
224
|
fullscreen?: boolean | undefined;
|
|
225
|
+
unstyled?: boolean | undefined;
|
|
301
226
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
302
227
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
303
228
|
elevation?: number | SizeTokens | undefined;
|
|
304
229
|
size?: any;
|
|
305
230
|
fullscreen?: boolean | undefined;
|
|
231
|
+
unstyled?: boolean | undefined;
|
|
306
232
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
307
233
|
}>> & React.RefAttributes<View>>;
|
|
308
234
|
declare const Thumb: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -311,14 +237,8 @@ declare const Thumb: import("@tamagui/core").TamaguiComponent<Omit<import("@tama
|
|
|
311
237
|
transparent?: boolean | undefined;
|
|
312
238
|
fullscreen?: boolean | undefined;
|
|
313
239
|
circular?: boolean | undefined;
|
|
314
|
-
backgrounded?: boolean | undefined;
|
|
315
|
-
radiused?: boolean | undefined;
|
|
316
|
-
hoverTheme?: boolean | undefined;
|
|
317
|
-
pressTheme?: boolean | undefined;
|
|
318
|
-
focusTheme?: boolean | undefined;
|
|
319
|
-
padded?: boolean | undefined;
|
|
320
240
|
elevate?: boolean | undefined;
|
|
321
|
-
bordered?:
|
|
241
|
+
bordered?: boolean | undefined;
|
|
322
242
|
chromeless?: boolean | "all" | undefined;
|
|
323
243
|
unstyled?: boolean | undefined;
|
|
324
244
|
}>, "index"> & SliderThumbExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
@@ -327,14 +247,8 @@ declare const Thumb: import("@tamagui/core").TamaguiComponent<Omit<import("@tama
|
|
|
327
247
|
transparent?: boolean | undefined;
|
|
328
248
|
fullscreen?: boolean | undefined;
|
|
329
249
|
circular?: boolean | undefined;
|
|
330
|
-
backgrounded?: boolean | undefined;
|
|
331
|
-
radiused?: boolean | undefined;
|
|
332
|
-
hoverTheme?: boolean | undefined;
|
|
333
|
-
pressTheme?: boolean | undefined;
|
|
334
|
-
focusTheme?: boolean | undefined;
|
|
335
|
-
padded?: boolean | undefined;
|
|
336
250
|
elevate?: boolean | undefined;
|
|
337
|
-
bordered?:
|
|
251
|
+
bordered?: boolean | undefined;
|
|
338
252
|
chromeless?: boolean | "all" | undefined;
|
|
339
253
|
unstyled?: boolean | undefined;
|
|
340
254
|
}, import("@tamagui/core").StaticConfigPublic>;
|
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;AAUtB,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;
|
|
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;AAUtB,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;AAwPhB,KAAK,kBAAkB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE5C,eAAO,MAAM,gBAAgB;;;;;;8CAmB3B,CAAA;AAEF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAehB,CAAA;AAUD,eAAO,MAAM,sBAAsB;;;;;;8CAiBjC,CAAA;AAEF,KAAK,sBAAsB,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAErE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;gCAsCtB,CAAA;AA0BD,eAAO,MAAM,gBAAgB;;;;;;;;;;8CAiC3B,CAAA;AAEF,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,WAAW,gBAAiB,SAAQ,iBAAiB,EAAE,qBAAqB;CAAG;AAErF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;8CA+FhB,CAAA;AA6JD,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIV,CAAA;AAuCF,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CAAc,CAAA;AACzB,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;gCAAoB,CAAA;AAC/B,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;8CAAc,CAAA;AAEzB,OAAO,EACL,KAAK,EACL,MAAM,EACN,WAAW,EACX,WAAW,EACX,iBAAiB,EACjB,KAAK,EAEL,KAAK,GACN,CAAA;AAED,YAAY,EAAE,WAAW,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,CAAA"}
|