tapquest-ui-yeulamvietnam 4.3.0 → 6.2.0
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/bun.lock +1257 -0
- package/dist/index.cjs +44 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +34 -34
- package/dist/index.js.map +1 -1
- package/index.ts +4 -2
- package/package.json +1 -1
- package/src/components/Icons/index.tsx +5 -4
package/index.ts
CHANGED
|
@@ -24,6 +24,7 @@ import Avatar from "./src/components/Avatar.styled";
|
|
|
24
24
|
import Card from "./src/components/Card.styled";
|
|
25
25
|
|
|
26
26
|
import Appbar from "./src/components/Compound/Appbar";
|
|
27
|
+
import { AppbarBg } from "./src/components/Icons/AppbarBg";
|
|
27
28
|
import Header from "./src/components/Compound/Header";
|
|
28
29
|
import AppbarPrimaryButton from "./src/components/AppbarPrimaryButton";
|
|
29
30
|
import ProgressStep from "./src/components/Compound/ProgressStep";
|
|
@@ -34,7 +35,7 @@ import SponsorByContainer from "./src/components/Compound/SponsorByContainer";
|
|
|
34
35
|
|
|
35
36
|
import useInteractiveMap from "./src/hooks/useInteractiveMap";
|
|
36
37
|
|
|
37
|
-
export { Button, Typography, ProgressCircular, Loader, Image, Tabs, Modal, FormItem, Input, InputPassword, TextArea, InputSearch, Select, Avatar, Appbar, Header, AppbarPrimaryButton, Card, ProgressStep, MemoryCard, LocationOverviewCard, SponsorByContainer };
|
|
38
|
+
export { Button, Typography, ProgressCircular, Loader, Image, Tabs, Modal, FormItem, Input, InputPassword, TextArea, InputSearch, Select, Avatar, Appbar, AppbarBg, Header, AppbarPrimaryButton, Card, ProgressStep, MemoryCard, LocationOverviewCard, SponsorByContainer };
|
|
38
39
|
export { useInteractiveMap };
|
|
39
40
|
|
|
40
41
|
export { SVGs, Icons };
|
|
@@ -49,7 +50,8 @@ export {
|
|
|
49
50
|
LocationPin, Email, Phone, Globe,
|
|
50
51
|
SendMessage, CircleCheck, Check,
|
|
51
52
|
CircleAlert, PinOutlined,
|
|
52
|
-
Discover, Dart
|
|
53
|
+
Discover, Dart, Spinner
|
|
53
54
|
} from "./src/components/Icons";
|
|
54
55
|
|
|
55
56
|
export type { types };
|
|
57
|
+
export type { AppbarMenuItem } from "./src/types/type";
|
package/package.json
CHANGED
|
@@ -52,15 +52,16 @@ import PinOutlined from "./PinOutlined";
|
|
|
52
52
|
|
|
53
53
|
import Discover from "./Discover";
|
|
54
54
|
import Dart from "./Dart";
|
|
55
|
+
import Spinner from "./Spinner";
|
|
55
56
|
|
|
56
|
-
export {
|
|
57
|
-
Home, Exclaimation, XIcon, ProgressBar, ProgressBarInner, PinCircle, Camera, Menu, MapMarker, Edit,
|
|
58
|
-
ShareMemoryBadge, Facebook, Instagram, Telegram, Zalo,
|
|
57
|
+
export {
|
|
58
|
+
Home, Exclaimation, XIcon, ProgressBar, ProgressBarInner, PinCircle, Camera, Menu, MapMarker, Edit,
|
|
59
|
+
ShareMemoryBadge, Facebook, Instagram, Telegram, Zalo,
|
|
59
60
|
Link, ArrowCircle, Pin, Gift, Share, Profile, ChevronLeft, ChevronRight,
|
|
60
61
|
Gear, ProfileGift, Moment, Mission, User, Logout, Trash, CornerUpRight,
|
|
61
62
|
SealCheckIcon, ShieldWarningIcon,
|
|
62
63
|
LocationPin, Email, Phone, Globe,
|
|
63
64
|
SendMessage, CircleCheck, Check,
|
|
64
65
|
CircleAlert, PinOutlined,
|
|
65
|
-
Discover, Dart
|
|
66
|
+
Discover, Dart, Spinner
|
|
66
67
|
};
|