tapquest-ui-yeulamvietnam 2.0.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.
Files changed (188) hide show
  1. package/example/README.md +50 -0
  2. package/example/eslint.config.js +28 -0
  3. package/example/index.html +13 -0
  4. package/example/package.json +35 -0
  5. package/example/public/vite.svg +1 -0
  6. package/example/src/App.css +8 -0
  7. package/example/src/App.tsx +62 -0
  8. package/example/src/Card/index.tsx +15 -0
  9. package/example/src/Icons/CircleArrow.tsx +8 -0
  10. package/example/src/Icons/icon1.tsx +19 -0
  11. package/example/src/View/CoreComponentView/index.tsx +255 -0
  12. package/example/src/View/MapView/index.tsx +1325 -0
  13. package/example/src/View/MapView/map.html +14 -0
  14. package/example/src/assets/fonts/Kanit/Kanit-Black.ttf +0 -0
  15. package/example/src/assets/fonts/Kanit/Kanit-BlackItalic.ttf +0 -0
  16. package/example/src/assets/fonts/Kanit/Kanit-Bold.ttf +0 -0
  17. package/example/src/assets/fonts/Kanit/Kanit-BoldItalic.ttf +0 -0
  18. package/example/src/assets/fonts/Kanit/Kanit-ExtraBold.ttf +0 -0
  19. package/example/src/assets/fonts/Kanit/Kanit-ExtraBoldItalic.ttf +0 -0
  20. package/example/src/assets/fonts/Kanit/Kanit-ExtraLight.ttf +0 -0
  21. package/example/src/assets/fonts/Kanit/Kanit-ExtraLightItalic.ttf +0 -0
  22. package/example/src/assets/fonts/Kanit/Kanit-Italic.ttf +0 -0
  23. package/example/src/assets/fonts/Kanit/Kanit-Light.ttf +0 -0
  24. package/example/src/assets/fonts/Kanit/Kanit-LightItalic.ttf +0 -0
  25. package/example/src/assets/fonts/Kanit/Kanit-Medium.ttf +0 -0
  26. package/example/src/assets/fonts/Kanit/Kanit-MediumItalic.ttf +0 -0
  27. package/example/src/assets/fonts/Kanit/Kanit-Regular.ttf +0 -0
  28. package/example/src/assets/fonts/Kanit/Kanit-SemiBold.ttf +0 -0
  29. package/example/src/assets/fonts/Kanit/Kanit-SemiBoldItalic.ttf +0 -0
  30. package/example/src/assets/fonts/Kanit/Kanit-Thin.ttf +0 -0
  31. package/example/src/assets/fonts/Kanit/Kanit-ThinItalic.ttf +0 -0
  32. package/example/src/assets/fonts/Kanit/OFL.txt +93 -0
  33. package/example/src/assets/fonts/Roboto/Roboto-Black.ttf +0 -0
  34. package/example/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
  35. package/example/src/assets/fonts/Roboto/Roboto-Bold.ttf +0 -0
  36. package/example/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
  37. package/example/src/assets/fonts/Roboto/Roboto-ExtraBold.ttf +0 -0
  38. package/example/src/assets/fonts/Roboto/Roboto-ExtraBoldItalic.ttf +0 -0
  39. package/example/src/assets/fonts/Roboto/Roboto-ExtraLight.ttf +0 -0
  40. package/example/src/assets/fonts/Roboto/Roboto-ExtraLightItalic.ttf +0 -0
  41. package/example/src/assets/fonts/Roboto/Roboto-Italic.ttf +0 -0
  42. package/example/src/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
  43. package/example/src/assets/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
  44. package/example/src/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
  45. package/example/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
  46. package/example/src/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
  47. package/example/src/assets/fonts/Roboto/Roboto-SemiBold.ttf +0 -0
  48. package/example/src/assets/fonts/Roboto/Roboto-SemiBoldItalic.ttf +0 -0
  49. package/example/src/assets/fonts/Roboto/Roboto-Thin.ttf +0 -0
  50. package/example/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
  51. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Black.ttf +0 -0
  52. package/example/src/assets/fonts/Roboto/Roboto_Condensed-BlackItalic.ttf +0 -0
  53. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Bold.ttf +0 -0
  54. package/example/src/assets/fonts/Roboto/Roboto_Condensed-BoldItalic.ttf +0 -0
  55. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraBold.ttf +0 -0
  56. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraBoldItalic.ttf +0 -0
  57. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraLight.ttf +0 -0
  58. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ExtraLightItalic.ttf +0 -0
  59. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Italic.ttf +0 -0
  60. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Light.ttf +0 -0
  61. package/example/src/assets/fonts/Roboto/Roboto_Condensed-LightItalic.ttf +0 -0
  62. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Medium.ttf +0 -0
  63. package/example/src/assets/fonts/Roboto/Roboto_Condensed-MediumItalic.ttf +0 -0
  64. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Regular.ttf +0 -0
  65. package/example/src/assets/fonts/Roboto/Roboto_Condensed-SemiBold.ttf +0 -0
  66. package/example/src/assets/fonts/Roboto/Roboto_Condensed-SemiBoldItalic.ttf +0 -0
  67. package/example/src/assets/fonts/Roboto/Roboto_Condensed-Thin.ttf +0 -0
  68. package/example/src/assets/fonts/Roboto/Roboto_Condensed-ThinItalic.ttf +0 -0
  69. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Black.ttf +0 -0
  70. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-BlackItalic.ttf +0 -0
  71. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Bold.ttf +0 -0
  72. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-BoldItalic.ttf +0 -0
  73. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraBold.ttf +0 -0
  74. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraBoldItalic.ttf +0 -0
  75. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraLight.ttf +0 -0
  76. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ExtraLightItalic.ttf +0 -0
  77. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Italic.ttf +0 -0
  78. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Light.ttf +0 -0
  79. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-LightItalic.ttf +0 -0
  80. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Medium.ttf +0 -0
  81. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-MediumItalic.ttf +0 -0
  82. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Regular.ttf +0 -0
  83. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-SemiBold.ttf +0 -0
  84. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-SemiBoldItalic.ttf +0 -0
  85. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-Thin.ttf +0 -0
  86. package/example/src/assets/fonts/Roboto/Roboto_SemiCondensed-ThinItalic.ttf +0 -0
  87. package/example/src/assets/fonts/iCielBCLodestone/iCielBCLodestone.ttf +0 -0
  88. package/example/src/assets/react.svg +1 -0
  89. package/example/src/fonts.css +66 -0
  90. package/example/src/index.css +70 -0
  91. package/example/src/main.tsx +10 -0
  92. package/example/src/vite-env.d.ts +1 -0
  93. package/example/tsconfig.app.json +26 -0
  94. package/example/tsconfig.json +7 -0
  95. package/example/tsconfig.node.json +24 -0
  96. package/example/vite.config.ts +7 -0
  97. package/index.css +20 -0
  98. package/index.ts +42 -0
  99. package/package.json +44 -0
  100. package/src/components/AppbarPrimaryButton/index.tsx +56 -0
  101. package/src/components/Avatar.styled/index.tsx +8 -0
  102. package/src/components/Button.styled/index.tsx +154 -0
  103. package/src/components/Card.styled/index.tsx +26 -0
  104. package/src/components/Compound/Appbar/index.tsx +88 -0
  105. package/src/components/Compound/Header/index.tsx +40 -0
  106. package/src/components/Compound/InteractiveMap/MapSvg.tsx +608 -0
  107. package/src/components/Compound/LocationOverviewCard/index.tsx +186 -0
  108. package/src/components/Compound/MemoryCard/index.tsx +267 -0
  109. package/src/components/Compound/ProgressStep/index.tsx +54 -0
  110. package/src/components/Compound/SponsorByContainer/index.tsx +31 -0
  111. package/src/components/FormItem.styled/index.tsx +23 -0
  112. package/src/components/Icons/AppbarBg.tsx +22 -0
  113. package/src/components/Icons/ArrowCircle.tsx +8 -0
  114. package/src/components/Icons/ArrowDown.tsx +15 -0
  115. package/src/components/Icons/Camera.tsx +17 -0
  116. package/src/components/Icons/Check.tsx +7 -0
  117. package/src/components/Icons/ChevronLeft.tsx +7 -0
  118. package/src/components/Icons/ChevronRight.tsx +16 -0
  119. package/src/components/Icons/CircleAlert.tsx +9 -0
  120. package/src/components/Icons/CircleArrow.tsx +8 -0
  121. package/src/components/Icons/CircleCheck.tsx +7 -0
  122. package/src/components/Icons/CornerUpRight.tsx +7 -0
  123. package/src/components/Icons/Dart.tsx +7 -0
  124. package/src/components/Icons/Discover.tsx +16 -0
  125. package/src/components/Icons/Edit.tsx +16 -0
  126. package/src/components/Icons/Email.tsx +16 -0
  127. package/src/components/Icons/Exclaimation.tsx +7 -0
  128. package/src/components/Icons/Facebook.tsx +7 -0
  129. package/src/components/Icons/Gear.tsx +15 -0
  130. package/src/components/Icons/Gift.tsx +18 -0
  131. package/src/components/Icons/Globe.tsx +14 -0
  132. package/src/components/Icons/Home.tsx +7 -0
  133. package/src/components/Icons/Icon1.tsx +19 -0
  134. package/src/components/Icons/Icon1sm.tsx +19 -0
  135. package/src/components/Icons/Instagram.tsx +9 -0
  136. package/src/components/Icons/Link.tsx +16 -0
  137. package/src/components/Icons/LocationPin.tsx +10 -0
  138. package/src/components/Icons/Logout.tsx +15 -0
  139. package/src/components/Icons/MapMarker.tsx +8 -0
  140. package/src/components/Icons/Marker/MarkerRed.tsx +17 -0
  141. package/src/components/Icons/Menu.tsx +11 -0
  142. package/src/components/Icons/Mission.tsx +17 -0
  143. package/src/components/Icons/Moment.tsx +18 -0
  144. package/src/components/Icons/Phone.tsx +15 -0
  145. package/src/components/Icons/Pin.tsx +8 -0
  146. package/src/components/Icons/PinCircle.tsx +17 -0
  147. package/src/components/Icons/PinOutlined.tsx +7 -0
  148. package/src/components/Icons/Profile.tsx +15 -0
  149. package/src/components/Icons/ProfileGift.tsx +23 -0
  150. package/src/components/Icons/ProgressBar.tsx +20 -0
  151. package/src/components/Icons/ProgressBarInner.tsx +44 -0
  152. package/src/components/Icons/SealCheckIcon.tsx +18 -0
  153. package/src/components/Icons/Search.tsx +7 -0
  154. package/src/components/Icons/SendMessage.tsx +7 -0
  155. package/src/components/Icons/Share.tsx +14 -0
  156. package/src/components/Icons/ShareMemoryBadge.tsx +11 -0
  157. package/src/components/Icons/ShieldWarningIcon.tsx +18 -0
  158. package/src/components/Icons/Spinner.tsx +18 -0
  159. package/src/components/Icons/Step.tsx +7 -0
  160. package/src/components/Icons/StepChecked.tsx +8 -0
  161. package/src/components/Icons/StepLine.tsx +7 -0
  162. package/src/components/Icons/Telegram.tsx +7 -0
  163. package/src/components/Icons/Trash.tsx +7 -0
  164. package/src/components/Icons/User.tsx +15 -0
  165. package/src/components/Icons/XIcon.tsx +8 -0
  166. package/src/components/Icons/Zalo.tsx +23 -0
  167. package/src/components/Icons/index.tsx +66 -0
  168. package/src/components/Image.styled/index.tsx +35 -0
  169. package/src/components/Input.styled/index.tsx +34 -0
  170. package/src/components/InputPassword/index.tsx +34 -0
  171. package/src/components/InputSearch.styled/index.tsx +18 -0
  172. package/src/components/Loader.styled/index.tsx +26 -0
  173. package/src/components/Modal.styled/index.tsx +63 -0
  174. package/src/components/ProcessBar.styled/index.tsx +26 -0
  175. package/src/components/ProgressCircular.styled/index.tsx +61 -0
  176. package/src/components/SVGs/NoResult.tsx +62 -0
  177. package/src/components/SVGs/index.tsx +3 -0
  178. package/src/components/Select.styled/index.tsx +32 -0
  179. package/src/components/Tabs.styled/index.tsx +22 -0
  180. package/src/components/TextArea.styled/index.tsx +34 -0
  181. package/src/components/Typography.styled/index.tsx +419 -0
  182. package/src/helpers/index.ts +175 -0
  183. package/src/hooks/useHTMLToCanvas.tsx +115 -0
  184. package/src/hooks/useInteractiveMap.tsx +659 -0
  185. package/src/types/type.d.ts +9 -0
  186. package/tsconfig.json +33 -0
  187. package/tsconfig.node.json +12 -0
  188. package/tsup.config.ts +24 -0
@@ -0,0 +1,12 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": true,
4
+ "skipLibCheck": true,
5
+ "module": "ESNext",
6
+ "moduleResolution": "bundler",
7
+ "allowSyntheticDefaultImports": true
8
+ },
9
+ "include": [
10
+ "vite.config.ts"
11
+ ]
12
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,24 @@
1
+ /* eslint-disable import/no-default-export */
2
+ /* eslint-disable import/no-extraneous-dependencies */
3
+ import type { Options } from "tsup";
4
+ import { defineConfig } from "tsup";
5
+
6
+ export default defineConfig((options: Options) => ({
7
+ entry: ["index.ts"],
8
+ banner: {
9
+ js: "'use client'",
10
+ },
11
+ format: ["cjs", "esm"],
12
+ dts: true,
13
+ clean: true,
14
+ external: ["react"],
15
+ injectStyle: true,
16
+ loader:{
17
+ '.tff': 'file'
18
+ },
19
+ assets: {
20
+ from: "./fonts.css",
21
+ to: "fonts",
22
+ },
23
+ ...options,
24
+ }));