@meowdown/react 0.0.2 → 0.1.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/dist/index.d.ts CHANGED
@@ -2,6 +2,6 @@
2
2
  declare function MyReactComponent(): import("react").JSX.Element;
3
3
  //#endregion
4
4
  //#region src/index.d.ts
5
- declare const b: number;
5
+ declare const b: any;
6
6
  //#endregion
7
7
  export { MyReactComponent, b };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import{a as e}from"@meowdown/core";import{useState as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";function i(){let[e,i]=t(0);return r(`div`,{children:[n(`h1`,{children:`Hello, React!`}),r(`p`,{children:[`Count: `,e]}),n(`p`,{onClick:()=>i(e+1),children:`This is a simple React component.`})]})}const a=1+e;export{i as MyReactComponent,a as b};
1
+ import{a as e}from"@meowdown/core";import{useState as t}from"react";import{jsx as n,jsxs as r}from"react/jsx-runtime";function i(){let[e,i]=t(0);return r(`div`,{children:[n(`h1`,{children:`Hello, React!`}),r(`p`,{children:[`Count: `,e]}),n(`p`,{onClick:()=>i(e+1),children:`This is a simple React component.`})]})}const a=2+e;export{i as MyReactComponent,a as b};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meowdown/react",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.1.0",
5
5
  "license": "GPL-3.0-only",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "./dist/**/*.d.ts"
19
19
  ],
20
20
  "dependencies": {
21
- "@meowdown/core": "0.0.2"
21
+ "@meowdown/core": "0.1.0"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "react": "*",