@devalok/shilp-sutra 0.22.2 → 0.23.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.
Files changed (79) hide show
  1. package/dist/_chunks/tree-view.js +26 -26
  2. package/dist/_chunks/use-calendar.js +106 -106
  3. package/dist/composed/activity-feed.js +10 -10
  4. package/dist/composed/avatar-group.js +74 -75
  5. package/dist/composed/command-palette.js +8 -8
  6. package/dist/composed/content-card.js +10 -10
  7. package/dist/composed/empty-state.js +6 -6
  8. package/dist/composed/error-boundary.js +2 -2
  9. package/dist/composed/loading-skeleton.js +83 -83
  10. package/dist/composed/member-picker.js +6 -6
  11. package/dist/composed/page-skeletons.js +5 -5
  12. package/dist/composed/rich-text-editor.js +63 -63
  13. package/dist/composed/schedule-view.js +26 -26
  14. package/dist/composed/status-badge.js +8 -8
  15. package/dist/shell/bottom-navbar.js +4 -4
  16. package/dist/shell/notification-center.js +29 -29
  17. package/dist/shell/notification-preferences.js +2 -2
  18. package/dist/shell/sidebar.js +6 -6
  19. package/dist/shell/top-bar.js +71 -71
  20. package/dist/tailwind/index.cjs +33 -11
  21. package/dist/tailwind/preset.d.ts.map +1 -1
  22. package/dist/tailwind/preset.js +33 -11
  23. package/dist/tokens/primitives.css +2 -0
  24. package/dist/tokens/semantic.css +83 -14
  25. package/dist/tokens/typography.css +1 -1
  26. package/dist/ui/accordion.js +1 -1
  27. package/dist/ui/alert-dialog.js +32 -32
  28. package/dist/ui/alert.js +12 -12
  29. package/dist/ui/autocomplete.js +16 -16
  30. package/dist/ui/avatar.d.ts.map +1 -1
  31. package/dist/ui/avatar.js +81 -74
  32. package/dist/ui/badge.js +2 -2
  33. package/dist/ui/banner.js +1 -1
  34. package/dist/ui/button.js +8 -8
  35. package/dist/ui/card.d.ts +1 -1
  36. package/dist/ui/card.js +10 -10
  37. package/dist/ui/charts/index.js +312 -312
  38. package/dist/ui/checkbox.js +3 -3
  39. package/dist/ui/chip.js +4 -4
  40. package/dist/ui/code.js +2 -2
  41. package/dist/ui/color-input.js +1 -1
  42. package/dist/ui/combobox.js +37 -37
  43. package/dist/ui/context-menu.js +6 -6
  44. package/dist/ui/data-table-toolbar.js +18 -18
  45. package/dist/ui/data-table.js +132 -132
  46. package/dist/ui/dialog.js +12 -12
  47. package/dist/ui/dropdown-menu.js +67 -67
  48. package/dist/ui/file-upload.js +3 -3
  49. package/dist/ui/hover-card.js +13 -13
  50. package/dist/ui/input-otp.js +9 -9
  51. package/dist/ui/input.js +10 -10
  52. package/dist/ui/menubar.js +33 -33
  53. package/dist/ui/navigation-menu.js +52 -52
  54. package/dist/ui/number-input.js +14 -14
  55. package/dist/ui/pagination.js +25 -25
  56. package/dist/ui/popover.js +17 -17
  57. package/dist/ui/progress.js +1 -1
  58. package/dist/ui/radio.js +2 -2
  59. package/dist/ui/search-input.js +3 -3
  60. package/dist/ui/segmented-control.d.ts +1 -1
  61. package/dist/ui/segmented-control.js +16 -16
  62. package/dist/ui/select.js +17 -17
  63. package/dist/ui/sheet.js +21 -21
  64. package/dist/ui/sidebar.js +13 -13
  65. package/dist/ui/slider.js +2 -2
  66. package/dist/ui/stat-card.js +52 -52
  67. package/dist/ui/stepper.js +1 -1
  68. package/dist/ui/switch.js +11 -11
  69. package/dist/ui/table.js +19 -19
  70. package/dist/ui/tabs.js +2 -2
  71. package/dist/ui/textarea.js +6 -6
  72. package/dist/ui/toast.js +3 -3
  73. package/dist/ui/toggle.js +7 -7
  74. package/dist/ui/tooltip.js +17 -17
  75. package/docs/components/composed/avatar-group.md +5 -0
  76. package/docs/components/ui/avatar.md +4 -0
  77. package/llms-full.txt +10 -1
  78. package/llms.txt +66 -5
  79. package/package.json +1 -1
@@ -1,172 +1,172 @@
1
- import { jsxs as r, jsx as e } from "react/jsx-runtime";
2
- import * as t from "react";
1
+ import { jsxs as a, jsx as e } from "react/jsx-runtime";
2
+ import * as n from "react";
3
3
  import { cn as c } from "../ui/lib/utils.js";
4
4
  import { Skeleton as s } from "../ui/skeleton.js";
5
- const b = t.forwardRef(
6
- function({ className: l, ...d }, o) {
7
- return /* @__PURE__ */ r(
5
+ const u = n.forwardRef(
6
+ function({ className: d, ...l }, o) {
7
+ return /* @__PURE__ */ a(
8
8
  "div",
9
9
  {
10
10
  ref: o,
11
- ...d,
11
+ ...l,
12
12
  className: c(
13
- "rounded-ds-lg border border-surface-border-strong bg-surface-2 p-ds-05b",
14
- l
13
+ "rounded-ds-lg border border-surface-border-strong bg-surface-raised p-ds-05b",
14
+ d
15
15
  ),
16
16
  children: [
17
- /* @__PURE__ */ r("div", { className: "flex items-center justify-between pb-ds-05", children: [
18
- /* @__PURE__ */ e(s, { className: "h-[16px] w-[128px] bg-surface-3" }),
19
- /* @__PURE__ */ e(s, { className: "h-ico-sm w-ico-sm rounded bg-surface-3" })
17
+ /* @__PURE__ */ a("div", { className: "flex items-center justify-between pb-ds-05", children: [
18
+ /* @__PURE__ */ e(s, { className: "h-[16px] w-[128px] bg-surface-raised-hover" }),
19
+ /* @__PURE__ */ e(s, { className: "h-ico-sm w-ico-sm rounded bg-surface-raised-hover" })
20
20
  ] }),
21
- /* @__PURE__ */ r("div", { className: "space-y-ds-04", children: [
22
- /* @__PURE__ */ e(s, { className: "h-[12px] w-full bg-surface-3" }),
23
- /* @__PURE__ */ e(s, { className: "h-[12px] w-4/5 bg-surface-3" }),
24
- /* @__PURE__ */ e(s, { className: "h-[12px] w-3/5 bg-surface-3" })
21
+ /* @__PURE__ */ a("div", { className: "space-y-ds-04", children: [
22
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-full bg-surface-raised-hover" }),
23
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-4/5 bg-surface-raised-hover" }),
24
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-3/5 bg-surface-raised-hover" })
25
25
  ] }),
26
- /* @__PURE__ */ r("div", { className: "flex items-center gap-ds-03 pt-ds-05", children: [
27
- /* @__PURE__ */ e(s, { className: "h-ds-xs w-ds-xs rounded-ds-full bg-surface-3" }),
28
- /* @__PURE__ */ e(s, { className: "h-[12px] w-[80px] bg-surface-3" })
26
+ /* @__PURE__ */ a("div", { className: "flex items-center gap-ds-03 pt-ds-05", children: [
27
+ /* @__PURE__ */ e(s, { className: "h-ds-xs w-ds-xs rounded-ds-full bg-surface-raised-hover" }),
28
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-[80px] bg-surface-raised-hover" })
29
29
  ] })
30
30
  ]
31
31
  }
32
32
  );
33
33
  }
34
34
  );
35
- b.displayName = "CardSkeleton";
36
- const g = t.forwardRef(
35
+ u.displayName = "CardSkeleton";
36
+ const b = n.forwardRef(
37
37
  function({
38
- rows: l = 5,
39
- columns: d = 4,
38
+ rows: d = 5,
39
+ columns: l = 4,
40
40
  className: o,
41
- ...m
42
- }, f) {
43
- return /* @__PURE__ */ r(
41
+ ...i
42
+ }, m) {
43
+ return /* @__PURE__ */ a(
44
44
  "div",
45
45
  {
46
- ref: f,
47
- ...m,
46
+ ref: m,
47
+ ...i,
48
48
  className: c(
49
49
  "overflow-hidden rounded-ds-lg border border-surface-border-strong",
50
50
  o
51
51
  ),
52
52
  children: [
53
- /* @__PURE__ */ e("div", { className: "flex items-center gap-ds-05 border-b border-surface-border-strong bg-surface-2 px-ds-05 py-ds-04", children: Array.from({ length: d }).map((p, a) => /* @__PURE__ */ e(
53
+ /* @__PURE__ */ e("div", { className: "flex items-center gap-ds-05 border-b border-surface-border-strong bg-surface-raised px-ds-05 py-ds-04", children: Array.from({ length: l }).map((h, r) => /* @__PURE__ */ e(
54
54
  s,
55
55
  {
56
56
  className: c(
57
- "h-[12px] bg-surface-3",
58
- a === 0 ? "w-[160px]" : "flex-1"
57
+ "h-[12px] bg-surface-raised-hover",
58
+ r === 0 ? "w-[160px]" : "flex-1"
59
59
  )
60
60
  },
61
- `head-${a}`
61
+ `head-${r}`
62
62
  )) }),
63
- Array.from({ length: l }).map((p, a) => /* @__PURE__ */ e(
63
+ Array.from({ length: d }).map((h, r) => /* @__PURE__ */ e(
64
64
  "div",
65
65
  {
66
66
  className: c(
67
67
  "flex items-center gap-ds-05 px-ds-05 py-ds-04",
68
- a < l - 1 && "border-b border-surface-border-strong"
68
+ r < d - 1 && "border-b border-surface-border-strong"
69
69
  ),
70
- style: { animationDelay: `${a * 50}ms` },
71
- children: Array.from({ length: d }).map((u, n) => /* @__PURE__ */ e(
70
+ style: { animationDelay: `${r * 50}ms` },
71
+ children: Array.from({ length: l }).map((p, f) => /* @__PURE__ */ e(
72
72
  s,
73
73
  {
74
74
  className: c(
75
- "h-[12px] bg-surface-3",
76
- n === 0 ? "w-[160px]" : "flex-1"
75
+ "h-[12px] bg-surface-raised-hover",
76
+ f === 0 ? "w-[160px]" : "flex-1"
77
77
  )
78
78
  },
79
- `cell-${a}-${n}`
79
+ `cell-${r}-${f}`
80
80
  ))
81
81
  },
82
- `row-${a}`
82
+ `row-${r}`
83
83
  ))
84
84
  ]
85
85
  }
86
86
  );
87
87
  }
88
88
  );
89
- g.displayName = "TableSkeleton";
90
- const h = t.forwardRef(
89
+ b.displayName = "TableSkeleton";
90
+ const g = n.forwardRef(
91
91
  function({
92
- columns: l = 4,
93
- cardsPerColumn: d = 3,
92
+ columns: d = 4,
93
+ cardsPerColumn: l = 3,
94
94
  className: o,
95
- ...m
96
- }, f) {
97
- return /* @__PURE__ */ e("div", { ref: f, ...m, className: c("flex gap-ds-05 overflow-x-auto", o), children: Array.from({ length: l }).map((p, a) => /* @__PURE__ */ r(
95
+ ...i
96
+ }, m) {
97
+ return /* @__PURE__ */ e("div", { ref: m, ...i, className: c("flex gap-ds-05 overflow-x-auto", o), children: Array.from({ length: d }).map((h, r) => /* @__PURE__ */ a(
98
98
  "div",
99
99
  {
100
100
  className: "flex w-[272px] shrink-0 flex-col gap-ds-03",
101
101
  children: [
102
- /* @__PURE__ */ r("div", { className: "flex items-center justify-between px-ds-02 py-ds-03", children: [
103
- /* @__PURE__ */ r("div", { className: "flex items-center gap-ds-03", children: [
104
- /* @__PURE__ */ e(s, { className: "h-[12px] w-[12px] rounded bg-surface-3" }),
105
- /* @__PURE__ */ e(s, { className: "h-[12px] w-[80px] bg-surface-3" }),
106
- /* @__PURE__ */ e(s, { className: "h-[16px] w-[20px] rounded-ds-full bg-surface-3" })
102
+ /* @__PURE__ */ a("div", { className: "flex items-center justify-between px-ds-02 py-ds-03", children: [
103
+ /* @__PURE__ */ a("div", { className: "flex items-center gap-ds-03", children: [
104
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-[12px] rounded bg-surface-raised-hover" }),
105
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-[80px] bg-surface-raised-hover" }),
106
+ /* @__PURE__ */ e(s, { className: "h-[16px] w-[20px] rounded-ds-full bg-surface-raised-hover" })
107
107
  ] }),
108
- /* @__PURE__ */ e(s, { className: "h-ico-sm w-ico-sm rounded bg-surface-3" })
108
+ /* @__PURE__ */ e(s, { className: "h-ico-sm w-ico-sm rounded bg-surface-raised-hover" })
109
109
  ] }),
110
- Array.from({ length: d }).map((u, n) => /* @__PURE__ */ r(
110
+ Array.from({ length: l }).map((p, f) => /* @__PURE__ */ a(
111
111
  "div",
112
112
  {
113
- className: "rounded-ds-lg border border-surface-border-strong bg-surface-2 p-ds-04",
114
- style: { animationDelay: `${(a * d + n) * 50}ms` },
113
+ className: "rounded-ds-lg border border-surface-border-strong bg-surface-raised p-ds-04",
114
+ style: { animationDelay: `${(r * l + f) * 50}ms` },
115
115
  children: [
116
- /* @__PURE__ */ r("div", { className: "space-y-ds-03", children: [
117
- /* @__PURE__ */ e(s, { className: "h-[12px] w-4/5 bg-surface-3" }),
118
- /* @__PURE__ */ e(s, { className: "h-[12px] w-3/5 bg-surface-3" })
116
+ /* @__PURE__ */ a("div", { className: "space-y-ds-03", children: [
117
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-4/5 bg-surface-raised-hover" }),
118
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-3/5 bg-surface-raised-hover" })
119
119
  ] }),
120
- /* @__PURE__ */ r("div", { className: "flex items-center justify-between pt-ds-04", children: [
121
- /* @__PURE__ */ r("div", { className: "flex items-center gap-ds-02b", children: [
122
- /* @__PURE__ */ e(s, { className: "h-ico-md w-ico-md rounded-ds-full bg-surface-3" }),
123
- /* @__PURE__ */ e(s, { className: "h-ds-03 w-[64px] bg-surface-3" })
120
+ /* @__PURE__ */ a("div", { className: "flex items-center justify-between pt-ds-04", children: [
121
+ /* @__PURE__ */ a("div", { className: "flex items-center gap-ds-02b", children: [
122
+ /* @__PURE__ */ e(s, { className: "h-ico-md w-ico-md rounded-ds-full bg-surface-raised-hover" }),
123
+ /* @__PURE__ */ e(s, { className: "h-ds-03 w-[64px] bg-surface-raised-hover" })
124
124
  ] }),
125
- /* @__PURE__ */ e(s, { className: "h-[16px] w-ds-lg rounded-ds-full bg-surface-3" })
125
+ /* @__PURE__ */ e(s, { className: "h-[16px] w-ds-lg rounded-ds-full bg-surface-raised-hover" })
126
126
  ] })
127
127
  ]
128
128
  },
129
- `card-${a}-${n}`
129
+ `card-${r}-${f}`
130
130
  ))
131
131
  ]
132
132
  },
133
- `col-${a}`
133
+ `col-${r}`
134
134
  )) });
135
135
  }
136
136
  );
137
- h.displayName = "BoardSkeleton";
138
- const x = t.forwardRef(
137
+ g.displayName = "BoardSkeleton";
138
+ const x = n.forwardRef(
139
139
  function({
140
- rows: l = 6,
141
- showAvatar: d = !0,
140
+ rows: d = 6,
141
+ showAvatar: l = !0,
142
142
  className: o,
143
- ...m
144
- }, f) {
145
- return /* @__PURE__ */ e("div", { ref: f, ...m, className: c("flex flex-col", o), children: Array.from({ length: l }).map((p, a) => /* @__PURE__ */ r(
143
+ ...i
144
+ }, m) {
145
+ return /* @__PURE__ */ e("div", { ref: m, ...i, className: c("flex flex-col", o), children: Array.from({ length: d }).map((h, r) => /* @__PURE__ */ a(
146
146
  "div",
147
147
  {
148
148
  className: c(
149
149
  "flex items-center gap-ds-04 py-ds-04",
150
- a < l - 1 && "border-b border-surface-border-strong"
150
+ r < d - 1 && "border-b border-surface-border-strong"
151
151
  ),
152
- style: { animationDelay: `${a * 50}ms` },
152
+ style: { animationDelay: `${r * 50}ms` },
153
153
  children: [
154
- d && /* @__PURE__ */ e(s, { className: "h-ds-sm w-ds-sm shrink-0 rounded-ds-full bg-surface-3" }),
155
- /* @__PURE__ */ r("div", { className: "flex flex-1 flex-col gap-ds-02b", children: [
156
- /* @__PURE__ */ e(s, { className: "h-[12px] w-2/5 bg-surface-3" }),
157
- /* @__PURE__ */ e(s, { className: "h-ds-03 w-3/5 bg-surface-3" })
154
+ l && /* @__PURE__ */ e(s, { className: "h-ds-sm w-ds-sm shrink-0 rounded-ds-full bg-surface-raised-hover" }),
155
+ /* @__PURE__ */ a("div", { className: "flex flex-1 flex-col gap-ds-02b", children: [
156
+ /* @__PURE__ */ e(s, { className: "h-[12px] w-2/5 bg-surface-raised-hover" }),
157
+ /* @__PURE__ */ e(s, { className: "h-ds-03 w-3/5 bg-surface-raised-hover" })
158
158
  ] }),
159
- /* @__PURE__ */ e(s, { className: "h-[20px] w-[56px] rounded-ds-full bg-surface-3" })
159
+ /* @__PURE__ */ e(s, { className: "h-[20px] w-[56px] rounded-ds-full bg-surface-raised-hover" })
160
160
  ]
161
161
  },
162
- `list-${a}`
162
+ `list-${r}`
163
163
  )) });
164
164
  }
165
165
  );
166
166
  x.displayName = "ListSkeleton";
167
167
  export {
168
- h as BoardSkeleton,
169
- b as CardSkeleton,
168
+ g as BoardSkeleton,
169
+ u as CardSkeleton,
170
170
  x as ListSkeleton,
171
- g as TableSkeleton
171
+ b as TableSkeleton
172
172
  };
@@ -16,8 +16,8 @@ const L = a.forwardRef(
16
16
  children: m,
17
17
  multiple: p = !1,
18
18
  placeholder: u = "Search members...",
19
- className: x,
20
- ...h
19
+ className: h,
20
+ ...x
21
21
  }, g) => {
22
22
  const [b, r] = a.useState(!1), [o, v] = a.useState(""), c = l.filter(
23
23
  (e) => e.name.toLowerCase().includes(o.toLowerCase())
@@ -28,8 +28,8 @@ const L = a.forwardRef(
28
28
  w,
29
29
  {
30
30
  ref: g,
31
- ...h,
32
- className: i("w-[220px] border-surface-border-strong bg-surface-1 p-0", x),
31
+ ...x,
32
+ className: i("w-[220px] border-surface-border-strong bg-surface-overlay p-0", h),
33
33
  align: "start",
34
34
  sideOffset: 4,
35
35
  children: [
@@ -59,13 +59,13 @@ const L = a.forwardRef(
59
59
  },
60
60
  className: i(
61
61
  "flex w-full items-center gap-ds-03 px-ds-04 py-ds-02b text-left transition-colors duration-fast-01 ease-productive-standard",
62
- "hover:bg-surface-3",
62
+ "hover:bg-surface-raised-hover",
63
63
  n && "bg-accent-2 text-accent-11"
64
64
  ),
65
65
  children: [
66
66
  /* @__PURE__ */ s(k, { className: "h-ico-md w-ico-md", children: [
67
67
  e.avatar && /* @__PURE__ */ t(C, { src: e.avatar, alt: e.name }),
68
- /* @__PURE__ */ t(S, { className: "bg-surface-3 text-ds-xs font-semibold text-surface-fg", children: O(e.name) })
68
+ /* @__PURE__ */ t(S, { className: "bg-surface-raised-hover text-ds-xs font-semibold text-surface-fg", children: O(e.name) })
69
69
  ] }),
70
70
  /* @__PURE__ */ t("span", { className: "flex-1 truncate text-ds-md font-body text-surface-fg", children: e.name }),
71
71
  n && /* @__PURE__ */ t(
@@ -2,13 +2,13 @@ import { jsxs as a, jsx as s } from "react/jsx-runtime";
2
2
  import * as n from "react";
3
3
  import { Skeleton as d } from "../ui/skeleton.js";
4
4
  import { cn as e } from "../ui/lib/utils.js";
5
- const l = "bg-surface-3", t = n.forwardRef(
5
+ const l = "bg-surface-raised-hover", t = n.forwardRef(
6
6
  function({ className: m, ...o }, i) {
7
7
  return /* @__PURE__ */ a("div", { ref: i, ...o, className: e("flex flex-col gap-ds-06", m), children: [
8
8
  /* @__PURE__ */ s("div", { className: "grid grid-cols-1 gap-ds-05 sm:grid-cols-2 lg:grid-cols-4", children: Array.from({ length: 4 }).map((c, r) => /* @__PURE__ */ a(
9
9
  "div",
10
10
  {
11
- className: "flex flex-col gap-ds-04 rounded-ds-xl border border-surface-border-strong bg-surface-2 p-ds-05b",
11
+ className: "flex flex-col gap-ds-04 rounded-ds-xl border border-surface-border-strong bg-surface-raised p-ds-05b",
12
12
  children: [
13
13
  /* @__PURE__ */ a("div", { className: "flex items-center justify-between", children: [
14
14
  /* @__PURE__ */ s(d, { className: e("h-[12px] w-[80px]", l) }),
@@ -20,7 +20,7 @@ const l = "bg-surface-3", t = n.forwardRef(
20
20
  },
21
21
  `stat-${r}`
22
22
  )) }),
23
- /* @__PURE__ */ a("div", { className: "rounded-ds-xl border border-surface-border-strong bg-surface-2 p-ds-06", children: [
23
+ /* @__PURE__ */ a("div", { className: "rounded-ds-xl border border-surface-border-strong bg-surface-raised p-ds-06", children: [
24
24
  /* @__PURE__ */ a("div", { className: "mb-ds-06 flex items-center justify-between", children: [
25
25
  /* @__PURE__ */ s(d, { className: e("h-[20px] w-[128px]", l) }),
26
26
  /* @__PURE__ */ a("div", { className: "flex items-center gap-ds-03", children: [
@@ -59,7 +59,7 @@ const f = n.forwardRef(
59
59
  /* @__PURE__ */ s("div", { className: "grid grid-cols-1 gap-ds-05 sm:grid-cols-2 lg:grid-cols-3", children: Array.from({ length: 6 }).map((c, r) => /* @__PURE__ */ a(
60
60
  "div",
61
61
  {
62
- className: "flex flex-col gap-ds-05 rounded-ds-xl border border-surface-border-strong bg-surface-2 p-ds-05b",
62
+ className: "flex flex-col gap-ds-05 rounded-ds-xl border border-surface-border-strong bg-surface-raised p-ds-05b",
63
63
  children: [
64
64
  /* @__PURE__ */ a("div", { className: "flex items-center justify-between", children: [
65
65
  /* @__PURE__ */ s(d, { className: e("h-[20px] w-[64px] rounded-ds-full", l) }),
@@ -90,7 +90,7 @@ const f = n.forwardRef(
90
90
  f.displayName = "ProjectListSkeleton";
91
91
  const h = n.forwardRef(
92
92
  function({ className: m, ...o }, i) {
93
- return /* @__PURE__ */ a("div", { ref: i, ...o, className: e("flex h-full flex-col gap-0 rounded-ds-xl border border-surface-border-strong bg-surface-2", m), children: [
93
+ return /* @__PURE__ */ a("div", { ref: i, ...o, className: e("flex h-full flex-col gap-0 rounded-ds-xl border border-surface-border-strong bg-surface-raised", m), children: [
94
94
  /* @__PURE__ */ a("div", { className: "flex items-center justify-between border-b border-surface-border-strong px-ds-05b py-ds-05", children: [
95
95
  /* @__PURE__ */ s(d, { className: e("h-[20px] w-[192px]", l) }),
96
96
  /* @__PURE__ */ a("div", { className: "flex items-center gap-ds-03", children: [