@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.
- 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/dist/site/site-def/footer/company.d.ts +3 -3
- package/package.json +1 -1
- package/src/index.ts +5 -0
|
@@ -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
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';
|