@loafmarkets/ui 0.1.58 → 0.1.59
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.d.mts +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import styled25, { keyframes, css } from 'styled-components';
|
|
|
9
9
|
import { Newspaper, BedDouble, Bath, CarFront } from 'lucide-react';
|
|
10
10
|
import * as LightweightCharts from 'lightweight-charts';
|
|
11
11
|
import { BiChevronUp, BiChevronDown, BiX, BiCoin, BiWallet, BiCreditCard, BiCalendar, BiInfoCircle, BiPencil, BiImages, BiVideo, BiMap } from 'react-icons/bi';
|
|
12
|
-
import {
|
|
12
|
+
import { FaChartLine, FaBitcoin } from 'react-icons/fa';
|
|
13
13
|
import { FiExternalLink } from 'react-icons/fi';
|
|
14
14
|
|
|
15
15
|
// src/components/button.tsx
|
|
@@ -9667,7 +9667,9 @@ function OfferingProgressCard({
|
|
|
9667
9667
|
subscriberCount = 0,
|
|
9668
9668
|
raisedAmount,
|
|
9669
9669
|
targetAmount,
|
|
9670
|
-
isPrivateClient = false
|
|
9670
|
+
isPrivateClient = false,
|
|
9671
|
+
style,
|
|
9672
|
+
className
|
|
9671
9673
|
}) {
|
|
9672
9674
|
const [currentTime, setCurrentTime] = useState(/* @__PURE__ */ new Date());
|
|
9673
9675
|
const [countdown, setCountdown] = useState(null);
|
|
@@ -9697,7 +9699,7 @@ function OfferingProgressCard({
|
|
|
9697
9699
|
const interval = setInterval(() => setCountdown(calculateCountdown()), 1e3);
|
|
9698
9700
|
return () => clearInterval(interval);
|
|
9699
9701
|
}, [opensAt]);
|
|
9700
|
-
return /* @__PURE__ */ jsxs(Container, { children: [
|
|
9702
|
+
return /* @__PURE__ */ jsxs(Container, { style, className, children: [
|
|
9701
9703
|
/* @__PURE__ */ jsxs(Header2, { children: [
|
|
9702
9704
|
/* @__PURE__ */ jsxs("h3", { children: [
|
|
9703
9705
|
/* @__PURE__ */ jsx(FaChartLine, {}),
|
|
@@ -15260,6 +15262,6 @@ function hasPendingActivity(data) {
|
|
|
15260
15262
|
}) ?? false;
|
|
15261
15263
|
}
|
|
15262
15264
|
|
|
15263
|
-
export { AssetSelectorBar, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Header, HousePositionSlider, HousePositionSliderMobile, LoafLiquidityBadge, LoafLiquidityLogo, LoginPopup, MobileTradeNav, Orderbook, owner_booking_default as OwnerBooking, PaymentPopup, PortfolioActivityPanel, PortfolioSummary, PriceChart, PropertyBuy, PropertyCompareBar, PropertyDocuments, PropertyHeroHeader, PropertyHistory, PropertyInspectionTimes, PropertyNewsUpdates, PropertyOffers, PropertyOverview, PropertyPhotoGallery, PropertySubheader, PropertyTour, PropertyValuation, Skeleton, ToastProvider, TradeConfirmationModal, TradingSlider, YourOrders, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
|
|
15265
|
+
export { AssetSelectorBar, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Header, HousePositionSlider, HousePositionSliderMobile, LoafLiquidityBadge, LoafLiquidityLogo, LoginPopup, MobileTradeNav, OfferingProgressCard, Orderbook, owner_booking_default as OwnerBooking, PaymentPopup, PortfolioActivityPanel, PortfolioSummary, PriceChart, PropertyBuy, PropertyCompareBar, PropertyDocuments, PropertyHeroHeader, PropertyHistory, PropertyInspectionTimes, PropertyNewsUpdates, PropertyOffers, PropertyOverview, PropertyPhotoGallery, PropertySubheader, PropertyTour, PropertyValuation, Skeleton, ToastProvider, TradeConfirmationModal, TradingSlider, YourOrders, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
|
|
15264
15266
|
//# sourceMappingURL=index.mjs.map
|
|
15265
15267
|
//# sourceMappingURL=index.mjs.map
|