notionsoft-ui 1.0.14 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notionsoft-ui",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "A React UI component installer (shadcn-style). Installs components directly into your project.",
5
5
  "bin": {
6
6
  "notionsoft-ui": "./cli/index.cjs"
@@ -0,0 +1,3 @@
1
+ import AnimatedItem from "./animated-item";
2
+
3
+ export default AnimatedItem;
@@ -0,0 +1,3 @@
1
+ import BooleanStatusButton from "./BooleanStatusButton";
2
+
3
+ export default BooleanStatusButton;
@@ -0,0 +1,3 @@
1
+ import Button from "./button";
2
+
3
+ export default Button;
@@ -1,3 +1,3 @@
1
- import { ButtonSpinner } from "./button-spinner";
1
+ import ButtonSpinner from "./button-spinner";
2
2
 
3
3
  export default ButtonSpinner;
@@ -0,0 +1,3 @@
1
+ import CircleLoader from "./circle-loader";
2
+
3
+ export default CircleLoader;
@@ -0,0 +1,3 @@
1
+ import Input from "./input";
2
+
3
+ export default Input;
@@ -1,7 +1,7 @@
1
1
  import React, { useMemo } from "react";
2
2
  // import { cn } from "@/utils/cn";
3
3
  import { cn } from "../../utils/cn";
4
- import AnimatedItem from "@/components/notion-ui/animated-item/animated-item";
4
+ import AnimatedItem from "@/components/notion-ui/animated-item";
5
5
  // import AnimatedItem from "../animated-item";
6
6
 
7
7
  export type NastranInputSize = "sm" | "md" | "lg";
@@ -0,0 +1,3 @@
1
+ import AnimatedSheet from "./AnimatedSheet";
2
+
3
+ export default AnimatedSheet;
@@ -0,0 +1,3 @@
1
+ import ShiningText from "./shining-text";
2
+
3
+ export default ShiningText;