@xenosystem/components 0.10.1 → 0.10.2
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/chrome/index.d.ts +2 -2
- package/dist/chrome/index.js +2 -2
- package/package.json +1 -1
package/dist/chrome/index.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ interface ScrollAreaProps {
|
|
|
94
94
|
*/
|
|
95
95
|
declare function ScrollArea({ children, className }: ScrollAreaProps): ReactNode;
|
|
96
96
|
/** Props for {@link Column}. */
|
|
97
|
-
interface ColumnProps {
|
|
97
|
+
interface ColumnProps extends HTMLAttributes<HTMLDivElement> {
|
|
98
98
|
children?: ReactNode;
|
|
99
99
|
className?: string;
|
|
100
100
|
}
|
|
@@ -104,7 +104,7 @@ interface ColumnProps {
|
|
|
104
104
|
* 'flex', flexDirection: 'column', height: '100%', minHeight: 0 }}>` by hand; as a unit it is the root
|
|
105
105
|
* a declaration can name.
|
|
106
106
|
*/
|
|
107
|
-
declare function Column({ children, className }: ColumnProps): ReactNode;
|
|
107
|
+
declare function Column({ children, className, ...rest }: ColumnProps): ReactNode;
|
|
108
108
|
/** Props for {@link Stack}. */
|
|
109
109
|
interface StackProps {
|
|
110
110
|
children?: ReactNode;
|
package/dist/chrome/index.js
CHANGED
|
@@ -1321,9 +1321,9 @@ function ScrollArea({ children, className }) {
|
|
|
1321
1321
|
usePanelPrimitives();
|
|
1322
1322
|
return /* @__PURE__ */ jsx("div", { className: cx(CLS_SCROLL, className), children });
|
|
1323
1323
|
}
|
|
1324
|
-
function Column({ children, className }) {
|
|
1324
|
+
function Column({ children, className, ...rest }) {
|
|
1325
1325
|
usePanelPrimitives();
|
|
1326
|
-
return /* @__PURE__ */ jsx("div", { className: cx(CLS_COLUMN, className), children });
|
|
1326
|
+
return /* @__PURE__ */ jsx("div", { className: cx(CLS_COLUMN, className), ...rest, children });
|
|
1327
1327
|
}
|
|
1328
1328
|
function Stack({ children, direction = "column", gap, pad = "gutter", className }) {
|
|
1329
1329
|
usePanelPrimitives();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenosystem/components",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "XENO Components \u2014 rung 2 of the front ladder: molecules composed from @xenosystem/elements, with no host contract. Families as subpaths: /auth, /navigation, /feedback, /data.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|