tapquest-ui-yeulamvietnam 3.3.0 → 4.1.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/index.ts CHANGED
@@ -39,4 +39,17 @@ export { useInteractiveMap };
39
39
 
40
40
  export { SVGs, Icons };
41
41
 
42
+ // Re-export all Icons individually for direct import
43
+ export {
44
+ Home, Exclaimation, XIcon, ProgressBar, ProgressBarInner, PinCircle, Camera, Menu, MapMarker, Edit,
45
+ ShareMemoryBadge, Facebook, Instagram, Telegram, Zalo,
46
+ Link, ArrowCircle, Pin, Gift, Share, Profile, ChevronLeft, ChevronRight,
47
+ Gear, ProfileGift, Moment, Mission, User, Logout, Trash, CornerUpRight,
48
+ SealCheckIcon, ShieldWarningIcon,
49
+ LocationPin, Email, Phone, Globe,
50
+ SendMessage, CircleCheck, Check,
51
+ CircleAlert, PinOutlined,
52
+ Discover, Dart
53
+ } from "./src/components/Icons";
54
+
42
55
  export type { types };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tapquest-ui-yeulamvietnam",
3
- "version": "3.3.0",
3
+ "version": "4.1.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -8,26 +8,34 @@
8
8
  "main": "./dist/index.mjs",
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.mts",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.mjs",
14
+ "types": "./dist/index.d.mts"
15
+ },
16
+ "./package.json": "./package.json"
17
+ },
11
18
  "scripts": {
12
19
  "build": "tsup",
13
20
  "dev": "tsup --watch",
14
21
  "dev:example": "cd example && npm run dev",
15
- "prepublishOnly": "npm run build",
22
+ "prepublishOnly": "bun run build",
16
23
  "version": "npm publish"
17
24
  },
18
25
  "peerDependencies": {
19
- "react": ">=18.2"
20
- },
21
- "dependencies": {
22
- "@ant-design/icons": "^5.3.0",
26
+ "react": ">=18.2",
27
+ "react-dom": ">=18.2",
23
28
  "antd": "^5.13.2",
24
- "class-variance-authority": "^0.7.0",
25
- "html2canvas-pro": "^1.5.8",
26
- "clsx": "latest",
29
+ "@ant-design/icons": "^5.3.0",
30
+ "styled-components": "^6.0.0",
31
+ "framer-motion": "^11.0.0",
27
32
  "dayjs": "^1.11.7",
28
- "framer-motion": "^11.0.16",
29
- "@phygitallabs/helpers": "latest",
30
- "styled-components": "^6.1.15"
33
+ "html2canvas-pro": "^1.5.8",
34
+ "class-variance-authority": "^0.7.0",
35
+ "clsx": "^2.0.0"
36
+ },
37
+ "dependencies": {
38
+ "@phygitallabs/helpers": "latest"
31
39
  },
32
40
  "devDependencies": {
33
41
  "@types/react": "^18.2.79",
package/tsup.config.ts CHANGED
@@ -12,7 +12,19 @@ export default defineConfig((options: Options) => ({
12
12
  outExtension: () => ({ js: '.mjs' }),
13
13
  dts: true,
14
14
  clean: true,
15
- external: ["react"],
15
+ external: [
16
+ "react",
17
+ "react-dom",
18
+ "antd",
19
+ "@ant-design/icons",
20
+ "styled-components",
21
+ "framer-motion",
22
+ "dayjs",
23
+ "html2canvas-pro",
24
+ "class-variance-authority",
25
+ "clsx",
26
+ "@phygitallabs/helpers",
27
+ ],
16
28
  sourcemap: true,
17
29
  minify: true,
18
30
  injectStyle: true,