@v-miniapp/ui-react 1.0.59 → 1.0.71

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 (491) hide show
  1. package/dist/_virtual/_cloneBuffer.js +4 -0
  2. package/dist/_virtual/_commonjsHelpers.js +8 -0
  3. package/dist/_virtual/_nodeUtil.js +4 -0
  4. package/dist/_virtual/cloneDeepWith.js +7 -0
  5. package/dist/_virtual/isBuffer.js +4 -0
  6. package/dist/_virtual/isObject.js +7 -0
  7. package/dist/_virtual/isSameOrAfter.js +7 -0
  8. package/dist/_virtual/isSameOrAfter2.js +4 -0
  9. package/dist/_virtual/isSameOrBefore.js +7 -0
  10. package/dist/_virtual/isSameOrBefore2.js +4 -0
  11. package/dist/_virtual/merge.js +7 -0
  12. package/dist/_virtual/omit.js +7 -0
  13. package/dist/_virtual/pick.js +7 -0
  14. package/dist/_virtual/throttle.js +7 -0
  15. package/dist/assets/icons/loader.svg.js +5 -0
  16. package/dist/assets/icons/placeholder.svg.js +5 -0
  17. package/dist/assets/images/broken-image.svg.js +5 -0
  18. package/dist/assets/images/default-error.png.js +4 -0
  19. package/dist/assets/images/image.svg.js +5 -0
  20. package/dist/components/ai-app/ai-app.d.ts +7 -0
  21. package/dist/components/ai-app/ai-app.js +20 -0
  22. package/dist/components/ai-app/index.d.ts +1 -0
  23. package/dist/components/alert/alert.js +76 -0
  24. package/dist/components/app/app.d.ts +1 -6
  25. package/dist/components/app/app.js +78 -0
  26. package/dist/components/app/app.store.d.ts +6 -0
  27. package/dist/components/app/app.store.js +8 -0
  28. package/dist/components/app/bottom-tab-bar-layout/hook.js +36 -0
  29. package/dist/components/app/bottom-tab-bar-layout/index.js +38 -0
  30. package/dist/components/app/bottom-tab-bar-layout/store.js +54 -0
  31. package/dist/components/app/data-theme.js +29 -0
  32. package/dist/components/app/navigation-bar-layout/hook.js +39 -0
  33. package/dist/components/app/navigation-bar-layout/index.js +46 -0
  34. package/dist/components/app/navigation-bar-layout/store.js +60 -0
  35. package/dist/components/app/page-layout/hook.js +62 -0
  36. package/dist/components/app/page-layout/index.js +21 -0
  37. package/dist/components/app/page-layout/store.js +52 -0
  38. package/dist/components/avatar/avatar.js +79 -0
  39. package/dist/components/badge/badge.js +40 -0
  40. package/dist/components/bottom-tab-bar/bottom-tab-bar.js +90 -0
  41. package/dist/components/button/button.const.js +7 -0
  42. package/dist/components/button/button.js +62 -0
  43. package/dist/components/calendar/calendar-range-sheet.js +66 -0
  44. package/dist/components/calendar/calendar-single-sheet.js +64 -0
  45. package/dist/components/calendar/calendar.js +16 -0
  46. package/dist/components/calendar/default-render.js +16 -0
  47. package/dist/components/calendar/range-picker.js +301 -0
  48. package/dist/components/calendar/single-picker.js +186 -0
  49. package/dist/components/calendar/utils.js +25 -0
  50. package/dist/components/carousel/carousel.js +47 -0
  51. package/dist/components/carousel/use-carousel.js +54 -0
  52. package/dist/components/checkbox/check-icon.js +23 -0
  53. package/dist/components/checkbox/checkbox.js +131 -0
  54. package/dist/components/checkbox/indeterminate-icon.js +20 -0
  55. package/dist/components/chip/chip.js +80 -0
  56. package/dist/components/date-field/date-field-range.js +153 -0
  57. package/dist/components/date-field/date-field.js +100 -0
  58. package/dist/components/date-field/input.js +53 -0
  59. package/dist/components/date-picker/date-picker-base.js +214 -0
  60. package/dist/components/date-picker/date-picker-item.js +69 -0
  61. package/dist/components/date-picker/date-picker-sheet.js +54 -0
  62. package/dist/components/date-picker/date-picker.constant.js +11 -0
  63. package/dist/components/date-picker/date-picker.js +76 -0
  64. package/dist/components/date-picker/date-picker.utils.js +58 -0
  65. package/dist/components/dialog/dialog.js +115 -0
  66. package/dist/components/dropdown/dropdown-base.js +22 -0
  67. package/dist/components/dropdown/dropdown.js +148 -0
  68. package/dist/components/error/error-boundary.js +28 -0
  69. package/dist/components/error/error.js +25 -0
  70. package/dist/components/icon/icon-mapping.js +260 -0
  71. package/dist/components/icon/icon.js +54 -0
  72. package/dist/components/image/image.js +70 -0
  73. package/dist/components/index.d.ts +1 -0
  74. package/dist/components/input-wrapper/input-wrapper.js +153 -0
  75. package/dist/components/label/label.js +58 -0
  76. package/dist/components/layout/page-loading.js +39 -0
  77. package/dist/components/layout/page.js +103 -0
  78. package/dist/components/list-item/list-item.js +36 -0
  79. package/dist/components/navigation-bar/navigation-bar.d.ts +1 -4
  80. package/dist/components/navigation-bar/navigation-bar.js +106 -0
  81. package/dist/components/number-field/number-field.js +162 -0
  82. package/dist/components/option-item/option-item.js +56 -0
  83. package/dist/components/pagination/pagination.js +20 -0
  84. package/dist/components/pull-to-refresh/pull-to-refresh.js +120 -0
  85. package/dist/components/radio/radio.js +72 -0
  86. package/dist/components/rating/rating.js +62 -0
  87. package/dist/components/rating/star.js +22 -0
  88. package/dist/components/search-field/search-field.js +40 -0
  89. package/dist/components/section/section-content.js +10 -0
  90. package/dist/components/section/section-title.js +32 -0
  91. package/dist/components/section/section.js +21 -0
  92. package/dist/components/seo/seo.js +18 -0
  93. package/dist/components/sheet/sheet-body.js +25 -0
  94. package/dist/components/sheet/sheet-footer.js +11 -0
  95. package/dist/components/sheet/sheet-header.js +52 -0
  96. package/dist/components/sheet/sheet.js +72 -0
  97. package/dist/components/skeleton/skeleton.js +50 -0
  98. package/dist/components/switch/switch.js +68 -0
  99. package/dist/components/tab-bar/tab-bar.js +130 -0
  100. package/dist/components/tab-bar/tab.js +55 -0
  101. package/dist/components/text-area/text-area.js +75 -0
  102. package/dist/components/text-field/text-field.js +63 -0
  103. package/dist/components/toast/toast-provider.js +45 -0
  104. package/dist/components/toast/toast.js +66 -0
  105. package/dist/components/toast/toast.store.js +35 -0
  106. package/dist/components/tooltip/tooltip.js +43 -0
  107. package/dist/components/typography/typography.js +28 -0
  108. package/dist/components/uploader/helper.js +21 -0
  109. package/dist/components/uploader/uploader.js +93 -0
  110. package/dist/components/visibility-sensor/visibility-sensor.js +17 -0
  111. package/dist/docs/ui-react/icon-list-grid.d.ts +1 -0
  112. package/dist/external/index.js +13357 -13497
  113. package/dist/external/styles.css +1 -1
  114. package/dist/hooks/use-custom-icon-event.js +16 -0
  115. package/dist/hooks/use-settings-changed.js +16 -0
  116. package/dist/index.d.ts +1 -0
  117. package/dist/index.js +139 -7488
  118. package/dist/locales/en.json.js +30 -0
  119. package/dist/locales/index.d.ts +2 -0
  120. package/dist/locales/index.js +10 -0
  121. package/dist/locales/vi.json.js +30 -0
  122. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrAfter.js +18 -0
  123. package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/isSameOrBefore.js +18 -0
  124. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_DataView.js +12 -0
  125. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Hash.js +22 -0
  126. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_ListCache.js +22 -0
  127. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Map.js +12 -0
  128. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_MapCache.js +22 -0
  129. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Promise.js +12 -0
  130. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Set.js +12 -0
  131. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Stack.js +20 -0
  132. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Symbol.js +11 -0
  133. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_Uint8Array.js +11 -0
  134. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_WeakMap.js +12 -0
  135. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_apply.js +22 -0
  136. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayEach.js +14 -0
  137. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayFilter.js +16 -0
  138. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayLikeKeys.js +26 -0
  139. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayMap.js +14 -0
  140. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_arrayPush.js +14 -0
  141. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignMergeValue.js +15 -0
  142. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assignValue.js +16 -0
  143. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_assocIndexOf.js +17 -0
  144. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssign.js +15 -0
  145. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignIn.js +15 -0
  146. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseAssignValue.js +19 -0
  147. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseClone.js +70 -0
  148. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseCreate.js +23 -0
  149. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFlatten.js +20 -0
  150. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseFor.js +11 -0
  151. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGet.js +18 -0
  152. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetAllKeys.js +16 -0
  153. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseGetTag.js +16 -0
  154. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseHasIn.js +12 -0
  155. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsArguments.js +15 -0
  156. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsMap.js +15 -0
  157. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsNative.js +22 -0
  158. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsSet.js +15 -0
  159. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseIsTypedArray.js +17 -0
  160. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeys.js +20 -0
  161. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseKeysIn.js +21 -0
  162. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMerge.js +27 -0
  163. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseMergeDeep.js +38 -0
  164. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePick.js +17 -0
  165. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_basePickBy.js +20 -0
  166. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseRest.js +16 -0
  167. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSet.js +31 -0
  168. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSetToString.js +20 -0
  169. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseSlice.js +16 -0
  170. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTimes.js +14 -0
  171. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseToString.js +24 -0
  172. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseTrim.js +14 -0
  173. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnary.js +14 -0
  174. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_baseUnset.js +34 -0
  175. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_castPath.js +17 -0
  176. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneArrayBuffer.js +15 -0
  177. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneBuffer.js +19 -0
  178. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneDataView.js +15 -0
  179. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneRegExp.js +14 -0
  180. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneSymbol.js +14 -0
  181. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_cloneTypedArray.js +15 -0
  182. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyArray.js +15 -0
  183. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copyObject.js +21 -0
  184. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbols.js +15 -0
  185. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_copySymbolsIn.js +15 -0
  186. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_coreJsData.js +11 -0
  187. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createAssigner.js +22 -0
  188. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_createBaseFor.js +19 -0
  189. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_customOmitClone.js +14 -0
  190. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_defineProperty.js +17 -0
  191. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_flatRest.js +16 -0
  192. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_freeGlobal.js +11 -0
  193. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeys.js +16 -0
  194. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getAllKeysIn.js +16 -0
  195. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getMapData.js +15 -0
  196. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getNative.js +16 -0
  197. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getPrototype.js +11 -0
  198. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getRawTag.js +21 -0
  199. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbols.js +16 -0
  200. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getSymbolsIn.js +18 -0
  201. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getTag.js +33 -0
  202. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_getValue.js +12 -0
  203. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hasPath.js +26 -0
  204. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashClear.js +14 -0
  205. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashDelete.js +13 -0
  206. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashGet.js +19 -0
  207. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashHas.js +15 -0
  208. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_hashSet.js +15 -0
  209. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneArray.js +14 -0
  210. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneByTag.js +48 -0
  211. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_initCloneObject.js +16 -0
  212. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isFlattenable.js +16 -0
  213. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIndex.js +14 -0
  214. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isIterateeCall.js +20 -0
  215. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKey.js +18 -0
  216. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isKeyable.js +13 -0
  217. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isMasked.js +17 -0
  218. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_isPrototype.js +14 -0
  219. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheClear.js +12 -0
  220. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheDelete.js +18 -0
  221. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheGet.js +15 -0
  222. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheHas.js +14 -0
  223. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_listCacheSet.js +15 -0
  224. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheClear.js +20 -0
  225. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheDelete.js +15 -0
  226. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheGet.js +14 -0
  227. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheHas.js +14 -0
  228. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_mapCacheSet.js +15 -0
  229. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_memoizeCapped.js +17 -0
  230. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeCreate.js +11 -0
  231. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeys.js +11 -0
  232. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nativeKeysIn.js +16 -0
  233. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_nodeUtil.js +19 -0
  234. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_objectToString.js +13 -0
  235. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overArg.js +14 -0
  236. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_overRest.js +21 -0
  237. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_parent.js +15 -0
  238. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_root.js +11 -0
  239. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_safeGet.js +13 -0
  240. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_setToString.js +12 -0
  241. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_shortOut.js +22 -0
  242. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackClear.js +14 -0
  243. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackDelete.js +13 -0
  244. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackGet.js +12 -0
  245. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackHas.js +12 -0
  246. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stackSet.js +23 -0
  247. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_stringToPath.js +16 -0
  248. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toKey.js +17 -0
  249. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_toSource.js +23 -0
  250. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/_trimmedEndIndex.js +15 -0
  251. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/cloneDeepWith.js +14 -0
  252. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/constant.js +14 -0
  253. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/debounce.js +60 -0
  254. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/eq.js +12 -0
  255. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/flatten.js +15 -0
  256. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/hasIn.js +15 -0
  257. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/identity.js +12 -0
  258. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArguments.js +16 -0
  259. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArray.js +10 -0
  260. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLike.js +15 -0
  261. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isArrayLikeObject.js +15 -0
  262. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isBuffer.js +14 -0
  263. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isFunction.js +18 -0
  264. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isLength.js +13 -0
  265. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isMap.js +13 -0
  266. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObject.js +13 -0
  267. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isObjectLike.js +12 -0
  268. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isPlainObject.js +22 -0
  269. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSet.js +13 -0
  270. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isSymbol.js +15 -0
  271. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/isTypedArray.js +13 -0
  272. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keys.js +16 -0
  273. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/keysIn.js +16 -0
  274. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/last.js +13 -0
  275. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/memoize.js +23 -0
  276. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/merge.js +14 -0
  277. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/now.js +13 -0
  278. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/omit.js +29 -0
  279. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/pick.js +14 -0
  280. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubArray.js +12 -0
  281. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/stubFalse.js +12 -0
  282. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/throttle.js +22 -0
  283. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toNumber.js +28 -0
  284. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toPlainObject.js +15 -0
  285. package/dist/node_modules/.pnpm/lodash@4.17.23/node_modules/lodash/toString.js +14 -0
  286. package/dist/styles.css +1 -1
  287. package/dist/utils/bound.js +7 -0
  288. package/dist/utils/can-use-dom.js +4 -0
  289. package/dist/utils/classname.js +6 -0
  290. package/dist/utils/colors.gen.js +371 -0
  291. package/dist/utils/colors.js +8 -0
  292. package/dist/utils/convert-px.js +14 -0
  293. package/dist/utils/date.d.ts +2 -1
  294. package/dist/utils/date.js +9 -0
  295. package/dist/utils/deep-clone.js +10 -0
  296. package/dist/utils/dev-log.js +7 -0
  297. package/dist/utils/get-scroll-parent.js +20 -0
  298. package/dist/utils/is-dev.js +4 -0
  299. package/dist/utils/rubberband.js +11 -0
  300. package/dist/utils/sleep.js +4 -0
  301. package/dist/utils/supports-passive.js +15 -0
  302. package/dist/utils/to-css-length.js +6 -0
  303. package/dist/vsf/choose-image.js +14 -0
  304. package/dist-storybook/assets/AIApp-C4keJkW8.js +37 -0
  305. package/dist-storybook/assets/{App-Dp1UG-xp.js → App-BkiRuUOF.js} +1 -1
  306. package/dist-storybook/assets/Color-6BZIO3FS-EdXZe4iv.js +1 -0
  307. package/dist-storybook/assets/{DEEPLINK-cjgFMuRJ.js → DEEPLINK-CvpIbZVm.js} +1 -1
  308. package/dist-storybook/assets/DocsRenderer-LL677BLK-Ch7ovClC.js +2 -0
  309. package/dist-storybook/assets/{EVENTS-BY66PjI7.js → EVENTS-Bnl2ehlm.js} +1 -1
  310. package/dist-storybook/assets/{GETTING_STARTED-BiQMvjvo.js → GETTING_STARTED-BYcN9hg3.js} +1 -1
  311. package/dist-storybook/assets/{GETTING_STARTED-580o-9Mx.js → GETTING_STARTED-BmHWFQQE.js} +1 -1
  312. package/dist-storybook/assets/GETTING_STARTED-C1AOB25Z.js +45 -0
  313. package/dist-storybook/assets/{GETTING_STARTED-CIVMqKZW.js → GETTING_STARTED-CBY9dL2_.js} +1 -1
  314. package/dist-storybook/assets/ICON-BaZgXbtw.js +6 -0
  315. package/dist-storybook/assets/ICON-CT1pTB1A.js +6 -0
  316. package/dist-storybook/assets/{INFINITE_SCROLL-BbeR5HeP.js → INFINITE_SCROLL-BJeWhgO7.js} +1 -1
  317. package/dist-storybook/assets/{LocalesProvider-CMlmwAyY.js → LocalesProvider-CQEwtoq3.js} +1 -1
  318. package/dist-storybook/assets/{MIGRATE_DARKMODE_TO_THEME-CBDyZyg2.js → MIGRATE_DARKMODE_TO_THEME-DCxXgvQC.js} +1 -1
  319. package/dist-storybook/assets/{MIGRATION_GUIDE-FZyRWI-B.js → MIGRATION_GUIDE-BN_V-xNj.js} +1 -1
  320. package/dist-storybook/assets/OVERVIEW-AI-CLWBzviY.js +35 -0
  321. package/dist-storybook/assets/{OVERVIEW-C9_6gX5Q.js → OVERVIEW-Byly3lQV.js} +1 -1
  322. package/dist-storybook/assets/{Router-B5U8bubH.js → Router-CO6rjSXr.js} +1 -1
  323. package/dist-storybook/assets/{TAILWIND_INTEGRATION-BJdy5DAv.js → TAILWIND_INTEGRATION-CpN4_fSu.js} +1 -1
  324. package/dist-storybook/assets/{THEME-CRbvH7KT.js → THEME-B9Y39f9D.js} +1 -1
  325. package/dist-storybook/assets/WithTooltip-65CFNBJE-D6J_7FjK.js +9 -0
  326. package/dist-storybook/assets/{alert.stories-D0X5wUHk.js → alert.stories-CUItfPLn.js} +12 -12
  327. package/dist-storybook/assets/app.store-BJVKVv1J.js +1 -0
  328. package/dist-storybook/assets/avatar.stories-8_vV7Bb0.js +136 -0
  329. package/dist-storybook/assets/{axe-BHGdSCoA.js → axe-4EaTvypG.js} +13 -13
  330. package/dist-storybook/assets/badge-Gh2kTOE3.js +1 -0
  331. package/dist-storybook/assets/{badge.stories-BEFNaUA1.js → badge.stories-BXGAtgaV.js} +3 -3
  332. package/dist-storybook/assets/blocks-CB7UwFa4.js +758 -0
  333. package/dist-storybook/assets/bottom-tab-bar.stories-OrY-k1sb.js +280 -0
  334. package/dist-storybook/assets/button-BLW8SOpg.js +1 -0
  335. package/dist-storybook/assets/{button.stories-DgYDJ6x7.js → button.stories--0kpp_af.js} +3 -3
  336. package/dist-storybook/assets/calendar-ySr-9cXG.js +1 -0
  337. package/dist-storybook/assets/{calendar.stories-IVvRAjWN.js → calendar.stories-4MQj1nsX.js} +1 -1
  338. package/dist-storybook/assets/carousel.stories-CMtljvBR.js +253 -0
  339. package/dist-storybook/assets/checkbox.stories-xYjsVg2X.js +201 -0
  340. package/dist-storybook/assets/{chip.stories-D7E6fdiV.js → chip.stories-DYEfUGq3.js} +12 -12
  341. package/dist-storybook/assets/classname-Bl5epEs-.js +1 -0
  342. package/dist-storybook/assets/client-CN8vOzuD.js +9 -0
  343. package/dist-storybook/assets/{date-B3PFMb6s.js → date-DWIyMGld.js} +1 -1
  344. package/dist-storybook/assets/date-field.stories-5Tlzdpvr.js +129 -0
  345. package/dist-storybook/assets/date-picker-DeB43YU4.js +1 -0
  346. package/dist-storybook/assets/{date-picker.stories-CIFgk4q_.js → date-picker.stories-Shn-MmVG.js} +1 -1
  347. package/dist-storybook/assets/dialog.stories-DeNKN0oJ.js +212 -0
  348. package/dist-storybook/assets/dropdown.stories-Bqmu2_KM.js +449 -0
  349. package/dist-storybook/assets/{embla-carousel-react.esm-5D5fs7OQ.js → embla-carousel-react.esm-DOEAp-w3.js} +1 -1
  350. package/dist-storybook/assets/{en-Cs9O0XWn.js → en-IjeCvZ5U.js} +1 -1
  351. package/dist-storybook/assets/formatter-EIJCOSYU-DZLV30KU.js +1 -0
  352. package/dist-storybook/assets/icon-Cc9W858e.js +1 -0
  353. package/dist-storybook/assets/icon-list-grid-CSnpdoAW.js +1 -0
  354. package/dist-storybook/assets/{icon.stories-DWwbUUY-.js → icon.stories-DE484rTd.js} +3 -3
  355. package/dist-storybook/assets/iframe-BBKyXin_.css +1 -0
  356. package/dist-storybook/assets/iframe-Crg_lbde.js +1119 -0
  357. package/dist-storybook/assets/image-CB4oeTy-.js +9 -0
  358. package/dist-storybook/assets/{image.stories-BhZU057W.js → image.stories-BlYIb_Qu.js} +1 -1
  359. package/dist-storybook/assets/index-B24pfkXD.js +1 -0
  360. package/dist-storybook/assets/{index-cMNObl2z.js → index-CdnALcTP.js} +1 -1
  361. package/dist-storybook/assets/{index-EGt7xBnA.js → index-hDlmuyu2.js} +1 -1
  362. package/dist-storybook/assets/input-wrapper-Gd3QJKqj.js +1 -0
  363. package/dist-storybook/assets/label-zfqCJTGJ.js +22 -0
  364. package/dist-storybook/assets/{label.stories-CXJjdYf_.js → label.stories-C-MVt-cu.js} +3 -3
  365. package/dist-storybook/assets/matchers-5TDFFDYO-HJu_DfWo.js +14 -0
  366. package/dist-storybook/assets/navigation-bar.stories-CZ-y3eDE.js +136 -0
  367. package/dist-storybook/assets/number-field.stories-BA0FySSU.js +167 -0
  368. package/dist-storybook/assets/omit-CRXr8Lio.js +1 -0
  369. package/dist-storybook/assets/option-item-DFWc14Up.js +1 -0
  370. package/dist-storybook/assets/{option-item.stories-BvXoc8WX.js → option-item.stories-DqA-ydWX.js} +3 -3
  371. package/dist-storybook/assets/pagination-CjgiVNvu.js +1 -0
  372. package/dist-storybook/assets/{pagination.stories-_5qj2nTS.js → pagination.stories-BsKHvdF4.js} +4 -4
  373. package/dist-storybook/assets/{radio.stories-BNR-wwuw.js → radio.stories-CBmxZRxo.js} +10 -10
  374. package/dist-storybook/assets/{rating.stories-CI0LG0Qq.js → rating.stories-CcdFtcNH.js} +9 -9
  375. package/dist-storybook/assets/react-18-D2tl8ksm.js +1 -0
  376. package/dist-storybook/assets/{react-I9jCW2VV.js → react-DO0-owxu.js} +1 -1
  377. package/dist-storybook/assets/search-field-zl4ROLfn.js +1 -0
  378. package/dist-storybook/assets/{search-field.stories-CKXC6-Za.js → search-field.stories-DoclnxtC.js} +1 -1
  379. package/dist-storybook/assets/{section.stories-9vd48AgB.js → section.stories-Bqz_QgYp.js} +8 -8
  380. package/dist-storybook/assets/sheet-body-2dWL2AE5.js +1 -0
  381. package/dist-storybook/assets/sheet-footer-DuPhbVOb.js +1 -0
  382. package/dist-storybook/assets/{sheet.stories-C3gLIQsn.js → sheet.stories-CoXnt4LG.js} +4 -4
  383. package/dist-storybook/assets/skeleton-BVLpHxKT.js +1 -0
  384. package/dist-storybook/assets/{skeleton.stories-C0y1o1Y_.js → skeleton.stories-B-OfMZId.js} +3 -3
  385. package/dist-storybook/assets/{store-Ce3Ikv5g.js → store-BwIebEt6.js} +5 -5
  386. package/dist-storybook/assets/{switch.stories-BdWFln-M.js → switch.stories-D4PQjgbo.js} +9 -9
  387. package/dist-storybook/assets/syntaxhighlighter-ED5Y7EFY-BxRQp_WE.js +6 -0
  388. package/dist-storybook/assets/tab-bar.stories-BrcQMypS.js +164 -0
  389. package/dist-storybook/assets/{text-area.stories-DCt3RB3A.js → text-area.stories-Bpaw2_4A.js} +10 -10
  390. package/dist-storybook/assets/text-field-CqJG0bIl.js +1 -0
  391. package/dist-storybook/assets/{text-field.stories-Bqv7f948.js → text-field.stories-PQoP3DbL.js} +1 -1
  392. package/dist-storybook/assets/toast.stories-DmPy9T3m.js +209 -0
  393. package/dist-storybook/assets/{tooltip.stories-DDdsuU3U.js → tooltip.stories-Be_kIaDc.js} +8 -8
  394. package/dist-storybook/assets/typography-CMIMyivt.js +1 -0
  395. package/dist-storybook/assets/{typography.stories-BzCxaZQU.js → typography.stories-DSt5W_AG.js} +3 -3
  396. package/dist-storybook/assets/uploader.stories-C5CmeXEk.js +65 -0
  397. package/dist-storybook/assets/{use-app-pause-ClsUnndr.js → use-app-pause-_ycnhKwZ.js} +3 -3
  398. package/dist-storybook/assets/{use-app-resume-D_EcIvMd.js → use-app-resume-CWb2s-wo.js} +1 -1
  399. package/dist-storybook/assets/{use-bottom-tab-bar-BC1cz2uE.js → use-bottom-tab-bar--DRl-8c4.js} +1 -1
  400. package/dist-storybook/assets/{use-custom-icon-event-cUk4Md0Y.js → use-custom-icon-event-BXcRPkLg.js} +1 -1
  401. package/dist-storybook/assets/{use-did-hide-BmABiaUE.js → use-did-hide-LBcrwoUo.js} +1 -1
  402. package/dist-storybook/assets/{use-did-show-CQuySkkT.js → use-did-show-BXLstTgt.js} +1 -1
  403. package/dist-storybook/assets/{use-histories-CBm09Lno.js → use-histories-Cz7ncXaj.js} +1 -1
  404. package/dist-storybook/assets/{use-history-7yguNz6O.js → use-history-B_w6SPwr.js} +1 -1
  405. package/dist-storybook/assets/{use-language-DPyWMce2.js → use-language-D84C9QNT.js} +1 -1
  406. package/dist-storybook/assets/{use-load-more-KlDJZhj2.js → use-load-more-Bb9YFkAE.js} +1 -1
  407. package/dist-storybook/assets/{use-location-C7kE1yla.js → use-location-DnxJ5FvJ.js} +1 -1
  408. package/dist-storybook/assets/{use-navigate-BpIyvtwc.js → use-navigate-OLqoL3vR.js} +3 -3
  409. package/dist-storybook/assets/{use-navigation-bar-guzwhM_u.js → use-navigation-bar-D5BX6S-r.js} +15 -15
  410. package/dist-storybook/assets/{use-navigation-type-DOndDqQH.js → use-navigation-type-Cq7T35ur.js} +1 -1
  411. package/dist-storybook/assets/{use-page-layout-dO6ylI1b.js → use-page-layout-BrFRWwC6.js} +1 -1
  412. package/dist-storybook/assets/{use-page-scroll-CCG2d2Gb.js → use-page-scroll-BZ8XiPza.js} +1 -1
  413. package/dist-storybook/assets/{use-pull-to-refresh-lhumDu1H.js → use-pull-to-refresh-BEjtxiFn.js} +1 -1
  414. package/dist-storybook/assets/{use-settings-changed-Bt58DJ-c.js → use-settings-changed-UaQRSWAg.js} +1 -1
  415. package/dist-storybook/assets/{use-translate-Jhz6jTXo.js → use-translate-BO8E9Sde.js} +1 -1
  416. package/dist-storybook/iframe.html +58 -40
  417. package/dist-storybook/index.html +8 -16
  418. package/dist-storybook/index.json +1 -1
  419. package/dist-storybook/project.json +1 -1
  420. package/dist-storybook/sb-addons/a11y-2/manager-bundle.js +55 -3
  421. package/dist-storybook/sb-addons/docs-1/manager-bundle.js +1 -149
  422. package/dist-storybook/sb-addons/storybook-build-3/manager-bundle.js +19 -1
  423. package/dist-storybook/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +93 -436
  424. package/dist-storybook/sb-manager/globals-runtime.js +73307 -65142
  425. package/dist-storybook/sb-manager/globals.js +6 -16
  426. package/dist-storybook/sb-manager/manager-stores.js +23 -0
  427. package/dist-storybook/sb-manager/runtime.js +17679 -10455
  428. package/dist-storybook/stories-data.json +91 -27
  429. package/dist-storybook/vite-inject-mocker-entry.js +2 -2
  430. package/package.json +5 -5
  431. package/dist-storybook/assets/Color-AVL7NMMY-XA8cFKdV.js +0 -1
  432. package/dist-storybook/assets/DocsRenderer-PQXLIZUC-D10-0Yfb.js +0 -2
  433. package/dist-storybook/assets/_baseClone-DQVxEhny.js +0 -1
  434. package/dist-storybook/assets/alert-CKwsuaPI.js +0 -1
  435. package/dist-storybook/assets/app-CTv8lFU3.js +0 -1
  436. package/dist-storybook/assets/avatar-rWcYGe6j.js +0 -1
  437. package/dist-storybook/assets/avatar.stories-8lrbhMma.js +0 -136
  438. package/dist-storybook/assets/badge-VcjGVEum.js +0 -1
  439. package/dist-storybook/assets/blocks-DKR3P4qW.js +0 -1243
  440. package/dist-storybook/assets/bottom-tab-bar-B6IAoRwz.js +0 -115
  441. package/dist-storybook/assets/bottom-tab-bar.stories-DXzLlO5o.js +0 -186
  442. package/dist-storybook/assets/button-DJH3RlJl.js +0 -1
  443. package/dist-storybook/assets/calendar-C4Xe_TW2.js +0 -1
  444. package/dist-storybook/assets/carousel-DJlgMyS5.js +0 -37
  445. package/dist-storybook/assets/carousel.stories-3rA3nxdL.js +0 -217
  446. package/dist-storybook/assets/checkbox-JOxcmyCZ.js +0 -1
  447. package/dist-storybook/assets/checkbox.stories-ge3pgfBb.js +0 -201
  448. package/dist-storybook/assets/chip-Crt60rph.js +0 -1
  449. package/dist-storybook/assets/date-field-range-B-sv9nbW.js +0 -1
  450. package/dist-storybook/assets/date-field.stories-B9G2heHt.js +0 -129
  451. package/dist-storybook/assets/date-picker-BPzKPdhO.js +0 -1
  452. package/dist-storybook/assets/dialog-BAfGQzk5.js +0 -1
  453. package/dist-storybook/assets/dialog.stories-vDMKz9Tw.js +0 -212
  454. package/dist-storybook/assets/dropdown-Dtomaqpw.js +0 -247
  455. package/dist-storybook/assets/dropdown.stories-Cj0HM0VI.js +0 -200
  456. package/dist-storybook/assets/icon-CdiFzFyf.js +0 -1
  457. package/dist-storybook/assets/iframe-BHaCv4dM.css +0 -1
  458. package/dist-storybook/assets/iframe-DfPay7Zl.js +0 -1071
  459. package/dist-storybook/assets/image-CMKb-R3x.js +0 -9
  460. package/dist-storybook/assets/index-BWpuenI4.js +0 -1
  461. package/dist-storybook/assets/index-DqZh6B0b.js +0 -1
  462. package/dist-storybook/assets/input-wrapper-CgaUwbbE.js +0 -1
  463. package/dist-storybook/assets/label-D44azUgi.js +0 -27
  464. package/dist-storybook/assets/matchers-7Z3WT2CE-Dw4MQV_s.js +0 -14
  465. package/dist-storybook/assets/navigation-bar-DK3TxcTu.js +0 -79
  466. package/dist-storybook/assets/navigation-bar.stories-CB3Kg-sH.js +0 -73
  467. package/dist-storybook/assets/number-field-Bz7su9S1.js +0 -1
  468. package/dist-storybook/assets/number-field.stories-DSxPSzLv.js +0 -167
  469. package/dist-storybook/assets/omit-BWHsnDSR.js +0 -1
  470. package/dist-storybook/assets/option-item-CpeNcb5w.js +0 -1
  471. package/dist-storybook/assets/pagination-Cp-DHO4Q.js +0 -1
  472. package/dist-storybook/assets/proxy-B4G9nIBd.js +0 -1
  473. package/dist-storybook/assets/radio-D0aV0RIg.js +0 -1
  474. package/dist-storybook/assets/rating-D2e8RTGl.js +0 -1
  475. package/dist-storybook/assets/react-18-C7pDmBBf.js +0 -9
  476. package/dist-storybook/assets/search-field-DINESW8Y.js +0 -1
  477. package/dist-storybook/assets/section-content-D49PabBW.js +0 -1
  478. package/dist-storybook/assets/sheet-footer-nEdxsYan.js +0 -1
  479. package/dist-storybook/assets/skeleton-B12XbNAJ.js +0 -1
  480. package/dist-storybook/assets/switch-D0Z9tWin.js +0 -1
  481. package/dist-storybook/assets/tab-bar-kExoGg5P.js +0 -31
  482. package/dist-storybook/assets/tab-bar.stories-BgDXX0of.js +0 -136
  483. package/dist-storybook/assets/text-area-GKy5HL12.js +0 -1
  484. package/dist-storybook/assets/text-field-CGWNqitB.js +0 -1
  485. package/dist-storybook/assets/toast-provider-DKSrfhJD.js +0 -9
  486. package/dist-storybook/assets/toast.stories-CcFzS6QI.js +0 -201
  487. package/dist-storybook/assets/tooltip-B9rDI6z9.js +0 -1
  488. package/dist-storybook/assets/typography-CB8hPDyK.js +0 -1
  489. package/dist-storybook/assets/uploader.stories-izVumFqZ.js +0 -65
  490. package/dist-storybook/assets/visibility-sensor-Jf-Nmil6.js +0 -1
  491. package/dist-storybook/sb-manager/globals-module-info.js +0 -799
@@ -0,0 +1,30 @@
1
+ const e = {
2
+ "pullToRefresh.canReleaseText": "Release to refresh",
3
+ "pullToRefresh.completeText": "Refresh complete",
4
+ "pullToRefresh.pullingText": "Pulling to refresh",
5
+ "pullToRefresh.refreshingText": "Refreshing...",
6
+ "calendar.monthLabel[0]": "January",
7
+ "calendar.monthLabel[1]": "February",
8
+ "calendar.monthLabel[2]": "March",
9
+ "calendar.monthLabel[3]": "April",
10
+ "calendar.monthLabel[4]": "May",
11
+ "calendar.monthLabel[5]": "June",
12
+ "calendar.monthLabel[6]": "July",
13
+ "calendar.monthLabel[7]": "August",
14
+ "calendar.monthLabel[8]": "September",
15
+ "calendar.monthLabel[9]": "October",
16
+ "calendar.monthLabel[10]": "November",
17
+ "calendar.monthLabel[11]": "December",
18
+ "calendar.weekdayLabel[0]": "Sun",
19
+ "calendar.weekdayLabel[1]": "Mon",
20
+ "calendar.weekdayLabel[2]": "Tue",
21
+ "calendar.weekdayLabel[3]": "Wed",
22
+ "calendar.weekdayLabel[4]": "Thu",
23
+ "calendar.weekdayLabel[5]": "Fri",
24
+ "calendar.weekdayLabel[6]": "Sat",
25
+ "calendar.headerLabel": "{month} - {year}",
26
+ "calendar.weekday": "{day}"
27
+ };
28
+ export {
29
+ e as default
30
+ };
@@ -0,0 +1,2 @@
1
+ import { ILocalesConfig } from '@v-miniapp/locale';
2
+ export declare const initLocales: (config: ILocalesConfig) => void;
@@ -0,0 +1,10 @@
1
+ import { initLocales as r } from "@v-miniapp/locale";
2
+ import i from "../_virtual/merge.js";
3
+ import e from "./vi.json.js";
4
+ import m from "./en.json.js";
5
+ const p = (o) => {
6
+ r(i({}, o, { resources: { vi: e, en: m } }));
7
+ };
8
+ export {
9
+ p as initLocales
10
+ };
@@ -0,0 +1,30 @@
1
+ const e = {
2
+ "pullToRefresh.canReleaseText": "Thả để làm mới",
3
+ "pullToRefresh.completeText": "Làm mới hoàn tất",
4
+ "pullToRefresh.pullingText": "Kéo để làm mới",
5
+ "pullToRefresh.refreshingText": "Đang làm mới...",
6
+ "calendar.monthLabel[0]": "Tháng 1",
7
+ "calendar.monthLabel[1]": "Tháng 2",
8
+ "calendar.monthLabel[2]": "Tháng 3",
9
+ "calendar.monthLabel[3]": "Tháng 4",
10
+ "calendar.monthLabel[4]": "Tháng 5",
11
+ "calendar.monthLabel[5]": "Tháng 6",
12
+ "calendar.monthLabel[6]": "Tháng 7",
13
+ "calendar.monthLabel[7]": "Tháng 8",
14
+ "calendar.monthLabel[8]": "Tháng 9",
15
+ "calendar.monthLabel[9]": "Tháng 10",
16
+ "calendar.monthLabel[10]": "Tháng 11",
17
+ "calendar.monthLabel[11]": "Tháng 12",
18
+ "calendar.weekdayLabel[0]": "CN",
19
+ "calendar.weekdayLabel[1]": "T2",
20
+ "calendar.weekdayLabel[2]": "T3",
21
+ "calendar.weekdayLabel[3]": "T4",
22
+ "calendar.weekdayLabel[4]": "T5",
23
+ "calendar.weekdayLabel[5]": "T6",
24
+ "calendar.weekdayLabel[6]": "T7",
25
+ "calendar.headerLabel": "{month} - {year}",
26
+ "calendar.weekday": "{day}"
27
+ };
28
+ export {
29
+ e as default
30
+ };
@@ -0,0 +1,18 @@
1
+ import { __module as r } from "../../../../../../_virtual/isSameOrAfter2.js";
2
+ var f = r.exports, o;
3
+ function m() {
4
+ return o ? r.exports : (o = 1, (function(s, u) {
5
+ (function(n, e) {
6
+ s.exports = e();
7
+ })(f, (function() {
8
+ return function(n, e) {
9
+ e.prototype.isSameOrAfter = function(t, i) {
10
+ return this.isSame(t, i) || this.isAfter(t, i);
11
+ };
12
+ };
13
+ }));
14
+ })(r), r.exports);
15
+ }
16
+ export {
17
+ m as __require
18
+ };
@@ -0,0 +1,18 @@
1
+ import { __module as e } from "../../../../../../_virtual/isSameOrBefore2.js";
2
+ var f = e.exports, i;
3
+ function m() {
4
+ return i ? e.exports : (i = 1, (function(s, u) {
5
+ (function(n, r) {
6
+ s.exports = r();
7
+ })(f, (function() {
8
+ return function(n, r) {
9
+ r.prototype.isSameOrBefore = function(o, t) {
10
+ return this.isSame(o, t) || this.isBefore(o, t);
11
+ };
12
+ };
13
+ }));
14
+ })(e), e.exports);
15
+ }
16
+ export {
17
+ m as __require
18
+ };
@@ -0,0 +1,12 @@
1
+ import { __require as _ } from "./_getNative.js";
2
+ import { __require as o } from "./_root.js";
3
+ var r, e;
4
+ function v() {
5
+ if (e) return r;
6
+ e = 1;
7
+ var a = _(), i = o(), t = a(i, "DataView");
8
+ return r = t, r;
9
+ }
10
+ export {
11
+ v as __require
12
+ };
@@ -0,0 +1,22 @@
1
+ import { __require as l } from "./_hashClear.js";
2
+ import { __require as m } from "./_hashDelete.js";
3
+ import { __require as f } from "./_hashGet.js";
4
+ import { __require as n } from "./_hashHas.js";
5
+ import { __require as H } from "./_hashSet.js";
6
+ var a, s;
7
+ function x() {
8
+ if (s) return a;
9
+ s = 1;
10
+ var i = l(), o = m(), _ = f(), u = n(), p = H();
11
+ function e(r) {
12
+ var h = -1, q = r == null ? 0 : r.length;
13
+ for (this.clear(); ++h < q; ) {
14
+ var t = r[h];
15
+ this.set(t[0], t[1]);
16
+ }
17
+ }
18
+ return e.prototype.clear = i, e.prototype.delete = o, e.prototype.get = _, e.prototype.has = u, e.prototype.set = p, a = e, a;
19
+ }
20
+ export {
21
+ x as __require
22
+ };
@@ -0,0 +1,22 @@
1
+ import { __require as p } from "./_listCacheClear.js";
2
+ import { __require as C } from "./_listCacheDelete.js";
3
+ import { __require as q } from "./_listCacheGet.js";
4
+ import { __require as m } from "./_listCacheHas.js";
5
+ import { __require as f } from "./_listCacheSet.js";
6
+ var t, s;
7
+ function g() {
8
+ if (s) return t;
9
+ s = 1;
10
+ var o = p(), l = C(), h = q(), _ = m(), c = f();
11
+ function e(r) {
12
+ var i = -1, u = r == null ? 0 : r.length;
13
+ for (this.clear(); ++i < u; ) {
14
+ var a = r[i];
15
+ this.set(a[0], a[1]);
16
+ }
17
+ }
18
+ return e.prototype.clear = o, e.prototype.delete = l, e.prototype.get = h, e.prototype.has = _, e.prototype.set = c, t = e, t;
19
+ }
20
+ export {
21
+ g as __require
22
+ };
@@ -0,0 +1,12 @@
1
+ import { __require as _ } from "./_getNative.js";
2
+ import { __require as o } from "./_root.js";
3
+ var r, e;
4
+ function q() {
5
+ if (e) return r;
6
+ e = 1;
7
+ var a = _(), i = o(), t = a(i, "Map");
8
+ return r = t, r;
9
+ }
10
+ export {
11
+ q as __require
12
+ };
@@ -0,0 +1,22 @@
1
+ import { __require as C } from "./_mapCacheClear.js";
2
+ import { __require as q } from "./_mapCacheDelete.js";
3
+ import { __require as l } from "./_mapCacheGet.js";
4
+ import { __require as s } from "./_mapCacheHas.js";
5
+ import { __require as f } from "./_mapCacheSet.js";
6
+ var a, i;
7
+ function g() {
8
+ if (i) return a;
9
+ i = 1;
10
+ var o = C(), h = q(), m = l(), _ = s(), c = f();
11
+ function e(r) {
12
+ var t = -1, u = r == null ? 0 : r.length;
13
+ for (this.clear(); ++t < u; ) {
14
+ var p = r[t];
15
+ this.set(p[0], p[1]);
16
+ }
17
+ }
18
+ return e.prototype.clear = o, e.prototype.delete = h, e.prototype.get = m, e.prototype.has = _, e.prototype.set = c, a = e, a;
19
+ }
20
+ export {
21
+ g as __require
22
+ };
@@ -0,0 +1,12 @@
1
+ import { __require as _ } from "./_getNative.js";
2
+ import { __require as a } from "./_root.js";
3
+ var r, e;
4
+ function s() {
5
+ if (e) return r;
6
+ e = 1;
7
+ var i = _(), o = a(), t = i(o, "Promise");
8
+ return r = t, r;
9
+ }
10
+ export {
11
+ s as __require
12
+ };
@@ -0,0 +1,12 @@
1
+ import { __require as a } from "./_getNative.js";
2
+ import { __require as o } from "./_root.js";
3
+ var r, e;
4
+ function v() {
5
+ if (e) return r;
6
+ e = 1;
7
+ var t = a(), i = o(), _ = t(i, "Set");
8
+ return r = _, r;
9
+ }
10
+ export {
11
+ v as __require
12
+ };
@@ -0,0 +1,20 @@
1
+ import { __require as q } from "./_ListCache.js";
2
+ import { __require as k } from "./_stackClear.js";
3
+ import { __require as m } from "./_stackDelete.js";
4
+ import { __require as f } from "./_stackGet.js";
5
+ import { __require as n } from "./_stackHas.js";
6
+ import { __require as h } from "./_stackSet.js";
7
+ var r, t;
8
+ function z() {
9
+ if (t) return r;
10
+ t = 1;
11
+ var a = q(), i = k(), s = m(), _ = f(), o = n(), c = h();
12
+ function e(u) {
13
+ var p = this.__data__ = new a(u);
14
+ this.size = p.size;
15
+ }
16
+ return e.prototype.clear = i, e.prototype.delete = s, e.prototype.get = _, e.prototype.has = o, e.prototype.set = c, r = e, r;
17
+ }
18
+ export {
19
+ z as __require
20
+ };
@@ -0,0 +1,11 @@
1
+ import { __require as u } from "./_root.js";
2
+ var r, e;
3
+ function a() {
4
+ if (e) return r;
5
+ e = 1;
6
+ var o = u(), i = o.Symbol;
7
+ return r = i, r;
8
+ }
9
+ export {
10
+ a as __require
11
+ };
@@ -0,0 +1,11 @@
1
+ import { __require as t } from "./_root.js";
2
+ var r, e;
3
+ function o() {
4
+ if (e) return r;
5
+ e = 1;
6
+ var i = t(), a = i.Uint8Array;
7
+ return r = a, r;
8
+ }
9
+ export {
10
+ o as __require
11
+ };
@@ -0,0 +1,12 @@
1
+ import { __require as _ } from "./_getNative.js";
2
+ import { __require as o } from "./_root.js";
3
+ var r, e;
4
+ function q() {
5
+ if (e) return r;
6
+ e = 1;
7
+ var a = _(), i = o(), t = a(i, "WeakMap");
8
+ return r = t, r;
9
+ }
10
+ export {
11
+ q as __require
12
+ };
@@ -0,0 +1,22 @@
1
+ var r, a;
2
+ function t() {
3
+ if (a) return r;
4
+ a = 1;
5
+ function n(l, p, e) {
6
+ switch (e.length) {
7
+ case 0:
8
+ return l.call(p);
9
+ case 1:
10
+ return l.call(p, e[0]);
11
+ case 2:
12
+ return l.call(p, e[0], e[1]);
13
+ case 3:
14
+ return l.call(p, e[0], e[1], e[2]);
15
+ }
16
+ return l.apply(p, e);
17
+ }
18
+ return r = n, r;
19
+ }
20
+ export {
21
+ t as __require
22
+ };
@@ -0,0 +1,14 @@
1
+ var a, n;
2
+ function t() {
3
+ if (n) return a;
4
+ n = 1;
5
+ function i(e, u) {
6
+ for (var r = -1, h = e == null ? 0 : e.length; ++r < h && u(e[r], r, e) !== !1; )
7
+ ;
8
+ return e;
9
+ }
10
+ return a = i, a;
11
+ }
12
+ export {
13
+ t as __require
14
+ };
@@ -0,0 +1,16 @@
1
+ var i, l;
2
+ function h() {
3
+ if (l) return i;
4
+ l = 1;
5
+ function u(r, a) {
6
+ for (var e = -1, _ = r == null ? 0 : r.length, f = 0, t = []; ++e < _; ) {
7
+ var n = r[e];
8
+ a(n, e, r) && (t[f++] = n);
9
+ }
10
+ return t;
11
+ }
12
+ return i = u, i;
13
+ }
14
+ export {
15
+ h as __require
16
+ };
@@ -0,0 +1,26 @@
1
+ import { __require as c } from "./_baseTimes.js";
2
+ import { __require as L } from "./isArguments.js";
3
+ import { __require as T } from "./isArray.js";
4
+ import { __require as x } from "./isBuffer.js";
5
+ import { __require as K } from "./_isIndex.js";
6
+ import { __require as O } from "./isTypedArray.js";
7
+ var o, u;
8
+ function R() {
9
+ if (u) return o;
10
+ u = 1;
11
+ var _ = c(), p = L(), m = T(), q = x(), y = K(), g = O(), h = Object.prototype, A = h.hasOwnProperty;
12
+ function b(e, I) {
13
+ var i = m(e), s = !i && p(e), t = !i && !s && q(e), f = !i && !s && !t && g(e), n = i || s || t || f, a = n ? _(e.length, String) : [], d = a.length;
14
+ for (var r in e)
15
+ (I || A.call(e, r)) && !(n && // Safari 9 has enumerable `arguments.length` in strict mode.
16
+ (r == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
17
+ t && (r == "offset" || r == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
18
+ f && (r == "buffer" || r == "byteLength" || r == "byteOffset") || // Skip index properties.
19
+ y(r, d))) && a.push(r);
20
+ return a;
21
+ }
22
+ return o = b, o;
23
+ }
24
+ export {
25
+ R as __require
26
+ };
@@ -0,0 +1,14 @@
1
+ var a, t;
2
+ function p() {
3
+ if (t) return a;
4
+ t = 1;
5
+ function i(r, l) {
6
+ for (var e = -1, n = r == null ? 0 : r.length, u = Array(n); ++e < n; )
7
+ u[e] = l(r[e], e, r);
8
+ return u;
9
+ }
10
+ return a = i, a;
11
+ }
12
+ export {
13
+ p as __require
14
+ };
@@ -0,0 +1,14 @@
1
+ var n, t;
2
+ function s() {
3
+ if (t) return n;
4
+ t = 1;
5
+ function h(r, u) {
6
+ for (var e = -1, a = u.length, i = r.length; ++e < a; )
7
+ r[i + e] = u[e];
8
+ return r;
9
+ }
10
+ return n = h, n;
11
+ }
12
+ export {
13
+ s as __require
14
+ };
@@ -0,0 +1,15 @@
1
+ import { __require as _ } from "./_baseAssignValue.js";
2
+ import { __require as q } from "./eq.js";
3
+ var s, n;
4
+ function d() {
5
+ if (n) return s;
6
+ n = 1;
7
+ var a = _(), u = q();
8
+ function g(r, i, e) {
9
+ (e !== void 0 && !u(r[i], e) || e === void 0 && !(i in r)) && a(r, i, e);
10
+ }
11
+ return s = g, s;
12
+ }
13
+ export {
14
+ d as __require
15
+ };
@@ -0,0 +1,16 @@
1
+ import { __require as f } from "./_baseAssignValue.js";
2
+ import { __require as l } from "./eq.js";
3
+ var i, s;
4
+ function g() {
5
+ if (s) return i;
6
+ s = 1;
7
+ var n = f(), u = l(), o = Object.prototype, t = o.hasOwnProperty;
8
+ function _(r, e, a) {
9
+ var q = r[e];
10
+ (!(t.call(r, e) && u(q, a)) || a === void 0 && !(e in r)) && n(r, e, a);
11
+ }
12
+ return i = _, i;
13
+ }
14
+ export {
15
+ g as __require
16
+ };
@@ -0,0 +1,17 @@
1
+ import { __require as a } from "./eq.js";
2
+ var r, i;
3
+ function o() {
4
+ if (i) return r;
5
+ i = 1;
6
+ var s = a();
7
+ function u(n, t) {
8
+ for (var e = n.length; e--; )
9
+ if (s(n[e][0], t))
10
+ return e;
11
+ return -1;
12
+ }
13
+ return r = u, r;
14
+ }
15
+ export {
16
+ o as __require
17
+ };
@@ -0,0 +1,15 @@
1
+ import { __require as _ } from "./_copyObject.js";
2
+ import { __require as t } from "./keys.js";
3
+ var r, i;
4
+ function b() {
5
+ if (i) return r;
6
+ i = 1;
7
+ var a = _(), n = t();
8
+ function u(e, s) {
9
+ return e && a(s, n(s), e);
10
+ }
11
+ return r = u, r;
12
+ }
13
+ export {
14
+ b as __require
15
+ };
@@ -0,0 +1,15 @@
1
+ import { __require as _ } from "./_copyObject.js";
2
+ import { __require as t } from "./keysIn.js";
3
+ var r, s;
4
+ function I() {
5
+ if (s) return r;
6
+ s = 1;
7
+ var i = _(), a = t();
8
+ function u(e, n) {
9
+ return e && i(n, a(n), e);
10
+ }
11
+ return r = u, r;
12
+ }
13
+ export {
14
+ I as __require
15
+ };
@@ -0,0 +1,19 @@
1
+ import { __require as t } from "./_defineProperty.js";
2
+ var r, s;
3
+ function o() {
4
+ if (s) return r;
5
+ s = 1;
6
+ var i = t();
7
+ function n(u, e, a) {
8
+ e == "__proto__" && i ? i(u, e, {
9
+ configurable: !0,
10
+ enumerable: !0,
11
+ value: a,
12
+ writable: !0
13
+ }) : u[e] = a;
14
+ }
15
+ return r = n, r;
16
+ }
17
+ export {
18
+ o as __require
19
+ };
@@ -0,0 +1,70 @@
1
+ import { __require as Ar } from "./_Stack.js";
2
+ import { __require as jr } from "./_arrayEach.js";
3
+ import { __require as Ir } from "./_assignValue.js";
4
+ import { __require as lr } from "./_baseAssign.js";
5
+ import { __require as Cr } from "./_baseAssignIn.js";
6
+ import { __require as Sr } from "./_cloneBuffer.js";
7
+ import { __require as dr } from "./_copyArray.js";
8
+ import { __require as Er } from "./_copySymbols.js";
9
+ import { __require as Br } from "./_copySymbolsIn.js";
10
+ import { __require as Fr } from "./_getAllKeys.js";
11
+ import { __require as Or } from "./_getAllKeysIn.js";
12
+ import { __require as Lr } from "./_getTag.js";
13
+ import { __require as Kr } from "./_initCloneArray.js";
14
+ import { __require as Mr } from "./_initCloneByTag.js";
15
+ import { __require as hr } from "./_initCloneObject.js";
16
+ import { __require as wr } from "./isArray.js";
17
+ import { __require as Dr } from "./isBuffer.js";
18
+ import { __require as Gr } from "./isMap.js";
19
+ import { __require as Nr } from "./isObject.js";
20
+ import { __require as Ur } from "./isSet.js";
21
+ import { __require as xr } from "./keys.js";
22
+ import { __require as Rr } from "./keysIn.js";
23
+ var u, I;
24
+ function fe() {
25
+ if (I) return u;
26
+ I = 1;
27
+ var l = Ar(), C = jr(), S = Ir(), d = lr(), E = Cr(), B = Sr(), F = dr(), O = Er(), L = Br(), K = Fr(), M = Or(), h = Lr(), w = Kr(), D = Mr(), G = hr(), N = wr(), U = Dr(), x = Gr(), R = Nr(), P = Ur(), V = xr(), W = Rr(), Y = 1, H = 2, J = 4, p = "[object Arguments]", Q = "[object Array]", X = "[object Boolean]", Z = "[object Date]", $ = "[object Error]", c = "[object Function]", z = "[object GeneratorFunction]", k = "[object Map]", v = "[object Number]", y = "[object Object]", rr = "[object RegExp]", er = "[object Set]", ir = "[object String]", or = "[object Symbol]", tr = "[object WeakMap]", ar = "[object ArrayBuffer]", nr = "[object DataView]", _r = "[object Float32Array]", sr = "[object Float64Array]", fr = "[object Int8Array]", qr = "[object Int16Array]", gr = "[object Int32Array]", mr = "[object Uint8Array]", ur = "[object Uint8ClampedArray]", pr = "[object Uint16Array]", cr = "[object Uint32Array]", e = {};
28
+ e[p] = e[Q] = e[ar] = e[nr] = e[X] = e[Z] = e[_r] = e[sr] = e[fr] = e[qr] = e[gr] = e[k] = e[v] = e[y] = e[rr] = e[er] = e[ir] = e[or] = e[mr] = e[ur] = e[pr] = e[cr] = !0, e[$] = e[c] = e[tr] = !1;
29
+ function f(r, n, _, yr, q, o) {
30
+ var i, g = n & Y, m = n & H, br = n & J;
31
+ if (_ && (i = q ? _(r, yr, q, o) : _(r)), i !== void 0)
32
+ return i;
33
+ if (!R(r))
34
+ return r;
35
+ var b = N(r);
36
+ if (b) {
37
+ if (i = w(r), !g)
38
+ return F(r, i);
39
+ } else {
40
+ var s = h(r), T = s == c || s == z;
41
+ if (U(r))
42
+ return B(r, g);
43
+ if (s == y || s == p || T && !q) {
44
+ if (i = m || T ? {} : G(r), !g)
45
+ return m ? L(r, E(i, r)) : O(r, d(i, r));
46
+ } else {
47
+ if (!e[s])
48
+ return q ? r : {};
49
+ i = D(r, s, g);
50
+ }
51
+ }
52
+ o || (o = new l());
53
+ var A = o.get(r);
54
+ if (A)
55
+ return A;
56
+ o.set(r, i), P(r) ? r.forEach(function(t) {
57
+ i.add(f(t, n, _, t, r, o));
58
+ }) : x(r) && r.forEach(function(t, a) {
59
+ i.set(a, f(t, n, _, a, r, o));
60
+ });
61
+ var Tr = br ? m ? M : K : m ? W : V, j = b ? void 0 : Tr(r);
62
+ return C(j || r, function(t, a) {
63
+ j && (a = t, t = r[a]), S(i, a, f(t, n, _, a, r, o));
64
+ }), i;
65
+ }
66
+ return u = f, u;
67
+ }
68
+ export {
69
+ fe as __require
70
+ };
@@ -0,0 +1,23 @@
1
+ import { __require as s } from "./isObject.js";
2
+ var t, n;
3
+ function f() {
4
+ if (n) return t;
5
+ n = 1;
6
+ var u = s(), a = Object.create, i = /* @__PURE__ */ (function() {
7
+ function e() {
8
+ }
9
+ return function(r) {
10
+ if (!u(r))
11
+ return {};
12
+ if (a)
13
+ return a(r);
14
+ e.prototype = r;
15
+ var c = new e();
16
+ return e.prototype = void 0, c;
17
+ };
18
+ })();
19
+ return t = i, t;
20
+ }
21
+ export {
22
+ f as __require
23
+ };
@@ -0,0 +1,20 @@
1
+ import { __require as h } from "./_arrayPush.js";
2
+ import { __require as l } from "./_isFlattenable.js";
3
+ var i, q;
4
+ function g() {
5
+ if (q) return i;
6
+ q = 1;
7
+ var s = h(), b = l();
8
+ function _(t, n, r, f, e) {
9
+ var o = -1, F = t.length;
10
+ for (r || (r = b), e || (e = []); ++o < F; ) {
11
+ var a = t[o];
12
+ n > 0 && r(a) ? n > 1 ? _(a, n - 1, r, f, e) : s(e, a) : f || (e[e.length] = a);
13
+ }
14
+ return e;
15
+ }
16
+ return i = _, i;
17
+ }
18
+ export {
19
+ g as __require
20
+ };
@@ -0,0 +1,11 @@
1
+ import { __require as s } from "./_createBaseFor.js";
2
+ var r, e;
3
+ function u() {
4
+ if (e) return r;
5
+ e = 1;
6
+ var a = s(), o = a();
7
+ return r = o, r;
8
+ }
9
+ export {
10
+ u as __require
11
+ };