@vueland/ui 0.0.1 → 0.0.2

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 (352) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +137 -0
  3. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  4. package/dist/components/CApp/CApp.js +2 -3
  5. package/dist/components/CAutocomplete/CAutocomplete.js +182 -90
  6. package/dist/components/CBtn/CBtn.js +26 -27
  7. package/dist/components/CCheckbox/CCheckbox.js +40 -58
  8. package/dist/components/CCheckbox/CheckboxElement.js +96 -0
  9. package/dist/components/CCheckbox/index2.js +5 -0
  10. package/dist/components/CChip/CChip.js +13 -0
  11. package/dist/components/CDateInput/CDateInput.js +246 -0
  12. package/dist/components/CDateInput/index.js +5 -0
  13. package/dist/components/CDatePicker/CDatePicker.js +324 -0
  14. package/dist/components/CDatePicker/CDatePickerDates.js +300 -0
  15. package/dist/components/CDatePicker/CDatePickerHeader.js +62 -0
  16. package/dist/components/CDatePicker/CDatePickerMonths.js +114 -0
  17. package/dist/components/CDatePicker/CDatePickerYears.js +143 -0
  18. package/dist/components/CDatePicker/helpers.js +17 -0
  19. package/dist/components/CDatePicker/index.js +14 -0
  20. package/dist/components/CDatePicker/index2.js +5 -0
  21. package/dist/components/CDatePicker/index3.js +5 -0
  22. package/dist/components/CDatePicker/index4.js +5 -0
  23. package/dist/components/CDatePicker/index5.js +5 -0
  24. package/dist/components/CDatePicker/index6.js +5 -0
  25. package/dist/components/CDatePicker/locales/en.json.js +44 -0
  26. package/dist/components/CDatePicker/locales/index.js +9 -0
  27. package/dist/components/CDatePicker/locales/ru.json.js +44 -0
  28. package/dist/components/CDatePicker/utils.js +20 -0
  29. package/dist/components/CDialog/CDialog.js +2 -4
  30. package/dist/components/CDialog/index.js +1 -1
  31. package/dist/components/CDialog/index2.js +1 -1
  32. package/dist/components/CField/CField.js +160 -28
  33. package/dist/components/CForm/CForm.js +38 -22
  34. package/dist/components/CGrid/CCol.js +1 -3
  35. package/dist/components/CGrid/CRow.js +5 -7
  36. package/dist/components/CIcon/CIcon.js +3 -3
  37. package/dist/components/CInput/CInput.js +110 -109
  38. package/dist/components/CList/CList.js +86 -33
  39. package/dist/components/CList/CListItem.js +39 -14
  40. package/dist/components/CMenu/CMenu.js +27 -26
  41. package/dist/components/COverlay/COverlay.js +6 -5
  42. package/dist/components/CRadio/CRadio.js +11 -5
  43. package/dist/components/CRadio/CRadioGroup.js +10 -0
  44. package/dist/components/CSelect/CSelect.js +159 -70
  45. package/dist/components/CSelectControl/CSelectControl.js +14 -2
  46. package/dist/components/CTextField/CTextField.js +79 -52
  47. package/dist/components/CTextField/index.js +2 -2
  48. package/dist/components/CTextField/index2.js +5 -0
  49. package/dist/components/CToolbar/CToolbar.js +1 -3
  50. package/dist/components/CTooltip/CTooltip.js +1 -3
  51. package/dist/components/global-components.d.ts +44 -0
  52. package/dist/components/index.d.ts +826 -475
  53. package/dist/components/index.js +10 -6
  54. package/dist/composables/index.d.ts +841 -226
  55. package/dist/composables/index.js +18 -15
  56. package/dist/composables/use-activator.js +28 -26
  57. package/dist/composables/use-app-scroll.js +2 -6
  58. package/dist/composables/use-auto-position.js +205 -117
  59. package/dist/composables/use-autocomplete.js +21 -19
  60. package/dist/composables/use-button-presets.js +3 -7
  61. package/dist/composables/use-delay-actions.js +6 -1
  62. package/dist/composables/use-display.js +22 -14
  63. package/dist/composables/use-field-presets.js +82 -0
  64. package/dist/composables/use-icon.js +106 -34
  65. package/dist/composables/use-id.js +9 -0
  66. package/dist/composables/use-input-presets.js +88 -19
  67. package/dist/composables/use-keyboard.js +52 -0
  68. package/dist/composables/use-list.js +8 -0
  69. package/dist/composables/use-menu.js +8 -0
  70. package/dist/composables/use-normalized-items.js +22 -0
  71. package/dist/composables/use-overlay-stack.js +4 -1
  72. package/dist/composables/use-presets.js +5 -3
  73. package/dist/composables/use-select-control.js +8 -0
  74. package/dist/composables/use-selected-chips.js +40 -0
  75. package/dist/composables/use-validate.js +32 -24
  76. package/dist/constants/attrs.js +21 -0
  77. package/dist/constants/icons.js +55 -8
  78. package/dist/constants/index.d.ts +147 -54
  79. package/dist/constants/index.js +2 -1
  80. package/dist/constants/provide-keys.js +2 -1
  81. package/dist/css/themes/default-theme.css +1 -1
  82. package/dist/css/utils/_borders.css +1 -0
  83. package/dist/css/utils/_borders.js +3 -0
  84. package/dist/css/utils/_display.css +1 -1
  85. package/dist/css/utils/_flex.css +1 -1
  86. package/dist/css/utils/_helpers.css +1 -1
  87. package/dist/css/utils/_positions.css +1 -1
  88. package/dist/css/utils/_sizing.css +1 -1
  89. package/dist/css/utils/_spaces.css +1 -1
  90. package/dist/css/utils/_text.css +1 -1
  91. package/dist/css/utils/_transitions.css +1 -1
  92. package/dist/css/utils/_typography.css +1 -1
  93. package/dist/enums/IconName.js +13 -0
  94. package/dist/enums/index.d.ts +15 -2
  95. package/dist/helpers/preset.js +11 -0
  96. package/dist/helpers/theme.js +41 -0
  97. package/dist/library.js +26 -4
  98. package/dist/resolvers/font-awesome.js +30 -0
  99. package/dist/resolvers/index.d.ts +48 -0
  100. package/dist/resolvers/index.js +1 -0
  101. package/dist/scss/maps/colors-map.scss +342 -0
  102. package/dist/scss/maps/elevations-map.scss +88 -0
  103. package/dist/scss/maps/flexes-map.scss +24 -0
  104. package/dist/scss/maps/grids.scss +23 -0
  105. package/dist/scss/modules/_global-vars.scss +88 -0
  106. package/dist/scss/ress.scss +281 -0
  107. package/dist/scss/styles.scss +19 -0
  108. package/dist/scss/themes/default-theme.scss +25 -0
  109. package/dist/scss/utils/_borders.scss +28 -0
  110. package/dist/scss/utils/_colors.scss +86 -0
  111. package/dist/scss/utils/_cursor.scss +140 -0
  112. package/dist/scss/utils/_display.scss +32 -0
  113. package/dist/scss/utils/_elevations.scss +15 -0
  114. package/dist/scss/utils/_flex.scss +137 -0
  115. package/dist/scss/utils/_helpers.scss +47 -0
  116. package/dist/scss/utils/_opacity.scss +13 -0
  117. package/dist/scss/utils/_overflow.scss +51 -0
  118. package/dist/scss/utils/_positions.scss +42 -0
  119. package/dist/scss/utils/_radius.scss +41 -0
  120. package/dist/scss/utils/_sizing.scss +40 -0
  121. package/dist/scss/utils/_spaces.scss +164 -0
  122. package/dist/scss/utils/_text.scss +76 -0
  123. package/dist/scss/utils/_transitions.scss +98 -0
  124. package/dist/scss/utils/_typography.scss +68 -0
  125. package/dist/styles.css +1 -1
  126. package/dist/temp-types/src/components/CApp/CApp.vue.d.ts +2 -4
  127. package/dist/temp-types/src/components/CApp/CApp.vue.d.ts.map +1 -1
  128. package/dist/temp-types/src/components/CApp/types.d.ts +4 -0
  129. package/dist/temp-types/src/components/CApp/types.d.ts.map +1 -1
  130. package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts +7 -2
  131. package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts.map +1 -1
  132. package/dist/temp-types/src/components/CAutocomplete/types.d.ts +16 -6
  133. package/dist/temp-types/src/components/CAutocomplete/types.d.ts.map +1 -1
  134. package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts +5 -1
  135. package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts.map +1 -1
  136. package/dist/temp-types/src/components/CBtn/index.d.ts +1 -0
  137. package/dist/temp-types/src/components/CBtn/index.d.ts.map +1 -1
  138. package/dist/temp-types/src/components/CBtn/types.d.ts +1 -0
  139. package/dist/temp-types/src/components/CBtn/types.d.ts.map +1 -1
  140. package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts +2 -6
  141. package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts.map +1 -1
  142. package/dist/temp-types/src/components/CCheckbox/CheckboxElement.vue.d.ts +32 -0
  143. package/dist/temp-types/src/components/CCheckbox/CheckboxElement.vue.d.ts.map +1 -0
  144. package/dist/temp-types/src/components/CCheckbox/types.d.ts +7 -4
  145. package/dist/temp-types/src/components/CCheckbox/types.d.ts.map +1 -1
  146. package/dist/temp-types/src/components/CChip/CChip.vue.d.ts +13 -0
  147. package/dist/temp-types/src/components/CChip/CChip.vue.d.ts.map +1 -0
  148. package/dist/temp-types/src/components/CChip/index.d.ts +2 -0
  149. package/dist/temp-types/src/components/CChip/index.d.ts.map +1 -0
  150. package/dist/temp-types/src/components/CDateInput/CDateInput.vue.d.ts +61 -0
  151. package/dist/temp-types/src/components/CDateInput/CDateInput.vue.d.ts.map +1 -0
  152. package/dist/temp-types/src/components/CDateInput/index.d.ts +3 -0
  153. package/dist/temp-types/src/components/CDateInput/index.d.ts.map +1 -0
  154. package/dist/temp-types/src/components/CDatePicker/CDatePicker.vue.d.ts +82 -0
  155. package/dist/temp-types/src/components/CDatePicker/CDatePicker.vue.d.ts.map +1 -0
  156. package/dist/temp-types/src/components/CDatePicker/CDatePickerDates.vue.d.ts +60 -0
  157. package/dist/temp-types/src/components/CDatePicker/CDatePickerDates.vue.d.ts.map +1 -0
  158. package/dist/temp-types/src/components/CDatePicker/CDatePickerHeader.vue.d.ts +27 -0
  159. package/dist/temp-types/src/components/CDatePicker/CDatePickerHeader.vue.d.ts.map +1 -0
  160. package/dist/temp-types/src/components/CDatePicker/CDatePickerMonths.vue.d.ts +40 -0
  161. package/dist/temp-types/src/components/CDatePicker/CDatePickerMonths.vue.d.ts.map +1 -0
  162. package/dist/temp-types/src/components/CDatePicker/CDatePickerYears.vue.d.ts +34 -0
  163. package/dist/temp-types/src/components/CDatePicker/CDatePickerYears.vue.d.ts.map +1 -0
  164. package/dist/temp-types/src/components/CDatePicker/helpers.d.ts +4 -0
  165. package/dist/temp-types/src/components/CDatePicker/helpers.d.ts.map +1 -0
  166. package/dist/temp-types/src/components/CDatePicker/index.d.ts +6 -0
  167. package/dist/temp-types/src/components/CDatePicker/index.d.ts.map +1 -0
  168. package/dist/temp-types/src/components/CDatePicker/locales/index.d.ts +7 -0
  169. package/dist/temp-types/src/components/CDatePicker/locales/index.d.ts.map +1 -0
  170. package/dist/temp-types/src/components/CDatePicker/types.d.ts +22 -0
  171. package/dist/temp-types/src/components/CDatePicker/types.d.ts.map +1 -0
  172. package/dist/temp-types/src/components/CDatePicker/utils.d.ts +8 -0
  173. package/dist/temp-types/src/components/CDatePicker/utils.d.ts.map +1 -0
  174. package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts +1 -1
  175. package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts.map +1 -1
  176. package/dist/temp-types/src/components/CDialog/CDialogsStack.vue.d.ts.map +1 -1
  177. package/dist/temp-types/src/components/CDialog/types.d.ts.map +1 -1
  178. package/dist/temp-types/src/components/CField/CField.vue.d.ts +26 -10
  179. package/dist/temp-types/src/components/CField/CField.vue.d.ts.map +1 -1
  180. package/dist/temp-types/src/components/CField/index.d.ts +1 -0
  181. package/dist/temp-types/src/components/CField/index.d.ts.map +1 -1
  182. package/dist/temp-types/src/components/CField/types.d.ts +22 -0
  183. package/dist/temp-types/src/components/CField/types.d.ts.map +1 -0
  184. package/dist/temp-types/src/components/CForm/CForm.vue.d.ts +10 -8
  185. package/dist/temp-types/src/components/CForm/CForm.vue.d.ts.map +1 -1
  186. package/dist/temp-types/src/components/CForm/types.d.ts +13 -3
  187. package/dist/temp-types/src/components/CForm/types.d.ts.map +1 -1
  188. package/dist/temp-types/src/components/CGrid/CCol.d.ts.map +1 -1
  189. package/dist/temp-types/src/components/CGrid/CRow.d.ts.map +1 -1
  190. package/dist/temp-types/src/components/CGrid/index.d.ts +1 -1
  191. package/dist/temp-types/src/components/CIcon/CIcon.vue.d.ts.map +1 -1
  192. package/dist/temp-types/src/components/CIcon/types.d.ts +1 -2
  193. package/dist/temp-types/src/components/CIcon/types.d.ts.map +1 -1
  194. package/dist/temp-types/src/components/CInput/CInput.vue.d.ts +23 -7
  195. package/dist/temp-types/src/components/CInput/CInput.vue.d.ts.map +1 -1
  196. package/dist/temp-types/src/components/CInput/types.d.ts +42 -28
  197. package/dist/temp-types/src/components/CInput/types.d.ts.map +1 -1
  198. package/dist/temp-types/src/components/CLabel/CLabel.d.ts.map +1 -1
  199. package/dist/temp-types/src/components/CList/CList.vue.d.ts +4 -2
  200. package/dist/temp-types/src/components/CList/CList.vue.d.ts.map +1 -1
  201. package/dist/temp-types/src/components/CList/CListItem.vue.d.ts.map +1 -1
  202. package/dist/temp-types/src/components/CList/types.d.ts +16 -1
  203. package/dist/temp-types/src/components/CList/types.d.ts.map +1 -1
  204. package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts +4 -4
  205. package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts.map +1 -1
  206. package/dist/temp-types/src/components/CMenu/types.d.ts +2 -2
  207. package/dist/temp-types/src/components/CMenu/types.d.ts.map +1 -1
  208. package/dist/temp-types/src/components/COverlay/COverlay.vue.d.ts.map +1 -1
  209. package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts +1 -1
  210. package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts.map +1 -1
  211. package/dist/temp-types/src/components/CRadio/CRadioGroup.vue.d.ts +13 -0
  212. package/dist/temp-types/src/components/CRadio/CRadioGroup.vue.d.ts.map +1 -0
  213. package/dist/temp-types/src/components/CRadio/index.d.ts +1 -0
  214. package/dist/temp-types/src/components/CRadio/index.d.ts.map +1 -1
  215. package/dist/temp-types/src/components/CScrim/index.d.ts.map +1 -1
  216. package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts +7 -2
  217. package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts.map +1 -1
  218. package/dist/temp-types/src/components/CSelect/types.d.ts +16 -6
  219. package/dist/temp-types/src/components/CSelect/types.d.ts.map +1 -1
  220. package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts +6 -2
  221. package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts.map +1 -1
  222. package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts +19 -17
  223. package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts.map +1 -1
  224. package/dist/temp-types/src/components/CTextField/index.d.ts +10 -1
  225. package/dist/temp-types/src/components/CTextField/index.d.ts.map +1 -1
  226. package/dist/temp-types/src/components/CTextField/types.d.ts +16 -0
  227. package/dist/temp-types/src/components/CTextField/types.d.ts.map +1 -0
  228. package/dist/temp-types/src/components/CToolbar/CToolbar.vue.d.ts.map +1 -1
  229. package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts.map +1 -1
  230. package/dist/temp-types/src/components/index.d.ts +17 -15
  231. package/dist/temp-types/src/components/index.d.ts.map +1 -1
  232. package/dist/temp-types/src/composables/index.d.ts +16 -13
  233. package/dist/temp-types/src/composables/index.d.ts.map +1 -1
  234. package/dist/temp-types/src/composables/use-activator.d.ts +157 -2
  235. package/dist/temp-types/src/composables/use-activator.d.ts.map +1 -1
  236. package/dist/temp-types/src/composables/use-app-scroll.d.ts.map +1 -1
  237. package/dist/temp-types/src/composables/use-application.d.ts.map +1 -1
  238. package/dist/temp-types/src/composables/use-auto-position.d.ts +292 -9
  239. package/dist/temp-types/src/composables/use-auto-position.d.ts.map +1 -1
  240. package/dist/temp-types/src/composables/use-autocomplete.d.ts +9 -4
  241. package/dist/temp-types/src/composables/use-autocomplete.d.ts.map +1 -1
  242. package/dist/temp-types/src/composables/use-button-presets.d.ts +2 -2
  243. package/dist/temp-types/src/composables/use-button-presets.d.ts.map +1 -1
  244. package/dist/temp-types/src/composables/use-core.d.ts.map +1 -1
  245. package/dist/temp-types/src/composables/use-delay-actions.d.ts +26 -0
  246. package/dist/temp-types/src/composables/use-delay-actions.d.ts.map +1 -1
  247. package/dist/temp-types/src/composables/use-dialogs-stack.d.ts +3 -3
  248. package/dist/temp-types/src/composables/use-dialogs-stack.d.ts.map +1 -1
  249. package/dist/temp-types/src/composables/use-display.d.ts +8 -7
  250. package/dist/temp-types/src/composables/use-display.d.ts.map +1 -1
  251. package/dist/temp-types/src/composables/use-effect.d.ts.map +1 -1
  252. package/dist/temp-types/src/composables/use-field-presets.d.ts +12 -0
  253. package/dist/temp-types/src/composables/use-field-presets.d.ts.map +1 -0
  254. package/dist/temp-types/src/composables/use-form.d.ts +1 -1
  255. package/dist/temp-types/src/composables/use-form.d.ts.map +1 -1
  256. package/dist/temp-types/src/composables/use-icon.d.ts +32 -4
  257. package/dist/temp-types/src/composables/use-icon.d.ts.map +1 -1
  258. package/dist/temp-types/src/composables/use-id.d.ts +6 -0
  259. package/dist/temp-types/src/composables/use-id.d.ts.map +1 -0
  260. package/dist/temp-types/src/composables/use-input-presets.d.ts +6 -7
  261. package/dist/temp-types/src/composables/use-input-presets.d.ts.map +1 -1
  262. package/dist/temp-types/src/composables/use-keyboard.d.ts +11 -0
  263. package/dist/temp-types/src/composables/use-keyboard.d.ts.map +1 -0
  264. package/dist/temp-types/src/composables/use-list.d.ts +3 -0
  265. package/dist/temp-types/src/composables/use-list.d.ts.map +1 -0
  266. package/dist/temp-types/src/composables/use-menu-presets.d.ts +1 -1
  267. package/dist/temp-types/src/composables/use-menu-presets.d.ts.map +1 -1
  268. package/dist/temp-types/src/composables/use-menu.d.ts +2 -0
  269. package/dist/temp-types/src/composables/use-menu.d.ts.map +1 -0
  270. package/dist/temp-types/src/composables/use-normalized-items.d.ts +18 -0
  271. package/dist/temp-types/src/composables/use-normalized-items.d.ts.map +1 -0
  272. package/dist/temp-types/src/composables/use-overlay-stack.d.ts +1 -0
  273. package/dist/temp-types/src/composables/use-overlay-stack.d.ts.map +1 -1
  274. package/dist/temp-types/src/composables/use-presets.d.ts +14 -0
  275. package/dist/temp-types/src/composables/use-presets.d.ts.map +1 -1
  276. package/dist/temp-types/src/composables/use-select-control.d.ts +2 -0
  277. package/dist/temp-types/src/composables/use-select-control.d.ts.map +1 -0
  278. package/dist/temp-types/src/composables/use-selected-chips.d.ts +16 -0
  279. package/dist/temp-types/src/composables/use-selected-chips.d.ts.map +1 -0
  280. package/dist/temp-types/src/composables/use-toggle.d.ts +1 -1
  281. package/dist/temp-types/src/composables/use-toggle.d.ts.map +1 -1
  282. package/dist/temp-types/src/composables/use-validate.d.ts +10 -8
  283. package/dist/temp-types/src/composables/use-validate.d.ts.map +1 -1
  284. package/dist/temp-types/src/constants/attrs.d.ts +2 -0
  285. package/dist/temp-types/src/constants/attrs.d.ts.map +1 -0
  286. package/dist/temp-types/src/constants/icons.d.ts +91 -18
  287. package/dist/temp-types/src/constants/icons.d.ts.map +1 -1
  288. package/dist/temp-types/src/constants/index.d.ts +2 -1
  289. package/dist/temp-types/src/constants/index.d.ts.map +1 -1
  290. package/dist/temp-types/src/constants/provide-keys.d.ts +8 -5
  291. package/dist/temp-types/src/constants/provide-keys.d.ts.map +1 -1
  292. package/dist/temp-types/src/directives/v-click-outside.d.ts.map +1 -1
  293. package/dist/temp-types/src/enums/IconName.d.ts +15 -2
  294. package/dist/temp-types/src/enums/IconName.d.ts.map +1 -1
  295. package/dist/temp-types/src/helpers/index.d.ts +2 -0
  296. package/dist/temp-types/src/helpers/index.d.ts.map +1 -1
  297. package/dist/temp-types/src/helpers/preset.d.ts +8 -0
  298. package/dist/temp-types/src/helpers/preset.d.ts.map +1 -0
  299. package/dist/temp-types/src/helpers/theme.d.ts +4 -0
  300. package/dist/temp-types/src/helpers/theme.d.ts.map +1 -0
  301. package/dist/temp-types/src/index.d.ts.map +1 -1
  302. package/dist/temp-types/src/library.d.ts +10 -3
  303. package/dist/temp-types/src/library.d.ts.map +1 -1
  304. package/dist/temp-types/src/resolvers/font-awesome.d.ts +18 -0
  305. package/dist/temp-types/src/resolvers/font-awesome.d.ts.map +1 -0
  306. package/dist/temp-types/src/resolvers/index.d.ts +2 -0
  307. package/dist/temp-types/src/resolvers/index.d.ts.map +1 -0
  308. package/dist/temp-types/src/resolvers/material.d.ts +1 -0
  309. package/dist/temp-types/src/resolvers/material.d.ts.map +1 -0
  310. package/dist/temp-types/src/types/icons.d.ts +29 -0
  311. package/dist/temp-types/src/types/icons.d.ts.map +1 -0
  312. package/dist/temp-types/src/types/index.d.ts +4 -2
  313. package/dist/temp-types/src/types/index.d.ts.map +1 -1
  314. package/dist/temp-types/src/types/presets.d.ts +35 -47
  315. package/dist/temp-types/src/types/presets.d.ts.map +1 -1
  316. package/dist/temp-types/src/types/theme.d.ts +32 -0
  317. package/dist/temp-types/src/types/theme.d.ts.map +1 -0
  318. package/dist/temp-types/src/utils/compile-css-classes.d.ts.map +1 -1
  319. package/dist/temp-types/src/utils/create-simple-functional.d.ts.map +1 -1
  320. package/dist/temp-types/src/utils/index.d.ts +3 -2
  321. package/dist/temp-types/src/utils/index.d.ts.map +1 -1
  322. package/dist/temp-types/src/utils/props-factory.d.ts +37 -0
  323. package/dist/temp-types/src/utils/props-factory.d.ts.map +1 -0
  324. package/dist/temp-types/src/utils/throttle.d.ts.map +1 -1
  325. package/dist/temp-types/tsconfig.build.tsbuildinfo +1 -1
  326. package/dist/types/index.d.ts +125 -0
  327. package/dist/types.d.ts +137 -72
  328. package/dist/utils/compile-css-classes.js +3 -13
  329. package/dist/utils/create-simple-functional.js +1 -5
  330. package/dist/utils/index.d.ts +49 -13
  331. package/dist/utils/index.js +3 -2
  332. package/dist/utils/props-factory.js +25 -0
  333. package/package.json +33 -7
  334. package/dist/components/CItems/CItems.js +0 -66
  335. package/dist/composables/use-field-attrs.js +0 -43
  336. package/dist/composables/use-input-state.js +0 -41
  337. package/dist/composables/use-input-value.js +0 -18
  338. package/dist/composables/use-position-classes.js +0 -12
  339. package/dist/temp-types/src/components/CItems/CItems.d.ts +0 -16
  340. package/dist/temp-types/src/components/CItems/CItems.d.ts.map +0 -1
  341. package/dist/temp-types/src/components/CItems/index.d.ts +0 -2
  342. package/dist/temp-types/src/components/CItems/index.d.ts.map +0 -1
  343. package/dist/temp-types/src/composables/use-field-attrs.d.ts +0 -10
  344. package/dist/temp-types/src/composables/use-field-attrs.d.ts.map +0 -1
  345. package/dist/temp-types/src/composables/use-input-state.d.ts +0 -17
  346. package/dist/temp-types/src/composables/use-input-state.d.ts.map +0 -1
  347. package/dist/temp-types/src/composables/use-input-value.d.ts +0 -3
  348. package/dist/temp-types/src/composables/use-input-value.d.ts.map +0 -1
  349. package/dist/temp-types/src/composables/use-position-classes.d.ts +0 -10
  350. package/dist/temp-types/src/composables/use-position-classes.d.ts.map +0 -1
  351. package/dist/temp-types/src/utils/define-preset.d.ts +0 -2
  352. package/dist/temp-types/src/utils/define-preset.d.ts.map +0 -1
@@ -1,19 +1,5 @@
1
1
  import * as vue from 'vue';
2
- import { VNode, Component, FunctionalComponent, PropType } from 'vue';
3
-
4
- declare var __VLS_1$4: {};
5
- type __VLS_Slots$8 = {} & {
6
- default?: (props: typeof __VLS_1$4) => any;
7
- };
8
- declare const __VLS_component$8: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
9
- declare const _default$j: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
10
-
11
- type __VLS_WithSlots$8<T, S> = T & {
12
- new (): {
13
- $slots: S;
14
- };
15
- };
16
- //# sourceMappingURL=CApp.vue.d.ts.map
2
+ import { VNode, ComponentPublicInstance, VNodeChild, PropType, Component, FunctionalComponent, ComputedRef } from 'vue';
17
3
 
18
4
  type ApplicationApi = {
19
5
  blockScroll(): void;
@@ -21,37 +7,20 @@ type ApplicationApi = {
21
7
  getScrollTop(): number;
22
8
  getScrollLeft(): number;
23
9
  };
24
-
25
- type Maybe<T> = T | undefined;
26
-
27
- interface DimensionsProps {
28
- width?: number | string;
29
- height?: number | string;
30
- minWidth?: number | string;
31
- maxWidth?: number | string;
32
- minHeight?: number | string;
33
- maxHeight?: number | string;
34
- }
35
-
36
- type InputStateProps = {
37
- disabled?: boolean;
38
- focused?: boolean;
39
- readonly?: boolean;
10
+ type CAppSlots = {
11
+ default(): VNode | VNode[];
40
12
  };
41
13
 
42
- type ValidateFn = (value: any) => ({
43
- valid: boolean;
44
- message: string;
45
- });
46
- type ValidateOn = 'input' | 'blur';
47
- type ValidateProps = {
48
- rules?: ValidateFn[];
49
- validateOn?: ValidateOn;
50
- };
51
- type ValidateState = {
52
- errorMessage: Maybe<string>;
53
- hasError: boolean;
14
+ type __VLS_Slots$c = CAppSlots;
15
+ declare const __VLS_component$c: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
16
+ declare const _default$m: __VLS_WithSlots$c<typeof __VLS_component$c, __VLS_Slots$c>;
17
+
18
+ type __VLS_WithSlots$c<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
54
22
  };
23
+ //# sourceMappingURL=CApp.vue.d.ts.map
55
24
 
56
25
  type ActivatorProps = {
57
26
  closeOnClick?: boolean;
@@ -59,6 +28,7 @@ type ActivatorProps = {
59
28
  openOnHover?: boolean;
60
29
  closeOnLeave?: boolean;
61
30
  openOnFocus?: boolean;
31
+ activator?: ComponentPublicInstance | Element;
62
32
  };
63
33
  type ActivatorListeners = {
64
34
  mouseenter?: (e: Event) => void;
@@ -73,128 +43,160 @@ type ActivatorListeners = {
73
43
  change?: (e: Event) => void;
74
44
  };
75
45
 
76
- interface PositionProps {
77
- left?: boolean;
78
- right?: boolean;
79
- top?: boolean;
80
- bottom?: boolean;
46
+ interface DimensionsProps {
47
+ width?: number | string;
48
+ height?: number | string;
49
+ minWidth?: number | string;
50
+ maxWidth?: number | string;
51
+ minHeight?: number | string;
52
+ maxHeight?: number | string;
81
53
  }
82
54
 
83
- type DelayProps = {
84
- openDelay?: number | string;
85
- closeDelay?: number | string;
86
- };
55
+ type Maybe<T> = T | undefined;
87
56
 
88
- interface CoordsProps {
57
+ interface AutoPositionProps {
58
+ strategy?: 'reverse' | 'bounce';
89
59
  positionX?: number;
90
60
  positionY?: number;
91
61
  offsetX?: number | string;
92
62
  offsetY?: number | string;
93
- }
94
- interface AutoPositionProps {
95
- strategy?: 'reverse' | 'bounce';
63
+ left?: boolean;
64
+ right?: boolean;
65
+ top?: boolean;
66
+ bottom?: boolean;
96
67
  }
97
68
 
98
- type PresetProps = {
99
- preset?: string;
69
+ type Primitive = string | number | boolean | bigint | symbol | null | undefined | Date;
70
+ type Path<T> = T extends Primitive ? never : T extends readonly unknown[] ? never : T extends object ? {
71
+ [K in keyof T & string]: T[K] extends Primitive ? K : K | `${K}.${Path<T[K]>}`;
72
+ }[keyof T & string] : never;
73
+ type LoosePath<T> = Path<T> | (string & {});
74
+ type IterableItemsProps<T> = {
75
+ items: readonly T[];
76
+ titleKey?: LoosePath<T>;
77
+ valueKey?: LoosePath<T>;
78
+ };
79
+ type NormalizedItem<T> = {
80
+ raw: T;
81
+ title: unknown;
82
+ value: unknown;
83
+ key: string;
84
+ };
85
+
86
+ type SelectableProps<T> = {
87
+ modelValue: T | T[];
88
+ multiple?: boolean;
89
+ mandatory?: boolean;
100
90
  };
101
91
 
102
92
  type CBtnProps = PresetProps & {
103
93
  variant?: 'flat' | 'outlined';
104
94
  block?: boolean;
95
+ disabled?: boolean;
105
96
  };
106
97
 
107
- declare var __VLS_1$3: {};
108
- type __VLS_Slots$7 = {} & {
109
- default?: (props: typeof __VLS_1$3) => any;
98
+ declare var __VLS_1$5: {};
99
+ type __VLS_Slots$b = {} & {
100
+ default?: (props: typeof __VLS_1$5) => any;
110
101
  };
111
- declare const __VLS_component$7: vue.DefineComponent<CBtnProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CBtnProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
112
- declare const _default$i: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
102
+ declare const __VLS_component$b: vue.DefineComponent<CBtnProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
103
+ click: (e: MouseEvent) => any;
104
+ }, string, vue.PublicProps, Readonly<CBtnProps> & Readonly<{
105
+ onClick?: ((e: MouseEvent) => any) | undefined;
106
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
107
+ declare const _default$l: __VLS_WithSlots$b<typeof __VLS_component$b, __VLS_Slots$b>;
113
108
 
114
- type __VLS_WithSlots$7<T, S> = T & {
109
+ type __VLS_WithSlots$b<T, S> = T & {
115
110
  new (): {
116
111
  $slots: S;
117
112
  };
118
113
  };
119
114
  //# sourceMappingURL=CBtn.vue.d.ts.map
120
115
 
121
- declare function validate(): Promise<boolean>;
122
- declare var __VLS_1$2: {
123
- validate: typeof validate;
124
- };
125
- type __VLS_Slots$6 = {} & {
126
- default?: (props: typeof __VLS_1$2) => any;
116
+ type DelayProps = {
117
+ openDelay?: number | string;
118
+ closeDelay?: number | string;
127
119
  };
128
- declare const __VLS_component$6: vue.DefineComponent<{}, {
129
- validate: typeof validate;
130
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
131
- declare const _default$h: __VLS_WithSlots$6<typeof __VLS_component$6, __VLS_Slots$6>;
132
120
 
133
- type __VLS_WithSlots$6<T, S> = T & {
134
- new (): {
135
- $slots: S;
136
- };
137
- };
138
- //# sourceMappingURL=CForm.vue.d.ts.map
121
+ type IconMode = 'sprite' | 'component' | 'raw' | 'fa' | 'md';
139
122
 
140
- type ValidatorFn = () => boolean;
141
- interface FormApi {
142
- add(fn: ValidatorFn): void;
143
- remove(fn: ValidatorFn): void;
123
+ interface InputState {
124
+ focused: boolean;
125
+ isDirty: boolean;
144
126
  }
145
- type FormSlots = {
146
- default(props: {
147
- validate: ValidatorFn;
148
- }): VNode;
149
- };
150
-
151
- type CInputProps<T = any> = ValidateProps & InputStateProps & PresetProps & {
127
+ type CInputKind = 'checkbox' | 'radio' | 'input' | 'area' | 'listbox';
128
+ type CInputProps<T = any> = ValidateProps & PresetProps & {
152
129
  id?: string;
153
- modelValue: T;
130
+ modelValue: T | T[] | undefined | null;
154
131
  label?: string;
155
132
  details?: string;
156
133
  noDetails?: boolean;
157
134
  clearable?: boolean;
135
+ disabled?: boolean;
136
+ focused?: boolean;
137
+ readonly?: boolean;
138
+ kind?: CInputKind;
139
+ };
140
+ type CInputEmits<T = any> = {
141
+ (e: 'update:modelValue', value: T): void;
142
+ (e: 'update:focused', value: boolean): void;
143
+ };
144
+ type CInputDetailsSlotProps = {
145
+ errorMessage: ValidateState['errorMessage'];
146
+ hasError: ValidateState['hasError'];
147
+ validating: ValidateState['validating'];
148
+ uid: string;
149
+ details?: string;
150
+ };
151
+ type CInputFieldSlotProps = {
152
+ focus(): void;
153
+ blur(): void;
154
+ reset(): void;
155
+ label?: string;
156
+ focused: boolean;
157
+ clearable?: boolean;
158
+ readonly?: boolean;
159
+ disabled?: boolean;
160
+ preset?: string;
161
+ errorMessage: ValidateState['errorMessage'];
162
+ hasError: ValidateState['hasError'];
163
+ validating: ValidateState['validating'];
164
+ attrs: Record<string, unknown>;
165
+ uid: string;
166
+ validate(): boolean | Promise<boolean>;
158
167
  };
159
168
  type CInputSlots = {
160
- label?(props: {
161
- uid: string;
162
- }): VNode | string;
163
- prepend?(): VNode | string;
164
- append?(): VNode | string;
165
- details?(props: {
166
- errorMessage: ValidateState['errorMessage'];
167
- hasError: ValidateState['hasError'];
168
- uid: string;
169
- }): VNode | string;
170
- field?(props: {
171
- onInput(): void;
172
- onFocus(): void;
173
- onBlur(): void;
169
+ details?(props: CInputDetailsSlotProps): VNode | string;
170
+ field?(props: CInputFieldSlotProps): VNode;
171
+ };
172
+
173
+ declare const _default$k: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
174
+ props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{
175
+ readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
176
+ readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
177
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (ValidateProps & PresetProps & {
178
+ id?: string;
179
+ modelValue: T | T[] | null | undefined;
174
180
  label?: string;
181
+ details?: string;
182
+ noDetails?: boolean;
183
+ clearable?: boolean;
184
+ disabled?: boolean;
185
+ focused?: boolean;
175
186
  readonly?: boolean;
187
+ kind?: CInputKind;
188
+ } & {
176
189
  focused?: boolean;
177
- disabled?: boolean;
178
- presets?: string[] | string[][];
179
- errorMessage: ValidateState['errorMessage'];
180
- hasError: ValidateState['hasError'];
181
- attrs: Record<string, any>;
182
- uid: string;
183
- validate(): boolean;
184
- }): VNode;
185
- };
186
-
187
- declare const _default$g: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
188
- props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & CInputProps<T> & Partial<{}>> & vue.PublicProps;
190
+ }) & Partial<{}>> & vue.PublicProps;
189
191
  expose(exposed: vue.ShallowUnwrapRef<{
190
- validate: () => boolean;
191
- onFocus: () => void;
192
- onBlur: () => void;
193
- onInput: () => void;
192
+ validate: () => Promise<boolean>;
193
+ focus: () => void;
194
+ blur: () => void;
195
+ reset: () => void;
194
196
  }>): void;
195
197
  attrs: any;
196
198
  slots: CInputSlots;
197
- emit: {};
199
+ emit: CInputEmits<T> & ((evt: "update:focused", value: boolean) => void);
198
200
  }>) => vue.VNode & {
199
201
  __ctx?: Awaited<typeof __VLS_setup>;
200
202
  };
@@ -204,119 +206,22 @@ type __VLS_PrettifyLocal$7<T> = {
204
206
  } & {};
205
207
  //# sourceMappingURL=CInput.vue.d.ts.map
206
208
 
207
- type __VLS_PublicProps$4 = {
208
- modelValue?: string | number;
209
- };
210
- declare var __VLS_17: string | number;
211
- declare var __VLS_18: any;
212
- type __VLS_Slots$5 = {} & {
213
- [K in NonNullable<typeof __VLS_17>]?: (props: typeof __VLS_18) => any;
214
- };
215
- declare const __VLS_component$5: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
216
- "update:modelValue": (value: string | number | undefined) => any;
217
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
218
- "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
219
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
220
- declare const _default$f: __VLS_WithSlots$5<typeof __VLS_component$5, __VLS_Slots$5>;
221
-
222
- type __VLS_WithSlots$5<T, S> = T & {
223
- new (): {
224
- $slots: S;
225
- };
226
- };
227
- //# sourceMappingURL=CTextField.vue.d.ts.map
228
-
229
- type __VLS_Props$4 = {
230
- tag?: 'input' | 'textarea';
231
- focused?: boolean;
232
- };
233
- type __VLS_PublicProps$3 = __VLS_Props$4 & {
234
- modelValue?: string | number | undefined;
235
- };
236
- declare const _default$e: vue.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
237
- "update:modelValue": (value: string | number | undefined) => any;
238
- } & {
239
- focus: () => any;
240
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
241
- onFocus?: (() => any) | undefined;
242
- "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
243
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
244
- //# sourceMappingURL=CField.vue.d.ts.map
245
-
246
- type CAutocompleteProps<T> = {
247
- modelValue: T | T[];
248
- items: T[];
249
- multiple?: boolean;
250
- options?: {
251
- extKey?: string;
252
- noItemsMessage?: string;
253
- menuPreset?: string;
254
- };
255
- };
256
- type CAutocompleteSlots<T> = {
257
- menu(props: {
258
- items: T[];
259
- onSelect(val: T): void;
260
- }): void;
261
- ['no-items-message'](): string;
262
- };
263
-
264
- declare const _default$d: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
265
- props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
266
- readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
267
- readonly "onUpdate:search"?: ((val: string) => any) | undefined;
268
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:search"> & (CAutocompleteProps<T> & {
269
- modelValue?: T | T[];
270
- }) & Partial<{}>> & vue.PublicProps;
271
- expose(exposed: vue.ShallowUnwrapRef<{}>): void;
272
- attrs: any;
273
- slots: CAutocompleteSlots<T>;
274
- emit: ((evt: "update:search", val: string) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
275
- }>) => vue.VNode & {
276
- __ctx?: Awaited<typeof __VLS_setup>;
277
- };
278
-
279
- type __VLS_PrettifyLocal$6<T> = {
280
- [K in keyof T]: T[K];
281
- } & {};
282
- //# sourceMappingURL=CAutocomplete.vue.d.ts.map
283
-
284
- type CSelectProps<T> = {
285
- modelValue: T | T[];
286
- items: T[];
287
- multiple?: boolean;
288
- options?: {
289
- extKey?: string;
290
- noItemsMessage?: string;
291
- };
209
+ type ValidateResult = {
210
+ valid: boolean;
211
+ message: string;
292
212
  };
293
- type CSelectSlots<T> = {
294
- menu(props: {
295
- items: T[];
296
- onSelect(item: T): void;
297
- }): void;
298
- ['no-items-message'](): string;
213
+ type ValidateFn = (value: any) => ValidateResult | Promise<ValidateResult>;
214
+ type ValidateOn = 'input' | 'blur';
215
+ type ValidateProps = {
216
+ rules?: ValidateFn[];
217
+ validateOn?: ValidateOn;
299
218
  };
300
-
301
- declare const _default$c: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
302
- props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
303
- readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
304
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CSelectProps<T> & {
305
- modelValue?: T | T[];
306
- }) & Partial<{}>> & vue.PublicProps;
307
- expose(exposed: vue.ShallowUnwrapRef<{}>): void;
308
- attrs: any;
309
- slots: CSelectSlots<T>;
310
- emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
311
- }>) => vue.VNode & {
312
- __ctx?: Awaited<typeof __VLS_setup>;
219
+ type ValidateState = {
220
+ errorMessage: Maybe<string>;
221
+ hasError: boolean;
222
+ validating: boolean;
313
223
  };
314
224
 
315
- type __VLS_PrettifyLocal$5<T> = {
316
- [K in keyof T]: T[K];
317
- } & {};
318
- //# sourceMappingURL=CSelect.vue.d.ts.map
319
-
320
225
  type COverlayProps = {
321
226
  modelValue: boolean;
322
227
  to?: string;
@@ -327,26 +232,26 @@ type COverlaySlots = {
327
232
  }): VNode;
328
233
  };
329
234
 
330
- type __VLS_Props$3 = COverlayProps;
331
- type __VLS_Slots$4 = COverlaySlots;
332
- type __VLS_PublicProps$2 = __VLS_Props$3 & {
235
+ type __VLS_Props$5 = COverlayProps;
236
+ type __VLS_Slots$a = COverlaySlots;
237
+ type __VLS_PublicProps$4 = __VLS_Props$5 & {
333
238
  modelValue?: boolean;
334
239
  };
335
- declare const __VLS_component$4: vue.DefineComponent<__VLS_PublicProps$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
240
+ declare const __VLS_component$a: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
336
241
  "update:modelValue": (value: boolean) => any;
337
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
242
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
338
243
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
339
244
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
340
- declare const _default$b: __VLS_WithSlots$4<typeof __VLS_component$4, __VLS_Slots$4>;
245
+ declare const _default$j: __VLS_WithSlots$a<typeof __VLS_component$a, __VLS_Slots$a>;
341
246
 
342
- type __VLS_WithSlots$4<T, S> = T & {
247
+ type __VLS_WithSlots$a<T, S> = T & {
343
248
  new (): {
344
249
  $slots: S;
345
250
  };
346
251
  };
347
252
  //# sourceMappingURL=COverlay.vue.d.ts.map
348
253
 
349
- type CMenuProps = ActivatorProps & CoordsProps & DimensionsProps & PositionProps & AutoPositionProps & DelayProps & PresetProps & Partial<COverlayProps> & {
254
+ type CMenuProps = ActivatorProps & DimensionsProps & AutoPositionProps & DelayProps & PresetProps & Partial<COverlayProps> & {
350
255
  closeOnClickOutside?: boolean;
351
256
  closeOnContentClick?: boolean;
352
257
  ssr?: boolean;
@@ -367,11 +272,11 @@ type CMenuEvents = {
367
272
  (e: 'update:modelValue', val: boolean): void;
368
273
  };
369
274
 
370
- type __VLS_Props$2 = CMenuProps;
371
- type __VLS_PublicProps$1 = __VLS_Props$2 & {
275
+ type __VLS_Props$4 = CMenuProps;
276
+ type __VLS_PublicProps$3 = __VLS_Props$4 & {
372
277
  modelValue?: boolean;
373
278
  };
374
- declare var __VLS_1$1: {
279
+ declare var __VLS_1$4: {
375
280
  on: vue.Raw<{
376
281
  focus?: (() => void) | undefined;
377
282
  click?: (() => void) | undefined;
@@ -381,246 +286,540 @@ declare var __VLS_1$1: {
381
286
  activator: Record<string, any>;
382
287
  };
383
288
  declare var __VLS_11: {};
384
- type __VLS_Slots$3 = {} & {
385
- activator?: (props: typeof __VLS_1$1) => any;
289
+ type __VLS_Slots$9 = {} & {
290
+ activator?: (props: typeof __VLS_1$4) => any;
386
291
  } & {
387
292
  default?: (props: typeof __VLS_11) => any;
388
293
  };
389
- declare const __VLS_component$3: vue.DefineComponent<__VLS_PublicProps$1, {
390
- open: () => Promise<void>;
294
+ declare const __VLS_component$9: vue.DefineComponent<__VLS_PublicProps$3, {
295
+ open: () => void;
391
296
  close: () => void;
392
- toggle: () => void | Promise<void>;
297
+ toggle: () => void;
393
298
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
394
299
  "update:modelValue": (value: boolean) => any;
395
300
  } & {
396
301
  click: () => any;
397
302
  close: () => any;
303
+ open: () => any;
398
304
  "update:modelValue": (val: boolean) => any;
399
305
  "outside-click": () => any;
400
- open: () => any;
401
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
306
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
402
307
  onClick?: (() => any) | undefined;
403
308
  onClose?: (() => any) | undefined;
309
+ onOpen?: (() => any) | undefined;
404
310
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
405
311
  "onOutside-click"?: (() => any) | undefined;
406
- onOpen?: (() => any) | undefined;
407
312
  }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
408
- declare const _default$a: __VLS_WithSlots$3<typeof __VLS_component$3, __VLS_Slots$3>;
313
+ declare const _default$i: __VLS_WithSlots$9<typeof __VLS_component$9, __VLS_Slots$9>;
409
314
 
410
- type __VLS_WithSlots$3<T, S> = T & {
315
+ type __VLS_WithSlots$9<T, S> = T & {
411
316
  new (): {
412
317
  $slots: S;
413
318
  };
414
319
  };
415
320
  //# sourceMappingURL=CMenu.vue.d.ts.map
416
321
 
417
- type IconMode = 'lib' | 'sprite' | 'component' | 'raw';
418
- type CIconProps = {
419
- name?: string | number;
420
- source?: IconMode;
421
- component?: Component | null;
422
- body?: string;
423
- viewBox?: string;
424
- size?: string | number;
425
- width?: string | number;
426
- height?: string | number;
427
- tag?: string;
428
- spritePrefix?: string;
429
- spritePath?: string;
322
+ type PresetProps = {
323
+ preset?: string;
430
324
  };
431
325
 
432
- declare const _default$9: vue.DefineComponent<CIconProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CIconProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
433
- //# sourceMappingURL=CIcon.vue.d.ts.map
434
-
435
- type CCheckboxProps<T> = Omit<ValidateProps, 'validateOn'> & {
436
- modelValue: T | T[] | boolean;
437
- label?: string;
438
- size?: number;
326
+ type CAutocompleteProps<T> = IterableItemsProps<T> & SelectableProps<T> & {
327
+ options?: {
328
+ noItemsMessage?: string;
329
+ menuPreset?: string;
330
+ };
439
331
  };
440
- type CCheckboxSlots = {
441
- icon(props: {
442
- checked: boolean;
443
- }): VNode;
444
- default(): VNode;
445
- };
446
- type CCheckboxEvents<T> = {
447
- (e: 'update:modelValue', value: T): void;
332
+ type CAutocompleteSlots<T> = {
333
+ menu(props: {
334
+ items: NormalizedItem<T>[];
335
+ onSelect(val: T): void;
336
+ }): void;
337
+ field: CInputSlots['field'];
338
+ prepend(): VNode;
339
+ append(): VNode;
340
+ chips(props: {
341
+ items: T[];
342
+ }): VNode[];
343
+ details(props: {
344
+ errorMessage?: string;
345
+ details?: string;
346
+ }): VNode;
347
+ ['no-items-message'](): string;
448
348
  };
349
+ type CAutocompletePublicProps<T> = CInputProps<T> & CAutocompleteProps<T>;
449
350
 
450
- declare const _default$8: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
451
- props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
452
- readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
453
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (Omit<ValidateProps, "validateOn"> & {
454
- modelValue: boolean | T | T[];
455
- label?: string;
456
- size?: number;
351
+ declare const _default$h: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
352
+ props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
353
+ readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
354
+ readonly "onUpdate:search"?: ((val: string) => any) | undefined;
355
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (IterableItemsProps<T> & SelectableProps<T> & {
356
+ options?: {
357
+ noItemsMessage?: string;
358
+ menuPreset?: string;
359
+ };
457
360
  } & {
458
- modelValue?: T;
361
+ modelValue?: T | T[];
459
362
  }) & Partial<{}>> & vue.PublicProps;
460
363
  expose(exposed: vue.ShallowUnwrapRef<{}>): void;
461
364
  attrs: any;
462
- slots: CCheckboxSlots;
463
- emit: (evt: "update:modelValue", value: T | undefined) => void;
365
+ slots: CAutocompleteSlots<T>;
366
+ emit: ((evt: "update:search", val: string) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
464
367
  }>) => vue.VNode & {
465
368
  __ctx?: Awaited<typeof __VLS_setup>;
466
369
  };
467
370
 
468
- type __VLS_PrettifyLocal$4<T> = {
371
+ type __VLS_PrettifyLocal$6<T> = {
469
372
  [K in keyof T]: T[K];
470
373
  } & {};
471
- //# sourceMappingURL=CCheckbox.vue.d.ts.map
374
+ //# sourceMappingURL=CAutocomplete.vue.d.ts.map
472
375
 
473
- declare const _default$7: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
474
- props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
376
+ declare const CCard: vue.FunctionalComponent<{}, {}, any, {}>;
377
+ declare const CCardHeader: vue.FunctionalComponent<{}, {}, any, {}>;
378
+ declare const CCardBody: vue.FunctionalComponent<{}, {}, any, {}>;
379
+ declare const CCardFooter: vue.FunctionalComponent<{}, {}, any, {}>;
380
+
381
+ interface CSelectControlProps<T = any> {
382
+ modelValue: T | T[] | boolean;
383
+ value?: T;
384
+ multiple?: boolean;
385
+ focused?: boolean;
386
+ disabled?: boolean;
387
+ readonly?: boolean;
388
+ name?: string;
389
+ }
390
+ interface CSelectControlSlots {
391
+ default(props: {
392
+ checked: boolean;
393
+ disabled: boolean;
394
+ readonly: boolean;
395
+ toggle: () => void;
396
+ }): VNode;
397
+ }
398
+
399
+ declare const _default$g: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
400
+ props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
401
+ readonly "onUpdate:modelValue"?: ((value: boolean | T | T[]) => any) | undefined;
402
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CSelectControlProps<any> & {
403
+ modelValue?: T | T[] | boolean;
404
+ }) & Partial<{}>> & vue.PublicProps;
405
+ expose(exposed: vue.ShallowUnwrapRef<{
406
+ checkOn: () => void;
407
+ checkOff: () => void;
408
+ toggle: () => void;
409
+ }>): void;
410
+ attrs: any;
411
+ slots: CSelectControlSlots;
412
+ emit: (evt: "update:modelValue", value: boolean | T | T[]) => void;
413
+ }>) => vue.VNode & {
414
+ __ctx?: Awaited<typeof __VLS_setup>;
415
+ };
416
+
417
+ type __VLS_PrettifyLocal$5<T> = {
418
+ [K in keyof T]: T[K];
419
+ } & {};
420
+ //# sourceMappingURL=CSelectControl.vue.d.ts.map
421
+
422
+ type CCheckboxModel<T> = T | T[] | boolean;
423
+ type CCheckboxProps<T> = {
424
+ modelValue: CCheckboxModel<T>;
425
+ value?: T;
426
+ size?: number;
427
+ };
428
+ type CCheckboxSlots = {
429
+ icon(props: {
430
+ checked: boolean;
431
+ }): VNode;
432
+ default(): VNode;
433
+ };
434
+ type CCheckboxEvents<T> = {
435
+ (e: 'update:modelValue', value: T): void;
436
+ };
437
+ type CCheckboxPublicProps<T> = CCheckboxProps<T> & CSelectControlProps<T> & CInputProps<CCheckboxModel<T>>;
438
+
439
+ declare const _default$f: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
440
+ props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
475
441
  readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
476
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
477
- label?: string;
478
- } & {
442
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CCheckboxProps<T> & {
479
443
  modelValue?: T;
480
444
  }) & Partial<{}>> & vue.PublicProps;
481
445
  expose(exposed: vue.ShallowUnwrapRef<{}>): void;
482
446
  attrs: any;
483
- slots: {
484
- default?: (props: {}) => any;
485
- };
447
+ slots: CCheckboxSlots;
486
448
  emit: (evt: "update:modelValue", value: T | undefined) => void;
487
449
  }>) => vue.VNode & {
488
450
  __ctx?: Awaited<typeof __VLS_setup>;
489
451
  };
490
452
 
491
- type __VLS_PrettifyLocal$3<T> = {
453
+ type __VLS_PrettifyLocal$4<T> = {
492
454
  [K in keyof T]: T[K];
493
455
  } & {};
494
- //# sourceMappingURL=CRadio.vue.d.ts.map
456
+ //# sourceMappingURL=CCheckbox.vue.d.ts.map
495
457
 
496
- declare var __VLS_6: {
497
- activator: Record<string, any>;
498
- on: vue.Raw<{
499
- focus?: (() => void) | undefined;
500
- click?: (() => void) | undefined;
501
- mouseleave?: (() => void) | undefined;
502
- mouseenter?: (() => void) | undefined;
503
- }>;
504
- };
505
- declare var __VLS_8: {};
506
- type __VLS_Slots$2 = {} & {
507
- activator?: (props: typeof __VLS_6) => any;
508
- } & {
509
- default?: (props: typeof __VLS_8) => any;
458
+ declare var __VLS_1$3: {};
459
+ type __VLS_Slots$8 = {} & {
460
+ default?: (props: typeof __VLS_1$3) => any;
510
461
  };
511
- declare const __VLS_component$2: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
512
- declare const _default$6: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
462
+ declare const __VLS_component$8: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
463
+ declare const _default$e: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
513
464
 
514
- type __VLS_WithSlots$2<T, S> = T & {
465
+ type __VLS_WithSlots$8<T, S> = T & {
515
466
  new (): {
516
467
  $slots: S;
517
468
  };
518
469
  };
519
- //# sourceMappingURL=CTooltip.vue.d.ts.map
470
+ //# sourceMappingURL=CChip.vue.d.ts.map
471
+
472
+ type DatePickerDate = {
473
+ year: number;
474
+ month: number;
475
+ date: number | null;
476
+ day: number;
477
+ mls?: number;
478
+ isHoliday?: boolean;
479
+ isHighlighted?: boolean;
480
+ };
481
+ type DisabledDates = {
482
+ daysOfMonth?: number[];
483
+ from?: Date | string;
484
+ to?: Date | string;
485
+ dates?: (Date | string)[];
486
+ days?: number[];
487
+ ranges?: Array<{
488
+ from: Date | string;
489
+ to: Date | string;
490
+ }>;
491
+ custom?: (date: DatePickerDate) => boolean;
492
+ };
493
+
494
+ type EnrichedDate = {
495
+ dateObj: DatePickerDate | null;
496
+ empty: boolean;
497
+ disabled: boolean;
498
+ highlighted: boolean;
499
+ isSelected: boolean;
500
+ isToday: boolean;
501
+ };
502
+
503
+ type EnrichedMonth = {
504
+ month: number;
505
+ label: string;
506
+ disabled: boolean;
507
+ isSelected: boolean;
508
+ isCurrent: boolean;
509
+ onSelect: () => void;
510
+ };
511
+
512
+ type EnrichedYear = {
513
+ year: number;
514
+ disabled: boolean;
515
+ isSelected: boolean;
516
+ isCurrent: boolean;
517
+ onSelect: () => void;
518
+ };
519
+
520
+ type __VLS_Slots$7 = {
521
+ 'before-header'?(props: DatePickerSlotApi): VNodeChild;
522
+ header?(props: DatePickerSlotApi): VNodeChild;
523
+ 'before-body'?(props: DatePickerSlotApi): VNodeChild;
524
+ body?(props: DatePickerSlotApi): VNodeChild;
525
+ footer?(props: DatePickerSlotApi): VNodeChild;
526
+ week?(props: {
527
+ days: DatePickerWeekDay[];
528
+ }): VNodeChild;
529
+ dates?(props: {
530
+ dates: EnrichedDate[];
531
+ onSelect: (d: DatePickerDate) => void;
532
+ }): any;
533
+ date?(props: DatePickerDate & {
534
+ isSelected: boolean;
535
+ isToday: boolean;
536
+ }): VNodeChild;
537
+ months?(props: {
538
+ months: EnrichedMonth[];
539
+ }): VNodeChild;
540
+ month?(props: EnrichedMonth): VNodeChild;
541
+ years?(props: {
542
+ years: EnrichedYear[];
543
+ }): VNodeChild;
544
+ year?(props: EnrichedYear): VNodeChild;
545
+ };
546
+ declare const enum ViewMode {
547
+ DATES = 0,
548
+ MONTHS = 1,
549
+ YEARS = 2
550
+ }
551
+ type DatePickerSlotApi = {
552
+ view: ViewMode;
553
+ value: string;
554
+ selected: DatePickerDate;
555
+ disablePrev: boolean;
556
+ disableNext: boolean;
557
+ onNext: () => void;
558
+ onPrev: () => void;
559
+ onTable: () => void;
560
+ onToday: () => void;
561
+ };
562
+ type DatePickerWeekDay = {
563
+ day: number;
564
+ label: string | undefined;
565
+ };
566
+ type DatePickerEnrichedDate = EnrichedDate;
567
+ type DatePickerEnrichedMonth = EnrichedMonth;
568
+ type DatePickerEnrichedYear = EnrichedYear;
569
+ type CDatePickerProps = {
570
+ modelValue?: Date | string | null;
571
+ lang?: string;
572
+ format?: string;
573
+ mondayFirst?: boolean;
574
+ disabledDates?: DisabledDates;
575
+ highlightedDates?: (Date | string)[];
576
+ minDate?: Date | string;
577
+ maxDate?: Date | string;
578
+ };
579
+ declare const __VLS_component$7: vue.DefineComponent<CDatePickerProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
580
+ "update:modelValue": (value: Date | null) => any;
581
+ selected: (value: Date | null) => any;
582
+ }, string, vue.PublicProps, Readonly<CDatePickerProps> & Readonly<{
583
+ "onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
584
+ onSelected?: ((value: Date | null) => any) | undefined;
585
+ }>, {
586
+ lang: string;
587
+ format: string;
588
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
589
+ declare const _default$d: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
520
590
 
521
- type CLabelProps = {
522
- tag?: string;
591
+ type __VLS_WithSlots$7<T, S> = T & {
592
+ new (): {
593
+ $slots: S;
594
+ };
523
595
  };
524
596
 
525
- declare const CLabel: FunctionalComponent<CLabelProps>;
526
-
527
- type __VLS_Props$1 = {
528
- fixed?: boolean;
597
+ type DateLocale = {
598
+ months: string[];
599
+ monthsAbbr: string[];
600
+ week: string[];
601
+ };
602
+
603
+ declare function datePickerValueToString(value: Date | string | null | undefined, format: string, lang: string): string;
604
+
605
+ type __VLS_Props$3 = CDateInputProps;
606
+ type __VLS_Slots$6 = {
607
+ prepend?(): any;
608
+ append?(): any;
609
+ date?(props: DatePickerDate & {
610
+ isSelected: boolean;
611
+ isToday: boolean;
612
+ }): any;
613
+ week?(props: {
614
+ days: DatePickerWeekDay[];
615
+ }): any;
616
+ dates?(props: {
617
+ dates: DatePickerEnrichedDate[];
618
+ onSelect: (d: DatePickerDate) => void;
619
+ }): any;
620
+ 'before-header'?(props: DatePickerSlotApi): any;
621
+ header?(props: DatePickerSlotApi): any;
622
+ 'before-body'?(props: DatePickerSlotApi): any;
623
+ body?(props: DatePickerSlotApi): any;
624
+ footer?(props: DatePickerSlotApi): any;
625
+ };
626
+ type CDateInputProps = ValidateProps & PresetProps & {
627
+ modelValue?: Date | null;
628
+ label?: string;
629
+ details?: string;
630
+ noDetails?: boolean;
631
+ clearable?: boolean;
632
+ disabled?: boolean;
633
+ readonly?: boolean;
634
+ typeable?: boolean;
635
+ placeholder?: string;
636
+ lang?: string;
637
+ format?: string;
638
+ mondayFirst?: boolean;
639
+ disabledDates?: DisabledDates;
640
+ highlightedDates?: (Date | string)[];
641
+ minDate?: Date | string;
642
+ maxDate?: Date | string;
529
643
  };
530
- declare var __VLS_1: {};
531
- type __VLS_Slots$1 = {} & {
532
- default?: (props: typeof __VLS_1) => any;
644
+ type __VLS_PublicProps$2 = __VLS_Props$3 & {
645
+ modelValue?: Date | null;
533
646
  };
534
- declare const __VLS_component$1: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$1> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
535
- declare const _default$5: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
647
+ declare const __VLS_component$6: vue.DefineComponent<__VLS_PublicProps$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
648
+ blur: () => any;
649
+ focus: () => any;
650
+ "update:modelValue": (...args: unknown[]) => any;
651
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
652
+ onBlur?: (() => any) | undefined;
653
+ onFocus?: (() => any) | undefined;
654
+ "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
655
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
656
+ declare const _default$c: __VLS_WithSlots$6<typeof __VLS_component$6, __VLS_Slots$6>;
536
657
 
537
- type __VLS_WithSlots$1<T, S> = T & {
658
+ type __VLS_WithSlots$6<T, S> = T & {
538
659
  new (): {
539
660
  $slots: S;
540
661
  };
541
662
  };
542
- //# sourceMappingURL=CToolbar.vue.d.ts.map
543
663
 
544
- declare const CToolbarLogo: vue.FunctionalComponent<{}, {}, any, {}>;
545
- declare const CToolbarItems: vue.FunctionalComponent<{}, {}, any, {}>;
546
-
547
- type CListProps<T> = {
548
- modelValue?: T | T[] | null;
549
- multiple?: boolean;
550
- mandatory?: boolean;
551
- readonly?: boolean;
664
+ type CDialogProps = COverlayProps & {
665
+ closeOnClickOutside?: boolean;
552
666
  };
553
- type CListSlots<T> = {
554
- default?(props: {
555
- select(item: T): void;
556
- unselect(item: T): void;
557
- isActive(item: T): boolean;
558
- }): VNode | VNode[];
667
+ type CDialogSlots = {
668
+ default(): VNode;
559
669
  };
560
670
 
561
- declare const _default$4: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
562
- props: __VLS_PrettifyLocal$2<Pick<Partial<{}> & Omit<{
563
- readonly "onUpdate:modelValue"?: ((value: T | T[] | null) => any) | undefined;
564
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CListProps<T> & {
565
- modelValue?: T | T[] | null;
566
- }) & Partial<{}>> & vue.PublicProps;
567
- expose(exposed: vue.ShallowUnwrapRef<{}>): void;
568
- attrs: any;
569
- slots: CListSlots<T>;
570
- emit: (evt: "update:modelValue", value: T | T[] | null) => void;
571
- }>) => vue.VNode & {
572
- __ctx?: Awaited<typeof __VLS_setup>;
671
+ type __VLS_Props$2 = CDialogProps;
672
+ type __VLS_Slots$5 = CDialogSlots;
673
+ type __VLS_PublicProps$1 = __VLS_Props$2 & {
674
+ modelValue?: boolean;
573
675
  };
676
+ declare const __VLS_component$5: vue.DefineComponent<__VLS_PublicProps$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
677
+ "update:modelValue": (value: boolean) => any;
678
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
679
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
680
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
681
+ declare const _default$b: __VLS_WithSlots$5<typeof __VLS_component$5, __VLS_Slots$5>;
574
682
 
575
- type __VLS_PrettifyLocal$2<T> = {
576
- [K in keyof T]: T[K];
577
- } & {};
578
- //# sourceMappingURL=CList.vue.d.ts.map
579
-
580
- declare const _default$3: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
581
- props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & {
582
- value?: T;
583
- } & Partial<{}>> & vue.PublicProps;
584
- expose(exposed: vue.ShallowUnwrapRef<{}>): void;
585
- attrs: any;
586
- slots: {
587
- default?: (props: {}) => any;
683
+ type __VLS_WithSlots$5<T, S> = T & {
684
+ new (): {
685
+ $slots: S;
588
686
  };
589
- emit: {};
590
- }>) => vue.VNode & {
591
- __ctx?: Awaited<typeof __VLS_setup>;
592
687
  };
688
+ //# sourceMappingURL=CDialog.vue.d.ts.map
593
689
 
594
- type __VLS_PrettifyLocal$1<T> = {
595
- [K in keyof T]: T[K];
596
- } & {};
597
- //# sourceMappingURL=CListItem.vue.d.ts.map
690
+ declare const _default$a: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
691
+ //# sourceMappingURL=CDialogsStack.vue.d.ts.map
598
692
 
599
- declare const CListItemIcon: vue.FunctionalComponent<{}, {}, any, {}>;
600
- declare const CListItemTitle: vue.FunctionalComponent<{}, {}, any, {}>;
693
+ type CFieldProps = {
694
+ tag?: 'input' | 'textarea';
695
+ label?: string;
696
+ filled?: boolean;
697
+ preset?: string;
698
+ focused?: boolean;
699
+ clearable?: boolean;
700
+ error?: boolean;
701
+ disabled?: boolean;
702
+ readonly?: boolean;
703
+ noInput?: boolean;
704
+ modelValue?: string | number | undefined | null;
705
+ };
706
+ type CFieldSlots = {
707
+ prepend?(): VNode;
708
+ append?(): VNode;
709
+ before?(): VNode | VNode[];
710
+ after?(): VNode | VNode[];
711
+ clear?(): VNode;
712
+ };
713
+
714
+ type __VLS_Props$1 = CFieldProps;
715
+ type __VLS_PublicProps = __VLS_Props$1 & {
716
+ modelValue?: string | number | undefined | null;
717
+ };
718
+ declare var __VLS_1$2: {};
719
+ declare var __VLS_7: {};
720
+ declare var __VLS_19: {};
721
+ declare var __VLS_25: {};
722
+ declare var __VLS_31: {};
723
+ type __VLS_Slots$4 = {} & {
724
+ prepend?: (props: typeof __VLS_1$2) => any;
725
+ } & {
726
+ before?: (props: typeof __VLS_7) => any;
727
+ } & {
728
+ after?: (props: typeof __VLS_19) => any;
729
+ } & {
730
+ clear?: (props: typeof __VLS_25) => any;
731
+ } & {
732
+ append?: (props: typeof __VLS_31) => any;
733
+ };
734
+ declare const __VLS_component$4: vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
735
+ "update:modelValue": (value: string | number | null | undefined) => any;
736
+ } & {
737
+ clear: () => any;
738
+ }, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
739
+ onClear?: (() => any) | undefined;
740
+ "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
741
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
742
+ declare const _default$9: __VLS_WithSlots$4<typeof __VLS_component$4, __VLS_Slots$4>;
601
743
 
602
- type CItemsProps = {
603
- modelValue: any;
604
- multiple?: boolean;
605
- mandatory?: boolean;
606
- options?: {
607
- extKey?: string;
608
- noItemsMessage?: string;
609
- menuClass?: string;
744
+ type __VLS_WithSlots$4<T, S> = T & {
745
+ new (): {
746
+ $slots: S;
610
747
  };
611
- items: any[];
612
748
  };
613
- type CItemsSlots = {
614
- 'no-items-message'?: () => any;
749
+ //# sourceMappingURL=CField.vue.d.ts.map
750
+
751
+ type ValidatorFn = () => boolean | Promise<boolean>;
752
+ type ResetFn = () => void;
753
+ interface FormAPI {
754
+ add(fn: ValidatorFn): void;
755
+ remove(fn: ValidatorFn): void;
756
+ addReset(fn: ResetFn): void;
757
+ removeReset(fn: ResetFn): void;
758
+ }
759
+ type CFormProps = {
760
+ label?: string;
761
+ };
762
+ type CFormEmits = {
763
+ submit: [event: Event];
764
+ };
765
+ type CFormSlots = {
766
+ default(props: {
767
+ validate: ValidatorFn;
768
+ reset: () => void;
769
+ }): VNode;
615
770
  };
616
- declare const CItems: vue.DefineComponent<CItemsProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CItemsProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
617
771
 
618
- declare const CMain: vue.FunctionalComponent<{}, {}, any, {}>;
772
+ type __VLS_Slots$3 = CFormSlots;
773
+ declare function validate(): Promise<boolean>;
774
+ declare function reset(): void;
775
+ declare const __VLS_component$3: vue.DefineComponent<CFormProps, {
776
+ validate: typeof validate;
777
+ reset: typeof reset;
778
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
779
+ submit: (event: Event) => any;
780
+ }, string, vue.PublicProps, Readonly<CFormProps> & Readonly<{
781
+ onSubmit?: ((event: Event) => any) | undefined;
782
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
783
+ declare const _default$8: __VLS_WithSlots$3<typeof __VLS_component$3, __VLS_Slots$3>;
619
784
 
620
- declare const CCard: vue.FunctionalComponent<{}, {}, any, {}>;
621
- declare const CCardHeader: vue.FunctionalComponent<{}, {}, any, {}>;
622
- declare const CCardBody: vue.FunctionalComponent<{}, {}, any, {}>;
623
- declare const CCardFooter: vue.FunctionalComponent<{}, {}, any, {}>;
785
+ type __VLS_WithSlots$3<T, S> = T & {
786
+ new (): {
787
+ $slots: S;
788
+ };
789
+ };
790
+ //# sourceMappingURL=CForm.vue.d.ts.map
791
+
792
+ declare const CCol: vue.DefineComponent<vue.ExtractPropTypes<{
793
+ order: {
794
+ type: PropType<string | number>;
795
+ default: null;
796
+ };
797
+ cols: {
798
+ type: PropType<string | number>;
799
+ default: null;
800
+ };
801
+ offset: {
802
+ type: PropType<string | number>;
803
+ default: null;
804
+ };
805
+ }>, () => VNode, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
806
+ order: {
807
+ type: PropType<string | number>;
808
+ default: null;
809
+ };
810
+ cols: {
811
+ type: PropType<string | number>;
812
+ default: null;
813
+ };
814
+ offset: {
815
+ type: PropType<string | number>;
816
+ default: null;
817
+ };
818
+ }>> & Readonly<{}>, {
819
+ order: string | number;
820
+ cols: string | number;
821
+ offset: string | number;
822
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
624
823
 
625
824
  declare const justifyValues: readonly ["start", "center", "end", "space-between", "space-around"];
626
825
  declare const alignValues: readonly ["start", "center", "end", "baseline", "stretch"];
@@ -669,68 +868,141 @@ declare const CRow: vue.DefineComponent<vue.ExtractPropTypes<{
669
868
  justify: "start" | "center" | "end" | "space-between" | "space-around";
670
869
  }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
671
870
 
672
- declare const CCol: vue.DefineComponent<vue.ExtractPropTypes<{
673
- order: {
674
- type: PropType<string | number>;
675
- default: null;
676
- };
677
- cols: {
678
- type: PropType<string | number>;
679
- default: null;
680
- };
681
- offset: {
682
- type: PropType<string | number>;
683
- default: null;
684
- };
685
- }>, () => VNode, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
686
- order: {
687
- type: PropType<string | number>;
688
- default: null;
689
- };
690
- cols: {
691
- type: PropType<string | number>;
692
- default: null;
693
- };
694
- offset: {
695
- type: PropType<string | number>;
696
- default: null;
697
- };
698
- }>> & Readonly<{}>, {
699
- order: string | number;
700
- cols: string | number;
701
- offset: string | number;
702
- }, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
703
-
704
871
  declare const CSpacer: vue.FunctionalComponent<{}, {}, any, {}>;
705
872
 
706
- type CDialogProps = COverlayProps & {
707
- closeOnClickOutside?: boolean;
873
+ type CIconProps = {
874
+ name?: string | number;
875
+ source?: IconMode;
876
+ component?: Component | null;
877
+ body?: string;
878
+ viewBox?: string;
879
+ size?: string | number;
880
+ width?: string | number;
881
+ height?: string | number;
882
+ tag?: string;
883
+ spritePrefix?: string;
884
+ spritePath?: string;
708
885
  };
709
- type CDialogSlots = {
710
- default(): VNode;
886
+
887
+ declare const _default$7: vue.DefineComponent<CIconProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CIconProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
888
+ //# sourceMappingURL=CIcon.vue.d.ts.map
889
+
890
+ type CLabelProps = {
891
+ tag?: string;
711
892
  };
712
893
 
713
- type __VLS_Slots = CDialogSlots;
714
- type __VLS_Props = CDialogProps;
715
- type __VLS_PublicProps = __VLS_Props & {
716
- modelValue?: boolean;
894
+ declare const CLabel: FunctionalComponent<CLabelProps>;
895
+
896
+ type CListRole = 'listbox' | 'menu' | undefined;
897
+ type CListProps<T> = {
898
+ modelValue?: T | T[] | null;
899
+ multiple?: boolean;
900
+ mandatory?: boolean;
901
+ readonly?: boolean;
902
+ selectable?: boolean;
903
+ role?: CListRole;
904
+ };
905
+ type CListSlots<T> = {
906
+ default?(props: {
907
+ select(item: T): void;
908
+ unselect(item: T): void;
909
+ isActive(item: T): boolean;
910
+ }): VNode | VNode[];
911
+ };
912
+ type ListItemControls = {
913
+ focus(): void;
914
+ blur(): void;
915
+ };
916
+ type ListAPI<T = any> = {
917
+ role: ComputedRef<CListRole>;
918
+ register(controls: ListItemControls): void;
919
+ unregister(controls: ListItemControls): void;
920
+ select(value: T): void;
921
+ unselect(value: T): void;
922
+ isActive(value: T): boolean;
717
923
  };
718
- declare const __VLS_component: vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
719
- "update:modelValue": (value: boolean) => any;
720
- }, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
721
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
722
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
723
- declare const _default$2: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
724
924
 
725
- type __VLS_WithSlots<T, S> = T & {
925
+ declare const _default$6: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
926
+ props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
927
+ readonly "onUpdate:modelValue"?: ((value: T | T[] | null) => any) | undefined;
928
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (CListProps<T> & {
929
+ modelValue?: T | T[] | null;
930
+ }) & Partial<{}>> & vue.PublicProps;
931
+ expose(exposed: vue.ShallowUnwrapRef<{
932
+ focus: () => Promise<void>;
933
+ }>): void;
934
+ attrs: any;
935
+ slots: CListSlots<T>;
936
+ emit: (evt: "update:modelValue", value: T | T[] | null) => void;
937
+ }>) => vue.VNode & {
938
+ __ctx?: Awaited<typeof __VLS_setup>;
939
+ };
940
+
941
+ type __VLS_PrettifyLocal$3<T> = {
942
+ [K in keyof T]: T[K];
943
+ } & {};
944
+ //# sourceMappingURL=CList.vue.d.ts.map
945
+
946
+ declare const _default$5: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
947
+ props: __VLS_PrettifyLocal$2<Pick<Partial<{}> & Omit<{} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & {
948
+ value?: T;
949
+ } & Partial<{}>> & vue.PublicProps;
950
+ expose(exposed: vue.ShallowUnwrapRef<{}>): void;
951
+ attrs: any;
952
+ slots: {
953
+ default?: (props: {}) => any;
954
+ };
955
+ emit: {};
956
+ }>) => vue.VNode & {
957
+ __ctx?: Awaited<typeof __VLS_setup>;
958
+ };
959
+
960
+ type __VLS_PrettifyLocal$2<T> = {
961
+ [K in keyof T]: T[K];
962
+ } & {};
963
+ //# sourceMappingURL=CListItem.vue.d.ts.map
964
+
965
+ declare const CListItemIcon: vue.FunctionalComponent<{}, {}, any, {}>;
966
+ declare const CListItemTitle: vue.FunctionalComponent<{}, {}, any, {}>;
967
+
968
+ declare const CMain: vue.FunctionalComponent<{}, {}, any, {}>;
969
+
970
+ declare const _default$4: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
971
+ props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{
972
+ readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
973
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & ({
974
+ label?: string;
975
+ } & {
976
+ modelValue?: T;
977
+ }) & Partial<{}>> & vue.PublicProps;
978
+ expose(exposed: vue.ShallowUnwrapRef<{}>): void;
979
+ attrs: any;
980
+ slots: {
981
+ default?: (props: {}) => any;
982
+ };
983
+ emit: (evt: "update:modelValue", value: T | undefined) => void;
984
+ }>) => vue.VNode & {
985
+ __ctx?: Awaited<typeof __VLS_setup>;
986
+ };
987
+
988
+ type __VLS_PrettifyLocal$1<T> = {
989
+ [K in keyof T]: T[K];
990
+ } & {};
991
+ //# sourceMappingURL=CRadio.vue.d.ts.map
992
+
993
+ declare var __VLS_1$1: {};
994
+ type __VLS_Slots$2 = {} & {
995
+ default?: (props: typeof __VLS_1$1) => any;
996
+ };
997
+ declare const __VLS_component$2: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
998
+ declare const _default$3: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
999
+
1000
+ type __VLS_WithSlots$2<T, S> = T & {
726
1001
  new (): {
727
1002
  $slots: S;
728
1003
  };
729
1004
  };
730
- //# sourceMappingURL=CDialog.vue.d.ts.map
731
-
732
- declare const _default$1: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
733
- //# sourceMappingURL=CDialogsStack.vue.d.ts.map
1005
+ //# sourceMappingURL=CRadioGroup.vue.d.ts.map
734
1006
 
735
1007
  type CScrimProps = {
736
1008
  blur?: boolean;
@@ -738,34 +1010,45 @@ type CScrimProps = {
738
1010
  };
739
1011
  declare const CScrim: (props: CScrimProps, ctx: any) => VNode;
740
1012
 
741
- interface CSelectControlProps<T = any> {
742
- modelValue: T | T[] | boolean;
743
- value?: T;
744
- multiple?: boolean;
745
- focused?: boolean;
746
- disabled?: boolean;
747
- readonly?: boolean;
748
- name?: string;
749
- }
750
- interface CSelectControlSlots {
751
- default(props: {
752
- checked: boolean;
753
- disabled: boolean;
754
- readonly: boolean;
755
- toggle: () => void;
1013
+ type CSelectProps<T> = SelectableProps<T> & IterableItemsProps<T> & {
1014
+ options?: {
1015
+ extKey?: string;
1016
+ noItemsMessage?: string;
1017
+ };
1018
+ };
1019
+ type CSelectSlots<T> = {
1020
+ menu(props: {
1021
+ items: NormalizedItem<T>[];
1022
+ onSelect(val: T): void;
1023
+ }): void;
1024
+ field: CInputSlots['field'];
1025
+ prepend(): VNode;
1026
+ append(): VNode;
1027
+ selects(props: {
1028
+ items: T[];
1029
+ }): VNode[];
1030
+ details(props: {
1031
+ errorMessage?: string;
1032
+ details?: string;
756
1033
  }): VNode;
757
- }
1034
+ ['no-items-message'](): string;
1035
+ };
758
1036
 
759
- declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1037
+ declare const _default$2: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
760
1038
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
761
- readonly "onUpdate:modelValue"?: ((value: boolean | T | T[]) => any) | undefined;
762
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CSelectControlProps<any> & {
763
- modelValue?: T | T[] | boolean;
1039
+ readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
1040
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & (SelectableProps<T> & IterableItemsProps<T> & {
1041
+ options?: {
1042
+ extKey?: string;
1043
+ noItemsMessage?: string;
1044
+ };
1045
+ } & {
1046
+ modelValue?: T | T[];
764
1047
  }) & Partial<{}>> & vue.PublicProps;
765
1048
  expose(exposed: vue.ShallowUnwrapRef<{}>): void;
766
1049
  attrs: any;
767
- slots: CSelectControlSlots;
768
- emit: (evt: "update:modelValue", value: boolean | T | T[]) => void;
1050
+ slots: CSelectSlots<T>;
1051
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
769
1052
  }>) => vue.VNode & {
770
1053
  __ctx?: Awaited<typeof __VLS_setup>;
771
1054
  };
@@ -773,7 +1056,75 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
773
1056
  type __VLS_PrettifyLocal<T> = {
774
1057
  [K in keyof T]: T[K];
775
1058
  } & {};
776
- //# sourceMappingURL=CSelectControl.vue.d.ts.map
1059
+ //# sourceMappingURL=CSelect.vue.d.ts.map
1060
+
1061
+ type CTextFieldProps = Omit<CInputProps, 'modelValue' | 'kind'>;
1062
+ type CTextFieldSlots = {
1063
+ prepend(): VNode;
1064
+ append(): VNode;
1065
+ details(props: {
1066
+ errorMessage?: string;
1067
+ details?: string;
1068
+ hasError: boolean;
1069
+ }): VNode;
1070
+ };
1071
+ type CTextFieldEmits<T = any> = {
1072
+ (e: 'update:modelValue', val: T): void;
1073
+ };
1074
+
1075
+ type CTextFieldComponent = new <T = any>() => {
1076
+ $props: CTextFieldProps & {
1077
+ modelValue?: T;
1078
+ };
1079
+ $slots: CTextFieldSlots;
1080
+ $emits: CTextFieldEmits<T>;
1081
+ };
1082
+ declare const CTextField: CTextFieldComponent;
1083
+
1084
+ type __VLS_Props = {
1085
+ fixed?: boolean;
1086
+ };
1087
+ declare var __VLS_1: {};
1088
+ type __VLS_Slots$1 = {} & {
1089
+ default?: (props: typeof __VLS_1) => any;
1090
+ };
1091
+ declare const __VLS_component$1: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
1092
+ declare const _default$1: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
1093
+
1094
+ type __VLS_WithSlots$1<T, S> = T & {
1095
+ new (): {
1096
+ $slots: S;
1097
+ };
1098
+ };
1099
+ //# sourceMappingURL=CToolbar.vue.d.ts.map
1100
+
1101
+ declare const CToolbarLogo: vue.FunctionalComponent<{}, {}, any, {}>;
1102
+ declare const CToolbarItems: vue.FunctionalComponent<{}, {}, any, {}>;
1103
+
1104
+ declare var __VLS_6: {
1105
+ activator: Record<string, any>;
1106
+ on: vue.Raw<{
1107
+ focus?: (() => void) | undefined;
1108
+ click?: (() => void) | undefined;
1109
+ mouseleave?: (() => void) | undefined;
1110
+ mouseenter?: (() => void) | undefined;
1111
+ }>;
1112
+ };
1113
+ declare var __VLS_8: {};
1114
+ type __VLS_Slots = {} & {
1115
+ activator?: (props: typeof __VLS_6) => any;
1116
+ } & {
1117
+ default?: (props: typeof __VLS_8) => any;
1118
+ };
1119
+ declare const __VLS_component: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
1120
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
1121
+
1122
+ type __VLS_WithSlots<T, S> = T & {
1123
+ new (): {
1124
+ $slots: S;
1125
+ };
1126
+ };
1127
+ //# sourceMappingURL=CTooltip.vue.d.ts.map
777
1128
 
778
- export { _default$j as CApp, _default$d as CAutocomplete, _default$i as CBtn, CCard, CCardBody, CCardFooter, CCardHeader, _default$8 as CCheckbox, CCol, _default$2 as CDialog, _default$1 as CDialogsStack, _default$e as CField, _default$h as CForm, _default$9 as CIcon, _default$g as CInput, CItems, CLabel, _default$4 as CList, _default$3 as CListItem, CListItemIcon, CListItemTitle, CMain, _default$a as CMenu, _default$b as COverlay, _default$7 as CRadio, CRow, CScrim, _default$c as CSelect, _default as CSelectControl, CSpacer, _default$f as CTextField, _default$5 as CToolbar, CToolbarItems, CToolbarLogo, _default$6 as CTooltip };
779
- export type { ApplicationApi, CAutocompleteProps, CAutocompleteSlots, CCheckboxEvents, CCheckboxProps, CCheckboxSlots, CDialogProps, CDialogSlots, CInputProps, CInputSlots, CItemsProps, CItemsSlots, CListProps, CListSlots, CMenuEvents, CMenuProps, CMenuSlots, COverlayProps, COverlaySlots, CScrimProps, CSelectControlProps, CSelectControlSlots, CSelectProps, CSelectSlots, FormApi, FormSlots, ValidatorFn };
1129
+ export { _default$m as CApp, _default$h as CAutocomplete, _default$l as CBtn, CCard, CCardBody, CCardFooter, CCardHeader, _default$f as CCheckbox, _default$e as CChip, CCol, _default$c as CDateInput, _default$d as CDatePicker, _default$b as CDialog, _default$a as CDialogsStack, _default$9 as CField, _default$8 as CForm, _default$7 as CIcon, _default$k as CInput, CLabel, _default$6 as CList, _default$5 as CListItem, CListItemIcon, CListItemTitle, CMain, _default$i as CMenu, _default$j as COverlay, _default$4 as CRadio, _default$3 as CRadioGroup, CRow, CScrim, _default$2 as CSelect, _default$g as CSelectControl, CSpacer, CTextField, _default$1 as CToolbar, CToolbarItems, CToolbarLogo, _default as CTooltip, datePickerValueToString };
1130
+ export type { ApplicationApi, CAppSlots, CAutocompleteProps, CAutocompletePublicProps, CAutocompleteSlots, CBtnProps, CCheckboxEvents, CCheckboxModel, CCheckboxProps, CCheckboxPublicProps, CCheckboxSlots, CDateInputProps, CDatePickerProps, CDialogProps, CDialogSlots, CFieldProps, CFieldSlots, CFormEmits, CFormProps, CFormSlots, CInputDetailsSlotProps, CInputEmits, CInputFieldSlotProps, CInputKind, CInputProps, CInputSlots, CLabelProps, CListProps, CListRole, CListSlots, CMenuEvents, CMenuProps, CMenuSlots, COverlayProps, COverlaySlots, CScrimProps, CSelectControlProps, CSelectControlSlots, CSelectProps, CSelectSlots, CTextFieldProps, CTextFieldSlots, DateLocale, DatePickerDate, DatePickerEnrichedDate, DatePickerEnrichedMonth, DatePickerEnrichedYear, DatePickerSlotApi, DatePickerWeekDay, DisabledDates, FormAPI, InputState, ListAPI, ListItemControls, ResetFn, ValidatorFn };