@proveanything/smartlinks-utils-ui 0.12.7 → 0.12.9

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.
@@ -372,6 +372,10 @@ interface RecordsAdminI18n {
372
372
  editor: string;
373
373
  closePreview: string;
374
374
  openPreview: string;
375
+ /** Tooltip / aria-label for the rail collapse (close) button. */
376
+ closeList: string;
377
+ /** Label for the floating pill that reopens the rail when collapsed. */
378
+ openList: string;
375
379
  previewAs: string;
376
380
  previewAsDefault: string;
377
381
  confirmDelete: string;
@@ -1873,8 +1877,10 @@ interface Props$9 {
1873
1877
  ariaLabel: string;
1874
1878
  title: string;
1875
1879
  children: ReactNode;
1880
+ /** Which edge of the anchor the pill should hug. Defaults to `right`. */
1881
+ side?: 'left' | 'right';
1876
1882
  }
1877
- declare function PreviewReopenPill({ anchorRef, onClick, ariaLabel, title, children }: Props$9): React$1.ReactPortal | null;
1883
+ declare function PreviewReopenPill({ anchorRef, onClick, ariaLabel, title, children, side, }: Props$9): React$1.ReactPortal | null;
1878
1884
 
1879
1885
  declare const ScopeBreadcrumb: ({ scope }: {
1880
1886
  scope: ParsedRef;