@bouko/react 3.0.7 → 3.0.9

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.
@@ -0,0 +1 @@
1
+ export { default as CircleFade } from "./circle";
@@ -0,0 +1 @@
1
+ export { default as CircleFade } from "./circle";
@@ -0,0 +1,10 @@
1
+ type Props = {
2
+ className?: string;
3
+ style?: {
4
+ top?: string;
5
+ left?: string;
6
+ transform?: string;
7
+ };
8
+ };
9
+ export default function CircleFade({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { cn } from "@bouko/style";
3
+ export default function CircleFade({ className, style }) {
4
+ return (_jsx("div", { className: cn("absolute size-24 bg-radial from-background", className), style: style }));
5
+ }
@@ -16,6 +16,7 @@ export { default as Dropdown } from "./dropdown/normal";
16
16
  export { default as FileUploader } from "./upload/file";
17
17
  export { ImageUploader } from "./upload/image";
18
18
  export * from "./animate";
19
+ export * from "./fade/_";
19
20
  export * from "./list";
20
21
  export * from "./carousel";
21
22
  export * from "./media-row";
@@ -16,6 +16,7 @@ export { default as Dropdown } from "./dropdown/normal";
16
16
  export { default as FileUploader } from "./upload/file";
17
17
  export { ImageUploader } from "./upload/image";
18
18
  export * from "./animate";
19
+ export * from "./fade/_";
19
20
  export * from "./list";
20
21
  export * from "./carousel";
21
22
  export * from "./media-row";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { createContext, useContext } from "react";
2
3
  export const Context = createContext({
3
4
  session: null,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
 
3
3
  "name": "@bouko/react",
4
- "version": "3.0.7",
4
+ "version": "3.0.9",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "MIT",