@tamagui/stacks 1.120.2 → 1.121.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 +4 -4
- package/src/Stacks.tsx +1 -1
- package/types/SizableStack.d.ts +3 -3
- package/types/Stacks.d.ts +3 -3
- package/types/ThemeableStack.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/stacks",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tamagui/core": "1.
|
|
39
|
+
"@tamagui/core": "1.121.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@tamagui/build": "1.
|
|
43
|
-
"@tamagui/get-button-sized": "1.
|
|
42
|
+
"@tamagui/build": "1.121.0",
|
|
43
|
+
"@tamagui/get-button-sized": "1.121.0",
|
|
44
44
|
"react": "*"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
package/src/Stacks.tsx
CHANGED
package/types/SizableStack.d.ts
CHANGED
|
@@ -2,14 +2,14 @@ import type { GetProps } from '@tamagui/core';
|
|
|
2
2
|
export declare const SizableStack: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
3
3
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
4
4
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
5
|
-
fullscreen?: boolean | undefined;
|
|
6
|
-
circular?: boolean | undefined;
|
|
7
5
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
8
6
|
top?: number;
|
|
9
7
|
bottom?: number;
|
|
10
8
|
left?: number;
|
|
11
9
|
right?: number;
|
|
12
|
-
} | undefined;
|
|
10
|
+
} | null | undefined;
|
|
11
|
+
fullscreen?: boolean | undefined;
|
|
12
|
+
circular?: boolean | undefined;
|
|
13
13
|
hoverTheme?: boolean | undefined;
|
|
14
14
|
pressTheme?: boolean | undefined;
|
|
15
15
|
focusTheme?: boolean | undefined;
|
package/types/Stacks.d.ts
CHANGED
|
@@ -17,18 +17,18 @@ type Insets = {
|
|
|
17
17
|
};
|
|
18
18
|
export declare const YStack: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
19
19
|
elevation?: number | SizeTokens | undefined;
|
|
20
|
+
inset?: number | SizeTokens | Insets | null | undefined;
|
|
20
21
|
fullscreen?: boolean | undefined;
|
|
21
|
-
inset?: number | SizeTokens | Insets | undefined;
|
|
22
22
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
23
23
|
export declare const XStack: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
24
24
|
elevation?: number | SizeTokens | undefined;
|
|
25
|
+
inset?: number | SizeTokens | Insets | null | undefined;
|
|
25
26
|
fullscreen?: boolean | undefined;
|
|
26
|
-
inset?: number | SizeTokens | Insets | undefined;
|
|
27
27
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
28
28
|
export declare const ZStack: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
29
29
|
elevation?: number | SizeTokens | undefined;
|
|
30
|
+
inset?: number | SizeTokens | Insets | null | undefined;
|
|
30
31
|
fullscreen?: boolean | undefined;
|
|
31
|
-
inset?: number | SizeTokens | Insets | undefined;
|
|
32
32
|
}, import("@tamagui/core").StaticConfigPublic & {
|
|
33
33
|
neverFlatten: true;
|
|
34
34
|
isZStack: true;
|
|
@@ -114,15 +114,15 @@ export declare const themeableVariants: {
|
|
|
114
114
|
};
|
|
115
115
|
export declare const ThemeableStack: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
116
116
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
117
|
-
transparent?: boolean | undefined;
|
|
118
|
-
fullscreen?: boolean | undefined;
|
|
119
|
-
circular?: boolean | undefined;
|
|
120
117
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
121
118
|
top?: number;
|
|
122
119
|
bottom?: number;
|
|
123
120
|
left?: number;
|
|
124
121
|
right?: number;
|
|
125
|
-
} | undefined;
|
|
122
|
+
} | null | undefined;
|
|
123
|
+
transparent?: boolean | undefined;
|
|
124
|
+
fullscreen?: boolean | undefined;
|
|
125
|
+
circular?: boolean | undefined;
|
|
126
126
|
hoverTheme?: boolean | undefined;
|
|
127
127
|
pressTheme?: boolean | undefined;
|
|
128
128
|
focusTheme?: boolean | undefined;
|