@memori.ai/ui 1.5.0 → 1.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
 
2
2
 
3
+ ## [1.5.2](https://github.com/memori-ai/ui/compare/v1.5.1...v1.5.2) (2026-02-06)
4
+
5
+ ## [1.5.1](https://github.com/memori-ai/ui/compare/v1.5.0...v1.5.1) (2026-02-06)
6
+
3
7
  ## [1.5.0](https://github.com/memori-ai/ui/compare/v1.4.0...v1.5.0) (2026-02-06)
4
8
 
5
9
 
package/dist/index.d.ts CHANGED
@@ -540,10 +540,6 @@ declare interface DropdownItemProps extends Omit<default_2.ComponentPropsWithout
540
540
  * Content of the item.
541
541
  */
542
542
  children?: default_2.ReactNode;
543
- /**
544
- * Icon to show on the left side of the item.
545
- */
546
- icon?: default_2.ReactNode;
547
543
  /**
548
544
  * If true, the item is disabled.
549
545
  * @default false
@@ -647,10 +643,7 @@ declare interface DropdownSeparatorProps extends Omit<default_2.ComponentPropsWi
647
643
  style?: default_2.CSSProperties;
648
644
  }
649
645
 
650
- /** Button-related props: when set, the trigger renders as your Button component (single button in DOM). */
651
- declare type DropdownTriggerButtonProps = Pick<ButtonProps, 'variant' | 'size' | 'fullWidth' | 'shape' | 'shadow' | 'danger' | 'active'>;
652
-
653
- declare interface DropdownTriggerProps extends Omit<default_2.ComponentPropsWithoutRef<typeof Menu.Trigger>, 'className' | 'style' | 'render'>, DropdownTriggerButtonProps {
646
+ declare interface DropdownTriggerProps extends Omit<default_2.ComponentPropsWithoutRef<typeof Menu.Trigger>, 'className' | 'style' | 'render'> {
654
647
  /**
655
648
  * Content of the trigger (e.g. button text or icon).
656
649
  */
@@ -669,9 +662,9 @@ declare interface DropdownTriggerProps extends Omit<default_2.ComponentPropsWith
669
662
  */
670
663
  style?: default_2.CSSProperties;
671
664
  /**
672
- * Custom element for the trigger. Use this to render your own component (e.g. Button)
673
- * as the trigger so there is a single button in the DOM. Receives trigger props and
674
- * state (e.g. open). Prefer using variant/size etc. for the built-in Button.
665
+ * Custom element for the trigger. Receives trigger props and state (e.g. open).
666
+ * Use this to render your own component (e.g. Button) as the trigger so there
667
+ * is a single button in the DOM.
675
668
  */
676
669
  render?: default_2.ComponentPropsWithoutRef<typeof Menu.Trigger>['render'];
677
670
  }