@syscore/ui-library 2.0.0-beta-publish-workflow-beta.1 → 2.0.0-beta-publish-workflow-beta.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/index.es.js CHANGED
@@ -16661,6 +16661,8 @@ const StandardNavigation = ({
16661
16661
  beforeActions,
16662
16662
  userDropdown,
16663
16663
  isStrategy = false,
16664
+ showAlpha = true,
16665
+ showClose = true,
16664
16666
  Link: LinkComponent,
16665
16667
  onLinkClick,
16666
16668
  onClose
@@ -16826,7 +16828,7 @@ const StandardNavigation = ({
16826
16828
  ),
16827
16829
  /* @__PURE__ */ jsxs("div", { className: "navigation-container", children: [
16828
16830
  /* @__PURE__ */ jsxs("div", { className: "navigation-logo-container", children: [
16829
- isStrategy ? /* @__PURE__ */ jsx(
16831
+ isStrategy && showClose ? /* @__PURE__ */ jsx(
16830
16832
  Button,
16831
16833
  {
16832
16834
  className: "navigation-close-button",
@@ -16855,7 +16857,7 @@ const StandardNavigation = ({
16855
16857
  children: Logo ? /* @__PURE__ */ jsxs(Fragment, { children: [
16856
16858
  /* @__PURE__ */ jsx(NavLogo, { dark: isStrategy }),
16857
16859
  /* @__PURE__ */ jsx(StandardLogo, { className: cn(!isStrategy ? "text-white" : "text-black") }),
16858
- /* @__PURE__ */ jsx(AlphaIcon$1, { dark: isStrategy })
16860
+ showAlpha ? /* @__PURE__ */ jsx(AlphaIcon$1, { dark: isStrategy }) : null
16859
16861
  ] }) : null
16860
16862
  }
16861
16863
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syscore/ui-library",
3
- "version": "2.0.0-beta-publish-workflow-beta.1",
3
+ "version": "2.0.0-beta-publish-workflow-beta.2",
4
4
  "description": "A comprehensive React component library built with Radix UI, Tailwind CSS, and TypeScript",
5
5
  "private": false,
6
6
  "type": "module",