@tamagui/slider 1.88.4 → 1.88.5
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/src/types.ts +1 -1
- package/types/Slider.d.ts +209 -44
- package/types/Slider.d.ts.map +1 -1
- package/types/SliderImpl.d.ts +2 -2
- package/types/types.d.ts +1 -2
- package/types/types.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.5",
|
|
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.5",
|
|
36
|
+
"@tamagui/constants": "1.88.5",
|
|
37
|
+
"@tamagui/core": "1.88.5",
|
|
38
|
+
"@tamagui/create-context": "1.88.5",
|
|
39
|
+
"@tamagui/get-token": "1.88.5",
|
|
40
|
+
"@tamagui/helpers": "1.88.5",
|
|
41
|
+
"@tamagui/stacks": "1.88.5",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.88.5",
|
|
43
|
+
"@tamagui/use-direction": "1.88.5"
|
|
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.5",
|
|
51
51
|
"react": "^18.2.0",
|
|
52
52
|
"react-native": "^0.72.6"
|
|
53
53
|
},
|
package/src/types.ts
CHANGED
|
@@ -25,7 +25,7 @@ type SliderImplPrivateProps = {
|
|
|
25
25
|
onStepKeyDown(event: React.KeyboardEvent): void
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
export
|
|
28
|
+
export type SliderTrackProps = SizableStackProps
|
|
29
29
|
|
|
30
30
|
export interface SliderImplProps extends SliderTrackProps, SliderImplPrivateProps {
|
|
31
31
|
dir?: Direction
|
package/types/Slider.d.ts
CHANGED
|
@@ -4,48 +4,103 @@ import * as React from 'react';
|
|
|
4
4
|
import { View } from 'react-native';
|
|
5
5
|
import { SliderProps, SliderTrackProps } from './types';
|
|
6
6
|
type SliderTrackElement = HTMLElement | View;
|
|
7
|
-
export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
7
|
+
export declare const SliderTrackFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
8
8
|
elevation?: number | SizeTokens | undefined;
|
|
9
9
|
size?: any;
|
|
10
10
|
fullscreen?: boolean | undefined;
|
|
11
11
|
unstyled?: boolean | undefined;
|
|
12
|
-
orientation?: "
|
|
12
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
13
13
|
}, {}>;
|
|
14
|
-
declare const SliderTrack: React.ForwardRefExoticComponent<
|
|
15
|
-
|
|
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
|
+
size?: SizeTokens | undefined;
|
|
16
|
+
elevation?: number | SizeTokens | undefined;
|
|
17
|
+
fullscreen?: boolean | undefined;
|
|
18
|
+
circular?: boolean | undefined;
|
|
19
|
+
hoverTheme?: boolean | undefined;
|
|
20
|
+
pressTheme?: boolean | undefined;
|
|
21
|
+
focusTheme?: boolean | undefined;
|
|
22
|
+
elevate?: boolean | undefined;
|
|
23
|
+
bordered?: number | boolean | undefined;
|
|
24
|
+
unstyled?: boolean | undefined;
|
|
25
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
26
|
+
size?: SizeTokens | undefined;
|
|
27
|
+
elevation?: number | SizeTokens | undefined;
|
|
28
|
+
fullscreen?: boolean | undefined;
|
|
29
|
+
circular?: boolean | undefined;
|
|
30
|
+
hoverTheme?: boolean | undefined;
|
|
31
|
+
pressTheme?: boolean | undefined;
|
|
32
|
+
focusTheme?: boolean | undefined;
|
|
33
|
+
elevate?: boolean | undefined;
|
|
34
|
+
bordered?: number | boolean | undefined;
|
|
35
|
+
unstyled?: boolean | undefined;
|
|
36
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
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 & {
|
|
59
|
+
size?: SizeTokens | undefined;
|
|
60
|
+
elevation?: number | SizeTokens | undefined;
|
|
61
|
+
fullscreen?: boolean | undefined;
|
|
62
|
+
circular?: boolean | undefined;
|
|
63
|
+
hoverTheme?: boolean | undefined;
|
|
64
|
+
pressTheme?: boolean | undefined;
|
|
65
|
+
focusTheme?: boolean | undefined;
|
|
66
|
+
elevate?: boolean | undefined;
|
|
67
|
+
bordered?: number | boolean | undefined;
|
|
68
|
+
unstyled?: boolean | undefined;
|
|
69
|
+
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
70
|
+
export declare const SliderTrackActiveFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
16
71
|
elevation?: number | SizeTokens | undefined;
|
|
17
72
|
size?: any;
|
|
18
73
|
fullscreen?: boolean | undefined;
|
|
19
|
-
orientation?: "
|
|
74
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
20
75
|
}, {}>;
|
|
21
76
|
type SliderTrackActiveProps = GetProps<typeof SliderTrackActiveFrame>;
|
|
22
|
-
declare const SliderTrackActive: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
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 & {
|
|
23
78
|
elevation?: number | SizeTokens | undefined;
|
|
24
79
|
size?: any;
|
|
25
80
|
fullscreen?: boolean | undefined;
|
|
26
|
-
orientation?: "
|
|
27
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
81
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
82
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
28
83
|
elevation?: number | SizeTokens | undefined;
|
|
29
84
|
size?: any;
|
|
30
85
|
fullscreen?: boolean | undefined;
|
|
31
|
-
orientation?: "
|
|
32
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
86
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
87
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
33
88
|
elevation?: number | SizeTokens | undefined;
|
|
34
89
|
size?: any;
|
|
35
90
|
fullscreen?: boolean | undefined;
|
|
36
|
-
orientation?: "
|
|
37
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
91
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
38
93
|
elevation?: number | SizeTokens | undefined;
|
|
39
94
|
size?: any;
|
|
40
95
|
fullscreen?: boolean | undefined;
|
|
41
|
-
orientation?: "
|
|
42
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
96
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
97
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
43
98
|
elevation?: number | SizeTokens | undefined;
|
|
44
99
|
size?: any;
|
|
45
100
|
fullscreen?: boolean | undefined;
|
|
46
|
-
orientation?: "
|
|
101
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
47
102
|
}>> & React.RefAttributes<View>>;
|
|
48
|
-
export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
103
|
+
export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
49
104
|
elevation?: number | SizeTokens | undefined;
|
|
50
105
|
size?: SizeTokens | undefined;
|
|
51
106
|
fullscreen?: boolean | undefined;
|
|
@@ -65,7 +120,7 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
65
120
|
interface SliderThumbProps extends SizableStackProps {
|
|
66
121
|
index: number;
|
|
67
122
|
}
|
|
68
|
-
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
123
|
+
declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
69
124
|
elevation?: number | SizeTokens | undefined;
|
|
70
125
|
size?: SizeTokens | undefined;
|
|
71
126
|
fullscreen?: boolean | undefined;
|
|
@@ -81,7 +136,7 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
81
136
|
radiused?: boolean | undefined;
|
|
82
137
|
padded?: boolean | undefined;
|
|
83
138
|
chromeless?: boolean | "all" | undefined;
|
|
84
|
-
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").
|
|
139
|
+
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").StackStyleBase, {
|
|
85
140
|
elevation?: number | SizeTokens | undefined;
|
|
86
141
|
size?: SizeTokens | undefined;
|
|
87
142
|
fullscreen?: boolean | undefined;
|
|
@@ -99,34 +154,89 @@ declare const SliderThumb: React.MemoExoticComponent<import("@tamagui/core").Tam
|
|
|
99
154
|
chromeless?: boolean | "all" | undefined;
|
|
100
155
|
}, {}>>;
|
|
101
156
|
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<TamaguiElement>> & {
|
|
102
|
-
Track: React.ForwardRefExoticComponent<
|
|
103
|
-
|
|
157
|
+
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 & {
|
|
158
|
+
size?: SizeTokens | undefined;
|
|
159
|
+
elevation?: number | SizeTokens | undefined;
|
|
160
|
+
fullscreen?: boolean | undefined;
|
|
161
|
+
circular?: boolean | undefined;
|
|
162
|
+
hoverTheme?: boolean | undefined;
|
|
163
|
+
pressTheme?: boolean | undefined;
|
|
164
|
+
focusTheme?: boolean | undefined;
|
|
165
|
+
elevate?: boolean | undefined;
|
|
166
|
+
bordered?: number | boolean | undefined;
|
|
167
|
+
unstyled?: boolean | undefined;
|
|
168
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
169
|
+
size?: SizeTokens | undefined;
|
|
170
|
+
elevation?: number | SizeTokens | undefined;
|
|
171
|
+
fullscreen?: boolean | undefined;
|
|
172
|
+
circular?: boolean | undefined;
|
|
173
|
+
hoverTheme?: boolean | undefined;
|
|
174
|
+
pressTheme?: boolean | undefined;
|
|
175
|
+
focusTheme?: boolean | undefined;
|
|
176
|
+
elevate?: boolean | undefined;
|
|
177
|
+
bordered?: number | boolean | undefined;
|
|
178
|
+
unstyled?: boolean | undefined;
|
|
179
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
180
|
+
size?: SizeTokens | undefined;
|
|
181
|
+
elevation?: number | SizeTokens | undefined;
|
|
182
|
+
fullscreen?: boolean | undefined;
|
|
183
|
+
circular?: boolean | undefined;
|
|
184
|
+
hoverTheme?: boolean | undefined;
|
|
185
|
+
pressTheme?: boolean | undefined;
|
|
186
|
+
focusTheme?: boolean | undefined;
|
|
187
|
+
elevate?: boolean | undefined;
|
|
188
|
+
bordered?: number | boolean | undefined;
|
|
189
|
+
unstyled?: boolean | undefined;
|
|
190
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
191
|
+
size?: SizeTokens | undefined;
|
|
192
|
+
elevation?: number | SizeTokens | undefined;
|
|
193
|
+
fullscreen?: boolean | undefined;
|
|
194
|
+
circular?: boolean | undefined;
|
|
195
|
+
hoverTheme?: boolean | undefined;
|
|
196
|
+
pressTheme?: boolean | undefined;
|
|
197
|
+
focusTheme?: boolean | undefined;
|
|
198
|
+
elevate?: boolean | undefined;
|
|
199
|
+
bordered?: number | boolean | undefined;
|
|
200
|
+
unstyled?: boolean | undefined;
|
|
201
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
202
|
+
size?: SizeTokens | undefined;
|
|
203
|
+
elevation?: number | SizeTokens | undefined;
|
|
204
|
+
fullscreen?: boolean | undefined;
|
|
205
|
+
circular?: boolean | undefined;
|
|
206
|
+
hoverTheme?: boolean | undefined;
|
|
207
|
+
pressTheme?: boolean | undefined;
|
|
208
|
+
focusTheme?: boolean | undefined;
|
|
209
|
+
elevate?: boolean | undefined;
|
|
210
|
+
bordered?: number | boolean | undefined;
|
|
211
|
+
unstyled?: boolean | undefined;
|
|
212
|
+
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
213
|
+
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 & {
|
|
104
214
|
elevation?: number | SizeTokens | undefined;
|
|
105
215
|
size?: any;
|
|
106
216
|
fullscreen?: boolean | undefined;
|
|
107
|
-
orientation?: "
|
|
108
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
217
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
218
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
109
219
|
elevation?: number | SizeTokens | undefined;
|
|
110
220
|
size?: any;
|
|
111
221
|
fullscreen?: boolean | undefined;
|
|
112
|
-
orientation?: "
|
|
113
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
222
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
223
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
114
224
|
elevation?: number | SizeTokens | undefined;
|
|
115
225
|
size?: any;
|
|
116
226
|
fullscreen?: boolean | undefined;
|
|
117
|
-
orientation?: "
|
|
118
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
227
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
228
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
119
229
|
elevation?: number | SizeTokens | undefined;
|
|
120
230
|
size?: any;
|
|
121
231
|
fullscreen?: boolean | undefined;
|
|
122
|
-
orientation?: "
|
|
123
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
232
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
233
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
124
234
|
elevation?: number | SizeTokens | undefined;
|
|
125
235
|
size?: any;
|
|
126
236
|
fullscreen?: boolean | undefined;
|
|
127
|
-
orientation?: "
|
|
237
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
128
238
|
}>> & React.RefAttributes<View>>;
|
|
129
|
-
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
239
|
+
Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
130
240
|
elevation?: number | SizeTokens | undefined;
|
|
131
241
|
size?: SizeTokens | undefined;
|
|
132
242
|
fullscreen?: boolean | undefined;
|
|
@@ -142,7 +252,7 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
142
252
|
radiused?: boolean | undefined;
|
|
143
253
|
padded?: boolean | undefined;
|
|
144
254
|
chromeless?: boolean | "all" | undefined;
|
|
145
|
-
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").
|
|
255
|
+
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").StackStyleBase, {
|
|
146
256
|
elevation?: number | SizeTokens | undefined;
|
|
147
257
|
size?: SizeTokens | undefined;
|
|
148
258
|
fullscreen?: boolean | undefined;
|
|
@@ -160,34 +270,89 @@ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAtt
|
|
|
160
270
|
chromeless?: boolean | "all" | undefined;
|
|
161
271
|
}, {}>>;
|
|
162
272
|
};
|
|
163
|
-
declare const Track: React.ForwardRefExoticComponent<
|
|
164
|
-
|
|
273
|
+
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 & {
|
|
274
|
+
size?: SizeTokens | undefined;
|
|
275
|
+
elevation?: number | SizeTokens | undefined;
|
|
276
|
+
fullscreen?: boolean | undefined;
|
|
277
|
+
circular?: boolean | undefined;
|
|
278
|
+
hoverTheme?: boolean | undefined;
|
|
279
|
+
pressTheme?: boolean | undefined;
|
|
280
|
+
focusTheme?: boolean | undefined;
|
|
281
|
+
elevate?: boolean | undefined;
|
|
282
|
+
bordered?: number | boolean | undefined;
|
|
283
|
+
unstyled?: boolean | undefined;
|
|
284
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
285
|
+
size?: SizeTokens | undefined;
|
|
286
|
+
elevation?: number | SizeTokens | undefined;
|
|
287
|
+
fullscreen?: boolean | undefined;
|
|
288
|
+
circular?: boolean | undefined;
|
|
289
|
+
hoverTheme?: boolean | undefined;
|
|
290
|
+
pressTheme?: boolean | undefined;
|
|
291
|
+
focusTheme?: boolean | undefined;
|
|
292
|
+
elevate?: boolean | undefined;
|
|
293
|
+
bordered?: number | boolean | undefined;
|
|
294
|
+
unstyled?: boolean | undefined;
|
|
295
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
296
|
+
size?: SizeTokens | undefined;
|
|
297
|
+
elevation?: number | SizeTokens | undefined;
|
|
298
|
+
fullscreen?: boolean | undefined;
|
|
299
|
+
circular?: boolean | undefined;
|
|
300
|
+
hoverTheme?: boolean | undefined;
|
|
301
|
+
pressTheme?: boolean | undefined;
|
|
302
|
+
focusTheme?: boolean | undefined;
|
|
303
|
+
elevate?: boolean | undefined;
|
|
304
|
+
bordered?: number | boolean | undefined;
|
|
305
|
+
unstyled?: boolean | undefined;
|
|
306
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
307
|
+
size?: SizeTokens | undefined;
|
|
308
|
+
elevation?: number | SizeTokens | undefined;
|
|
309
|
+
fullscreen?: boolean | undefined;
|
|
310
|
+
circular?: boolean | undefined;
|
|
311
|
+
hoverTheme?: boolean | undefined;
|
|
312
|
+
pressTheme?: boolean | undefined;
|
|
313
|
+
focusTheme?: boolean | undefined;
|
|
314
|
+
elevate?: boolean | undefined;
|
|
315
|
+
bordered?: number | boolean | undefined;
|
|
316
|
+
unstyled?: boolean | undefined;
|
|
317
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
318
|
+
size?: SizeTokens | undefined;
|
|
319
|
+
elevation?: number | SizeTokens | undefined;
|
|
320
|
+
fullscreen?: boolean | undefined;
|
|
321
|
+
circular?: boolean | undefined;
|
|
322
|
+
hoverTheme?: boolean | undefined;
|
|
323
|
+
pressTheme?: boolean | undefined;
|
|
324
|
+
focusTheme?: boolean | undefined;
|
|
325
|
+
elevate?: boolean | undefined;
|
|
326
|
+
bordered?: number | boolean | undefined;
|
|
327
|
+
unstyled?: boolean | undefined;
|
|
328
|
+
}>> & React.RefAttributes<SliderTrackElement>>;
|
|
329
|
+
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 & {
|
|
165
330
|
elevation?: number | SizeTokens | undefined;
|
|
166
331
|
size?: any;
|
|
167
332
|
fullscreen?: boolean | undefined;
|
|
168
|
-
orientation?: "
|
|
169
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
333
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
334
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
170
335
|
elevation?: number | SizeTokens | undefined;
|
|
171
336
|
size?: any;
|
|
172
337
|
fullscreen?: boolean | undefined;
|
|
173
|
-
orientation?: "
|
|
174
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
338
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
339
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
175
340
|
elevation?: number | SizeTokens | undefined;
|
|
176
341
|
size?: any;
|
|
177
342
|
fullscreen?: boolean | undefined;
|
|
178
|
-
orientation?: "
|
|
179
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
343
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
344
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
180
345
|
elevation?: number | SizeTokens | undefined;
|
|
181
346
|
size?: any;
|
|
182
347
|
fullscreen?: boolean | undefined;
|
|
183
|
-
orientation?: "
|
|
184
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
348
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
349
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
185
350
|
elevation?: number | SizeTokens | undefined;
|
|
186
351
|
size?: any;
|
|
187
352
|
fullscreen?: boolean | undefined;
|
|
188
|
-
orientation?: "
|
|
353
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
189
354
|
}>> & React.RefAttributes<View>>;
|
|
190
|
-
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
355
|
+
declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
191
356
|
elevation?: number | SizeTokens | undefined;
|
|
192
357
|
size?: SizeTokens | undefined;
|
|
193
358
|
fullscreen?: boolean | undefined;
|
|
@@ -203,7 +368,7 @@ declare const Thumb: React.MemoExoticComponent<import("@tamagui/core").TamaguiCo
|
|
|
203
368
|
radiused?: boolean | undefined;
|
|
204
369
|
padded?: boolean | undefined;
|
|
205
370
|
chromeless?: boolean | "all" | undefined;
|
|
206
|
-
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").
|
|
371
|
+
}>, keyof SliderThumbProps> & SliderThumbProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & SliderThumbProps, import("@tamagui/core").StackStyleBase, {
|
|
207
372
|
elevation?: number | SizeTokens | undefined;
|
|
208
373
|
size?: SizeTokens | undefined;
|
|
209
374
|
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,UAAU,gBAAiB,SAAQ,iBAAiB;IAClD,KAAK,EAAE,MAAM,CAAA;CACd;AAGD,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,gBAAgB,EAAE,CAAA"}
|
package/types/SliderImpl.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import { TamaguiElement } from '@tamagui/core';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { View } from 'react-native';
|
|
4
4
|
import { SliderImplProps } from './types';
|
|
5
|
-
export declare const SliderFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
5
|
+
export declare const SliderFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
6
6
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
7
7
|
size?: any;
|
|
8
8
|
fullscreen?: boolean | undefined;
|
|
9
|
-
orientation?: "
|
|
9
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
10
10
|
}, {}>;
|
|
11
11
|
export declare const SliderImpl: React.ForwardRefExoticComponent<SliderImplProps & React.RefAttributes<View>>;
|
|
12
12
|
//# sourceMappingURL=SliderImpl.d.ts.map
|
package/types/types.d.ts
CHANGED
|
@@ -19,8 +19,7 @@ type SliderImplPrivateProps = {
|
|
|
19
19
|
onEndKeyDown(event: React.KeyboardEvent): void;
|
|
20
20
|
onStepKeyDown(event: React.KeyboardEvent): void;
|
|
21
21
|
};
|
|
22
|
-
export
|
|
23
|
-
}
|
|
22
|
+
export type SliderTrackProps = SizableStackProps;
|
|
24
23
|
export interface SliderImplProps extends SliderTrackProps, SliderImplPrivateProps {
|
|
25
24
|
dir?: Direction;
|
|
26
25
|
orientation: 'horizontal' | 'vertical';
|
package/types/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AACrF,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAA;AACpD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAExD,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,aAAa,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAE1D,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAErC,KAAK,gBAAgB,GAAG;IACtB,YAAY,CAAC,EAAE,CACb,KAAK,EAAE,oBAAoB,EAC3B,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,OAAO,GAAG,OAAO,KACtB,IAAI,CAAA;IACT,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAClE,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,oBAAoB,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;CAClE,CAAA;AAED,KAAK,sBAAsB,GAAG;IAC5B,YAAY,CAAC,KAAK,EAAE,oBAAoB,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAAA;IAC1E,WAAW,CAAC,KAAK,EAAE,oBAAoB,GAAG,IAAI,CAAA;IAC9C,UAAU,CAAC,KAAK,EAAE,oBAAoB,GAAG,IAAI,CAAA;IAC7C,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,aAAa,GAAG,IAAI,CAAA;IAC/C,YAAY,CAAC,KAAK,EAAE,KAAK,CAAC,aAAa,GAAG,IAAI,CAAA;IAC9C,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,aAAa,GAAG,IAAI,CAAA;CAChD,CAAA;AAED,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|