@seed-design/react 0.0.21 → 0.0.23

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/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './components';
2
+ export type { StyleProps as unstable_StyleProps } from './utils/styled';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAG7B,YAAY,EAAE,UAAU,IAAI,mBAAmB,EAAE,MAAM,gBAAgB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/react",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
@@ -56,12 +56,12 @@
56
56
  "clsx": "^2.1.1"
57
57
  },
58
58
  "peerDependencies": {
59
- "@seed-design/css": "0.0.21",
59
+ "@seed-design/css": "0.0.23",
60
60
  "react": ">=18.0.0",
61
61
  "react-dom": ">=18.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@seed-design/css": "0.0.21",
64
+ "@seed-design/css": "0.0.23",
65
65
  "@vitejs/plugin-react": "^4.4.1",
66
66
  "globby": "^14.1.0",
67
67
  "react": "^18.3.1",
package/src/index.ts CHANGED
@@ -1 +1,4 @@
1
1
  export * from "./components";
2
+
3
+ // unstable_StyleProps is unstable and will be changed or removed without prior notice
4
+ export type { StyleProps as unstable_StyleProps } from "./utils/styled";