@tamagui/progress 1.91.3 → 1.91.4
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 +8 -8
- package/types/Progress.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/progress",
|
|
3
|
-
"version": "1.91.
|
|
3
|
+
"version": "1.91.4",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/compose-refs": "1.91.
|
|
36
|
-
"@tamagui/core": "1.91.
|
|
37
|
-
"@tamagui/create-context": "1.91.
|
|
38
|
-
"@tamagui/get-token": "1.91.
|
|
39
|
-
"@tamagui/helpers": "1.91.
|
|
40
|
-
"@tamagui/stacks": "1.91.
|
|
35
|
+
"@tamagui/compose-refs": "1.91.4",
|
|
36
|
+
"@tamagui/core": "1.91.4",
|
|
37
|
+
"@tamagui/create-context": "1.91.4",
|
|
38
|
+
"@tamagui/get-token": "1.91.4",
|
|
39
|
+
"@tamagui/helpers": "1.91.4",
|
|
40
|
+
"@tamagui/stacks": "1.91.4"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "*",
|
|
44
44
|
"react-native": "*"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@tamagui/build": "1.91.
|
|
47
|
+
"@tamagui/build": "1.91.4",
|
|
48
48
|
"react": "^18.2.0",
|
|
49
49
|
"react-native": "^0.73.4"
|
|
50
50
|
},
|
package/types/Progress.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ declare const ProgressIndicator: import("@tamagui/core").TamaguiComponent<import
|
|
|
70
70
|
export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
72
|
backgrounded?: boolean | undefined;
|
|
73
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
73
74
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
74
75
|
transparent?: boolean | undefined;
|
|
75
76
|
fullscreen?: boolean | undefined;
|
|
@@ -88,7 +89,6 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<imp
|
|
|
88
89
|
radiused?: boolean | undefined;
|
|
89
90
|
padded?: boolean | undefined;
|
|
90
91
|
chromeless?: boolean | "all" | undefined;
|
|
91
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
92
92
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
93
93
|
interface ProgressExtraProps {
|
|
94
94
|
value?: number | null | undefined;
|
|
@@ -99,6 +99,7 @@ type ProgressProps = GetProps<typeof ProgressFrame> & ProgressExtraProps;
|
|
|
99
99
|
declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
100
100
|
unstyled?: boolean | undefined;
|
|
101
101
|
backgrounded?: boolean | undefined;
|
|
102
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
102
103
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
103
104
|
transparent?: boolean | undefined;
|
|
104
105
|
fullscreen?: boolean | undefined;
|
|
@@ -117,10 +118,10 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/co
|
|
|
117
118
|
radiused?: boolean | undefined;
|
|
118
119
|
padded?: boolean | undefined;
|
|
119
120
|
chromeless?: boolean | "all" | undefined;
|
|
120
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
121
121
|
}>, keyof ProgressExtraProps> & ProgressExtraProps & React.RefAttributes<import("@tamagui/core").TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
122
122
|
unstyled?: boolean | undefined;
|
|
123
123
|
backgrounded?: boolean | undefined;
|
|
124
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
124
125
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
125
126
|
transparent?: boolean | undefined;
|
|
126
127
|
fullscreen?: boolean | undefined;
|
|
@@ -139,10 +140,10 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/co
|
|
|
139
140
|
radiused?: boolean | undefined;
|
|
140
141
|
padded?: boolean | undefined;
|
|
141
142
|
chromeless?: boolean | "all" | undefined;
|
|
142
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
143
143
|
}>, keyof ProgressExtraProps> & ProgressExtraProps, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ProgressExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
144
144
|
unstyled?: boolean | undefined;
|
|
145
145
|
backgrounded?: boolean | undefined;
|
|
146
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
146
147
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
147
148
|
transparent?: boolean | undefined;
|
|
148
149
|
fullscreen?: boolean | undefined;
|
|
@@ -161,11 +162,11 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/co
|
|
|
161
162
|
radiused?: boolean | undefined;
|
|
162
163
|
padded?: boolean | undefined;
|
|
163
164
|
chromeless?: boolean | "all" | undefined;
|
|
164
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
165
165
|
}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig" | "extractable" | "styleable"> & {
|
|
166
166
|
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
167
167
|
unstyled?: boolean | undefined;
|
|
168
168
|
backgrounded?: boolean | undefined;
|
|
169
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
169
170
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
170
171
|
transparent?: boolean | undefined;
|
|
171
172
|
fullscreen?: boolean | undefined;
|
|
@@ -184,10 +185,10 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/co
|
|
|
184
185
|
radiused?: boolean | undefined;
|
|
185
186
|
padded?: boolean | undefined;
|
|
186
187
|
chromeless?: boolean | "all" | undefined;
|
|
187
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
188
188
|
}>, keyof ProgressExtraProps> & ProgressExtraProps, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ProgressExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
189
189
|
unstyled?: boolean | undefined;
|
|
190
190
|
backgrounded?: boolean | undefined;
|
|
191
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
191
192
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
192
193
|
transparent?: boolean | undefined;
|
|
193
194
|
fullscreen?: boolean | undefined;
|
|
@@ -206,7 +207,6 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("@tamagui/co
|
|
|
206
207
|
radiused?: boolean | undefined;
|
|
207
208
|
padded?: boolean | undefined;
|
|
208
209
|
chromeless?: boolean | "all" | undefined;
|
|
209
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
210
210
|
}, import("@tamagui/core").StaticConfigPublic];
|
|
211
211
|
} & {
|
|
212
212
|
Indicator: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|