@luxfi/ui 8.2.4 → 8.2.6
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.cjs +2008 -85
- package/dist/index.css +132 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2007 -111
- package/package.json +2 -2
- package/src/index.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luxfi/ui",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.6",
|
|
4
4
|
"description": "Cross-platform UI components on @hanzo/gui. Native mobile + web.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -1025,7 +1025,7 @@
|
|
|
1025
1025
|
"dependencies": {
|
|
1026
1026
|
"@dnd-kit/core": "^6.3.1",
|
|
1027
1027
|
"@dnd-kit/sortable": "^10.0.0",
|
|
1028
|
-
"@hanzo/commerce": "7.7.
|
|
1028
|
+
"@hanzo/commerce": "7.7.3",
|
|
1029
1029
|
"@hanzo/ui": "8.25.0",
|
|
1030
1030
|
"@hanzogui/config": "^8.1.1",
|
|
1031
1031
|
"@hookform/resolvers": "5.2.2",
|
package/src/index.ts
CHANGED
|
@@ -436,3 +436,8 @@ export { TradingPanel } from './trading-panel';
|
|
|
436
436
|
export { TwoTierNavigationBar } from './two-tier-navigation-bar';
|
|
437
437
|
export { UnderlineNavigationBar } from './underline-navigation-bar';
|
|
438
438
|
export { YouTubePipPlayer } from './youtube-pip-player';
|
|
439
|
+
|
|
440
|
+
// The site chrome — header, footer, commerce panels, the pieces a Lux site
|
|
441
|
+
// composes a page from. A name the component set already defines is reached
|
|
442
|
+
// through ./site instead: Auth, Tooltip.
|
|
443
|
+
export { AccessCodeInput, ChatWidget, ContactDialog, Copyright, Footer, Header, Logo, Main, MiniChart, NotFound, Login, BackButton, BuyDrawer, DrawerMargin, BuyButton, CheckoutButton, CheckoutPanel, LoginPanel, Analytics, EmblaAutoplay } from './site/components';
|