opus-toolkit-components 1.4.2 → 1.4.4

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.
@@ -12934,7 +12934,7 @@ function Dropdown(_ref) {
12934
12934
  "aria-hidden": "true",
12935
12935
  className: "ml-1 mr-1 h-5 w-5 text-[--color-text-strong] bg-[--color-input-bg] transition-transform duration-200 ".concat(open ? 'rotate-180' : 'rotate-0')
12936
12936
  })), !disabled && /*#__PURE__*/external_react_default().createElement(Et, {
12937
- className: " absolute right-0 z-10 mt-2 w-56 origin-top-right rounded-md bg-[--color-primary-bg] shadow-lg ring-1 ring-[--color-stroke] ring-opacity-1 focus:outline-none max-h-48 overflow-y-auto "
12937
+ className: " absolute left-0 z-10 mt-2 w-[100%] origin-top-right rounded-md bg-[--color-primary-bg] shadow-lg ring-1 ring-[--color-stroke] ring-opacity-1 focus:outline-none max-h-48 overflow-y-auto "
12938
12938
  }, /*#__PURE__*/external_react_default().createElement("div", {
12939
12939
  className: "py-1"
12940
12940
  }, items.map((item, index) => /*#__PURE__*/external_react_default().createElement(gt, {
@@ -12996,12 +12996,16 @@ const Navbar = _ref => {
12996
12996
  let {
12997
12997
  children,
12998
12998
  logo,
12999
- className = ''
12999
+ className = '',
13000
+ maxWidth = '1200px'
13000
13001
  } = _ref;
13001
13002
  return /*#__PURE__*/external_react_default().createElement("nav", {
13002
13003
  className: "p-4 w-full bg-[--color-primary-bg] shadow-lg navbar ".concat(className)
13003
13004
  }, /*#__PURE__*/external_react_default().createElement("div", {
13004
- className: "container mx-auto flex items-center justify-between"
13005
+ className: "mx-auto flex items-center justify-between w-full",
13006
+ style: {
13007
+ maxWidth
13008
+ }
13005
13009
  }, /*#__PURE__*/external_react_default().createElement("img", {
13006
13010
  src: logo || (c247_icon_only_svg_default()),
13007
13011
  alt: "Navbar Logo",