@memori.ai/ui 1.2.0 → 1.3.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 +8 -0
- package/dist/index.d.ts +5 -0
- package/dist/memori-ai-ui.cjs.js +10 -10
- package/dist/memori-ai-ui.cjs.js.map +1 -1
- package/dist/memori-ai-ui.css +1 -1
- package/dist/memori-ai-ui.es.js +423 -412
- package/dist/memori-ai-ui.es.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [1.3.0](https://github.com/memori-ai/ui/compare/v1.2.0...v1.3.0) (2026-02-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add size prop to Drawer component ([21c7e2f](https://github.com/memori-ai/ui/commit/21c7e2f95eacac6142577c3a5a4bb6c91b411153))
|
|
9
|
+
* enhance SelectBox component with improved positioning and styling ([2246a34](https://github.com/memori-ai/ui/commit/2246a348b9d9dda19aa1834252f89b0ea0a640a5))
|
|
10
|
+
|
|
3
11
|
## [1.2.0](https://github.com/memori-ai/ui/compare/v1.1.0...v1.2.0) (2026-02-03)
|
|
4
12
|
|
|
5
13
|
|
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
|
*/
|