@raystack/apsara 0.11.6 → 0.11.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/flex/flex.d.ts +5 -6
- package/dist/flex/flex.d.ts.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/sidebar/sidebar.d.ts +9 -1
- package/dist/sidebar/sidebar.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -2648,9 +2648,9 @@ const flex = cva(styles$v.flex, {
|
|
|
2648
2648
|
wrap: "noWrap",
|
|
2649
2649
|
},
|
|
2650
2650
|
});
|
|
2651
|
-
|
|
2652
|
-
return (jsxRuntimeExports.jsx("div", { className: flex({ direction, align, justify, wrap, gap, className }), ...props, children: children }));
|
|
2653
|
-
}
|
|
2651
|
+
const Flex = forwardRef(({ children, direction, align, justify, wrap, gap, className, ...props }, ref) => {
|
|
2652
|
+
return (jsxRuntimeExports.jsx("div", { className: flex({ direction, align, justify, wrap, gap, className }), ...props, ref: ref, children: children }));
|
|
2653
|
+
});
|
|
2654
2654
|
|
|
2655
2655
|
var styles$u = {"label":"label-module_label__hM2lk","label-small":"label-module_label-small__se5gE","label-medium":"label-module_label-medium__Z4Tcb","label-large":"label-module_label-large__ba4Jb"};
|
|
2656
2656
|
|