@acronis-platform/ui-react 0.33.1 → 0.35.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.
@@ -101,6 +101,11 @@ declare const SidebarSecondaryMenuItemExtras: React.ForwardRefExoticComponent<Si
101
101
  export interface SidebarSecondaryCollapseTriggerProps extends Omit<React.ComponentPropsWithoutRef<'button'>, 'children'> {
102
102
  /** Leading 16px icon (e.g. a panel-left glyph). */
103
103
  icon?: React.ReactNode;
104
+ /**
105
+ * Optional trailing keyboard-shortcut hint (e.g. `⌘J`), right-aligned and
106
+ * hidden alongside the label in collapsed mode.
107
+ */
108
+ shortcut?: React.ReactNode;
104
109
  children?: React.ReactNode;
105
110
  }
106
111
  declare const SidebarSecondaryCollapseTrigger: React.ForwardRefExoticComponent<SidebarSecondaryCollapseTriggerProps & React.RefAttributes<HTMLButtonElement>>;