@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/index.css CHANGED
@@ -1496,6 +1496,7 @@
1496
1496
  }
1497
1497
  .tooltip-module_trigger__-ySkn {
1498
1498
  width: fit-content;
1499
+ display: flex;
1499
1500
  }
1500
1501
 
1501
1502
  .tooltip-module_content__SeE6X {
package/dist/index.js CHANGED
@@ -2648,9 +2648,9 @@ const flex = cva(styles$v.flex, {
2648
2648
  wrap: "noWrap",
2649
2649
  },
2650
2650
  });
2651
- function Flex({ children, direction, align, justify, wrap, gap, className, ...props }) {
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