@tamagui/progress 1.15.16 → 1.15.18
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 +7 -7
- package/types/Progress.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/progress",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.18",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.15.
|
|
35
|
-
"@tamagui/core": "1.15.
|
|
36
|
-
"@tamagui/create-context": "1.15.
|
|
37
|
-
"@tamagui/get-size": "1.15.
|
|
38
|
-
"@tamagui/stacks": "1.15.
|
|
34
|
+
"@tamagui/compose-refs": "1.15.18",
|
|
35
|
+
"@tamagui/core": "1.15.18",
|
|
36
|
+
"@tamagui/create-context": "1.15.18",
|
|
37
|
+
"@tamagui/get-size": "1.15.18",
|
|
38
|
+
"@tamagui/stacks": "1.15.18"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "*",
|
|
42
42
|
"react-native": "*"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "1.15.
|
|
45
|
+
"@tamagui/build": "1.15.18",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-native": "^0.71.4"
|
|
48
48
|
},
|
package/types/Progress.d.ts
CHANGED
|
@@ -116,9 +116,9 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
116
116
|
readonly bordered?: number | boolean | undefined;
|
|
117
117
|
readonly transparent?: boolean | undefined;
|
|
118
118
|
readonly chromeless?: boolean | "all" | undefined;
|
|
119
|
-
} & {
|
|
119
|
+
} & ({} | {
|
|
120
120
|
[x: string]: undefined;
|
|
121
|
-
}, {
|
|
121
|
+
}), {
|
|
122
122
|
displayName: string | undefined;
|
|
123
123
|
}>;
|
|
124
124
|
declare const ProgressIndicator: React.ForwardRefExoticComponent<ProgressIndicatorProps & React.RefAttributes<TamaguiElement>>;
|