@tamagui/toggle-group 3.0.0-beta.745.1 → 3.0.0-beta.748.1
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 +16 -16
- package/types/Toggle.d.ts +2 -2
- package/types/ToggleGroup.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/toggle-group",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.748.1",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"clean:build": "tamagui-build clean:build"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@tamagui/compose-refs": "3.0.0-beta.
|
|
38
|
-
"@tamagui/constants": "3.0.0-beta.
|
|
39
|
-
"@tamagui/create-context": "3.0.0-beta.
|
|
40
|
-
"@tamagui/focusable": "3.0.0-beta.
|
|
41
|
-
"@tamagui/font-size": "3.0.0-beta.
|
|
42
|
-
"@tamagui/get-token": "3.0.0-beta.
|
|
43
|
-
"@tamagui/helpers": "3.0.0-beta.
|
|
44
|
-
"@tamagui/helpers-tamagui": "3.0.0-beta.
|
|
45
|
-
"@tamagui/roving-focus": "3.0.0-beta.
|
|
46
|
-
"@tamagui/size": "3.0.0-beta.
|
|
47
|
-
"@tamagui/stacks": "3.0.0-beta.
|
|
48
|
-
"@tamagui/use-controllable-state": "3.0.0-beta.
|
|
49
|
-
"@tamagui/use-direction": "3.0.0-beta.
|
|
50
|
-
"@tamagui/web": "3.0.0-beta.
|
|
37
|
+
"@tamagui/compose-refs": "3.0.0-beta.748.1",
|
|
38
|
+
"@tamagui/constants": "3.0.0-beta.748.1",
|
|
39
|
+
"@tamagui/create-context": "3.0.0-beta.748.1",
|
|
40
|
+
"@tamagui/focusable": "3.0.0-beta.748.1",
|
|
41
|
+
"@tamagui/font-size": "3.0.0-beta.748.1",
|
|
42
|
+
"@tamagui/get-token": "3.0.0-beta.748.1",
|
|
43
|
+
"@tamagui/helpers": "3.0.0-beta.748.1",
|
|
44
|
+
"@tamagui/helpers-tamagui": "3.0.0-beta.748.1",
|
|
45
|
+
"@tamagui/roving-focus": "3.0.0-beta.748.1",
|
|
46
|
+
"@tamagui/size": "3.0.0-beta.748.1",
|
|
47
|
+
"@tamagui/stacks": "3.0.0-beta.748.1",
|
|
48
|
+
"@tamagui/use-controllable-state": "3.0.0-beta.748.1",
|
|
49
|
+
"@tamagui/use-direction": "3.0.0-beta.748.1",
|
|
50
|
+
"@tamagui/web": "3.0.0-beta.748.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "3.0.0-beta.
|
|
53
|
+
"@tamagui/build": "3.0.0-beta.748.1",
|
|
54
54
|
"react": "19.2.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
package/types/Toggle.d.ts
CHANGED
|
@@ -6,11 +6,11 @@ export declare const ToggleFrame: React.FunctionComponent<Omit<import("@tamagui/
|
|
|
6
6
|
readonly activeStyle: 'style';
|
|
7
7
|
};
|
|
8
8
|
}>> | undefined;
|
|
9
|
-
}> & {
|
|
9
|
+
}> & import("@tamagui/web").WithFlatVariantValues<{
|
|
10
10
|
active?: boolean | undefined;
|
|
11
11
|
defaultActiveStyle?: boolean | undefined;
|
|
12
12
|
size?: number | import("@tamagui/web").Size | undefined;
|
|
13
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
13
|
+
}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
14
14
|
readonly activeStyle?: Partial<import("@tamagui/web").InferStyleProps<import("@tamagui/web").TamaguiComponent<import("@tamagui/web").ViewProps, TamaguiElement, import("@tamagui/web").StackNonStyleProps, import("@tamagui/web").StackStyleBase, {}, {}>, {
|
|
15
15
|
accept: {
|
|
16
16
|
readonly activeStyle: 'style';
|
package/types/ToggleGroup.d.ts
CHANGED
|
@@ -37,11 +37,11 @@ declare const ToggleGroup: ((props: ScopedProps<ToggleGroupProps> & import("@tam
|
|
|
37
37
|
readonly activeStyle: 'style';
|
|
38
38
|
};
|
|
39
39
|
}>> | undefined;
|
|
40
|
-
}> & {
|
|
40
|
+
}> & import("@tamagui/web").WithFlatVariantValues<{
|
|
41
41
|
active?: boolean | undefined;
|
|
42
42
|
defaultActiveStyle?: boolean | undefined;
|
|
43
43
|
size?: number | import("@tamagui/web").Size | undefined;
|
|
44
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
44
|
+
}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
45
45
|
readonly activeStyle?: Partial<import("@tamagui/web").InferStyleProps<import("@tamagui/web").TamaguiComponent<import("@tamagui/web").ViewProps, TamaguiElement, import("@tamagui/web").StackNonStyleProps, import("@tamagui/web").StackStyleBase, {}, {}>, {
|
|
46
46
|
accept: {
|
|
47
47
|
readonly activeStyle: 'style';
|
|
@@ -59,11 +59,11 @@ declare const ToggleGroup: ((props: ScopedProps<ToggleGroupProps> & import("@tam
|
|
|
59
59
|
readonly activeStyle: 'style';
|
|
60
60
|
};
|
|
61
61
|
}>> | undefined;
|
|
62
|
-
}> & {
|
|
62
|
+
}> & import("@tamagui/web").WithFlatVariantValues<{
|
|
63
63
|
active?: boolean | undefined;
|
|
64
64
|
defaultActiveStyle?: boolean | undefined;
|
|
65
65
|
size?: number | import("@tamagui/web").Size | undefined;
|
|
66
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
66
|
+
}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
67
67
|
readonly activeStyle?: Partial<import("@tamagui/web").InferStyleProps<import("@tamagui/web").TamaguiComponent<import("@tamagui/web").ViewProps, TamaguiElement, import("@tamagui/web").StackNonStyleProps, import("@tamagui/web").StackStyleBase, {}, {}>, {
|
|
68
68
|
accept: {
|
|
69
69
|
readonly activeStyle: 'style';
|
|
@@ -111,7 +111,7 @@ interface ToggleGroupImplMultipleProps extends ToggleGroupImplProps {
|
|
|
111
111
|
disableDeactivation?: never;
|
|
112
112
|
}
|
|
113
113
|
type RovingFocusGroupProps = React.ComponentPropsWithoutRef<typeof RovingFocusGroup>;
|
|
114
|
-
declare const ToggleGroupFrame: React.FunctionComponent<Omit<import("@tamagui/web").StackNonStyleProps, keyof import("@tamagui/web").StackStyleBase> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & {
|
|
114
|
+
declare const ToggleGroupFrame: React.FunctionComponent<Omit<import("@tamagui/web").StackNonStyleProps, keyof import("@tamagui/web").StackStyleBase> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & import("@tamagui/web").WithFlatVariantValues<{}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & {
|
|
115
115
|
ref?: React.Ref<TamaguiElement> | undefined;
|
|
116
116
|
}> & import("@tamagui/web").StaticComponentObject<import("@tamagui/web").TamaDefer, TamaguiElement, import("@tamagui/web").StackNonStyleProps, import("@tamagui/web").StackStyleBase, {}, import("@tamagui/web").StaticConfigPublic> & Omit<import("@tamagui/web").StaticConfigPublic, "staticConfig"> & {
|
|
117
117
|
__tama: [import("@tamagui/web").TamaDefer, TamaguiElement, import("@tamagui/web").StackNonStyleProps, import("@tamagui/web").StackStyleBase, {}, import("@tamagui/web").StaticConfigPublic];
|