@kangtae49/just-layout 0.0.18 → 0.0.20

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
@@ -266,7 +266,7 @@ export declare const JustTabTitle: typeof JustTabTitle_2 & {
266
266
  displayName: string;
267
267
  };
268
268
 
269
- declare function JustTabTitle_2({ layoutId, justId, winInfo }: Props_5): JSX.Element;
269
+ declare function JustTabTitle_2({ layoutId, justId, winInfo, menuProps, toggleMenu, anchorPoint }: Props_5): JSX.Element;
270
270
 
271
271
  export declare type JustType = 'stack' | JustSplitType;
272
272
 
@@ -408,6 +408,15 @@ declare interface Props_5 extends default_2.Attributes {
408
408
  justBranch: JustBranch;
409
409
  isFullScreenView: boolean;
410
410
  winInfo: WinInfo;
411
+ menuProps: {
412
+ state?: "opening" | "open" | "closing" | "closed";
413
+ endTransition: () => void;
414
+ };
415
+ toggleMenu: (open: boolean) => void;
416
+ anchorPoint: {
417
+ x: number;
418
+ y: number;
419
+ };
411
420
  }
412
421
 
413
422
  declare interface Props_6 extends default_2.Attributes {
@@ -460,6 +469,15 @@ export declare interface TabTitleProps {
460
469
  justBranch: JustBranch;
461
470
  isFullScreenView: boolean;
462
471
  winInfo: WinInfo;
472
+ menuProps: {
473
+ state?: "opening" | "open" | "closing" | "closed";
474
+ endTransition: () => void;
475
+ };
476
+ toggleMenu: (open: boolean) => void;
477
+ anchorPoint: {
478
+ x: number;
479
+ y: number;
480
+ };
463
481
  }
464
482
 
465
483
  export declare const useJustLayoutStore: (id: string) => JustLayoutStore;