@topvisor/ui 0.0.34 → 0.0.35

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 (267) hide show
  1. package/.storybook/TopTheme.js +82 -0
  2. package/.storybook/TopThemeManager.js +44 -0
  3. package/.storybook/main.ts +43 -0
  4. package/.storybook/manager.ts +28 -0
  5. package/.storybook/preview-head.html +16 -0
  6. package/.storybook/preview.ts +48 -0
  7. package/.storybook/vue/coreDecorator.ts +19 -0
  8. package/.storybook/vue/vModelDecorator.ts +27 -0
  9. package/.vscode/extensions.json +11 -0
  10. package/.vscode/keybindings.example.json +121 -0
  11. package/.vscode/settings.json +46 -0
  12. package/Dockerfile +3 -0
  13. package/NPM.md +25 -0
  14. package/PUBLISH.md +18 -0
  15. package/README.md +19 -52
  16. package/STORYBOOK.md +27 -0
  17. package/USE_IN_PROJECT.md +29 -0
  18. package/build/afterBuild.sh +12 -0
  19. package/build/cssModules.ts +39 -0
  20. package/build/plugin/amdFix.ts +46 -0
  21. package/build/rollup.config.ts +18 -0
  22. package/nbproject/project.properties +11 -0
  23. package/nbproject/project.xml +9 -0
  24. package/package.json +68 -19
  25. package/public/README.md +63 -0
  26. package/src/components/common/common.ts +1 -0
  27. package/src/components/common/icon/icon.ts +4 -0
  28. package/src/components/common/icon/icon.vue +15 -0
  29. package/src/components/component.ts +133 -0
  30. package/src/components/forms/button/button.stories.ts +112 -0
  31. package/src/components/forms/button/button.ts +51 -0
  32. package/src/components/forms/button/button.vue +75 -0
  33. package/src/components/forms/button/stories/README.md +35 -0
  34. package/src/components/forms/button/stories/overview.vue +33 -0
  35. package/src/components/forms/button/style/button.css +124 -0
  36. package/src/components/forms/button/style/style-outline.css +42 -0
  37. package/src/components/forms/button/style/style-soft.css +31 -0
  38. package/src/components/forms/button/style/style-transparent.css +35 -0
  39. package/src/components/forms/checkbox/checkbox.stories.ts +33 -0
  40. package/src/components/forms/checkbox/checkbox.ts +23 -0
  41. package/src/components/forms/checkbox/checkbox.vue +135 -0
  42. package/src/components/forms/checkbox/stories/overview.vue +171 -0
  43. package/src/components/forms/controlLabel/controlLabel.stories.ts +38 -0
  44. package/src/components/forms/controlLabel/controlLabel.ts +4 -0
  45. package/src/components/forms/controlLabel/controlLabel.vue +48 -0
  46. package/src/components/forms/forms.ts +10 -0
  47. package/src/components/forms/helpers.ts +10 -0
  48. package/src/components/forms/hint/hint.stories.ts +46 -0
  49. package/src/components/forms/hint/hint.ts +8 -0
  50. package/src/components/forms/hint/hint.vue +32 -0
  51. package/src/components/forms/input/input.stories.ts +31 -0
  52. package/src/components/forms/input/input.ts +34 -0
  53. package/src/components/forms/input/input.vue +170 -0
  54. package/src/components/forms/input/stories/overview.vue +61 -0
  55. package/src/components/forms/inputDate/datepicker.css +233 -0
  56. package/src/components/forms/inputDate/datepicker.ts +101 -0
  57. package/src/components/forms/inputDate/inputDate.stories.ts +41 -0
  58. package/src/components/forms/inputDate/inputDate.ts +4 -0
  59. package/src/components/forms/inputDate/inputDate.vue +127 -0
  60. package/src/components/forms/inputDate/stories/overview.vue +35 -0
  61. package/src/components/forms/radio/radio.stories.ts +34 -0
  62. package/src/components/forms/radio/radio.ts +15 -0
  63. package/src/components/forms/radio/radio.vue +107 -0
  64. package/src/components/forms/radio/stories/overview.vue +79 -0
  65. package/src/components/forms/select/select.stories.ts +34 -0
  66. package/src/components/forms/select/select.ts +36 -0
  67. package/src/components/forms/select/select.vue +253 -0
  68. package/src/components/forms/select/stories/exampleOptions.ts +71 -0
  69. package/src/components/forms/select/stories/overview.vue +60 -0
  70. package/src/components/forms/switcher/stories/overview.vue +139 -0
  71. package/src/components/forms/switcher/switcher.stories.ts +33 -0
  72. package/src/components/forms/switcher/switcher.ts +22 -0
  73. package/src/components/forms/switcher/switcher.vue +113 -0
  74. package/src/components/forms/textarea/stories/overview.vue +62 -0
  75. package/src/components/forms/textarea/textarea.stories.ts +33 -0
  76. package/src/components/forms/textarea/textarea.ts +38 -0
  77. package/src/components/forms/textarea/textarea.vue +119 -0
  78. package/src/components/formsExt/editArea/editArea.stories.ts +72 -0
  79. package/src/components/formsExt/editArea/editArea.ts +25 -0
  80. package/src/components/formsExt/editArea/editArea.vue +172 -0
  81. package/src/components/formsExt/editArea/stories/README.md +17 -0
  82. package/src/components/formsExt/editArea/stories/overview.vue +66 -0
  83. package/src/components/formsExt/editInput/editInput.stories.ts +36 -0
  84. package/src/components/formsExt/editInput/editInput.ts +20 -0
  85. package/src/components/formsExt/editInput/editInput.vue +57 -0
  86. package/src/components/formsExt/editInput/stories/overview.vue +54 -0
  87. package/src/components/formsExt/formsExt.ts +3 -0
  88. package/src/components/formsExt/radioGroup/radioGroup.stories.ts +51 -0
  89. package/src/components/formsExt/radioGroup/radioGroup.ts +28 -0
  90. package/src/components/formsExt/radioGroup/radioGroup.vue +143 -0
  91. package/src/components/formsExt/radioGroup/stories/overview.vue +78 -0
  92. package/src/components/formsExt/radioGroup/styles/top-scrollBar.css +52 -0
  93. package/src/components/helper.js +10 -0
  94. package/src/components/helpersStories.ts +151 -0
  95. package/src/components/popup/lib/popup.globalEvents.js +205 -0
  96. package/src/components/popup/lib/popup.js +702 -0
  97. package/src/components/popup/lib/worker.globalEvents.js +78 -0
  98. package/src/components/popup/lib/worker.js +232 -0
  99. package/src/components/popup/popup/listItem.vue +42 -0
  100. package/src/components/popup/popup/opener.vue +74 -0
  101. package/src/components/popup/popup/popup.stories.ts +68 -0
  102. package/src/components/popup/popup/popup.ts +93 -0
  103. package/src/components/popup/popup/popup.vue +95 -0
  104. package/src/components/popup/popup/stories/README.md +34 -0
  105. package/src/components/popup/popup/stories/listItems.vue +44 -0
  106. package/src/components/popup/popup/stories/listSubItems.vue +52 -0
  107. package/src/components/popup/popup/stories/overview.vue +208 -0
  108. package/src/components/popup/popup/style/popup.css +243 -0
  109. package/src/components/popup/popup/style/popup.m.css +71 -0
  110. package/src/components/popup/popup/style/popup.pc.css +28 -0
  111. package/src/components/popup/popup.ts +3 -0
  112. package/src/components/popup/worker.ts +1 -0
  113. package/src/components/tabs/tabs/content.vue +24 -0
  114. package/src/components/tabs/tabs/stories/README.md +10 -0
  115. package/src/components/tabs/tabs/tab.vue +52 -0
  116. package/src/components/tabs/tabs/tabs.stories.ts +171 -0
  117. package/src/components/tabs/tabs/tabs.ts +22 -0
  118. package/src/components/tabs/tabs/tabs.vue +64 -0
  119. package/src/components/tabs/tabs.ts +3 -0
  120. package/src/core/base/Colors.stories.ts +15 -0
  121. package/src/core/base/Layout.stories.ts +15 -0
  122. package/src/core/base/Properties.stories.ts +15 -0
  123. package/src/core/base/base.mdx +21 -0
  124. package/src/core/core/core.ts +144 -0
  125. package/src/core/core/events.ts +54 -0
  126. package/src/core/core/options.ts +15 -0
  127. package/src/core/core/state.ts +44 -0
  128. package/src/core/directives/tooltip.ts +55 -0
  129. package/src/core/theme/Colors.stories.ts +15 -0
  130. package/src/core/theme/Properties.stories.ts +15 -0
  131. package/src/core/theme/theme.mdx +15 -0
  132. package/src/core/utils/date.ts +164 -0
  133. package/src/core/utils/device.ts +48 -0
  134. package/src/core/utils/dom.ts +185 -0
  135. package/src/core//320/235/320/260/320/261/320/276/321/200 /320/270/320/272/320/276/320/275/320/276/320/272/gallery.vue" +72 -0
  136. package/src/core//320/235/320/260/320/261/320/276/321/200 /320/270/320/272/320/276/320/275/320/276/320/272//320/235/320/260/320/261/320/276/321/200 /320/270/320/272/320/276/320/275/320/276/320/272.mdx" +31 -0
  137. package/src/core//320/235/320/260/320/261/320/276/321/200 /320/270/320/272/320/276/320/275/320/276/320/272//320/235/320/260/320/261/320/276/321/200 /320/270/320/272/320/276/320/275/320/276/320/272.stories.ts" +14 -0
  138. package/src/docs/CSS/FAQ.mdx +43 -0
  139. package/src/docs/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" +156 -0
  140. package/src/docs/CSS//320/237/320/265/321/200/320/265/320/274/320/265/320/275/320/275/321/213/320/265.mdx +47 -0
  141. package/src/docs/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
  142. package/src/docs/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" +49 -0
  143. package/src/docs/CSS//320/241/321/202/320/270/320/273/320/270.md +53 -0
  144. package/src/docs/CSS//320/241/321/202/320/270/320/273/320/270.mdx +4 -0
  145. package/src/docs/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" +53 -0
  146. package/src/docs/ROADMAP.md +17 -0
  147. package/src/docs/Roadmap.mdx +4 -0
  148. package/src/docs//320/222/320/262/320/265/320/264/320/265/320/275/320/270/320/265 /320/262 Storybook.mdx" +323 -0
  149. package/src/docs//320/232/320/276/320/274/320/277/320/276/320/275/320/265/320/275/321/202/321/213.mdx +20 -0
  150. package/src/docs//320/237/320/276/320/273/320/265/320/267/320/275/320/260/321/217 /320/270/320/275/321/204/320/276/321/200/320/274/320/260/321/206/320/270/321/217.mdx" +8 -0
  151. package/src/docs//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/IDE.mdx" +42 -0
  152. package/src/docs//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/233/320/270/320/275/321/202/320/265/321/200.mdx" +72 -0
  153. package/src/docs//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
  154. package/src/globals.d.ts +1 -0
  155. package/{icomoon → src/resources/icomoon}/demo-files/demo.css +161 -161
  156. package/{icomoon → src/resources/icomoon}/demo-files/demo.js +30 -30
  157. package/{icomoon → src/resources/icomoon}/demo.html +2945 -2945
  158. package/{icomoon → src/resources/icomoon}/fonts/Topvisor-2.svg +232 -232
  159. package/{icomoon → src/resources/icomoon}/style.css +647 -647
  160. package/src/resources/styles/core/colors.css +204 -0
  161. package/src/resources/styles/core/components.css +70 -0
  162. package/src/resources/styles/core/core.ts +10 -0
  163. package/src/resources/styles/core/forms/clear.css +19 -0
  164. package/src/resources/styles/core/forms/controls.css +20 -0
  165. package/src/resources/styles/core/forms/focusable.css +26 -0
  166. package/src/resources/styles/core/forms/forms.css +100 -0
  167. package/src/resources/styles/core/icon.css +58 -0
  168. package/src/resources/styles/core/layout.css +40 -0
  169. package/src/resources/styles/core/modifiers/as.css +9 -0
  170. package/src/resources/styles/core/modifiers/ellipsis.css +18 -0
  171. package/src/resources/styles/core/modifiers/modifiers.css +81 -0
  172. package/src/resources/styles/core/modifiers/only.css +19 -0
  173. package/src/resources/styles/core/select.css +16 -0
  174. package/src/resources/styles/jquery-ui.min.css +6 -0
  175. package/src/resources/styles/storybook.css +11 -0
  176. package/src/resources/styles/themes/dark/theme.css +139 -0
  177. package/src/resources/styles/themes/dark.ts +1 -0
  178. package/src/resources/styles/themes/light/theme.css +139 -0
  179. package/src/resources/styles/themes/light.ts +1 -0
  180. package/src/storybook/components/color.vue +45 -0
  181. package/src/storybook/components/colors.vue +34 -0
  182. package/src/storybook/components/icomoon.ts +38 -0
  183. package/src/storybook/components/properties.vue +82 -0
  184. package/src/storybook/resources/accessibility.png +0 -0
  185. package/src/storybook/resources/accessibility.svg +5 -0
  186. package/src/storybook/resources/addon-library.png +0 -0
  187. package/src/storybook/resources/assets.png +0 -0
  188. package/src/storybook/resources/context.png +0 -0
  189. package/src/storybook/resources/discord.svg +15 -0
  190. package/src/storybook/resources/docs.png +0 -0
  191. package/src/storybook/resources/figma-plugin.png +0 -0
  192. package/src/storybook/resources/github.svg +3 -0
  193. package/src/storybook/resources/share.png +0 -0
  194. package/src/storybook/resources/styling.png +0 -0
  195. package/src/storybook/resources/testing.png +0 -0
  196. package/src/storybook/resources/theming.png +0 -0
  197. package/src/storybook/resources/tutorials.svg +12 -0
  198. package/src/storybook/resources/youtube.svg +4 -0
  199. package/src//320/224/320/276/320/261/321/200/320/276 /320/277/320/276/320/266/320/260/320/273/320/276/320/262/320/260/321/202/321/214.mdx" +3 -0
  200. package/tsconfig.json +62 -0
  201. package/vite.config.ts +91 -0
  202. package/.chunks/datepicker-0b648b9f.es.js +0 -275
  203. package/.chunks/datepicker-0b648b9f.es.js.map +0 -1
  204. package/.chunks/datepicker-0e9a0541.amd.js +0 -234
  205. package/.chunks/datepicker-0e9a0541.amd.js.map +0 -1
  206. package/.chunks/forms-02202302.amd.js +0 -3
  207. package/.chunks/forms-02202302.amd.js.map +0 -1
  208. package/.chunks/forms-eb00d0c1.es.js +0 -946
  209. package/.chunks/forms-eb00d0c1.es.js.map +0 -1
  210. package/.chunks/popup-6f73b4b2.es.js +0 -700
  211. package/.chunks/popup-6f73b4b2.es.js.map +0 -1
  212. package/.chunks/popup-e1f34511.amd.js +0 -341
  213. package/.chunks/popup-e1f34511.amd.js.map +0 -1
  214. package/common/common.amd.js +0 -2
  215. package/common/common.amd.js.map +0 -1
  216. package/common/common.js +0 -2
  217. package/common/common.js.map +0 -1
  218. package/core/core.amd.js +0 -2
  219. package/core/core.amd.js.map +0 -1
  220. package/core/core.js +0 -6
  221. package/core/core.js.map +0 -1
  222. package/core.css +0 -1
  223. package/dark.css +0 -1
  224. package/forms/forms.amd.js +0 -2
  225. package/forms/forms.amd.js.map +0 -1
  226. package/forms/forms.js +0 -15
  227. package/forms/forms.js.map +0 -1
  228. package/forms/helpers.amd.js +0 -2
  229. package/forms/helpers.amd.js.map +0 -1
  230. package/forms/helpers.js +0 -9
  231. package/forms/helpers.js.map +0 -1
  232. package/forms.css +0 -1
  233. package/formsExt/formsExt.amd.js +0 -3
  234. package/formsExt/formsExt.amd.js.map +0 -1
  235. package/formsExt/formsExt.js +0 -152
  236. package/formsExt/formsExt.js.map +0 -1
  237. package/formsExt.css +0 -1
  238. package/light.css +0 -1
  239. package/popup/popup.amd.js +0 -3
  240. package/popup/popup.amd.js.map +0 -1
  241. package/popup/popup.js +0 -144
  242. package/popup/popup.js.map +0 -1
  243. package/popup/worker.amd.js +0 -2
  244. package/popup/worker.amd.js.map +0 -1
  245. package/popup/worker.js +0 -154
  246. package/popup/worker.js.map +0 -1
  247. package/popup.css +0 -1
  248. package/tabs/tabs.amd.js +0 -3
  249. package/tabs/tabs.amd.js.map +0 -1
  250. package/tabs/tabs.js +0 -97
  251. package/tabs/tabs.js.map +0 -1
  252. package/tabs.css +0 -1
  253. package/utils/date.amd.js +0 -2
  254. package/utils/date.amd.js.map +0 -1
  255. package/utils/date.js +0 -6
  256. package/utils/date.js.map +0 -1
  257. package/utils/device.amd.js +0 -2
  258. package/utils/device.amd.js.map +0 -1
  259. package/utils/device.js +0 -6
  260. package/utils/device.js.map +0 -1
  261. package/utils/dom.amd.js +0 -2
  262. package/utils/dom.amd.js.map +0 -1
  263. package/utils/dom.js +0 -64
  264. package/utils/dom.js.map +0 -1
  265. /package/{icomoon → src/resources/icomoon}/fonts/Topvisor-2.ttf +0 -0
  266. /package/{icomoon → src/resources/icomoon}/fonts/Topvisor-2.woff +0 -0
  267. /package/{icomoon → src/resources/icomoon}/selection.json +0 -0
@@ -0,0 +1,233 @@
1
+ /* ui-datepicker */
2
+ .ui-datepicker {
3
+ --datepicker-day-color: #FFF;
4
+ --datepicker-day-color-hover: var(--color-blue-150);
5
+ --datepicker-selected-color: var(--color-blue-500);
6
+ --datepicker-selected-color-hover: var(--color-blue-550);
7
+ --datepicker-range-color: var(--color-blue-100);
8
+ --datepicker-range-color-hover: var(--color-blue-150);
9
+
10
+ user-select: none;
11
+ width: auto;
12
+ padding: 0;
13
+ }
14
+
15
+ .ui-datepicker:before,
16
+ .ui-datepicker:after {
17
+ display: none;
18
+ }
19
+
20
+ /* на странице */
21
+ .ui-datepicker-inline {
22
+ display: inline-block !important;
23
+ }
24
+
25
+ /* в popup */
26
+ .ui-datepicker:not(.ui-datepicker-inline) {
27
+ border-radius: 8px;
28
+ background: var(--content-background-color);
29
+ box-shadow: var(--top-shadow);
30
+ z-index: 10000000 !important;
31
+ padding: 8px;
32
+ }
33
+
34
+ .ui-datepicker a {
35
+ text-decoration: none !important;
36
+ }
37
+
38
+ .ui-datepicker option {
39
+ color: var(--color-text);
40
+ font-size: 14px;
41
+ }
42
+
43
+ .ui-datepicker-header {
44
+ padding: 0 !important;
45
+ margin: 0 0 18px 0;
46
+ display: flex;
47
+ align-items: center;
48
+ }
49
+
50
+ .ui-datepicker-header > * {
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ }
55
+
56
+ .ui-datepicker-title {
57
+ width: 100% !important;
58
+ height: 24px;
59
+ margin: 0 !important;
60
+ }
61
+
62
+ .ui-datepicker-month,
63
+ .ui-datepicker-year {
64
+ outline: none !important;
65
+ width: auto !important;
66
+ border: none;
67
+ padding: 0;
68
+ margin: 0 6px !important;
69
+ text-align: center;
70
+ font-size: 16px !important;
71
+ }
72
+
73
+ .ui-datepicker-month {
74
+ color: var(--color-text);
75
+ }
76
+
77
+ .ui-datepicker-year {
78
+ color: var(--color-gray-300);
79
+ }
80
+
81
+ /* select.ui-datepicker-month,
82
+ select.ui-datepicker-year{ cursor: pointer; color: var(--color-blue-500); }*/
83
+ select.ui-datepicker-month,
84
+ select.ui-datepicker-year {
85
+ cursor: pointer;
86
+ }
87
+
88
+ .ui-datepicker-prev,
89
+ .ui-datepicker-next {
90
+ cursor: pointer;
91
+ width: 24px !important;
92
+ height: 24px !important;
93
+ font-size: 24px;
94
+ font-family: 'Topvisor-2';
95
+ position: static !important;
96
+ }
97
+
98
+ .ui-datepicker-prev:before {
99
+ content: '';
100
+ }
101
+
102
+ .ui-datepicker-next {
103
+ order: 1;
104
+ }
105
+
106
+ .ui-datepicker-next:before {
107
+ content: '';
108
+ }
109
+
110
+ .ui-datepicker-prev > *,
111
+ .ui-datepicker-next > * {
112
+ display: none !important;
113
+ }
114
+
115
+ .ui-datepicker thead th {
116
+ width: auto !important;
117
+ padding: 0 !important;
118
+ color: #B3BEBF;
119
+ font-size: 14px;
120
+ font-weight: 400 !important;
121
+ }
122
+
123
+ .ui-datepicker table {
124
+ margin: 0 !important;
125
+ font-size: 14px;
126
+ }
127
+
128
+ .ui-datepicker td {
129
+ background: none;
130
+ padding: 0 !important;
131
+ }
132
+
133
+ .ui-datepicker td span,
134
+ .ui-datepicker td a {
135
+ border-radius: 8px;
136
+ border: none;
137
+ min-width: 32px;
138
+ height: 32px;
139
+ padding: 0;
140
+ margin: 1px;
141
+ color: var(--color-text) !important;
142
+ line-height: 32px;
143
+ text-align: center;
144
+ position: relative;
145
+ display: block;
146
+ }
147
+
148
+ /* обычные даты */
149
+ .ui-datepicker td a {
150
+ background: var(--datepicker-day-color);
151
+ }
152
+
153
+ .ui-datepicker td a:hover {
154
+ background: var(--datepicker-day-color-hover);
155
+ }
156
+
157
+ /* текущий день */
158
+ td.ui-datepicker-today span,
159
+ td.ui-datepicker-today a {
160
+ background: none;
161
+ position: relative;
162
+ }
163
+
164
+ /* выбранные даты */
165
+ .ui-datepicker td.selected a {
166
+ background: var(--datepicker-range-color);
167
+ padding-right: 0;
168
+ padding-left: 1px;
169
+ margin-right: 1px;
170
+ margin-left: 0;
171
+ }
172
+
173
+ .ui-datepicker td.selected a:hover {
174
+ background: var(--datepicker-range-color-hover);
175
+ }
176
+
177
+ .ui-datepicker td.selected:not(.selected-start):not(:first-child):not(.first-of-month) a {
178
+ border-top-left-radius: 0;
179
+ border-bottom-left-radius: 0;
180
+ padding-left: 1px;
181
+ margin-left: 0;
182
+ }
183
+
184
+ .ui-datepicker td.selected:not(.selected-end):not(:last-child):not(.last-of-month) a {
185
+ border-top-right-radius: 0;
186
+ border-bottom-right-radius: 0;
187
+ padding-right: 1px;
188
+ margin-right: 0;
189
+ }
190
+
191
+ .ui-datepicker td.selected-start a,
192
+ .ui-datepicker td.selected-end a,
193
+ .ui-datepicker td.ui-datepicker-current-day a {
194
+ background: var(--datepicker-selected-color);
195
+ color: #FFF !important;
196
+ }
197
+
198
+ .ui-datepicker td.selected-start a:hover,
199
+ .ui-datepicker td.selected-end a:hover,
200
+ .ui-datepicker td.ui-datepicker-current-day a:hover {
201
+ background: var(--datepicker-selected-color-hover);
202
+ }
203
+
204
+ .ui-datepicker-day-marks {
205
+ line-height: normal;
206
+ position: absolute;
207
+ right: 0;
208
+ bottom: 3px;
209
+ left: 0;
210
+ display: flex;
211
+ align-items: center;
212
+ justify-content: center;
213
+ }
214
+
215
+ .ui-datepicker-day-marks > i {
216
+ border-radius: 50%;
217
+ border: 1px solid #FFF;
218
+ width: 4px;
219
+ height: 4px;
220
+ margin: 0 2px;
221
+ }
222
+
223
+ .ui-datepicker-day-marks-exists {
224
+ background: var(--color-blue-500);
225
+ }
226
+
227
+ .ui-datepicker-day-marks-update {
228
+ background: var(--color-red-500);
229
+ }
230
+
231
+ .ui-datepicker-row-break {
232
+ display: none;
233
+ }
@@ -0,0 +1,101 @@
1
+ import { toRef, watch } from 'vue';
2
+ import Core from '@/core/core/core';
3
+ import UtilsDate from '@/core/utils/date';
4
+
5
+ import css from '@/components/forms/inputDate/datepicker.css?raw';
6
+
7
+ Core.appendStyle(css);
8
+
9
+ const _window: any = window;
10
+
11
+ const $ = (el: HTMLInputElement) => {
12
+ if (!_window?.jQuery?.ui?.datepicker) {
13
+ console.info('Для работы datepicker требуется глобальная загрузка jQuery UI Datepicker');
14
+
15
+ return;
16
+ }
17
+
18
+ _window.jQuery.datepicker._defaults.dateFormat = Core.state.dateFormat.toLowerCase().replace('m', 'mm').replace('y', 'yy').replace('d', 'dd');
19
+
20
+ return _window.jQuery(el);
21
+ };
22
+
23
+ export function connectDatepicker(el: HTMLInputElement, options: any) {
24
+ return $(el)?.datepicker(options);
25
+ }
26
+
27
+ let dateFormatted;
28
+ let delimiter: string;
29
+ let dateNumbersCount: number;
30
+ let delimitersIndexes: number[];
31
+
32
+ watch(toRef(Core.state.dateFormat), () => {
33
+ // генерация отформатированной даты, извлечение из нее разделителей и их индексов
34
+ dateFormatted = UtilsDate.dateFormat('2000-01-01');
35
+ delimiter = dateFormatted.match(/\D/)?.[0] ?? '-';
36
+ dateNumbersCount = dateFormatted.replace(/\D+/g, '').length;
37
+ delimitersIndexes = [];
38
+
39
+ for (let i = 0; i < dateFormatted.length; i++) {
40
+ if (dateFormatted[i] === delimiter) {
41
+ delimitersIndexes.push(i);
42
+ }
43
+ }
44
+ }, { immediate: true });
45
+
46
+ /**
47
+ * Автоформат при вводе в поле с датой
48
+ */
49
+ export function oninput(e: any) {
50
+ let selectionPos = e.target.selectionEnd;
51
+ let value = e.target.value;
52
+
53
+ // разбить занчение на две половины - до и после каретки
54
+ // удалить все символы, кроме цифр
55
+ let valueChunkLeft = value.substring(0, selectionPos).replace(/\D+/g, '');
56
+ let valueChunkRight = value.substring(selectionPos).replace(/\D+/g, '');
57
+
58
+ let extraNumbersCount = valueChunkLeft.length + valueChunkRight.length - dateNumbersCount;
59
+ if (extraNumbersCount > 0) {
60
+ // // количество цифр больше требуемого - удалить лишние
61
+ valueChunkLeft = valueChunkLeft.substring(0, dateNumbersCount);
62
+
63
+ const valueChunkRightMaxLength = dateNumbersCount - valueChunkLeft.length;
64
+ valueChunkRight = valueChunkRight.substring(valueChunkRight.length - valueChunkRightMaxLength);
65
+ } else if (extraNumbersCount < 0) {
66
+ // количество цифр меньше требуемого - добавить 0
67
+ if (e.inputType === 'deleteContentForward') {
68
+ // нажатие на delete - добавить к левой части для правильного позиционирования каретки
69
+ valueChunkLeft += '0'.repeat(-extraNumbersCount);
70
+ } else {
71
+ valueChunkRight = '0'.repeat(-extraNumbersCount) + valueChunkRight;
72
+ }
73
+ }
74
+
75
+ selectionPos = valueChunkLeft.length;
76
+ value = valueChunkLeft + valueChunkRight;
77
+
78
+ // вставить разделители
79
+ for (let i = 0; i < delimitersIndexes.length; i++) {
80
+ const delimiterIndex = delimitersIndexes[i];
81
+
82
+ value = value.substring(0, delimiterIndex) + delimiter + value.substring(delimiterIndex);
83
+
84
+ // сдвинуть каретку, если разделитель вставлен левее ее
85
+ if (selectionPos >= delimiterIndex) {
86
+ selectionPos++;
87
+ }
88
+ }
89
+
90
+ // нажатие на backspace - если слева символ разделителя, перенести каретку за него
91
+ if (e.inputType === 'deleteContentBackward' && value[selectionPos - 1] === delimiter) {
92
+ selectionPos--;
93
+ }
94
+
95
+ // если значение изменилось - вставить его и переместить каретку
96
+ if (value !== e.target.value) {
97
+ e.target.value = value;
98
+ e.target.selectionStart = selectionPos;
99
+ e.target.selectionEnd = selectionPos;
100
+ }
101
+ }
@@ -0,0 +1,41 @@
1
+ import type { Meta, StoryObj } from '@storybook/vue3';
2
+
3
+ import { genArgsTypes, genOverviewStory } from '@/components/helpersStories';
4
+ import Component from './inputDate.vue';
5
+ import * as ComponentsConst from './inputDate';
6
+ import OverviewComponent from './stories/overview.vue';
7
+
8
+ const argTypes = genArgsTypes(Component, ComponentsConst, true);
9
+
10
+ /**
11
+ * Поле ввода с выбором даты.
12
+ *
13
+ * В современных браузерах для тач устройств выводится нативный выбор даты, в остальных устройствах подклчюается jQuery Datepicker
14
+ * с автоформатом вводимой даты.
15
+ *
16
+ * Для формата дат используются функции utils/date.
17
+ *
18
+ * Формат определяется настройкой dateFormat, которую можно указать при подклчюении UI к приложению Vue или через Core.defineOptions().
19
+ */
20
+ const meta = {
21
+ component: Component,
22
+ tags: ['autodocs'],
23
+ argTypes,
24
+ args: {
25
+ modelValue: '2000-01-01',
26
+ },
27
+ } satisfies Meta<typeof Component>;
28
+
29
+ type Story = StoryObj<typeof meta>;
30
+
31
+ export const Playground = {} satisfies Story;
32
+
33
+ export const Overview: Story = genOverviewStory({
34
+ args: {
35
+ title: 'Заголовок поля',
36
+ captionType: '',
37
+ isError: false,
38
+ },
39
+ }, OverviewComponent);
40
+
41
+ export default meta;
@@ -0,0 +1,4 @@
1
+ import type { Props, Emits } from '@/components/forms/input/input';
2
+ export * from '@/components/forms/input/input';
3
+
4
+ export type{ Props, Emits };
@@ -0,0 +1,127 @@
1
+ <script lang="ts">
2
+ const useNativeDatepicker = !!document.documentElement.ontouchstart && !!document.createElement('input').showPicker;
3
+
4
+ let onInputLazy = (_e: any) => { };
5
+ </script>
6
+
7
+ <script setup lang="ts">
8
+ import { ref, computed, onUnmounted } from 'vue';
9
+ import UtilsDate from '@/core/utils/date';
10
+ import type { Props, Emits } from './inputDate';
11
+ import { Input } from '@/components/forms/forms';
12
+ import Core from '@/core/core/core';
13
+
14
+ const props = withDefaults(defineProps<Props>(), {
15
+ icon2: '',
16
+ });
17
+
18
+ const emit = defineEmits<Emits>();
19
+
20
+ const el = ref();
21
+
22
+ const localValue = computed({
23
+ get() {
24
+ return UtilsDate.dateFormat(props.modelValue, 2, '0000-00-00');
25
+ },
26
+
27
+ set(value) {
28
+ value = UtilsDate.dateUnformat(value, '0000-00-00');
29
+
30
+ emit('update:modelValue', value);
31
+ },
32
+ });
33
+
34
+ let oninput = (e: any) => {
35
+ onInputLazy(e);
36
+ };
37
+
38
+ let onchange = (e: any) => {
39
+ const dateUnformat = UtilsDate.dateUnformat(e.target.value);
40
+ const dateFormat = UtilsDate.dateFormat(dateUnformat);
41
+
42
+ if (!dateFormat || dateFormat === Core.L.Not_date || e.target.value !== dateFormat) {
43
+ e.target.value = localValue.value;
44
+
45
+ return;
46
+ }
47
+
48
+ localValue.value = e.target.value;
49
+ };
50
+
51
+ /**
52
+ * Инициализпация функций выбора дат
53
+ *
54
+ * Для не нативного datepicker
55
+ */
56
+ async function init(e: any) {
57
+ const datepicker = await import('./datepicker');
58
+
59
+ // формат ввода
60
+ onInputLazy = datepicker.oninput;
61
+
62
+ // datepicker
63
+ const $el = datepicker.connectDatepicker(e.target, {
64
+ onSelect: () => onchange(e),
65
+ });
66
+
67
+ if ($el) {
68
+ $el.datepicker('show');
69
+
70
+ onUnmounted(() => $el.datepicker('destroy'));
71
+ }
72
+ }
73
+ </script>
74
+
75
+ <template>
76
+ <Input
77
+ v-if="useNativeDatepicker"
78
+ :="$props"
79
+ :modelValue="localValue"
80
+ readonly
81
+ @click="el.showPicker()"
82
+ >
83
+ <input
84
+ ref="el"
85
+ type="date"
86
+ class="top-input_input-date"
87
+ :modelValue="modelValue"
88
+ @change="(e: any) => localValue = e.target.value"
89
+ tabindex="-1"
90
+ />
91
+ </Input>
92
+
93
+ <Input
94
+ v-else
95
+ :="$props"
96
+ :modelValue="localValue"
97
+ @update:modelValue="(newValue) => (newValue === '') ? localValue = '' : ''"
98
+ @input.date="oninput"
99
+ @focus.once.date="init"
100
+ @change.date="onchange"
101
+ modificator="datepicker"
102
+ />
103
+ </template>
104
+
105
+ <style module>
106
+ .top-input-datepicker {
107
+ width: calc(105px + var(--top-icon-width) + var(--top-icon2-width));
108
+ }
109
+
110
+ .top-input_input-date {
111
+ opacity: 0;
112
+ position: absolute;
113
+ top: 0;
114
+ right: 0;
115
+ bottom: 0;
116
+ left: 0;
117
+ z-index: -1;
118
+ }
119
+
120
+ .top-input_input-date::-webkit-inner-spin-button {
121
+ display: none;
122
+ }
123
+
124
+ .top-input_input-date::-webkit-calendar-picker-indicator {
125
+ opacity: 0;
126
+ }
127
+ </style>
@@ -0,0 +1,35 @@
1
+ <script setup lang="ts">
2
+ import type { Props } from '../inputDate';
3
+ import InputDate from '../inputDate.vue';
4
+ import { reactive } from 'vue';
5
+
6
+ defineProps<Props>();
7
+
8
+ const modelValues = reactive([
9
+ '2000-01-01',
10
+ '2000-01-01',
11
+ ]);
12
+ </script>
13
+
14
+ <template>
15
+ <div>
16
+ <h2>Выбор даты</h2>
17
+
18
+ <InputDate
19
+ :="$props"
20
+ v-model="modelValues[0]"
21
+ />
22
+
23
+ Выбранная дата: {{ modelValues[0] }}
24
+
25
+ <h2>Выбор даты с очисткой</h2>
26
+
27
+ <InputDate
28
+ :="$props"
29
+ v-model="modelValues[1]"
30
+ :addCleaner="true"
31
+ />
32
+
33
+ Выбранная дата: {{ modelValues[1] }}
34
+ </div>
35
+ </template>
@@ -0,0 +1,34 @@
1
+ import type { Meta, StoryObj } from '@storybook/vue3';
2
+
3
+ import { genArgsTypes, genOverviewStory } from '@/components/helpersStories';
4
+ import Component from './radio.vue';
5
+ import * as ComponentsConst from './radio';
6
+ import OverviewComponent from './stories/overview.vue';
7
+
8
+ const argTypes = genArgsTypes(Component, ComponentsConst, true);
9
+
10
+ const meta = {
11
+ component: Component,
12
+ tags: ['autodocs'],
13
+ argTypes,
14
+ args: {
15
+ value: 'default value',
16
+ modelValue: '',
17
+ },
18
+ } satisfies Meta<typeof Component>;
19
+
20
+ type Story = StoryObj<typeof meta>;
21
+
22
+ export const Playground = {
23
+ args: {
24
+ default: 'radio',
25
+ },
26
+ } satisfies Story;
27
+
28
+ export const Overview: Story = genOverviewStory({
29
+ args: {
30
+ isError: false,
31
+ },
32
+ }, OverviewComponent);
33
+
34
+ export default meta;
@@ -0,0 +1,15 @@
1
+ export interface Props {
2
+ /**
3
+ * [подробнее](https://vuejs.org/guide/essentials/forms.html#radio)
4
+ */
5
+ modelValue: string | object;
6
+ value: Props['modelValue'];
7
+ name?: string;
8
+ description?: string;
9
+ disabled?: boolean;
10
+ isError?: boolean;
11
+ }
12
+
13
+ export interface Emits {
14
+ (e: 'update:modelValue', value: Props['modelValue']): void;
15
+ }
@@ -0,0 +1,107 @@
1
+ <script setup lang="ts">
2
+ import { computed } from 'vue';
3
+ import type { Props, Emits } from './radio';
4
+ import ControlLabel from '../controlLabel/controlLabel.vue';
5
+
6
+ const props = defineProps<Props>();
7
+ const emit = defineEmits<Emits>();
8
+
9
+ const localValue = computed({
10
+ get() {
11
+ return props.modelValue;
12
+ },
13
+ set(value) {
14
+ emit('update:modelValue', value);
15
+ },
16
+ });
17
+
18
+ </script>
19
+
20
+ <template>
21
+ <label
22
+ :class="{
23
+ ['top-forms-optionWrapper']: true,
24
+ ['top-radio']: true,
25
+ ['top-radio_' + name]: name !== '',
26
+ ['top-disabled']: disabled,
27
+ ['top-error']: isError && !disabled,
28
+ }"
29
+ >
30
+ <input
31
+ type="radio"
32
+ :class="{
33
+ ['top-forms-focusable']: !disabled,
34
+ ['top-forms-option']: true,
35
+ ['top-radio_input']: true,
36
+ ['top-error']: isError && !disabled,
37
+ }"
38
+ v-model="localValue"
39
+ :name="name"
40
+ :value="value"
41
+ :disabled="disabled"
42
+ >
43
+
44
+ <ControlLabel
45
+ v-if="$slots.default"
46
+ :description="description"
47
+ :disabled="disabled"
48
+ >
49
+ <!-- @slot Слот с заголовком -->
50
+ <slot></slot>
51
+ </ControlLabel>
52
+ </label>
53
+ </template>
54
+
55
+ <style module>
56
+ :root {
57
+ --top-radio-background-color: var(--content-background-color);
58
+ --top-radio-background-color-hover: var(--top-radio-background-color);
59
+ --top-radio-background-color-active: var(--top-radio-background-color);
60
+ }
61
+
62
+ .top-radio {
63
+ cursor: pointer;
64
+ }
65
+
66
+ .top-radio_input {
67
+ border-radius: 50%;
68
+ background: var(--content-background-color);
69
+ border: 1px solid var(--top-forms-border-color);
70
+ width: calc(var(--top-forms-option-height) - 3px * 2);
71
+ height: calc(var(--top-forms-option-height) - 3px * 2);
72
+ }
73
+
74
+ .top-radio_input:hover {
75
+ border-color: var(--top-forms-option-color);
76
+ background: var(--color-theme-50)
77
+ }
78
+
79
+ .top-radio_input:checked {
80
+ border-color: var(--top-forms-option-color);
81
+ border-width: 5px;
82
+ }
83
+
84
+ .top-radio_input:checked:hover {
85
+ border-color: var(--top-forms-option-color-hover);
86
+ }
87
+
88
+ /* disabled */
89
+ .top-radio_input:disabled {
90
+ border-color: var(--color-line-1-opacity);
91
+ background: var(--color-theme-50);
92
+ }
93
+
94
+ /* disabled selected */
95
+ .top-radio_input:checked:disabled {
96
+ border-color: var(--color-theme-400);
97
+ }
98
+
99
+ /* isError */
100
+ .top-radio_input.top-error {
101
+ border-color: var(--color-negative);
102
+ }
103
+
104
+ .top-radio_input.top-error:hover {
105
+ border-color: var(--color-negative-2);
106
+ }
107
+ </style>