@seed-design/react 0.0.1-rc.1 → 0.0.1-rc.2
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/lib/components/Icon/Icon.d.ts.map +1 -1
- package/lib/index.js +0 -1
- package/lib/index.js.map +2 -2
- package/lib/index.mjs +0 -1
- package/lib/index.mjs.map +2 -2
- package/package.json +2 -2
- package/src/components/Icon/Icon.tsx +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seed-design/react",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/daangn/seed-design.git",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@radix-ui/react-slot": "^1.1.1",
|
|
43
43
|
"@radix-ui/react-use-controllable-state": "1.1.0",
|
|
44
44
|
"@radix-ui/react-use-layout-effect": "^1.1.0",
|
|
45
|
-
"@seed-design/css": "0.0.1-rc.
|
|
45
|
+
"@seed-design/css": "0.0.1-rc.1",
|
|
46
46
|
"@seed-design/dom-utils": "0.0.1-rc.0",
|
|
47
47
|
"@seed-design/react-avatar": "0.0.1-rc.0",
|
|
48
48
|
"@seed-design/react-checkbox": "0.0.1-rc.0",
|
|
@@ -132,7 +132,6 @@ export function withIconRequired<P extends {}, R>(
|
|
|
132
132
|
enabledPredicate: (props: React.PropsWithoutRef<P>) => boolean,
|
|
133
133
|
) {
|
|
134
134
|
const Node = forwardRef<R, P>((props, ref) => {
|
|
135
|
-
console.log(props);
|
|
136
135
|
const enabled = enabledPredicate(props);
|
|
137
136
|
return (
|
|
138
137
|
<IconRequired enabled={enabled}>
|