@ztwoint/z-ui 0.1.81 → 0.1.82
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
3
|
+
declare function Z2RadioGroup({ ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function Z2RadioGroupItem({ className, children, size, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Item> & {
|
|
5
|
+
size?: 'sm' | 'default' | 'lg';
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function Z2RadioGroupIndicator({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Indicator>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { Z2RadioGroup, Z2RadioGroupItem, Z2RadioGroupIndicator };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ztwoint/z-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.82",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
92
92
|
"@radix-ui/react-hover-card": "^1.1.14",
|
|
93
93
|
"@radix-ui/react-popover": "^1.1.14",
|
|
94
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
94
95
|
"@radix-ui/react-select": "^2.2.5",
|
|
95
96
|
"@radix-ui/react-slot": "^1.2.3",
|
|
96
97
|
"@radix-ui/react-tabs": "^1.1.12",
|