@topvisor/ui 1.1.0 → 1.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.
Files changed (941) hide show
  1. package/.gitlab-ci/.gitlab-ci.yml +26 -0
  2. package/.gitlab-ci/common/install.yml +21 -0
  3. package/.gitlab-ci/common/lint.yml +14 -0
  4. package/.gitlab-ci/common/version.yml +23 -0
  5. package/.gitlab-ci/storybook/build.yml +20 -0
  6. package/.gitlab-ci/storybook/deploy.yml +49 -0
  7. package/.gitlab-ci/ui/build.yml +13 -0
  8. package/.gitlab-ci/ui/deploy.yml +23 -0
  9. package/.idea/.gitignore +11 -0
  10. package/.idea/codeStyles/Project.xml +205 -0
  11. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  12. package/.idea/externalDependencies.xml +6 -0
  13. package/.idea/inspectionProfiles/Disabled.xml +824 -0
  14. package/.idea/inspectionProfiles/Project_Default.xml +33 -0
  15. package/.idea/php.xml +19 -0
  16. package/.idea/vcs.xml +6 -0
  17. package/.storybook/TopTheme.ts +115 -0
  18. package/.storybook/TopThemeManager.ts +53 -0
  19. package/.storybook/main.ts +51 -0
  20. package/.storybook/manager.ts +25 -0
  21. package/.storybook/preview-head.html +21 -0
  22. package/.storybook/preview.ts +47 -0
  23. package/.storybook/vue/coreDecorator.ts +77 -0
  24. package/.storybook/vue/vModelDecorator.ts +46 -0
  25. package/.versionrc.json +16 -0
  26. package/.vscode/extensions.json +11 -0
  27. package/.vscode/keybindings.example.json +121 -0
  28. package/.vscode/settings.json +45 -0
  29. package/CHANGELOG.md +223 -14
  30. package/NPM.md +25 -0
  31. package/PUBLISH.md +63 -0
  32. package/README.md +20 -69
  33. package/STORYBOOK.md +48 -0
  34. package/USE_IN_PROJECT.md +32 -0
  35. package/build/afterBuild.sh +11 -0
  36. package/build/cssModules.ts +39 -0
  37. package/build/genDocs.sh +19 -0
  38. package/build/plugin/amdFix.ts +83 -0
  39. package/build/plugin/autoloadCSS.ts +155 -0
  40. package/build/rollup.config.ts +37 -0
  41. package/package.json +56 -1
  42. package/public/README.md +82 -0
  43. package/src/components/charts/charts.ts +8 -0
  44. package/src/components/charts/miniChart/miniChart.stories.ts +67 -0
  45. package/src/components/charts/miniChart/miniChart.ts +110 -0
  46. package/src/components/charts/miniChart/miniChart.vue +158 -0
  47. package/src/components/charts/miniChart/stories/README.md +9 -0
  48. package/src/components/charts/miniChart/stories/dummy.ts +25 -0
  49. package/src/components/charts/miniChart/styles/miniChart.css +87 -0
  50. package/src/components/charts/miniChart/utils/consts.ts +9 -0
  51. package/src/components/charts/miniCharts/miniCharts.stories.ts +76 -0
  52. package/src/components/charts/miniCharts/miniCharts.ts +24 -0
  53. package/src/components/charts/miniCharts/miniCharts.vue +128 -0
  54. package/src/components/charts/miniCharts/stories/README.md +18 -0
  55. package/src/components/charts/miniCharts/stories/dummy.ts +70 -0
  56. package/src/components/charts/miniCharts/stories/overview.vue +139 -0
  57. package/src/components/charts/miniCharts/styles/miniCharts.css +32 -0
  58. package/src/components/component.ts +130 -0
  59. package/src/components/core/core.mdx +7 -0
  60. package/src/components/core/notice/item/item.vue +145 -0
  61. package/src/components/core/notice/item/style.css +70 -0
  62. package/src/components/core/notice/item/types.ts +71 -0
  63. package/src/components/core/notice/notice.stories.ts +105 -0
  64. package/src/components/core/notice/notice.vue +69 -0
  65. package/src/components/core/notice/stories/README.md +34 -0
  66. package/src/components/core/notice/types.ts +1 -0
  67. package/src/components/core/notice/utils.ts +115 -0
  68. package/src/components/dialog/dialog/Dialog (code).mdx +61 -0
  69. package/src/components/dialog/dialog/composables/asyncDialogHandle.ts +99 -0
  70. package/src/components/dialog/dialog/composables/dialogHandle.ts +176 -0
  71. package/src/components/dialog/dialog/composables/types.ts +12 -0
  72. package/src/components/dialog/dialog/composables/utils.ts +39 -0
  73. package/src/components/dialog/dialog/dialog.stories.ts +83 -0
  74. package/src/components/dialog/dialog/dialog.vue +74 -0
  75. package/src/components/dialog/dialog/dialogs/dialogs.vue +58 -0
  76. package/src/components/dialog/dialog/page/page.vue +86 -0
  77. package/src/components/dialog/dialog/page/types.ts +84 -0
  78. package/src/components/dialog/dialog/page.stories.ts +27 -0
  79. package/src/components/dialog/dialog/pageComponent/pageComponent.vue +57 -0
  80. package/src/components/dialog/dialog/pageComponent/types.ts +21 -0
  81. package/src/components/dialog/dialog/pageComponent.stories.ts +27 -0
  82. package/src/components/dialog/dialog/stories/README.md +117 -0
  83. package/src/components/dialog/dialog/stories/autoload.ts +12 -0
  84. package/src/components/dialog/dialog/stories/dialog_example/dialog_example.vue +73 -0
  85. package/src/components/dialog/dialog/stories/dialog_example/pages/async.vue +57 -0
  86. package/src/components/dialog/dialog/stories/dialog_example/pages/default.vue +64 -0
  87. package/src/components/dialog/dialog/stories/dialog_example/pages/headerButtons.vue +56 -0
  88. package/src/components/dialog/dialog/stories/dialog_example/pages/utils.ts +26 -0
  89. package/src/components/dialog/dialog/stories/dialog_example/pages/withoutCache.vue +64 -0
  90. package/src/components/dialog/dialog/stories/page/README.md +24 -0
  91. package/src/components/dialog/dialog/stories/pageComponent/README.md +12 -0
  92. package/src/components/dialog/dialog/style/dialog.css +316 -0
  93. package/src/components/dialog/dialog/style/dialog.m.css +40 -0
  94. package/src/components/dialog/dialog/style/dialog.pc.css +73 -0
  95. package/src/components/dialog/dialog/style/modern/dialog.css +12 -0
  96. package/src/components/dialog/dialog/style/modern/dialog.pc.css +3 -0
  97. package/src/components/dialog/dialog/types.ts +69 -0
  98. package/src/components/dialog/dialog.ts +7 -0
  99. package/src/components/dialog/lib/types.ts +26 -0
  100. package/src/components/dialog/lib/utils.globalEvents.ts +175 -0
  101. package/src/components/dialog/lib/utils.ts +525 -0
  102. package/src/components/dialog/lib/worker.ts +273 -0
  103. package/src/components/forms/README.mdx +10 -0
  104. package/src/components/forms/avatar/avatar.stories.ts +38 -0
  105. package/src/components/forms/avatar/avatar.ts +40 -0
  106. package/src/components/forms/avatar/avatar.vue +77 -0
  107. package/src/components/forms/avatar/stories/overview.vue +28 -0
  108. package/src/components/forms/button/button.stories.ts +118 -0
  109. package/src/components/forms/button/button.vue +111 -0
  110. package/src/components/forms/button/stories/README.md +9 -0
  111. package/src/components/forms/button/stories/overview.vue +33 -0
  112. package/src/components/forms/button/style/button.css +139 -0
  113. package/src/components/forms/button/style/style-outline.css +129 -0
  114. package/src/components/forms/button/style/style-soft.css +89 -0
  115. package/src/components/forms/button/style/style-transparent.css +39 -0
  116. package/src/components/forms/button/types.ts +66 -0
  117. package/src/components/forms/checkbox/checkbox.stories.ts +33 -0
  118. package/src/components/forms/checkbox/checkbox.ts +21 -0
  119. package/src/components/forms/checkbox/checkbox.vue +114 -0
  120. package/src/components/forms/checkbox/stories/overview.vue +171 -0
  121. package/src/components/forms/controlLabel/controlLabel.stories.ts +32 -0
  122. package/src/components/forms/controlLabel/controlLabel.ts +4 -0
  123. package/src/components/forms/controlLabel/controlLabel.vue +54 -0
  124. package/src/components/forms/forms.ts +40 -0
  125. package/src/components/forms/helpers.ts +11 -0
  126. package/src/components/forms/hint/hint.stories.ts +41 -0
  127. package/src/components/forms/hint/hint.ts +8 -0
  128. package/src/components/forms/hint/hint.vue +32 -0
  129. package/src/components/forms/input/input.stories.ts +32 -0
  130. package/src/components/forms/input/input.ts +47 -0
  131. package/src/components/forms/input/input.vue +189 -0
  132. package/src/components/forms/input/stories/overview.vue +61 -0
  133. package/src/components/forms/inputDate/datepicker.css +246 -0
  134. package/src/components/forms/inputDate/datepicker.ts +101 -0
  135. package/src/components/forms/inputDate/inputDate.stories.ts +41 -0
  136. package/src/components/forms/inputDate/inputDate.ts +5 -0
  137. package/src/components/forms/inputDate/inputDate.vue +133 -0
  138. package/src/components/forms/inputDate/stories/overview.vue +35 -0
  139. package/src/components/forms/inputRange/inputRange.stories.ts +53 -0
  140. package/src/components/forms/inputRange/inputRange.ts +3 -0
  141. package/src/components/forms/inputRange/inputRange.vue +39 -0
  142. package/src/components/forms/inputRange/stories/overview.vue +129 -0
  143. package/src/components/forms/loadbar/loadbar.stories.ts +17 -0
  144. package/src/components/forms/loadbar/loadbar.vue +37 -0
  145. package/src/components/forms/radio/radio.stories.ts +34 -0
  146. package/src/components/forms/radio/radio.ts +15 -0
  147. package/src/components/forms/radio/radio.vue +97 -0
  148. package/src/components/forms/radio/stories/overview.vue +79 -0
  149. package/src/components/forms/select/select.stories.ts +69 -0
  150. package/src/components/forms/select/select.ts +69 -0
  151. package/src/components/forms/select/select.vue +300 -0
  152. package/src/components/forms/select/stories/exampleOptions.ts +61 -0
  153. package/src/components/forms/select/stories/overview.vue +72 -0
  154. package/src/components/forms/switcher/stories/overview.vue +139 -0
  155. package/src/components/forms/switcher/switcher.stories.ts +33 -0
  156. package/src/components/forms/switcher/switcher.ts +22 -0
  157. package/src/components/forms/switcher/switcher.vue +118 -0
  158. package/src/components/forms/textarea/stories/overview.vue +62 -0
  159. package/src/components/forms/textarea/textarea.stories.ts +34 -0
  160. package/src/components/forms/textarea/textarea.ts +47 -0
  161. package/src/components/forms/textarea/textarea.vue +123 -0
  162. package/src/components/formsExt/README.mdx +5 -0
  163. package/src/components/formsExt/editArea/editArea.stories.ts +41 -0
  164. package/src/components/formsExt/editArea/editArea.ts +41 -0
  165. package/src/components/formsExt/editArea/editArea.vue +198 -0
  166. package/src/components/formsExt/editArea/stories/README.md +21 -0
  167. package/src/components/formsExt/editArea/stories/overview.vue +67 -0
  168. package/src/components/formsExt/editInput/editInput.stories.ts +36 -0
  169. package/src/components/formsExt/editInput/editInput.ts +20 -0
  170. package/src/components/formsExt/editInput/editInput.vue +54 -0
  171. package/src/components/formsExt/editInput/stories/overview.vue +54 -0
  172. package/src/components/formsExt/formsExt.ts +15 -0
  173. package/src/components/formsExt/info/info.stories.ts +35 -0
  174. package/src/components/formsExt/info/info.vue +84 -0
  175. package/src/components/formsExt/info/stories/overview.vue +29 -0
  176. package/src/components/formsExt/info/types.ts +25 -0
  177. package/src/components/formsExt/menu/menu.stories.ts +59 -0
  178. package/src/components/formsExt/menu/menu.ts +45 -0
  179. package/src/components/formsExt/menu/menu.vue +321 -0
  180. package/src/components/formsExt/menu/stories/items.ts +18 -0
  181. package/src/components/formsExt/menu/stories/overview.vue +52 -0
  182. package/src/components/formsExt/navigationMenu/item.vue +186 -0
  183. package/src/components/formsExt/navigationMenu/navigationMenu.stories.ts +37 -0
  184. package/src/components/formsExt/navigationMenu/navigationMenu.ts +28 -0
  185. package/src/components/formsExt/navigationMenu/navigationMenu.vue +40 -0
  186. package/src/components/formsExt/navigationMenu/stories/items.ts +116 -0
  187. package/src/components/formsExt/radioGroup/radioGroup.stories.ts +51 -0
  188. package/src/components/formsExt/radioGroup/radioGroup.ts +28 -0
  189. package/src/components/formsExt/radioGroup/radioGroup.vue +146 -0
  190. package/src/components/formsExt/radioGroup/stories/overview.vue +78 -0
  191. package/src/components/formsExt/radioGroup/styles/top-scrollBar.css +52 -0
  192. package/src/components/formsExt/selector2/api.ts +148 -0
  193. package/src/components/formsExt/selector2/itemMulti.vue +57 -0
  194. package/src/components/formsExt/selector2/selector2.stories.ts +48 -0
  195. package/src/components/formsExt/selector2/selector2.ts +145 -0
  196. package/src/components/formsExt/selector2/selector2.vue +389 -0
  197. package/src/components/formsExt/selector2/stories/dummyAPIRequest.ts +58 -0
  198. package/src/components/formsExt/selector2/stories/overview.vue +93 -0
  199. package/src/components/helper.js +10 -0
  200. package/src/components/helpersStories.ts +205 -0
  201. package/src/components/layout/islandRows/islandRows.stories.ts +139 -0
  202. package/src/components/layout/islandRows/islandRows.vue +53 -0
  203. package/src/components/layout/islandRows/islandRowsRow/islandRowsRow.vue +36 -0
  204. package/src/components/layout/islandRows/islandRowsRow/types.ts +1 -0
  205. package/src/components/layout/islandRows/islandRowsSubTitle/islandRowsSubTitle.vue +16 -0
  206. package/src/components/layout/islandRows/stories/README.md +8 -0
  207. package/src/components/layout/islandRows/types.ts +11 -0
  208. package/src/components/layout/layout.ts +11 -0
  209. package/src/components/layout/rows/rows.stories.ts +48 -0
  210. package/src/components/layout/rows/rows.vue +46 -0
  211. package/src/components/layout/rows/stories/README.md +10 -0
  212. package/src/components/layout/rows/types.ts +6 -0
  213. package/src/components/popup/alert/alert.stories.ts +71 -0
  214. package/src/components/popup/alert/alert.ts +11 -0
  215. package/src/components/popup/alert/alert.vue +46 -0
  216. package/src/components/popup/alert/stories/overview.vue +40 -0
  217. package/src/components/popup/confirm/confirm.stories.ts +75 -0
  218. package/src/components/popup/confirm/confirm.ts +26 -0
  219. package/src/components/popup/confirm/confirm.vue +75 -0
  220. package/src/components/popup/confirm/stories/overview.vue +62 -0
  221. package/src/components/popup/lib/popup.globalEvents.ts +239 -0
  222. package/src/components/popup/lib/popup.ts +790 -0
  223. package/src/components/popup/lib/worker.globalEvents.ts +97 -0
  224. package/src/components/popup/lib/worker.ts +286 -0
  225. package/src/components/popup/popup/listItem.vue +35 -0
  226. package/src/components/popup/popup/opener.vue +81 -0
  227. package/src/components/popup/popup/popup.stories.ts +74 -0
  228. package/src/components/popup/popup/popup.ts +120 -0
  229. package/src/components/popup/popup/popup.vue +168 -0
  230. package/src/components/popup/popup/stories/README.md +55 -0
  231. package/src/components/popup/popup/stories/listItems.vue +44 -0
  232. package/src/components/popup/popup/stories/listSubItems.vue +47 -0
  233. package/src/components/popup/popup/stories/overview.vue +210 -0
  234. package/src/components/popup/popup/style/popup.css +345 -0
  235. package/src/components/popup/popup/style/popup.m.css +72 -0
  236. package/src/components/popup/popup/style/popup.pc.css +26 -0
  237. package/src/components/popup/popup/widgetInput.vue +43 -0
  238. package/src/components/popup/popup.ts +17 -0
  239. package/src/components/popup/prompt/prompt.stories.ts +78 -0
  240. package/src/components/popup/prompt/prompt.ts +26 -0
  241. package/src/components/popup/prompt/prompt.vue +84 -0
  242. package/src/components/popup/prompt/stories/overview.vue +50 -0
  243. package/src/components/popup/worker.ts +1 -0
  244. package/src/components/project/project.ts +23 -0
  245. package/src/components/project/selectorCompetitors/composables.ts +21 -0
  246. package/src/components/project/selectorCompetitors/selectorCompetitors.stories.ts +33 -0
  247. package/src/components/project/selectorCompetitors/selectorCompetitors.ts +27 -0
  248. package/src/components/project/selectorCompetitors/selectorCompetitors.vue +75 -0
  249. package/src/components/project/selectorCompetitors/stories/README.md +20 -0
  250. package/src/components/project/selectorCompetitors/stories/items.ts +30 -0
  251. package/src/components/project/selectorCompetitors/types/competitor.ts +7 -0
  252. package/src/components/project/selectorRegion/composables/compare.ts +87 -0
  253. package/src/components/project/selectorRegion/composables/selectRegion.ts +147 -0
  254. package/src/components/project/selectorRegion/composables/selectSearcher.ts +64 -0
  255. package/src/components/project/selectorRegion/composables/selectorRegion.ts +167 -0
  256. package/src/components/project/selectorRegion/dialog_selectorRegions/dialog_selectorRegions.vue +190 -0
  257. package/src/components/project/selectorRegion/dialog_selectorRegions/style.css +49 -0
  258. package/src/components/project/selectorRegion/dialog_selectorRegions/types.ts +31 -0
  259. package/src/components/project/selectorRegion/selectorRegion.stories.ts +85 -0
  260. package/src/components/project/selectorRegion/selectorRegion.ts +204 -0
  261. package/src/components/project/selectorRegion/selectorRegion.vue +335 -0
  262. package/src/components/project/selectorRegion/stories/README.md +36 -0
  263. package/src/components/project/selectorRegion/stories/searchers.ts +77 -0
  264. package/src/components/project/selectorRegion/styles/searcherColors.css +41 -0
  265. package/src/components/project/selectorRegion/utils/consts.ts +73 -0
  266. package/src/components/project/selectorRegion/utils/utils.ts +167 -0
  267. package/src/components/project/tagSelector/popupListItem/tagPopupListItem.vue +209 -0
  268. package/src/components/project/tagSelector/popupListItem/types.ts +40 -0
  269. package/src/components/project/tagSelector/popupOpener/popupOpener.vue +145 -0
  270. package/src/components/project/tagSelector/popupOpener/types.ts +71 -0
  271. package/src/components/project/tagSelector/stories/README.md +62 -0
  272. package/src/components/project/tagSelector/stories/overview.vue +152 -0
  273. package/src/components/project/tagSelector/tagIcon/tagIcon.vue +97 -0
  274. package/src/components/project/tagSelector/tagIcon/types.ts +25 -0
  275. package/src/components/project/tagSelector/tagSelector.stories.ts +51 -0
  276. package/src/components/project/tagSelector/tagSelector.vue +359 -0
  277. package/src/components/project/tagSelector/tagsDefaults.ts +54 -0
  278. package/src/components/project/tagSelector/types.ts +159 -0
  279. package/src/components/project/tagSelector/utils/el.ts +151 -0
  280. package/src/components/project/tagSelector/utils/utils.ts +30 -0
  281. package/src/components/tabs/tabs/content.vue +24 -0
  282. package/src/components/tabs/tabs/stories/README.md +12 -0
  283. package/src/components/tabs/tabs/tab.vue +49 -0
  284. package/src/components/tabs/tabs/tabs.stories.ts +171 -0
  285. package/src/components/tabs/tabs/tabs.ts +22 -0
  286. package/src/components/tabs/tabs/tabs.vue +64 -0
  287. package/src/components/tabs/tabs.ts +9 -0
  288. package/src/components/tabsView/tabsView/menu.vue +291 -0
  289. package/src/components/tabsView/tabsView/menuDelimeter.vue +26 -0
  290. package/src/components/tabsView/tabsView/menuItem.vue +125 -0
  291. package/src/components/tabsView/tabsView/menuTitle.vue +46 -0
  292. package/src/components/tabsView/tabsView/store.ts +60 -0
  293. package/src/components/tabsView/tabsView/stories/README.md +22 -0
  294. package/src/components/tabsView/tabsView/tabsView.stories.ts +170 -0
  295. package/src/components/tabsView/tabsView/tabsView.ts +118 -0
  296. package/src/components/tabsView/tabsView/tabsView.vue +120 -0
  297. package/src/components/tabsView/tabsView/utils.ts +27 -0
  298. package/src/components/tabsView/tabsView//320/255/320/273/320/265/320/274/320/265/320/275/321/202/321/213/MenuItem.stories.ts +47 -0
  299. package/src/components/tabsView/tabsView//320/255/320/273/320/265/320/274/320/265/320/275/321/202/321/213/MenuTitle.stories.ts +43 -0
  300. package/src/components/tabsView/tabsView.ts +9 -0
  301. package/src/components/types.ts +3 -0
  302. package/src/core/app.ts +22 -0
  303. package/src/core/core/core.mdx +36 -0
  304. package/src/core/core/core.ts +287 -0
  305. package/src/core/core/events/resize.ts +47 -0
  306. package/src/core/core/events.ts +6 -0
  307. package/src/core/core/jQuery.mdx +41 -0
  308. package/src/core/core/options.ts +51 -0
  309. package/src/core/core/preloaders.ts +31 -0
  310. package/src/core/core/state.ts +61 -0
  311. package/src/core/directives/data.mdx +24 -0
  312. package/src/core/directives/data.ts +25 -0
  313. package/src/core/directives/focus.mdx +28 -0
  314. package/src/core/directives/focus.ts +73 -0
  315. package/src/core/directives/scrollIntoView.mdx +41 -0
  316. package/src/core/directives/scrollIntoView.ts +123 -0
  317. package/src/core/directives/scrollShadow.mdx +23 -0
  318. package/src/core/directives/scrollShadow.ts +27 -0
  319. package/src/core/directives/sticky.mdx +29 -0
  320. package/src/core/directives/sticky.ts +32 -0
  321. package/src/core/directives/swimUp.mdx +27 -0
  322. package/src/core/directives/swimUp.ts +95 -0
  323. package/src/core/directives/tooltip.mdx +13 -0
  324. package/src/core/directives/tooltip.ts +57 -0
  325. package/src/core/icons/gallery.vue +70 -0
  326. package/src/core/icons/icons.mdx +24 -0
  327. package/src/core/icons/icons.stories.ts +14 -0
  328. package/src/core/plugins/core.ts +131 -0
  329. package/src/core/plugins/i18n.ts +184 -0
  330. package/src/core/plugins/piniaTPA.ts +431 -0
  331. package/src/core/plugins/plugins.mdx +82 -0
  332. package/src/core/styles/CSS Variables.stories.ts +17 -0
  333. package/src/core/styles/styles.mdx +26 -0
  334. package/src/core/theme/Variables.stories.ts +16 -0
  335. package/src/core/theme/theme.mdx +117 -0
  336. package/src/core/utils/References/Docs.mdx +23 -0
  337. package/src/core/utils/References/check/Docs.mdx +15 -0
  338. package/src/core/utils/References/check/functions/getDomainRegexp.mdx +15 -0
  339. package/src/core/utils/References/check/functions/isDomain.mdx +21 -0
  340. package/src/core/utils/References/check/functions/isEmail.mdx +22 -0
  341. package/src/core/utils/References/check/functions/isIp.mdx +21 -0
  342. package/src/core/utils/References/check/functions/validUrl.mdx +22 -0
  343. package/src/core/utils/References/clipboard/Docs.mdx +11 -0
  344. package/src/core/utils/References/clipboard/functions/setClipboard.mdx +23 -0
  345. package/src/core/utils/References/date/Docs.mdx +17 -0
  346. package/src/core/utils/References/date/functions/dateFormat.mdx +28 -0
  347. package/src/core/utils/References/date/functions/dateToString.mdx +26 -0
  348. package/src/core/utils/References/date/functions/dateUnformat.mdx +22 -0
  349. package/src/core/utils/References/date/functions/genDate.mdx +26 -0
  350. package/src/core/utils/References/date/functions/genDateMoscow.mdx +22 -0
  351. package/src/core/utils/References/date/functions/getDayOfWeek.mdx +26 -0
  352. package/src/core/utils/References/date/functions/stringToDate.mdx +21 -0
  353. package/src/core/utils/References/device/Docs.mdx +21 -0
  354. package/src/core/utils/References/device/functions/get$scroll.mdx +15 -0
  355. package/src/core/utils/References/device/functions/getCommandKeyLabel.mdx +15 -0
  356. package/src/core/utils/References/device/functions/getElsScroll.mdx +15 -0
  357. package/src/core/utils/References/device/functions/getOS.mdx +17 -0
  358. package/src/core/utils/References/device/functions/getOSAsync.mdx +15 -0
  359. package/src/core/utils/References/device/functions/getScrollTop.mdx +15 -0
  360. package/src/core/utils/References/device/functions/isApp.mdx +15 -0
  361. package/src/core/utils/References/device/functions/isMacOS.mdx +15 -0
  362. package/src/core/utils/References/device/functions/isMobile.mdx +15 -0
  363. package/src/core/utils/References/device/functions/isRetina.mdx +15 -0
  364. package/src/core/utils/References/device/functions/isSafari.mdx +15 -0
  365. package/src/core/utils/References/dom/Docs.mdx +27 -0
  366. package/src/core/utils/References/dom/functions/css.mdx +24 -0
  367. package/src/core/utils/References/dom/functions/genEl.mdx +28 -0
  368. package/src/core/utils/References/dom/functions/isVisible.mdx +23 -0
  369. package/src/core/utils/References/dom/functions/offset.mdx +35 -0
  370. package/src/core/utils/References/dom/functions/querySelectorAllArray.mdx +22 -0
  371. package/src/core/utils/References/dom/functions/querySelectorAllVisible.mdx +22 -0
  372. package/src/core/utils/References/dom/functions/querySelectorVisible.mdx +22 -0
  373. package/src/core/utils/References/dom/functions/querySelectorVisibleLast.mdx +22 -0
  374. package/src/core/utils/References/dom/functions/storage.mdx +28 -0
  375. package/src/core/utils/References/dom/functions/storageClear.mdx +21 -0
  376. package/src/core/utils/References/dom/functions/wrap.mdx +22 -0
  377. package/src/core/utils/References/dom/variables/default.mdx +241 -0
  378. package/src/core/utils/References/image/Docs.mdx +12 -0
  379. package/src/core/utils/References/image/functions/downloadImageFromString.mdx +22 -0
  380. package/src/core/utils/References/image/functions/genFaviconImgHtml.mdx +22 -0
  381. package/src/core/utils/References/keyboard/Docs.mdx +11 -0
  382. package/src/core/utils/References/keyboard/functions/invertKeyboardLayout.mdx +21 -0
  383. package/src/core/utils/References/lodash/Docs.mdx +20 -0
  384. package/src/core/utils/References/lodash/functions/cloneDeep.mdx +29 -0
  385. package/src/core/utils/References/lodash/functions/debounce.mdx +76 -0
  386. package/src/core/utils/References/lodash/functions/memoize.mdx +26 -0
  387. package/src/core/utils/References/lodash/functions/merge.mdx +200 -0
  388. package/src/core/utils/References/lodash/functions/throttle.mdx +73 -0
  389. package/src/core/utils/References/number/Docs.mdx +11 -0
  390. package/src/core/utils/References/number/functions/percentOfNumber.mdx +26 -0
  391. package/src/core/utils/References/price/Docs.mdx +11 -0
  392. package/src/core/utils/References/price/functions/genPrice.mdx +28 -0
  393. package/src/core/utils/References/route/Docs.mdx +16 -0
  394. package/src/core/utils/References/route/functions/delHash.mdx +26 -0
  395. package/src/core/utils/References/route/functions/genHash.mdx +26 -0
  396. package/src/core/utils/References/route/functions/getHash.mdx +22 -0
  397. package/src/core/utils/References/route/functions/historySetState.mdx +31 -0
  398. package/src/core/utils/References/route/functions/setHash.mdx +26 -0
  399. package/src/core/utils/References/route/functions/setHashs.mdx +22 -0
  400. package/src/core/utils/References/scroll/Docs.mdx +14 -0
  401. package/src/core/utils/References/scroll/functions/amountScrolled.mdx +17 -0
  402. package/src/core/utils/References/scroll/functions/connectScrollShadow.mdx +28 -0
  403. package/src/core/utils/References/scroll/functions/genHasScroll.mdx +25 -0
  404. package/src/core/utils/References/scroll/functions/getScrollPercent.mdx +21 -0
  405. package/src/core/utils/References/searchers/Docs.mdx +19 -0
  406. package/src/core/utils/References/searchers/functions/genVolumeLabel.mdx +26 -0
  407. package/src/core/utils/References/searchers/functions/getDeviceGIcon.mdx +21 -0
  408. package/src/core/utils/References/searchers/functions/getLangLabel.mdx +22 -0
  409. package/src/core/utils/References/searchers/functions/getSearcherGIcon.mdx +21 -0
  410. package/src/core/utils/References/searchers/functions/prepareVolumeType.mdx +22 -0
  411. package/src/core/utils/References/searchers/variables/searchersNames.mdx +97 -0
  412. package/src/core/utils/References/store/Docs.mdx +18 -0
  413. package/src/core/utils/References/store/functions/defineStore.mdx +36 -0
  414. package/src/core/utils/References/store/functions/useStore.mdx +29 -0
  415. package/src/core/utils/References/store/variables/plugin.mdx +66 -0
  416. package/src/core/utils/References/string/Docs.mdx +26 -0
  417. package/src/core/utils/References/string/functions/addCommasWhite.mdx +21 -0
  418. package/src/core/utils/References/string/functions/addLinkTags.mdx +23 -0
  419. package/src/core/utils/References/string/functions/camelToSnakeCase.mdx +21 -0
  420. package/src/core/utils/References/string/functions/ellipsis.mdx +26 -0
  421. package/src/core/utils/References/string/functions/genFlagLinkByCountryCode.mdx +21 -0
  422. package/src/core/utils/References/string/functions/genIntHash.mdx +21 -0
  423. package/src/core/utils/References/string/functions/getRandomHash.mdx +21 -0
  424. package/src/core/utils/References/string/functions/highlightHtml.mdx +25 -0
  425. package/src/core/utils/References/string/functions/htmlspecialchars.mdx +21 -0
  426. package/src/core/utils/References/string/functions/isUrl.mdx +21 -0
  427. package/src/core/utils/References/string/functions/nl2br.mdx +21 -0
  428. package/src/core/utils/References/string/functions/numberEnding.mdx +28 -0
  429. package/src/core/utils/References/string/functions/numberWithWord.mdx +28 -0
  430. package/src/core/utils/References/string/functions/rusToLatin.mdx +21 -0
  431. package/src/core/utils/References/string/functions/toCapitalize.mdx +21 -0
  432. package/src/core/utils/References/string/functions/toRoditPadej.mdx +21 -0
  433. package/src/core/utils/References/system/Docs.mdx +13 -0
  434. package/src/core/utils/References/system/functions/sleep.mdx +21 -0
  435. package/src/core/utils/References/system/functions/sleepWhile.mdx +26 -0
  436. package/src/core/utils/References/system/functions/waitWhile.mdx +26 -0
  437. package/src/core/utils/References/url/Docs.mdx +17 -0
  438. package/src/core/utils/References/url/functions/decode.mdx +21 -0
  439. package/src/core/utils/References/url/functions/encode.mdx +21 -0
  440. package/src/core/utils/References/url/functions/fromPuny.mdx +23 -0
  441. package/src/core/utils/References/url/functions/getHost.mdx +21 -0
  442. package/src/core/utils/References/url/functions/hostToLowerCase.mdx +21 -0
  443. package/src/core/utils/References/url/functions/normalize.mdx +21 -0
  444. package/src/core/utils/References/url/functions/toPuny.mdx +23 -0
  445. package/src/core/utils/check.ts +88 -0
  446. package/src/core/utils/clipboard.ts +51 -0
  447. package/src/core/utils/date.ts +291 -0
  448. package/src/core/utils/device.ts +139 -0
  449. package/src/core/utils/dom.ts +182 -0
  450. package/src/core/utils/image.ts +46 -0
  451. package/src/core/utils/keyboard.ts +29 -0
  452. package/src/core/utils/lodash.ts +18 -0
  453. package/src/core/utils/number.ts +37 -0
  454. package/src/core/utils/price.ts +24 -0
  455. package/src/core/utils/route.ts +115 -0
  456. package/src/core/utils/scroll.ts +120 -0
  457. package/src/core/utils/searchers.ts +191 -0
  458. package/src/core/utils/store/localStorage.ts +56 -0
  459. package/src/core/utils/store/plugin.ts +50 -0
  460. package/src/core/utils/store/store.ts +77 -0
  461. package/src/core/utils/store.ts +7 -0
  462. package/src/core/utils/string.ts +317 -0
  463. package/src/core/utils/system.ts +72 -0
  464. package/src/core/utils/url.ts +138 -0
  465. package/src/core/utils/utils.mdx +6 -0
  466. package/src/d.ts +12 -0
  467. package/src/icomoon.d.ts +98 -0
  468. package/src/resources/styles/core/components.css +111 -0
  469. package/src/resources/styles/core/core.ts +11 -0
  470. package/src/resources/styles/core/forms/clear.css +20 -0
  471. package/src/resources/styles/core/forms/controls.css +20 -0
  472. package/src/resources/styles/core/forms/focusable.css +26 -0
  473. package/src/resources/styles/core/forms/forms.css +156 -0
  474. package/src/resources/styles/core/icon.css +58 -0
  475. package/src/resources/styles/core/jquery.css +1 -0
  476. package/src/resources/styles/core/layout.css +59 -0
  477. package/src/resources/styles/core/modifiers/as.css +9 -0
  478. package/src/resources/styles/core/modifiers/ellipsis.css +26 -0
  479. package/src/resources/styles/core/modifiers/modifiers.css +120 -0
  480. package/src/resources/styles/core/modifiers/only.css +19 -0
  481. package/src/resources/styles/core/modifiers/scrollShadow.css +50 -0
  482. package/src/resources/styles/core/select.css +15 -0
  483. package/src/resources/styles/storybook.css +11 -0
  484. package/src/resources/styles/themes/dark/dark-layout.css +47 -0
  485. package/src/resources/styles/themes/dark/dark-positions.css +66 -0
  486. package/src/resources/styles/themes/dark/dark.css +400 -0
  487. package/src/resources/styles/themes/dark-positions.ts +1 -0
  488. package/src/resources/styles/themes/dark-th/dark-th-layout.css +47 -0
  489. package/src/resources/styles/themes/dark-th/dark-th-positions.css +67 -0
  490. package/src/resources/styles/themes/dark-th/dark-th.css +400 -0
  491. package/src/resources/styles/themes/dark-th-positions.ts +1 -0
  492. package/src/resources/styles/themes/dark-th.ts +3 -0
  493. package/src/resources/styles/themes/dark.ts +3 -0
  494. package/src/resources/styles/themes/light/light-layout.css +47 -0
  495. package/src/resources/styles/themes/light/light-positions.css +66 -0
  496. package/src/resources/styles/themes/light/light.css +400 -0
  497. package/src/resources/styles/themes/light-positions.ts +1 -0
  498. package/src/resources/styles/themes/light.ts +3 -0
  499. package/src/storybook/components/color.vue +47 -0
  500. package/src/storybook/components/cssVariables.vue +195 -0
  501. package/src/storybook/components/icomoon.ts +40 -0
  502. package/src/storybook/jquery.ts +4 -0
  503. package/src//320/221/321/213/321/201/321/202/321/200/321/213/320/271 /321/201/321/202/320/260/321/200/321/202.mdx" +181 -0
  504. package/src//320/230/320/275/321/204/320/276/321/200/320/274/320/260/321/206/320/270/321/217 /320/276 /321/201/320/261/320/276/321/200/320/272/320/265.mdx" +12 -0
  505. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CHANGELOG.md.mdx" +4 -0
  506. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS/FAQ.mdx" +43 -0
  507. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/236/320/261/321/211/320/270/320/265 /320/274/320/276/320/264/320/270/321/204/320/270/320/272/320/260/321/202/320/276/321/200/321/213.mdx" +155 -0
  508. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/237/320/265/321/200/320/265/320/274/320/265/320/275/320/275/321/213/320/265.mdx" +35 -0
  509. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/237/321/200/320/265/320/264/320/277/321/200/320/276/321/206/320/265/321/201/321/201/320/276/321/200/321/213.mdx" +15 -0
  510. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/240/320/265/320/272/320/276/320/274/320/265/320/275/320/264/320/260/321/206/320/270/320/270 /320/221/320/255/320/234.mdx" +56 -0
  511. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/241/321/202/320/270/320/273/320/270.mdx" +53 -0
  512. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/CSS//320/247/321/202/320/276 /321/202/320/260/320/272/320/276/320/265 css /320/274/320/276/320/264/321/203/320/273/321/214.mdx" +55 -0
  513. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/PUBLISH.md.mdx" +4 -0
  514. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/README.md.mdx" +4 -0
  515. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/STORYBOOK.md.mdx" +4 -0
  516. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)/USE_IN_PROJECT.md.mdx" +3 -0
  517. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/222/320/262/320/265/320/264/320/265/320/275/320/270/320/265 /320/262 NPM.md.mdx" +4 -0
  518. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/224/320/276/320/277/320/276/320/273/320/275/320/270/321/202/320/265/320/273/321/214/320/275/320/260/321/217 /320/273/320/270/321/202/320/265/321/200/320/260/321/202/321/203/321/200/320/260.mdx" +15 -0
  519. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/235/320/260/321/201/321/202/321/200/320/276/320/271/320/272/320/260 IDE.mdx" +45 -0
  520. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/236/321/204/320/276/321/200/320/274/320/273/320/265/320/275/320/270/320/265 /320/272/320/276/320/264/320/260.mdx" +31 -0
  521. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260//320/241/321/202/320/260/320/275/320/264/320/260/321/200/321/202/321/213 /320/272/320/276/320/264/320/260.mdx" +29 -0
  522. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213.mdx" +41 -0
  523. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213//320/241/321/202/320/270/320/273/320/270 /320/272/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213.mdx" +58 -0
  524. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI.mdx" +11 -0
  525. package/src//320/240/320/260/320/267/321/200/320/260/320/261/320/276/321/202/320/272/320/260 (Contributing)//320/241/321/202/321/200/321/203/320/272/321/202/321/203/321/200/320/260 UI//320/243/321/202/320/270/320/273/320/270/321/202/321/213.mdx" +5 -0
  526. package/storybook-dev.sh +14 -0
  527. package/tsconfig.json +91 -0
  528. package/typedoc.json +20 -0
  529. package/vite.config.ts +148 -0
  530. package/.chunks/core-CcWs0qYw.amd.js +0 -2
  531. package/.chunks/core-CcWs0qYw.amd.js.map +0 -1
  532. package/.chunks/core-Dsl28h7N.es.js +0 -196
  533. package/.chunks/core-Dsl28h7N.es.js.map +0 -1
  534. package/.chunks/datepicker-B6kIyIcw.amd.js +0 -2
  535. package/.chunks/datepicker-B6kIyIcw.amd.js.map +0 -1
  536. package/.chunks/datepicker-BTiE5Grw.es.js +0 -44
  537. package/.chunks/datepicker-BTiE5Grw.es.js.map +0 -1
  538. package/.chunks/dialog_selectorRegions-BZcnnvJM.es.js +0 -140
  539. package/.chunks/dialog_selectorRegions-BZcnnvJM.es.js.map +0 -1
  540. package/.chunks/dialog_selectorRegions-CePGUsCo.amd.js +0 -2
  541. package/.chunks/dialog_selectorRegions-CePGUsCo.amd.js.map +0 -1
  542. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-B5hK613K.es.js +0 -266
  543. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-B5hK613K.es.js.map +0 -1
  544. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-izSFcRLb.amd.js +0 -2
  545. package/.chunks/dialogs.vue_vue_type_script_setup_true_lang-izSFcRLb.amd.js.map +0 -1
  546. package/.chunks/forms-BsuCen2-.es.js +0 -1999
  547. package/.chunks/forms-BsuCen2-.es.js.map +0 -1
  548. package/.chunks/forms-BwGakScF.amd.js +0 -3
  549. package/.chunks/forms-BwGakScF.amd.js.map +0 -1
  550. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-CfM8kOV1.amd.js +0 -2
  551. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-CfM8kOV1.amd.js.map +0 -1
  552. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-CszHDnB0.es.js +0 -181
  553. package/.chunks/listItem.vue_vue_type_script_setup_true_lang-CszHDnB0.es.js.map +0 -1
  554. package/.chunks/menu.vue_vue_type_style_index_0_lang-DQTVNJGq.amd.js +0 -2
  555. package/.chunks/menu.vue_vue_type_style_index_0_lang-DQTVNJGq.amd.js.map +0 -1
  556. package/.chunks/menu.vue_vue_type_style_index_0_lang-DmY5w4yr.es.js +0 -109
  557. package/.chunks/menu.vue_vue_type_style_index_0_lang-DmY5w4yr.es.js.map +0 -1
  558. package/.chunks/notice-CJdCc72d.amd.js +0 -4
  559. package/.chunks/notice-CJdCc72d.amd.js.map +0 -1
  560. package/.chunks/notice-Cqs1dKt8.es.js +0 -175
  561. package/.chunks/notice-Cqs1dKt8.es.js.map +0 -1
  562. package/.chunks/page.vue_vue_type_script_setup_true_lang-1JWduCTr.amd.js +0 -2
  563. package/.chunks/page.vue_vue_type_script_setup_true_lang-1JWduCTr.amd.js.map +0 -1
  564. package/.chunks/page.vue_vue_type_script_setup_true_lang-BCfksgg3.es.js +0 -143
  565. package/.chunks/page.vue_vue_type_script_setup_true_lang-BCfksgg3.es.js.map +0 -1
  566. package/.chunks/popup-CLhWWJDe.amd.js +0 -2
  567. package/.chunks/popup-CLhWWJDe.amd.js.map +0 -1
  568. package/.chunks/popup-N10MDafw.es.js +0 -416
  569. package/.chunks/popup-N10MDafw.es.js.map +0 -1
  570. package/.chunks/punycode.es6-C2yitnNb.amd.js +0 -2
  571. package/.chunks/punycode.es6-C2yitnNb.amd.js.map +0 -1
  572. package/.chunks/punycode.es6-CNI-zL6U.es.js +0 -134
  573. package/.chunks/punycode.es6-CNI-zL6U.es.js.map +0 -1
  574. package/.chunks/store-CX_6ZXhO.es.js +0 -29
  575. package/.chunks/store-CX_6ZXhO.es.js.map +0 -1
  576. package/.chunks/store-esTid5oI.amd.js +0 -2
  577. package/.chunks/store-esTid5oI.amd.js.map +0 -1
  578. package/.chunks/utils-B1H3EGkg.es.js +0 -79
  579. package/.chunks/utils-B1H3EGkg.es.js.map +0 -1
  580. package/.chunks/utils-B7GVqGBH.amd.js +0 -2
  581. package/.chunks/utils-B7GVqGBH.amd.js.map +0 -1
  582. package/.chunks/utils-DIy2mbYd.amd.js +0 -2
  583. package/.chunks/utils-DIy2mbYd.amd.js.map +0 -1
  584. package/.chunks/utils-bjr7c5my.es.js +0 -225
  585. package/.chunks/utils-bjr7c5my.es.js.map +0 -1
  586. package/assets/charts.css +0 -1
  587. package/assets/core.css +0 -1
  588. package/assets/dialog_selectorRegions.css +0 -1
  589. package/assets/forms.css +0 -1
  590. package/assets/formsExt.css +0 -1
  591. package/assets/layout.css +0 -1
  592. package/assets/listItem.css +0 -1
  593. package/assets/menu.css +0 -1
  594. package/assets/notice.css +0 -1
  595. package/assets/popup.css +0 -1
  596. package/assets/project.css +0 -1
  597. package/assets/tabs.css +0 -1
  598. package/assets/tabsView.css +0 -1
  599. package/assets/themes/dark-th.css +0 -1
  600. package/assets/themes/dark.css +0 -1
  601. package/assets/themes/light.css +0 -1
  602. package/charts/charts.amd.js +0 -2
  603. package/charts/charts.amd.js.map +0 -1
  604. package/charts/charts.d.ts +0 -2
  605. package/charts/charts.js +0 -178
  606. package/charts/charts.js.map +0 -1
  607. package/components/charts/charts.d.ts +0 -5
  608. package/components/charts/miniChart/miniChart.d.ts +0 -92
  609. package/components/charts/miniChart/miniChart.vue.d.ts +0 -15
  610. package/components/charts/miniChart/stories/dummy.d.ts +0 -13
  611. package/components/charts/miniChart/utils/consts.d.ts +0 -8
  612. package/components/charts/miniCharts/miniCharts.d.ts +0 -20
  613. package/components/charts/miniCharts/miniCharts.vue.d.ts +0 -32
  614. package/components/charts/miniCharts/stories/dummy.d.ts +0 -6
  615. package/components/core/notice/item/item.vue.d.ts +0 -10
  616. package/components/core/notice/item/types.d.ts +0 -61
  617. package/components/core/notice/notice.vue.d.ts +0 -5
  618. package/components/core/notice/types.d.ts +0 -1
  619. package/components/core/notice/utils.d.ts +0 -27
  620. package/components/dialog/dialog/composables/asyncDialogHandle.d.ts +0 -51
  621. package/components/dialog/dialog/composables/dialogHandle.d.ts +0 -108
  622. package/components/dialog/dialog/composables/types.d.ts +0 -11
  623. package/components/dialog/dialog/composables/utils.d.ts +0 -21
  624. package/components/dialog/dialog/dialog.vue.d.ts +0 -28
  625. package/components/dialog/dialog/dialogs/dialogs.vue.d.ts +0 -10
  626. package/components/dialog/dialog/page/page.vue.d.ts +0 -19
  627. package/components/dialog/dialog/page/types.d.ts +0 -72
  628. package/components/dialog/dialog/pageComponent/pageComponent.vue.d.ts +0 -6
  629. package/components/dialog/dialog/pageComponent/types.d.ts +0 -18
  630. package/components/dialog/dialog/stories/autoload.d.ts +0 -2
  631. package/components/dialog/dialog/stories/dialog_example/pages/utils.d.ts +0 -7
  632. package/components/dialog/dialog/types.d.ts +0 -58
  633. package/components/dialog/dialog.d.ts +0 -6
  634. package/components/dialog/lib/types.d.ts +0 -21
  635. package/components/dialog/lib/utils.d.ts +0 -14
  636. package/components/dialog/lib/utils.globalEvents.d.ts +0 -8
  637. package/components/dialog/lib/worker.d.ts +0 -60
  638. package/components/forms/avatar/avatar.d.ts +0 -38
  639. package/components/forms/avatar/avatar.vue.d.ts +0 -10
  640. package/components/forms/button/button.vue.d.ts +0 -25
  641. package/components/forms/button/types.d.ts +0 -53
  642. package/components/forms/checkbox/checkbox.d.ts +0 -21
  643. package/components/forms/checkbox/checkbox.vue.d.ts +0 -27
  644. package/components/forms/controlLabel/controlLabel.d.ts +0 -4
  645. package/components/forms/controlLabel/controlLabel.vue.d.ts +0 -19
  646. package/components/forms/forms.d.ts +0 -27
  647. package/components/forms/helpers.d.ts +0 -10
  648. package/components/forms/hint/hint.d.ts +0 -8
  649. package/components/forms/hint/hint.vue.d.ts +0 -4
  650. package/components/forms/input/input.d.ts +0 -34
  651. package/components/forms/input/input.vue.d.ts +0 -28
  652. package/components/forms/inputDate/datepicker.d.ts +0 -5
  653. package/components/forms/inputDate/inputDate.d.ts +0 -3
  654. package/components/forms/inputDate/inputDate.vue.d.ts +0 -12
  655. package/components/forms/inputRange/inputRange.d.ts +0 -2
  656. package/components/forms/inputRange/inputRange.vue.d.ts +0 -19
  657. package/components/forms/loadbar/loadbar.vue.d.ts +0 -3
  658. package/components/forms/radio/radio.d.ts +0 -14
  659. package/components/forms/radio/radio.vue.d.ts +0 -23
  660. package/components/forms/select/select.d.ts +0 -58
  661. package/components/forms/select/select.vue.d.ts +0 -18
  662. package/components/forms/select/stories/exampleOptions.d.ts +0 -5
  663. package/components/forms/switcher/switcher.d.ts +0 -21
  664. package/components/forms/switcher/switcher.vue.d.ts +0 -23
  665. package/components/forms/textarea/textarea.d.ts +0 -40
  666. package/components/forms/textarea/textarea.vue.d.ts +0 -12
  667. package/components/formsExt/editArea/editArea.d.ts +0 -33
  668. package/components/formsExt/editArea/editArea.vue.d.ts +0 -18
  669. package/components/formsExt/editInput/editInput.d.ts +0 -16
  670. package/components/formsExt/editInput/editInput.vue.d.ts +0 -8
  671. package/components/formsExt/formsExt.d.ts +0 -13
  672. package/components/formsExt/info/info.vue.d.ts +0 -20
  673. package/components/formsExt/info/types.d.ts +0 -21
  674. package/components/formsExt/menu/menu.d.ts +0 -37
  675. package/components/formsExt/menu/menu.vue.d.ts +0 -16
  676. package/components/formsExt/menu/stories/items.d.ts +0 -3
  677. package/components/formsExt/navigationMenu/navigationMenu.d.ts +0 -24
  678. package/components/formsExt/navigationMenu/stories/items.d.ts +0 -3
  679. package/components/formsExt/radioGroup/radioGroup.d.ts +0 -21
  680. package/components/formsExt/radioGroup/radioGroup.vue.d.ts +0 -19
  681. package/components/formsExt/selector2/api.d.ts +0 -8
  682. package/components/formsExt/selector2/itemMulti.vue.d.ts +0 -8
  683. package/components/formsExt/selector2/selector2.d.ts +0 -130
  684. package/components/formsExt/selector2/selector2.vue.d.ts +0 -210
  685. package/components/formsExt/selector2/stories/dummyAPIRequest.d.ts +0 -10
  686. package/components/layout/islandRows/islandRows.vue.d.ts +0 -17
  687. package/components/layout/islandRows/islandRowsRow/islandRowsRow.vue.d.ts +0 -18
  688. package/components/layout/islandRows/islandRowsRow/types.d.ts +0 -2
  689. package/components/layout/islandRows/islandRowsSubTitle/islandRowsSubTitle.vue.d.ts +0 -18
  690. package/components/layout/islandRows/types.d.ts +0 -10
  691. package/components/layout/layout.d.ts +0 -9
  692. package/components/layout/rows/rows.vue.d.ts +0 -21
  693. package/components/layout/rows/types.d.ts +0 -6
  694. package/components/popup/alert/alert.d.ts +0 -8
  695. package/components/popup/alert/alert.vue.d.ts +0 -31
  696. package/components/popup/confirm/confirm.d.ts +0 -21
  697. package/components/popup/confirm/confirm.vue.d.ts +0 -33
  698. package/components/popup/lib/popup.d.ts +0 -83
  699. package/components/popup/lib/popup.globalEvents.d.ts +0 -26
  700. package/components/popup/lib/worker.d.ts +0 -75
  701. package/components/popup/lib/worker.globalEvents.d.ts +0 -19
  702. package/components/popup/popup/listItem.vue.d.ts +0 -22
  703. package/components/popup/popup/opener.vue.d.ts +0 -23
  704. package/components/popup/popup/popup.d.ts +0 -101
  705. package/components/popup/popup/popup.vue.d.ts +0 -40
  706. package/components/popup/popup/widgetInput.vue.d.ts +0 -17
  707. package/components/popup/popup.d.ts +0 -15
  708. package/components/popup/prompt/prompt.d.ts +0 -21
  709. package/components/popup/prompt/prompt.vue.d.ts +0 -33
  710. package/components/popup/worker.d.ts +0 -1
  711. package/components/project/project.d.ts +0 -15
  712. package/components/project/selectorCompetitors/composables.d.ts +0 -4
  713. package/components/project/selectorCompetitors/selectorCompetitors.d.ts +0 -23
  714. package/components/project/selectorCompetitors/selectorCompetitors.vue.d.ts +0 -14
  715. package/components/project/selectorCompetitors/stories/items.d.ts +0 -3
  716. package/components/project/selectorCompetitors/types/competitor.d.ts +0 -7
  717. package/components/project/selectorRegion/composables/compare.d.ts +0 -12
  718. package/components/project/selectorRegion/composables/selectRegion.d.ts +0 -14
  719. package/components/project/selectorRegion/composables/selectSearcher.d.ts +0 -13
  720. package/components/project/selectorRegion/composables/selectorRegion.d.ts +0 -25
  721. package/components/project/selectorRegion/dialog_selectorRegions/dialog_selectorRegions.vue.d.ts +0 -4
  722. package/components/project/selectorRegion/dialog_selectorRegions/types.d.ts +0 -26
  723. package/components/project/selectorRegion/selectorRegion.d.ts +0 -170
  724. package/components/project/selectorRegion/selectorRegion.vue.d.ts +0 -23
  725. package/components/project/selectorRegion/stories/searchers.d.ts +0 -3
  726. package/components/project/selectorRegion/utils/consts.d.ts +0 -18
  727. package/components/project/selectorRegion/utils/utils.d.ts +0 -32
  728. package/components/project/tagSelector/popupListItem/tagPopupListItem.vue.d.ts +0 -20
  729. package/components/project/tagSelector/popupListItem/types.d.ts +0 -33
  730. package/components/project/tagSelector/popupOpener/popupOpener.vue.d.ts +0 -27
  731. package/components/project/tagSelector/popupOpener/types.d.ts +0 -62
  732. package/components/project/tagSelector/tagIcon/tagIcon.vue.d.ts +0 -4
  733. package/components/project/tagSelector/tagIcon/types.d.ts +0 -21
  734. package/components/project/tagSelector/tagSelector.vue.d.ts +0 -37
  735. package/components/project/tagSelector/tagsDefaults.d.ts +0 -3
  736. package/components/project/tagSelector/types.d.ts +0 -138
  737. package/components/project/tagSelector/utils/el.d.ts +0 -19
  738. package/components/project/tagSelector/utils/utils.d.ts +0 -14
  739. package/components/tabs/tabs/content.vue.d.ts +0 -19
  740. package/components/tabs/tabs/tab.vue.d.ts +0 -19
  741. package/components/tabs/tabs/tabs.d.ts +0 -19
  742. package/components/tabs/tabs/tabs.vue.d.ts +0 -21
  743. package/components/tabs/tabs.d.ts +0 -7
  744. package/components/tabsView/tabsView/menu.vue.d.ts +0 -32
  745. package/components/tabsView/tabsView/menuDelimeter.vue.d.ts +0 -3
  746. package/components/tabsView/tabsView/menuItem.vue.d.ts +0 -23
  747. package/components/tabsView/tabsView/menuTitle.vue.d.ts +0 -20
  748. package/components/tabsView/tabsView/store.d.ts +0 -192
  749. package/components/tabsView/tabsView/tabsView.d.ts +0 -98
  750. package/components/tabsView/tabsView/tabsView.vue.d.ts +0 -34
  751. package/components/tabsView/tabsView/utils.d.ts +0 -11
  752. package/components/tabsView/tabsView.d.ts +0 -7
  753. package/core/app.amd.js +0 -2
  754. package/core/app.amd.js.map +0 -1
  755. package/core/app.d.ts +0 -8
  756. package/core/app.js +0 -214
  757. package/core/app.js.map +0 -1
  758. package/core/core/core.d.ts +0 -113
  759. package/core/core/events/resize.d.ts +0 -16
  760. package/core/core/events.d.ts +0 -15
  761. package/core/core/options.d.ts +0 -46
  762. package/core/core/preloaders.d.ts +0 -19
  763. package/core/core/state.d.ts +0 -49
  764. package/core/directives/data.d.ts +0 -10
  765. package/core/directives/focus.d.ts +0 -10
  766. package/core/directives/scrollIntoView.d.ts +0 -3
  767. package/core/directives/scrollShadow.d.ts +0 -15
  768. package/core/directives/sticky.d.ts +0 -10
  769. package/core/directives/swimUp.d.ts +0 -15
  770. package/core/directives/tooltip.d.ts +0 -10
  771. package/core/plugins/core.d.ts +0 -60
  772. package/core/plugins/i18n.d.ts +0 -97
  773. package/core/plugins/piniaTPA.d.ts +0 -17
  774. package/core/utils/check.d.ts +0 -26
  775. package/core/utils/clipboard.d.ts +0 -12
  776. package/core/utils/date.d.ts +0 -52
  777. package/core/utils/device.d.ts +0 -50
  778. package/core/utils/dom.d.ts +0 -94
  779. package/core/utils/image.d.ts +0 -16
  780. package/core/utils/keyboard.d.ts +0 -8
  781. package/core/utils/lodash.d.ts +0 -6
  782. package/core/utils/number.d.ts +0 -17
  783. package/core/utils/price.d.ts +0 -10
  784. package/core/utils/route.d.ts +0 -33
  785. package/core/utils/scroll.d.ts +0 -32
  786. package/core/utils/searchers.d.ts +0 -38
  787. package/core/utils/store/localStorage.d.ts +0 -6
  788. package/core/utils/store/plugin.d.ts +0 -24
  789. package/core/utils/store/store.d.ts +0 -34
  790. package/core/utils/store.d.ts +0 -6
  791. package/core/utils/string.d.ts +0 -88
  792. package/core/utils/system.d.ts +0 -25
  793. package/core/utils/url.d.ts +0 -36
  794. package/dialog/dialog.amd.js +0 -2
  795. package/dialog/dialog.amd.js.map +0 -1
  796. package/dialog/dialog.d.ts +0 -2
  797. package/dialog/dialog.js +0 -60
  798. package/dialog/dialog.js.map +0 -1
  799. package/forms/forms.amd.js +0 -2
  800. package/forms/forms.amd.js.map +0 -1
  801. package/forms/forms.d.ts +0 -2
  802. package/forms/forms.js +0 -17
  803. package/forms/forms.js.map +0 -1
  804. package/forms/helpers.amd.js +0 -2
  805. package/forms/helpers.amd.js.map +0 -1
  806. package/forms/helpers.d.ts +0 -2
  807. package/forms/helpers.js +0 -10
  808. package/forms/helpers.js.map +0 -1
  809. package/formsExt/formsExt.amd.js +0 -2
  810. package/formsExt/formsExt.amd.js.map +0 -1
  811. package/formsExt/formsExt.d.ts +0 -2
  812. package/formsExt/formsExt.js +0 -493
  813. package/formsExt/formsExt.js.map +0 -1
  814. package/layout/layout.amd.js +0 -2
  815. package/layout/layout.amd.js.map +0 -1
  816. package/layout/layout.d.ts +0 -2
  817. package/layout/layout.js +0 -62
  818. package/layout/layout.js.map +0 -1
  819. package/popup/popup.amd.js +0 -2
  820. package/popup/popup.amd.js.map +0 -1
  821. package/popup/popup.d.ts +0 -2
  822. package/popup/popup.js +0 -244
  823. package/popup/popup.js.map +0 -1
  824. package/popup/worker.amd.js +0 -2
  825. package/popup/worker.amd.js.map +0 -1
  826. package/popup/worker.d.ts +0 -2
  827. package/popup/worker.js +0 -129
  828. package/popup/worker.js.map +0 -1
  829. package/project/project.amd.js +0 -2
  830. package/project/project.amd.js.map +0 -1
  831. package/project/project.d.ts +0 -2
  832. package/project/project.js +0 -976
  833. package/project/project.js.map +0 -1
  834. package/tabs/tabs.amd.js +0 -2
  835. package/tabs/tabs.amd.js.map +0 -1
  836. package/tabs/tabs.d.ts +0 -2
  837. package/tabs/tabs.js +0 -81
  838. package/tabs/tabs.js.map +0 -1
  839. package/tabsView/tabsView.amd.js +0 -2
  840. package/tabsView/tabsView.amd.js.map +0 -1
  841. package/tabsView/tabsView.d.ts +0 -2
  842. package/tabsView/tabsView.js +0 -306
  843. package/tabsView/tabsView.js.map +0 -1
  844. package/utils/check.amd.js +0 -2
  845. package/utils/check.amd.js.map +0 -1
  846. package/utils/check.d.ts +0 -2
  847. package/utils/check.js +0 -26
  848. package/utils/check.js.map +0 -1
  849. package/utils/clipboard.amd.js +0 -6
  850. package/utils/clipboard.amd.js.map +0 -1
  851. package/utils/clipboard.d.ts +0 -2
  852. package/utils/clipboard.js +0 -33
  853. package/utils/clipboard.js.map +0 -1
  854. package/utils/date.amd.js +0 -2
  855. package/utils/date.amd.js.map +0 -1
  856. package/utils/date.d.ts +0 -2
  857. package/utils/date.js +0 -11
  858. package/utils/date.js.map +0 -1
  859. package/utils/device.amd.js +0 -2
  860. package/utils/device.amd.js.map +0 -1
  861. package/utils/device.d.ts +0 -2
  862. package/utils/device.js +0 -15
  863. package/utils/device.js.map +0 -1
  864. package/utils/dom.amd.js +0 -2
  865. package/utils/dom.amd.js.map +0 -1
  866. package/utils/dom.d.ts +0 -6
  867. package/utils/dom.js +0 -75
  868. package/utils/dom.js.map +0 -1
  869. package/utils/image.amd.js +0 -12
  870. package/utils/image.amd.js.map +0 -1
  871. package/utils/image.d.ts +0 -2
  872. package/utils/image.js +0 -23
  873. package/utils/image.js.map +0 -1
  874. package/utils/keyboard.amd.js +0 -2
  875. package/utils/keyboard.amd.js.map +0 -1
  876. package/utils/keyboard.d.ts +0 -2
  877. package/utils/keyboard.js +0 -12
  878. package/utils/keyboard.js.map +0 -1
  879. package/utils/lodash.amd.js +0 -2
  880. package/utils/lodash.amd.js.map +0 -1
  881. package/utils/lodash.d.ts +0 -2
  882. package/utils/lodash.js +0 -9
  883. package/utils/lodash.js.map +0 -1
  884. package/utils/number.amd.js +0 -2
  885. package/utils/number.amd.js.map +0 -1
  886. package/utils/number.d.ts +0 -2
  887. package/utils/number.js +0 -13
  888. package/utils/number.js.map +0 -1
  889. package/utils/price.amd.js +0 -2
  890. package/utils/price.amd.js.map +0 -1
  891. package/utils/price.d.ts +0 -2
  892. package/utils/price.js +0 -10
  893. package/utils/price.js.map +0 -1
  894. package/utils/route.amd.js +0 -2
  895. package/utils/route.amd.js.map +0 -1
  896. package/utils/route.d.ts +0 -2
  897. package/utils/route.js +0 -31
  898. package/utils/route.js.map +0 -1
  899. package/utils/scroll.amd.js +0 -2
  900. package/utils/scroll.amd.js.map +0 -1
  901. package/utils/scroll.d.ts +0 -2
  902. package/utils/scroll.js +0 -45
  903. package/utils/scroll.js.map +0 -1
  904. package/utils/searchers.amd.js +0 -2
  905. package/utils/searchers.amd.js.map +0 -1
  906. package/utils/searchers.d.ts +0 -2
  907. package/utils/searchers.js +0 -134
  908. package/utils/searchers.js.map +0 -1
  909. package/utils/store.amd.js +0 -2
  910. package/utils/store.amd.js.map +0 -1
  911. package/utils/store.d.ts +0 -2
  912. package/utils/store.js +0 -7
  913. package/utils/store.js.map +0 -1
  914. package/utils/string.amd.js +0 -2
  915. package/utils/string.amd.js.map +0 -1
  916. package/utils/string.d.ts +0 -2
  917. package/utils/string.js +0 -139
  918. package/utils/string.js.map +0 -1
  919. package/utils/system.amd.js +0 -2
  920. package/utils/system.amd.js.map +0 -1
  921. package/utils/system.d.ts +0 -2
  922. package/utils/system.js +0 -29
  923. package/utils/system.js.map +0 -1
  924. package/utils/url.amd.js +0 -3
  925. package/utils/url.amd.js.map +0 -1
  926. package/utils/url.d.ts +0 -2
  927. package/utils/url.js +0 -48
  928. package/utils/url.js.map +0 -1
  929. /package/{icomoon → public/icomoon}/Read Me.txt +0 -0
  930. /package/{icomoon → public/icomoon}/Topvisor icons.json +0 -0
  931. /package/{icomoon → public/icomoon}/demo-files/demo.css +0 -0
  932. /package/{icomoon → public/icomoon}/demo-files/demo.js +0 -0
  933. /package/{icomoon → public/icomoon}/demo.html +0 -0
  934. /package/{icomoon → public/icomoon}/fonts/Topvisor-2.eot +0 -0
  935. /package/{icomoon → public/icomoon}/fonts/Topvisor-2.svg +0 -0
  936. /package/{icomoon → public/icomoon}/fonts/Topvisor-2.ttf +0 -0
  937. /package/{icomoon → public/icomoon}/fonts/Topvisor-2.woff +0 -0
  938. /package/{icomoon → public/icomoon}/selection.json +0 -0
  939. /package/{icomoon → public/icomoon}/style.css +0 -0
  940. /package/{jquery-ui.min.css → public/jquery-ui.min.css} +0 -0
  941. /package/{require → public/require}/css.amd.js +0 -0
@@ -1,134 +0,0 @@
1
- import "../.chunks/forms-BsuCen2-.es.js";
2
- import "../.chunks/core-Dsl28h7N.es.js";
3
- import "vue";
4
- import "../.chunks/dialogs.vue_vue_type_script_setup_true_lang-B5hK613K.es.js";
5
- const k = {
6
- 0: "Yandex",
7
- 20: "Yandex.com",
8
- 21: "Yandex.com.tr",
9
- 1: "Google",
10
- 4: "YouTube",
11
- 5: "Bing",
12
- 7: "Seznam",
13
- 8: "AppStore",
14
- 9: "GooglePlay",
15
- 101: "VK",
16
- 102: "Facebook",
17
- 103: "Twitter"
18
- }, i = (e) => {
19
- let a = "";
20
- switch (typeof e == "string" && (e = Number(e)), e) {
21
- case 0:
22
- a = "";
23
- break;
24
- case 20:
25
- case 21:
26
- a = "";
27
- break;
28
- case 1:
29
- a = "";
30
- break;
31
- case 2:
32
- a = "";
33
- break;
34
- case 3:
35
- a = "";
36
- break;
37
- case 4:
38
- a = "";
39
- break;
40
- case 5:
41
- a = "";
42
- break;
43
- case 6:
44
- a = "";
45
- break;
46
- case 7:
47
- a = "";
48
- break;
49
- case 8:
50
- a = "";
51
- break;
52
- case 9:
53
- a = "";
54
- break;
55
- case null:
56
- a = "";
57
- break;
58
- }
59
- return a;
60
- }, o = (e) => {
61
- let a = "";
62
- switch (typeof e == "string" && (e = Number(e)), e % 10) {
63
- case 0:
64
- a = "";
65
- break;
66
- case 1:
67
- a = "";
68
- break;
69
- case 2:
70
- a = "";
71
- break;
72
- }
73
- return a;
74
- }, b = (e, a) => {
75
- switch (typeof e == "string" && (e = Number(e)), e * 1) {
76
- case 1:
77
- case 4:
78
- case 5:
79
- case 6:
80
- case 8:
81
- case 9:
82
- return a;
83
- }
84
- return "";
85
- }, g = (e, a, c) => {
86
- switch (a * 1) {
87
- // Яндекс
88
- case 0:
89
- switch (c * 1) {
90
- case 2:
91
- e = `"${e}"`;
92
- break;
93
- case 3:
94
- e = `"!${e}"`;
95
- break;
96
- case 5:
97
- e = `"[${e}]"`;
98
- break;
99
- case 6:
100
- e = `"[!${e}]"`;
101
- break;
102
- }
103
- break;
104
- // Google
105
- case 1:
106
- e = `[${e}]`;
107
- break;
108
- }
109
- return e;
110
- }, f = (e, a) => {
111
- switch (a === null && (a = 6), e) {
112
- case 1:
113
- a = 3;
114
- break;
115
- case 2:
116
- a = 2;
117
- break;
118
- case 5:
119
- a > 1 && (a = 1);
120
- break;
121
- default:
122
- [1, 2, 3, 5, 6].includes(a) || (a = 3);
123
- }
124
- return a;
125
- };
126
- export {
127
- g as genVolumeLabel,
128
- o as getDeviceGIcon,
129
- b as getLangLabel,
130
- i as getSearcherGIcon,
131
- f as prepareVolumeType,
132
- k as searchersNames
133
- };
134
- //# sourceMappingURL=searchers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"searchers.js","sources":["../../src/core/utils/searchers.ts"],"sourcesContent":["import { useI18nLang } from '@/core/app';\r\n\r\n/**\r\n * Вспомогательный класс для работы с разными Поисковиками\r\n */\r\nexport const searchersNames = {\r\n\t0: 'Yandex',\r\n\t20: 'Yandex.com',\r\n\t21: 'Yandex.com.tr',\r\n\t1: 'Google',\r\n\t4: 'YouTube',\r\n\t5: 'Bing',\r\n\t7: 'Seznam',\r\n\t8: 'AppStore',\r\n\t9: 'GooglePlay',\r\n\t101: 'VK',\r\n\t102: 'Facebook',\r\n\t103: 'Twitter',\r\n};\r\n\r\n/**\r\n * Получить иконку ПС\r\n * @param searcherKey - цифра или строка с цифрой обозначающая ПС. Если null вернется иконка с глобусом\r\n */\r\nexport const getSearcherGIcon = (searcherKey: number | string | null): string => {\r\n\tlet icon = '';\r\n\r\n\tif (typeof searcherKey === 'string') searcherKey = Number(searcherKey);\r\n\r\n\tswitch (searcherKey) {\r\n\t\tcase 0:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 20:\r\n\t\tcase 21:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 1:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 2:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 3:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 4:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 5:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 6:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 7:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 8:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 9:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase null:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\treturn icon;\r\n};\r\n\r\n/**\r\n * Получить иконку устройства (ПК, планшет, смартфон)\r\n */\r\nexport const getDeviceGIcon = (device: number | string): string => {\r\n\tlet icon = '';\r\n\r\n\tif (typeof device === 'string') device = Number(device);\r\n\r\n\tswitch (device % 10) {\r\n\t\tcase 0:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 1:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t\tcase 2:\r\n\t\t\ticon = '';\r\n\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\treturn icon;\r\n};\r\n\r\n/**\r\n * Получить иконку языка\r\n */\r\nexport const getLangLabel = (searcherKey: number | string, lang: string) => {\r\n\tif (typeof searcherKey === 'string') searcherKey = Number(searcherKey);\r\n\r\n\tswitch (searcherKey * 1) {\r\n\t\tcase 1:\r\n\t\tcase 4:\r\n\t\tcase 5:\r\n\t\tcase 6:\r\n\t\tcase 8:\r\n\t\tcase 9:\r\n\t\t\treturn lang;\r\n\t}\r\n\r\n\treturn '';\r\n};\r\n\r\n/**\r\n * Сгенерировать заголовок типа частоты\r\n */\r\nexport const genVolumeLabel = (label: string, searcherKey: 0 | 1, volumeType: 1 | 2 | 3 | 5 | 6): string => {\r\n\tswitch (searcherKey * 1) {\r\n\t\t// Яндекс\r\n\t\tcase 0:\r\n\t\t\tswitch (volumeType * 1) {\r\n\t\t\t\tcase 2:\r\n\t\t\t\t\tlabel = `\"${label}\"`;\r\n\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 3:\r\n\t\t\t\t\tlabel = `\"!${label}\"`;\r\n\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 5:\r\n\t\t\t\t\tlabel = `\"[${label}]\"`;\r\n\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 6:\r\n\t\t\t\t\tlabel = `\"[!${label}]\"`;\r\n\r\n\t\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tbreak;\r\n\t\t// Google\r\n\t\tcase 1:\r\n\t\t\tlabel = `[${label}]`;\r\n\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\treturn label;\r\n};\r\n\r\n/**\r\n * Проверить значение частоты, вернуть правильное значение частоты\r\n */\r\nexport const prepareVolumeType = (searcherKey: number, volumeType: number): number => {\r\n\t// по умолчанию выбрана сама точная частота\r\n\tif (volumeType === null) volumeType = 6;\r\n\r\n\tswitch (searcherKey) {\r\n\t\tcase 1:\r\n\t\t\tvolumeType = 3;\r\n\r\n\t\t\tbreak;\r\n\t\tcase 2:\r\n\t\t\tvolumeType = 2;\r\n\r\n\t\t\tbreak;\r\n\t\tcase 5:\r\n\t\t\tif (volumeType > 1) volumeType = 1;\r\n\r\n\t\t\tbreak;\r\n\t\tdefault:\r\n\t\t\tif (![1, 2, 3, 5, 6].includes(volumeType)) volumeType = 3;\r\n\t}\r\n\r\n\treturn volumeType;\r\n};\r\n"],"names":["searchersNames","getSearcherGIcon","searcherKey","icon","getDeviceGIcon","device","getLangLabel","lang","genVolumeLabel","label","volumeType","prepareVolumeType"],"mappings":";;;;AAKO,MAAMA,IAAiB;AAAA,EAC7B,GAAG;AAAA,EACH,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,KAAK;AAAA,EACL,KAAK;AAAA,EACL,KAAK;AACN,GAMaC,IAAmB,CAACC,MAAgD;AAChF,MAAIC,IAAO;AAIX,UAFI,OAAOD,KAAgB,aAAUA,IAAc,OAAOA,CAAW,IAE7DA,GAAa;AAAA,IACpB,KAAK;AACG,MAAAC,IAAA;AAEP;AAAA,IACD,KAAK;AAAA,IACL,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,EAAA;AAGK,SAAAA;AACR,GAKaC,IAAiB,CAACC,MAAoC;AAClE,MAAIF,IAAO;AAIX,UAFI,OAAOE,KAAW,aAAUA,IAAS,OAAOA,CAAM,IAE9CA,IAAS,IAAI;AAAA,IACpB,KAAK;AACG,MAAAF,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,IACD,KAAK;AACG,MAAAA,IAAA;AAEP;AAAA,EAAA;AAGK,SAAAA;AACR,GAKaG,IAAe,CAACJ,GAA8BK,MAAiB;AAG3E,UAFI,OAAOL,KAAgB,aAAUA,IAAc,OAAOA,CAAW,IAE7DA,IAAc,GAAG;AAAA,IACxB,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AACG,aAAAK;AAAA,EAAA;AAGF,SAAA;AACR,GAKaC,IAAiB,CAACC,GAAeP,GAAoBQ,MAA0C;AAC3G,UAAQR,IAAc,GAAG;AAAA;AAAA,IAExB,KAAK;AACJ,cAAQQ,IAAa,GAAG;AAAA,QACvB,KAAK;AACJ,UAAAD,IAAQ,IAAIA,CAAK;AAEjB;AAAA,QACD,KAAK;AACJ,UAAAA,IAAQ,KAAKA,CAAK;AAElB;AAAA,QACD,KAAK;AACJ,UAAAA,IAAQ,KAAKA,CAAK;AAElB;AAAA,QACD,KAAK;AACJ,UAAAA,IAAQ,MAAMA,CAAK;AAEnB;AAAA,MAAA;AAEF;AAAA;AAAA,IAED,KAAK;AACJ,MAAAA,IAAQ,IAAIA,CAAK;AAEjB;AAAA,EAAA;AAGK,SAAAA;AACR,GAKaE,IAAoB,CAACT,GAAqBQ,MAA+B;AAIrF,UAFIA,MAAe,SAAmBA,IAAA,IAE9BR,GAAa;AAAA,IACpB,KAAK;AACS,MAAAQ,IAAA;AAEb;AAAA,IACD,KAAK;AACS,MAAAA,IAAA;AAEb;AAAA,IACD,KAAK;AACA,MAAAA,IAAa,MAAgBA,IAAA;AAEjC;AAAA,IACD;AACK,MAAC,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,EAAE,SAASA,CAAU,MAAgBA,IAAA;AAAA,EAAA;AAGnD,SAAAA;AACR;"}
@@ -1,2 +0,0 @@
1
- define(["require","exports","../.chunks/store-esTid5oI.amd"],function(n,e,i){"use strict";if(typeof u>"u")var u=window.Vue;e.defineStore=i.defineStore,e.plugin=i.store,e.useStore=i.useStore,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
2
- //# sourceMappingURL=store.amd.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"store.amd.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/utils/store.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '../core/utils/store'
2
- export {}
package/utils/store.js DELETED
@@ -1,7 +0,0 @@
1
- import { d as o, s as r, u as a } from "../.chunks/store-CX_6ZXhO.es.js";
2
- export {
3
- o as defineStore,
4
- r as plugin,
5
- a as useStore
6
- };
7
- //# sourceMappingURL=store.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"store.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -1,2 +0,0 @@
1
- define(["require","exports","./check.amd","../.chunks/forms-BwGakScF.amd"],function(S,o,i,u){"use strict";if(typeof p>"u")var p=window.Vue;const h=e=>{e+="";let l=0;if(!e.length)return l;for(let a=0;a<e.length;a++){const n=e.charCodeAt(a);l=(l<<5)-l+n,l=l&l}return l<0&&(l*=-1),l},s=e=>/^\w+:\/\/([\w-]+\.)+[\w-]+(:\d+)?(\/|$)/.test(e),f=e=>{let l=e+"";l=l.replace("-","–");let a=l.split("."),n=a[0],c=a.length>1?"."+a[1]:"";if(n.replace(/[+–]/,"").length<=4)return l;const r=/(\d+)(\d{3})/;for(;r.test(n);)n=n.replace(r,"$1 $2");return n+c},d=e=>e===void 0?"":e.replace(/\r\n|\r|\n/g,"<br>"),g=(e,l=2,a=1e3,n="")=>{const c=Math.pow(10,l);let r=String(e);return Math.abs(e)>Math.pow(a,3)?r=Math.round(e/Math.pow(a,3)*c)/c+" <small>G"+n+"</small>":Math.abs(e)>Math.pow(a,2)?r=Math.round(e/Math.pow(a,2)*c)/c+" <small>M"+n+"</small>":Math.abs(e)>a&&(r=Math.round(e/a*c)/c+" <small>K"+n+"</small>"),r=r.replace(/^(-?\d+)(\d{3})/,"$1 $2"),r},m=(e,l,a=1)=>{if(e==null)return"";if(e+="",l==null||e.length<=l)return e;if(a===0)e=e.substr(e.length-l,l),e="..."+e;else if(a===1){const n=e.substr(0,l/2),c=e.substr(e.length-l/2,Math.ceil(l/2));e=n+"..."+c}else a===2&&(e=e.substr(0,l),e=e+"...");return e},w=(e,l,a,n)=>{if(u.useI18nLang().value==="en")return e===1?a:l;const c=e%100,r=e%10;return c>=5&&c<=20||r===0?l:r===1?a:r>=2&&r<=4?n:r>=5&&r<=9?l:n},b=e=>{if(u.useI18nLang().value!="ru"||e=="")return e;const l=e.split(" ");return $.map(l,function(a,n){a=a+"а",a=a.replace("оа","о"),a=a.replace("аяа","ой"),a=a.replace("шийа","шого"),a=a.replace("ыйа","ого"),a=a.replace("йа","я"),a=a.replace("ьа","я"),a=a.replace("яа","и"),a=a.replace("оваа","овой"),a=a.replace("аа","ы"),a=a.replace("кия","кого"),a=a.replace("каи","кой"),l[n]=a}),e=l.join(" "),e},C=e=>{const l={а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"e",ж:"j",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"h",ц:"c",ч:"ch",ш:"sh",щ:"shch",ъ:"",ы:"y",ь:"",э:"e",ю:"u",я:"ya"},a=e.split(" ");return $.map(a,function(n,c){const r=[];for(let t=0;t<n.length;++t)r.push(l[n[t]]||l[n[t].toLowerCase()]==null&&n[t]||l[n[t].toLowerCase()].replace(/^(.)/,function(A){return A.toUpperCase()}));a[c]=r.join("")}),e=a.join(" "),e},M=e=>(typeof e=="string"&&(e=e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;")),e),k=(e,l)=>{let a=null;switch(l.operator){case"CONTAINS":case"REGEXP":try{let n=l.values[0];l.operator!="REGEXP"&&(n=n.replace(/([()\[\]])/g,"\\$1")),a=new RegExp("("+n+")","gi")}catch{return e}break}return e=e.replace(a,'<b class="found">$1</b>'),e},y=e=>{var l;return(l=e.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g))==null?void 0:l.map(a=>a.toLowerCase()).join("_")},v=e=>`/controller/file/?src=${"/cloud/common/flags/"+e.toUpperCase()+".svg"}`,L=e=>{const l=i.getDomainRegexp(),a="(([\\/?\\w&=%+#;:-]*(\\.\\w+)?))*",n=new RegExp(`(^|[\\s>(),])([a-z0-9а-яё_.]+@${l}${a})`,"gui");e=e.replace(n,'$1<a href="mailto:$2" target="_blank" rel="noopener">↑[$2]↓</a>');const c=new RegExp(`(^|[\\s>(),])(https?://)?(${l}${a})`,"gui");return e=e.replace(c,'$1<a href="√$2$3" target="_blank" rel="nofollow noopener">$2$3</a>'),e=e.replaceAll("√http","http"),e=e.replaceAll("√","http://"),e=e.replaceAll(/(↑\[|]↓)/g,""),e},R=e=>e.charAt(0).toUpperCase()+e.slice(1),E=(e=20)=>{const l="AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890";let a="";for(let n=0;n<e;n++)a+=l[Math.floor(Math.random()*l.length)];return a};o.addCommasWhite=f,o.addLinkTags=L,o.camelToSnakeCase=y,o.ellipsis=m,o.genFlagLinkByCountryCode=v,o.genIntHash=h,o.getRandomHash=E,o.highlightHtml=k,o.htmlspecialchars=M,o.isUrl=s,o.nl2br=d,o.numberEnding=w,o.numberWithWord=g,o.rusToLatin=C,o.toCapitalize=R,o.toRoditPadej=b,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
2
- //# sourceMappingURL=string.amd.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"string.amd.js","sources":["../../src/core/utils/string.ts"],"sourcesContent":["/**\r\n * Работа со строками\r\n * @packageDocumentation\r\n */\r\n\r\nimport { getDomainRegexp } from '@/core/utils/check';\r\nimport { useI18nLang } from '@/core/plugins/i18n';\r\n\r\n/**\r\n * Сгенерировать числовой хэш от строки для идентификатора\r\n */\r\nexport const genIntHash = (string: string): number => {\r\n\tstring += '';\r\n\r\n\tlet hash = 0;\r\n\tif (!string.length) return hash;\r\n\r\n\tfor (let i = 0; i < string.length; i++) {\r\n\t\tconst char = string.charCodeAt(i);\r\n\t\thash = ((hash << 5) - hash) + char;\r\n\t\thash = hash & hash;\r\n\t}\r\n\r\n\tif (hash < 0) hash *= -1;\r\n\r\n\treturn hash;\r\n};\r\n\r\n/**\r\n * Проверить что переданная строка является URL\r\n */\r\nexport const isUrl = (url: string): boolean => {\r\n\treturn /^\\w+:\\/\\/([\\w-]+\\.)+[\\w-]+(:\\d+)?(\\/|$)/.test(url);\r\n};\r\n\r\n/**\r\n * Добавляет пробелы между разрядами если требуется\r\n * @param nStr строка с числом\r\n */\r\nexport const addCommasWhite = (n: number | string): string => {\r\n\tlet nStr = n + '';\r\n\r\n\tnStr = nStr.replace('-', '–');\r\n\r\n\tlet x = nStr.split('.');\r\n\tlet x1 = x[0];\r\n\tlet x2 = (x.length > 1) ? ('.' + x[1]) : '';\r\n\r\n\tif (x1.replace(/[+–]/, '').length <= 4) return nStr;\r\n\r\n\tconst rgx = /(\\d+)(\\d{3})/;\r\n\twhile (rgx.test(x1)) {\r\n\t\tx1 = x1.replace(rgx, '$1' + ' ' + '$2');\r\n\t}\r\n\treturn x1 + x2;\r\n};\r\n\r\n/**\r\n * Вставляет HTML-код разрыва строки перед каждым переводом строки\r\n */\r\nexport const nl2br = (str: string): string => {\r\n\tif (str === undefined) return '';\r\n\r\n\treturn str.replace(/\\r\\n|\\r|\\n/g, '<br>');\r\n};\r\n\r\n/**\r\n * Перевести число без деситичной приставки в число с деситичной приставкой степеней тысячи (с параметрами по умолчанию 1255 -> '1.26 K')\r\n * @param number\r\n * @param precision - точность, количество знаков после запятой\r\n * @param dimension - размерность, по умолчанию 1000\r\n * @param suffix - суффикс к десятичной приставке (по умолчанию выводится латинская заглавная буква)\r\n */\r\nexport const numberWithWord = (number: number, precision = 2, dimension = 1000, suffix = ''): string => {\r\n\tconst k = Math.pow(10, precision);\r\n\r\n\tlet numberStr = String(number);\r\n\tif (Math.abs(number) > Math.pow(dimension, 3)) {\r\n\t\tnumberStr = Math.round(number / Math.pow(dimension, 3) * k) / k + ' <small>G' + suffix + '</small>';\r\n\t} else if (Math.abs(number) > Math.pow(dimension, 2)) {\r\n\t\tnumberStr = Math.round(number / Math.pow(dimension, 2) * k) / k + ' <small>M' + suffix + '</small>';\r\n\t} else if (Math.abs(number) > dimension) {\r\n\t\tnumberStr = Math.round(number / dimension * k) / k + ' <small>K' + suffix + '</small>';\r\n\t}\r\n\r\n\tnumberStr = numberStr.replace(/^(-?\\d+)(\\d{3})/, '$1 $2');\r\n\r\n\treturn numberStr;\r\n};\r\n\r\n/**\r\n * Обрезать текст под три точки\r\n * @param string\r\n * @param max_length - максимальное количество символов текста, остальное обрежеться\r\n * @param pos - область обрезки 0-начало | 1-середина | 2-конец строки\r\n */\r\nexport const ellipsis = (string: string, max_length: number, pos: 0 | 1 | 2 = 1): string => {\r\n\tif (string == undefined) return '';\r\n\r\n\tstring += '';\r\n\tif (max_length == undefined || string.length <= max_length) return string;\r\n\r\n\tif (pos === 0) {\r\n\t\tstring = string.substr(string.length - max_length, max_length);\r\n\t\tstring = '...' + string;\r\n\t} else if (pos === 1) {\r\n\t\tconst string1 = string.substr(0, max_length / 2);\r\n\t\tconst string2 = string.substr(string.length - max_length / 2, Math.ceil(max_length / 2));\r\n\t\tstring = string1 + '...' + string2;\r\n\t} else if (pos === 2) {\r\n\t\tstring = string.substr(0, max_length);\r\n\t\tstring = string + '...';\r\n\t}\r\n\r\n\treturn string;\r\n};\r\n\r\n/**\r\n * Сгенерировать строку текста для вывода количества в разном склонении\r\n * @param num\r\n * @param ending0 - родительный падеж, множ. число (10 модулей)\r\n * @param ending1 - именительный падеж, ед. число (1 модуль)\r\n * @param ending2 - винительный падеж, множ. число (3 модуля)\r\n */\r\nexport const numberEnding = (num: number, ending0: string, ending1: string, ending2: string): string => {\r\n\t// склонение по множественному числу\r\n\tif (useI18nLang().value === 'en') {\r\n\t\tif (num === 1) {\r\n\t\t\treturn ending1;\r\n\t\t} else {\r\n\t\t\treturn ending0;\r\n\t\t}\r\n\t}\r\n\r\n\tconst num100 = num % 100;\r\n\tconst num10 = num % 10;\r\n\r\n\tif (num100 >= 5 && num100 <= 20) {\r\n\t\treturn ending0;\r\n\t} else if (num10 === 0) {\r\n\t\treturn ending0;\r\n\t} else if (num10 === 1) {\r\n\t\treturn ending1;\r\n\t} else if (num10 >= 2 && num10 <= 4) {\r\n\t\treturn ending2;\r\n\t} else if (num10 >= 5 && num10 <= 9) {\r\n\t\treturn ending0;\r\n\t} else {\r\n\t\treturn ending2;\r\n\t}\r\n};\r\n\r\n/**\r\n * Перевести строку в родительный падеж\r\n */\r\nexport const toRoditPadej = (str: string): string => {\r\n\tif (useI18nLang().value != 'ru' || str == '') return str;\r\n\r\n\tconst str_array = str.split(' ');\r\n\r\n\t$.map(str_array, function (str, index) {\r\n\t\tstr = str + 'а';\r\n\t\tstr = str.replace('оа', 'о');\r\n\t\tstr = str.replace('аяа', 'ой');\r\n\t\tstr = str.replace('шийа', 'шого');\r\n\t\tstr = str.replace('ыйа', 'ого');\r\n\t\tstr = str.replace('йа', 'я');\r\n\t\tstr = str.replace('ьа', 'я');\r\n\t\tstr = str.replace('яа', 'и');\r\n\t\tstr = str.replace('оваа', 'овой');\r\n\t\tstr = str.replace('аа', 'ы');\r\n\t\tstr = str.replace('кия', 'кого');\r\n\t\tstr = str.replace('каи', 'кой');\r\n\r\n\t\tstr_array[index] = str;\r\n\t});\r\n\r\n\tstr = str_array.join(' ');\r\n\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Транслитерация текста\r\n */\r\nexport const rusToLatin = (str: string): string => {\r\n\tconst ru: { [index: string]: string } = {\r\n\t\t'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd',\r\n\t\t'е': 'e', 'ё': 'e', 'ж': 'j', 'з': 'z', 'и': 'i',\r\n\t\t'й': 'i', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n',\r\n\t\t'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't',\r\n\t\t'у': 'u', 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch',\r\n\t\t'ш': 'sh', 'щ': 'shch', 'ъ': '', 'ы': 'y', 'ь': '',\r\n\t\t'э': 'e', 'ю': 'u', 'я': 'ya',\r\n\t};\r\n\r\n\tconst str_array = str.split(' ');\r\n\r\n\t$.map(str_array, function (str, index) {\r\n\t\tconst newStr: string[] = [];\r\n\t\tfor (let i = 0; i < str.length; ++i) {\r\n\t\t\tnewStr.push(\r\n\t\t\t\tru[str[i]] || ru[str[i].toLowerCase()] == undefined && str[i] || ru[str[i].toLowerCase()].replace(/^(.)/, function (match) {\r\n\t\t\t\t\treturn match.toUpperCase();\r\n\t\t\t\t}),\r\n\t\t\t);\r\n\t\t}\r\n\r\n\t\tstr_array[index] = newStr.join('');\r\n\t});\r\n\r\n\tstr = str_array.join(' ');\r\n\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Замена html-символов (`&`, `<`, `>`, `\"`, `'`) на имена литер (`&` -> `&amp;`)\r\n */\r\nexport const htmlspecialchars = (str: string): string => {\r\n\tif (typeof (str) == 'string') {\r\n\t\tstr = str\r\n\t\t\t.replace(/&/g, '&amp;')\r\n\t\t\t.replace(/</g, '&lt;')\r\n\t\t\t.replace(/>/g, '&gt;')\r\n\t\t\t.replace(/\"/g, '&quot;')\r\n\t\t\t.replace(/'/g, '&#039;');\r\n\t}\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Выделить нужное в тексте желтым цветом\r\n * поиск происходит по строке fieldFilter.values[0]\r\n */\r\nexport const highlightHtml = (text: string, fieldFilter: { operator: 'CONTAINS' | 'REGEXP', values: string[] }): string => {\r\n\tlet regExp: RegExp | null = null;\r\n\r\n\tswitch (fieldFilter.operator) {\r\n\t\tcase 'CONTAINS':\r\n\t\tcase 'REGEXP':\r\n\t\t\ttry {\r\n\t\t\t\tlet regExpString = fieldFilter.values[0];\r\n\t\t\t\tif (fieldFilter.operator != 'REGEXP') regExpString = regExpString.replace(/([()\\[\\]])/g, '\\\\$1');\r\n\r\n\t\t\t\tregExp = new RegExp('(' + regExpString + ')', 'gi');\r\n\t\t\t} catch (exception) {\r\n\t\t\t\treturn text;\r\n\t\t\t}\r\n\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\ttext = text.replace(regExp!, '<b class=\"found\">$1</b>');\r\n\r\n\treturn text;\r\n};\r\n\r\n/**\r\n * Пример: logHTTPCodesHundreds => log_http_codes_hundreds\r\n */\r\nexport const camelToSnakeCase = (str: string): string | undefined => {\r\n\treturn str.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)?.map(token => token.toLowerCase()).join('_');\r\n};\r\n\r\n/**\r\n * Получить url изображения флага, по коду страны по стандарту ISO 3166-1 alpha-2\r\n *\r\n * @todo Опубликовать в CDN или брать c публичного CDN\r\n */\r\nexport const genFlagLinkByCountryCode = (countryCode: string) => {\r\n\tconst urlImage = '/cloud/common/flags/' + countryCode.toUpperCase() + '.svg';\r\n\treturn `/controller/file/?src=${urlImage}`;\r\n};\r\n\r\n/**\r\n * Обернуть все ссылки и email в тексте в html-тег `<a>`.\r\n *\r\n * Для email ставиться префикс `mailto:`\r\n */\r\nexport const addLinkTags = (text: string): string => {\r\n\tconst domainRegexp = getDomainRegexp();\r\n\tconst afterDomainRegexp = '(([\\\\/?\\\\w&=%+#;:-]*(\\\\.\\\\w+)?))*';\r\n\r\n\tconst regexpMailto = new RegExp(`(^|[\\\\s>(),])([a-z0-9а-яё_.]+@${domainRegexp}${afterDomainRegexp})`, 'gui');\r\n\ttext = text.replace(regexpMailto, `$1<a href=\"mailto:$2\" target=\"_blank\" rel=\"noopener\">↑[$2]↓</a>`);\r\n\r\n\tconst regexpLink = new RegExp(`(^|[\\\\s>(),])(https?:\\/\\/)?(${domainRegexp}${afterDomainRegexp})`, 'gui');\r\n\ttext = text.replace(regexpLink, `$1<a href=\"√$2$3\" target=\"_blank\" rel=\"nofollow noopener\">$2$3</a>`);\r\n\r\n\ttext = text.replaceAll('√http', 'http');\r\n\ttext = text.replaceAll('√', 'http://');\r\n\ttext = text.replaceAll(/(↑\\[|]↓)/g, '');\r\n\r\n\treturn text;\r\n};\r\n\r\n/**\r\n * Перевести первую букву строки в верхний регистр\r\n */\r\nexport const toCapitalize = (str: string): string => {\r\n\treturn str.charAt(0).toUpperCase() + str.slice(1);\r\n};\r\n\r\n/**\r\n * Получить случайную строку\r\n */\r\nexport const getRandomHash = (length: number = 20): string => {\r\n\tconst l = 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890';\r\n\r\n\tlet result = '';\r\n\tfor (let i = 0; i < length; i++) {\r\n\t\tresult += l[Math.floor(Math.random() * l.length)];\r\n\t}\r\n\r\n\treturn result;\r\n};\r\n"],"names":["genIntHash","string","hash","i","isUrl","url","addCommasWhite","n","nStr","x1","x","x2","rgx","nl2br","str","numberWithWord","number","precision","dimension","suffix","numberStr","k","ellipsis","max_length","pos","string1","string2","numberEnding","num","ending0","ending1","ending2","forms","num100","num10","toRoditPadej","str2","str_array","index","rusToLatin","ru","match","htmlspecialchars","highlightHtml","text","fieldFilter","regExpString","regExp","camelToSnakeCase","genFlagLinkByCountryCode","countryCode","addLinkTags","domainRegexp","utils_check","regexpMailto","afterDomainRegexp","regexpLink","toCapitalize","getRandomHash","length","result"],"mappings":"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"}
package/utils/string.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '../core/utils/string'
2
- export {}
package/utils/string.js DELETED
@@ -1,139 +0,0 @@
1
- import { getDomainRegexp as u } from "./check.js";
2
- import { a as n } from "../.chunks/forms-BsuCen2-.es.js";
3
- const i = (e) => {
4
- e += "";
5
- let l = 0;
6
- if (!e.length) return l;
7
- for (let a = 0; a < e.length; a++) {
8
- const r = e.charCodeAt(a);
9
- l = (l << 5) - l + r, l = l & l;
10
- }
11
- return l < 0 && (l *= -1), l;
12
- }, f = (e) => /^\w+:\/\/([\w-]+\.)+[\w-]+(:\d+)?(\/|$)/.test(e), g = (e) => {
13
- let l = e + "";
14
- l = l.replace("-", "–");
15
- let a = l.split("."), r = a[0], c = a.length > 1 ? "." + a[1] : "";
16
- if (r.replace(/[+–]/, "").length <= 4) return l;
17
- const o = /(\d+)(\d{3})/;
18
- for (; o.test(r); )
19
- r = r.replace(o, "$1 $2");
20
- return r + c;
21
- }, w = (e) => e === void 0 ? "" : e.replace(/\r\n|\r|\n/g, "<br>"), d = (e, l = 2, a = 1e3, r = "") => {
22
- const c = Math.pow(10, l);
23
- let o = String(e);
24
- return Math.abs(e) > Math.pow(a, 3) ? o = Math.round(e / Math.pow(a, 3) * c) / c + " <small>G" + r + "</small>" : Math.abs(e) > Math.pow(a, 2) ? o = Math.round(e / Math.pow(a, 2) * c) / c + " <small>M" + r + "</small>" : Math.abs(e) > a && (o = Math.round(e / a * c) / c + " <small>K" + r + "</small>"), o = o.replace(/^(-?\d+)(\d{3})/, "$1 $2"), o;
25
- }, m = (e, l, a = 1) => {
26
- if (e == null) return "";
27
- if (e += "", l == null || e.length <= l) return e;
28
- if (a === 0)
29
- e = e.substr(e.length - l, l), e = "..." + e;
30
- else if (a === 1) {
31
- const r = e.substr(0, l / 2), c = e.substr(e.length - l / 2, Math.ceil(l / 2));
32
- e = r + "..." + c;
33
- } else a === 2 && (e = e.substr(0, l), e = e + "...");
34
- return e;
35
- }, M = (e, l, a, r) => {
36
- if (n().value === "en")
37
- return e === 1 ? a : l;
38
- const c = e % 100, o = e % 10;
39
- return c >= 5 && c <= 20 || o === 0 ? l : o === 1 ? a : o >= 2 && o <= 4 ? r : o >= 5 && o <= 9 ? l : r;
40
- }, b = (e) => {
41
- if (n().value != "ru" || e == "") return e;
42
- const l = e.split(" ");
43
- return $.map(l, function(a, r) {
44
- a = a + "а", a = a.replace("оа", "о"), a = a.replace("аяа", "ой"), a = a.replace("шийа", "шого"), a = a.replace("ыйа", "ого"), a = a.replace("йа", "я"), a = a.replace("ьа", "я"), a = a.replace("яа", "и"), a = a.replace("оваа", "овой"), a = a.replace("аа", "ы"), a = a.replace("кия", "кого"), a = a.replace("каи", "кой"), l[r] = a;
45
- }), e = l.join(" "), e;
46
- }, C = (e) => {
47
- const l = {
48
- а: "a",
49
- б: "b",
50
- в: "v",
51
- г: "g",
52
- д: "d",
53
- е: "e",
54
- ё: "e",
55
- ж: "j",
56
- з: "z",
57
- и: "i",
58
- й: "i",
59
- к: "k",
60
- л: "l",
61
- м: "m",
62
- н: "n",
63
- о: "o",
64
- п: "p",
65
- р: "r",
66
- с: "s",
67
- т: "t",
68
- у: "u",
69
- ф: "f",
70
- х: "h",
71
- ц: "c",
72
- ч: "ch",
73
- ш: "sh",
74
- щ: "shch",
75
- ъ: "",
76
- ы: "y",
77
- ь: "",
78
- э: "e",
79
- ю: "u",
80
- я: "ya"
81
- }, a = e.split(" ");
82
- return $.map(a, function(r, c) {
83
- const o = [];
84
- for (let t = 0; t < r.length; ++t)
85
- o.push(
86
- l[r[t]] || l[r[t].toLowerCase()] == null && r[t] || l[r[t].toLowerCase()].replace(/^(.)/, function(p) {
87
- return p.toUpperCase();
88
- })
89
- );
90
- a[c] = o.join("");
91
- }), e = a.join(" "), e;
92
- }, A = (e) => (typeof e == "string" && (e = e.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;")), e), E = (e, l) => {
93
- let a = null;
94
- switch (l.operator) {
95
- case "CONTAINS":
96
- case "REGEXP":
97
- try {
98
- let r = l.values[0];
99
- l.operator != "REGEXP" && (r = r.replace(/([()\[\]])/g, "\\$1")), a = new RegExp("(" + r + ")", "gi");
100
- } catch {
101
- return e;
102
- }
103
- break;
104
- }
105
- return e = e.replace(a, '<b class="found">$1</b>'), e;
106
- }, R = (e) => {
107
- var l;
108
- return (l = e.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)) == null ? void 0 : l.map((a) => a.toLowerCase()).join("_");
109
- }, k = (e) => `/controller/file/?src=${"/cloud/common/flags/" + e.toUpperCase() + ".svg"}`, v = (e) => {
110
- const l = u(), a = "(([\\/?\\w&=%+#;:-]*(\\.\\w+)?))*", r = new RegExp(`(^|[\\s>(),])([a-z0-9а-яё_.]+@${l}${a})`, "gui");
111
- e = e.replace(r, '$1<a href="mailto:$2" target="_blank" rel="noopener">↑[$2]↓</a>');
112
- const c = new RegExp(`(^|[\\s>(),])(https?://)?(${l}${a})`, "gui");
113
- return e = e.replace(c, '$1<a href="√$2$3" target="_blank" rel="nofollow noopener">$2$3</a>'), e = e.replaceAll("√http", "http"), e = e.replaceAll("√", "http://"), e = e.replaceAll(/(↑\[|]↓)/g, ""), e;
114
- }, y = (e) => e.charAt(0).toUpperCase() + e.slice(1), L = (e = 20) => {
115
- const l = "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890";
116
- let a = "";
117
- for (let r = 0; r < e; r++)
118
- a += l[Math.floor(Math.random() * l.length)];
119
- return a;
120
- };
121
- export {
122
- g as addCommasWhite,
123
- v as addLinkTags,
124
- R as camelToSnakeCase,
125
- m as ellipsis,
126
- k as genFlagLinkByCountryCode,
127
- i as genIntHash,
128
- L as getRandomHash,
129
- E as highlightHtml,
130
- A as htmlspecialchars,
131
- f as isUrl,
132
- w as nl2br,
133
- M as numberEnding,
134
- d as numberWithWord,
135
- C as rusToLatin,
136
- y as toCapitalize,
137
- b as toRoditPadej
138
- };
139
- //# sourceMappingURL=string.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"string.js","sources":["../../src/core/utils/string.ts"],"sourcesContent":["/**\r\n * Работа со строками\r\n * @packageDocumentation\r\n */\r\n\r\nimport { getDomainRegexp } from '@/core/utils/check';\r\nimport { useI18nLang } from '@/core/plugins/i18n';\r\n\r\n/**\r\n * Сгенерировать числовой хэш от строки для идентификатора\r\n */\r\nexport const genIntHash = (string: string): number => {\r\n\tstring += '';\r\n\r\n\tlet hash = 0;\r\n\tif (!string.length) return hash;\r\n\r\n\tfor (let i = 0; i < string.length; i++) {\r\n\t\tconst char = string.charCodeAt(i);\r\n\t\thash = ((hash << 5) - hash) + char;\r\n\t\thash = hash & hash;\r\n\t}\r\n\r\n\tif (hash < 0) hash *= -1;\r\n\r\n\treturn hash;\r\n};\r\n\r\n/**\r\n * Проверить что переданная строка является URL\r\n */\r\nexport const isUrl = (url: string): boolean => {\r\n\treturn /^\\w+:\\/\\/([\\w-]+\\.)+[\\w-]+(:\\d+)?(\\/|$)/.test(url);\r\n};\r\n\r\n/**\r\n * Добавляет пробелы между разрядами если требуется\r\n * @param nStr строка с числом\r\n */\r\nexport const addCommasWhite = (n: number | string): string => {\r\n\tlet nStr = n + '';\r\n\r\n\tnStr = nStr.replace('-', '–');\r\n\r\n\tlet x = nStr.split('.');\r\n\tlet x1 = x[0];\r\n\tlet x2 = (x.length > 1) ? ('.' + x[1]) : '';\r\n\r\n\tif (x1.replace(/[+–]/, '').length <= 4) return nStr;\r\n\r\n\tconst rgx = /(\\d+)(\\d{3})/;\r\n\twhile (rgx.test(x1)) {\r\n\t\tx1 = x1.replace(rgx, '$1' + ' ' + '$2');\r\n\t}\r\n\treturn x1 + x2;\r\n};\r\n\r\n/**\r\n * Вставляет HTML-код разрыва строки перед каждым переводом строки\r\n */\r\nexport const nl2br = (str: string): string => {\r\n\tif (str === undefined) return '';\r\n\r\n\treturn str.replace(/\\r\\n|\\r|\\n/g, '<br>');\r\n};\r\n\r\n/**\r\n * Перевести число без деситичной приставки в число с деситичной приставкой степеней тысячи (с параметрами по умолчанию 1255 -> '1.26 K')\r\n * @param number\r\n * @param precision - точность, количество знаков после запятой\r\n * @param dimension - размерность, по умолчанию 1000\r\n * @param suffix - суффикс к десятичной приставке (по умолчанию выводится латинская заглавная буква)\r\n */\r\nexport const numberWithWord = (number: number, precision = 2, dimension = 1000, suffix = ''): string => {\r\n\tconst k = Math.pow(10, precision);\r\n\r\n\tlet numberStr = String(number);\r\n\tif (Math.abs(number) > Math.pow(dimension, 3)) {\r\n\t\tnumberStr = Math.round(number / Math.pow(dimension, 3) * k) / k + ' <small>G' + suffix + '</small>';\r\n\t} else if (Math.abs(number) > Math.pow(dimension, 2)) {\r\n\t\tnumberStr = Math.round(number / Math.pow(dimension, 2) * k) / k + ' <small>M' + suffix + '</small>';\r\n\t} else if (Math.abs(number) > dimension) {\r\n\t\tnumberStr = Math.round(number / dimension * k) / k + ' <small>K' + suffix + '</small>';\r\n\t}\r\n\r\n\tnumberStr = numberStr.replace(/^(-?\\d+)(\\d{3})/, '$1 $2');\r\n\r\n\treturn numberStr;\r\n};\r\n\r\n/**\r\n * Обрезать текст под три точки\r\n * @param string\r\n * @param max_length - максимальное количество символов текста, остальное обрежеться\r\n * @param pos - область обрезки 0-начало | 1-середина | 2-конец строки\r\n */\r\nexport const ellipsis = (string: string, max_length: number, pos: 0 | 1 | 2 = 1): string => {\r\n\tif (string == undefined) return '';\r\n\r\n\tstring += '';\r\n\tif (max_length == undefined || string.length <= max_length) return string;\r\n\r\n\tif (pos === 0) {\r\n\t\tstring = string.substr(string.length - max_length, max_length);\r\n\t\tstring = '...' + string;\r\n\t} else if (pos === 1) {\r\n\t\tconst string1 = string.substr(0, max_length / 2);\r\n\t\tconst string2 = string.substr(string.length - max_length / 2, Math.ceil(max_length / 2));\r\n\t\tstring = string1 + '...' + string2;\r\n\t} else if (pos === 2) {\r\n\t\tstring = string.substr(0, max_length);\r\n\t\tstring = string + '...';\r\n\t}\r\n\r\n\treturn string;\r\n};\r\n\r\n/**\r\n * Сгенерировать строку текста для вывода количества в разном склонении\r\n * @param num\r\n * @param ending0 - родительный падеж, множ. число (10 модулей)\r\n * @param ending1 - именительный падеж, ед. число (1 модуль)\r\n * @param ending2 - винительный падеж, множ. число (3 модуля)\r\n */\r\nexport const numberEnding = (num: number, ending0: string, ending1: string, ending2: string): string => {\r\n\t// склонение по множественному числу\r\n\tif (useI18nLang().value === 'en') {\r\n\t\tif (num === 1) {\r\n\t\t\treturn ending1;\r\n\t\t} else {\r\n\t\t\treturn ending0;\r\n\t\t}\r\n\t}\r\n\r\n\tconst num100 = num % 100;\r\n\tconst num10 = num % 10;\r\n\r\n\tif (num100 >= 5 && num100 <= 20) {\r\n\t\treturn ending0;\r\n\t} else if (num10 === 0) {\r\n\t\treturn ending0;\r\n\t} else if (num10 === 1) {\r\n\t\treturn ending1;\r\n\t} else if (num10 >= 2 && num10 <= 4) {\r\n\t\treturn ending2;\r\n\t} else if (num10 >= 5 && num10 <= 9) {\r\n\t\treturn ending0;\r\n\t} else {\r\n\t\treturn ending2;\r\n\t}\r\n};\r\n\r\n/**\r\n * Перевести строку в родительный падеж\r\n */\r\nexport const toRoditPadej = (str: string): string => {\r\n\tif (useI18nLang().value != 'ru' || str == '') return str;\r\n\r\n\tconst str_array = str.split(' ');\r\n\r\n\t$.map(str_array, function (str, index) {\r\n\t\tstr = str + 'а';\r\n\t\tstr = str.replace('оа', 'о');\r\n\t\tstr = str.replace('аяа', 'ой');\r\n\t\tstr = str.replace('шийа', 'шого');\r\n\t\tstr = str.replace('ыйа', 'ого');\r\n\t\tstr = str.replace('йа', 'я');\r\n\t\tstr = str.replace('ьа', 'я');\r\n\t\tstr = str.replace('яа', 'и');\r\n\t\tstr = str.replace('оваа', 'овой');\r\n\t\tstr = str.replace('аа', 'ы');\r\n\t\tstr = str.replace('кия', 'кого');\r\n\t\tstr = str.replace('каи', 'кой');\r\n\r\n\t\tstr_array[index] = str;\r\n\t});\r\n\r\n\tstr = str_array.join(' ');\r\n\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Транслитерация текста\r\n */\r\nexport const rusToLatin = (str: string): string => {\r\n\tconst ru: { [index: string]: string } = {\r\n\t\t'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd',\r\n\t\t'е': 'e', 'ё': 'e', 'ж': 'j', 'з': 'z', 'и': 'i',\r\n\t\t'й': 'i', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n',\r\n\t\t'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't',\r\n\t\t'у': 'u', 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch',\r\n\t\t'ш': 'sh', 'щ': 'shch', 'ъ': '', 'ы': 'y', 'ь': '',\r\n\t\t'э': 'e', 'ю': 'u', 'я': 'ya',\r\n\t};\r\n\r\n\tconst str_array = str.split(' ');\r\n\r\n\t$.map(str_array, function (str, index) {\r\n\t\tconst newStr: string[] = [];\r\n\t\tfor (let i = 0; i < str.length; ++i) {\r\n\t\t\tnewStr.push(\r\n\t\t\t\tru[str[i]] || ru[str[i].toLowerCase()] == undefined && str[i] || ru[str[i].toLowerCase()].replace(/^(.)/, function (match) {\r\n\t\t\t\t\treturn match.toUpperCase();\r\n\t\t\t\t}),\r\n\t\t\t);\r\n\t\t}\r\n\r\n\t\tstr_array[index] = newStr.join('');\r\n\t});\r\n\r\n\tstr = str_array.join(' ');\r\n\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Замена html-символов (`&`, `<`, `>`, `\"`, `'`) на имена литер (`&` -> `&amp;`)\r\n */\r\nexport const htmlspecialchars = (str: string): string => {\r\n\tif (typeof (str) == 'string') {\r\n\t\tstr = str\r\n\t\t\t.replace(/&/g, '&amp;')\r\n\t\t\t.replace(/</g, '&lt;')\r\n\t\t\t.replace(/>/g, '&gt;')\r\n\t\t\t.replace(/\"/g, '&quot;')\r\n\t\t\t.replace(/'/g, '&#039;');\r\n\t}\r\n\treturn str;\r\n};\r\n\r\n/**\r\n * Выделить нужное в тексте желтым цветом\r\n * поиск происходит по строке fieldFilter.values[0]\r\n */\r\nexport const highlightHtml = (text: string, fieldFilter: { operator: 'CONTAINS' | 'REGEXP', values: string[] }): string => {\r\n\tlet regExp: RegExp | null = null;\r\n\r\n\tswitch (fieldFilter.operator) {\r\n\t\tcase 'CONTAINS':\r\n\t\tcase 'REGEXP':\r\n\t\t\ttry {\r\n\t\t\t\tlet regExpString = fieldFilter.values[0];\r\n\t\t\t\tif (fieldFilter.operator != 'REGEXP') regExpString = regExpString.replace(/([()\\[\\]])/g, '\\\\$1');\r\n\r\n\t\t\t\tregExp = new RegExp('(' + regExpString + ')', 'gi');\r\n\t\t\t} catch (exception) {\r\n\t\t\t\treturn text;\r\n\t\t\t}\r\n\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\ttext = text.replace(regExp!, '<b class=\"found\">$1</b>');\r\n\r\n\treturn text;\r\n};\r\n\r\n/**\r\n * Пример: logHTTPCodesHundreds => log_http_codes_hundreds\r\n */\r\nexport const camelToSnakeCase = (str: string): string | undefined => {\r\n\treturn str.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)?.map(token => token.toLowerCase()).join('_');\r\n};\r\n\r\n/**\r\n * Получить url изображения флага, по коду страны по стандарту ISO 3166-1 alpha-2\r\n *\r\n * @todo Опубликовать в CDN или брать c публичного CDN\r\n */\r\nexport const genFlagLinkByCountryCode = (countryCode: string) => {\r\n\tconst urlImage = '/cloud/common/flags/' + countryCode.toUpperCase() + '.svg';\r\n\treturn `/controller/file/?src=${urlImage}`;\r\n};\r\n\r\n/**\r\n * Обернуть все ссылки и email в тексте в html-тег `<a>`.\r\n *\r\n * Для email ставиться префикс `mailto:`\r\n */\r\nexport const addLinkTags = (text: string): string => {\r\n\tconst domainRegexp = getDomainRegexp();\r\n\tconst afterDomainRegexp = '(([\\\\/?\\\\w&=%+#;:-]*(\\\\.\\\\w+)?))*';\r\n\r\n\tconst regexpMailto = new RegExp(`(^|[\\\\s>(),])([a-z0-9а-яё_.]+@${domainRegexp}${afterDomainRegexp})`, 'gui');\r\n\ttext = text.replace(regexpMailto, `$1<a href=\"mailto:$2\" target=\"_blank\" rel=\"noopener\">↑[$2]↓</a>`);\r\n\r\n\tconst regexpLink = new RegExp(`(^|[\\\\s>(),])(https?:\\/\\/)?(${domainRegexp}${afterDomainRegexp})`, 'gui');\r\n\ttext = text.replace(regexpLink, `$1<a href=\"√$2$3\" target=\"_blank\" rel=\"nofollow noopener\">$2$3</a>`);\r\n\r\n\ttext = text.replaceAll('√http', 'http');\r\n\ttext = text.replaceAll('√', 'http://');\r\n\ttext = text.replaceAll(/(↑\\[|]↓)/g, '');\r\n\r\n\treturn text;\r\n};\r\n\r\n/**\r\n * Перевести первую букву строки в верхний регистр\r\n */\r\nexport const toCapitalize = (str: string): string => {\r\n\treturn str.charAt(0).toUpperCase() + str.slice(1);\r\n};\r\n\r\n/**\r\n * Получить случайную строку\r\n */\r\nexport const getRandomHash = (length: number = 20): string => {\r\n\tconst l = 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890';\r\n\r\n\tlet result = '';\r\n\tfor (let i = 0; i < length; i++) {\r\n\t\tresult += l[Math.floor(Math.random() * l.length)];\r\n\t}\r\n\r\n\treturn result;\r\n};\r\n"],"names":["genIntHash","string","hash","i","char","isUrl","url","addCommasWhite","n","nStr","x","x1","x2","rgx","nl2br","str","numberWithWord","number","precision","dimension","suffix","k","numberStr","ellipsis","max_length","pos","string1","string2","numberEnding","num","ending0","ending1","ending2","useI18nLang","num100","num10","toRoditPadej","str_array","index","rusToLatin","ru","newStr","match","htmlspecialchars","highlightHtml","text","fieldFilter","regExp","regExpString","camelToSnakeCase","_a","token","genFlagLinkByCountryCode","countryCode","addLinkTags","domainRegexp","getDomainRegexp","afterDomainRegexp","regexpMailto","regexpLink","toCapitalize","getRandomHash","length","result"],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- define(["require","exports"],function(f,r){"use strict";if(typeof s>"u")var s=window.Vue;const a=(e,t=10,l=3e4)=>{if(e())return new Promise((i,o)=>{const n=setTimeout(()=>{clearInterval(u),o("Condition is no resolve: timeout")},l),u=setInterval(()=>{e()||(clearTimeout(n),clearInterval(u),i())},t)})},m=e=>new Promise(t=>{setTimeout(()=>{t()},e)}),c=(e,t=300,l=10)=>{if(e())return new Promise(i=>{const o=setTimeout(()=>{clearInterval(n),i()},t),n=setInterval(()=>{e()||(clearTimeout(o),clearInterval(n),i())},l)})};r.sleep=m,r.sleepWhile=c,r.waitWhile=a,Object.defineProperty(r,Symbol.toStringTag,{value:"Module"})});
2
- //# sourceMappingURL=system.amd.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"system.amd.js","sources":["../../src/core/utils/system.ts"],"sourcesContent":["/**\r\n * Системные утилиты\r\n * @packageDocumentation\r\n */\r\n\r\n/**\r\n * Ждать, пока условие истинно\r\n *\r\n * @param condition - функция, вычисляющая значение\r\n * @param period - период в мс между выполнениями condition()\r\n * @param timeout - максмальное время ожидания в мс\r\n */\r\nexport const waitWhile = (condition: Function, period: number = 10, timeout = 30_000) => {\r\n\tif (!condition()) return;\r\n\r\n\treturn new Promise<void>((resolve, reject) => {\r\n\t\tconst timerTimeout = setTimeout(() => {\r\n\t\t\tclearInterval(timer);\r\n\r\n\t\t\treject('Condition is no resolve: timeout');\r\n\t\t}, timeout);\r\n\r\n\t\tconst timer = setInterval(() => {\r\n\t\t\tif (!condition()) {\r\n\t\t\t\tclearTimeout(timerTimeout);\r\n\t\t\t\tclearInterval(timer);\r\n\r\n\t\t\t\tresolve();\r\n\t\t\t}\r\n\t\t}, period);\r\n\t});\r\n};\r\n\r\n/**\r\n * Приостановить выполнение кода\r\n *\r\n * @param delay - длительность паузы в мс\r\n */\r\nexport const sleep = (delay: number) => {\r\n\treturn new Promise<void>((resolve) => {\r\n\t\tsetTimeout(() => {\r\n\t\t\tresolve();\r\n\t\t}, delay);\r\n\t});\r\n};\r\n\r\n/**\r\n * Приостановить выполнение кода пока условие истинно\r\n * @param condition - функция, вычисляющая значение\r\n * @param delay - время задержки в мс\r\n * @param period - период в мс между выполнениями condition()\r\n */\r\nexport const sleepWhile = (condition: Function, delay: number = 300, period: number = 10) => {\r\n\tif (!condition()) return;\r\n\r\n\treturn new Promise<void>(resolve => {\r\n\t\tconst timerDelay = setTimeout(() => {\r\n\t\t\tclearInterval(timer);\r\n\r\n\t\t\tresolve();\r\n\t\t}, delay);\r\n\r\n\t\tconst timer = setInterval(() => {\r\n\t\t\tif (!condition()) {\r\n\t\t\t\tclearTimeout(timerDelay);\r\n\t\t\t\tclearInterval(timer);\r\n\r\n\t\t\t\tresolve();\r\n\t\t\t}\r\n\t\t}, period);\r\n\t});\r\n};\r\n"],"names":["waitWhile","condition","period","timeout","timerTimeout","timer","resolve","sleep","delay","sleepWhile","timerDelay"],"mappings":"yFAYO,MAAAA,EAAA,CAAAC,EAAAC,EAAA,GAAAC,EAAA,MAAA,CACN,GAAAF,EAAA,6BAGC,MAAAG,EAAA,WAAA,IAAA,4DAMAC,EAAA,YAAA,IAAA,CACCJ,EAAA,qCAICK,EAAA,MAEO,CAAA,CAEX,EAOaC,EAAAC,GACZ,IAAA,QAAAF,GAAA,iBAEEA,EAAA,KACO,CAAA,EAUHG,EAAA,CAAAR,EAAAO,EAAA,IAAAN,EAAA,KAAA,CACN,GAAAD,EAAA,EAEA,OAAA,IAAA,QAAAK,GAAA,CACC,MAAAI,EAAA,WAAA,IAAA,kBAGCJ,EAAA,MAGDD,EAAA,YAAA,IAAA,CACCJ,EAAA,qCAICK,EAAA,MAEO,CAAA,CAEX"}
package/utils/system.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '../core/utils/system'
2
- export {}
package/utils/system.js DELETED
@@ -1,29 +0,0 @@
1
- const o = (e, t = 10, n = 3e4) => {
2
- if (e())
3
- return new Promise((r, s) => {
4
- const i = setTimeout(() => {
5
- clearInterval(l), s("Condition is no resolve: timeout");
6
- }, n), l = setInterval(() => {
7
- e() || (clearTimeout(i), clearInterval(l), r());
8
- }, t);
9
- });
10
- }, a = (e) => new Promise((t) => {
11
- setTimeout(() => {
12
- t();
13
- }, e);
14
- }), m = (e, t = 300, n = 10) => {
15
- if (e())
16
- return new Promise((r) => {
17
- const s = setTimeout(() => {
18
- clearInterval(i), r();
19
- }, t), i = setInterval(() => {
20
- e() || (clearTimeout(s), clearInterval(i), r());
21
- }, n);
22
- });
23
- };
24
- export {
25
- a as sleep,
26
- m as sleepWhile,
27
- o as waitWhile
28
- };
29
- //# sourceMappingURL=system.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"system.js","sources":["../../src/core/utils/system.ts"],"sourcesContent":["/**\r\n * Системные утилиты\r\n * @packageDocumentation\r\n */\r\n\r\n/**\r\n * Ждать, пока условие истинно\r\n *\r\n * @param condition - функция, вычисляющая значение\r\n * @param period - период в мс между выполнениями condition()\r\n * @param timeout - максмальное время ожидания в мс\r\n */\r\nexport const waitWhile = (condition: Function, period: number = 10, timeout = 30_000) => {\r\n\tif (!condition()) return;\r\n\r\n\treturn new Promise<void>((resolve, reject) => {\r\n\t\tconst timerTimeout = setTimeout(() => {\r\n\t\t\tclearInterval(timer);\r\n\r\n\t\t\treject('Condition is no resolve: timeout');\r\n\t\t}, timeout);\r\n\r\n\t\tconst timer = setInterval(() => {\r\n\t\t\tif (!condition()) {\r\n\t\t\t\tclearTimeout(timerTimeout);\r\n\t\t\t\tclearInterval(timer);\r\n\r\n\t\t\t\tresolve();\r\n\t\t\t}\r\n\t\t}, period);\r\n\t});\r\n};\r\n\r\n/**\r\n * Приостановить выполнение кода\r\n *\r\n * @param delay - длительность паузы в мс\r\n */\r\nexport const sleep = (delay: number) => {\r\n\treturn new Promise<void>((resolve) => {\r\n\t\tsetTimeout(() => {\r\n\t\t\tresolve();\r\n\t\t}, delay);\r\n\t});\r\n};\r\n\r\n/**\r\n * Приостановить выполнение кода пока условие истинно\r\n * @param condition - функция, вычисляющая значение\r\n * @param delay - время задержки в мс\r\n * @param period - период в мс между выполнениями condition()\r\n */\r\nexport const sleepWhile = (condition: Function, delay: number = 300, period: number = 10) => {\r\n\tif (!condition()) return;\r\n\r\n\treturn new Promise<void>(resolve => {\r\n\t\tconst timerDelay = setTimeout(() => {\r\n\t\t\tclearInterval(timer);\r\n\r\n\t\t\tresolve();\r\n\t\t}, delay);\r\n\r\n\t\tconst timer = setInterval(() => {\r\n\t\t\tif (!condition()) {\r\n\t\t\t\tclearTimeout(timerDelay);\r\n\t\t\t\tclearInterval(timer);\r\n\r\n\t\t\t\tresolve();\r\n\t\t\t}\r\n\t\t}, period);\r\n\t});\r\n};\r\n"],"names":["waitWhile","condition","period","timeout","resolve","reject","timerTimeout","timer","sleep","delay","sleepWhile","timerDelay"],"mappings":"AAYO,MAAMA,IAAY,CAACC,GAAqBC,IAAiB,IAAIC,IAAU,QAAW;AACpF,MAACF;AAEL,WAAO,IAAI,QAAc,CAACG,GAASC,MAAW;AACvC,YAAAC,IAAe,WAAW,MAAM;AACrC,sBAAcC,CAAK,GAEnBF,EAAO,kCAAkC;AAAA,SACvCF,CAAO,GAEJI,IAAQ,YAAY,MAAM;AAC3B,QAACN,QACJ,aAAaK,CAAY,GACzB,cAAcC,CAAK,GAEXH,EAAA;AAAA,SAEPF,CAAM;AAAA,IAAA,CACT;AACF,GAOaM,IAAQ,CAACC,MACd,IAAI,QAAc,CAACL,MAAY;AACrC,aAAW,MAAM;AACR,IAAAA,EAAA;AAAA,KACNK,CAAK;AAAA,CACR,GASWC,IAAa,CAACT,GAAqBQ,IAAgB,KAAKP,IAAiB,OAAO;AACxF,MAACD;AAEE,WAAA,IAAI,QAAc,CAAWG,MAAA;AAC7B,YAAAO,IAAa,WAAW,MAAM;AACnC,sBAAcJ,CAAK,GAEXH,EAAA;AAAA,SACNK,CAAK,GAEFF,IAAQ,YAAY,MAAM;AAC3B,QAACN,QACJ,aAAaU,CAAU,GACvB,cAAcJ,CAAK,GAEXH,EAAA;AAAA,SAEPF,CAAM;AAAA,IAAA,CACT;AACF;"}
package/utils/url.amd.js DELETED
@@ -1,3 +0,0 @@
1
- define(["require","exports","../.chunks/punycode.es6-C2yitnNb.amd"],function(l,r,c){"use strict";if(typeof C>"u")var C=window.Vue;const d=(e="")=>{if(e=e.replace(/[\r\n]/g," ").trim(),e.indexOf("xn--")===-1)return e;if(e.indexOf("/")===-1)return c.punycode.toUnicode(e);const n=i(e);let o=n.toLowerCase();return o=c.punycode.toUnicode(o),n!==o&&(e=e.replace(n,o)),e},s=e=>{if(e=e.replace(/[\r\n]/g," ").trim(),e.indexOf("/")===-1)return c.punycode.toASCII(e);const n=i(e);let o=n.toLowerCase();return o=c.punycode.toASCII(o),n!==o&&(e=e.replace(n,o)),e},i=e=>e.replace(/(?:^\w+:\/\/)?([^:/]+).*/i,"$1"),h=e=>(e=d(e),e=f(e),e),f=e=>{const n=i(e),o=n.toLowerCase();return n!==o&&(e=e.replace(n,o)),e},m=e=>escape(S(e)),g=e=>w(unescape(e)),S=e=>{e=e.replace(/\r\n/g,`
2
- `);let n="";for(let o=0;o<e.length;o++){const t=e.charCodeAt(o);t<128?n+=String.fromCharCode(t):t>127&&t<2048?(n+=String.fromCharCode(t>>6|192),n+=String.fromCharCode(t&63|128)):(n+=String.fromCharCode(t>>12|224),n+=String.fromCharCode(t>>6&63|128),n+=String.fromCharCode(t&63|128))}return n},w=e=>{let n="",o=0,t=0,a=0;for(;o<e.length;)if(t=e.charCodeAt(o),t<128)n+=String.fromCharCode(t),o++;else if(t>191&&t<224)a=e.charCodeAt(o+1),n+=String.fromCharCode((t&31)<<6|a&63),o+=2;else{a=e.charCodeAt(o+1);let y=e.charCodeAt(o+2);n+=String.fromCharCode((t&15)<<12|(a&63)<<6|y&63),o+=3}return n};r.decode=g,r.encode=m,r.fromPuny=d,r.getHost=i,r.hostToLowerCase=f,r.normalize=h,r.toPuny=s,Object.defineProperty(r,Symbol.toStringTag,{value:"Module"})});
3
- //# sourceMappingURL=url.amd.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"url.amd.js","sources":["../../src/core/utils/url.ts"],"sourcesContent":["/**\r\n * Работа с урлами\r\n * @packageDocumentation\r\n */\r\n\r\nimport punycode from 'punycode';\r\n\r\n/**\r\n * Раскодировать все не ASCII символы в домене URL\r\n * @param url - домен в ASCII формате\r\n * @return домен в Unicode формате\r\n */\r\nexport const fromPuny = (url: string = ''): string => {\r\n\turl = url.replace(/[\\r\\n]/g, ' ').trim();\r\n\r\n\tif (url.indexOf('xn--') === -1) return url;\r\n\tif (url.indexOf('/') === -1) return punycode.toUnicode(url);\r\n\r\n\tconst host = getHost(url);\r\n\r\n\tlet hostNormal = host.toLowerCase();\r\n\thostNormal = punycode.toUnicode(hostNormal);\r\n\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Закодировать все не ASCII символы в домене URL\r\n * @param url - домен в Unicode формате\r\n * @return домен в ASCII формате\r\n */\r\nexport const toPuny = (url: string): string => {\r\n\turl = url.replace(/[\\r\\n]/g, ' ').trim();\r\n\r\n\tif (url.indexOf('/') === -1) return punycode.toASCII(url);\r\n\r\n\tconst host = getHost(url);\r\n\r\n\tlet hostNormal = host.toLowerCase();\r\n\thostNormal = punycode.toASCII(hostNormal);\r\n\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Получить имя хоста из URL\r\n */\r\nexport const getHost = (url: string): string => {\r\n\treturn url.replace(/(?:^\\w+:\\/\\/)?([^:/]+).*/i, '$1');\r\n};\r\n\r\n/**\r\n * Привести url к стандартному виду (не в пуникоде и хост в нижнем регистре)\r\n */\r\nexport const normalize = (url: string): string => {\r\n\turl = fromPuny(url);\r\n\turl = hostToLowerCase(url);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Перевести в url имя хоста в нижний регистр\r\n */\r\nexport const hostToLowerCase = (url: string): string => {\r\n\tconst host = getHost(url);\r\n\tconst hostNormal = host.toLowerCase();\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Получить закодированную строку\r\n */\r\nexport const encode = (string: string): string => { return escape(utf8Encode(string)); };\r\n\r\n/**\r\n * Раскодировать строку, полученную функцией encode\r\n */\r\nexport const decode = (string: string): string => { return utf8Decode(unescape(string)); };\r\n\r\nconst utf8Encode = (string: string): string => {\r\n\tstring = string.replace(/\\r\\n/g, '\\n');\r\n\tlet utftext = '';\r\n\r\n\tfor (let n = 0; n < string.length; n++) {\r\n\t\tconst c = string.charCodeAt(n);\r\n\r\n\t\tif (c < 128) {\r\n\t\t\tutftext += String.fromCharCode(c);\r\n\t\t} else if ((c > 127) && (c < 2048)) {\r\n\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t} else {\r\n\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t}\r\n\t}\r\n\r\n\treturn utftext;\r\n};\r\n\r\n/**\r\n * private method for UTF-8 decoding\r\n */\r\nconst utf8Decode = (utftext: string): string => {\r\n\tlet string = '';\r\n\tlet i = 0;\r\n\tlet c = 0,\r\n\t\tc1 = 0,\r\n\t\tc2 = 0;\r\n\r\n\twhile (i < utftext.length) {\r\n\t\tc = utftext.charCodeAt(i);\r\n\r\n\t\tif (c < 128) {\r\n\t\t\tstring += String.fromCharCode(c);\r\n\t\t\ti++;\r\n\t\t} else if ((c > 191) && (c < 224)) {\r\n\t\t\tc2 = utftext.charCodeAt(i + 1);\r\n\t\t\tstring += String.fromCharCode(((c & 31) << 6) | (c2 & 63));\r\n\t\t\ti += 2;\r\n\t\t} else {\r\n\t\t\tc2 = utftext.charCodeAt(i + 1);\r\n\t\t\tlet c3 = utftext.charCodeAt(i + 2);\r\n\t\t\tstring += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));\r\n\t\t\ti += 3;\r\n\t\t}\r\n\t}\r\n\r\n\treturn string;\r\n};\r\n"],"names":["fromPuny","url","punycode_es6","host","getHost","hostNormal","toPuny","normalize","hostToLowerCase","encode","string","utf8Encode","decode","utf8Decode","n","c","utftext","c2","i"],"mappings":"kIAYa,MAAAA,EAAA,CAAAC,EAAA,KAAA,IACZA,EAAAA,EAAA,QAAA,UAAA,GAAA,EAAA,KAAA,kCAGA,GAAAA,EAAA,QAAA,GAAA,IAAA,GAAA,OAAAC,EAAA,SAAA,UAAAD,CAAA,EAEA,MAAAE,EAAAC,EAAAH,CAAA,EAEA,IAAAI,EAAAF,EAAA,YAAA,EACA,OAAAE,EAAAH,EAAA,SAAA,UAAAG,CAAA,EAEAF,IAAAE,IAAAJ,EAAAA,EAAA,QAAAE,EAAAE,CAAA,GAEAJ,CACD,EAOaK,EAAAL,GAAA,CAGZ,GAFAA,EAAAA,EAAA,QAAA,UAAA,GAAA,EAAA,KAAA,EAEAA,EAAA,QAAA,GAAA,IAAA,GAAA,OAAAC,EAAA,SAAA,QAAAD,CAAA,EAEA,MAAAE,EAAAC,EAAAH,CAAA,EAEA,IAAAI,EAAAF,EAAA,YAAA,EACA,OAAAE,EAAAH,EAAA,SAAA,QAAAG,CAAA,EAEAF,IAAAE,IAAAJ,EAAAA,EAAA,QAAAE,EAAAE,CAAA,GAEAJ,CACD,EAKaG,EAAAH,+CAOAM,EAAAN,IACZA,EAAAD,EAAAC,CAAA,EACAA,EAAAO,EAAAP,CAAA,EAEAA,GAMYO,EAAAP,GAAA,CACZ,MAAAE,EAAAC,EAAAH,CAAA,EACAI,EAAAF,EAAA,YAAA,EACA,OAAAA,IAAAE,IAAAJ,EAAAA,EAAA,QAAAE,EAAAE,CAAA,GAEAJ,CACD,EAKaQ,EAAAC,GAAuC,OAAAC,EAAAD,CAAA,CAAA,EAKvCE,EAAAF,GAAuCG,EAAA,SAAAH,CAAA,CAAA,EAEpDC,EAAAD,GAAA;YAIC,QAAAI,EAAA,EAAAA,EAAAJ,EAAA,OAAAI,IAAA,yBAGCC,EAAA,IACCC,GAAA,OAAA,aAAAD,CAAA,uHAMAC,GAAA,OAAA,aAAAD,GAAA,EAAA,GAAA,GAAA,mCAED,CAGD,OAAAC,GAMDH,EAAAG,GAAA,cAGCD,EAAA,EAAAE,EAAA,EAIA,KAAAC,EAAAF,EAAA,QAGC,GAFAD,EAAAC,EAAA,WAAAE,CAAA,EAEAH,EAAA,IACCL,GAAA,OAAA,aAAAK,CAAA,EACAG,6CAGAR,GAAA,OAAA,cAAAK,EAAA,KAAA,EAAAE,EAAA,EAAA,WACK,mGAKA,CAIP,OAAAP"}
package/utils/url.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '../core/utils/url'
2
- export {}
package/utils/url.js DELETED
@@ -1,48 +0,0 @@
1
- import { p as c } from "../.chunks/punycode.es6-CNI-zL6U.es.js";
2
- const i = (e = "") => {
3
- if (e = e.replace(/[\r\n]/g, " ").trim(), e.indexOf("xn--") === -1) return e;
4
- if (e.indexOf("/") === -1) return c.toUnicode(e);
5
- const t = a(e);
6
- let o = t.toLowerCase();
7
- return o = c.toUnicode(o), t !== o && (e = e.replace(t, o)), e;
8
- }, m = (e) => {
9
- if (e = e.replace(/[\r\n]/g, " ").trim(), e.indexOf("/") === -1) return c.toASCII(e);
10
- const t = a(e);
11
- let o = t.toLowerCase();
12
- return o = c.toASCII(o), t !== o && (e = e.replace(t, o)), e;
13
- }, a = (e) => e.replace(/(?:^\w+:\/\/)?([^:/]+).*/i, "$1"), g = (e) => (e = i(e), e = C(e), e), C = (e) => {
14
- const t = a(e), o = t.toLowerCase();
15
- return t !== o && (e = e.replace(t, o)), e;
16
- }, p = (e) => escape(d(e)), S = (e) => f(unescape(e)), d = (e) => {
17
- e = e.replace(/\r\n/g, `
18
- `);
19
- let t = "";
20
- for (let o = 0; o < e.length; o++) {
21
- const r = e.charCodeAt(o);
22
- r < 128 ? t += String.fromCharCode(r) : r > 127 && r < 2048 ? (t += String.fromCharCode(r >> 6 | 192), t += String.fromCharCode(r & 63 | 128)) : (t += String.fromCharCode(r >> 12 | 224), t += String.fromCharCode(r >> 6 & 63 | 128), t += String.fromCharCode(r & 63 | 128));
23
- }
24
- return t;
25
- }, f = (e) => {
26
- let t = "", o = 0, r = 0, n = 0;
27
- for (; o < e.length; )
28
- if (r = e.charCodeAt(o), r < 128)
29
- t += String.fromCharCode(r), o++;
30
- else if (r > 191 && r < 224)
31
- n = e.charCodeAt(o + 1), t += String.fromCharCode((r & 31) << 6 | n & 63), o += 2;
32
- else {
33
- n = e.charCodeAt(o + 1);
34
- let s = e.charCodeAt(o + 2);
35
- t += String.fromCharCode((r & 15) << 12 | (n & 63) << 6 | s & 63), o += 3;
36
- }
37
- return t;
38
- };
39
- export {
40
- S as decode,
41
- p as encode,
42
- i as fromPuny,
43
- a as getHost,
44
- C as hostToLowerCase,
45
- g as normalize,
46
- m as toPuny
47
- };
48
- //# sourceMappingURL=url.js.map
package/utils/url.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"url.js","sources":["../../src/core/utils/url.ts"],"sourcesContent":["/**\r\n * Работа с урлами\r\n * @packageDocumentation\r\n */\r\n\r\nimport punycode from 'punycode';\r\n\r\n/**\r\n * Раскодировать все не ASCII символы в домене URL\r\n * @param url - домен в ASCII формате\r\n * @return домен в Unicode формате\r\n */\r\nexport const fromPuny = (url: string = ''): string => {\r\n\turl = url.replace(/[\\r\\n]/g, ' ').trim();\r\n\r\n\tif (url.indexOf('xn--') === -1) return url;\r\n\tif (url.indexOf('/') === -1) return punycode.toUnicode(url);\r\n\r\n\tconst host = getHost(url);\r\n\r\n\tlet hostNormal = host.toLowerCase();\r\n\thostNormal = punycode.toUnicode(hostNormal);\r\n\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Закодировать все не ASCII символы в домене URL\r\n * @param url - домен в Unicode формате\r\n * @return домен в ASCII формате\r\n */\r\nexport const toPuny = (url: string): string => {\r\n\turl = url.replace(/[\\r\\n]/g, ' ').trim();\r\n\r\n\tif (url.indexOf('/') === -1) return punycode.toASCII(url);\r\n\r\n\tconst host = getHost(url);\r\n\r\n\tlet hostNormal = host.toLowerCase();\r\n\thostNormal = punycode.toASCII(hostNormal);\r\n\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Получить имя хоста из URL\r\n */\r\nexport const getHost = (url: string): string => {\r\n\treturn url.replace(/(?:^\\w+:\\/\\/)?([^:/]+).*/i, '$1');\r\n};\r\n\r\n/**\r\n * Привести url к стандартному виду (не в пуникоде и хост в нижнем регистре)\r\n */\r\nexport const normalize = (url: string): string => {\r\n\turl = fromPuny(url);\r\n\turl = hostToLowerCase(url);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Перевести в url имя хоста в нижний регистр\r\n */\r\nexport const hostToLowerCase = (url: string): string => {\r\n\tconst host = getHost(url);\r\n\tconst hostNormal = host.toLowerCase();\r\n\tif (host !== hostNormal) url = url.replace(host, hostNormal);\r\n\r\n\treturn url;\r\n};\r\n\r\n/**\r\n * Получить закодированную строку\r\n */\r\nexport const encode = (string: string): string => { return escape(utf8Encode(string)); };\r\n\r\n/**\r\n * Раскодировать строку, полученную функцией encode\r\n */\r\nexport const decode = (string: string): string => { return utf8Decode(unescape(string)); };\r\n\r\nconst utf8Encode = (string: string): string => {\r\n\tstring = string.replace(/\\r\\n/g, '\\n');\r\n\tlet utftext = '';\r\n\r\n\tfor (let n = 0; n < string.length; n++) {\r\n\t\tconst c = string.charCodeAt(n);\r\n\r\n\t\tif (c < 128) {\r\n\t\t\tutftext += String.fromCharCode(c);\r\n\t\t} else if ((c > 127) && (c < 2048)) {\r\n\t\t\tutftext += String.fromCharCode((c >> 6) | 192);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t} else {\r\n\t\t\tutftext += String.fromCharCode((c >> 12) | 224);\r\n\t\t\tutftext += String.fromCharCode(((c >> 6) & 63) | 128);\r\n\t\t\tutftext += String.fromCharCode((c & 63) | 128);\r\n\t\t}\r\n\t}\r\n\r\n\treturn utftext;\r\n};\r\n\r\n/**\r\n * private method for UTF-8 decoding\r\n */\r\nconst utf8Decode = (utftext: string): string => {\r\n\tlet string = '';\r\n\tlet i = 0;\r\n\tlet c = 0,\r\n\t\tc1 = 0,\r\n\t\tc2 = 0;\r\n\r\n\twhile (i < utftext.length) {\r\n\t\tc = utftext.charCodeAt(i);\r\n\r\n\t\tif (c < 128) {\r\n\t\t\tstring += String.fromCharCode(c);\r\n\t\t\ti++;\r\n\t\t} else if ((c > 191) && (c < 224)) {\r\n\t\t\tc2 = utftext.charCodeAt(i + 1);\r\n\t\t\tstring += String.fromCharCode(((c & 31) << 6) | (c2 & 63));\r\n\t\t\ti += 2;\r\n\t\t} else {\r\n\t\t\tc2 = utftext.charCodeAt(i + 1);\r\n\t\t\tlet c3 = utftext.charCodeAt(i + 2);\r\n\t\t\tstring += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));\r\n\t\t\ti += 3;\r\n\t\t}\r\n\t}\r\n\r\n\treturn string;\r\n};\r\n"],"names":["fromPuny","url","punycode","host","getHost","hostNormal","toPuny","normalize","hostToLowerCase","encode","string","utf8Encode","decode","utf8Decode","utftext","n","c","i","c2","c3"],"mappings":";AAYa,MAAAA,IAAW,CAACC,IAAc,OAAe;AAGrD,MAFAA,IAAMA,EAAI,QAAQ,WAAW,GAAG,EAAE,KAAK,GAEnCA,EAAI,QAAQ,MAAM,MAAM,GAAW,QAAAA;AACnC,MAAAA,EAAI,QAAQ,GAAG,MAAM,GAAW,QAAAC,EAAS,UAAUD,CAAG;AAEpD,QAAAE,IAAOC,EAAQH,CAAG;AAEpB,MAAAI,IAAaF,EAAK,YAAY;AACrB,SAAAE,IAAAH,EAAS,UAAUG,CAAU,GAEtCF,MAASE,MAAYJ,IAAMA,EAAI,QAAQE,GAAME,CAAU,IAEpDJ;AACR,GAOaK,IAAS,CAACL,MAAwB;AAG1C,MAFJA,IAAMA,EAAI,QAAQ,WAAW,GAAG,EAAE,KAAK,GAEnCA,EAAI,QAAQ,GAAG,MAAM,GAAW,QAAAC,EAAS,QAAQD,CAAG;AAElD,QAAAE,IAAOC,EAAQH,CAAG;AAEpB,MAAAI,IAAaF,EAAK,YAAY;AACrB,SAAAE,IAAAH,EAAS,QAAQG,CAAU,GAEpCF,MAASE,MAAYJ,IAAMA,EAAI,QAAQE,GAAME,CAAU,IAEpDJ;AACR,GAKaG,IAAU,CAACH,MAChBA,EAAI,QAAQ,6BAA6B,IAAI,GAMxCM,IAAY,CAACN,OACzBA,IAAMD,EAASC,CAAG,GAClBA,IAAMO,EAAgBP,CAAG,GAElBA,IAMKO,IAAkB,CAACP,MAAwB;AACjD,QAAAE,IAAOC,EAAQH,CAAG,GAClBI,IAAaF,EAAK,YAAY;AACpC,SAAIA,MAASE,MAAYJ,IAAMA,EAAI,QAAQE,GAAME,CAAU,IAEpDJ;AACR,GAKaQ,IAAS,CAACC,MAAoC,OAAOC,EAAWD,CAAM,CAAC,GAKvEE,IAAS,CAACF,MAAoCG,EAAW,SAASH,CAAM,CAAC,GAEhFC,IAAa,CAACD,MAA2B;AACrC,EAAAA,IAAAA,EAAO,QAAQ,SAAS;AAAA,CAAI;AACrC,MAAII,IAAU;AAEd,WAASC,IAAI,GAAGA,IAAIL,EAAO,QAAQK,KAAK;AACjC,UAAAC,IAAIN,EAAO,WAAWK,CAAC;AAE7B,IAAIC,IAAI,MACIF,KAAA,OAAO,aAAaE,CAAC,IACrBA,IAAI,OAASA,IAAI,QAC5BF,KAAW,OAAO,aAAcE,KAAK,IAAK,GAAG,GAC7CF,KAAW,OAAO,aAAcE,IAAI,KAAM,GAAG,MAE7CF,KAAW,OAAO,aAAcE,KAAK,KAAM,GAAG,GAC9CF,KAAW,OAAO,aAAeE,KAAK,IAAK,KAAM,GAAG,GACpDF,KAAW,OAAO,aAAcE,IAAI,KAAM,GAAG;AAAA,EAC9C;AAGM,SAAAF;AACR,GAKMD,IAAa,CAACC,MAA4B;AAC/C,MAAIJ,IAAS,IACTO,IAAI,GACJD,IAAI,GAEPE,IAAK;AAEC,SAAAD,IAAIH,EAAQ;AAGlB,QAFIE,IAAAF,EAAQ,WAAWG,CAAC,GAEpBD,IAAI;AACG,MAAAN,KAAA,OAAO,aAAaM,CAAC,GAC/BC;AAAA,aACWD,IAAI,OAASA,IAAI;AACvB,MAAAE,IAAAJ,EAAQ,WAAWG,IAAI,CAAC,GAC7BP,KAAU,OAAO,cAAeM,IAAI,OAAO,IAAME,IAAK,EAAG,GACpDD,KAAA;AAAA,SACC;AACD,MAAAC,IAAAJ,EAAQ,WAAWG,IAAI,CAAC;AAC7B,UAAIE,IAAKL,EAAQ,WAAWG,IAAI,CAAC;AACvB,MAAAP,KAAA,OAAO,cAAeM,IAAI,OAAO,MAAQE,IAAK,OAAO,IAAMC,IAAK,EAAG,GACxEF,KAAA;AAAA,IAAA;AAIA,SAAAP;AACR;"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes