naria-ui 0.1.2 → 0.1.3

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/app/page.tsx CHANGED
@@ -1,10 +1,10 @@
1
- import {Button} from "@/components";
1
+ import {Button} from "naria-ui";
2
2
 
3
3
 
4
4
  export default function Home() {
5
5
  return (
6
6
  <>
7
- <Button value={'asda'} />
7
+ <Button value={'asda'} isLoading = {true} />
8
8
  </>
9
9
  );
10
10
  }
@@ -1,2 +1,2 @@
1
- export { default as Button } from './button';
2
- export type { ButtonProps } from './button';
1
+ export {default as Button} from './button';
2
+ export type {ButtonProps} from './button';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naria-ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "next dev --turbopack",
package/tsconfig.json CHANGED
@@ -19,7 +19,8 @@
19
19
  }
20
20
  ],
21
21
  "paths": {
22
- "@/*": ["./*"]
22
+ "@/*": ["./*"],
23
+ "naria-ui": ["components/index.ts"]
23
24
  }
24
25
  },
25
26
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],