@memori.ai/ui 1.2.0 → 1.4.0

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,20 @@
1
1
 
2
2
 
3
+ ## [1.4.0](https://github.com/memori-ai/ui/compare/v1.3.0...v1.4.0) (2026-02-04)
4
+
5
+
6
+ ### Features
7
+
8
+ * add displayValue prop to SelectBox component for custom rendering ([120c2ed](https://github.com/memori-ai/ui/commit/120c2ed58d0cef2e0cdb2a06f9bc48db0473c7b9))
9
+
10
+ ## [1.3.0](https://github.com/memori-ai/ui/compare/v1.2.0...v1.3.0) (2026-02-04)
11
+
12
+
13
+ ### Features
14
+
15
+ * add size prop to Drawer component ([21c7e2f](https://github.com/memori-ai/ui/commit/21c7e2f95eacac6142577c3a5a4bb6c91b411153))
16
+ * enhance SelectBox component with improved positioning and styling ([2246a34](https://github.com/memori-ai/ui/commit/2246a348b9d9dda19aa1834252f89b0ea0a640a5))
17
+
3
18
  ## [1.2.0](https://github.com/memori-ai/ui/compare/v1.1.0...v1.2.0) (2026-02-03)
4
19
 
5
20
 
package/dist/index.d.ts CHANGED
@@ -463,6 +463,11 @@ declare interface DrawerProps {
463
463
  * @default 'right'
464
464
  */
465
465
  anchor?: 'left' | 'right' | 'top' | 'bottom';
466
+ /**
467
+ * Size of the drawer (width for left/right, height for top/bottom).
468
+ * @default 'sm'
469
+ */
470
+ size?: 'sm' | 'md' | 'lg';
466
471
  /**
467
472
  * The contents of the drawer.
468
473
  */
@@ -924,6 +929,7 @@ declare interface SelectBoxProps {
924
929
  defaultValue?: string | null;
925
930
  onChange?: (value: string | null) => void;
926
931
  placeholder?: string;
932
+ displayValue?: default_2.ReactNode;
927
933
  label?: string;
928
934
  disabled?: boolean;
929
935
  required?: boolean;