@nimbus-ds/patterns 1.20.0 → 1.20.1

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.d.ts CHANGED
@@ -38,7 +38,7 @@ export interface AppShellComponents {
38
38
  * while keeping individual top-level props for backward compatibility.
39
39
  */
40
40
  export type AppShellMenuFlyoutOptions = {
41
- /** How the popover opens. Defaults to 'hover'. */
41
+ /** How the popover opens. Defaults to 'manual'. */
42
42
  trigger?: "hover" | "manual";
43
43
  /** Controlled open state for the flyout. */
44
44
  open?: boolean;
@@ -67,15 +67,15 @@ export interface AppShellProperties {
67
67
  */
68
68
  menuProperties?: Pick<BoxBaseProps, "display">;
69
69
  /**
70
- * Controls whether the left sidebar (menu) is expanded (true) or collapsed (false).
70
+ * Controls whether the left sidebar (menu) is expanded (true) or collapsed (false). Defaults to true.
71
71
  */
72
72
  menuExpanded?: boolean;
73
73
  /**
74
- * Sidebar width when expanded. Defaults to "18rem".
74
+ * Sidebar width when expanded. Defaults to "240px".
75
75
  */
76
76
  menuExpandedWidth?: BoxBaseProps["width"];
77
77
  /**
78
- * Sidebar width when collapsed (rail). If provided, the sidebar will render in a compact rail while collapsed. Defaults to "4.5rem".
78
+ * Sidebar width when collapsed (rail). If provided, the sidebar will render in a compact rail while collapsed. Defaults to "48px".
79
79
  */
80
80
  menuCollapsedWidth?: BoxBaseProps["width"];
81
81
  /**