@godxjp/ui 13.11.2 → 13.12.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.
@@ -65,6 +65,22 @@ export declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttri
65
65
  /** Full-bleed footer (Ant Design `actions` bar). */
66
66
  flush?: boolean;
67
67
  } & React.RefAttributes<HTMLDivElement>>;
68
+ export type CardBarProps = React.HTMLAttributes<HTMLDivElement> & {
69
+ /** Right-aligned actions slot (settings/save), Ant `tabBarExtraContent`-style. */
70
+ extra?: React.ReactNode;
71
+ };
72
+ /**
73
+ * CardBar — a horizontal bar (view tabs, toolbar, filter chips) that can sit at
74
+ * ANY position inside a Card. It draws its own separators FROM its position: a
75
+ * top bar gets a bottom border, a bottom bar gets a top border, a middle bar
76
+ * gets both, and a sole child gets none (the card border is enough). The main
77
+ * area scrolls horizontally; the `extra` slot is pinned to the inline-end edge
78
+ * for actions (column settings, save view, …).
79
+ */
80
+ export declare const CardBar: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
81
+ /** Right-aligned actions slot (settings/save), Ant `tabBarExtraContent`-style. */
82
+ extra?: React.ReactNode;
83
+ } & React.RefAttributes<HTMLDivElement>>;
68
84
  export type StatCardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants> & {
69
85
  label: React.ReactNode;
70
86
  value: React.ReactNode;
@@ -77,6 +77,13 @@ const CardFooter = React.forwardRef(
77
77
  )
78
78
  );
79
79
  CardFooter.displayName = "CardFooter";
80
+ const CardBar = React.forwardRef(
81
+ ({ className, children, extra, ...props }, ref) => /* @__PURE__ */ jsxs("div", { ref, "data-slot": "card-bar", className: cn("ui-card-bar", className), ...props, children: [
82
+ /* @__PURE__ */ jsx("div", { "data-slot": "card-bar-main", className: "ui-card-bar-main", children }),
83
+ extra != null ? /* @__PURE__ */ jsx("div", { "data-slot": "card-bar-extra", className: "ui-card-bar-extra", children: extra }) : null
84
+ ] })
85
+ );
86
+ CardBar.displayName = "CardBar";
80
87
  function getDeltaTone(delta, inverse) {
81
88
  const text = typeof delta === "string" || typeof delta === "number" ? String(delta).trim() : "";
82
89
  const sign = text.match(/^[+\-−]/)?.[0];
@@ -143,6 +150,7 @@ CardAction.displayName = "CardAction";
143
150
  export {
144
151
  Card,
145
152
  CardAction,
153
+ CardBar,
146
154
  CardContent,
147
155
  CardCover,
148
156
  CardDescription,
@@ -1,8 +1,8 @@
1
1
  export { Badge } from "./badge";
2
2
  export type { BadgeProps } from "./badge";
3
3
  export { Avatar, AvatarImage, AvatarFallback } from "./avatar";
4
- export { Card, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, CardAction, StatCard, } from "./card";
5
- export type { StatCardProps } from "./card";
4
+ export { Card, CardBar, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, CardAction, StatCard, } from "./card";
5
+ export type { StatCardProps, CardBarProps } from "./card";
6
6
  export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "./table";
7
7
  export { Descriptions } from "./descriptions";
8
8
  export { DataTable } from "./data-table";
@@ -2,6 +2,7 @@ import { Badge } from "./badge";
2
2
  import { Avatar, AvatarImage, AvatarFallback } from "./avatar";
3
3
  import {
4
4
  Card,
5
+ CardBar,
5
6
  CardContent,
6
7
  CardCover,
7
8
  CardDescription,
@@ -51,6 +52,7 @@ export {
51
52
  Badge,
52
53
  Card,
53
54
  CardAction,
55
+ CardBar,
54
56
  CardContent,
55
57
  CardCover,
56
58
  CardDescription,
@@ -914,6 +914,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
914
914
  readonly file: "components/data-display/card.tsx";
915
915
  readonly vocabulary: readonly ["ClassNameProp", "ChildrenProp"];
916
916
  };
917
+ readonly CardBarProp: {
918
+ readonly group: "data-display";
919
+ readonly file: "components/data-display/card.tsx";
920
+ readonly vocabulary: readonly ["ClassNameProp", "ChildrenProp"];
921
+ };
917
922
  readonly StatCardProp: {
918
923
  readonly group: "data-display";
919
924
  readonly file: "components/data-display/card.tsx";
@@ -966,6 +966,11 @@ const COMPONENT_PROP_REGISTRY = {
966
966
  file: "components/data-display/card.tsx",
967
967
  vocabulary: ["ClassNameProp", "ChildrenProp"]
968
968
  },
969
+ CardBarProp: {
970
+ group: "data-display",
971
+ file: "components/data-display/card.tsx",
972
+ vocabulary: ["ClassNameProp", "ChildrenProp"]
973
+ },
969
974
  StatCardProp: {
970
975
  group: "data-display",
971
976
  file: "components/data-display/card.tsx",
@@ -103,6 +103,43 @@
103
103
  padding-bottom: 0;
104
104
  }
105
105
 
106
+ /* ── CardBar — positionable tab/toolbar strip (CardBar in card.tsx) ───────
107
+ * Separators come from POSITION: a top bar gets a bottom border, a bottom
108
+ * bar a top border, a middle bar both, a sole child none. `border-block` is
109
+ * the block (top/bottom) axis — RTL-neutral. The card's own overflow:hidden
110
+ * clips the bar to the rounded corners, so it needs no radius of its own. */
111
+ [data-slot="card-bar"] {
112
+ display: flex;
113
+ align-items: center;
114
+ gap: var(--space-inline-md);
115
+ padding: var(--card-space-header-y) var(--card-space-inset);
116
+ border-block: 1px solid hsl(var(--card-border));
117
+ }
118
+
119
+ [data-slot="card-bar"]:first-child {
120
+ border-block-start-width: 0;
121
+ }
122
+
123
+ [data-slot="card-bar"]:last-child {
124
+ border-block-end-width: 0;
125
+ }
126
+
127
+ [data-slot="card-bar-main"] {
128
+ display: flex;
129
+ align-items: center;
130
+ gap: var(--space-inline-sm);
131
+ min-width: 0;
132
+ flex: 1 1 auto;
133
+ overflow-x: auto;
134
+ }
135
+
136
+ [data-slot="card-bar-extra"] {
137
+ display: flex;
138
+ align-items: center;
139
+ gap: var(--space-inline-xs);
140
+ flex-shrink: 0;
141
+ }
142
+
106
143
  .ui-card-header--banded {
107
144
  border-bottom: var(--card-header-border-bottom);
108
145
  background-color: hsl(var(--card-header-background) / var(--card-header-background-alpha));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@godxjp/ui",
3
- "version": "13.11.2",
3
+ "version": "13.12.0",
4
4
  "type": "module",
5
5
  "packageManager": "pnpm@10.29.1",
6
6
  "sideEffects": false,