@tamagui/avatar 2.0.0-1768717573053 → 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/package.json +9 -9
- package/types/Avatar.d.ts +5 -29
- package/types/Avatar.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/avatar",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-1768781784925",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@tamagui/core": "2.0.0-
|
|
43
|
-
"@tamagui/create-context": "2.0.0-
|
|
44
|
-
"@tamagui/helpers": "2.0.0-
|
|
45
|
-
"@tamagui/image": "2.0.0-
|
|
46
|
-
"@tamagui/shapes": "2.0.0-
|
|
47
|
-
"@tamagui/stacks": "2.0.0-
|
|
48
|
-
"@tamagui/text": "2.0.0-
|
|
42
|
+
"@tamagui/core": "2.0.0-1768781784925",
|
|
43
|
+
"@tamagui/create-context": "2.0.0-1768781784925",
|
|
44
|
+
"@tamagui/helpers": "2.0.0-1768781784925",
|
|
45
|
+
"@tamagui/image": "2.0.0-1768781784925",
|
|
46
|
+
"@tamagui/shapes": "2.0.0-1768781784925",
|
|
47
|
+
"@tamagui/stacks": "2.0.0-1768781784925",
|
|
48
|
+
"@tamagui/text": "2.0.0-1768781784925"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@tamagui/build": "2.0.0-
|
|
51
|
+
"@tamagui/build": "2.0.0-1768781784925",
|
|
52
52
|
"react": "*",
|
|
53
53
|
"react-native": "0.81.5"
|
|
54
54
|
},
|
package/types/Avatar.d.ts
CHANGED
|
@@ -35,14 +35,8 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
35
35
|
transparent?: boolean | undefined;
|
|
36
36
|
fullscreen?: boolean | undefined;
|
|
37
37
|
circular?: boolean | undefined;
|
|
38
|
-
backgrounded?: boolean | undefined;
|
|
39
|
-
radiused?: boolean | undefined;
|
|
40
|
-
hoverTheme?: boolean | undefined;
|
|
41
|
-
pressTheme?: boolean | undefined;
|
|
42
|
-
focusTheme?: boolean | undefined;
|
|
43
|
-
padded?: boolean | undefined;
|
|
44
38
|
elevate?: boolean | undefined;
|
|
45
|
-
bordered?:
|
|
39
|
+
bordered?: boolean | undefined;
|
|
46
40
|
chromeless?: boolean | "all" | undefined;
|
|
47
41
|
}, import("@tamagui/core").StaticConfigPublic & {
|
|
48
42
|
memo: true;
|
|
@@ -63,20 +57,14 @@ type AvatarProps = GetProps<typeof AvatarFrame>;
|
|
|
63
57
|
* </Avatar>
|
|
64
58
|
* ```
|
|
65
59
|
*/
|
|
66
|
-
declare const Avatar: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "transparent" | "circular" | "
|
|
60
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "transparent" | "circular" | "elevate" | "bordered" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
67
61
|
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
68
62
|
size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
69
63
|
transparent?: boolean | undefined;
|
|
70
64
|
fullscreen?: boolean | undefined;
|
|
71
65
|
circular?: boolean | undefined;
|
|
72
|
-
backgrounded?: boolean | undefined;
|
|
73
|
-
radiused?: boolean | undefined;
|
|
74
|
-
hoverTheme?: boolean | undefined;
|
|
75
|
-
pressTheme?: boolean | undefined;
|
|
76
|
-
focusTheme?: boolean | undefined;
|
|
77
|
-
padded?: boolean | undefined;
|
|
78
66
|
elevate?: boolean | undefined;
|
|
79
|
-
bordered?:
|
|
67
|
+
bordered?: boolean | undefined;
|
|
80
68
|
chromeless?: boolean | "all" | undefined;
|
|
81
69
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
82
70
|
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
@@ -84,14 +72,8 @@ declare const Avatar: React.ForwardRefExoticComponent<Omit<import("@tamagui/core
|
|
|
84
72
|
transparent?: boolean | undefined;
|
|
85
73
|
fullscreen?: boolean | undefined;
|
|
86
74
|
circular?: boolean | undefined;
|
|
87
|
-
backgrounded?: boolean | undefined;
|
|
88
|
-
radiused?: boolean | undefined;
|
|
89
|
-
hoverTheme?: boolean | undefined;
|
|
90
|
-
pressTheme?: boolean | undefined;
|
|
91
|
-
focusTheme?: boolean | undefined;
|
|
92
|
-
padded?: boolean | undefined;
|
|
93
75
|
elevate?: boolean | undefined;
|
|
94
|
-
bordered?:
|
|
76
|
+
bordered?: boolean | undefined;
|
|
95
77
|
chromeless?: boolean | "all" | undefined;
|
|
96
78
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
97
79
|
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
@@ -99,14 +81,8 @@ declare const Avatar: React.ForwardRefExoticComponent<Omit<import("@tamagui/core
|
|
|
99
81
|
transparent?: boolean | undefined;
|
|
100
82
|
fullscreen?: boolean | undefined;
|
|
101
83
|
circular?: boolean | undefined;
|
|
102
|
-
backgrounded?: boolean | undefined;
|
|
103
|
-
radiused?: boolean | undefined;
|
|
104
|
-
hoverTheme?: boolean | undefined;
|
|
105
|
-
pressTheme?: boolean | undefined;
|
|
106
|
-
focusTheme?: boolean | undefined;
|
|
107
|
-
padded?: boolean | undefined;
|
|
108
84
|
elevate?: boolean | undefined;
|
|
109
|
-
bordered?:
|
|
85
|
+
bordered?: boolean | undefined;
|
|
110
86
|
chromeless?: boolean | "all" | undefined;
|
|
111
87
|
}>> & React.RefAttributes<TamaguiElement>> & {
|
|
112
88
|
Image: React.ForwardRefExoticComponent<Partial<ImageProps> & {
|
package/types/Avatar.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../src/Avatar.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAEzE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAA;AAGpD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAIhD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,QAAA,MAA4B,iBAAiB,+CAAmC,CAAA;AAEhF,KAAK,kBAAkB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAA;AAiBjE,KAAK,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG;IAC5C,qBAAqB,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI,CAAA;CAC7D,CAAA;AAED,QAAA,MAAM,WAAW;4BAHS,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI;wCA0E7D,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;8CAK9B,CAAA;AAEF,KAAK,wBAAwB,GAAG;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAA;AACD,KAAK,mBAAmB,GAAG,QAAQ,CAAC,OAAO,mBAAmB,CAAC,GAAG,wBAAwB,CAAA;AAE1F,QAAA,MAAM,cAAc;;;;oBArHwB,KAAK;;oBAAL,KAAK;;;;8CAsI/C,CAAA;AAQF,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../src/Avatar.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAEzE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAA;AAGpD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAIhD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,QAAA,MAA4B,iBAAiB,+CAAmC,CAAA;AAEhF,KAAK,kBAAkB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAA;AAiBjE,KAAK,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG;IAC5C,qBAAqB,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI,CAAA;CAC7D,CAAA;AAED,QAAA,MAAM,WAAW;4BAHS,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI;wCA0E7D,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;8CAK9B,CAAA;AAEF,KAAK,wBAAwB,GAAG;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAA;AACD,KAAK,mBAAmB,GAAG,QAAQ,CAAC,OAAO,mBAAmB,CAAC,GAAG,wBAAwB,CAAA;AAE1F,QAAA,MAAM,cAAc;;;;oBArHwB,KAAK;;oBAAL,KAAK;;;;8CAsI/C,CAAA;AAQF,eAAO,MAAM,WAAW;;;;;;;;;;;EAItB,CAAA;AAEF,KAAK,WAAW,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,CAAA;AAE/C;;;;;;;;;;;;;;GAcG;AACH,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAhJc,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI;;;;;;wBArBlB,KAAK;;wBAAL,KAAK;;;;;CA2LhD,CAAA;AAID,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,WAAW,EAAE,cAAc,EAAE,CAAA;AACjE,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,CAAA"}
|