@tamagui/progress 1.30.28 → 1.31.0
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 +48 -0
- package/types/Progress.d.ts.map +1 -0
- package/types/index.d.ts.map +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/progress",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.
|
|
35
|
-
"@tamagui/core": "1.
|
|
36
|
-
"@tamagui/create-context": "1.
|
|
37
|
-
"@tamagui/get-token": "1.
|
|
38
|
-
"@tamagui/stacks": "1.
|
|
34
|
+
"@tamagui/compose-refs": "1.31.0",
|
|
35
|
+
"@tamagui/core": "1.31.0",
|
|
36
|
+
"@tamagui/create-context": "1.31.0",
|
|
37
|
+
"@tamagui/get-token": "1.31.0",
|
|
38
|
+
"@tamagui/stacks": "1.31.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "*",
|
|
42
42
|
"react-native": "*"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "1.
|
|
45
|
+
"@tamagui/build": "1.31.0",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-native": "^0.71.7"
|
|
48
48
|
},
|
package/types/Progress.d.ts
CHANGED
|
@@ -134,6 +134,30 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
134
134
|
[x: string]: undefined;
|
|
135
135
|
}), {
|
|
136
136
|
displayName: string | undefined;
|
|
137
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
138
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
139
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & {
|
|
140
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
141
|
+
};
|
|
142
|
+
__variantProps: {
|
|
143
|
+
readonly fullscreen?: boolean | undefined;
|
|
144
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
145
|
+
} & {
|
|
146
|
+
readonly fullscreen?: boolean | undefined;
|
|
147
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
148
|
+
} & {
|
|
149
|
+
readonly backgrounded?: boolean | undefined;
|
|
150
|
+
readonly radiused?: boolean | undefined;
|
|
151
|
+
readonly hoverTheme?: boolean | undefined;
|
|
152
|
+
readonly pressTheme?: boolean | undefined;
|
|
153
|
+
readonly focusTheme?: boolean | undefined;
|
|
154
|
+
readonly circular?: boolean | undefined;
|
|
155
|
+
readonly padded?: boolean | undefined;
|
|
156
|
+
readonly elevate?: boolean | undefined;
|
|
157
|
+
readonly bordered?: number | boolean | undefined;
|
|
158
|
+
readonly transparent?: boolean | undefined;
|
|
159
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
160
|
+
};
|
|
137
161
|
}>;
|
|
138
162
|
declare const ProgressIndicator: React.ForwardRefExoticComponent<ProgressIndicatorProps & React.RefAttributes<TamaguiElement>>;
|
|
139
163
|
type TamaguiElement = HTMLElement | View;
|
|
@@ -215,6 +239,30 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
215
239
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
216
240
|
}, {
|
|
217
241
|
displayName: string | undefined;
|
|
242
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
243
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
244
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & {
|
|
245
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
246
|
+
};
|
|
247
|
+
__variantProps: {
|
|
248
|
+
readonly fullscreen?: boolean | undefined;
|
|
249
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
250
|
+
} & {
|
|
251
|
+
readonly fullscreen?: boolean | undefined;
|
|
252
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
253
|
+
} & {
|
|
254
|
+
readonly backgrounded?: boolean | undefined;
|
|
255
|
+
readonly radiused?: boolean | undefined;
|
|
256
|
+
readonly hoverTheme?: boolean | undefined;
|
|
257
|
+
readonly pressTheme?: boolean | undefined;
|
|
258
|
+
readonly focusTheme?: boolean | undefined;
|
|
259
|
+
readonly circular?: boolean | undefined;
|
|
260
|
+
readonly padded?: boolean | undefined;
|
|
261
|
+
readonly elevate?: boolean | undefined;
|
|
262
|
+
readonly bordered?: number | boolean | undefined;
|
|
263
|
+
readonly transparent?: boolean | undefined;
|
|
264
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
265
|
+
};
|
|
218
266
|
}>;
|
|
219
267
|
type ProgressProps = GetProps<typeof ProgressFrame> & {
|
|
220
268
|
value?: number | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../src/Progress.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAkD,MAAM,eAAe,CAAA;AAGxF,OAAO,EAAkB,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAInC,QAAA,MAA8B,mBAAmB,+CAAqC,CAAA;AAYtF,UAAU,sBAAuB,SAAQ,WAAW;CAAG;AAEvD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKjC,CAAA;AAEF,QAAA,MAAM,iBAAiB,+FAoBtB,CAAA;AAqDD,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAA;AAEF,KAAK,aAAa,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,GAAG;IACpD,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,aAAa,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CACnD,CAAA;AAED,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YALJ,MAAM,GAAG,IAAI,GAAG,SAAS;;0BAEX,MAAM,OAAO,MAAM,GAAG,MAAM;;;CAiDnD,CAAA;AAwBD,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,iBAAiB,EAAE,CAAA;AAC3D,YAAY,EAAE,aAAa,EAAE,sBAAsB,EAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA"}
|