@streamoid/ui 0.6.35 → 0.6.37
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 +3 -6
- package/dist/index.js +11 -6
- package/dist/index.mjs +11 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3813,9 +3813,6 @@
|
|
|
3813
3813
|
cursor: col-resize;
|
|
3814
3814
|
touch-action: none;
|
|
3815
3815
|
}
|
|
3816
|
-
.ScSidebarResizeHandle_collapsed {
|
|
3817
|
-
right: -8px;
|
|
3818
|
-
}
|
|
3819
3816
|
.ScSidebarResizeHandle_line {
|
|
3820
3817
|
pointer-events: none;
|
|
3821
3818
|
position: absolute;
|
|
@@ -4137,8 +4134,6 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4137
4134
|
height: 100%;
|
|
4138
4135
|
flex-shrink: 0;
|
|
4139
4136
|
position: relative;
|
|
4140
|
-
}
|
|
4141
|
-
.ScArtifaxSidebar_scArtifaxSidebar.ScArtifaxSidebar_variantExpanded {
|
|
4142
4137
|
padding: var(--spacing-3xl, 1rem);
|
|
4143
4138
|
}
|
|
4144
4139
|
.ScArtifaxSidebar_container {
|
|
@@ -4158,6 +4153,7 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4158
4153
|
.ScArtifaxSidebar_container.ScArtifaxSidebar_collapsed {
|
|
4159
4154
|
align-items: center;
|
|
4160
4155
|
width: 3.5rem;
|
|
4156
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
4161
4157
|
}
|
|
4162
4158
|
.ScArtifaxSidebar_borderOverlayExpanded {
|
|
4163
4159
|
position: absolute;
|
|
@@ -4170,7 +4166,8 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4170
4166
|
position: absolute;
|
|
4171
4167
|
inset: 0;
|
|
4172
4168
|
pointer-events: none;
|
|
4173
|
-
border
|
|
4169
|
+
border: 1px solid var(--alias-border-subtle, #242424);
|
|
4170
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
4174
4171
|
}
|
|
4175
4172
|
.ScArtifaxSidebar_body {
|
|
4176
4173
|
display: flex;
|
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
|
),
|
|
@@ -6218,7 +6224,6 @@ var import_react18 = require("react");
|
|
|
6218
6224
|
// src/SC-Artifax-Sidebar/ScArtifaxSidebar.module.css
|
|
6219
6225
|
var ScArtifaxSidebar_default = {
|
|
6220
6226
|
scArtifaxSidebar: "ScArtifaxSidebar_scArtifaxSidebar",
|
|
6221
|
-
variantExpanded: "ScArtifaxSidebar_variantExpanded",
|
|
6222
6227
|
container: "ScArtifaxSidebar_container",
|
|
6223
6228
|
expanded: "ScArtifaxSidebar_expanded",
|
|
6224
6229
|
collapsed: "ScArtifaxSidebar_collapsed",
|
|
@@ -6362,7 +6367,7 @@ var ScArtifaxSidebar = ({
|
|
|
6362
6367
|
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
6363
6368
|
"div",
|
|
6364
6369
|
{
|
|
6365
|
-
className: ScArtifaxSidebar_default.scArtifaxSidebar +
|
|
6370
|
+
className: ScArtifaxSidebar_default.scArtifaxSidebar + (className ? " " + className : ""),
|
|
6366
6371
|
style,
|
|
6367
6372
|
children: [
|
|
6368
6373
|
resizable ? /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
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
|
),
|
|
@@ -6051,7 +6057,6 @@ import {
|
|
|
6051
6057
|
// src/SC-Artifax-Sidebar/ScArtifaxSidebar.module.css
|
|
6052
6058
|
var ScArtifaxSidebar_default = {
|
|
6053
6059
|
scArtifaxSidebar: "ScArtifaxSidebar_scArtifaxSidebar",
|
|
6054
|
-
variantExpanded: "ScArtifaxSidebar_variantExpanded",
|
|
6055
6060
|
container: "ScArtifaxSidebar_container",
|
|
6056
6061
|
expanded: "ScArtifaxSidebar_expanded",
|
|
6057
6062
|
collapsed: "ScArtifaxSidebar_collapsed",
|
|
@@ -6195,7 +6200,7 @@ var ScArtifaxSidebar = ({
|
|
|
6195
6200
|
return /* @__PURE__ */ jsxs42(
|
|
6196
6201
|
"div",
|
|
6197
6202
|
{
|
|
6198
|
-
className: ScArtifaxSidebar_default.scArtifaxSidebar +
|
|
6203
|
+
className: ScArtifaxSidebar_default.scArtifaxSidebar + (className ? " " + className : ""),
|
|
6199
6204
|
style,
|
|
6200
6205
|
children: [
|
|
6201
6206
|
resizable ? /* @__PURE__ */ jsx53(
|