twd-js 1.6.0 → 1.6.2

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
@@ -496,7 +496,7 @@ declare interface TWDElemAPI {
496
496
  should: ShouldFn;
497
497
  }
498
498
 
499
- export declare const TWDSidebar: ({ open, position }: TWDSidebarProps) => JSX.Element;
499
+ export declare const TWDSidebar: ({ open, position, search }: TWDSidebarProps) => JSX.Element;
500
500
 
501
501
  declare interface TWDSidebarProps {
502
502
  /**
@@ -511,6 +511,10 @@ declare interface TWDSidebarProps {
511
511
  * @default "left"
512
512
  */
513
513
  position?: "left" | "right";
514
+ /**
515
+ * Whether to show the search/filter input
516
+ */
517
+ search?: boolean;
514
518
  }
515
519
 
516
520
  /**