You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @beta Flag indicating the docked nav is expanded on mobile. Only applies when variant is docked. */
26
26
isDockExpanded?: boolean;
27
-
/** @beta Flag indicating the docked nav should display text on desktop. Only applies when variant is docked. */
27
+
/** @beta Flag indicating the docked nav should display text on desktop. Only applies when variant is docked, and will handle
28
+
* setting isTextExpanded on individual isDocked components.
29
+
* */
28
30
isDockTextExpanded?: boolean;
29
-
/** The horizontal masthead content (e.g. <Masthead />). When using the dock variant, this content will only render at mobile viewports. */
31
+
/** The horizontal masthead content (e.g. <Masthead />). When using the docked variant, this content will only render at mobile viewports. */
30
32
masthead?: React.ReactNode;
31
-
/** @beta Content to render in the vertical dock when variant of dock is used. At mobile viewports, this content will be replaced with the content passed to masthead. */
33
+
/** @beta Content to render in the vertical dock when variant of docked is used. At mobile viewports, this content will be replaced with the content passed to masthead. */
32
34
dockContent?: React.ReactNode;
33
35
/** Sidebar component for a side nav, recommended to be a PageSidebar. If set to null, the page grid layout
0 commit comments