@raystack/apsara 0.10.6 → 0.10.7
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +6 -4
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/sidebar/sidebar.d.ts +2 -2
- package/dist/sidebar/sidebar.d.ts.map +1 -1
- package/dist/table/DataTableToolbar.d.ts +1 -1
- package/dist/table/DataTableToolbar.d.ts.map +1 -1
- package/package.json +1 -2
package/dist/index.css
CHANGED
|
@@ -1411,7 +1411,7 @@
|
|
|
1411
1411
|
align-items: center;
|
|
1412
1412
|
justify-content: space-between;
|
|
1413
1413
|
padding: var(--pd-8);
|
|
1414
|
-
|
|
1414
|
+
cursor: pointer;
|
|
1415
1415
|
}
|
|
1416
1416
|
|
|
1417
1417
|
.sidebar-module_cell__NHLSi:hover,
|
|
@@ -1577,10 +1577,10 @@
|
|
|
1577
1577
|
font-size: 12px;
|
|
1578
1578
|
line-height: 16px;
|
|
1579
1579
|
caption-side: bottom;
|
|
1580
|
-
color: var(--foreground-base)
|
|
1580
|
+
color: var(--foreground-base);
|
|
1581
1581
|
}
|
|
1582
1582
|
|
|
1583
|
-
.table-module_caption__xw-5e{
|
|
1583
|
+
.table-module_caption__xw-5e {
|
|
1584
1584
|
margin-top: var(--mr-16);
|
|
1585
1585
|
color: var(--foreground-muted);
|
|
1586
1586
|
}
|
|
@@ -1597,16 +1597,18 @@
|
|
|
1597
1597
|
padding-left: 1rem;
|
|
1598
1598
|
padding-right: 1rem;
|
|
1599
1599
|
vertical-align: middle;
|
|
1600
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
1600
1601
|
}
|
|
1601
1602
|
|
|
1602
1603
|
.table-module_row__-1ieK {
|
|
1603
|
-
border-bottom: 1px solid #000;
|
|
1604
1604
|
}
|
|
1605
1605
|
|
|
1606
1606
|
.table-module_cell__-FP3s {
|
|
1607
1607
|
font-weight: 500;
|
|
1608
1608
|
padding: 1rem;
|
|
1609
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
1609
1610
|
}
|
|
1611
|
+
|
|
1610
1612
|
.tabs-module_root__nPU0r {
|
|
1611
1613
|
display: flex;
|
|
1612
1614
|
}
|
package/dist/index.js
CHANGED
|
@@ -11590,8 +11590,8 @@ const cell$1 = cva(styles$6.cell, {
|
|
|
11590
11590
|
},
|
|
11591
11591
|
},
|
|
11592
11592
|
});
|
|
11593
|
-
const SidebarNavigationCell = ({ leadingIcon, trailingIcon, active, disabled, children,
|
|
11594
|
-
return (jsxRuntimeExports.jsxs(
|
|
11593
|
+
const SidebarNavigationCell = ({ leadingIcon, trailingIcon, active, disabled, children, onClick, }) => {
|
|
11594
|
+
return (jsxRuntimeExports.jsxs(Flex, { className: cell$1({ active, disabled }), onClick: onClick, children: [jsxRuntimeExports.jsxs(Flex, { gap: "small", children: [leadingIcon, jsxRuntimeExports.jsx(Text, { className: styles$6.cellText, children: children })] }), trailingIcon] }));
|
|
11595
11595
|
};
|
|
11596
11596
|
const SidebarFooter = ({ children, action }) => {
|
|
11597
11597
|
return (jsxRuntimeExports.jsxs(Flex, { className: styles$6.footer, gap: "small", justify: "between", children: [jsxRuntimeExports.jsx(Text, { children: children }), action] }));
|
|
@@ -15288,8 +15288,8 @@ function DataTableGloabalSearch(props) {
|
|
|
15288
15288
|
return (jsxRuntimeExports.jsx(TextField, { placeholder: "Filter tasks...", value: globalFilter ?? "", onChange: (event) => onGlobalFilterChange(String(event.target.value)), ...props }));
|
|
15289
15289
|
}
|
|
15290
15290
|
|
|
15291
|
-
function DataTableToolbar({ children, }) {
|
|
15292
|
-
return (jsxRuntimeExports.jsx(Flex, { direction: "column", className: styles$4.toolbar, children: children }));
|
|
15291
|
+
function DataTableToolbar({ children, ...props }) {
|
|
15292
|
+
return (jsxRuntimeExports.jsx(Flex, { direction: "column", className: styles$4.toolbar, ...props, children: children }));
|
|
15293
15293
|
}
|
|
15294
15294
|
|
|
15295
15295
|
function DataTableViewOptions({ children, ...props }) {
|