@luxfi/ui 8.2.4 → 8.2.5

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.
@@ -4,20 +4,20 @@ declare const _default: ({
4
4
  variant: "linkFG";
5
5
  newTab: false;
6
6
  } | {
7
- variant?: undefined;
8
7
  title: string;
9
8
  href: string;
10
9
  newTab: false;
11
- } | {
12
10
  variant?: undefined;
11
+ } | {
13
12
  title: string;
14
13
  href: string;
15
14
  newTab?: undefined;
16
- } | {
17
15
  variant?: undefined;
16
+ } | {
18
17
  title: string;
19
18
  href: string;
20
19
  newTab: true;
20
+ variant?: undefined;
21
21
  })[];
22
22
  export default _default;
23
23
  //# sourceMappingURL=company.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/ui",
3
- "version": "8.2.4",
3
+ "version": "8.2.5",
4
4
  "description": "Cross-platform UI components on @hanzo/gui. Native mobile + web.",
5
5
  "type": "module",
6
6
  "license": "MIT",
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';