@streamoid/ui 0.6.35 → 0.6.36
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/dist/index.css +0 -3
- package/dist/index.js +10 -4
- package/dist/index.mjs +10 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -4525,7 +4525,6 @@ var import_react14 = require("react");
|
|
|
4525
4525
|
// src/SC-Sidebar-new/ScSidebarResizeHandle.module.css
|
|
4526
4526
|
var ScSidebarResizeHandle_default = {
|
|
4527
4527
|
handle: "ScSidebarResizeHandle_handle",
|
|
4528
|
-
collapsed: "ScSidebarResizeHandle_collapsed",
|
|
4529
4528
|
line: "ScSidebarResizeHandle_line",
|
|
4530
4529
|
active: "ScSidebarResizeHandle_active"
|
|
4531
4530
|
};
|
|
@@ -4612,7 +4611,7 @@ function ScSidebarResizeHandle({
|
|
|
4612
4611
|
onExpandedChange(true);
|
|
4613
4612
|
}
|
|
4614
4613
|
},
|
|
4615
|
-
className: `${ScSidebarResizeHandle_default.handle} ${
|
|
4614
|
+
className: `${ScSidebarResizeHandle_default.handle} ${active ? ScSidebarResizeHandle_default.active : ""} ${className ?? ""}`.trim(),
|
|
4616
4615
|
style,
|
|
4617
4616
|
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("span", { "aria-hidden": true, className: ScSidebarResizeHandle_default.line })
|
|
4618
4617
|
}
|
|
@@ -5140,7 +5139,7 @@ function StreamoidSidebar({
|
|
|
5140
5139
|
"div",
|
|
5141
5140
|
{
|
|
5142
5141
|
className: `relative flex h-full items-center justify-center shrink-0 ${className ?? ""}`.trim(),
|
|
5143
|
-
style,
|
|
5142
|
+
style: { padding: "var(--spacing-3xl)", ...style },
|
|
5144
5143
|
children: [
|
|
5145
5144
|
resizable && !isMobile ? /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
5146
5145
|
ScSidebarResizeHandle,
|
|
@@ -5156,6 +5155,11 @@ function StreamoidSidebar({
|
|
|
5156
5155
|
className: "flex flex-col h-full items-center justify-center relative shrink-0",
|
|
5157
5156
|
style: {
|
|
5158
5157
|
backgroundColor: "var(--alias-surface-base)",
|
|
5158
|
+
/* Matches the expanded card. It was square with a hard right seam,
|
|
5159
|
+
which read as a different component rather than the same one
|
|
5160
|
+
narrowed — and next to a floating rounded card it looked like the
|
|
5161
|
+
rail had been replaced. */
|
|
5162
|
+
borderRadius: "var(--radius-3xl)",
|
|
5159
5163
|
padding: "var(--spacing-md)",
|
|
5160
5164
|
gap: "var(--spacing-xxs)"
|
|
5161
5165
|
},
|
|
@@ -5166,7 +5170,9 @@ function StreamoidSidebar({
|
|
|
5166
5170
|
"aria-hidden": "true",
|
|
5167
5171
|
className: "absolute inset-0 pointer-events-none",
|
|
5168
5172
|
style: {
|
|
5169
|
-
|
|
5173
|
+
border: "1px solid var(--alias-border-subtle)",
|
|
5174
|
+
borderRadius: "var(--radius-3xl)",
|
|
5175
|
+
zIndex: 30
|
|
5170
5176
|
}
|
|
5171
5177
|
}
|
|
5172
5178
|
),
|
package/dist/index.mjs
CHANGED
|
@@ -4340,7 +4340,6 @@ import { useRef as useRef5, useState as useState11 } from "react";
|
|
|
4340
4340
|
// src/SC-Sidebar-new/ScSidebarResizeHandle.module.css
|
|
4341
4341
|
var ScSidebarResizeHandle_default = {
|
|
4342
4342
|
handle: "ScSidebarResizeHandle_handle",
|
|
4343
|
-
collapsed: "ScSidebarResizeHandle_collapsed",
|
|
4344
4343
|
line: "ScSidebarResizeHandle_line",
|
|
4345
4344
|
active: "ScSidebarResizeHandle_active"
|
|
4346
4345
|
};
|
|
@@ -4427,7 +4426,7 @@ function ScSidebarResizeHandle({
|
|
|
4427
4426
|
onExpandedChange(true);
|
|
4428
4427
|
}
|
|
4429
4428
|
},
|
|
4430
|
-
className: `${ScSidebarResizeHandle_default.handle} ${
|
|
4429
|
+
className: `${ScSidebarResizeHandle_default.handle} ${active ? ScSidebarResizeHandle_default.active : ""} ${className ?? ""}`.trim(),
|
|
4431
4430
|
style,
|
|
4432
4431
|
children: /* @__PURE__ */ jsx49("span", { "aria-hidden": true, className: ScSidebarResizeHandle_default.line })
|
|
4433
4432
|
}
|
|
@@ -4955,7 +4954,7 @@ function StreamoidSidebar({
|
|
|
4955
4954
|
"div",
|
|
4956
4955
|
{
|
|
4957
4956
|
className: `relative flex h-full items-center justify-center shrink-0 ${className ?? ""}`.trim(),
|
|
4958
|
-
style,
|
|
4957
|
+
style: { padding: "var(--spacing-3xl)", ...style },
|
|
4959
4958
|
children: [
|
|
4960
4959
|
resizable && !isMobile ? /* @__PURE__ */ jsx50(
|
|
4961
4960
|
ScSidebarResizeHandle,
|
|
@@ -4971,6 +4970,11 @@ function StreamoidSidebar({
|
|
|
4971
4970
|
className: "flex flex-col h-full items-center justify-center relative shrink-0",
|
|
4972
4971
|
style: {
|
|
4973
4972
|
backgroundColor: "var(--alias-surface-base)",
|
|
4973
|
+
/* Matches the expanded card. It was square with a hard right seam,
|
|
4974
|
+
which read as a different component rather than the same one
|
|
4975
|
+
narrowed — and next to a floating rounded card it looked like the
|
|
4976
|
+
rail had been replaced. */
|
|
4977
|
+
borderRadius: "var(--radius-3xl)",
|
|
4974
4978
|
padding: "var(--spacing-md)",
|
|
4975
4979
|
gap: "var(--spacing-xxs)"
|
|
4976
4980
|
},
|
|
@@ -4981,7 +4985,9 @@ function StreamoidSidebar({
|
|
|
4981
4985
|
"aria-hidden": "true",
|
|
4982
4986
|
className: "absolute inset-0 pointer-events-none",
|
|
4983
4987
|
style: {
|
|
4984
|
-
|
|
4988
|
+
border: "1px solid var(--alias-border-subtle)",
|
|
4989
|
+
borderRadius: "var(--radius-3xl)",
|
|
4990
|
+
zIndex: 30
|
|
4985
4991
|
}
|
|
4986
4992
|
}
|
|
4987
4993
|
),
|