@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.
- package/dist/components/ui/breadcrumb/breadcrumb.js +1 -1
- package/dist/components/ui/input-select/input-select.js +53 -45
- package/dist/components/ui/input-select/input-select.js.map +1 -1
- package/dist/components/ui/sidebar-secondary/sidebar-secondary.js +120 -87
- package/dist/components/ui/sidebar-secondary/sidebar-secondary.js.map +1 -1
- package/dist/index.js +58 -58
- package/dist/node_modules/.pnpm/react-resizable-panels@4.11.2_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/react-resizable-panels/dist/react-resizable-panels.js +7 -7
- package/dist/react.js +58 -58
- package/dist/src/components/ui/input-select/input-select.d.ts +6 -0
- package/dist/src/components/ui/sidebar-secondary/sidebar-secondary.d.ts +5 -0
- package/dist/ui-react.css +1 -1
- package/package.json +6 -3
|
@@ -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>>;
|