@ekanos/ui 0.1.2 → 0.1.4
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/README.md +13 -14
- package/dist/ai-prompt-input.js +122 -816
- package/dist/base.css +1 -1
- package/dist/card.d.ts +1 -1
- package/dist/dialog.js +16 -716
- package/dist/dropdown-menu.js +26 -719
- package/dist/form.d.ts +2 -2
- package/dist/icon.js +27 -0
- package/dist/select.js +22 -722
- package/dist/tokens.css +9 -9
- package/package.json +14 -14
package/dist/base.css
CHANGED
package/dist/card.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { useRender } from '@base-ui/react/use-render';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
* Takes a `render` prop (the Base UI convention
|
|
5
|
+
* Takes a `render` prop (the Base UI convention) so
|
|
6
6
|
* a card that is itself a destination can BE the link rather than wrapping one:
|
|
7
7
|
* `<Card render={<Link href={href} />}>`. Without it, clickable cards get
|
|
8
8
|
* hand-styled anchors and the surface drifts from this one.
|