@bouko/react 2.8.8 → 2.9.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import type { Component } from "../../core/types";
|
|
3
3
|
export type ButtonProps = Component & {
|
|
4
|
-
variant?: "primary" | "outline" | "ghost" | "secondary";
|
|
4
|
+
variant?: "primary" | "outline" | "ghost" | "secondary" | "error";
|
|
5
5
|
size?: "xs" | "sm" | "md" | "lg";
|
|
6
6
|
icon?: ReactNode;
|
|
7
7
|
action?: () => void;
|
|
@@ -25,10 +25,11 @@ const styles = tv({
|
|
|
25
25
|
primary: "bg-primary border-primary-dark",
|
|
26
26
|
outline: "bg-transparent border-accent hover:border-accent-dark text-primary",
|
|
27
27
|
ghost: "bg-transparent border-transparent text-accent hover:brightness-110",
|
|
28
|
-
secondary: "bg-background-dark dark:bg-background-light border-border-dark dark:border-border-light text-background-darker dark:text-primary"
|
|
28
|
+
secondary: "bg-background-dark dark:bg-background-light border-border-dark dark:border-border-light text-background-darker dark:text-primary",
|
|
29
|
+
error: "bg-error border-error-dark"
|
|
29
30
|
},
|
|
30
31
|
size: {
|
|
31
|
-
xs: "px-
|
|
32
|
+
xs: "gap-1 px-2 py-1 text-xs font-medium",
|
|
32
33
|
circle: "px-2 py-2 text-xs rounded-full",
|
|
33
34
|
sm: "px-3 py-2 text-xs sm:text-sm",
|
|
34
35
|
md: "px-4 py-2",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { ColumnBox, RowBox } from "./layout/flex";
|
|
3
3
|
import Badge from "./text/badge";
|
|
4
|
-
export const MediaRow = ({ media, title, subtitle, badge, styles = {}, }) => (_jsxs(RowBox, { style: `items-center gap-3 ${styles.container ?? ""}`, children: [_jsx("img", { src: media, className: "size-10 border border-border rounded", alt: title }), _jsxs(ColumnBox, { style: "gap-px min-w-0", children: [_jsxs(RowBox, { style: "items-center gap-2 min-w-0", children: [_jsx("span", { className: `text-primary text-sm font-semibold truncate ${styles.title ?? ""}`, children: title }), badge && _jsx(Badge, { size: "sm", children: badge })] }), subtitle && (_jsx("span", { className: `text-xs text-primary-dark ${styles.subtitle}`, children: subtitle }))] })] }));
|
|
4
|
+
export const MediaRow = ({ media, title, subtitle, badge, styles = {}, }) => (_jsxs(RowBox, { style: `items-center gap-3 ${styles.container ?? ""}`, children: [_jsx("img", { src: media, className: "size-10 w-10 h-10 border border-border rounded", alt: title }), _jsxs(ColumnBox, { style: "gap-px min-w-0", children: [_jsxs(RowBox, { style: "items-center gap-2 min-w-0", children: [_jsx("span", { className: `text-primary text-sm font-semibold truncate ${styles.title ?? ""}`, children: title }), badge && _jsx(Badge, { size: "sm", children: badge })] }), subtitle && (_jsx("span", { className: `text-xs text-primary-dark ${styles.subtitle}`, children: subtitle }))] })] }));
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Dispatch, SetStateAction } from "react";
|
|
2
|
+
type RowProps<T> = {
|
|
3
|
+
data: T;
|
|
4
|
+
hovered: boolean;
|
|
5
|
+
setHovered: Dispatch<SetStateAction<number | null>>;
|
|
6
|
+
index: number;
|
|
7
|
+
};
|
|
2
8
|
type Props<T> = {
|
|
3
9
|
style?: string;
|
|
4
10
|
items: T[];
|
|
5
|
-
element:
|
|
6
|
-
data: T;
|
|
7
|
-
hovered: boolean;
|
|
8
|
-
setHovered: Dispatch<SetStateAction<number | null>>;
|
|
9
|
-
index: number;
|
|
10
|
-
key: number;
|
|
11
|
-
}) => JSX.Element;
|
|
11
|
+
element: React.ComponentType<RowProps<T>>;
|
|
12
12
|
};
|
|
13
|
-
export declare function ScrollBox<T>({ style, items, element }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare function ScrollBox<T>({ style, items, element: Row }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export {};
|
|
@@ -2,13 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
import { cn } from "@bouko/style";
|
|
4
4
|
import { ColumnBox } from "./layout/flex";
|
|
5
|
-
export function ScrollBox({ style, items, element }) {
|
|
5
|
+
export function ScrollBox({ style, items, element: Row }) {
|
|
6
6
|
const [hoveredIndex, setHoveredIndex] = useState(null);
|
|
7
|
-
return (_jsx(ColumnBox, { style: cn("grow gap-1 w-full overflow-y-auto", style), children: items.map((x, i) => (
|
|
8
|
-
data: x,
|
|
9
|
-
hovered: hoveredIndex === i,
|
|
10
|
-
setHovered: setHoveredIndex,
|
|
11
|
-
index: i,
|
|
12
|
-
key: i
|
|
13
|
-
}))) }));
|
|
7
|
+
return (_jsx(ColumnBox, { style: cn("grow gap-1 w-full overflow-y-auto", style), children: items.map((x, i) => (_jsx(Row, { data: x, hovered: hoveredIndex === i, setHovered: setHoveredIndex, index: i }, i))) }));
|
|
14
8
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
|
|
3
3
|
"name": "@bouko/react",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.9.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@bouko/audio": "^0.1.0",
|
|
24
24
|
"@bouko/form": "^0.5.7",
|
|
25
|
+
"@bouko/notify": "^0.1.8",
|
|
25
26
|
"@bouko/style": "^0.1.7",
|
|
26
27
|
"@bouko/time": "^0.1.3",
|
|
27
28
|
"@bouko/ts": "^0.3.5",
|