@tamagui/progress 1.0.1-beta.40 → 1.0.1-beta.43
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/dist/cjs/Progress.js +0 -0
- package/dist/cjs/Progress.js.map +0 -0
- package/dist/cjs/index.js +0 -0
- package/dist/cjs/index.js.map +0 -0
- package/dist/esm/Progress.js +0 -0
- package/dist/esm/Progress.js.map +0 -0
- package/dist/esm/index.js +0 -0
- package/dist/esm/index.js.map +0 -0
- package/dist/jsx/Progress.js +0 -0
- package/dist/jsx/index.js +0 -0
- package/package.json +6 -6
- package/types/Progress.d.ts +50 -30
- package/types/Progress.d.ts.map +1 -1
package/dist/cjs/Progress.js
CHANGED
|
File without changes
|
package/dist/cjs/Progress.js.map
CHANGED
|
File without changes
|
package/dist/cjs/index.js
CHANGED
|
File without changes
|
package/dist/cjs/index.js.map
CHANGED
|
File without changes
|
package/dist/esm/Progress.js
CHANGED
|
File without changes
|
package/dist/esm/Progress.js.map
CHANGED
|
File without changes
|
package/dist/esm/index.js
CHANGED
|
File without changes
|
package/dist/esm/index.js.map
CHANGED
|
File without changes
|
package/dist/jsx/Progress.js
CHANGED
|
File without changes
|
package/dist/jsx/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/progress",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.43",
|
|
4
4
|
"sideEffects": true,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"clean:build": "tamagui-build clean:build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@tamagui/compose-refs": "^1.0.1-beta.
|
|
22
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
23
|
-
"@tamagui/create-context": "^1.0.1-beta.
|
|
24
|
-
"@tamagui/stacks": "^1.0.1-beta.
|
|
21
|
+
"@tamagui/compose-refs": "^1.0.1-beta.43",
|
|
22
|
+
"@tamagui/core": "^1.0.1-beta.43",
|
|
23
|
+
"@tamagui/create-context": "^1.0.1-beta.43",
|
|
24
|
+
"@tamagui/stacks": "^1.0.1-beta.43"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "*",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react-native": "*"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
32
|
+
"@tamagui/build": "^1.0.1-beta.43",
|
|
33
33
|
"@types/react-native": "^0.67.3",
|
|
34
34
|
"react": "*",
|
|
35
35
|
"react-dom": "*",
|
package/types/Progress.d.ts
CHANGED
|
@@ -8,15 +8,17 @@ interface ProgressIndicatorProps extends YStackProps {
|
|
|
8
8
|
declare const ProgressIndicator: React.ForwardRefExoticComponent<ProgressIndicatorProps & React.RefAttributes<TamaguiElement>>;
|
|
9
9
|
declare type TamaguiElement = HTMLElement | View;
|
|
10
10
|
declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
11
|
-
fullscreen?: boolean | undefined;
|
|
12
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
11
|
+
readonly fullscreen?: boolean | undefined;
|
|
12
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
13
13
|
} & {
|
|
14
14
|
fontFamily?: unknown;
|
|
15
|
+
backgrounded?: boolean | undefined;
|
|
16
|
+
radiused?: boolean | undefined;
|
|
15
17
|
hoverable?: boolean | undefined;
|
|
16
18
|
pressable?: boolean | undefined;
|
|
17
19
|
focusable?: boolean | undefined;
|
|
18
20
|
circular?: boolean | undefined;
|
|
19
|
-
|
|
21
|
+
padded?: boolean | undefined;
|
|
20
22
|
elevate?: boolean | undefined;
|
|
21
23
|
bordered?: number | boolean | undefined;
|
|
22
24
|
transparent?: boolean | undefined;
|
|
@@ -24,15 +26,17 @@ declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<impor
|
|
|
24
26
|
}, "size"> & {
|
|
25
27
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
26
28
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
27
|
-
fullscreen?: boolean | undefined;
|
|
28
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
29
|
+
readonly fullscreen?: boolean | undefined;
|
|
30
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
29
31
|
} & {
|
|
30
32
|
fontFamily?: unknown;
|
|
33
|
+
backgrounded?: boolean | undefined;
|
|
34
|
+
radiused?: boolean | undefined;
|
|
31
35
|
hoverable?: boolean | undefined;
|
|
32
36
|
pressable?: boolean | undefined;
|
|
33
37
|
focusable?: boolean | undefined;
|
|
34
38
|
circular?: boolean | undefined;
|
|
35
|
-
|
|
39
|
+
padded?: boolean | undefined;
|
|
36
40
|
elevate?: boolean | undefined;
|
|
37
41
|
bordered?: number | boolean | undefined;
|
|
38
42
|
transparent?: boolean | undefined;
|
|
@@ -40,15 +44,17 @@ declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<impor
|
|
|
40
44
|
}, "size"> & {
|
|
41
45
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
42
46
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
43
|
-
fullscreen?: boolean | undefined;
|
|
44
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
47
|
+
readonly fullscreen?: boolean | undefined;
|
|
48
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
45
49
|
} & {
|
|
46
50
|
fontFamily?: unknown;
|
|
51
|
+
backgrounded?: boolean | undefined;
|
|
52
|
+
radiused?: boolean | undefined;
|
|
47
53
|
hoverable?: boolean | undefined;
|
|
48
54
|
pressable?: boolean | undefined;
|
|
49
55
|
focusable?: boolean | undefined;
|
|
50
56
|
circular?: boolean | undefined;
|
|
51
|
-
|
|
57
|
+
padded?: boolean | undefined;
|
|
52
58
|
elevate?: boolean | undefined;
|
|
53
59
|
bordered?: number | boolean | undefined;
|
|
54
60
|
transparent?: boolean | undefined;
|
|
@@ -56,15 +62,17 @@ declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<impor
|
|
|
56
62
|
}, "size"> & {
|
|
57
63
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
58
64
|
}>>, any, import("@tamagui/core").StackPropsBase, {
|
|
59
|
-
fullscreen?: boolean | undefined;
|
|
60
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
65
|
+
readonly fullscreen?: boolean | undefined;
|
|
66
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
61
67
|
} & {
|
|
62
68
|
fontFamily?: unknown;
|
|
69
|
+
backgrounded?: boolean | undefined;
|
|
70
|
+
radiused?: boolean | undefined;
|
|
63
71
|
hoverable?: boolean | undefined;
|
|
64
72
|
pressable?: boolean | undefined;
|
|
65
73
|
focusable?: boolean | undefined;
|
|
66
74
|
circular?: boolean | undefined;
|
|
67
|
-
|
|
75
|
+
padded?: boolean | undefined;
|
|
68
76
|
elevate?: boolean | undefined;
|
|
69
77
|
bordered?: number | boolean | undefined;
|
|
70
78
|
transparent?: boolean | undefined;
|
|
@@ -78,15 +86,17 @@ declare type ProgressProps = GetProps<typeof ProgressFrame> & {
|
|
|
78
86
|
getValueLabel?(value: number, max: number): string;
|
|
79
87
|
};
|
|
80
88
|
declare const Progress: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
81
|
-
fullscreen?: boolean | undefined;
|
|
82
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
89
|
+
readonly fullscreen?: boolean | undefined;
|
|
90
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
83
91
|
} & {
|
|
84
92
|
fontFamily?: unknown;
|
|
93
|
+
backgrounded?: boolean | undefined;
|
|
94
|
+
radiused?: boolean | undefined;
|
|
85
95
|
hoverable?: boolean | undefined;
|
|
86
96
|
pressable?: boolean | undefined;
|
|
87
97
|
focusable?: boolean | undefined;
|
|
88
98
|
circular?: boolean | undefined;
|
|
89
|
-
|
|
99
|
+
padded?: boolean | undefined;
|
|
90
100
|
elevate?: boolean | undefined;
|
|
91
101
|
bordered?: number | boolean | undefined;
|
|
92
102
|
transparent?: boolean | undefined;
|
|
@@ -94,15 +104,17 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("react-nativ
|
|
|
94
104
|
}, "size"> & {
|
|
95
105
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
96
106
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
97
|
-
fullscreen?: boolean | undefined;
|
|
98
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
107
|
+
readonly fullscreen?: boolean | undefined;
|
|
108
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
99
109
|
} & {
|
|
100
110
|
fontFamily?: unknown;
|
|
111
|
+
backgrounded?: boolean | undefined;
|
|
112
|
+
radiused?: boolean | undefined;
|
|
101
113
|
hoverable?: boolean | undefined;
|
|
102
114
|
pressable?: boolean | undefined;
|
|
103
115
|
focusable?: boolean | undefined;
|
|
104
116
|
circular?: boolean | undefined;
|
|
105
|
-
|
|
117
|
+
padded?: boolean | undefined;
|
|
106
118
|
elevate?: boolean | undefined;
|
|
107
119
|
bordered?: number | boolean | undefined;
|
|
108
120
|
transparent?: boolean | undefined;
|
|
@@ -110,15 +122,17 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("react-nativ
|
|
|
110
122
|
}, "size"> & {
|
|
111
123
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
112
124
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
113
|
-
fullscreen?: boolean | undefined;
|
|
114
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
125
|
+
readonly fullscreen?: boolean | undefined;
|
|
126
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
115
127
|
} & {
|
|
116
128
|
fontFamily?: unknown;
|
|
129
|
+
backgrounded?: boolean | undefined;
|
|
130
|
+
radiused?: boolean | undefined;
|
|
117
131
|
hoverable?: boolean | undefined;
|
|
118
132
|
pressable?: boolean | undefined;
|
|
119
133
|
focusable?: boolean | undefined;
|
|
120
134
|
circular?: boolean | undefined;
|
|
121
|
-
|
|
135
|
+
padded?: boolean | undefined;
|
|
122
136
|
elevate?: boolean | undefined;
|
|
123
137
|
bordered?: number | boolean | undefined;
|
|
124
138
|
transparent?: boolean | undefined;
|
|
@@ -133,15 +147,17 @@ declare const Progress: React.ForwardRefExoticComponent<Omit<import("react-nativ
|
|
|
133
147
|
Indicator: React.ForwardRefExoticComponent<ProgressIndicatorProps & React.RefAttributes<TamaguiElement>>;
|
|
134
148
|
};
|
|
135
149
|
declare const Root: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
136
|
-
fullscreen?: boolean | undefined;
|
|
137
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
150
|
+
readonly fullscreen?: boolean | undefined;
|
|
151
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
138
152
|
} & {
|
|
139
153
|
fontFamily?: unknown;
|
|
154
|
+
backgrounded?: boolean | undefined;
|
|
155
|
+
radiused?: boolean | undefined;
|
|
140
156
|
hoverable?: boolean | undefined;
|
|
141
157
|
pressable?: boolean | undefined;
|
|
142
158
|
focusable?: boolean | undefined;
|
|
143
159
|
circular?: boolean | undefined;
|
|
144
|
-
|
|
160
|
+
padded?: boolean | undefined;
|
|
145
161
|
elevate?: boolean | undefined;
|
|
146
162
|
bordered?: number | boolean | undefined;
|
|
147
163
|
transparent?: boolean | undefined;
|
|
@@ -149,15 +165,17 @@ declare const Root: React.ForwardRefExoticComponent<Omit<import("react-native").
|
|
|
149
165
|
}, "size"> & {
|
|
150
166
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
151
167
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
152
|
-
fullscreen?: boolean | undefined;
|
|
153
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
168
|
+
readonly fullscreen?: boolean | undefined;
|
|
169
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
154
170
|
} & {
|
|
155
171
|
fontFamily?: unknown;
|
|
172
|
+
backgrounded?: boolean | undefined;
|
|
173
|
+
radiused?: boolean | undefined;
|
|
156
174
|
hoverable?: boolean | undefined;
|
|
157
175
|
pressable?: boolean | undefined;
|
|
158
176
|
focusable?: boolean | undefined;
|
|
159
177
|
circular?: boolean | undefined;
|
|
160
|
-
|
|
178
|
+
padded?: boolean | undefined;
|
|
161
179
|
elevate?: boolean | undefined;
|
|
162
180
|
bordered?: number | boolean | undefined;
|
|
163
181
|
transparent?: boolean | undefined;
|
|
@@ -165,15 +183,17 @@ declare const Root: React.ForwardRefExoticComponent<Omit<import("react-native").
|
|
|
165
183
|
}, "size"> & {
|
|
166
184
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
167
185
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
168
|
-
fullscreen?: boolean | undefined;
|
|
169
|
-
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
186
|
+
readonly fullscreen?: boolean | undefined;
|
|
187
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
170
188
|
} & {
|
|
171
189
|
fontFamily?: unknown;
|
|
190
|
+
backgrounded?: boolean | undefined;
|
|
191
|
+
radiused?: boolean | undefined;
|
|
172
192
|
hoverable?: boolean | undefined;
|
|
173
193
|
pressable?: boolean | undefined;
|
|
174
194
|
focusable?: boolean | undefined;
|
|
175
195
|
circular?: boolean | undefined;
|
|
176
|
-
|
|
196
|
+
padded?: boolean | undefined;
|
|
177
197
|
elevate?: boolean | undefined;
|
|
178
198
|
bordered?: number | boolean | undefined;
|
|
179
199
|
transparent?: boolean | undefined;
|
package/types/Progress.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../src/Progress.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAgC,MAAM,eAAe,CAAA;AAEtE,OAAO,EAAkB,WAAW,EAAiB,MAAM,iBAAiB,CAAA;AAC5E,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;AAQvD,QAAA,MAAM,iBAAiB,+FAkBtB,CAAA;AA6DD,aAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../src/Progress.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAgC,MAAM,eAAe,CAAA;AAEtE,OAAO,EAAkB,WAAW,EAAiB,MAAM,iBAAiB,CAAA;AAC5E,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;AAQvD,QAAA,MAAM,iBAAiB,+FAkBtB,CAAA;AA6DD,aAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBjB,CAAA;AAEF,aAAK,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;;;CA4CnD,CAAA;AAwBD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAtEA,MAAM,GAAG,IAAI,GAAG,SAAS;;0BAEX,MAAM,OAAO,MAAM,GAAG,MAAM;;;CAoE/B,CAAA;AACrB,QAAA,MAAM,SAAS,+FAAoB,CAAA;AAEnC,OAAO,EACL,mBAAmB,EAEnB,QAAQ,EACR,iBAAiB,EAEjB,IAAI,EACJ,SAAS,GACV,CAAA;AACD,YAAY,EAAE,aAAa,EAAE,sBAAsB,EAAE,CAAA"}
|