@tamagui/collapsible 1.0.1-beta.167 → 1.0.1-beta.168
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/Collapsible.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/collapsible",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.168",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
"watch": "tamagui-build --watch"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@tamagui/compose-refs": "^1.0.1-beta.
|
|
21
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
22
|
-
"@tamagui/create-context": "^1.0.1-beta.
|
|
23
|
-
"@tamagui/polyfill-dev": "^1.0.1-beta.
|
|
24
|
-
"@tamagui/stacks": "^1.0.1-beta.
|
|
25
|
-
"@tamagui/use-controllable-state": "^1.0.1-beta.
|
|
20
|
+
"@tamagui/compose-refs": "^1.0.1-beta.168",
|
|
21
|
+
"@tamagui/core": "^1.0.1-beta.168",
|
|
22
|
+
"@tamagui/create-context": "^1.0.1-beta.168",
|
|
23
|
+
"@tamagui/polyfill-dev": "^1.0.1-beta.168",
|
|
24
|
+
"@tamagui/stacks": "^1.0.1-beta.168",
|
|
25
|
+
"@tamagui/use-controllable-state": "^1.0.1-beta.168"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": "*",
|
|
29
29
|
"react-dom": "*"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
32
|
+
"@tamagui/build": "^1.0.1-beta.168",
|
|
33
33
|
"react": "*",
|
|
34
34
|
"react-dom": "*"
|
|
35
35
|
},
|
package/types/Collapsible.d.ts
CHANGED
|
@@ -12,6 +12,10 @@ interface CollapsibleTriggerProps extends StackProps {
|
|
|
12
12
|
}
|
|
13
13
|
declare const CollapsibleTrigger: React.ForwardRefExoticComponent<CollapsibleTriggerProps & React.RefAttributes<TamaguiElement>>;
|
|
14
14
|
interface CollapsibleContentProps extends Omit<CollapsibleContentImplProps, 'present'> {
|
|
15
|
+
/**
|
|
16
|
+
* Used to force mounting when more control is needed. Useful when
|
|
17
|
+
* controlling animation with React animation libraries.
|
|
18
|
+
*/
|
|
15
19
|
forceMount?: true;
|
|
16
20
|
}
|
|
17
21
|
declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsibleContentProps & React.RefAttributes<TamaguiElement>>;
|