@acorex/components 6.5.26 → 6.5.28

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 (631) hide show
  1. package/karma.conf.js +32 -0
  2. package/ng-package.json +10 -0
  3. package/package.json +12 -32
  4. package/src/lib/accordion/accordion.component.ts +43 -0
  5. package/src/lib/accordion/accordion.module.ts +11 -0
  6. package/src/lib/accordion/api.ts +2 -0
  7. package/src/lib/base/base-page.class.ts +116 -0
  8. package/src/lib/base/components.class.ts +9 -0
  9. package/src/lib/base/element.class.ts +344 -0
  10. package/src/lib/base/events.class.ts +32 -0
  11. package/src/lib/button/button.component.html +17 -0
  12. package/src/lib/button/button.component.ts +72 -0
  13. package/src/lib/button/button.module.ts +14 -0
  14. package/src/lib/calendar/calendar-box/calendar-box.component.html +68 -0
  15. package/src/lib/calendar/calendar-box/calendar-box.component.ts +461 -0
  16. package/src/lib/calendar/calendar-box/calendar-box.module.ts +16 -0
  17. package/src/lib/calendar/scheduler/scheduler-views.property.ts +38 -0
  18. package/{lib/calendar/scheduler/scheduler.class.d.ts → src/lib/calendar/scheduler/scheduler.class.ts} +20 -6
  19. package/src/lib/calendar/scheduler/scheduler.component.html +9 -0
  20. package/src/lib/calendar/scheduler/scheduler.component.scss +181 -0
  21. package/src/lib/calendar/scheduler/scheduler.component.ts +249 -0
  22. package/src/lib/calendar/scheduler/scheduler.module.ts +45 -0
  23. package/src/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.ts +133 -0
  24. package/src/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.ts +33 -0
  25. package/src/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.html +43 -0
  26. package/src/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.scss +66 -0
  27. package/src/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.ts +50 -0
  28. package/src/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.html +45 -0
  29. package/src/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.scss +19 -0
  30. package/src/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.ts +103 -0
  31. package/src/lib/calendar/scheduler/views/month/scheduler-month-view.component.html +39 -0
  32. package/src/lib/calendar/scheduler/views/month/scheduler-month-view.component.scss +55 -0
  33. package/src/lib/calendar/scheduler/views/month/scheduler-month-view.component.ts +233 -0
  34. package/src/lib/calendar/scheduler/views/scheduler-view.component.ts +124 -0
  35. package/src/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.html +50 -0
  36. package/src/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.scss +4 -0
  37. package/src/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.ts +92 -0
  38. package/src/lib/checkbox/checkbox.component.html +22 -0
  39. package/src/lib/checkbox/checkbox.component.ts +107 -0
  40. package/src/lib/checkbox/checkbox.module.ts +11 -0
  41. package/src/lib/color-picker/color-box/color-box.component.html +37 -0
  42. package/src/lib/color-picker/color-box/color-box.component.scss +60 -0
  43. package/src/lib/color-picker/color-box/color-box.component.ts +438 -0
  44. package/src/lib/color-picker/color-picker.component.html +31 -0
  45. package/src/lib/color-picker/color-picker.component.ts +87 -0
  46. package/src/lib/color-picker/color-picker.module.ts +16 -0
  47. package/src/lib/context-menu/context-menu.component.html +42 -0
  48. package/src/lib/context-menu/context-menu.component.ts +78 -0
  49. package/src/lib/context-menu/context-menu.directive.ts +159 -0
  50. package/src/lib/context-menu/context-menu.module.ts +15 -0
  51. package/src/lib/data-filter/columns/filter-column-date.component.ts +123 -0
  52. package/src/lib/data-filter/columns/filter-column-number.component.ts +100 -0
  53. package/src/lib/data-filter/columns/filter-column-selection.component.ts +69 -0
  54. package/src/lib/data-filter/columns/filter-column-string.component.ts +100 -0
  55. package/src/lib/data-filter/filter-panel/filter-panel.component.html +120 -0
  56. package/src/lib/data-filter/filter-panel/filter-panel.component.scss +143 -0
  57. package/src/lib/data-filter/filter-panel/filter-panel.component.ts +266 -0
  58. package/src/lib/data-filter/filter.class.ts +73 -0
  59. package/src/lib/data-filter/filter.module.ts +52 -0
  60. package/src/lib/data-filter/toolbar/filter-toolbar.component.html +5 -0
  61. package/src/lib/data-filter/toolbar/filter-toolbar.component.scss +17 -0
  62. package/src/lib/data-filter/toolbar/filter-toolbar.component.ts +179 -0
  63. package/src/lib/data-list/core/data-list.component.ts +62 -0
  64. package/src/lib/data-list/list/list.component.html +32 -0
  65. package/src/lib/data-list/list/list.component.scss +64 -0
  66. package/src/lib/data-list/list/list.component.ts +149 -0
  67. package/src/lib/data-list/list/list.module.ts +14 -0
  68. package/src/lib/data-list/list/toolbar-list-view.component.ts +63 -0
  69. package/src/lib/data-source/datasource.component.ts +50 -0
  70. package/src/lib/data-source/datasource.module.ts +11 -0
  71. package/{lib/data-source/read-param.d.ts → src/lib/data-source/read-param.ts} +13 -3
  72. package/src/lib/date-picker/date-picker.component.html +30 -0
  73. package/src/lib/date-picker/date-picker.component.scss +5 -0
  74. package/src/lib/date-picker/date-picker.component.ts +720 -0
  75. package/src/lib/date-picker/date-picker.module.ts +17 -0
  76. package/src/lib/dialog/dialog.component.html +5 -0
  77. package/src/lib/dialog/dialog.component.scss +32 -0
  78. package/src/lib/dialog/dialog.component.ts +32 -0
  79. package/src/lib/dialog/dialog.module.ts +13 -0
  80. package/src/lib/dialog/dialog.service.ts +178 -0
  81. package/src/lib/drawer/content.component.ts +18 -0
  82. package/src/lib/drawer/drawer-container.component.ts +37 -0
  83. package/src/lib/drawer/drawer.component.ts +151 -0
  84. package/src/lib/drawer/drawer.module.ts +16 -0
  85. package/src/lib/dropdown/dropdown.component.html +26 -0
  86. package/src/lib/dropdown/dropdown.component.scss +8 -0
  87. package/src/lib/dropdown/dropdown.component.ts +197 -0
  88. package/src/lib/dropdown/dropdown.module.ts +19 -0
  89. package/src/lib/fieldset/fieldset.component.html +6 -0
  90. package/src/lib/fieldset/fieldset.component.ts +49 -0
  91. package/src/lib/fieldset/fieldset.module.ts +11 -0
  92. package/src/lib/form-group/form-group.component.html +15 -0
  93. package/src/lib/form-group/form-group.component.ts +39 -0
  94. package/src/lib/form-group/form-group.module.ts +14 -0
  95. package/src/lib/label/label.component.html +5 -0
  96. package/src/lib/label/label.component.ts +18 -0
  97. package/src/lib/label/label.module.ts +14 -0
  98. package/src/lib/loading/loading-indicator.component.html +27 -0
  99. package/src/lib/loading/loading-indicator.component.ts +16 -0
  100. package/src/lib/loading/loading-panel.component.ts +37 -0
  101. package/src/lib/loading/loading.module.ts +13 -0
  102. package/src/lib/loading/loading.service.ts +44 -0
  103. package/src/lib/menu/menu-item.component.ts +41 -0
  104. package/src/lib/menu/menu.component.html +74 -0
  105. package/src/lib/menu/menu.component.ts +111 -0
  106. package/src/lib/menu/menu.module.ts +13 -0
  107. package/src/lib/menu/menu2.component.scss +59 -0
  108. package/src/lib/menu/menu2.component.ts +98 -0
  109. package/src/lib/number-box/number-box.component.html +32 -0
  110. package/src/lib/number-box/number-box.component.ts +641 -0
  111. package/src/lib/number-box/number-box.module.ts +13 -0
  112. package/src/lib/page/content.component.ts +18 -0
  113. package/src/lib/page/footer.component.ts +13 -0
  114. package/src/lib/page/page.component.ts +43 -0
  115. package/src/lib/page/page.module.ts +14 -0
  116. package/src/lib/panel-box/panel-box.component.html +19 -0
  117. package/src/lib/panel-box/panel-box.component.scss +25 -0
  118. package/src/lib/panel-box/panel-box.component.ts +87 -0
  119. package/src/lib/panel-box/panel-box.module.ts +10 -0
  120. package/src/lib/password-box/password-box.component.html +22 -0
  121. package/src/lib/password-box/password-box.component.ts +30 -0
  122. package/src/lib/password-box/password-box.module.ts +16 -0
  123. package/src/lib/popover/custom-cdk-overlay.service.ts +82 -0
  124. package/src/lib/popover/overlay.service.ts +102 -0
  125. package/src/lib/popover/popover.component.html +5 -0
  126. package/src/lib/popover/popover.component.scss +9 -0
  127. package/src/lib/popover/popover.component.ts +130 -0
  128. package/src/lib/popover/popover.module.ts +11 -0
  129. package/src/lib/popup/popup.component.html +33 -0
  130. package/src/lib/popup/popup.component.scss +167 -0
  131. package/src/lib/popup/popup.component.ts +184 -0
  132. package/src/lib/popup/popup.module.ts +16 -0
  133. package/src/lib/popup/popup.service.ts +103 -0
  134. package/src/lib/progress-bar/progress-bar.component.html +5 -0
  135. package/src/lib/progress-bar/progress-bar.component.ts +10 -0
  136. package/src/lib/progress-bar/progress-bar.module.ts +11 -0
  137. package/src/lib/property-editor/editors/check-editor/check-editor.ts +44 -0
  138. package/src/lib/property-editor/editors/check-editor/check.module.ts +14 -0
  139. package/src/lib/property-editor/editors/color-editor/color.editor.ts +30 -0
  140. package/src/lib/property-editor/editors/color-editor/color.module.ts +20 -0
  141. package/src/lib/property-editor/editors/column-editor/column.editor.html +75 -0
  142. package/src/lib/property-editor/editors/column-editor/column.editor.scss +193 -0
  143. package/src/lib/property-editor/editors/column-editor/column.editor.ts +124 -0
  144. package/src/lib/property-editor/editors/column-editor/column.module.ts +28 -0
  145. package/src/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.html +80 -0
  146. package/src/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.scss +71 -0
  147. package/src/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.ts +232 -0
  148. package/src/lib/property-editor/editors/conditional-color-editor/conditional-color.module.ts +52 -0
  149. package/src/lib/property-editor/editors/date-editor/date.editor.ts +49 -0
  150. package/src/lib/property-editor/editors/date-editor/date.module.ts +20 -0
  151. package/src/lib/property-editor/editors/number-editor/number.editor.ts +46 -0
  152. package/src/lib/property-editor/editors/number-editor/number.module.ts +20 -0
  153. package/src/lib/property-editor/editors/range-editor/range.editor.html +67 -0
  154. package/src/lib/property-editor/editors/range-editor/range.editor.scss +68 -0
  155. package/src/lib/property-editor/editors/range-editor/range.editor.ts +153 -0
  156. package/src/lib/property-editor/editors/range-editor/range.module.ts +37 -0
  157. package/src/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.html +8 -0
  158. package/src/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.ts +70 -0
  159. package/src/lib/property-editor/editors/selectbox-editor/selectbox.editor.html +8 -0
  160. package/src/lib/property-editor/editors/selectbox-editor/selectbox.editor.ts +77 -0
  161. package/src/lib/property-editor/editors/selectbox-editor/selectbox.module.ts +18 -0
  162. package/src/lib/property-editor/editors/selection-editor/selection-editor.ts +52 -0
  163. package/src/lib/property-editor/editors/selection-editor/selection.module.ts +14 -0
  164. package/src/lib/property-editor/editors/switch-editor/number.editor.ts +26 -0
  165. package/src/lib/property-editor/editors/switch-editor/number.module.ts +21 -0
  166. package/src/lib/property-editor/editors/text-editor/text.editor.html +5 -0
  167. package/src/lib/property-editor/editors/text-editor/text.editor.ts +31 -0
  168. package/src/lib/property-editor/editors/text-editor/text.module.ts +20 -0
  169. package/src/lib/property-editor/editors/textarea-editor/textarea.editor.html +9 -0
  170. package/src/lib/property-editor/editors/textarea-editor/textarea.editor.ts +37 -0
  171. package/src/lib/property-editor/editors/textarea-editor/textarea.module.ts +20 -0
  172. package/src/lib/property-editor/editors/time-editor/time.editor.ts +38 -0
  173. package/src/lib/property-editor/editors/time-editor/time.module.ts +20 -0
  174. package/src/lib/property-editor/property-editor-renderer.directive.ts +165 -0
  175. package/src/lib/property-editor/property-editor.class.ts +178 -0
  176. package/src/lib/property-editor/property-editor.module.ts +115 -0
  177. package/src/lib/query-builder/query-builder-group.component.html +68 -0
  178. package/src/lib/query-builder/query-builder-group.component.ts +122 -0
  179. package/src/lib/query-builder/query-builder-popup/query-builder-popup.component.html +82 -0
  180. package/src/lib/query-builder/query-builder-popup/query-builder-popup.component.ts +178 -0
  181. package/src/lib/query-builder/query-builder-rule.component.html +135 -0
  182. package/src/lib/query-builder/query-builder-rule.component.ts +390 -0
  183. package/src/lib/query-builder/query-builder.class.ts +53 -0
  184. package/src/lib/query-builder/query-builder.component.html +3 -0
  185. package/src/lib/query-builder/query-builder.component.scss +286 -0
  186. package/src/lib/query-builder/query-builder.component.ts +220 -0
  187. package/src/lib/query-builder/query-builder.module.ts +44 -0
  188. package/src/lib/query-builder/query-builder.service.ts +188 -0
  189. package/src/lib/search-bar/search-bar.component.html +30 -0
  190. package/src/lib/search-bar/search-bar.component.scss +114 -0
  191. package/src/lib/search-bar/search-bar.component.ts +287 -0
  192. package/src/lib/search-bar/search-bar.module.ts +33 -0
  193. package/src/lib/searchbox/searchbox.component.html +25 -0
  194. package/src/lib/searchbox/searchbox.component.ts +85 -0
  195. package/src/lib/searchbox/searchbox.module.ts +17 -0
  196. package/src/lib/selectbox/selectbox.component.html +100 -0
  197. package/src/lib/selectbox/selectbox.component.ts +984 -0
  198. package/src/lib/selectbox/selectbox.module.ts +31 -0
  199. package/src/lib/selectbox/selectbox2.component.html +78 -0
  200. package/src/lib/selectbox/selectbox2.component.ts +603 -0
  201. package/src/lib/selection-list/selection-list.component.html +21 -0
  202. package/src/lib/selection-list/selection-list.component.ts +115 -0
  203. package/src/lib/selection-list/selection-list.module.ts +13 -0
  204. package/src/lib/switch/switch.component.html +4 -0
  205. package/src/lib/switch/switch.component.scss +65 -0
  206. package/src/lib/switch/switch.component.ts +57 -0
  207. package/src/lib/switch/switch.module.ts +14 -0
  208. package/src/lib/tab-page/tab-page-Renderer.component.ts +70 -0
  209. package/src/lib/tab-page/tab-page-host.component.ts +110 -0
  210. package/src/lib/tab-page/tab-page.module.ts +13 -0
  211. package/src/lib/tab-page/tab-page.service.ts +176 -0
  212. package/src/lib/tab-strip/tab-strip.component.html +6 -0
  213. package/src/lib/tab-strip/tab-strip.component.ts +47 -0
  214. package/src/lib/tab-strip/tab-strip.module.ts +11 -0
  215. package/src/lib/tab-view/dynamic-tabs.directive.ts +17 -0
  216. package/src/lib/tab-view/tab-view.component.html +33 -0
  217. package/src/lib/tab-view/tab-view.component.scss +0 -0
  218. package/src/lib/tab-view/tab-view.component.ts +129 -0
  219. package/src/lib/tab-view/tab-view.module.ts +12 -0
  220. package/src/lib/tab-view/tab.component.html +8 -0
  221. package/src/lib/tab-view/tab.component.ts +15 -0
  222. package/src/lib/textarea/textarea.component.html +13 -0
  223. package/src/lib/textarea/textarea.component.ts +24 -0
  224. package/src/lib/textarea/textarea.module.ts +14 -0
  225. package/src/lib/textbox/textbox.component.html +22 -0
  226. package/src/lib/textbox/textbox.component.ts +38 -0
  227. package/src/lib/textbox/textbox.module.ts +16 -0
  228. package/src/lib/time-picker/time-picker.component.html +21 -0
  229. package/src/lib/time-picker/time-picker.component.ts +1003 -0
  230. package/src/lib/time-picker/time-picker.module.ts +15 -0
  231. package/src/lib/toast/toast-message/toast-message.component.html +17 -0
  232. package/src/lib/toast/toast-message/toast-message.component.scss +75 -0
  233. package/src/lib/toast/toast-message/toast-message.component.ts +64 -0
  234. package/src/lib/toast/toast-wrapper/toast-wrapper.component.scss +15 -0
  235. package/src/lib/toast/toast-wrapper/toast-wrapper.component.ts +13 -0
  236. package/src/lib/toast/toast.module.ts +12 -0
  237. package/src/lib/toast/toast.service.ts +64 -0
  238. package/src/lib/toolbar/group-button/toolbar-group-button.component.ts +54 -0
  239. package/src/lib/toolbar/menu/toolbar-menu.component.html +4 -0
  240. package/src/lib/toolbar/menu/toolbar-menu.component.ts +81 -0
  241. package/src/lib/toolbar/search/toolbar-search.component.html +4 -0
  242. package/src/lib/toolbar/search/toolbar-search.component.scss +24 -0
  243. package/src/lib/toolbar/search/toolbar-search.component.ts +61 -0
  244. package/src/lib/toolbar/title/toolbar-title.component.ts +35 -0
  245. package/src/lib/toolbar/toolbar-item.ts +4 -0
  246. package/src/lib/toolbar/toolbar.component.html +4 -0
  247. package/src/lib/toolbar/toolbar.component.scss +9 -0
  248. package/src/lib/toolbar/toolbar.component.ts +16 -0
  249. package/src/lib/toolbar/toolbar.module.ts +25 -0
  250. package/src/lib/tooltip/tooltip.directive.ts +101 -0
  251. package/src/lib/tooltip/tooltip.module.ts +11 -0
  252. package/src/lib/tree-side-menu/tree-side-menu.component.html +43 -0
  253. package/src/lib/tree-side-menu/tree-side-menu.component.ts +698 -0
  254. package/src/lib/tree-side-menu/tree-side-menu.module.ts +19 -0
  255. package/src/lib/tree-view/tree-view.component.html +46 -0
  256. package/src/lib/tree-view/tree-view.component.ts +835 -0
  257. package/src/lib/tree-view/tree-view.module.ts +16 -0
  258. package/src/lib/upload-file/upload-file.component.html +16 -0
  259. package/src/lib/upload-file/upload-file.component.ts +230 -0
  260. package/src/lib/upload-file/upload-file.events.ts +11 -0
  261. package/src/lib/upload-file/upload-file.module.ts +16 -0
  262. package/src/lib/validation/validation-form.component.ts +78 -0
  263. package/src/lib/validation/validation-rule.widget.ts +112 -0
  264. package/src/lib/validation/validation.class.ts +22 -0
  265. package/src/lib/validation/validation.component.ts +92 -0
  266. package/src/lib/validation/validation.module.ts +28 -0
  267. package/{public-api.d.ts → src/public-api.ts} +61 -2
  268. package/src/test.ts +28 -0
  269. package/tsconfig.lib.json +25 -0
  270. package/tsconfig.lib.prod.json +6 -0
  271. package/tsconfig.spec.json +17 -0
  272. package/tslint.json +17 -0
  273. package/acorex-components.d.ts +0 -5
  274. package/esm2020/acorex-components.mjs +0 -5
  275. package/esm2020/lib/accordion/accordion.component.mjs +0 -44
  276. package/esm2020/lib/accordion/accordion.module.mjs +0 -20
  277. package/esm2020/lib/base/base-page.class.mjs +0 -94
  278. package/esm2020/lib/base/components.class.mjs +0 -17
  279. package/esm2020/lib/base/element.class.mjs +0 -294
  280. package/esm2020/lib/base/events.class.mjs +0 -11
  281. package/esm2020/lib/button/button.component.mjs +0 -71
  282. package/esm2020/lib/button/button.module.mjs +0 -21
  283. package/esm2020/lib/calendar/calendar-box/calendar-box.component.mjs +0 -413
  284. package/esm2020/lib/calendar/calendar-box/calendar-box.module.mjs +0 -22
  285. package/esm2020/lib/calendar/scheduler/scheduler-views.property.mjs +0 -54
  286. package/esm2020/lib/calendar/scheduler/scheduler.class.mjs +0 -18
  287. package/esm2020/lib/calendar/scheduler/scheduler.component.mjs +0 -213
  288. package/esm2020/lib/calendar/scheduler/scheduler.module.mjs +0 -68
  289. package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.mjs +0 -132
  290. package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.mjs +0 -37
  291. package/esm2020/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.mjs +0 -47
  292. package/esm2020/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.mjs +0 -95
  293. package/esm2020/lib/calendar/scheduler/views/month/scheduler-month-view.component.mjs +0 -204
  294. package/esm2020/lib/calendar/scheduler/views/scheduler-view.component.mjs +0 -99
  295. package/esm2020/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.mjs +0 -77
  296. package/esm2020/lib/checkbox/checkbox.component.mjs +0 -98
  297. package/esm2020/lib/checkbox/checkbox.module.mjs +0 -20
  298. package/esm2020/lib/color-picker/color-box/color-box.component.mjs +0 -422
  299. package/esm2020/lib/color-picker/color-picker.component.mjs +0 -82
  300. package/esm2020/lib/color-picker/color-picker.module.mjs +0 -24
  301. package/esm2020/lib/context-menu/context-menu.component.mjs +0 -65
  302. package/esm2020/lib/context-menu/context-menu.directive.mjs +0 -135
  303. package/esm2020/lib/context-menu/context-menu.module.mjs +0 -20
  304. package/esm2020/lib/data-filter/columns/filter-column-date.component.mjs +0 -138
  305. package/esm2020/lib/data-filter/columns/filter-column-number.component.mjs +0 -117
  306. package/esm2020/lib/data-filter/columns/filter-column-selection.component.mjs +0 -74
  307. package/esm2020/lib/data-filter/columns/filter-column-string.component.mjs +0 -117
  308. package/esm2020/lib/data-filter/filter-panel/filter-panel.component.mjs +0 -258
  309. package/esm2020/lib/data-filter/filter.class.mjs +0 -44
  310. package/esm2020/lib/data-filter/filter.module.mjs +0 -90
  311. package/esm2020/lib/data-filter/toolbar/filter-toolbar.component.mjs +0 -166
  312. package/esm2020/lib/data-list/core/data-list.component.mjs +0 -40
  313. package/esm2020/lib/data-list/list/list.component.mjs +0 -124
  314. package/esm2020/lib/data-list/list/list.module.mjs +0 -22
  315. package/esm2020/lib/data-list/list/toolbar-list-view.component.mjs +0 -85
  316. package/esm2020/lib/data-source/datasource.component.mjs +0 -47
  317. package/esm2020/lib/data-source/datasource.module.mjs +0 -18
  318. package/esm2020/lib/data-source/read-param.mjs +0 -5
  319. package/esm2020/lib/date-picker/date-picker.component.mjs +0 -702
  320. package/esm2020/lib/date-picker/date-picker.module.mjs +0 -25
  321. package/esm2020/lib/dialog/dialog.component.mjs +0 -24
  322. package/esm2020/lib/dialog/dialog.module.mjs +0 -21
  323. package/esm2020/lib/dialog/dialog.service.mjs +0 -150
  324. package/esm2020/lib/drawer/content.component.mjs +0 -18
  325. package/esm2020/lib/drawer/drawer-container.component.mjs +0 -36
  326. package/esm2020/lib/drawer/drawer.component.mjs +0 -142
  327. package/esm2020/lib/drawer/drawer.module.mjs +0 -23
  328. package/esm2020/lib/dropdown/dropdown.component.mjs +0 -176
  329. package/esm2020/lib/dropdown/dropdown.module.mjs +0 -26
  330. package/esm2020/lib/fieldset/fieldset.component.mjs +0 -59
  331. package/esm2020/lib/fieldset/fieldset.module.mjs +0 -19
  332. package/esm2020/lib/form-group/form-group.component.mjs +0 -34
  333. package/esm2020/lib/form-group/form-group.module.mjs +0 -21
  334. package/esm2020/lib/label/label.component.mjs +0 -19
  335. package/esm2020/lib/label/label.module.mjs +0 -21
  336. package/esm2020/lib/loading/loading-indicator.component.mjs +0 -17
  337. package/esm2020/lib/loading/loading-panel.component.mjs +0 -44
  338. package/esm2020/lib/loading/loading.module.mjs +0 -21
  339. package/esm2020/lib/loading/loading.service.mjs +0 -45
  340. package/esm2020/lib/menu/menu-item.component.mjs +0 -47
  341. package/esm2020/lib/menu/menu.component.mjs +0 -86
  342. package/esm2020/lib/menu/menu.module.mjs +0 -22
  343. package/esm2020/lib/menu/menu2.component.mjs +0 -96
  344. package/esm2020/lib/number-box/number-box.component.mjs +0 -622
  345. package/esm2020/lib/number-box/number-box.module.mjs +0 -21
  346. package/esm2020/lib/page/content.component.mjs +0 -32
  347. package/esm2020/lib/page/footer.component.mjs +0 -19
  348. package/esm2020/lib/page/page.component.mjs +0 -53
  349. package/esm2020/lib/page/page.module.mjs +0 -22
  350. package/esm2020/lib/panel-box/panel-box.component.mjs +0 -88
  351. package/esm2020/lib/panel-box/panel-box.module.mjs +0 -19
  352. package/esm2020/lib/password-box/password-box.component.mjs +0 -31
  353. package/esm2020/lib/password-box/password-box.module.mjs +0 -23
  354. package/esm2020/lib/popover/custom-cdk-overlay.service.mjs +0 -48
  355. package/esm2020/lib/popover/overlay.service.mjs +0 -90
  356. package/esm2020/lib/popover/popover.component.mjs +0 -127
  357. package/esm2020/lib/popover/popover.module.mjs +0 -19
  358. package/esm2020/lib/popup/popup.component.mjs +0 -147
  359. package/esm2020/lib/popup/popup.module.mjs +0 -25
  360. package/esm2020/lib/popup/popup.service.mjs +0 -93
  361. package/esm2020/lib/progress-bar/progress-bar.component.mjs +0 -19
  362. package/esm2020/lib/progress-bar/progress-bar.module.mjs +0 -19
  363. package/esm2020/lib/property-editor/editors/check-editor/check-editor.mjs +0 -61
  364. package/esm2020/lib/property-editor/editors/check-editor/check.module.mjs +0 -22
  365. package/esm2020/lib/property-editor/editors/color-editor/color.editor.mjs +0 -38
  366. package/esm2020/lib/property-editor/editors/color-editor/color.module.mjs +0 -24
  367. package/esm2020/lib/property-editor/editors/column-editor/column.editor.mjs +0 -115
  368. package/esm2020/lib/property-editor/editors/column-editor/column.module.mjs +0 -32
  369. package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.mjs +0 -211
  370. package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.module.mjs +0 -78
  371. package/esm2020/lib/property-editor/editors/date-editor/date.editor.mjs +0 -51
  372. package/esm2020/lib/property-editor/editors/date-editor/date.module.mjs +0 -24
  373. package/esm2020/lib/property-editor/editors/number-editor/number.editor.mjs +0 -63
  374. package/esm2020/lib/property-editor/editors/number-editor/number.module.mjs +0 -24
  375. package/esm2020/lib/property-editor/editors/range-editor/range.editor.mjs +0 -140
  376. package/esm2020/lib/property-editor/editors/range-editor/range.module.mjs +0 -61
  377. package/esm2020/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.mjs +0 -72
  378. package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.editor.mjs +0 -71
  379. package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.module.mjs +0 -25
  380. package/esm2020/lib/property-editor/editors/selection-editor/selection-editor.mjs +0 -69
  381. package/esm2020/lib/property-editor/editors/selection-editor/selection.module.mjs +0 -22
  382. package/esm2020/lib/property-editor/editors/switch-editor/number.editor.mjs +0 -29
  383. package/esm2020/lib/property-editor/editors/switch-editor/number.module.mjs +0 -25
  384. package/esm2020/lib/property-editor/editors/text-editor/text.editor.mjs +0 -32
  385. package/esm2020/lib/property-editor/editors/text-editor/text.module.mjs +0 -24
  386. package/esm2020/lib/property-editor/editors/textarea-editor/textarea.editor.mjs +0 -32
  387. package/esm2020/lib/property-editor/editors/textarea-editor/textarea.module.mjs +0 -24
  388. package/esm2020/lib/property-editor/editors/time-editor/time.editor.mjs +0 -43
  389. package/esm2020/lib/property-editor/editors/time-editor/time.module.mjs +0 -24
  390. package/esm2020/lib/property-editor/property-editor-renderer.directive.mjs +0 -154
  391. package/esm2020/lib/property-editor/property-editor.class.mjs +0 -101
  392. package/esm2020/lib/property-editor/property-editor.module.mjs +0 -196
  393. package/esm2020/lib/query-builder/query-builder-group.component.mjs +0 -124
  394. package/esm2020/lib/query-builder/query-builder-popup/query-builder-popup.component.mjs +0 -171
  395. package/esm2020/lib/query-builder/query-builder-rule.component.mjs +0 -395
  396. package/esm2020/lib/query-builder/query-builder.class.mjs +0 -20
  397. package/esm2020/lib/query-builder/query-builder.component.mjs +0 -82
  398. package/esm2020/lib/query-builder/query-builder.module.mjs +0 -62
  399. package/esm2020/lib/query-builder/query-builder.service.mjs +0 -197
  400. package/esm2020/lib/search-bar/search-bar.component.mjs +0 -283
  401. package/esm2020/lib/search-bar/search-bar.module.mjs +0 -63
  402. package/esm2020/lib/searchbox/searchbox.component.mjs +0 -79
  403. package/esm2020/lib/searchbox/searchbox.module.mjs +0 -24
  404. package/esm2020/lib/selectbox/selectbox.component.mjs +0 -961
  405. package/esm2020/lib/selectbox/selectbox.module.mjs +0 -44
  406. package/esm2020/lib/selectbox/selectbox2.component.mjs +0 -574
  407. package/esm2020/lib/selection-list/selection-list.component.mjs +0 -108
  408. package/esm2020/lib/selection-list/selection-list.module.mjs +0 -21
  409. package/esm2020/lib/switch/switch.component.mjs +0 -51
  410. package/esm2020/lib/switch/switch.module.mjs +0 -20
  411. package/esm2020/lib/tab-page/tab-page-Renderer.component.mjs +0 -71
  412. package/esm2020/lib/tab-page/tab-page-host.component.mjs +0 -116
  413. package/esm2020/lib/tab-page/tab-page.module.mjs +0 -21
  414. package/esm2020/lib/tab-page/tab-page.service.mjs +0 -156
  415. package/esm2020/lib/tab-strip/tab-strip.component.mjs +0 -36
  416. package/esm2020/lib/tab-strip/tab-strip.module.mjs +0 -19
  417. package/esm2020/lib/tab-view/dynamic-tabs.directive.mjs +0 -24
  418. package/esm2020/lib/tab-view/tab-view.component.mjs +0 -105
  419. package/esm2020/lib/tab-view/tab-view.module.mjs +0 -21
  420. package/esm2020/lib/tab-view/tab.component.mjs +0 -30
  421. package/esm2020/lib/textarea/textarea.component.mjs +0 -26
  422. package/esm2020/lib/textarea/textarea.module.mjs +0 -21
  423. package/esm2020/lib/textbox/textbox.component.mjs +0 -39
  424. package/esm2020/lib/textbox/textbox.module.mjs +0 -24
  425. package/esm2020/lib/time-picker/time-picker.component.mjs +0 -943
  426. package/esm2020/lib/time-picker/time-picker.module.mjs +0 -22
  427. package/esm2020/lib/toast/toast-message/toast-message.component.mjs +0 -74
  428. package/esm2020/lib/toast/toast-wrapper/toast-wrapper.component.mjs +0 -13
  429. package/esm2020/lib/toast/toast.module.mjs +0 -21
  430. package/esm2020/lib/toast/toast.service.mjs +0 -44
  431. package/esm2020/lib/toolbar/group-button/toolbar-group-button.component.mjs +0 -78
  432. package/esm2020/lib/toolbar/menu/toolbar-menu.component.mjs +0 -57
  433. package/esm2020/lib/toolbar/search/toolbar-search.component.mjs +0 -54
  434. package/esm2020/lib/toolbar/title/toolbar-title.component.mjs +0 -47
  435. package/esm2020/lib/toolbar/toolbar-item.mjs +0 -6
  436. package/esm2020/lib/toolbar/toolbar.component.mjs +0 -13
  437. package/esm2020/lib/toolbar/toolbar.module.mjs +0 -40
  438. package/esm2020/lib/tooltip/tooltip.directive.mjs +0 -100
  439. package/esm2020/lib/tooltip/tooltip.module.mjs +0 -19
  440. package/esm2020/lib/tree-side-menu/tree-side-menu.component.mjs +0 -646
  441. package/esm2020/lib/tree-side-menu/tree-side-menu.module.mjs +0 -35
  442. package/esm2020/lib/tree-view/tree-view.component.mjs +0 -775
  443. package/esm2020/lib/tree-view/tree-view.module.mjs +0 -22
  444. package/esm2020/lib/upload-file/upload-file.component.mjs +0 -208
  445. package/esm2020/lib/upload-file/upload-file.events.mjs +0 -2
  446. package/esm2020/lib/upload-file/upload-file.module.mjs +0 -24
  447. package/esm2020/lib/validation/validation-form.component.mjs +0 -65
  448. package/esm2020/lib/validation/validation-rule.widget.mjs +0 -111
  449. package/esm2020/lib/validation/validation.class.mjs +0 -2
  450. package/esm2020/lib/validation/validation.component.mjs +0 -89
  451. package/esm2020/lib/validation/validation.module.mjs +0 -34
  452. package/esm2020/public-api.mjs +0 -158
  453. package/fesm2015/acorex-components.mjs +0 -15988
  454. package/fesm2015/acorex-components.mjs.map +0 -1
  455. package/fesm2020/acorex-components.mjs +0 -15923
  456. package/fesm2020/acorex-components.mjs.map +0 -1
  457. package/lib/accordion/accordion.component.d.ts +0 -13
  458. package/lib/accordion/accordion.module.d.ts +0 -9
  459. package/lib/base/base-page.class.d.ts +0 -46
  460. package/lib/base/components.class.d.ts +0 -10
  461. package/lib/base/element.class.d.ts +0 -106
  462. package/lib/base/events.class.d.ts +0 -18
  463. package/lib/button/button.component.d.ts +0 -21
  464. package/lib/button/button.module.d.ts +0 -8
  465. package/lib/calendar/calendar-box/calendar-box.component.d.ts +0 -81
  466. package/lib/calendar/calendar-box/calendar-box.module.d.ts +0 -11
  467. package/lib/calendar/scheduler/scheduler-views.property.d.ts +0 -19
  468. package/lib/calendar/scheduler/scheduler.component.d.ts +0 -39
  469. package/lib/calendar/scheduler/scheduler.module.d.ts +0 -21
  470. package/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.d.ts +0 -25
  471. package/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.d.ts +0 -14
  472. package/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.d.ts +0 -16
  473. package/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.d.ts +0 -26
  474. package/lib/calendar/scheduler/views/month/scheduler-month-view.component.d.ts +0 -37
  475. package/lib/calendar/scheduler/views/scheduler-view.component.d.ts +0 -28
  476. package/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.d.ts +0 -24
  477. package/lib/checkbox/checkbox.component.d.ts +0 -30
  478. package/lib/checkbox/checkbox.module.d.ts +0 -9
  479. package/lib/color-picker/color-box/color-box.component.d.ts +0 -25
  480. package/lib/color-picker/color-picker.component.d.ts +0 -30
  481. package/lib/color-picker/color-picker.module.d.ts +0 -13
  482. package/lib/context-menu/context-menu.component.d.ts +0 -22
  483. package/lib/context-menu/context-menu.directive.d.ts +0 -38
  484. package/lib/context-menu/context-menu.module.d.ts +0 -9
  485. package/lib/data-filter/columns/filter-column-date.component.d.ts +0 -22
  486. package/lib/data-filter/columns/filter-column-number.component.d.ts +0 -15
  487. package/lib/data-filter/columns/filter-column-selection.component.d.ts +0 -18
  488. package/lib/data-filter/columns/filter-column-string.component.d.ts +0 -15
  489. package/lib/data-filter/filter-panel/filter-panel.component.d.ts +0 -45
  490. package/lib/data-filter/filter.class.d.ts +0 -40
  491. package/lib/data-filter/filter.module.d.ts +0 -24
  492. package/lib/data-filter/toolbar/filter-toolbar.component.d.ts +0 -25
  493. package/lib/data-list/core/data-list.component.d.ts +0 -15
  494. package/lib/data-list/list/list.component.d.ts +0 -40
  495. package/lib/data-list/list/list.module.d.ts +0 -11
  496. package/lib/data-list/list/toolbar-list-view.component.d.ts +0 -17
  497. package/lib/data-source/datasource.component.d.ts +0 -16
  498. package/lib/data-source/datasource.module.d.ts +0 -7
  499. package/lib/date-picker/date-picker.component.d.ts +0 -81
  500. package/lib/date-picker/date-picker.module.d.ts +0 -14
  501. package/lib/dialog/dialog.component.d.ts +0 -14
  502. package/lib/dialog/dialog.module.d.ts +0 -10
  503. package/lib/dialog/dialog.service.d.ts +0 -36
  504. package/lib/drawer/content.component.d.ts +0 -7
  505. package/lib/drawer/drawer-container.component.d.ts +0 -10
  506. package/lib/drawer/drawer.component.d.ts +0 -34
  507. package/lib/drawer/drawer.module.d.ts +0 -10
  508. package/lib/dropdown/dropdown.component.d.ts +0 -38
  509. package/lib/dropdown/dropdown.module.d.ts +0 -13
  510. package/lib/fieldset/fieldset.component.d.ts +0 -11
  511. package/lib/fieldset/fieldset.module.d.ts +0 -8
  512. package/lib/form-group/form-group.component.d.ts +0 -14
  513. package/lib/form-group/form-group.module.d.ts +0 -8
  514. package/lib/label/label.component.d.ts +0 -9
  515. package/lib/label/label.module.d.ts +0 -8
  516. package/lib/loading/loading-indicator.component.d.ts +0 -9
  517. package/lib/loading/loading-panel.component.d.ts +0 -13
  518. package/lib/loading/loading.module.d.ts +0 -10
  519. package/lib/loading/loading.service.d.ts +0 -13
  520. package/lib/menu/menu-item.component.d.ts +0 -18
  521. package/lib/menu/menu.component.d.ts +0 -35
  522. package/lib/menu/menu.module.d.ts +0 -11
  523. package/lib/menu/menu2.component.d.ts +0 -21
  524. package/lib/number-box/number-box.component.d.ts +0 -52
  525. package/lib/number-box/number-box.module.d.ts +0 -10
  526. package/lib/page/content.component.d.ts +0 -8
  527. package/lib/page/footer.component.d.ts +0 -5
  528. package/lib/page/page.component.d.ts +0 -16
  529. package/lib/page/page.module.d.ts +0 -11
  530. package/lib/panel-box/panel-box.component.d.ts +0 -19
  531. package/lib/panel-box/panel-box.module.d.ts +0 -8
  532. package/lib/password-box/password-box.component.d.ts +0 -12
  533. package/lib/password-box/password-box.module.d.ts +0 -10
  534. package/lib/popover/custom-cdk-overlay.service.d.ts +0 -19
  535. package/lib/popover/overlay.service.d.ts +0 -31
  536. package/lib/popover/popover.component.d.ts +0 -34
  537. package/lib/popover/popover.module.d.ts +0 -8
  538. package/lib/popup/popup.component.d.ts +0 -40
  539. package/lib/popup/popup.module.d.ts +0 -13
  540. package/lib/popup/popup.service.d.ts +0 -22
  541. package/lib/progress-bar/progress-bar.component.d.ts +0 -7
  542. package/lib/progress-bar/progress-bar.module.d.ts +0 -8
  543. package/lib/property-editor/editors/check-editor/check-editor.d.ts +0 -19
  544. package/lib/property-editor/editors/check-editor/check.module.d.ts +0 -11
  545. package/lib/property-editor/editors/color-editor/color.editor.d.ts +0 -13
  546. package/lib/property-editor/editors/color-editor/color.module.d.ts +0 -12
  547. package/lib/property-editor/editors/column-editor/column.editor.d.ts +0 -34
  548. package/lib/property-editor/editors/column-editor/column.module.d.ts +0 -20
  549. package/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.d.ts +0 -44
  550. package/lib/property-editor/editors/conditional-color-editor/conditional-color.module.d.ts +0 -19
  551. package/lib/property-editor/editors/date-editor/date.editor.d.ts +0 -28
  552. package/lib/property-editor/editors/date-editor/date.module.d.ts +0 -12
  553. package/lib/property-editor/editors/number-editor/number.editor.d.ts +0 -20
  554. package/lib/property-editor/editors/number-editor/number.module.d.ts +0 -12
  555. package/lib/property-editor/editors/range-editor/range.editor.d.ts +0 -29
  556. package/lib/property-editor/editors/range-editor/range.module.d.ts +0 -18
  557. package/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.d.ts +0 -29
  558. package/lib/property-editor/editors/selectbox-editor/selectbox.editor.d.ts +0 -28
  559. package/lib/property-editor/editors/selectbox-editor/selectbox.module.d.ts +0 -14
  560. package/lib/property-editor/editors/selection-editor/selection-editor.d.ts +0 -25
  561. package/lib/property-editor/editors/selection-editor/selection.module.d.ts +0 -11
  562. package/lib/property-editor/editors/switch-editor/number.editor.d.ts +0 -11
  563. package/lib/property-editor/editors/switch-editor/number.module.d.ts +0 -13
  564. package/lib/property-editor/editors/text-editor/text.editor.d.ts +0 -18
  565. package/lib/property-editor/editors/text-editor/text.module.d.ts +0 -12
  566. package/lib/property-editor/editors/textarea-editor/textarea.editor.d.ts +0 -17
  567. package/lib/property-editor/editors/textarea-editor/textarea.module.d.ts +0 -12
  568. package/lib/property-editor/editors/time-editor/time.editor.d.ts +0 -17
  569. package/lib/property-editor/editors/time-editor/time.module.d.ts +0 -12
  570. package/lib/property-editor/property-editor-renderer.directive.d.ts +0 -30
  571. package/lib/property-editor/property-editor.class.d.ts +0 -92
  572. package/lib/property-editor/property-editor.module.d.ts +0 -21
  573. package/lib/query-builder/query-builder-group.component.d.ts +0 -33
  574. package/lib/query-builder/query-builder-popup/query-builder-popup.component.d.ts +0 -35
  575. package/lib/query-builder/query-builder-rule.component.d.ts +0 -45
  576. package/lib/query-builder/query-builder.class.d.ts +0 -45
  577. package/lib/query-builder/query-builder.component.d.ts +0 -27
  578. package/lib/query-builder/query-builder.module.d.ts +0 -23
  579. package/lib/query-builder/query-builder.service.d.ts +0 -18
  580. package/lib/search-bar/search-bar.component.d.ts +0 -61
  581. package/lib/search-bar/search-bar.module.d.ts +0 -18
  582. package/lib/searchbox/searchbox.component.d.ts +0 -22
  583. package/lib/searchbox/searchbox.module.d.ts +0 -13
  584. package/lib/selectbox/selectbox.component.d.ts +0 -118
  585. package/lib/selectbox/selectbox.module.d.ts +0 -15
  586. package/lib/selectbox/selectbox2.component.d.ts +0 -103
  587. package/lib/selection-list/selection-list.component.d.ts +0 -32
  588. package/lib/selection-list/selection-list.module.d.ts +0 -10
  589. package/lib/switch/switch.component.d.ts +0 -20
  590. package/lib/switch/switch.module.d.ts +0 -9
  591. package/lib/tab-page/tab-page-Renderer.component.d.ts +0 -16
  592. package/lib/tab-page/tab-page-host.component.d.ts +0 -25
  593. package/lib/tab-page/tab-page.module.d.ts +0 -10
  594. package/lib/tab-page/tab-page.service.d.ts +0 -30
  595. package/lib/tab-strip/tab-strip.component.d.ts +0 -28
  596. package/lib/tab-strip/tab-strip.module.d.ts +0 -8
  597. package/lib/tab-view/dynamic-tabs.directive.d.ts +0 -16
  598. package/lib/tab-view/tab-view.component.d.ts +0 -26
  599. package/lib/tab-view/tab-view.module.d.ts +0 -10
  600. package/lib/tab-view/tab.component.d.ts +0 -12
  601. package/lib/textarea/textarea.component.d.ts +0 -12
  602. package/lib/textarea/textarea.module.d.ts +0 -8
  603. package/lib/textbox/textbox.component.d.ts +0 -16
  604. package/lib/textbox/textbox.module.d.ts +0 -11
  605. package/lib/time-picker/time-picker.component.d.ts +0 -52
  606. package/lib/time-picker/time-picker.module.d.ts +0 -11
  607. package/lib/toast/toast-message/toast-message.component.d.ts +0 -18
  608. package/lib/toast/toast-wrapper/toast-wrapper.component.d.ts +0 -8
  609. package/lib/toast/toast.module.d.ts +0 -9
  610. package/lib/toast/toast.service.d.ts +0 -18
  611. package/lib/toolbar/group-button/toolbar-group-button.component.d.ts +0 -12
  612. package/lib/toolbar/menu/toolbar-menu.component.d.ts +0 -24
  613. package/lib/toolbar/search/toolbar-search.component.d.ts +0 -16
  614. package/lib/toolbar/title/toolbar-title.component.d.ts +0 -9
  615. package/lib/toolbar/toolbar-item.d.ts +0 -3
  616. package/lib/toolbar/toolbar.component.d.ts +0 -8
  617. package/lib/toolbar/toolbar.module.d.ts +0 -14
  618. package/lib/tooltip/tooltip.directive.d.ts +0 -21
  619. package/lib/tooltip/tooltip.module.d.ts +0 -8
  620. package/lib/tree-side-menu/tree-side-menu.component.d.ts +0 -111
  621. package/lib/tree-side-menu/tree-side-menu.module.d.ts +0 -11
  622. package/lib/tree-view/tree-view.component.d.ts +0 -121
  623. package/lib/tree-view/tree-view.module.d.ts +0 -11
  624. package/lib/upload-file/upload-file.component.d.ts +0 -42
  625. package/lib/upload-file/upload-file.events.d.ts +0 -10
  626. package/lib/upload-file/upload-file.module.d.ts +0 -13
  627. package/lib/validation/validation-form.component.d.ts +0 -19
  628. package/lib/validation/validation-rule.widget.d.ts +0 -23
  629. package/lib/validation/validation.class.d.ts +0 -16
  630. package/lib/validation/validation.component.d.ts +0 -25
  631. package/lib/validation/validation.module.d.ts +0 -11
@@ -0,0 +1,720 @@
1
+ import {
2
+ Input,
3
+ ViewChild,
4
+ Output,
5
+ EventEmitter,
6
+ ViewEncapsulation,
7
+ Component,
8
+ ElementRef,
9
+ ContentChild,
10
+ AfterViewInit,
11
+ ChangeDetectorRef
12
+ } from '@angular/core';
13
+ import { AXDropdownComponent } from '../dropdown/dropdown.component';
14
+ import { AXTextBoxComponent } from '../textbox/textbox.component';
15
+ import { AXValidatableComponent, AXBaseSizableComponent, AXElementSize, AXBaseValueComponent } from '../base/element.class';
16
+ import { AXCalendarType, AXDateTime, AXConfig } from '@acorex/core';
17
+ import { AXValueEvent } from '../base/events.class';
18
+ import { AXValidation } from '../validation/validation.component';
19
+
20
+ export class AXDataPickerChangeEvent extends AXValueEvent<Date> {
21
+ isUserChange: boolean;
22
+ }
23
+
24
+ @Component({
25
+ selector: 'ax-date-picker',
26
+ templateUrl: './date-picker.component.html',
27
+ styleUrls: ['./date-picker.component.scss'],
28
+ encapsulation: ViewEncapsulation.None,
29
+ providers: [{ provide: AXValidatableComponent, useExisting: AXDatePickerComponent }],
30
+ host: { style: 'width: 100%' }
31
+ })
32
+ export class AXDatePickerComponent extends AXValidatableComponent implements AXBaseSizableComponent {
33
+ @ViewChild('dropdown', { static: true })
34
+ dropdown: AXDropdownComponent;
35
+
36
+ @ViewChild('input', { static: true })
37
+ input: AXTextBoxComponent;
38
+
39
+ @Input()
40
+ dayStyle = [];
41
+
42
+ @Input()
43
+ dayMinMaxResoan = '';
44
+
45
+ // mmddyyyy: any = [/[0-1]/, /[0-9]/, '-', /[0-1]/, /[0-9]/, '-', /[0-9]/, /[0-9]/, /[0-9]/, /[0-9]/];
46
+ yyyyMMdd: any = [/[1-2]/, /[0-9]/, /[0-9]/, /[0-9]/, '-', /[0-1]/, /[0-9]/, '-', /[0-3]/, /[0-9]/];
47
+ ddMMyyyy: any = [/[0-3]/, /[0-9]/, '-', /[0-1]/, /[0-9]/, '-', /[1-9]/, /[0-9]/, /[0-9]/, /[0-9]/];
48
+ yyyyddMM: any = [/[1-9]/, /[0-9]/, /[0-9]/, /[0-9]/, '-', /[0-3]/, /[0-9]/, '-', /[0-1]/, /[0-9]/];
49
+ // yyyyMMdd1: any = [/[0-9]/, /[0-9]/, /[0-9]/, /[0-9]/, '/', /[0-1]/, /[0-9]/, '/', /[0-3]/, /[0-9]/];
50
+ // ddMMyyyy2: any = [/[0-3]/, /[0-9]/, '/', /[0-1]/, /[0-9]/, '/', /[0-9]/, /[0-9]/, /[0-9]/, /[0-9]/];
51
+ // yyyyddMM3: any = [/[0-9]/, /[0-9]/, /[0-9]/, /[0-9]/, '/', /[0-3]/, /[0-9]/, '/', /[0-1]/, /[0-9]/];
52
+
53
+ @ContentChild(AXValidation, { static: true })
54
+ private _contentValidation: AXValidation;
55
+ private _validation: AXValidation;
56
+
57
+ @Input()
58
+ public get validation(): AXValidation {
59
+ return this._validation ? this._validation : this._contentValidation;
60
+ }
61
+
62
+ public set validation(v: AXValidation) {
63
+ this._validation = v;
64
+ }
65
+
66
+ @Input() placeholder: string = '';
67
+
68
+ @Input()
69
+ min: Date;
70
+
71
+ @Input()
72
+ max: Date;
73
+
74
+ @Input()
75
+ readonly: boolean;
76
+
77
+ @Input()
78
+ disabled: boolean;
79
+
80
+ @Input()
81
+ allowClear: boolean = false;
82
+
83
+ @Input()
84
+ textAlign: 'right' | 'left' | null = null;
85
+
86
+ @Input()
87
+ showToday: boolean = false;
88
+
89
+ @Input()
90
+ selectableHoliday: boolean = true;
91
+
92
+ @Input()
93
+ dateType: any;
94
+
95
+ @Input()
96
+ showTodayButton: boolean = true;
97
+
98
+ @Input()
99
+ openByClick: boolean = false;
100
+
101
+ cursorPosition: number = 0;
102
+
103
+ model: any = null;
104
+ text: string;
105
+
106
+ _renderPicker: boolean = false;
107
+
108
+ constructor(private ref: ElementRef, private cdr: ChangeDetectorRef) {
109
+ super();
110
+ // set defaults
111
+ if (AXConfig.get('dateTime.type')) {
112
+ this.type = AXConfig.get('dateTime.type');
113
+ }
114
+ }
115
+
116
+ @Input()
117
+ size: AXElementSize = 'md';
118
+
119
+ @Output()
120
+ typeChange: EventEmitter<AXCalendarType> = new EventEmitter<AXCalendarType>();
121
+
122
+ private _type: AXCalendarType = 'gregorian';
123
+
124
+ @Input()
125
+ public get type(): AXCalendarType {
126
+ return this._type;
127
+ }
128
+
129
+ public set type(v: AXCalendarType) {
130
+ if (v != this._type) {
131
+ this._type = v;
132
+ if (this._value) {
133
+ this.value = this._value.date;
134
+ }
135
+ this._setDateType();
136
+ this.typeChange.emit(v);
137
+ }
138
+ }
139
+
140
+ selectToday() {
141
+ this.value = new Date();
142
+ }
143
+
144
+ focus(): void {
145
+ // this.dropdown.focus();
146
+ this.input.focus();
147
+ }
148
+
149
+ convertMaskToDate(text: string) {
150
+ if (this.type == 'jalali') {
151
+ var d = new AXDateTime().convertStringToGregorian(text, 'YYYY/M/D');
152
+ } else {
153
+ var d = new Date(new AXDateTime(text, 'gregorian').toISOString());
154
+ }
155
+
156
+ return d;
157
+ }
158
+
159
+ convertMask(date: string) {
160
+ let y;
161
+ let m;
162
+ let d;
163
+ switch (this.dateType.mask) {
164
+ case this.yyyyMMdd:
165
+ y = date.slice(0, 4);
166
+ m = date.slice(5, 7);
167
+ d = date.slice(8, 10);
168
+ break;
169
+ case this.ddMMyyyy:
170
+ y = date.slice(6, 10);
171
+ m = date.slice(3, 5);
172
+ d = date.slice(0, 2);
173
+ break;
174
+ case this.yyyyddMM:
175
+ y = date.slice(0, 4);
176
+ m = date.slice(8, 10);
177
+ d = date.slice(5, 7);
178
+ break;
179
+ }
180
+
181
+ return { year: y, monnth: m, day: d };
182
+ }
183
+
184
+ textChange(e) {
185
+ this.text = e.value;
186
+ const date = this.convertMask(this.text);
187
+
188
+ if (this.text && this.text.indexOf('_') === -1 && this.text.length == 10 && this.type == 'jalali') {
189
+ this.userChange = e.isUserChange;
190
+
191
+ this.value = this.convertMaskToDate(date.year + '-' + date.monnth + '-' + date.day);
192
+ } else if (this.text && this.text.indexOf('_') === -1 && this.text.length == 10 && this.type == 'gregorian') {
193
+ this.userChange = e.isUserChange;
194
+ this.value = this.convertMaskToDate(date.year + '-' + date.monnth + '-' + date.day);
195
+ }
196
+ }
197
+
198
+ ngOnInit(): void {
199
+ this._setDateType();
200
+ }
201
+
202
+ ngAfterViewInit(): void {
203
+ setTimeout(() => {
204
+ this.text = this._value?.toString();
205
+ if (this.showToday && !this.value) {
206
+ this.selectToday();
207
+ }
208
+ this.cdr.markForCheck();
209
+ });
210
+ }
211
+
212
+ ngAfterContentInit(): void {
213
+ this.initValidation(this.ref, 'value', this.validation);
214
+ }
215
+
216
+ clear() {
217
+ this.userChange = true;
218
+ this.value = null;
219
+ }
220
+
221
+ userChange: boolean = false;
222
+
223
+ @Output()
224
+ onValueChanged: EventEmitter<AXDataPickerChangeEvent> = new EventEmitter<AXDataPickerChangeEvent>();
225
+
226
+ @Output()
227
+ valueChange: EventEmitter<Date> = new EventEmitter<Date>();
228
+
229
+ private _value: AXDateTime;
230
+ @Input()
231
+ public get value(): Date {
232
+ return this._value?.date;
233
+ }
234
+ public set value(v: Date) {
235
+ this.validate();
236
+ const oldValue = this._value;
237
+ const old = this.value;
238
+
239
+ if (v) {
240
+ this._value = new AXDateTime(v, this.type);
241
+ } else {
242
+ this._value = null;
243
+ }
244
+ let unValidDate = false;
245
+ if (this.max || this.min) {
246
+ unValidDate = this.isInMInMaxRange(AXDateTime.convert(v));
247
+ }
248
+
249
+ if (!unValidDate) {
250
+ if ((!v && oldValue) || (this._value && !this._value.equal(oldValue, 'day'))) {
251
+ this.text = this._value?.toString();
252
+ setTimeout(() => {
253
+ this.valueChange.emit(v);
254
+ this.onValueChanged.emit({
255
+ component: this,
256
+ oldValue: old,
257
+ value: v,
258
+ isUserChange: this.userChange
259
+ });
260
+ }, 100);
261
+ }
262
+ } else {
263
+ this.text = '';
264
+ }
265
+ this.userChange = false;
266
+ }
267
+
268
+ private _setDateType() {
269
+ switch (this.dateType) {
270
+ case 'yyyyMMdd':
271
+ this.dateType = {
272
+ guide: true,
273
+ showMask: true,
274
+ mask: this.yyyyMMdd,
275
+ keepCharPositions: true
276
+ };
277
+ break;
278
+ case 'ddMMyyyy':
279
+ this.dateType = {
280
+ guide: true,
281
+ showMask: true,
282
+ mask: this.ddMMyyyy,
283
+ keepCharPositions: true
284
+ };
285
+ break;
286
+ case 'yyyyddMM':
287
+ this.dateType = {
288
+ guide: true,
289
+ showMask: true,
290
+ mask: this.yyyyddMM,
291
+ keepCharPositions: true
292
+ };
293
+ break;
294
+
295
+ default:
296
+ if (this.type == 'gregorian') {
297
+ this.dateType = {
298
+ guide: true,
299
+ showMask: true,
300
+ mask: this.ddMMyyyy,
301
+ keepCharPositions: true
302
+ };
303
+ } else if (this.type == 'jalali') {
304
+ this.dateType = {
305
+ guide: true,
306
+ showMask: true,
307
+ mask: this.yyyyMMdd,
308
+ keepCharPositions: true
309
+ };
310
+ }
311
+ break;
312
+ }
313
+ }
314
+
315
+ isInMInMaxRange(d) {
316
+ let r = false;
317
+ if (d !== undefined) {
318
+ if (this.min && !this.max) {
319
+ r = d.compaireNew(new AXDateTime(this.min, this.type), 'YMD', this.type) === -1;
320
+ }
321
+ if (this.max && !this.min) {
322
+ r = d.compaireNew(new AXDateTime(this.max, this.type), 'YMD', this.type) === 1;
323
+ }
324
+ if (this.min && this.max) {
325
+ r =
326
+ d.compaireNew(new AXDateTime(this.min, this.type), 'YMD', this.type) === -1 ||
327
+ d.compaireNew(new AXDateTime(this.max, this.type), 'YMD', this.type) === 1;
328
+ }
329
+ }
330
+ return r;
331
+ }
332
+
333
+ onDateChange(e) {
334
+ this.userChange = true;
335
+ this.dropdown.close();
336
+
337
+ //this.clearValidationStyle(this.ref.nativeElement);
338
+ }
339
+
340
+ onClick(e) {
341
+ this.userChange = true;
342
+ this.dropdown.close();
343
+ }
344
+
345
+ onStartfocus() {
346
+ if (this.text == undefined || this.text == null || this.text == '') {
347
+ this.input.input.nativeElement.style.caretColor = 'transparent';
348
+ setTimeout(() => {
349
+ this.setCaretPosition(this.input.input.nativeElement, 0);
350
+ this.cursorPosition = 0;
351
+ this.input.input.nativeElement.style.caretColor = 'auto';
352
+ }, 0);
353
+ }
354
+ }
355
+
356
+ handleInputFocus() {
357
+ if (this.openByClick) {
358
+ this._renderPicker = true;
359
+ this.dropdown.open();
360
+ } else {
361
+ this.onStartfocus();
362
+ }
363
+
364
+ // this.input.input.nativeElement.focus();
365
+ }
366
+ handleInputBlur() {
367
+ if (this.text && this.text.indexOf('_') != -1) {
368
+ this.text = '';
369
+ this.value = null;
370
+ }
371
+ }
372
+
373
+ handleButtonClick() {
374
+ this._renderPicker = true;
375
+ setTimeout(() => {
376
+ this.dropdown.toggle();
377
+ });
378
+ }
379
+
380
+ handleKeyPress(e: KeyboardEvent) {
381
+ if (e.type == 'keydown' || e.type == 'keypress' || e.type == 'keyup') {
382
+ if (e.key === 'Delete') {
383
+ e.preventDefault();
384
+ }
385
+ if (e.key === 'Backspace') {
386
+ }
387
+ if (e.key === 'ArrowLeft' || e.key === 'ArrowRight') {
388
+ if (this.input.input.nativeElement.selectionStart || this.input.input.nativeElement.selectionStart === 0) {
389
+ this.cursorPosition = this.input.input.nativeElement.selectionStart;
390
+ }
391
+ }
392
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
393
+ e.preventDefault();
394
+ e.stopPropagation();
395
+ }
396
+ }
397
+
398
+ const inputChar = String.fromCharCode(e.charCode);
399
+ if (this.text != undefined) {
400
+ const ind1 = this.text.charAt(0);
401
+ const ind2 = this.text.charAt(1);
402
+ const ind3 = this.text.charAt(2);
403
+ const ind4 = this.text.charAt(3);
404
+ const ind5 = this.text.charAt(4);
405
+ const ind6 = this.text.charAt(5);
406
+ const ind7 = this.text.charAt(6);
407
+ const ind8 = this.text.charAt(7);
408
+ const ind9 = this.text.charAt(8);
409
+ const ind10 = this.text.charAt(9);
410
+ switch (this.dateType.mask) {
411
+ case this.yyyyMMdd:
412
+ if (e.type == 'keypress') {
413
+ this.handleClick();
414
+ if (
415
+ (ind6 == '1' && ind7 == '_' && inputChar >= '3') ||
416
+ (((ind6 == '0' && ind7 == '_') || (ind9 == '0' && ind10 == '_')) && inputChar == '0')
417
+ ) {
418
+ e.preventDefault();
419
+ } else if (ind9 == '3' && ind10 == '_') {
420
+ if (ind6 + ind7 <= '06' && inputChar >= '2') {
421
+ e.preventDefault();
422
+ } else if (ind6 + ind7 > '06' && inputChar >= '1') {
423
+ e.preventDefault();
424
+ }
425
+ }
426
+ }
427
+ if (this.text.indexOf('_') === -1 && this.text !== '') {
428
+ if (e.type === 'keydown') {
429
+ if (e.key === 'ArrowUp') {
430
+ if (this.cursorPosition <= 4) {
431
+ this.text = String(Number(ind1 + ind2 + ind3 + ind4) + 1) + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
432
+ }
433
+ if (this.cursorPosition >= 5 && this.cursorPosition <= 7) {
434
+ if (Number(ind6 + ind7) < 12) {
435
+ if (Number(ind6 + ind7) < 9) {
436
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '0' + String(Number(ind6 + ind7) + 1) + ind8 + ind9 + ind10;
437
+ } else {
438
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + String(Number(ind6 + ind7) + 1) + ind8 + ind9 + ind10;
439
+ }
440
+ } else {
441
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '01' + ind8 + ind9 + ind10;
442
+ }
443
+ }
444
+ if (this.cursorPosition >= 8) {
445
+ if (Number(ind9 + ind10) < 31) {
446
+ if (Number(ind9 + ind10) < 9) {
447
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '0' + String(Number(ind9 + ind10) + 1);
448
+ } else {
449
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + String(Number(ind9 + ind10) + 1);
450
+ }
451
+ } else {
452
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '01';
453
+ }
454
+ }
455
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
456
+ // setTimeout(() => {
457
+ // this.setCaret();
458
+ // e.preventDefault();
459
+ // this.input.input.nativeElement.style.caretColor = 'auto';
460
+ // }, 0);
461
+ // e.preventDefault();
462
+ } else if (e.key === 'ArrowDown') {
463
+ if (this.cursorPosition <= 4) {
464
+ this.text = String(Number(ind1 + ind2 + ind3 + ind4) - 1) + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
465
+ } else if (this.cursorPosition > 4 && this.cursorPosition <= 7) {
466
+ if (Number(ind6 + ind7) > 1) {
467
+ if (Number(ind6 + ind7) < 11) {
468
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '0' + String(Number(ind6 + ind7) - 1) + ind8 + ind9 + ind10;
469
+ } else {
470
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + String(Number(ind6 + ind7) - 1) + ind8 + ind9 + ind10;
471
+ }
472
+ } else {
473
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '12' + ind8 + ind9 + ind10;
474
+ }
475
+ } else if (this.cursorPosition >= 8) {
476
+ if (Number(ind9 + ind10) > 1) {
477
+ if (Number(ind9 + ind10) < 11) {
478
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '0' + String(Number(ind9 + ind10) - 1);
479
+ } else {
480
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + String(Number(ind9 + ind10) - 1);
481
+ }
482
+ } else {
483
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '31';
484
+ }
485
+ }
486
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
487
+
488
+ // setTimeout(() => {
489
+ // this.setCaret();
490
+ // this.input.input.nativeElement.style.caretColor = 'auto';
491
+ // }, 0);
492
+ }
493
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
494
+ this.input.input.nativeElement.style.caretColor = 'transparent';
495
+ e.preventDefault();
496
+ e.stopPropagation();
497
+ return false;
498
+ }
499
+ }
500
+ }
501
+ if (e.type === 'keyup') {
502
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
503
+ this.setCaret();
504
+ this.input.input.nativeElement.style.caretColor = 'auto';
505
+ e.preventDefault();
506
+ e.stopPropagation();
507
+ }
508
+ }
509
+ break;
510
+ case this.ddMMyyyy:
511
+ if (e.type === 'keypress') {
512
+ this.handleClick();
513
+ if (
514
+ (ind4 == '1' && ind5 == '_' && inputChar >= '3') ||
515
+ (((ind1 == '0' && ind2 == '_') || (ind4 == '0' && ind5 == '_')) && inputChar == '0')
516
+ ) {
517
+ e.preventDefault();
518
+ } else {
519
+ if (ind1 == '3' && ind2 == '_' && inputChar >= '2') {
520
+ e.preventDefault();
521
+ }
522
+ }
523
+ }
524
+ if (this.text.indexOf('_') === -1 && this.text !== '') {
525
+ if (e.type === 'keydown') {
526
+ if (e.key === 'ArrowUp') {
527
+ if (this.cursorPosition >= 6) {
528
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + String(Number(ind7 + ind8 + ind9 + ind10) + 1);
529
+ }
530
+ if (this.cursorPosition > 2 && this.cursorPosition <= 5) {
531
+ if (Number(ind4 + ind5) < 12) {
532
+ if (Number(ind4 + ind5) < 9) {
533
+ this.text = ind1 + ind2 + ind3 + '0' + String(Number(ind4 + ind5) + 1) + ind6 + ind7 + ind8 + ind9 + ind10;
534
+ } else {
535
+ this.text = ind1 + ind2 + ind3 + String(Number(ind4 + ind5) + 1) + ind6 + ind7 + ind8 + ind9 + ind10;
536
+ }
537
+ } else {
538
+ this.text = ind1 + ind2 + ind3 + '01' + ind6 + ind7 + ind8 + ind9 + ind10;
539
+ }
540
+ }
541
+ if (this.cursorPosition <= 2) {
542
+ if (Number(ind1 + ind2) < 31) {
543
+ if (Number(ind1 + ind2) < 9) {
544
+ this.text = '0' + String(Number(ind1 + ind2) + 1) + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
545
+ } else {
546
+ this.text = String(Number(ind1 + ind2) + 1) + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
547
+ }
548
+ } else {
549
+ this.text = '01' + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
550
+ }
551
+ }
552
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
553
+ // setTimeout(() => {
554
+ // this.setCaret();
555
+ // this.input.input.nativeElement.style.caretColor = 'auto';
556
+ // }, 0);
557
+ } else if (e.key === 'ArrowDown') {
558
+ if (this.cursorPosition >= 6) {
559
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + String(Number(ind7 + ind8 + ind9 + ind10) - 1);
560
+ } else if (this.cursorPosition > 2 && this.cursorPosition <= 5) {
561
+ if (Number(ind4 + ind5) > 1) {
562
+ if (Number(ind4 + ind5) < 11) {
563
+ this.text = ind1 + ind2 + ind3 + '0' + String(Number(ind4 + ind5) - 1) + ind6 + ind7 + ind8 + ind9 + ind10;
564
+ } else {
565
+ this.text = ind1 + ind2 + ind3 + String(Number(ind4 + ind5) - 1) + ind6 + ind7 + ind8 + ind9 + ind10;
566
+ }
567
+ } else {
568
+ this.text = ind1 + ind2 + ind3 + '12' + ind6 + ind7 + ind8 + ind9 + ind10;
569
+ }
570
+ } else if (this.cursorPosition <= 2) {
571
+ if (Number(ind1 + ind2) > 1) {
572
+ if (Number(ind1 + ind2) < 11) {
573
+ this.text = '0' + String(Number(ind1 + ind2) - 1) + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
574
+ } else {
575
+ this.text = String(Number(ind1 + ind2) - 1) + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
576
+ }
577
+ } else {
578
+ this.text = '31' + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
579
+ }
580
+ }
581
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
582
+ // setTimeout(() => {
583
+ // this.setCaret();
584
+ // this.input.input.nativeElement.style.caretColor = 'auto';
585
+ // }, 0);
586
+ }
587
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
588
+ this.input.input.nativeElement.style.caretColor = 'transparent';
589
+ e.preventDefault();
590
+ e.stopPropagation();
591
+ return false;
592
+ }
593
+ }
594
+ }
595
+ if (e.type === 'keyup') {
596
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
597
+ this.setCaret();
598
+ this.input.input.nativeElement.style.caretColor = 'auto';
599
+ e.preventDefault();
600
+ e.stopPropagation();
601
+ }
602
+ }
603
+ break;
604
+
605
+ case this.yyyyddMM:
606
+ if (e.type === 'keypress') {
607
+ if (
608
+ (ind9 === '1' && ind10 == '_' && inputChar >= '3') ||
609
+ (((ind6 == '0' && ind7 == '_') || (ind9 == '0' && ind10)) && inputChar == '0')
610
+ ) {
611
+ e.preventDefault();
612
+ } else if (ind6 == '3' && ind7 == '_' && inputChar >= '2') {
613
+ e.preventDefault();
614
+ }
615
+ setTimeout(() => {
616
+ this.handleClick();
617
+ }, 0);
618
+ }
619
+ if (this.text.indexOf('_') === -1 && this.text !== '') {
620
+ if (e.type === 'keydown') {
621
+ if (e.key === 'ArrowUp') {
622
+ if (this.cursorPosition <= 4) {
623
+ this.text = String(Number(ind1 + ind2 + ind3 + ind4) + 1) + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
624
+ }
625
+ if (this.cursorPosition > 4 && this.cursorPosition <= 7) {
626
+ if (Number(ind6 + ind7) < 31) {
627
+ if (Number(ind6 + ind7) < 9) {
628
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '0' + String(Number(ind6 + ind7) + 1) + ind8 + ind9 + ind10;
629
+ } else {
630
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + String(Number(ind6 + ind7) + 1) + ind8 + ind9 + ind10;
631
+ }
632
+ } else {
633
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '01' + ind8 + ind9 + ind10;
634
+ }
635
+ }
636
+ if (this.cursorPosition >= 8) {
637
+ if (Number(ind9 + ind10) < 12) {
638
+ if (Number(ind9 + ind10) < 9) {
639
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '0' + String(Number(ind9 + ind10) + 1);
640
+ } else {
641
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + String(Number(ind9 + ind10) + 1);
642
+ }
643
+ } else {
644
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '01';
645
+ }
646
+ }
647
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
648
+ // setTimeout(() => {
649
+ // this.setCaret();
650
+ // this.input.input.nativeElement.style.caretColor = 'auto';
651
+ // }, 0);
652
+ } else if (e.key === 'ArrowDown') {
653
+ if (this.cursorPosition <= 4) {
654
+ this.text = String(Number(ind1 + ind2 + ind3 + ind4) - 1) + ind5 + ind6 + ind7 + ind8 + ind9 + ind10;
655
+ } else if (this.cursorPosition > 4 && this.cursorPosition <= 7) {
656
+ if (Number(ind6 + ind7) > 1) {
657
+ if (Number(ind6 + ind7) < 11) {
658
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '0' + String(Number(ind6 + ind7) - 1) + ind8 + ind9 + ind10;
659
+ } else {
660
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + String(Number(ind6 + ind7) - 1) + ind8 + ind9 + ind10;
661
+ }
662
+ } else {
663
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + '31' + ind8 + ind9 + ind10;
664
+ }
665
+ } else if (this.cursorPosition >= 8) {
666
+ if (Number(ind9 + ind10) > 1) {
667
+ if (Number(ind9 + ind10) < 11) {
668
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '0' + String(Number(ind9 + ind10) - 1);
669
+ } else {
670
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + String(Number(ind9 + ind10) - 1);
671
+ }
672
+ } else {
673
+ this.text = ind1 + ind2 + ind3 + ind4 + ind5 + ind6 + ind7 + ind8 + '12';
674
+ }
675
+ }
676
+ // this.input.input.nativeElement.style.caretColor = 'transparent';
677
+ // setTimeout(() => {
678
+ // this.setCaret();
679
+ // this.input.input.nativeElement.style.caretColor = 'auto';
680
+ // }, 0);
681
+ }
682
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
683
+ this.input.input.nativeElement.style.caretColor = 'transparent';
684
+ e.preventDefault();
685
+ e.stopPropagation();
686
+ return false;
687
+ }
688
+ }
689
+ }
690
+ if (e.type === 'keyup') {
691
+ if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
692
+ this.setCaret();
693
+ this.input.input.nativeElement.style.caretColor = 'auto';
694
+ e.preventDefault();
695
+ e.stopPropagation();
696
+ }
697
+ }
698
+ break;
699
+ default:
700
+ break;
701
+ }
702
+ }
703
+ }
704
+ handleClick() {
705
+ if (this.input.input.nativeElement.selectionStart || this.input.input.nativeElement.selectionStart === 0) {
706
+ this.cursorPosition = this.input.input.nativeElement.selectionStart;
707
+ }
708
+ }
709
+
710
+ setCaretPosition(ctrl, pos) {
711
+ if (ctrl.setSelectionRange) {
712
+ ctrl.focus();
713
+ ctrl.setSelectionRange(pos, pos);
714
+ }
715
+ }
716
+
717
+ setCaret() {
718
+ this.setCaretPosition(this.input.input.nativeElement, this.cursorPosition);
719
+ }
720
+ }