@taiga-ui/cdk 3.57.0 → 3.59.0-canary.1c24449

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 (1470) hide show
  1. package/abstract/control.d.ts +1 -1
  2. package/abstract/controller.d.ts +1 -1
  3. package/abstract/dialog.directive.d.ts +1 -1
  4. package/abstract/interactive.d.ts +1 -1
  5. package/abstract/multiple-control.d.ts +1 -1
  6. package/abstract/nullable-control.d.ts +1 -1
  7. package/abstract/portal-host.d.ts +1 -1
  8. package/abstract/theme-switcher.d.ts +1 -1
  9. package/components/alert-host/alert-host.component.d.ts +1 -1
  10. package/components/dialog-host/dialog-host.component.d.ts +1 -1
  11. package/components/dropdown-host/dropdown-host.component.d.ts +1 -1
  12. package/components/scroll-controls/scroll-controls.component.d.ts +1 -1
  13. package/components/scroll-controls/scroll-ref.directive.d.ts +1 -1
  14. package/components/scroll-controls/scrollbar.directive.d.ts +1 -1
  15. package/constants/version.d.ts +1 -1
  16. package/constants/version.js +1 -1
  17. package/directives/active-zone/active-zone.directive.d.ts +1 -1
  18. package/directives/auto-focus/autofocus.directive.d.ts +1 -1
  19. package/directives/auto-focus/handlers/abstract.handler.d.ts +1 -1
  20. package/directives/auto-focus/handlers/default.handler.d.ts +1 -1
  21. package/directives/auto-focus/handlers/ios.handler.d.ts +1 -1
  22. package/directives/auto-focus/handlers/sync.handler.d.ts +1 -1
  23. package/directives/autofilled/autofilled-style.component.d.ts +1 -1
  24. package/directives/autofilled/autofilled.directive.d.ts +1 -1
  25. package/directives/checked/checked.directive.d.ts +1 -1
  26. package/directives/click-outside/click-outside.directive.d.ts +1 -1
  27. package/directives/control/control.directive.d.ts +1 -1
  28. package/directives/copy-processor/copy-processor.directive.d.ts +1 -1
  29. package/directives/drag/drag.directive.d.ts +1 -1
  30. package/directives/droppable/droppable.directive.d.ts +1 -1
  31. package/directives/element/element.directive.d.ts +1 -1
  32. package/directives/focus-trap/focus-trap.directive.d.ts +1 -1
  33. package/directives/focus-visible/focus-visible.directive.d.ts +1 -1
  34. package/directives/focusable/focusable.directive.d.ts +1 -1
  35. package/directives/focused/focused.directive.d.ts +1 -1
  36. package/directives/for/for.directive.d.ts +1 -1
  37. package/directives/for-async/for-async.directive.d.ts +1 -1
  38. package/directives/high-dpi/high-dpi.directive.d.ts +1 -1
  39. package/directives/hovered/hovered.directive.d.ts +1 -1
  40. package/directives/item/item.directive.d.ts +1 -1
  41. package/directives/let/let.directive.d.ts +1 -1
  42. package/directives/media/media.directive.d.ts +1 -1
  43. package/directives/obscured/obscured.directive.d.ts +1 -1
  44. package/directives/overscroll/overscroll.directive.d.ts +1 -1
  45. package/directives/pan/pan.directive.d.ts +1 -1
  46. package/directives/platform/platform.directive.d.ts +1 -1
  47. package/directives/portal/portal.directive.d.ts +1 -1
  48. package/directives/pressed/pressed.directive.d.ts +1 -1
  49. package/directives/prevent-default/prevent-default.directive.d.ts +1 -1
  50. package/directives/repeat-times/repeat-times.directive.d.ts +1 -1
  51. package/directives/resize/resize.directive.d.ts +1 -1
  52. package/directives/resizer/resizeable.directive.d.ts +1 -1
  53. package/directives/resizer/resizer.directive.d.ts +1 -1
  54. package/directives/swipe/swipe.directive.d.ts +1 -1
  55. package/directives/validator/validator.directive.d.ts +1 -1
  56. package/directives/value-changes/value-changes.directive.d.ts +1 -1
  57. package/directives/zoom/zoom.directive.d.ts +1 -1
  58. package/esm2020/abstract/control.mjs +189 -0
  59. package/esm2020/abstract/controller.mjs +17 -0
  60. package/esm2020/abstract/dialog.directive.mjs +36 -0
  61. package/esm2020/abstract/dialog.service.mjs +43 -0
  62. package/esm2020/abstract/interactive.mjs +84 -0
  63. package/esm2020/abstract/multiple-control.mjs +17 -0
  64. package/esm2020/abstract/nullable-control.mjs +14 -0
  65. package/esm2020/abstract/portal-host.mjs +50 -0
  66. package/esm2020/abstract/portal-service.mjs +39 -0
  67. package/esm2020/abstract/theme-switcher.mjs +45 -0
  68. package/esm2020/coercion/coerce-boolean-property.mjs +8 -0
  69. package/esm2020/components/alert-host/alert-host.component.mjs +61 -0
  70. package/esm2020/components/alert-host/alert-host.module.mjs +19 -0
  71. package/esm2020/components/dialog-host/dialog-host.component.mjs +128 -0
  72. package/esm2020/components/dialog-host/dialog-host.module.mjs +38 -0
  73. package/esm2020/components/dropdown-host/dropdown-host.component.mjs +24 -0
  74. package/esm2020/components/dropdown-host/dropdown-host.module.mjs +16 -0
  75. package/esm2020/components/dropdown-host/dropdown-portal.service.mjs +17 -0
  76. package/esm2020/components/scroll-controls/scroll-controls.component.mjs +40 -0
  77. package/esm2020/components/scroll-controls/scroll-controls.module.mjs +26 -0
  78. package/esm2020/components/scroll-controls/scroll-ref.directive.mjs +26 -0
  79. package/esm2020/components/scroll-controls/scrollbar.directive.mjs +133 -0
  80. package/esm2020/constants/empty.mjs +26 -0
  81. package/esm2020/constants/version.mjs +2 -0
  82. package/esm2020/directives/active-zone/active-zone.directive.mjs +77 -0
  83. package/esm2020/directives/active-zone/active-zone.module.mjs +16 -0
  84. package/esm2020/directives/auto-focus/autofocus.directive.mjs +55 -0
  85. package/esm2020/directives/auto-focus/autofocus.module.mjs +16 -0
  86. package/esm2020/directives/auto-focus/handlers/abstract.handler.mjs +20 -0
  87. package/esm2020/directives/auto-focus/handlers/default.handler.mjs +44 -0
  88. package/esm2020/directives/auto-focus/handlers/ios.handler.mjs +168 -0
  89. package/esm2020/directives/auto-focus/handlers/sync.handler.mjs +28 -0
  90. package/esm2020/directives/autofilled/autofilled-style.component.mjs +13 -0
  91. package/esm2020/directives/autofilled/autofilled.directive.mjs +40 -0
  92. package/esm2020/directives/autofilled/autofilled.module.mjs +17 -0
  93. package/esm2020/directives/checked/checked.directive.mjs +46 -0
  94. package/esm2020/directives/checked/checked.module.mjs +16 -0
  95. package/esm2020/directives/click-outside/click-outside.directive.mjs +39 -0
  96. package/esm2020/directives/click-outside/click-outside.module.mjs +16 -0
  97. package/esm2020/directives/control/control.directive.mjs +25 -0
  98. package/esm2020/directives/control/control.module.mjs +16 -0
  99. package/esm2020/directives/copy-processor/copy-processor.directive.mjs +34 -0
  100. package/esm2020/directives/copy-processor/copy-processor.module.mjs +16 -0
  101. package/esm2020/directives/drag/drag.directive.mjs +37 -0
  102. package/esm2020/directives/drag/drag.module.mjs +19 -0
  103. package/esm2020/directives/droppable/droppable.directive.mjs +40 -0
  104. package/esm2020/directives/droppable/droppable.module.mjs +16 -0
  105. package/esm2020/directives/element/element.directive.mjs +34 -0
  106. package/esm2020/directives/element/element.module.mjs +16 -0
  107. package/esm2020/directives/focus-trap/focus-trap.directive.mjs +77 -0
  108. package/esm2020/directives/focus-trap/focus-trap.module.mjs +16 -0
  109. package/esm2020/directives/focus-visible/focus-visible.directive.mjs +28 -0
  110. package/esm2020/directives/focus-visible/focus-visible.module.mjs +16 -0
  111. package/esm2020/directives/focusable/focusable.directive.mjs +31 -0
  112. package/esm2020/directives/focusable/focusable.module.mjs +16 -0
  113. package/esm2020/directives/focused/focused.directive.mjs +33 -0
  114. package/esm2020/directives/focused/focused.module.mjs +16 -0
  115. package/esm2020/directives/for/for.directive.mjs +35 -0
  116. package/esm2020/directives/for/for.module.mjs +16 -0
  117. package/esm2020/directives/for-async/for-async.directive.mjs +60 -0
  118. package/esm2020/directives/for-async/for-async.module.mjs +20 -0
  119. package/esm2020/directives/high-dpi/high-dpi.directive.mjs +31 -0
  120. package/esm2020/directives/high-dpi/high-dpi.module.mjs +16 -0
  121. package/esm2020/directives/hovered/hovered.directive.mjs +23 -0
  122. package/esm2020/directives/hovered/hovered.module.mjs +16 -0
  123. package/esm2020/directives/hovered/hovered.service.mjs +34 -0
  124. package/esm2020/directives/item/item.directive.mjs +16 -0
  125. package/esm2020/directives/item/item.module.mjs +16 -0
  126. package/esm2020/directives/let/let.directive.mjs +38 -0
  127. package/esm2020/directives/let/let.module.mjs +16 -0
  128. package/esm2020/directives/media/media.directive.mjs +109 -0
  129. package/esm2020/directives/media/media.module.mjs +16 -0
  130. package/esm2020/directives/obscured/obscured.directive.mjs +49 -0
  131. package/esm2020/directives/obscured/obscured.module.mjs +16 -0
  132. package/esm2020/directives/overscroll/overscroll.directive.mjs +102 -0
  133. package/esm2020/directives/overscroll/overscroll.module.mjs +16 -0
  134. package/esm2020/directives/pan/pan.directive.mjs +23 -0
  135. package/esm2020/directives/pan/pan.module.mjs +19 -0
  136. package/esm2020/directives/platform/platform.directive.mjs +35 -0
  137. package/esm2020/directives/platform/platform.module.mjs +16 -0
  138. package/esm2020/directives/portal/portal.directive.mjs +36 -0
  139. package/esm2020/directives/portal/portal.module.mjs +16 -0
  140. package/esm2020/directives/pressed/pressed.directive.mjs +30 -0
  141. package/esm2020/directives/pressed/pressed.module.mjs +16 -0
  142. package/esm2020/directives/prevent-default/prevent-default.directive.mjs +49 -0
  143. package/esm2020/directives/prevent-default/prevent-default.module.mjs +19 -0
  144. package/esm2020/directives/repeat-times/repeat-times.directive.mjs +59 -0
  145. package/esm2020/directives/repeat-times/repeat-times.module.mjs +16 -0
  146. package/esm2020/directives/resize/resize.directive.mjs +23 -0
  147. package/esm2020/directives/resize/resize.module.mjs +19 -0
  148. package/esm2020/directives/resizer/resizeable.directive.mjs +14 -0
  149. package/esm2020/directives/resizer/resizer.directive.mjs +106 -0
  150. package/esm2020/directives/resizer/resizer.module.mjs +17 -0
  151. package/esm2020/directives/swipe/swipe.directive.mjs +23 -0
  152. package/esm2020/directives/swipe/swipe.module.mjs +19 -0
  153. package/esm2020/directives/validator/validator.directive.mjs +47 -0
  154. package/esm2020/directives/validator/validator.module.mjs +16 -0
  155. package/esm2020/directives/value-changes/value-changes.directive.mjs +38 -0
  156. package/esm2020/directives/value-changes/value-changes.module.mjs +16 -0
  157. package/esm2020/directives/zoom/zoom.directive.mjs +26 -0
  158. package/esm2020/directives/zoom/zoom.module.mjs +19 -0
  159. package/esm2020/observables/is-observed.mjs +6 -0
  160. package/esm2020/pipes/filter/filter.module.mjs +16 -0
  161. package/esm2020/pipes/filter/filter.pipe.mjs +14 -0
  162. package/esm2020/pipes/is-present/is-present.module.mjs +16 -0
  163. package/esm2020/pipes/is-present/is-present.pipe.mjs +15 -0
  164. package/esm2020/pipes/keys/keys.module.mjs +16 -0
  165. package/esm2020/pipes/keys/keys.pipe.mjs +14 -0
  166. package/esm2020/pipes/mapper/mapper.module.mjs +16 -0
  167. package/esm2020/pipes/mapper/mapper.pipe.mjs +14 -0
  168. package/esm2020/pipes/replace/replace.module.mjs +16 -0
  169. package/esm2020/pipes/replace/replace.pipe.mjs +16 -0
  170. package/esm2020/services/destroy.service.mjs +26 -0
  171. package/esm2020/services/directive-styles.service.mjs +32 -0
  172. package/esm2020/services/focus-visible.service.mjs +35 -0
  173. package/esm2020/services/id.service.mjs +21 -0
  174. package/esm2020/services/obscured.service.mjs +54 -0
  175. package/esm2020/services/pan.service.mjs +35 -0
  176. package/esm2020/services/parents-scroll.service.mjs +36 -0
  177. package/esm2020/services/resize.service.mjs +47 -0
  178. package/esm2020/services/scroll.service.mjs +59 -0
  179. package/esm2020/services/static-request.service.mjs +50 -0
  180. package/esm2020/services/swipe.service.mjs +51 -0
  181. package/esm2020/services/zoom.service.mjs +54 -0
  182. package/esm2020/tokens/active-element.mjs +61 -0
  183. package/esm2020/tokens/base-href.mjs +5 -0
  184. package/esm2020/tokens/ensure-base-href.mjs +16 -0
  185. package/esm2020/tokens/fonts-ready.mjs +8 -0
  186. package/esm2020/tokens/is-firefox.mjs +9 -0
  187. package/esm2020/tokens/is-webkit.mjs +9 -0
  188. package/esm2020/tokens/window-size.mjs +28 -0
  189. package/esm2020/utils/browser/is-safari.mjs +10 -0
  190. package/esm2020/utils/color/hex-to-rgba.mjs +30 -0
  191. package/esm2020/utils/color/rgba-to-hex.mjs +26 -0
  192. package/esm2020/utils/dom/contains-or-after.mjs +10 -0
  193. package/esm2020/utils/dom/get-element-obscurers.mjs +43 -0
  194. package/esm2020/utils/dom/get-selected-text.mjs +15 -0
  195. package/esm2020/utils/dom/is-node-in.mjs +14 -0
  196. package/esm2020/utils/dom/point-to-client-rect.mjs +19 -0
  197. package/esm2020/utils/dom/retarget-boundary-crossing.mjs +16 -0
  198. package/esm2020/utils/focus/get-native-focused.mjs +16 -0
  199. package/esm2020/utils/focus/is-native-focused.mjs +15 -0
  200. package/esm2020/utils/miscellaneous/is-number.mjs +4 -0
  201. package/esm2020/utils/miscellaneous/is-object.mjs +4 -0
  202. package/esm2020/utils/miscellaneous/is-string.mjs +4 -0
  203. package/esm2020/utils/miscellaneous/object-from-entries.mjs +12 -0
  204. package/esm2020/utils/miscellaneous/provide-options.mjs +12 -0
  205. package/esm2020/utils/svg/svg-linear-gradient-processor.mjs +64 -0
  206. package/fesm2015/taiga-ui-cdk-abstract.mjs +524 -0
  207. package/fesm2015/taiga-ui-cdk-abstract.mjs.map +1 -0
  208. package/fesm2015/taiga-ui-cdk-classes.mjs +29 -0
  209. package/fesm2015/taiga-ui-cdk-classes.mjs.map +1 -0
  210. package/fesm2015/taiga-ui-cdk-coercion.mjs +14 -0
  211. package/fesm2015/taiga-ui-cdk-coercion.mjs.map +1 -0
  212. package/fesm2015/taiga-ui-cdk-components-alert-host.mjs +86 -0
  213. package/fesm2015/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
  214. package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs +171 -0
  215. package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
  216. package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
  217. package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
  218. package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs +219 -0
  219. package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
  220. package/fesm2015/taiga-ui-cdk-components.mjs +9 -0
  221. package/fesm2015/taiga-ui-cdk-components.mjs.map +1 -0
  222. package/fesm2015/taiga-ui-cdk-constants.mjs +237 -0
  223. package/fesm2015/taiga-ui-cdk-constants.mjs.map +1 -0
  224. package/fesm2015/taiga-ui-cdk-date-time.mjs +821 -0
  225. package/fesm2015/taiga-ui-cdk-date-time.mjs.map +1 -0
  226. package/fesm2015/taiga-ui-cdk-decorators.mjs +193 -0
  227. package/fesm2015/taiga-ui-cdk-decorators.mjs.map +1 -0
  228. package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs +102 -0
  229. package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
  230. package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs +356 -0
  231. package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
  232. package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs +72 -0
  233. package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
  234. package/fesm2015/taiga-ui-cdk-directives-checked.mjs +66 -0
  235. package/fesm2015/taiga-ui-cdk-directives-checked.mjs.map +1 -0
  236. package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs +61 -0
  237. package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
  238. package/fesm2015/taiga-ui-cdk-directives-control.mjs +47 -0
  239. package/fesm2015/taiga-ui-cdk-directives-control.mjs.map +1 -0
  240. package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs +57 -0
  241. package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
  242. package/fesm2015/taiga-ui-cdk-directives-drag.mjs +62 -0
  243. package/fesm2015/taiga-ui-cdk-directives-drag.mjs.map +1 -0
  244. package/fesm2015/taiga-ui-cdk-directives-droppable.mjs +62 -0
  245. package/fesm2015/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
  246. package/fesm2015/taiga-ui-cdk-directives-element.mjs +56 -0
  247. package/fesm2015/taiga-ui-cdk-directives-element.mjs.map +1 -0
  248. package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs +99 -0
  249. package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
  250. package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs +50 -0
  251. package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
  252. package/fesm2015/taiga-ui-cdk-directives-focusable.mjs +51 -0
  253. package/fesm2015/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
  254. package/fesm2015/taiga-ui-cdk-directives-focused.mjs +55 -0
  255. package/fesm2015/taiga-ui-cdk-directives-focused.mjs.map +1 -0
  256. package/fesm2015/taiga-ui-cdk-directives-for-async.mjs +87 -0
  257. package/fesm2015/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
  258. package/fesm2015/taiga-ui-cdk-directives-for.mjs +58 -0
  259. package/fesm2015/taiga-ui-cdk-directives-for.mjs.map +1 -0
  260. package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs +53 -0
  261. package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
  262. package/fesm2015/taiga-ui-cdk-directives-hovered.mjs +78 -0
  263. package/fesm2015/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
  264. package/fesm2015/taiga-ui-cdk-directives-item.mjs +36 -0
  265. package/fesm2015/taiga-ui-cdk-directives-item.mjs.map +1 -0
  266. package/fesm2015/taiga-ui-cdk-directives-let.mjs +74 -0
  267. package/fesm2015/taiga-ui-cdk-directives-let.mjs.map +1 -0
  268. package/fesm2015/taiga-ui-cdk-directives-media.mjs +131 -0
  269. package/fesm2015/taiga-ui-cdk-directives-media.mjs.map +1 -0
  270. package/fesm2015/taiga-ui-cdk-directives-obscured.mjs +71 -0
  271. package/fesm2015/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
  272. package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs +124 -0
  273. package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
  274. package/fesm2015/taiga-ui-cdk-directives-pan.mjs +48 -0
  275. package/fesm2015/taiga-ui-cdk-directives-pan.mjs.map +1 -0
  276. package/fesm2015/taiga-ui-cdk-directives-platform.mjs +55 -0
  277. package/fesm2015/taiga-ui-cdk-directives-platform.mjs.map +1 -0
  278. package/fesm2015/taiga-ui-cdk-directives-portal.mjs +60 -0
  279. package/fesm2015/taiga-ui-cdk-directives-portal.mjs.map +1 -0
  280. package/fesm2015/taiga-ui-cdk-directives-pressed.mjs +52 -0
  281. package/fesm2015/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
  282. package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs +74 -0
  283. package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
  284. package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs +81 -0
  285. package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
  286. package/fesm2015/taiga-ui-cdk-directives-resize.mjs +48 -0
  287. package/fesm2015/taiga-ui-cdk-directives-resize.mjs.map +1 -0
  288. package/fesm2015/taiga-ui-cdk-directives-resizer.mjs +139 -0
  289. package/fesm2015/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
  290. package/fesm2015/taiga-ui-cdk-directives-swipe.mjs +48 -0
  291. package/fesm2015/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
  292. package/fesm2015/taiga-ui-cdk-directives-validator.mjs +67 -0
  293. package/fesm2015/taiga-ui-cdk-directives-validator.mjs.map +1 -0
  294. package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs +61 -0
  295. package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
  296. package/fesm2015/taiga-ui-cdk-directives-zoom.mjs +51 -0
  297. package/fesm2015/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
  298. package/fesm2015/taiga-ui-cdk-directives.mjs +40 -0
  299. package/fesm2015/taiga-ui-cdk-directives.mjs.map +1 -0
  300. package/fesm2015/taiga-ui-cdk-enums.mjs +37 -0
  301. package/fesm2015/taiga-ui-cdk-enums.mjs.map +1 -0
  302. package/fesm2015/taiga-ui-cdk-exceptions.mjs +84 -0
  303. package/fesm2015/taiga-ui-cdk-exceptions.mjs.map +1 -0
  304. package/fesm2015/taiga-ui-cdk-interfaces.mjs +4 -0
  305. package/fesm2015/taiga-ui-cdk-interfaces.mjs.map +1 -0
  306. package/fesm2015/taiga-ui-cdk-observables.mjs +172 -0
  307. package/fesm2015/taiga-ui-cdk-observables.mjs.map +1 -0
  308. package/fesm2015/taiga-ui-cdk-pipes-filter.mjs +34 -0
  309. package/fesm2015/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
  310. package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs +35 -0
  311. package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
  312. package/fesm2015/taiga-ui-cdk-pipes-keys.mjs +34 -0
  313. package/fesm2015/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
  314. package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs +34 -0
  315. package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
  316. package/fesm2015/taiga-ui-cdk-pipes-replace.mjs +37 -0
  317. package/fesm2015/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
  318. package/fesm2015/taiga-ui-cdk-pipes.mjs +10 -0
  319. package/fesm2015/taiga-ui-cdk-pipes.mjs.map +1 -0
  320. package/fesm2015/taiga-ui-cdk-services.mjs +469 -0
  321. package/fesm2015/taiga-ui-cdk-services.mjs.map +1 -0
  322. package/fesm2015/taiga-ui-cdk-tokens.mjs +287 -0
  323. package/fesm2015/taiga-ui-cdk-tokens.mjs.map +1 -0
  324. package/fesm2015/taiga-ui-cdk-types.mjs +4 -0
  325. package/fesm2015/taiga-ui-cdk-types.mjs.map +1 -0
  326. package/fesm2015/taiga-ui-cdk-utils-browser.mjs +31 -0
  327. package/fesm2015/taiga-ui-cdk-utils-browser.mjs.map +1 -0
  328. package/fesm2015/taiga-ui-cdk-utils-color.mjs +125 -0
  329. package/fesm2015/taiga-ui-cdk-utils-color.mjs.map +1 -0
  330. package/fesm2015/taiga-ui-cdk-utils-dom.mjs +259 -0
  331. package/fesm2015/taiga-ui-cdk-utils-dom.mjs.map +1 -0
  332. package/fesm2015/taiga-ui-cdk-utils-focus.mjs +171 -0
  333. package/fesm2015/taiga-ui-cdk-utils-focus.mjs.map +1 -0
  334. package/fesm2015/taiga-ui-cdk-utils-format.mjs +16 -0
  335. package/fesm2015/taiga-ui-cdk-utils-format.mjs.map +1 -0
  336. package/fesm2015/taiga-ui-cdk-utils-math.mjs +135 -0
  337. package/fesm2015/taiga-ui-cdk-utils-math.mjs.map +1 -0
  338. package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs +184 -0
  339. package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
  340. package/fesm2015/taiga-ui-cdk-utils-os.mjs +31 -0
  341. package/fesm2015/taiga-ui-cdk-utils-os.mjs.map +1 -0
  342. package/fesm2015/taiga-ui-cdk-utils-svg.mjs +72 -0
  343. package/fesm2015/taiga-ui-cdk-utils-svg.mjs.map +1 -0
  344. package/fesm2015/taiga-ui-cdk-utils.mjs +14 -0
  345. package/fesm2015/taiga-ui-cdk-utils.mjs.map +1 -0
  346. package/fesm2015/taiga-ui-cdk.mjs +22 -0
  347. package/fesm2015/taiga-ui-cdk.mjs.map +1 -0
  348. package/fesm2020/taiga-ui-cdk-abstract.mjs +514 -0
  349. package/fesm2020/taiga-ui-cdk-abstract.mjs.map +1 -0
  350. package/fesm2020/taiga-ui-cdk-classes.mjs +29 -0
  351. package/fesm2020/taiga-ui-cdk-classes.mjs.map +1 -0
  352. package/fesm2020/taiga-ui-cdk-coercion.mjs +14 -0
  353. package/fesm2020/taiga-ui-cdk-coercion.mjs.map +1 -0
  354. package/fesm2020/taiga-ui-cdk-components-alert-host.mjs +84 -0
  355. package/fesm2020/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
  356. package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs +169 -0
  357. package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
  358. package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
  359. package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
  360. package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs +215 -0
  361. package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
  362. package/fesm2020/taiga-ui-cdk-components.mjs +9 -0
  363. package/fesm2020/taiga-ui-cdk-components.mjs.map +1 -0
  364. package/fesm2020/taiga-ui-cdk-constants.mjs +240 -0
  365. package/fesm2020/taiga-ui-cdk-constants.mjs.map +1 -0
  366. package/fesm2020/taiga-ui-cdk-date-time.mjs +821 -0
  367. package/fesm2020/taiga-ui-cdk-date-time.mjs.map +1 -0
  368. package/fesm2020/taiga-ui-cdk-decorators.mjs +193 -0
  369. package/fesm2020/taiga-ui-cdk-decorators.mjs.map +1 -0
  370. package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs +97 -0
  371. package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
  372. package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs +346 -0
  373. package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
  374. package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs +70 -0
  375. package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
  376. package/fesm2020/taiga-ui-cdk-directives-checked.mjs +66 -0
  377. package/fesm2020/taiga-ui-cdk-directives-checked.mjs.map +1 -0
  378. package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs +59 -0
  379. package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
  380. package/fesm2020/taiga-ui-cdk-directives-control.mjs +45 -0
  381. package/fesm2020/taiga-ui-cdk-directives-control.mjs.map +1 -0
  382. package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs +54 -0
  383. package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
  384. package/fesm2020/taiga-ui-cdk-directives-drag.mjs +60 -0
  385. package/fesm2020/taiga-ui-cdk-directives-drag.mjs.map +1 -0
  386. package/fesm2020/taiga-ui-cdk-directives-droppable.mjs +60 -0
  387. package/fesm2020/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
  388. package/fesm2020/taiga-ui-cdk-directives-element.mjs +54 -0
  389. package/fesm2020/taiga-ui-cdk-directives-element.mjs.map +1 -0
  390. package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs +97 -0
  391. package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
  392. package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs +48 -0
  393. package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
  394. package/fesm2020/taiga-ui-cdk-directives-focusable.mjs +51 -0
  395. package/fesm2020/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
  396. package/fesm2020/taiga-ui-cdk-directives-focused.mjs +53 -0
  397. package/fesm2020/taiga-ui-cdk-directives-focused.mjs.map +1 -0
  398. package/fesm2020/taiga-ui-cdk-directives-for-async.mjs +84 -0
  399. package/fesm2020/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
  400. package/fesm2020/taiga-ui-cdk-directives-for.mjs +55 -0
  401. package/fesm2020/taiga-ui-cdk-directives-for.mjs.map +1 -0
  402. package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs +51 -0
  403. package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
  404. package/fesm2020/taiga-ui-cdk-directives-hovered.mjs +74 -0
  405. package/fesm2020/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
  406. package/fesm2020/taiga-ui-cdk-directives-item.mjs +36 -0
  407. package/fesm2020/taiga-ui-cdk-directives-item.mjs.map +1 -0
  408. package/fesm2020/taiga-ui-cdk-directives-let.mjs +72 -0
  409. package/fesm2020/taiga-ui-cdk-directives-let.mjs.map +1 -0
  410. package/fesm2020/taiga-ui-cdk-directives-media.mjs +129 -0
  411. package/fesm2020/taiga-ui-cdk-directives-media.mjs.map +1 -0
  412. package/fesm2020/taiga-ui-cdk-directives-obscured.mjs +69 -0
  413. package/fesm2020/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
  414. package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs +122 -0
  415. package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
  416. package/fesm2020/taiga-ui-cdk-directives-pan.mjs +46 -0
  417. package/fesm2020/taiga-ui-cdk-directives-pan.mjs.map +1 -0
  418. package/fesm2020/taiga-ui-cdk-directives-platform.mjs +55 -0
  419. package/fesm2020/taiga-ui-cdk-directives-platform.mjs.map +1 -0
  420. package/fesm2020/taiga-ui-cdk-directives-portal.mjs +56 -0
  421. package/fesm2020/taiga-ui-cdk-directives-portal.mjs.map +1 -0
  422. package/fesm2020/taiga-ui-cdk-directives-pressed.mjs +50 -0
  423. package/fesm2020/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
  424. package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs +72 -0
  425. package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
  426. package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs +79 -0
  427. package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
  428. package/fesm2020/taiga-ui-cdk-directives-resize.mjs +46 -0
  429. package/fesm2020/taiga-ui-cdk-directives-resize.mjs.map +1 -0
  430. package/fesm2020/taiga-ui-cdk-directives-resizer.mjs +137 -0
  431. package/fesm2020/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
  432. package/fesm2020/taiga-ui-cdk-directives-swipe.mjs +46 -0
  433. package/fesm2020/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
  434. package/fesm2020/taiga-ui-cdk-directives-validator.mjs +67 -0
  435. package/fesm2020/taiga-ui-cdk-directives-validator.mjs.map +1 -0
  436. package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs +58 -0
  437. package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
  438. package/fesm2020/taiga-ui-cdk-directives-zoom.mjs +49 -0
  439. package/fesm2020/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
  440. package/fesm2020/taiga-ui-cdk-directives.mjs +40 -0
  441. package/fesm2020/taiga-ui-cdk-directives.mjs.map +1 -0
  442. package/fesm2020/taiga-ui-cdk-enums.mjs +37 -0
  443. package/fesm2020/taiga-ui-cdk-enums.mjs.map +1 -0
  444. package/fesm2020/taiga-ui-cdk-exceptions.mjs +84 -0
  445. package/fesm2020/taiga-ui-cdk-exceptions.mjs.map +1 -0
  446. package/fesm2020/taiga-ui-cdk-interfaces.mjs +4 -0
  447. package/fesm2020/taiga-ui-cdk-interfaces.mjs.map +1 -0
  448. package/fesm2020/taiga-ui-cdk-observables.mjs +171 -0
  449. package/fesm2020/taiga-ui-cdk-observables.mjs.map +1 -0
  450. package/fesm2020/taiga-ui-cdk-pipes-filter.mjs +34 -0
  451. package/fesm2020/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
  452. package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs +35 -0
  453. package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
  454. package/fesm2020/taiga-ui-cdk-pipes-keys.mjs +34 -0
  455. package/fesm2020/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
  456. package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs +34 -0
  457. package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
  458. package/fesm2020/taiga-ui-cdk-pipes-replace.mjs +36 -0
  459. package/fesm2020/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
  460. package/fesm2020/taiga-ui-cdk-pipes.mjs +10 -0
  461. package/fesm2020/taiga-ui-cdk-pipes.mjs.map +1 -0
  462. package/fesm2020/taiga-ui-cdk-services.mjs +447 -0
  463. package/fesm2020/taiga-ui-cdk-services.mjs.map +1 -0
  464. package/fesm2020/taiga-ui-cdk-tokens.mjs +284 -0
  465. package/fesm2020/taiga-ui-cdk-tokens.mjs.map +1 -0
  466. package/fesm2020/taiga-ui-cdk-types.mjs +4 -0
  467. package/fesm2020/taiga-ui-cdk-types.mjs.map +1 -0
  468. package/fesm2020/taiga-ui-cdk-utils-browser.mjs +30 -0
  469. package/fesm2020/taiga-ui-cdk-utils-browser.mjs.map +1 -0
  470. package/fesm2020/taiga-ui-cdk-utils-color.mjs +124 -0
  471. package/fesm2020/taiga-ui-cdk-utils-color.mjs.map +1 -0
  472. package/fesm2020/taiga-ui-cdk-utils-dom.mjs +260 -0
  473. package/fesm2020/taiga-ui-cdk-utils-dom.mjs.map +1 -0
  474. package/fesm2020/taiga-ui-cdk-utils-focus.mjs +171 -0
  475. package/fesm2020/taiga-ui-cdk-utils-focus.mjs.map +1 -0
  476. package/fesm2020/taiga-ui-cdk-utils-format.mjs +16 -0
  477. package/fesm2020/taiga-ui-cdk-utils-format.mjs.map +1 -0
  478. package/fesm2020/taiga-ui-cdk-utils-math.mjs +135 -0
  479. package/fesm2020/taiga-ui-cdk-utils-math.mjs.map +1 -0
  480. package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs +187 -0
  481. package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
  482. package/fesm2020/taiga-ui-cdk-utils-os.mjs +31 -0
  483. package/fesm2020/taiga-ui-cdk-utils-os.mjs.map +1 -0
  484. package/fesm2020/taiga-ui-cdk-utils-svg.mjs +71 -0
  485. package/fesm2020/taiga-ui-cdk-utils-svg.mjs.map +1 -0
  486. package/fesm2020/taiga-ui-cdk-utils.mjs +14 -0
  487. package/fesm2020/taiga-ui-cdk-utils.mjs.map +1 -0
  488. package/fesm2020/taiga-ui-cdk.mjs +22 -0
  489. package/fesm2020/taiga-ui-cdk.mjs.map +1 -0
  490. package/interfaces/alert-context.d.ts +1 -1
  491. package/interfaces/safe-html.d.ts +1 -1
  492. package/interfaces/swipe.d.ts +1 -1
  493. package/package.json +642 -69
  494. package/pipes/filter/filter.pipe.d.ts +1 -1
  495. package/pipes/is-present/is-present.pipe.d.ts +1 -1
  496. package/pipes/keys/keys.pipe.d.ts +1 -1
  497. package/pipes/mapper/mapper.pipe.d.ts +1 -1
  498. package/pipes/replace/replace.pipe.d.ts +1 -1
  499. package/schematics/ng-add/index.js +9 -9
  500. package/schematics/ng-add/setup-project.js +5 -5
  501. package/schematics/ng-add/steps/add-taiga-icons.js +3 -3
  502. package/schematics/ng-add/steps/add-taiga-modules.js +18 -18
  503. package/schematics/ng-add/steps/add-taiga-styles.js +1 -1
  504. package/schematics/ng-add/steps/wrap-with-tui-root.js +8 -8
  505. package/schematics/ng-update/interfaces/asset.d.ts +1 -1
  506. package/schematics/ng-update/interfaces/template-resource.d.ts +1 -1
  507. package/schematics/ng-update/steps/icons/replace-imports.js +5 -5
  508. package/schematics/ng-update/steps/remove-module.js +4 -4
  509. package/schematics/ng-update/steps/rename-types.js +6 -6
  510. package/schematics/ng-update/steps/replace-deep-import.js +4 -4
  511. package/schematics/ng-update/steps/replace-enums.js +4 -4
  512. package/schematics/ng-update/steps/replace-identifier.js +5 -5
  513. package/schematics/ng-update/steps/replace-services.js +6 -6
  514. package/schematics/ng-update/steps/show-warnings.js +1 -1
  515. package/schematics/ng-update/utils/get-file-system.js +2 -2
  516. package/schematics/ng-update/utils/replace-text.js +1 -1
  517. package/schematics/ng-update/utils/templates/remove-inputs.js +4 -4
  518. package/schematics/ng-update/utils/templates/replace-attr-values.js +3 -3
  519. package/schematics/ng-update/utils/templates/replace-attrs-by-directives.js +1 -1
  520. package/schematics/ng-update/utils/templates/replace-attrs.js +4 -4
  521. package/schematics/ng-update/utils/templates/replace-tags.js +4 -4
  522. package/schematics/ng-update/utils/templates/template-comments.js +4 -4
  523. package/schematics/ng-update/v3/constants/templates.js +3 -3
  524. package/schematics/ng-update/v3/index.js +27 -29
  525. package/schematics/ng-update/v3/steps/migrate-date-time.js +12 -12
  526. package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +8 -8
  527. package/schematics/ng-update/v3/steps/migrate-progress.js +9 -9
  528. package/schematics/ng-update/v3/steps/migrate-sliders/index.js +6 -6
  529. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +11 -11
  530. package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +13 -13
  531. package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +7 -7
  532. package/schematics/ng-update/v3/steps/migrate-templates.js +36 -36
  533. package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +6 -6
  534. package/schematics/ng-update/v3/steps/miscellaneous.js +5 -5
  535. package/schematics/ng-update/v3/steps/replace-functions.js +17 -17
  536. package/schematics/ng-update/v3/steps/replace-styles.js +1 -1
  537. package/schematics/ng-update/v3-30/index.js +8 -8
  538. package/schematics/ng-update/v3-35/index.js +8 -8
  539. package/schematics/ng-update/v3-36/index.js +9 -9
  540. package/schematics/ng-update/v3-40/index.js +14 -14
  541. package/schematics/ng-update/v3-5/index.js +4 -4
  542. package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +9 -9
  543. package/schematics/ng-update/v4/index.js +10 -10
  544. package/schematics/ng-update/v4/steps/migrate-templates.js +5 -5
  545. package/schematics/ng-update/v4/steps/restore-tui-mapper.js +5 -5
  546. package/schematics/ng-update/v4/steps/restore-tui-matcher.js +5 -5
  547. package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +4 -4
  548. package/schematics/ng-update/v4/steps/templates/migrate-badge.js +3 -3
  549. package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +7 -7
  550. package/schematics/ng-update/v4/steps/templates/toggles/migrate-radio.js +7 -7
  551. package/schematics/ng-update/v4/steps/templates/toggles/migrate-toggle.js +7 -7
  552. package/schematics/utils/add-import-to-closest-module.js +7 -7
  553. package/schematics/utils/add-import-to-component.js +1 -1
  554. package/schematics/utils/add-unique-import.js +4 -4
  555. package/schematics/utils/angular/ng-component.js +1 -1
  556. package/schematics/utils/angular/ng-module.js +2 -2
  557. package/schematics/utils/angular-json-manipulations.js +6 -6
  558. package/schematics/utils/create-angular-json.js +4 -2
  559. package/schematics/utils/get-component-from-identifier.js +2 -2
  560. package/schematics/utils/get-named-import-references.js +2 -2
  561. package/schematics/utils/get-projects.js +1 -3
  562. package/schematics/utils/get-standalone-bootstrap-function.js +1 -1
  563. package/schematics/utils/progress.js +3 -3
  564. package/schematics/utils/push-to-array-property.js +0 -1
  565. package/schematics/utils/templates/elements.js +1 -1
  566. package/schematics/utils/templates/get-component-templates.js +1 -1
  567. package/schematics/utils/templates/ng-component-input-manipulations.js +12 -12
  568. package/tokens/window-size.d.ts +1 -1
  569. package/types/autocomplete.d.ts +1 -1
  570. package/types/date-mode.d.ts +1 -1
  571. package/types/deep-partial.d.ts +1 -1
  572. package/types/dialog.d.ts +1 -1
  573. package/types/event-with.d.ts +1 -1
  574. package/types/handler.d.ts +4 -4
  575. package/types/injection-token-type.d.ts +1 -1
  576. package/types/input-mode.d.ts +1 -1
  577. package/types/input-type.d.ts +1 -1
  578. package/types/mapper.d.ts +2 -2
  579. package/types/matcher.d.ts +4 -4
  580. package/types/overscroll-mode.d.ts +1 -1
  581. package/types/platform.d.ts +1 -1
  582. package/types/rounding.d.ts +1 -1
  583. package/types/time-mode.d.ts +1 -1
  584. package/types/values-of.d.ts +1 -1
  585. package/utils/miscellaneous/is-string.js +0 -1
  586. package/abstract/package.json +0 -10
  587. package/abstract/taiga-ui-cdk-abstract.d.ts +0 -5
  588. package/bundles/taiga-ui-cdk-abstract.umd.js +0 -997
  589. package/bundles/taiga-ui-cdk-abstract.umd.js.map +0 -1
  590. package/bundles/taiga-ui-cdk-classes.umd.js +0 -40
  591. package/bundles/taiga-ui-cdk-classes.umd.js.map +0 -1
  592. package/bundles/taiga-ui-cdk-coercion.umd.js +0 -26
  593. package/bundles/taiga-ui-cdk-coercion.umd.js.map +0 -1
  594. package/bundles/taiga-ui-cdk-components-alert-host.umd.js +0 -122
  595. package/bundles/taiga-ui-cdk-components-alert-host.umd.js.map +0 -1
  596. package/bundles/taiga-ui-cdk-components-dialog-host.umd.js +0 -522
  597. package/bundles/taiga-ui-cdk-components-dialog-host.umd.js.map +0 -1
  598. package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js +0 -422
  599. package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js.map +0 -1
  600. package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js +0 -609
  601. package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js.map +0 -1
  602. package/bundles/taiga-ui-cdk-components.umd.js +0 -39
  603. package/bundles/taiga-ui-cdk-components.umd.js.map +0 -1
  604. package/bundles/taiga-ui-cdk-constants.umd.js +0 -278
  605. package/bundles/taiga-ui-cdk-constants.umd.js.map +0 -1
  606. package/bundles/taiga-ui-cdk-date-time.umd.js +0 -1242
  607. package/bundles/taiga-ui-cdk-date-time.umd.js.map +0 -1
  608. package/bundles/taiga-ui-cdk-decorators.umd.js +0 -545
  609. package/bundles/taiga-ui-cdk-decorators.umd.js.map +0 -1
  610. package/bundles/taiga-ui-cdk-directives-active-zone.umd.js +0 -451
  611. package/bundles/taiga-ui-cdk-directives-active-zone.umd.js.map +0 -1
  612. package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js +0 -728
  613. package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js.map +0 -1
  614. package/bundles/taiga-ui-cdk-directives-autofilled.umd.js +0 -115
  615. package/bundles/taiga-ui-cdk-directives-autofilled.umd.js.map +0 -1
  616. package/bundles/taiga-ui-cdk-directives-checked.umd.js +0 -111
  617. package/bundles/taiga-ui-cdk-directives-checked.umd.js.map +0 -1
  618. package/bundles/taiga-ui-cdk-directives-click-outside.umd.js +0 -89
  619. package/bundles/taiga-ui-cdk-directives-click-outside.umd.js.map +0 -1
  620. package/bundles/taiga-ui-cdk-directives-control.umd.js +0 -82
  621. package/bundles/taiga-ui-cdk-directives-control.umd.js.map +0 -1
  622. package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js +0 -86
  623. package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js.map +0 -1
  624. package/bundles/taiga-ui-cdk-directives-drag.umd.js +0 -110
  625. package/bundles/taiga-ui-cdk-directives-drag.umd.js.map +0 -1
  626. package/bundles/taiga-ui-cdk-directives-droppable.umd.js +0 -93
  627. package/bundles/taiga-ui-cdk-directives-droppable.umd.js.map +0 -1
  628. package/bundles/taiga-ui-cdk-directives-element.umd.js +0 -89
  629. package/bundles/taiga-ui-cdk-directives-element.umd.js.map +0 -1
  630. package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js +0 -130
  631. package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js.map +0 -1
  632. package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js +0 -81
  633. package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js.map +0 -1
  634. package/bundles/taiga-ui-cdk-directives-focusable.umd.js +0 -87
  635. package/bundles/taiga-ui-cdk-directives-focusable.umd.js.map +0 -1
  636. package/bundles/taiga-ui-cdk-directives-focused.umd.js +0 -84
  637. package/bundles/taiga-ui-cdk-directives-focused.umd.js.map +0 -1
  638. package/bundles/taiga-ui-cdk-directives-for-async.umd.js +0 -443
  639. package/bundles/taiga-ui-cdk-directives-for-async.umd.js.map +0 -1
  640. package/bundles/taiga-ui-cdk-directives-for.umd.js +0 -90
  641. package/bundles/taiga-ui-cdk-directives-for.umd.js.map +0 -1
  642. package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js +0 -85
  643. package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js.map +0 -1
  644. package/bundles/taiga-ui-cdk-directives-hovered.umd.js +0 -428
  645. package/bundles/taiga-ui-cdk-directives-hovered.umd.js.map +0 -1
  646. package/bundles/taiga-ui-cdk-directives-item.umd.js +0 -70
  647. package/bundles/taiga-ui-cdk-directives-item.umd.js.map +0 -1
  648. package/bundles/taiga-ui-cdk-directives-let.umd.js +0 -116
  649. package/bundles/taiga-ui-cdk-directives-let.umd.js.map +0 -1
  650. package/bundles/taiga-ui-cdk-directives-media.umd.js +0 -175
  651. package/bundles/taiga-ui-cdk-directives-media.umd.js.map +0 -1
  652. package/bundles/taiga-ui-cdk-directives-obscured.umd.js +0 -102
  653. package/bundles/taiga-ui-cdk-directives-obscured.umd.js.map +0 -1
  654. package/bundles/taiga-ui-cdk-directives-overscroll.umd.js +0 -164
  655. package/bundles/taiga-ui-cdk-directives-overscroll.umd.js.map +0 -1
  656. package/bundles/taiga-ui-cdk-directives-pan.umd.js +0 -79
  657. package/bundles/taiga-ui-cdk-directives-pan.umd.js.map +0 -1
  658. package/bundles/taiga-ui-cdk-directives-platform.umd.js +0 -92
  659. package/bundles/taiga-ui-cdk-directives-platform.umd.js.map +0 -1
  660. package/bundles/taiga-ui-cdk-directives-portal.umd.js +0 -95
  661. package/bundles/taiga-ui-cdk-directives-portal.umd.js.map +0 -1
  662. package/bundles/taiga-ui-cdk-directives-pressed.umd.js +0 -82
  663. package/bundles/taiga-ui-cdk-directives-pressed.umd.js.map +0 -1
  664. package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js +0 -102
  665. package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js.map +0 -1
  666. package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js +0 -118
  667. package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js.map +0 -1
  668. package/bundles/taiga-ui-cdk-directives-resize.umd.js +0 -79
  669. package/bundles/taiga-ui-cdk-directives-resize.umd.js.map +0 -1
  670. package/bundles/taiga-ui-cdk-directives-resizer.umd.js +0 -500
  671. package/bundles/taiga-ui-cdk-directives-resizer.umd.js.map +0 -1
  672. package/bundles/taiga-ui-cdk-directives-swipe.umd.js +0 -79
  673. package/bundles/taiga-ui-cdk-directives-swipe.umd.js.map +0 -1
  674. package/bundles/taiga-ui-cdk-directives-validator.umd.js +0 -97
  675. package/bundles/taiga-ui-cdk-directives-validator.umd.js.map +0 -1
  676. package/bundles/taiga-ui-cdk-directives-value-changes.umd.js +0 -90
  677. package/bundles/taiga-ui-cdk-directives-value-changes.umd.js.map +0 -1
  678. package/bundles/taiga-ui-cdk-directives-zoom.umd.js +0 -82
  679. package/bundles/taiga-ui-cdk-directives-zoom.umd.js.map +0 -1
  680. package/bundles/taiga-ui-cdk-directives.umd.js +0 -225
  681. package/bundles/taiga-ui-cdk-directives.umd.js.map +0 -1
  682. package/bundles/taiga-ui-cdk-enums.umd.js +0 -45
  683. package/bundles/taiga-ui-cdk-enums.umd.js.map +0 -1
  684. package/bundles/taiga-ui-cdk-exceptions.umd.js +0 -450
  685. package/bundles/taiga-ui-cdk-exceptions.umd.js.map +0 -1
  686. package/bundles/taiga-ui-cdk-interfaces.umd.js +0 -11
  687. package/bundles/taiga-ui-cdk-interfaces.umd.js.map +0 -1
  688. package/bundles/taiga-ui-cdk-observables.umd.js +0 -201
  689. package/bundles/taiga-ui-cdk-observables.umd.js.map +0 -1
  690. package/bundles/taiga-ui-cdk-pipes-filter.umd.js +0 -390
  691. package/bundles/taiga-ui-cdk-pipes-filter.umd.js.map +0 -1
  692. package/bundles/taiga-ui-cdk-pipes-is-present.umd.js +0 -68
  693. package/bundles/taiga-ui-cdk-pipes-is-present.umd.js.map +0 -1
  694. package/bundles/taiga-ui-cdk-pipes-keys.umd.js +0 -68
  695. package/bundles/taiga-ui-cdk-pipes-keys.umd.js.map +0 -1
  696. package/bundles/taiga-ui-cdk-pipes-mapper.umd.js +0 -390
  697. package/bundles/taiga-ui-cdk-pipes-mapper.umd.js.map +0 -1
  698. package/bundles/taiga-ui-cdk-pipes-replace.umd.js +0 -71
  699. package/bundles/taiga-ui-cdk-pipes-replace.umd.js.map +0 -1
  700. package/bundles/taiga-ui-cdk-pipes.umd.js +0 -45
  701. package/bundles/taiga-ui-cdk-pipes.umd.js.map +0 -1
  702. package/bundles/taiga-ui-cdk-services.umd.js +0 -865
  703. package/bundles/taiga-ui-cdk-services.umd.js.map +0 -1
  704. package/bundles/taiga-ui-cdk-tokens.umd.js +0 -656
  705. package/bundles/taiga-ui-cdk-tokens.umd.js.map +0 -1
  706. package/bundles/taiga-ui-cdk-types.umd.js +0 -11
  707. package/bundles/taiga-ui-cdk-types.umd.js.map +0 -1
  708. package/bundles/taiga-ui-cdk-utils-browser.umd.js +0 -45
  709. package/bundles/taiga-ui-cdk-utils-browser.umd.js.map +0 -1
  710. package/bundles/taiga-ui-cdk-utils-color.umd.js +0 -462
  711. package/bundles/taiga-ui-cdk-utils-color.umd.js.map +0 -1
  712. package/bundles/taiga-ui-cdk-utils-dom.umd.js +0 -291
  713. package/bundles/taiga-ui-cdk-utils-dom.umd.js.map +0 -1
  714. package/bundles/taiga-ui-cdk-utils-focus.umd.js +0 -190
  715. package/bundles/taiga-ui-cdk-utils-focus.umd.js.map +0 -1
  716. package/bundles/taiga-ui-cdk-utils-format.umd.js +0 -24
  717. package/bundles/taiga-ui-cdk-utils-format.umd.js.map +0 -1
  718. package/bundles/taiga-ui-cdk-utils-math.umd.js +0 -164
  719. package/bundles/taiga-ui-cdk-utils-math.umd.js.map +0 -1
  720. package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js +0 -539
  721. package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js.map +0 -1
  722. package/bundles/taiga-ui-cdk-utils-os.umd.js +0 -43
  723. package/bundles/taiga-ui-cdk-utils-os.umd.js.map +0 -1
  724. package/bundles/taiga-ui-cdk-utils-svg.umd.js +0 -82
  725. package/bundles/taiga-ui-cdk-utils-svg.umd.js.map +0 -1
  726. package/bundles/taiga-ui-cdk-utils.umd.js +0 -69
  727. package/bundles/taiga-ui-cdk-utils.umd.js.map +0 -1
  728. package/bundles/taiga-ui-cdk.umd.js +0 -117
  729. package/bundles/taiga-ui-cdk.umd.js.map +0 -1
  730. package/classes/package.json +0 -10
  731. package/classes/taiga-ui-cdk-classes.d.ts +0 -5
  732. package/coercion/package.json +0 -10
  733. package/coercion/taiga-ui-cdk-coercion.d.ts +0 -5
  734. package/components/alert-host/package.json +0 -10
  735. package/components/alert-host/taiga-ui-cdk-components-alert-host.d.ts +0 -5
  736. package/components/dialog-host/package.json +0 -10
  737. package/components/dialog-host/taiga-ui-cdk-components-dialog-host.d.ts +0 -5
  738. package/components/dropdown-host/package.json +0 -10
  739. package/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.d.ts +0 -5
  740. package/components/package.json +0 -10
  741. package/components/scroll-controls/package.json +0 -10
  742. package/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.d.ts +0 -5
  743. package/components/taiga-ui-cdk-components.d.ts +0 -5
  744. package/constants/package.json +0 -10
  745. package/constants/taiga-ui-cdk-constants.d.ts +0 -5
  746. package/date-time/package.json +0 -10
  747. package/date-time/taiga-ui-cdk-date-time.d.ts +0 -5
  748. package/decorators/package.json +0 -10
  749. package/decorators/taiga-ui-cdk-decorators.d.ts +0 -5
  750. package/directives/active-zone/package.json +0 -10
  751. package/directives/active-zone/taiga-ui-cdk-directives-active-zone.d.ts +0 -5
  752. package/directives/auto-focus/package.json +0 -10
  753. package/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.d.ts +0 -5
  754. package/directives/autofilled/package.json +0 -10
  755. package/directives/autofilled/taiga-ui-cdk-directives-autofilled.d.ts +0 -5
  756. package/directives/checked/package.json +0 -10
  757. package/directives/checked/taiga-ui-cdk-directives-checked.d.ts +0 -5
  758. package/directives/click-outside/package.json +0 -10
  759. package/directives/click-outside/taiga-ui-cdk-directives-click-outside.d.ts +0 -5
  760. package/directives/control/package.json +0 -10
  761. package/directives/control/taiga-ui-cdk-directives-control.d.ts +0 -5
  762. package/directives/copy-processor/package.json +0 -10
  763. package/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.d.ts +0 -5
  764. package/directives/drag/package.json +0 -10
  765. package/directives/drag/taiga-ui-cdk-directives-drag.d.ts +0 -5
  766. package/directives/droppable/package.json +0 -10
  767. package/directives/droppable/taiga-ui-cdk-directives-droppable.d.ts +0 -5
  768. package/directives/element/package.json +0 -10
  769. package/directives/element/taiga-ui-cdk-directives-element.d.ts +0 -5
  770. package/directives/focus-trap/package.json +0 -10
  771. package/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.d.ts +0 -5
  772. package/directives/focus-visible/package.json +0 -10
  773. package/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.d.ts +0 -5
  774. package/directives/focusable/package.json +0 -10
  775. package/directives/focusable/taiga-ui-cdk-directives-focusable.d.ts +0 -5
  776. package/directives/focused/package.json +0 -10
  777. package/directives/focused/taiga-ui-cdk-directives-focused.d.ts +0 -5
  778. package/directives/for/package.json +0 -10
  779. package/directives/for/taiga-ui-cdk-directives-for.d.ts +0 -5
  780. package/directives/for-async/package.json +0 -10
  781. package/directives/for-async/taiga-ui-cdk-directives-for-async.d.ts +0 -5
  782. package/directives/high-dpi/package.json +0 -10
  783. package/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.d.ts +0 -5
  784. package/directives/hovered/package.json +0 -10
  785. package/directives/hovered/taiga-ui-cdk-directives-hovered.d.ts +0 -5
  786. package/directives/item/package.json +0 -10
  787. package/directives/item/taiga-ui-cdk-directives-item.d.ts +0 -5
  788. package/directives/let/package.json +0 -10
  789. package/directives/let/taiga-ui-cdk-directives-let.d.ts +0 -5
  790. package/directives/media/package.json +0 -10
  791. package/directives/media/taiga-ui-cdk-directives-media.d.ts +0 -5
  792. package/directives/obscured/package.json +0 -10
  793. package/directives/obscured/taiga-ui-cdk-directives-obscured.d.ts +0 -5
  794. package/directives/overscroll/package.json +0 -10
  795. package/directives/overscroll/taiga-ui-cdk-directives-overscroll.d.ts +0 -5
  796. package/directives/package.json +0 -10
  797. package/directives/pan/package.json +0 -10
  798. package/directives/pan/taiga-ui-cdk-directives-pan.d.ts +0 -5
  799. package/directives/platform/package.json +0 -10
  800. package/directives/platform/taiga-ui-cdk-directives-platform.d.ts +0 -5
  801. package/directives/portal/package.json +0 -10
  802. package/directives/portal/taiga-ui-cdk-directives-portal.d.ts +0 -5
  803. package/directives/pressed/package.json +0 -10
  804. package/directives/pressed/taiga-ui-cdk-directives-pressed.d.ts +0 -5
  805. package/directives/prevent-default/package.json +0 -10
  806. package/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.d.ts +0 -5
  807. package/directives/repeat-times/package.json +0 -10
  808. package/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.d.ts +0 -5
  809. package/directives/resize/package.json +0 -10
  810. package/directives/resize/taiga-ui-cdk-directives-resize.d.ts +0 -5
  811. package/directives/resizer/package.json +0 -10
  812. package/directives/resizer/taiga-ui-cdk-directives-resizer.d.ts +0 -5
  813. package/directives/swipe/package.json +0 -10
  814. package/directives/swipe/taiga-ui-cdk-directives-swipe.d.ts +0 -5
  815. package/directives/taiga-ui-cdk-directives.d.ts +0 -5
  816. package/directives/validator/package.json +0 -10
  817. package/directives/validator/taiga-ui-cdk-directives-validator.d.ts +0 -5
  818. package/directives/value-changes/package.json +0 -10
  819. package/directives/value-changes/taiga-ui-cdk-directives-value-changes.d.ts +0 -5
  820. package/directives/zoom/package.json +0 -10
  821. package/directives/zoom/taiga-ui-cdk-directives-zoom.d.ts +0 -5
  822. package/enums/package.json +0 -10
  823. package/enums/taiga-ui-cdk-enums.d.ts +0 -5
  824. package/esm2015/abstract/control.js +0 -194
  825. package/esm2015/abstract/controller.js +0 -17
  826. package/esm2015/abstract/dialog.directive.js +0 -36
  827. package/esm2015/abstract/dialog.service.js +0 -35
  828. package/esm2015/abstract/interactive.js +0 -86
  829. package/esm2015/abstract/multiple-control.js +0 -17
  830. package/esm2015/abstract/nullable-control.js +0 -14
  831. package/esm2015/abstract/portal-host.js +0 -50
  832. package/esm2015/abstract/portal-service.js +0 -39
  833. package/esm2015/abstract/theme-switcher.js +0 -46
  834. package/esm2015/coercion/coerce-boolean-property.js +0 -10
  835. package/esm2015/components/alert-host/alert-host.component.js +0 -71
  836. package/esm2015/components/alert-host/alert-host.module.js +0 -19
  837. package/esm2015/components/dialog-host/dialog-host.component.js +0 -137
  838. package/esm2015/components/dialog-host/dialog-host.module.js +0 -40
  839. package/esm2015/components/dropdown-host/dropdown-host.component.js +0 -30
  840. package/esm2015/components/dropdown-host/dropdown-host.module.js +0 -16
  841. package/esm2015/components/dropdown-host/dropdown-portal.service.js +0 -17
  842. package/esm2015/components/scroll-controls/scroll-controls.component.js +0 -45
  843. package/esm2015/components/scroll-controls/scroll-controls.module.js +0 -26
  844. package/esm2015/components/scroll-controls/scroll-ref.directive.js +0 -26
  845. package/esm2015/components/scroll-controls/scrollbar.directive.js +0 -133
  846. package/esm2015/constants/empty.js +0 -23
  847. package/esm2015/constants/version.js +0 -2
  848. package/esm2015/directives/active-zone/active-zone.directive.js +0 -80
  849. package/esm2015/directives/active-zone/active-zone.module.js +0 -16
  850. package/esm2015/directives/auto-focus/autofocus.directive.js +0 -55
  851. package/esm2015/directives/auto-focus/autofocus.module.js +0 -16
  852. package/esm2015/directives/auto-focus/handlers/abstract.handler.js +0 -21
  853. package/esm2015/directives/auto-focus/handlers/default.handler.js +0 -44
  854. package/esm2015/directives/auto-focus/handlers/ios.handler.js +0 -169
  855. package/esm2015/directives/auto-focus/handlers/sync.handler.js +0 -28
  856. package/esm2015/directives/autofilled/autofilled-style.component.js +0 -19
  857. package/esm2015/directives/autofilled/autofilled.directive.js +0 -41
  858. package/esm2015/directives/autofilled/autofilled.module.js +0 -17
  859. package/esm2015/directives/checked/checked.directive.js +0 -46
  860. package/esm2015/directives/checked/checked.module.js +0 -16
  861. package/esm2015/directives/click-outside/click-outside.directive.js +0 -39
  862. package/esm2015/directives/click-outside/click-outside.module.js +0 -16
  863. package/esm2015/directives/control/control.directive.js +0 -25
  864. package/esm2015/directives/control/control.module.js +0 -16
  865. package/esm2015/directives/copy-processor/copy-processor.directive.js +0 -35
  866. package/esm2015/directives/copy-processor/copy-processor.module.js +0 -16
  867. package/esm2015/directives/drag/drag.directive.js +0 -37
  868. package/esm2015/directives/drag/drag.module.js +0 -19
  869. package/esm2015/directives/droppable/droppable.directive.js +0 -40
  870. package/esm2015/directives/droppable/droppable.module.js +0 -16
  871. package/esm2015/directives/element/element.directive.js +0 -34
  872. package/esm2015/directives/element/element.module.js +0 -16
  873. package/esm2015/directives/focus-trap/focus-trap.directive.js +0 -77
  874. package/esm2015/directives/focus-trap/focus-trap.module.js +0 -16
  875. package/esm2015/directives/focus-visible/focus-visible.directive.js +0 -28
  876. package/esm2015/directives/focus-visible/focus-visible.module.js +0 -16
  877. package/esm2015/directives/focusable/focusable.directive.js +0 -31
  878. package/esm2015/directives/focusable/focusable.module.js +0 -16
  879. package/esm2015/directives/focused/focused.directive.js +0 -33
  880. package/esm2015/directives/focused/focused.module.js +0 -16
  881. package/esm2015/directives/for/for.directive.js +0 -36
  882. package/esm2015/directives/for/for.module.js +0 -16
  883. package/esm2015/directives/for-async/for-async.directive.js +0 -61
  884. package/esm2015/directives/for-async/for-async.module.js +0 -20
  885. package/esm2015/directives/high-dpi/high-dpi.directive.js +0 -31
  886. package/esm2015/directives/high-dpi/high-dpi.module.js +0 -16
  887. package/esm2015/directives/hovered/hovered.directive.js +0 -23
  888. package/esm2015/directives/hovered/hovered.module.js +0 -16
  889. package/esm2015/directives/hovered/hovered.service.js +0 -34
  890. package/esm2015/directives/item/item.directive.js +0 -16
  891. package/esm2015/directives/item/item.module.js +0 -16
  892. package/esm2015/directives/let/let.directive.js +0 -38
  893. package/esm2015/directives/let/let.module.js +0 -16
  894. package/esm2015/directives/media/media.directive.js +0 -109
  895. package/esm2015/directives/media/media.module.js +0 -16
  896. package/esm2015/directives/obscured/obscured.directive.js +0 -49
  897. package/esm2015/directives/obscured/obscured.module.js +0 -16
  898. package/esm2015/directives/overscroll/overscroll.directive.js +0 -103
  899. package/esm2015/directives/overscroll/overscroll.module.js +0 -16
  900. package/esm2015/directives/pan/pan.directive.js +0 -23
  901. package/esm2015/directives/pan/pan.module.js +0 -19
  902. package/esm2015/directives/platform/platform.directive.js +0 -35
  903. package/esm2015/directives/platform/platform.module.js +0 -16
  904. package/esm2015/directives/portal/portal.directive.js +0 -38
  905. package/esm2015/directives/portal/portal.module.js +0 -16
  906. package/esm2015/directives/pressed/pressed.directive.js +0 -30
  907. package/esm2015/directives/pressed/pressed.module.js +0 -16
  908. package/esm2015/directives/prevent-default/prevent-default.directive.js +0 -49
  909. package/esm2015/directives/prevent-default/prevent-default.module.js +0 -19
  910. package/esm2015/directives/repeat-times/repeat-times.directive.js +0 -59
  911. package/esm2015/directives/repeat-times/repeat-times.module.js +0 -16
  912. package/esm2015/directives/resize/resize.directive.js +0 -23
  913. package/esm2015/directives/resize/resize.module.js +0 -19
  914. package/esm2015/directives/resizer/resizeable.directive.js +0 -14
  915. package/esm2015/directives/resizer/resizer.directive.js +0 -106
  916. package/esm2015/directives/resizer/resizer.module.js +0 -17
  917. package/esm2015/directives/swipe/swipe.directive.js +0 -23
  918. package/esm2015/directives/swipe/swipe.module.js +0 -19
  919. package/esm2015/directives/validator/validator.directive.js +0 -47
  920. package/esm2015/directives/validator/validator.module.js +0 -16
  921. package/esm2015/directives/value-changes/value-changes.directive.js +0 -39
  922. package/esm2015/directives/value-changes/value-changes.module.js +0 -16
  923. package/esm2015/directives/zoom/zoom.directive.js +0 -26
  924. package/esm2015/directives/zoom/zoom.module.js +0 -19
  925. package/esm2015/observables/is-observed.js +0 -7
  926. package/esm2015/pipes/filter/filter.module.js +0 -16
  927. package/esm2015/pipes/filter/filter.pipe.js +0 -14
  928. package/esm2015/pipes/is-present/is-present.module.js +0 -16
  929. package/esm2015/pipes/is-present/is-present.pipe.js +0 -15
  930. package/esm2015/pipes/keys/keys.module.js +0 -16
  931. package/esm2015/pipes/keys/keys.pipe.js +0 -14
  932. package/esm2015/pipes/mapper/mapper.module.js +0 -16
  933. package/esm2015/pipes/mapper/mapper.pipe.js +0 -14
  934. package/esm2015/pipes/replace/replace.module.js +0 -16
  935. package/esm2015/pipes/replace/replace.pipe.js +0 -17
  936. package/esm2015/services/destroy.service.js +0 -26
  937. package/esm2015/services/directive-styles.service.js +0 -32
  938. package/esm2015/services/focus-visible.service.js +0 -35
  939. package/esm2015/services/id.service.js +0 -21
  940. package/esm2015/services/obscured.service.js +0 -54
  941. package/esm2015/services/pan.service.js +0 -35
  942. package/esm2015/services/parents-scroll.service.js +0 -36
  943. package/esm2015/services/resize.service.js +0 -47
  944. package/esm2015/services/scroll.service.js +0 -60
  945. package/esm2015/services/static-request.service.js +0 -51
  946. package/esm2015/services/swipe.service.js +0 -51
  947. package/esm2015/services/zoom.service.js +0 -54
  948. package/esm2015/tokens/active-element.js +0 -61
  949. package/esm2015/tokens/base-href.js +0 -5
  950. package/esm2015/tokens/ensure-base-href.js +0 -17
  951. package/esm2015/tokens/fonts-ready.js +0 -11
  952. package/esm2015/tokens/is-firefox.js +0 -11
  953. package/esm2015/tokens/is-webkit.js +0 -11
  954. package/esm2015/tokens/window-size.js +0 -23
  955. package/esm2015/utils/browser/is-safari.js +0 -11
  956. package/esm2015/utils/color/hex-to-rgba.js +0 -31
  957. package/esm2015/utils/color/rgba-to-hex.js +0 -26
  958. package/esm2015/utils/dom/contains-or-after.js +0 -10
  959. package/esm2015/utils/dom/get-element-obscurers.js +0 -43
  960. package/esm2015/utils/dom/get-selected-text.js +0 -16
  961. package/esm2015/utils/dom/is-node-in.js +0 -15
  962. package/esm2015/utils/dom/point-to-client-rect.js +0 -16
  963. package/esm2015/utils/dom/retarget-boundary-crossing.js +0 -16
  964. package/esm2015/utils/focus/get-native-focused.js +0 -16
  965. package/esm2015/utils/focus/is-native-focused.js +0 -15
  966. package/esm2015/utils/miscellaneous/is-number.js +0 -5
  967. package/esm2015/utils/miscellaneous/is-object.js +0 -5
  968. package/esm2015/utils/miscellaneous/is-string.js +0 -5
  969. package/esm2015/utils/miscellaneous/object-from-entries.js +0 -12
  970. package/esm2015/utils/miscellaneous/provide-options.js +0 -9
  971. package/esm2015/utils/svg/svg-linear-gradient-processor.js +0 -65
  972. package/exceptions/package.json +0 -10
  973. package/exceptions/taiga-ui-cdk-exceptions.d.ts +0 -5
  974. package/fesm2015/taiga-ui-cdk-abstract.js +0 -514
  975. package/fesm2015/taiga-ui-cdk-abstract.js.map +0 -1
  976. package/fesm2015/taiga-ui-cdk-classes.js +0 -29
  977. package/fesm2015/taiga-ui-cdk-classes.js.map +0 -1
  978. package/fesm2015/taiga-ui-cdk-coercion.js +0 -16
  979. package/fesm2015/taiga-ui-cdk-coercion.js.map +0 -1
  980. package/fesm2015/taiga-ui-cdk-components-alert-host.js +0 -94
  981. package/fesm2015/taiga-ui-cdk-components-alert-host.js.map +0 -1
  982. package/fesm2015/taiga-ui-cdk-components-dialog-host.js +0 -180
  983. package/fesm2015/taiga-ui-cdk-components-dialog-host.js.map +0 -1
  984. package/fesm2015/taiga-ui-cdk-components-dropdown-host.js +0 -63
  985. package/fesm2015/taiga-ui-cdk-components-dropdown-host.js.map +0 -1
  986. package/fesm2015/taiga-ui-cdk-components-scroll-controls.js +0 -220
  987. package/fesm2015/taiga-ui-cdk-components-scroll-controls.js.map +0 -1
  988. package/fesm2015/taiga-ui-cdk-components.js +0 -9
  989. package/fesm2015/taiga-ui-cdk-components.js.map +0 -1
  990. package/fesm2015/taiga-ui-cdk-constants.js +0 -237
  991. package/fesm2015/taiga-ui-cdk-constants.js.map +0 -1
  992. package/fesm2015/taiga-ui-cdk-date-time.js +0 -821
  993. package/fesm2015/taiga-ui-cdk-date-time.js.map +0 -1
  994. package/fesm2015/taiga-ui-cdk-decorators.js +0 -193
  995. package/fesm2015/taiga-ui-cdk-decorators.js.map +0 -1
  996. package/fesm2015/taiga-ui-cdk-directives-active-zone.js +0 -100
  997. package/fesm2015/taiga-ui-cdk-directives-active-zone.js.map +0 -1
  998. package/fesm2015/taiga-ui-cdk-directives-auto-focus.js +0 -348
  999. package/fesm2015/taiga-ui-cdk-directives-auto-focus.js.map +0 -1
  1000. package/fesm2015/taiga-ui-cdk-directives-autofilled.js +0 -77
  1001. package/fesm2015/taiga-ui-cdk-directives-autofilled.js.map +0 -1
  1002. package/fesm2015/taiga-ui-cdk-directives-checked.js +0 -66
  1003. package/fesm2015/taiga-ui-cdk-directives-checked.js.map +0 -1
  1004. package/fesm2015/taiga-ui-cdk-directives-click-outside.js +0 -59
  1005. package/fesm2015/taiga-ui-cdk-directives-click-outside.js.map +0 -1
  1006. package/fesm2015/taiga-ui-cdk-directives-control.js +0 -45
  1007. package/fesm2015/taiga-ui-cdk-directives-control.js.map +0 -1
  1008. package/fesm2015/taiga-ui-cdk-directives-copy-processor.js +0 -55
  1009. package/fesm2015/taiga-ui-cdk-directives-copy-processor.js.map +0 -1
  1010. package/fesm2015/taiga-ui-cdk-directives-drag.js +0 -60
  1011. package/fesm2015/taiga-ui-cdk-directives-drag.js.map +0 -1
  1012. package/fesm2015/taiga-ui-cdk-directives-droppable.js +0 -60
  1013. package/fesm2015/taiga-ui-cdk-directives-droppable.js.map +0 -1
  1014. package/fesm2015/taiga-ui-cdk-directives-element.js +0 -54
  1015. package/fesm2015/taiga-ui-cdk-directives-element.js.map +0 -1
  1016. package/fesm2015/taiga-ui-cdk-directives-focus-trap.js +0 -97
  1017. package/fesm2015/taiga-ui-cdk-directives-focus-trap.js.map +0 -1
  1018. package/fesm2015/taiga-ui-cdk-directives-focus-visible.js +0 -48
  1019. package/fesm2015/taiga-ui-cdk-directives-focus-visible.js.map +0 -1
  1020. package/fesm2015/taiga-ui-cdk-directives-focusable.js +0 -51
  1021. package/fesm2015/taiga-ui-cdk-directives-focusable.js.map +0 -1
  1022. package/fesm2015/taiga-ui-cdk-directives-focused.js +0 -53
  1023. package/fesm2015/taiga-ui-cdk-directives-focused.js.map +0 -1
  1024. package/fesm2015/taiga-ui-cdk-directives-for-async.js +0 -85
  1025. package/fesm2015/taiga-ui-cdk-directives-for-async.js.map +0 -1
  1026. package/fesm2015/taiga-ui-cdk-directives-for.js +0 -56
  1027. package/fesm2015/taiga-ui-cdk-directives-for.js.map +0 -1
  1028. package/fesm2015/taiga-ui-cdk-directives-high-dpi.js +0 -51
  1029. package/fesm2015/taiga-ui-cdk-directives-high-dpi.js.map +0 -1
  1030. package/fesm2015/taiga-ui-cdk-directives-hovered.js +0 -74
  1031. package/fesm2015/taiga-ui-cdk-directives-hovered.js.map +0 -1
  1032. package/fesm2015/taiga-ui-cdk-directives-item.js +0 -36
  1033. package/fesm2015/taiga-ui-cdk-directives-item.js.map +0 -1
  1034. package/fesm2015/taiga-ui-cdk-directives-let.js +0 -72
  1035. package/fesm2015/taiga-ui-cdk-directives-let.js.map +0 -1
  1036. package/fesm2015/taiga-ui-cdk-directives-media.js +0 -129
  1037. package/fesm2015/taiga-ui-cdk-directives-media.js.map +0 -1
  1038. package/fesm2015/taiga-ui-cdk-directives-obscured.js +0 -69
  1039. package/fesm2015/taiga-ui-cdk-directives-obscured.js.map +0 -1
  1040. package/fesm2015/taiga-ui-cdk-directives-overscroll.js +0 -123
  1041. package/fesm2015/taiga-ui-cdk-directives-overscroll.js.map +0 -1
  1042. package/fesm2015/taiga-ui-cdk-directives-pan.js +0 -46
  1043. package/fesm2015/taiga-ui-cdk-directives-pan.js.map +0 -1
  1044. package/fesm2015/taiga-ui-cdk-directives-platform.js +0 -55
  1045. package/fesm2015/taiga-ui-cdk-directives-platform.js.map +0 -1
  1046. package/fesm2015/taiga-ui-cdk-directives-portal.js +0 -58
  1047. package/fesm2015/taiga-ui-cdk-directives-portal.js.map +0 -1
  1048. package/fesm2015/taiga-ui-cdk-directives-pressed.js +0 -50
  1049. package/fesm2015/taiga-ui-cdk-directives-pressed.js.map +0 -1
  1050. package/fesm2015/taiga-ui-cdk-directives-prevent-default.js +0 -72
  1051. package/fesm2015/taiga-ui-cdk-directives-prevent-default.js.map +0 -1
  1052. package/fesm2015/taiga-ui-cdk-directives-repeat-times.js +0 -79
  1053. package/fesm2015/taiga-ui-cdk-directives-repeat-times.js.map +0 -1
  1054. package/fesm2015/taiga-ui-cdk-directives-resize.js +0 -46
  1055. package/fesm2015/taiga-ui-cdk-directives-resize.js.map +0 -1
  1056. package/fesm2015/taiga-ui-cdk-directives-resizer.js +0 -137
  1057. package/fesm2015/taiga-ui-cdk-directives-resizer.js.map +0 -1
  1058. package/fesm2015/taiga-ui-cdk-directives-swipe.js +0 -46
  1059. package/fesm2015/taiga-ui-cdk-directives-swipe.js.map +0 -1
  1060. package/fesm2015/taiga-ui-cdk-directives-validator.js +0 -67
  1061. package/fesm2015/taiga-ui-cdk-directives-validator.js.map +0 -1
  1062. package/fesm2015/taiga-ui-cdk-directives-value-changes.js +0 -59
  1063. package/fesm2015/taiga-ui-cdk-directives-value-changes.js.map +0 -1
  1064. package/fesm2015/taiga-ui-cdk-directives-zoom.js +0 -49
  1065. package/fesm2015/taiga-ui-cdk-directives-zoom.js.map +0 -1
  1066. package/fesm2015/taiga-ui-cdk-directives.js +0 -40
  1067. package/fesm2015/taiga-ui-cdk-directives.js.map +0 -1
  1068. package/fesm2015/taiga-ui-cdk-enums.js +0 -37
  1069. package/fesm2015/taiga-ui-cdk-enums.js.map +0 -1
  1070. package/fesm2015/taiga-ui-cdk-exceptions.js +0 -84
  1071. package/fesm2015/taiga-ui-cdk-exceptions.js.map +0 -1
  1072. package/fesm2015/taiga-ui-cdk-interfaces.js +0 -4
  1073. package/fesm2015/taiga-ui-cdk-interfaces.js.map +0 -1
  1074. package/fesm2015/taiga-ui-cdk-observables.js +0 -172
  1075. package/fesm2015/taiga-ui-cdk-observables.js.map +0 -1
  1076. package/fesm2015/taiga-ui-cdk-pipes-filter.js +0 -34
  1077. package/fesm2015/taiga-ui-cdk-pipes-filter.js.map +0 -1
  1078. package/fesm2015/taiga-ui-cdk-pipes-is-present.js +0 -35
  1079. package/fesm2015/taiga-ui-cdk-pipes-is-present.js.map +0 -1
  1080. package/fesm2015/taiga-ui-cdk-pipes-keys.js +0 -34
  1081. package/fesm2015/taiga-ui-cdk-pipes-keys.js.map +0 -1
  1082. package/fesm2015/taiga-ui-cdk-pipes-mapper.js +0 -34
  1083. package/fesm2015/taiga-ui-cdk-pipes-mapper.js.map +0 -1
  1084. package/fesm2015/taiga-ui-cdk-pipes-replace.js +0 -37
  1085. package/fesm2015/taiga-ui-cdk-pipes-replace.js.map +0 -1
  1086. package/fesm2015/taiga-ui-cdk-pipes.js +0 -10
  1087. package/fesm2015/taiga-ui-cdk-pipes.js.map +0 -1
  1088. package/fesm2015/taiga-ui-cdk-services.js +0 -449
  1089. package/fesm2015/taiga-ui-cdk-services.js.map +0 -1
  1090. package/fesm2015/taiga-ui-cdk-tokens.js +0 -287
  1091. package/fesm2015/taiga-ui-cdk-tokens.js.map +0 -1
  1092. package/fesm2015/taiga-ui-cdk-types.js +0 -4
  1093. package/fesm2015/taiga-ui-cdk-types.js.map +0 -1
  1094. package/fesm2015/taiga-ui-cdk-utils-browser.js +0 -31
  1095. package/fesm2015/taiga-ui-cdk-utils-browser.js.map +0 -1
  1096. package/fesm2015/taiga-ui-cdk-utils-color.js +0 -125
  1097. package/fesm2015/taiga-ui-cdk-utils-color.js.map +0 -1
  1098. package/fesm2015/taiga-ui-cdk-utils-dom.js +0 -259
  1099. package/fesm2015/taiga-ui-cdk-utils-dom.js.map +0 -1
  1100. package/fesm2015/taiga-ui-cdk-utils-focus.js +0 -171
  1101. package/fesm2015/taiga-ui-cdk-utils-focus.js.map +0 -1
  1102. package/fesm2015/taiga-ui-cdk-utils-format.js +0 -16
  1103. package/fesm2015/taiga-ui-cdk-utils-format.js.map +0 -1
  1104. package/fesm2015/taiga-ui-cdk-utils-math.js +0 -135
  1105. package/fesm2015/taiga-ui-cdk-utils-math.js.map +0 -1
  1106. package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js +0 -187
  1107. package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js.map +0 -1
  1108. package/fesm2015/taiga-ui-cdk-utils-os.js +0 -31
  1109. package/fesm2015/taiga-ui-cdk-utils-os.js.map +0 -1
  1110. package/fesm2015/taiga-ui-cdk-utils-svg.js +0 -72
  1111. package/fesm2015/taiga-ui-cdk-utils-svg.js.map +0 -1
  1112. package/fesm2015/taiga-ui-cdk-utils.js +0 -14
  1113. package/fesm2015/taiga-ui-cdk-utils.js.map +0 -1
  1114. package/fesm2015/taiga-ui-cdk.js +0 -22
  1115. package/fesm2015/taiga-ui-cdk.js.map +0 -1
  1116. package/interfaces/package.json +0 -10
  1117. package/interfaces/taiga-ui-cdk-interfaces.d.ts +0 -5
  1118. package/observables/package.json +0 -10
  1119. package/observables/taiga-ui-cdk-observables.d.ts +0 -5
  1120. package/pipes/filter/package.json +0 -10
  1121. package/pipes/filter/taiga-ui-cdk-pipes-filter.d.ts +0 -5
  1122. package/pipes/is-present/package.json +0 -10
  1123. package/pipes/is-present/taiga-ui-cdk-pipes-is-present.d.ts +0 -5
  1124. package/pipes/keys/package.json +0 -10
  1125. package/pipes/keys/taiga-ui-cdk-pipes-keys.d.ts +0 -5
  1126. package/pipes/mapper/package.json +0 -10
  1127. package/pipes/mapper/taiga-ui-cdk-pipes-mapper.d.ts +0 -5
  1128. package/pipes/package.json +0 -10
  1129. package/pipes/replace/package.json +0 -10
  1130. package/pipes/replace/taiga-ui-cdk-pipes-replace.d.ts +0 -5
  1131. package/pipes/taiga-ui-cdk-pipes.d.ts +0 -5
  1132. package/services/package.json +0 -10
  1133. package/services/taiga-ui-cdk-services.d.ts +0 -5
  1134. package/taiga-ui-cdk.d.ts +0 -5
  1135. package/tokens/package.json +0 -10
  1136. package/tokens/taiga-ui-cdk-tokens.d.ts +0 -5
  1137. package/types/package.json +0 -10
  1138. package/types/taiga-ui-cdk-types.d.ts +0 -5
  1139. package/utils/browser/package.json +0 -10
  1140. package/utils/browser/taiga-ui-cdk-utils-browser.d.ts +0 -5
  1141. package/utils/color/package.json +0 -10
  1142. package/utils/color/taiga-ui-cdk-utils-color.d.ts +0 -5
  1143. package/utils/dom/package.json +0 -10
  1144. package/utils/dom/taiga-ui-cdk-utils-dom.d.ts +0 -5
  1145. package/utils/focus/package.json +0 -10
  1146. package/utils/focus/taiga-ui-cdk-utils-focus.d.ts +0 -5
  1147. package/utils/format/package.json +0 -10
  1148. package/utils/format/taiga-ui-cdk-utils-format.d.ts +0 -5
  1149. package/utils/math/package.json +0 -10
  1150. package/utils/math/taiga-ui-cdk-utils-math.d.ts +0 -5
  1151. package/utils/miscellaneous/package.json +0 -10
  1152. package/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.d.ts +0 -5
  1153. package/utils/os/package.json +0 -10
  1154. package/utils/os/taiga-ui-cdk-utils-os.d.ts +0 -5
  1155. package/utils/package.json +0 -10
  1156. package/utils/svg/package.json +0 -10
  1157. package/utils/svg/taiga-ui-cdk-utils-svg.d.ts +0 -5
  1158. package/utils/taiga-ui-cdk-utils.d.ts +0 -5
  1159. /package/{esm2015/abstract/index.js → esm2020/abstract/index.mjs} +0 -0
  1160. /package/{esm2015/abstract/taiga-ui-cdk-abstract.js → esm2020/abstract/taiga-ui-cdk-abstract.mjs} +0 -0
  1161. /package/{esm2015/abstract/value-transformer.js → esm2020/abstract/value-transformer.mjs} +0 -0
  1162. /package/{esm2015/classes/assert.js → esm2020/classes/assert.mjs} +0 -0
  1163. /package/{esm2015/classes/index.js → esm2020/classes/index.mjs} +0 -0
  1164. /package/{esm2015/classes/taiga-ui-cdk-classes.js → esm2020/classes/taiga-ui-cdk-classes.mjs} +0 -0
  1165. /package/{esm2015/classes/validation-error.js → esm2020/classes/validation-error.mjs} +0 -0
  1166. /package/{esm2015/coercion/index.js → esm2020/coercion/index.mjs} +0 -0
  1167. /package/{esm2015/coercion/taiga-ui-cdk-coercion.js → esm2020/coercion/taiga-ui-cdk-coercion.mjs} +0 -0
  1168. /package/{esm2015/components/alert-host/index.js → esm2020/components/alert-host/index.mjs} +0 -0
  1169. /package/{esm2015/components/alert-host/taiga-ui-cdk-components-alert-host.js → esm2020/components/alert-host/taiga-ui-cdk-components-alert-host.mjs} +0 -0
  1170. /package/{esm2015/components/dialog-host/index.js → esm2020/components/dialog-host/index.mjs} +0 -0
  1171. /package/{esm2015/components/dialog-host/taiga-ui-cdk-components-dialog-host.js → esm2020/components/dialog-host/taiga-ui-cdk-components-dialog-host.mjs} +0 -0
  1172. /package/{esm2015/components/dropdown-host/index.js → esm2020/components/dropdown-host/index.mjs} +0 -0
  1173. /package/{esm2015/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.js → esm2020/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.mjs} +0 -0
  1174. /package/{esm2015/components/index.js → esm2020/components/index.mjs} +0 -0
  1175. /package/{esm2015/components/scroll-controls/index.js → esm2020/components/scroll-controls/index.mjs} +0 -0
  1176. /package/{esm2015/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.js → esm2020/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.mjs} +0 -0
  1177. /package/{esm2015/components/taiga-ui-cdk-components.js → esm2020/components/taiga-ui-cdk-components.mjs} +0 -0
  1178. /package/{esm2015/constants/always-false-handler.js → esm2020/constants/always-false-handler.mjs} +0 -0
  1179. /package/{esm2015/constants/always-true-handler.js → esm2020/constants/always-true-handler.mjs} +0 -0
  1180. /package/{esm2015/constants/browser.js → esm2020/constants/browser.mjs} +0 -0
  1181. /package/{esm2015/constants/index.js → esm2020/constants/index.mjs} +0 -0
  1182. /package/{esm2015/constants/matcher.js → esm2020/constants/matcher.mjs} +0 -0
  1183. /package/{esm2015/constants/parent-animation.js → esm2020/constants/parent-animation.mjs} +0 -0
  1184. /package/{esm2015/constants/polling-time.js → esm2020/constants/polling-time.mjs} +0 -0
  1185. /package/{esm2015/constants/stringify.js → esm2020/constants/stringify.mjs} +0 -0
  1186. /package/{esm2015/constants/svg-node-filter.js → esm2020/constants/svg-node-filter.mjs} +0 -0
  1187. /package/{esm2015/constants/taiga-ui-cdk-constants.js → esm2020/constants/taiga-ui-cdk-constants.mjs} +0 -0
  1188. /package/{esm2015/constants/unicode-chars.js → esm2020/constants/unicode-chars.mjs} +0 -0
  1189. /package/{esm2015/constants/used-icons.js → esm2020/constants/used-icons.mjs} +0 -0
  1190. /package/{esm2015/date-time/date-clamp.js → esm2020/date-time/date-clamp.mjs} +0 -0
  1191. /package/{esm2015/date-time/date-fillers.js → esm2020/date-time/date-fillers.mjs} +0 -0
  1192. /package/{esm2015/date-time/date-format.js → esm2020/date-time/date-format.mjs} +0 -0
  1193. /package/{esm2015/date-time/date-separator.js → esm2020/date-time/date-separator.mjs} +0 -0
  1194. /package/{esm2015/date-time/date-time.js → esm2020/date-time/date-time.mjs} +0 -0
  1195. /package/{esm2015/date-time/day-range.js → esm2020/date-time/day-range.mjs} +0 -0
  1196. /package/{esm2015/date-time/day.js → esm2020/date-time/day.mjs} +0 -0
  1197. /package/{esm2015/date-time/days.const.js → esm2020/date-time/days.const.mjs} +0 -0
  1198. /package/{esm2015/date-time/index.js → esm2020/date-time/index.mjs} +0 -0
  1199. /package/{esm2015/date-time/month-range.js → esm2020/date-time/month-range.mjs} +0 -0
  1200. /package/{esm2015/date-time/month.js → esm2020/date-time/month.mjs} +0 -0
  1201. /package/{esm2015/date-time/taiga-ui-cdk-date-time.js → esm2020/date-time/taiga-ui-cdk-date-time.mjs} +0 -0
  1202. /package/{esm2015/date-time/time.js → esm2020/date-time/time.mjs} +0 -0
  1203. /package/{esm2015/date-time/year.js → esm2020/date-time/year.mjs} +0 -0
  1204. /package/{esm2015/decorators/debounce.js → esm2020/decorators/debounce.mjs} +0 -0
  1205. /package/{esm2015/decorators/default-prop.js → esm2020/decorators/default-prop.mjs} +0 -0
  1206. /package/{esm2015/decorators/index.js → esm2020/decorators/index.mjs} +0 -0
  1207. /package/{esm2015/decorators/pure.js → esm2020/decorators/pure.mjs} +0 -0
  1208. /package/{esm2015/decorators/required-setter.js → esm2020/decorators/required-setter.mjs} +0 -0
  1209. /package/{esm2015/decorators/taiga-ui-cdk-decorators.js → esm2020/decorators/taiga-ui-cdk-decorators.mjs} +0 -0
  1210. /package/{esm2015/directives/active-zone/index.js → esm2020/directives/active-zone/index.mjs} +0 -0
  1211. /package/{esm2015/directives/active-zone/taiga-ui-cdk-directives-active-zone.js → esm2020/directives/active-zone/taiga-ui-cdk-directives-active-zone.mjs} +0 -0
  1212. /package/{esm2015/directives/auto-focus/autofocus.options.js → esm2020/directives/auto-focus/autofocus.options.mjs} +0 -0
  1213. /package/{esm2015/directives/auto-focus/index.js → esm2020/directives/auto-focus/index.mjs} +0 -0
  1214. /package/{esm2015/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.js → esm2020/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.mjs} +0 -0
  1215. /package/{esm2015/directives/autofilled/index.js → esm2020/directives/autofilled/index.mjs} +0 -0
  1216. /package/{esm2015/directives/autofilled/taiga-ui-cdk-directives-autofilled.js → esm2020/directives/autofilled/taiga-ui-cdk-directives-autofilled.mjs} +0 -0
  1217. /package/{esm2015/directives/checked/index.js → esm2020/directives/checked/index.mjs} +0 -0
  1218. /package/{esm2015/directives/checked/taiga-ui-cdk-directives-checked.js → esm2020/directives/checked/taiga-ui-cdk-directives-checked.mjs} +0 -0
  1219. /package/{esm2015/directives/click-outside/index.js → esm2020/directives/click-outside/index.mjs} +0 -0
  1220. /package/{esm2015/directives/click-outside/taiga-ui-cdk-directives-click-outside.js → esm2020/directives/click-outside/taiga-ui-cdk-directives-click-outside.mjs} +0 -0
  1221. /package/{esm2015/directives/control/index.js → esm2020/directives/control/index.mjs} +0 -0
  1222. /package/{esm2015/directives/control/taiga-ui-cdk-directives-control.js → esm2020/directives/control/taiga-ui-cdk-directives-control.mjs} +0 -0
  1223. /package/{esm2015/directives/copy-processor/index.js → esm2020/directives/copy-processor/index.mjs} +0 -0
  1224. /package/{esm2015/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.js → esm2020/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.mjs} +0 -0
  1225. /package/{esm2015/directives/drag/index.js → esm2020/directives/drag/index.mjs} +0 -0
  1226. /package/{esm2015/directives/drag/taiga-ui-cdk-directives-drag.js → esm2020/directives/drag/taiga-ui-cdk-directives-drag.mjs} +0 -0
  1227. /package/{esm2015/directives/droppable/index.js → esm2020/directives/droppable/index.mjs} +0 -0
  1228. /package/{esm2015/directives/droppable/taiga-ui-cdk-directives-droppable.js → esm2020/directives/droppable/taiga-ui-cdk-directives-droppable.mjs} +0 -0
  1229. /package/{esm2015/directives/element/index.js → esm2020/directives/element/index.mjs} +0 -0
  1230. /package/{esm2015/directives/element/taiga-ui-cdk-directives-element.js → esm2020/directives/element/taiga-ui-cdk-directives-element.mjs} +0 -0
  1231. /package/{esm2015/directives/focus-trap/index.js → esm2020/directives/focus-trap/index.mjs} +0 -0
  1232. /package/{esm2015/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.js → esm2020/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.mjs} +0 -0
  1233. /package/{esm2015/directives/focus-visible/index.js → esm2020/directives/focus-visible/index.mjs} +0 -0
  1234. /package/{esm2015/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.js → esm2020/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.mjs} +0 -0
  1235. /package/{esm2015/directives/focusable/index.js → esm2020/directives/focusable/index.mjs} +0 -0
  1236. /package/{esm2015/directives/focusable/taiga-ui-cdk-directives-focusable.js → esm2020/directives/focusable/taiga-ui-cdk-directives-focusable.mjs} +0 -0
  1237. /package/{esm2015/directives/focused/index.js → esm2020/directives/focused/index.mjs} +0 -0
  1238. /package/{esm2015/directives/focused/taiga-ui-cdk-directives-focused.js → esm2020/directives/focused/taiga-ui-cdk-directives-focused.mjs} +0 -0
  1239. /package/{esm2015/directives/for/index.js → esm2020/directives/for/index.mjs} +0 -0
  1240. /package/{esm2015/directives/for/taiga-ui-cdk-directives-for.js → esm2020/directives/for/taiga-ui-cdk-directives-for.mjs} +0 -0
  1241. /package/{esm2015/directives/for-async/index.js → esm2020/directives/for-async/index.mjs} +0 -0
  1242. /package/{esm2015/directives/for-async/taiga-ui-cdk-directives-for-async.js → esm2020/directives/for-async/taiga-ui-cdk-directives-for-async.mjs} +0 -0
  1243. /package/{esm2015/directives/high-dpi/index.js → esm2020/directives/high-dpi/index.mjs} +0 -0
  1244. /package/{esm2015/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.js → esm2020/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.mjs} +0 -0
  1245. /package/{esm2015/directives/hovered/index.js → esm2020/directives/hovered/index.mjs} +0 -0
  1246. /package/{esm2015/directives/hovered/taiga-ui-cdk-directives-hovered.js → esm2020/directives/hovered/taiga-ui-cdk-directives-hovered.mjs} +0 -0
  1247. /package/{esm2015/directives/index.js → esm2020/directives/index.mjs} +0 -0
  1248. /package/{esm2015/directives/item/index.js → esm2020/directives/item/index.mjs} +0 -0
  1249. /package/{esm2015/directives/item/taiga-ui-cdk-directives-item.js → esm2020/directives/item/taiga-ui-cdk-directives-item.mjs} +0 -0
  1250. /package/{esm2015/directives/let/index.js → esm2020/directives/let/index.mjs} +0 -0
  1251. /package/{esm2015/directives/let/let-context.js → esm2020/directives/let/let-context.mjs} +0 -0
  1252. /package/{esm2015/directives/let/taiga-ui-cdk-directives-let.js → esm2020/directives/let/taiga-ui-cdk-directives-let.mjs} +0 -0
  1253. /package/{esm2015/directives/media/index.js → esm2020/directives/media/index.mjs} +0 -0
  1254. /package/{esm2015/directives/media/taiga-ui-cdk-directives-media.js → esm2020/directives/media/taiga-ui-cdk-directives-media.mjs} +0 -0
  1255. /package/{esm2015/directives/obscured/index.js → esm2020/directives/obscured/index.mjs} +0 -0
  1256. /package/{esm2015/directives/obscured/taiga-ui-cdk-directives-obscured.js → esm2020/directives/obscured/taiga-ui-cdk-directives-obscured.mjs} +0 -0
  1257. /package/{esm2015/directives/overscroll/index.js → esm2020/directives/overscroll/index.mjs} +0 -0
  1258. /package/{esm2015/directives/overscroll/taiga-ui-cdk-directives-overscroll.js → esm2020/directives/overscroll/taiga-ui-cdk-directives-overscroll.mjs} +0 -0
  1259. /package/{esm2015/directives/pan/index.js → esm2020/directives/pan/index.mjs} +0 -0
  1260. /package/{esm2015/directives/pan/taiga-ui-cdk-directives-pan.js → esm2020/directives/pan/taiga-ui-cdk-directives-pan.mjs} +0 -0
  1261. /package/{esm2015/directives/platform/index.js → esm2020/directives/platform/index.mjs} +0 -0
  1262. /package/{esm2015/directives/platform/taiga-ui-cdk-directives-platform.js → esm2020/directives/platform/taiga-ui-cdk-directives-platform.mjs} +0 -0
  1263. /package/{esm2015/directives/portal/index.js → esm2020/directives/portal/index.mjs} +0 -0
  1264. /package/{esm2015/directives/portal/taiga-ui-cdk-directives-portal.js → esm2020/directives/portal/taiga-ui-cdk-directives-portal.mjs} +0 -0
  1265. /package/{esm2015/directives/pressed/index.js → esm2020/directives/pressed/index.mjs} +0 -0
  1266. /package/{esm2015/directives/pressed/taiga-ui-cdk-directives-pressed.js → esm2020/directives/pressed/taiga-ui-cdk-directives-pressed.mjs} +0 -0
  1267. /package/{esm2015/directives/prevent-default/index.js → esm2020/directives/prevent-default/index.mjs} +0 -0
  1268. /package/{esm2015/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.js → esm2020/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.mjs} +0 -0
  1269. /package/{esm2015/directives/repeat-times/index.js → esm2020/directives/repeat-times/index.mjs} +0 -0
  1270. /package/{esm2015/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.js → esm2020/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.mjs} +0 -0
  1271. /package/{esm2015/directives/resize/index.js → esm2020/directives/resize/index.mjs} +0 -0
  1272. /package/{esm2015/directives/resize/taiga-ui-cdk-directives-resize.js → esm2020/directives/resize/taiga-ui-cdk-directives-resize.mjs} +0 -0
  1273. /package/{esm2015/directives/resizer/index.js → esm2020/directives/resizer/index.mjs} +0 -0
  1274. /package/{esm2015/directives/resizer/taiga-ui-cdk-directives-resizer.js → esm2020/directives/resizer/taiga-ui-cdk-directives-resizer.mjs} +0 -0
  1275. /package/{esm2015/directives/swipe/index.js → esm2020/directives/swipe/index.mjs} +0 -0
  1276. /package/{esm2015/directives/swipe/taiga-ui-cdk-directives-swipe.js → esm2020/directives/swipe/taiga-ui-cdk-directives-swipe.mjs} +0 -0
  1277. /package/{esm2015/directives/taiga-ui-cdk-directives.js → esm2020/directives/taiga-ui-cdk-directives.mjs} +0 -0
  1278. /package/{esm2015/directives/validator/index.js → esm2020/directives/validator/index.mjs} +0 -0
  1279. /package/{esm2015/directives/validator/taiga-ui-cdk-directives-validator.js → esm2020/directives/validator/taiga-ui-cdk-directives-validator.mjs} +0 -0
  1280. /package/{esm2015/directives/value-changes/index.js → esm2020/directives/value-changes/index.mjs} +0 -0
  1281. /package/{esm2015/directives/value-changes/taiga-ui-cdk-directives-value-changes.js → esm2020/directives/value-changes/taiga-ui-cdk-directives-value-changes.mjs} +0 -0
  1282. /package/{esm2015/directives/zoom/index.js → esm2020/directives/zoom/index.mjs} +0 -0
  1283. /package/{esm2015/directives/zoom/taiga-ui-cdk-directives-zoom.js → esm2020/directives/zoom/taiga-ui-cdk-directives-zoom.mjs} +0 -0
  1284. /package/{esm2015/enums/day-of-week.js → esm2020/enums/day-of-week.mjs} +0 -0
  1285. /package/{esm2015/enums/index.js → esm2020/enums/index.mjs} +0 -0
  1286. /package/{esm2015/enums/month-number.js → esm2020/enums/month-number.mjs} +0 -0
  1287. /package/{esm2015/enums/taiga-ui-cdk-enums.js → esm2020/enums/taiga-ui-cdk-enums.mjs} +0 -0
  1288. /package/{esm2015/exceptions/computed-document.exception.js → esm2020/exceptions/computed-document.exception.mjs} +0 -0
  1289. /package/{esm2015/exceptions/document-selection.exception.js → esm2020/exceptions/document-selection.exception.mjs} +0 -0
  1290. /package/{esm2015/exceptions/index.js → esm2020/exceptions/index.mjs} +0 -0
  1291. /package/{esm2015/exceptions/invalid-day.exception.js → esm2020/exceptions/invalid-day.exception.mjs} +0 -0
  1292. /package/{esm2015/exceptions/invalid-month.exception.js → esm2020/exceptions/invalid-month.exception.mjs} +0 -0
  1293. /package/{esm2015/exceptions/invalid-year.exception.js → esm2020/exceptions/invalid-year.exception.mjs} +0 -0
  1294. /package/{esm2015/exceptions/no-host.exception.js → esm2020/exceptions/no-host.exception.mjs} +0 -0
  1295. /package/{esm2015/exceptions/owner-document.exception.js → esm2020/exceptions/owner-document.exception.mjs} +0 -0
  1296. /package/{esm2015/exceptions/pure.exception.js → esm2020/exceptions/pure.exception.mjs} +0 -0
  1297. /package/{esm2015/exceptions/table-sort-key.exception.js → esm2020/exceptions/table-sort-key.exception.mjs} +0 -0
  1298. /package/{esm2015/exceptions/taiga-ui-cdk-exceptions.js → esm2020/exceptions/taiga-ui-cdk-exceptions.mjs} +0 -0
  1299. /package/{esm2015/exceptions/ts-parser.exception.js → esm2020/exceptions/ts-parser.exception.mjs} +0 -0
  1300. /package/{esm2015/exceptions/value-changes.exception.js → esm2020/exceptions/value-changes.exception.mjs} +0 -0
  1301. /package/{esm2015/exceptions/value-present.exception.js → esm2020/exceptions/value-present.exception.mjs} +0 -0
  1302. /package/{esm2015/exceptions/xml-parsing.exception.js → esm2020/exceptions/xml-parsing.exception.mjs} +0 -0
  1303. /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  1304. /package/{esm2015/interfaces/alert-context.js → esm2020/interfaces/alert-context.mjs} +0 -0
  1305. /package/{esm2015/interfaces/aria-dialog-context.js → esm2020/interfaces/aria-dialog-context.mjs} +0 -0
  1306. /package/{esm2015/interfaces/base-dialog-context.js → esm2020/interfaces/base-dialog-context.mjs} +0 -0
  1307. /package/{esm2015/interfaces/base-dialog.js → esm2020/interfaces/base-dialog.mjs} +0 -0
  1308. /package/{esm2015/interfaces/context-with-implicit.js → esm2020/interfaces/context-with-implicit.mjs} +0 -0
  1309. /package/{esm2015/interfaces/control-value-transformer.js → esm2020/interfaces/control-value-transformer.mjs} +0 -0
  1310. /package/{esm2015/interfaces/day-like.js → esm2020/interfaces/day-like.mjs} +0 -0
  1311. /package/{esm2015/interfaces/focusable-element-accessor.js → esm2020/interfaces/focusable-element-accessor.mjs} +0 -0
  1312. /package/{esm2015/interfaces/index.js → esm2020/interfaces/index.mjs} +0 -0
  1313. /package/{esm2015/interfaces/month-like.js → esm2020/interfaces/month-like.mjs} +0 -0
  1314. /package/{esm2015/interfaces/safe-html.js → esm2020/interfaces/safe-html.mjs} +0 -0
  1315. /package/{esm2015/interfaces/swipe.js → esm2020/interfaces/swipe.mjs} +0 -0
  1316. /package/{esm2015/interfaces/taiga-ui-cdk-interfaces.js → esm2020/interfaces/taiga-ui-cdk-interfaces.mjs} +0 -0
  1317. /package/{esm2015/interfaces/time-like.js → esm2020/interfaces/time-like.mjs} +0 -0
  1318. /package/{esm2015/interfaces/year-like.js → esm2020/interfaces/year-like.mjs} +0 -0
  1319. /package/{esm2015/interfaces/zoom.js → esm2020/interfaces/zoom.mjs} +0 -0
  1320. /package/{esm2015/observables/control-value.js → esm2020/observables/control-value.mjs} +0 -0
  1321. /package/{esm2015/observables/drag-and-drop-from.js → esm2020/observables/drag-and-drop-from.mjs} +0 -0
  1322. /package/{esm2015/observables/focus-visible-observable.js → esm2020/observables/focus-visible-observable.mjs} +0 -0
  1323. /package/{esm2015/observables/if-map.js → esm2020/observables/if-map.mjs} +0 -0
  1324. /package/{esm2015/observables/index.js → esm2020/observables/index.mjs} +0 -0
  1325. /package/{esm2015/observables/is-alive.js → esm2020/observables/is-alive.mjs} +0 -0
  1326. /package/{esm2015/observables/items-query-list-observable.js → esm2020/observables/items-query-list-observable.mjs} +0 -0
  1327. /package/{esm2015/observables/mouse-drag-finish-from.js → esm2020/observables/mouse-drag-finish-from.mjs} +0 -0
  1328. /package/{esm2015/observables/must-be-present.js → esm2020/observables/must-be-present.mjs} +0 -0
  1329. /package/{esm2015/observables/pressed-observable.js → esm2020/observables/pressed-observable.mjs} +0 -0
  1330. /package/{esm2015/observables/prevent-default.js → esm2020/observables/prevent-default.mjs} +0 -0
  1331. /package/{esm2015/observables/scroll-from.js → esm2020/observables/scroll-from.mjs} +0 -0
  1332. /package/{esm2015/observables/stop-propagation.js → esm2020/observables/stop-propagation.mjs} +0 -0
  1333. /package/{esm2015/observables/taiga-ui-cdk-observables.js → esm2020/observables/taiga-ui-cdk-observables.mjs} +0 -0
  1334. /package/{esm2015/observables/typed-from-event.js → esm2020/observables/typed-from-event.mjs} +0 -0
  1335. /package/{esm2015/observables/watch.js → esm2020/observables/watch.mjs} +0 -0
  1336. /package/{esm2015/observables/zone-free.js → esm2020/observables/zone-free.mjs} +0 -0
  1337. /package/{esm2015/pipes/filter/index.js → esm2020/pipes/filter/index.mjs} +0 -0
  1338. /package/{esm2015/pipes/filter/taiga-ui-cdk-pipes-filter.js → esm2020/pipes/filter/taiga-ui-cdk-pipes-filter.mjs} +0 -0
  1339. /package/{esm2015/pipes/index.js → esm2020/pipes/index.mjs} +0 -0
  1340. /package/{esm2015/pipes/is-present/index.js → esm2020/pipes/is-present/index.mjs} +0 -0
  1341. /package/{esm2015/pipes/is-present/taiga-ui-cdk-pipes-is-present.js → esm2020/pipes/is-present/taiga-ui-cdk-pipes-is-present.mjs} +0 -0
  1342. /package/{esm2015/pipes/keys/index.js → esm2020/pipes/keys/index.mjs} +0 -0
  1343. /package/{esm2015/pipes/keys/taiga-ui-cdk-pipes-keys.js → esm2020/pipes/keys/taiga-ui-cdk-pipes-keys.mjs} +0 -0
  1344. /package/{esm2015/pipes/mapper/index.js → esm2020/pipes/mapper/index.mjs} +0 -0
  1345. /package/{esm2015/pipes/mapper/taiga-ui-cdk-pipes-mapper.js → esm2020/pipes/mapper/taiga-ui-cdk-pipes-mapper.mjs} +0 -0
  1346. /package/{esm2015/pipes/replace/index.js → esm2020/pipes/replace/index.mjs} +0 -0
  1347. /package/{esm2015/pipes/replace/taiga-ui-cdk-pipes-replace.js → esm2020/pipes/replace/taiga-ui-cdk-pipes-replace.mjs} +0 -0
  1348. /package/{esm2015/pipes/taiga-ui-cdk-pipes.js → esm2020/pipes/taiga-ui-cdk-pipes.mjs} +0 -0
  1349. /package/{esm2015/services/index.js → esm2020/services/index.mjs} +0 -0
  1350. /package/{esm2015/services/taiga-ui-cdk-services.js → esm2020/services/taiga-ui-cdk-services.mjs} +0 -0
  1351. /package/{esm2015/taiga-ui-cdk.js → esm2020/taiga-ui-cdk.mjs} +0 -0
  1352. /package/{esm2015/tokens/alerts.js → esm2020/tokens/alerts.mjs} +0 -0
  1353. /package/{esm2015/tokens/default-renderer.js → esm2020/tokens/default-renderer.mjs} +0 -0
  1354. /package/{esm2015/tokens/dialogs.js → esm2020/tokens/dialogs.mjs} +0 -0
  1355. /package/{esm2015/tokens/focusable-item-accessor.js → esm2020/tokens/focusable-item-accessor.mjs} +0 -0
  1356. /package/{esm2015/tokens/index.js → esm2020/tokens/index.mjs} +0 -0
  1357. /package/{esm2015/tokens/is-android.js → esm2020/tokens/is-android.mjs} +0 -0
  1358. /package/{esm2015/tokens/is-apple.js → esm2020/tokens/is-apple.mjs} +0 -0
  1359. /package/{esm2015/tokens/is-chromium.js → esm2020/tokens/is-chromium.mjs} +0 -0
  1360. /package/{esm2015/tokens/is-cypress.js → esm2020/tokens/is-cypress.mjs} +0 -0
  1361. /package/{esm2015/tokens/is-e2e.js → esm2020/tokens/is-e2e.mjs} +0 -0
  1362. /package/{esm2015/tokens/is-ios.js → esm2020/tokens/is-ios.mjs} +0 -0
  1363. /package/{esm2015/tokens/is-mobile.js → esm2020/tokens/is-mobile.mjs} +0 -0
  1364. /package/{esm2015/tokens/is-playwright.js → esm2020/tokens/is-playwright.mjs} +0 -0
  1365. /package/{esm2015/tokens/is-stackblitz.js → esm2020/tokens/is-stackblitz.mjs} +0 -0
  1366. /package/{esm2015/tokens/platform.js → esm2020/tokens/platform.mjs} +0 -0
  1367. /package/{esm2015/tokens/range.js → esm2020/tokens/range.mjs} +0 -0
  1368. /package/{esm2015/tokens/removed-element.js → esm2020/tokens/removed-element.mjs} +0 -0
  1369. /package/{esm2015/tokens/scroll-ref.js → esm2020/tokens/scroll-ref.mjs} +0 -0
  1370. /package/{esm2015/tokens/swipe-options.js → esm2020/tokens/swipe-options.mjs} +0 -0
  1371. /package/{esm2015/tokens/taiga-ui-cdk-tokens.js → esm2020/tokens/taiga-ui-cdk-tokens.mjs} +0 -0
  1372. /package/{esm2015/tokens/take-only-trusted-events.js → esm2020/tokens/take-only-trusted-events.mjs} +0 -0
  1373. /package/{esm2015/tokens/touch-supported.js → esm2020/tokens/touch-supported.mjs} +0 -0
  1374. /package/{esm2015/tokens/window-height.js → esm2020/tokens/window-height.mjs} +0 -0
  1375. /package/{esm2015/tokens/zoom-options.js → esm2020/tokens/zoom-options.mjs} +0 -0
  1376. /package/{esm2015/types/autocomplete.js → esm2020/types/autocomplete.mjs} +0 -0
  1377. /package/{esm2015/types/date-mode.js → esm2020/types/date-mode.mjs} +0 -0
  1378. /package/{esm2015/types/deep-partial.js → esm2020/types/deep-partial.mjs} +0 -0
  1379. /package/{esm2015/types/dialog.js → esm2020/types/dialog.mjs} +0 -0
  1380. /package/{esm2015/types/event-with.js → esm2020/types/event-with.mjs} +0 -0
  1381. /package/{esm2015/types/handler.js → esm2020/types/handler.mjs} +0 -0
  1382. /package/{esm2015/types/index.js → esm2020/types/index.mjs} +0 -0
  1383. /package/{esm2015/types/injection-token-type.js → esm2020/types/injection-token-type.mjs} +0 -0
  1384. /package/{esm2015/types/input-mode.js → esm2020/types/input-mode.mjs} +0 -0
  1385. /package/{esm2015/types/input-type.js → esm2020/types/input-type.mjs} +0 -0
  1386. /package/{esm2015/types/mapper.js → esm2020/types/mapper.mjs} +0 -0
  1387. /package/{esm2015/types/matcher.js → esm2020/types/matcher.mjs} +0 -0
  1388. /package/{esm2015/types/overscroll-mode.js → esm2020/types/overscroll-mode.mjs} +0 -0
  1389. /package/{esm2015/types/platform.js → esm2020/types/platform.mjs} +0 -0
  1390. /package/{esm2015/types/rounding.js → esm2020/types/rounding.mjs} +0 -0
  1391. /package/{esm2015/types/taiga-ui-cdk-types.js → esm2020/types/taiga-ui-cdk-types.mjs} +0 -0
  1392. /package/{esm2015/types/time-mode.js → esm2020/types/time-mode.mjs} +0 -0
  1393. /package/{esm2015/types/values-of.js → esm2020/types/values-of.mjs} +0 -0
  1394. /package/{esm2015/utils/browser/index.js → esm2020/utils/browser/index.mjs} +0 -0
  1395. /package/{esm2015/utils/browser/is-edge-older-than.js → esm2020/utils/browser/is-edge-older-than.mjs} +0 -0
  1396. /package/{esm2015/utils/browser/is-edge.js → esm2020/utils/browser/is-edge.mjs} +0 -0
  1397. /package/{esm2015/utils/browser/is-firefox.js → esm2020/utils/browser/is-firefox.mjs} +0 -0
  1398. /package/{esm2015/utils/browser/taiga-ui-cdk-utils-browser.js → esm2020/utils/browser/taiga-ui-cdk-utils-browser.mjs} +0 -0
  1399. /package/{esm2015/utils/color/hex-to-rgb.js → esm2020/utils/color/hex-to-rgb.mjs} +0 -0
  1400. /package/{esm2015/utils/color/hsv-to-rgb.js → esm2020/utils/color/hsv-to-rgb.mjs} +0 -0
  1401. /package/{esm2015/utils/color/index.js → esm2020/utils/color/index.mjs} +0 -0
  1402. /package/{esm2015/utils/color/parse-color.js → esm2020/utils/color/parse-color.mjs} +0 -0
  1403. /package/{esm2015/utils/color/rgb-to-hex.js → esm2020/utils/color/rgb-to-hex.mjs} +0 -0
  1404. /package/{esm2015/utils/color/rgb-to-hsv.js → esm2020/utils/color/rgb-to-hsv.mjs} +0 -0
  1405. /package/{esm2015/utils/color/taiga-ui-cdk-utils-color.js → esm2020/utils/color/taiga-ui-cdk-utils-color.mjs} +0 -0
  1406. /package/{esm2015/utils/dom/can-scroll.js → esm2020/utils/dom/can-scroll.mjs} +0 -0
  1407. /package/{esm2015/utils/dom/element-checks.js → esm2020/utils/dom/element-checks.mjs} +0 -0
  1408. /package/{esm2015/utils/dom/get-actual-target.js → esm2020/utils/dom/get-actual-target.mjs} +0 -0
  1409. /package/{esm2015/utils/dom/get-clipboard-data-text.js → esm2020/utils/dom/get-clipboard-data-text.mjs} +0 -0
  1410. /package/{esm2015/utils/dom/get-document-or-shadow-root.js → esm2020/utils/dom/get-document-or-shadow-root.mjs} +0 -0
  1411. /package/{esm2015/utils/dom/get-element-offset.js → esm2020/utils/dom/get-element-offset.mjs} +0 -0
  1412. /package/{esm2015/utils/dom/get-scroll-parent.js → esm2020/utils/dom/get-scroll-parent.mjs} +0 -0
  1413. /package/{esm2015/utils/dom/index.js → esm2020/utils/dom/index.mjs} +0 -0
  1414. /package/{esm2015/utils/dom/is-current-target.js → esm2020/utils/dom/is-current-target.mjs} +0 -0
  1415. /package/{esm2015/utils/dom/is-element-editable.js → esm2020/utils/dom/is-element-editable.mjs} +0 -0
  1416. /package/{esm2015/utils/dom/is-inside-iframe.js → esm2020/utils/dom/is-inside-iframe.mjs} +0 -0
  1417. /package/{esm2015/utils/dom/taiga-ui-cdk-utils-dom.js → esm2020/utils/dom/taiga-ui-cdk-utils-dom.mjs} +0 -0
  1418. /package/{esm2015/utils/focus/blur-native-focused.js → esm2020/utils/focus/blur-native-focused.mjs} +0 -0
  1419. /package/{esm2015/utils/focus/get-closest-focusable.js → esm2020/utils/focus/get-closest-focusable.mjs} +0 -0
  1420. /package/{esm2015/utils/focus/index.js → esm2020/utils/focus/index.mjs} +0 -0
  1421. /package/{esm2015/utils/focus/is-native-focused-in.js → esm2020/utils/focus/is-native-focused-in.mjs} +0 -0
  1422. /package/{esm2015/utils/focus/is-native-keyboard-focusable.js → esm2020/utils/focus/is-native-keyboard-focusable.mjs} +0 -0
  1423. /package/{esm2015/utils/focus/is-native-mouse-focusable.js → esm2020/utils/focus/is-native-mouse-focusable.mjs} +0 -0
  1424. /package/{esm2015/utils/focus/move-focus.js → esm2020/utils/focus/move-focus.mjs} +0 -0
  1425. /package/{esm2015/utils/focus/set-native-mouse-focused.js → esm2020/utils/focus/set-native-mouse-focused.mjs} +0 -0
  1426. /package/{esm2015/utils/focus/taiga-ui-cdk-utils-focus.js → esm2020/utils/focus/taiga-ui-cdk-utils-focus.mjs} +0 -0
  1427. /package/{esm2015/utils/format/index.js → esm2020/utils/format/index.mjs} +0 -0
  1428. /package/{esm2015/utils/format/px.js → esm2020/utils/format/px.mjs} +0 -0
  1429. /package/{esm2015/utils/format/taiga-ui-cdk-utils-format.js → esm2020/utils/format/taiga-ui-cdk-utils-format.mjs} +0 -0
  1430. /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  1431. /package/{esm2015/utils/math/clamp.js → esm2020/utils/math/clamp.mjs} +0 -0
  1432. /package/{esm2015/utils/math/in-range.js → esm2020/utils/math/in-range.mjs} +0 -0
  1433. /package/{esm2015/utils/math/index.js → esm2020/utils/math/index.mjs} +0 -0
  1434. /package/{esm2015/utils/math/normalize-to-int-number.js → esm2020/utils/math/normalize-to-int-number.mjs} +0 -0
  1435. /package/{esm2015/utils/math/quantize.js → esm2020/utils/math/quantize.mjs} +0 -0
  1436. /package/{esm2015/utils/math/round-with.js → esm2020/utils/math/round-with.mjs} +0 -0
  1437. /package/{esm2015/utils/math/round.js → esm2020/utils/math/round.mjs} +0 -0
  1438. /package/{esm2015/utils/math/sum.js → esm2020/utils/math/sum.mjs} +0 -0
  1439. /package/{esm2015/utils/math/taiga-ui-cdk-utils-math.js → esm2020/utils/math/taiga-ui-cdk-utils-math.mjs} +0 -0
  1440. /package/{esm2015/utils/math/to-int.js → esm2020/utils/math/to-int.mjs} +0 -0
  1441. /package/{esm2015/utils/math/to-integer.js → esm2020/utils/math/to-integer.mjs} +0 -0
  1442. /package/{esm2015/utils/math/to-radians.js → esm2020/utils/math/to-radians.mjs} +0 -0
  1443. /package/{esm2015/utils/miscellaneous/array-remove.js → esm2020/utils/miscellaneous/array-remove.mjs} +0 -0
  1444. /package/{esm2015/utils/miscellaneous/array-shallow-equals.js → esm2020/utils/miscellaneous/array-shallow-equals.mjs} +0 -0
  1445. /package/{esm2015/utils/miscellaneous/array-toggle.js → esm2020/utils/miscellaneous/array-toggle.mjs} +0 -0
  1446. /package/{esm2015/utils/miscellaneous/clean-object.js → esm2020/utils/miscellaneous/clean-object.mjs} +0 -0
  1447. /package/{esm2015/utils/miscellaneous/create-options.js → esm2020/utils/miscellaneous/create-options.mjs} +0 -0
  1448. /package/{esm2015/utils/miscellaneous/create-token.js → esm2020/utils/miscellaneous/create-token.mjs} +0 -0
  1449. /package/{esm2015/utils/miscellaneous/default-sort.js → esm2020/utils/miscellaneous/default-sort.mjs} +0 -0
  1450. /package/{esm2015/utils/miscellaneous/distance-between-touches.js → esm2020/utils/miscellaneous/distance-between-touches.mjs} +0 -0
  1451. /package/{esm2015/utils/miscellaneous/ease-in-out-quad.js → esm2020/utils/miscellaneous/ease-in-out-quad.mjs} +0 -0
  1452. /package/{esm2015/utils/miscellaneous/flat-length.js → esm2020/utils/miscellaneous/flat-length.mjs} +0 -0
  1453. /package/{esm2015/utils/miscellaneous/get-original-array-from-query-list.js → esm2020/utils/miscellaneous/get-original-array-from-query-list.mjs} +0 -0
  1454. /package/{esm2015/utils/miscellaneous/get-swipe-direction.js → esm2020/utils/miscellaneous/get-swipe-direction.mjs} +0 -0
  1455. /package/{esm2015/utils/miscellaneous/index.js → esm2020/utils/miscellaneous/index.mjs} +0 -0
  1456. /package/{esm2015/utils/miscellaneous/is-falsy.js → esm2020/utils/miscellaneous/is-falsy.mjs} +0 -0
  1457. /package/{esm2015/utils/miscellaneous/is-present.js → esm2020/utils/miscellaneous/is-present.mjs} +0 -0
  1458. /package/{esm2015/utils/miscellaneous/is-valid-url.js → esm2020/utils/miscellaneous/is-valid-url.mjs} +0 -0
  1459. /package/{esm2015/utils/miscellaneous/mark-control-as-touched-and-validate.js → esm2020/utils/miscellaneous/mark-control-as-touched-and-validate.mjs} +0 -0
  1460. /package/{esm2015/utils/miscellaneous/nullable-same.js → esm2020/utils/miscellaneous/nullable-same.mjs} +0 -0
  1461. /package/{esm2015/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.js → esm2020/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.mjs} +0 -0
  1462. /package/{esm2015/utils/miscellaneous/uniq-by.js → esm2020/utils/miscellaneous/uniq-by.mjs} +0 -0
  1463. /package/{esm2015/utils/os/index.js → esm2020/utils/os/index.mjs} +0 -0
  1464. /package/{esm2015/utils/os/is-apple-platform.js → esm2020/utils/os/is-apple-platform.mjs} +0 -0
  1465. /package/{esm2015/utils/os/is-apple.js → esm2020/utils/os/is-apple.mjs} +0 -0
  1466. /package/{esm2015/utils/os/is-ios.js → esm2020/utils/os/is-ios.mjs} +0 -0
  1467. /package/{esm2015/utils/os/taiga-ui-cdk-utils-os.js → esm2020/utils/os/taiga-ui-cdk-utils-os.mjs} +0 -0
  1468. /package/{esm2015/utils/svg/index.js → esm2020/utils/svg/index.mjs} +0 -0
  1469. /package/{esm2015/utils/svg/taiga-ui-cdk-utils-svg.js → esm2020/utils/svg/taiga-ui-cdk-utils-svg.mjs} +0 -0
  1470. /package/{esm2015/utils/taiga-ui-cdk-utils.js → esm2020/utils/taiga-ui-cdk-utils.mjs} +0 -0
@@ -1,1242 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@taiga-ui/cdk/constants'), require('@taiga-ui/cdk/utils'), require('@taiga-ui/cdk/classes'), require('@taiga-ui/cdk/enums'), require('@taiga-ui/cdk/exceptions'), require('@taiga-ui/cdk/utils/math')) :
3
- typeof define === 'function' && define.amd ? define('@taiga-ui/cdk/date-time', ['exports', '@taiga-ui/cdk/constants', '@taiga-ui/cdk/utils', '@taiga-ui/cdk/classes', '@taiga-ui/cdk/enums', '@taiga-ui/cdk/exceptions', '@taiga-ui/cdk/utils/math'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"].cdk = global["taiga-ui"].cdk || {}, global["taiga-ui"].cdk["date-time"] = {}), global["taiga-ui"].cdk.constants, global["taiga-ui"].cdk.utils, global["taiga-ui"].cdk.classes, global["taiga-ui"].cdk.enums, global["taiga-ui"].cdk.exceptions, global["taiga-ui"].cdk.utils.math));
5
- })(this, (function (exports, constants, utils, classes, enums, exceptions, math) { 'use strict';
6
-
7
- function tuiDateClamp(date, min, max) {
8
- if (max && max < date) {
9
- return max;
10
- }
11
- if (min && min > date) {
12
- return min;
13
- }
14
- return date;
15
- }
16
-
17
- var DAYS_IN_WEEK = 7;
18
- var DAYS_IN_NORMAL_YEAR = 365;
19
- var DAYS_IN_LEAP_YEAR = 366;
20
- var MONTHS_IN_YEAR = 12;
21
- var MIN_DAY = 1;
22
- var MIN_MONTH = 0;
23
- var MAX_MONTH = 11;
24
- var MIN_YEAR = 0;
25
- var MAX_YEAR = 9999;
26
- var RANGE_SEPARATOR_CHAR = "" + constants.CHAR_NO_BREAK_SPACE + constants.CHAR_EN_DASH + constants.CHAR_NO_BREAK_SPACE;
27
- var MILLISECONDS_IN_SECOND = 1000;
28
- var SECONDS_IN_MINUTE = 60;
29
- var MINUTES_IN_HOUR = 60;
30
- var HOURS_IN_DAY = 24;
31
- var MILLISECONDS_IN_MINUTE = MILLISECONDS_IN_SECOND * SECONDS_IN_MINUTE;
32
- var MILLISECONDS_IN_HOUR = MILLISECONDS_IN_MINUTE * MINUTES_IN_HOUR;
33
- var MILLISECONDS_IN_DAY = MILLISECONDS_IN_HOUR * HOURS_IN_DAY;
34
-
35
- /**
36
- * @internal 'dd.mm.yyyy'.length
37
- * Used in:
38
- * - {@link TuiInputDateComponent}
39
- * - {@link TuiInputDateRangeComponent}
40
- * - {@link TuiInputDateTimeComponent}
41
- */
42
- var DATE_FILLER_LENGTH = 10;
43
- /**
44
- * @internal
45
- * Used in {@link TuiInputDateRangeComponent}
46
- */
47
- var DATE_RANGE_FILLER_LENGTH = 2 * DATE_FILLER_LENGTH + RANGE_SEPARATOR_CHAR.length;
48
-
49
- /**
50
- * Active date format for Taiga UI
51
- */
52
- var TUI_DATE_FORMAT = utils.tuiCreateToken("DMY");
53
-
54
- /**
55
- * Date separator for Taiga UI components
56
- */
57
- var TUI_DATE_SEPARATOR = utils.tuiCreateToken(".");
58
- var changeDateSeparator = function (dateString, newDateSeparator) { return dateString.replace(/[^0-9A-Za-zА-Яа-я]/gi, newDateSeparator); };
59
-
60
- /*! *****************************************************************************
61
- Copyright (c) Microsoft Corporation.
62
-
63
- Permission to use, copy, modify, and/or distribute this software for any
64
- purpose with or without fee is hereby granted.
65
-
66
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
67
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
68
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
69
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
70
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
71
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
72
- PERFORMANCE OF THIS SOFTWARE.
73
- ***************************************************************************** */
74
- /* global Reflect, Promise */
75
- var extendStatics = function (d, b) {
76
- extendStatics = Object.setPrototypeOf ||
77
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
78
- function (d, b) { for (var p in b)
79
- if (Object.prototype.hasOwnProperty.call(b, p))
80
- d[p] = b[p]; };
81
- return extendStatics(d, b);
82
- };
83
- function __extends(d, b) {
84
- if (typeof b !== "function" && b !== null)
85
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
86
- extendStatics(d, b);
87
- function __() { this.constructor = d; }
88
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
89
- }
90
- var __assign = function () {
91
- __assign = Object.assign || function __assign(t) {
92
- for (var s, i = 1, n = arguments.length; i < n; i++) {
93
- s = arguments[i];
94
- for (var p in s)
95
- if (Object.prototype.hasOwnProperty.call(s, p))
96
- t[p] = s[p];
97
- }
98
- return t;
99
- };
100
- return __assign.apply(this, arguments);
101
- };
102
- function __rest(s, e) {
103
- var t = {};
104
- for (var p in s)
105
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
106
- t[p] = s[p];
107
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
108
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
109
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
110
- t[p[i]] = s[p[i]];
111
- }
112
- return t;
113
- }
114
- function __decorate(decorators, target, key, desc) {
115
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
116
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
117
- r = Reflect.decorate(decorators, target, key, desc);
118
- else
119
- for (var i = decorators.length - 1; i >= 0; i--)
120
- if (d = decorators[i])
121
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
122
- return c > 3 && r && Object.defineProperty(target, key, r), r;
123
- }
124
- function __param(paramIndex, decorator) {
125
- return function (target, key) { decorator(target, key, paramIndex); };
126
- }
127
- function __metadata(metadataKey, metadataValue) {
128
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
129
- return Reflect.metadata(metadataKey, metadataValue);
130
- }
131
- function __awaiter(thisArg, _arguments, P, generator) {
132
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
133
- return new (P || (P = Promise))(function (resolve, reject) {
134
- function fulfilled(value) { try {
135
- step(generator.next(value));
136
- }
137
- catch (e) {
138
- reject(e);
139
- } }
140
- function rejected(value) { try {
141
- step(generator["throw"](value));
142
- }
143
- catch (e) {
144
- reject(e);
145
- } }
146
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
147
- step((generator = generator.apply(thisArg, _arguments || [])).next());
148
- });
149
- }
150
- function __generator(thisArg, body) {
151
- var _ = { label: 0, sent: function () { if (t[0] & 1)
152
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
153
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
154
- function verb(n) { return function (v) { return step([n, v]); }; }
155
- function step(op) {
156
- if (f)
157
- throw new TypeError("Generator is already executing.");
158
- while (_)
159
- try {
160
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
161
- return t;
162
- if (y = 0, t)
163
- op = [op[0] & 2, t.value];
164
- switch (op[0]) {
165
- case 0:
166
- case 1:
167
- t = op;
168
- break;
169
- case 4:
170
- _.label++;
171
- return { value: op[1], done: false };
172
- case 5:
173
- _.label++;
174
- y = op[1];
175
- op = [0];
176
- continue;
177
- case 7:
178
- op = _.ops.pop();
179
- _.trys.pop();
180
- continue;
181
- default:
182
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
183
- _ = 0;
184
- continue;
185
- }
186
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
187
- _.label = op[1];
188
- break;
189
- }
190
- if (op[0] === 6 && _.label < t[1]) {
191
- _.label = t[1];
192
- t = op;
193
- break;
194
- }
195
- if (t && _.label < t[2]) {
196
- _.label = t[2];
197
- _.ops.push(op);
198
- break;
199
- }
200
- if (t[2])
201
- _.ops.pop();
202
- _.trys.pop();
203
- continue;
204
- }
205
- op = body.call(thisArg, _);
206
- }
207
- catch (e) {
208
- op = [6, e];
209
- y = 0;
210
- }
211
- finally {
212
- f = t = 0;
213
- }
214
- if (op[0] & 5)
215
- throw op[1];
216
- return { value: op[0] ? op[1] : void 0, done: true };
217
- }
218
- }
219
- var __createBinding = Object.create ? (function (o, m, k, k2) {
220
- if (k2 === undefined)
221
- k2 = k;
222
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
223
- }) : (function (o, m, k, k2) {
224
- if (k2 === undefined)
225
- k2 = k;
226
- o[k2] = m[k];
227
- });
228
- function __exportStar(m, o) {
229
- for (var p in m)
230
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
231
- __createBinding(o, m, p);
232
- }
233
- function __values(o) {
234
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
235
- if (m)
236
- return m.call(o);
237
- if (o && typeof o.length === "number")
238
- return {
239
- next: function () {
240
- if (o && i >= o.length)
241
- o = void 0;
242
- return { value: o && o[i++], done: !o };
243
- }
244
- };
245
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
246
- }
247
- function __read(o, n) {
248
- var m = typeof Symbol === "function" && o[Symbol.iterator];
249
- if (!m)
250
- return o;
251
- var i = m.call(o), r, ar = [], e;
252
- try {
253
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
254
- ar.push(r.value);
255
- }
256
- catch (error) {
257
- e = { error: error };
258
- }
259
- finally {
260
- try {
261
- if (r && !r.done && (m = i["return"]))
262
- m.call(i);
263
- }
264
- finally {
265
- if (e)
266
- throw e.error;
267
- }
268
- }
269
- return ar;
270
- }
271
- /** @deprecated */
272
- function __spread() {
273
- for (var ar = [], i = 0; i < arguments.length; i++)
274
- ar = ar.concat(__read(arguments[i]));
275
- return ar;
276
- }
277
- /** @deprecated */
278
- function __spreadArrays() {
279
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
280
- s += arguments[i].length;
281
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
282
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
283
- r[k] = a[j];
284
- return r;
285
- }
286
- function __spreadArray(to, from, pack) {
287
- if (pack || arguments.length === 2)
288
- for (var i = 0, l = from.length, ar; i < l; i++) {
289
- if (ar || !(i in from)) {
290
- if (!ar)
291
- ar = Array.prototype.slice.call(from, 0, i);
292
- ar[i] = from[i];
293
- }
294
- }
295
- return to.concat(ar || from);
296
- }
297
- function __await(v) {
298
- return this instanceof __await ? (this.v = v, this) : new __await(v);
299
- }
300
- function __asyncGenerator(thisArg, _arguments, generator) {
301
- if (!Symbol.asyncIterator)
302
- throw new TypeError("Symbol.asyncIterator is not defined.");
303
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
304
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
305
- function verb(n) { if (g[n])
306
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
307
- function resume(n, v) { try {
308
- step(g[n](v));
309
- }
310
- catch (e) {
311
- settle(q[0][3], e);
312
- } }
313
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
314
- function fulfill(value) { resume("next", value); }
315
- function reject(value) { resume("throw", value); }
316
- function settle(f, v) { if (f(v), q.shift(), q.length)
317
- resume(q[0][0], q[0][1]); }
318
- }
319
- function __asyncDelegator(o) {
320
- var i, p;
321
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
322
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
323
- }
324
- function __asyncValues(o) {
325
- if (!Symbol.asyncIterator)
326
- throw new TypeError("Symbol.asyncIterator is not defined.");
327
- var m = o[Symbol.asyncIterator], i;
328
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
329
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
330
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
331
- }
332
- function __makeTemplateObject(cooked, raw) {
333
- if (Object.defineProperty) {
334
- Object.defineProperty(cooked, "raw", { value: raw });
335
- }
336
- else {
337
- cooked.raw = raw;
338
- }
339
- return cooked;
340
- }
341
- ;
342
- var __setModuleDefault = Object.create ? (function (o, v) {
343
- Object.defineProperty(o, "default", { enumerable: true, value: v });
344
- }) : function (o, v) {
345
- o["default"] = v;
346
- };
347
- function __importStar(mod) {
348
- if (mod && mod.__esModule)
349
- return mod;
350
- var result = {};
351
- if (mod != null)
352
- for (var k in mod)
353
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
354
- __createBinding(result, mod, k);
355
- __setModuleDefault(result, mod);
356
- return result;
357
- }
358
- function __importDefault(mod) {
359
- return (mod && mod.__esModule) ? mod : { default: mod };
360
- }
361
- function __classPrivateFieldGet(receiver, state, kind, f) {
362
- if (kind === "a" && !f)
363
- throw new TypeError("Private accessor was defined without a getter");
364
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
365
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
366
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
367
- }
368
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
369
- if (kind === "m")
370
- throw new TypeError("Private method is not writable");
371
- if (kind === "a" && !f)
372
- throw new TypeError("Private accessor was defined without a setter");
373
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
374
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
375
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
376
- }
377
-
378
- /**
379
- * Immutable year object
380
- * @nosideeffects
381
- */
382
- var TuiYear = /** @class */ (function () {
383
- function TuiYear(year) {
384
- this.year = year;
385
- ngDevMode && classes.tuiAssert.assert(TuiYear.isValidYear(year));
386
- }
387
- /**
388
- * Checks year for validity
389
- */
390
- TuiYear.isValidYear = function (year) {
391
- return Number.isInteger(year) && math.tuiInRange(year, MIN_YEAR, MAX_YEAR + 1);
392
- };
393
- /**
394
- * Check if passed year is a leap year
395
- */
396
- TuiYear.isLeapYear = function (year) {
397
- ngDevMode && classes.tuiAssert.assert(TuiYear.isValidYear(year));
398
- return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);
399
- };
400
- /**
401
- * Returns amount of leap years from year 0 to the passed one
402
- */
403
- TuiYear.getAbsoluteLeapYears = function (year) {
404
- ngDevMode && classes.tuiAssert.assert(TuiYear.isValidYear(year));
405
- return Math.ceil(year / 400) + (Math.ceil(year / 4) - Math.ceil(year / 100));
406
- };
407
- TuiYear.lengthBetween = function (from, to) {
408
- return to.year - from.year;
409
- };
410
- /**
411
- * Normalizes year by clamping it between min and max years
412
- */
413
- TuiYear.normalizeYearPart = function (year) {
414
- return math.tuiNormalizeToIntNumber(year, MIN_YEAR, MAX_YEAR);
415
- };
416
- Object.defineProperty(TuiYear.prototype, "formattedYear", {
417
- get: function () {
418
- return String(this.year).padStart(4, "0");
419
- },
420
- enumerable: false,
421
- configurable: true
422
- });
423
- Object.defineProperty(TuiYear.prototype, "isLeapYear", {
424
- get: function () {
425
- return TuiYear.isLeapYear(this.year);
426
- },
427
- enumerable: false,
428
- configurable: true
429
- });
430
- Object.defineProperty(TuiYear.prototype, "absoluteLeapYears", {
431
- /**
432
- * Returns amount of leap years from year 0 to current
433
- */
434
- get: function () {
435
- return TuiYear.getAbsoluteLeapYears(this.year);
436
- },
437
- enumerable: false,
438
- configurable: true
439
- });
440
- /**
441
- * Passed year is after current
442
- */
443
- TuiYear.prototype.yearBefore = function (_a) {
444
- var year = _a.year;
445
- return this.year < year;
446
- };
447
- /**
448
- * Passed year is the same or after current
449
- */
450
- TuiYear.prototype.yearSameOrBefore = function (_a) {
451
- var year = _a.year;
452
- return this.year <= year;
453
- };
454
- /**
455
- * Passed year is the same as current
456
- */
457
- TuiYear.prototype.yearSame = function (_a) {
458
- var year = _a.year;
459
- return this.year === year;
460
- };
461
- /**
462
- * Passed year is either the same of before the current
463
- */
464
- TuiYear.prototype.yearSameOrAfter = function (_a) {
465
- var year = _a.year;
466
- return this.year >= year;
467
- };
468
- /**
469
- * Passed year is before current
470
- */
471
- TuiYear.prototype.yearAfter = function (_a) {
472
- var year = _a.year;
473
- return this.year > year;
474
- };
475
- /**
476
- * Immutably offsets year
477
- */
478
- TuiYear.prototype.append = function (_a) {
479
- var _b = _a.year, year = _b === void 0 ? 0 : _b;
480
- ngDevMode && classes.tuiAssert.assert(Number.isInteger(year));
481
- var resultYear = this.year + year;
482
- ngDevMode && classes.tuiAssert.assert(TuiYear.isValidYear(resultYear));
483
- return new TuiYear(resultYear);
484
- };
485
- TuiYear.prototype.toString = function () {
486
- return this.formattedYear;
487
- };
488
- TuiYear.prototype.valueOf = function () {
489
- return this.year;
490
- };
491
- /**
492
- * Returns the primitive value of the given Date object.
493
- * Depending on the argument, the method can return either a string or a number.
494
- * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/@@toPrimitive
495
- */
496
- TuiYear.prototype[Symbol.toPrimitive] = function (hint) {
497
- return Date.prototype[Symbol.toPrimitive].call(this, hint);
498
- };
499
- TuiYear.prototype.toJSON = function () {
500
- return this.formattedYear;
501
- };
502
- return TuiYear;
503
- }());
504
-
505
- /**
506
- * Immutable object consisting of year and month
507
- */
508
- var TuiMonth = /** @class */ (function (_super) {
509
- __extends(TuiMonth, _super);
510
- /**
511
- * @param year
512
- * @param month (starting with 0)
513
- */
514
- function TuiMonth(year, month) {
515
- var _this = _super.call(this, year) || this;
516
- _this.month = month;
517
- ngDevMode && classes.tuiAssert.assert(TuiMonth.isValidMonth(year, month));
518
- return _this;
519
- }
520
- /**
521
- * Tests month and year for validity
522
- */
523
- TuiMonth.isValidMonth = function (year, month) {
524
- return TuiYear.isValidYear(year) && TuiMonth.isValidMonthPart(month);
525
- };
526
- /**
527
- * Returns number of days in a month
528
- */
529
- TuiMonth.getMonthDaysCount = function (month, isLeapYear) {
530
- ngDevMode && classes.tuiAssert.assert(TuiMonth.isValidMonthPart(month));
531
- switch (month) {
532
- case enums.TuiMonthNumber.February:
533
- return isLeapYear ? 29 : 28;
534
- case enums.TuiMonthNumber.April:
535
- case enums.TuiMonthNumber.June:
536
- case enums.TuiMonthNumber.September:
537
- case enums.TuiMonthNumber.November:
538
- return 30;
539
- default:
540
- return 31;
541
- }
542
- };
543
- /**
544
- * Returns current month and year based on local time zone
545
- * @nosideeffects
546
- */
547
- TuiMonth.currentLocal = function () {
548
- var nativeDate = new Date();
549
- return new TuiMonth(nativeDate.getFullYear(), nativeDate.getMonth());
550
- };
551
- /**
552
- * Returns current month and year based on UTC
553
- */
554
- TuiMonth.currentUtc = function () {
555
- var nativeDate = new Date();
556
- return new TuiMonth(nativeDate.getUTCFullYear(), nativeDate.getUTCMonth());
557
- };
558
- TuiMonth.lengthBetween = function (from, to) {
559
- var absoluteFrom = from.month + from.year * 12;
560
- var absoluteTo = to.month + to.year * 12;
561
- return absoluteTo - absoluteFrom;
562
- };
563
- /**
564
- * Normalizes number by clamping it between min and max month
565
- */
566
- TuiMonth.normalizeMonthPart = function (month) {
567
- return math.tuiNormalizeToIntNumber(month, MIN_MONTH, MAX_MONTH);
568
- };
569
- /**
570
- * Tests month for validity
571
- */
572
- TuiMonth.isValidMonthPart = function (month) {
573
- return Number.isInteger(month) && math.tuiInRange(month, MIN_MONTH, MAX_MONTH + 1);
574
- };
575
- Object.defineProperty(TuiMonth.prototype, "formattedMonthPart", {
576
- get: function () {
577
- return String(this.month + 1).padStart(2, "0");
578
- },
579
- enumerable: false,
580
- configurable: true
581
- });
582
- Object.defineProperty(TuiMonth.prototype, "daysCount", {
583
- /**
584
- * Returns days in a month
585
- */
586
- get: function () {
587
- return TuiMonth.getMonthDaysCount(this.month, this.isLeapYear);
588
- },
589
- enumerable: false,
590
- configurable: true
591
- });
592
- /**
593
- * Passed month and year are after current
594
- */
595
- TuiMonth.prototype.monthBefore = function (another) {
596
- return (this.yearBefore(another) ||
597
- (this.yearSame(another) && this.month < another.month));
598
- };
599
- /**
600
- * Passed month and year are after or the same as current
601
- */
602
- TuiMonth.prototype.monthSameOrBefore = function (another) {
603
- return (this.yearBefore(another) ||
604
- (this.yearSame(another) && this.month <= another.month));
605
- };
606
- /**
607
- * Passed month and year are the same as current
608
- */
609
- TuiMonth.prototype.monthSame = function (another) {
610
- return this.yearSame(another) && this.month === another.month;
611
- };
612
- /**
613
- * Passed month and year are either before or equal to current
614
- */
615
- TuiMonth.prototype.monthSameOrAfter = function (another) {
616
- return (this.yearAfter(another) ||
617
- (this.yearSame(another) && this.month >= another.month));
618
- };
619
- /**
620
- * Passed month and year are before current
621
- */
622
- TuiMonth.prototype.monthAfter = function (another) {
623
- return (this.yearAfter(another) ||
624
- (this.yearSame(another) && this.month > another.month));
625
- };
626
- /**
627
- * Immutably alters current month and year by passed offset
628
- *
629
- * @param offset
630
- * @return new month and year object as a result of offsetting current
631
- */
632
- TuiMonth.prototype.append = function (_a) {
633
- var _b = _a.year, year = _b === void 0 ? 0 : _b, _c = _a.month, month = _c === void 0 ? 0 : _c;
634
- var totalMonths = (this.year + year) * MONTHS_IN_YEAR + this.month + month;
635
- return new TuiMonth(Math.floor(totalMonths / MONTHS_IN_YEAR), totalMonths % MONTHS_IN_YEAR);
636
- };
637
- TuiMonth.prototype.toString = function () {
638
- return this.formattedMonthPart + "." + this.formattedYear;
639
- };
640
- TuiMonth.prototype.valueOf = function () {
641
- return this.toLocalNativeDate().valueOf();
642
- };
643
- TuiMonth.prototype.toJSON = function () {
644
- return _super.prototype.toJSON.call(this) + "-" + this.formattedMonthPart;
645
- };
646
- /**
647
- * Returns native {@link Date} based on local time zone
648
- */
649
- TuiMonth.prototype.toLocalNativeDate = function () {
650
- return new Date(this.year, this.month);
651
- };
652
- /**
653
- * Returns native {@link Date} based on UTC
654
- */
655
- TuiMonth.prototype.toUtcNativeDate = function () {
656
- return new Date(Date.UTC(this.year, this.month));
657
- };
658
- return TuiMonth;
659
- }(TuiYear));
660
-
661
- // TODO: Localized formatting
662
- /**
663
- * Immutable date object, consisting of day, month and year
664
- */
665
- var TuiDay = /** @class */ (function (_super) {
666
- __extends(TuiDay, _super);
667
- function TuiDay(year, month, day) {
668
- var _this = _super.call(this, year, month) || this;
669
- _this.day = day;
670
- ngDevMode && classes.tuiAssert.assert(TuiDay.isValidDay(year, month, day));
671
- return _this;
672
- }
673
- /**
674
- * Creates {@link TuiDay} from native {@link Date} based on local time zone
675
- */
676
- TuiDay.fromLocalNativeDate = function (date) {
677
- return new TuiDay(date.getFullYear(), date.getMonth(), date.getDate());
678
- };
679
- /**
680
- * Creates {@link TuiDay} from native {@link Date} using UTC
681
- */
682
- TuiDay.fromUtcNativeDate = function (date) {
683
- return new TuiDay(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate());
684
- };
685
- /**
686
- * Check validity of year, month and day
687
- *
688
- * @param year
689
- * @param month
690
- * @param day
691
- * @return boolean validity
692
- */
693
- TuiDay.isValidDay = function (year, month, day) {
694
- return (TuiMonth.isValidMonth(year, month) &&
695
- Number.isInteger(day) &&
696
- math.tuiInRange(day, MIN_DAY, TuiMonth.getMonthDaysCount(month, TuiYear.isLeapYear(year)) + 1));
697
- };
698
- /**
699
- * Current day based on local time zone
700
- */
701
- TuiDay.currentLocal = function () {
702
- var nativeDate = new Date();
703
- var year = nativeDate.getFullYear();
704
- var month = nativeDate.getMonth();
705
- var day = nativeDate.getDate();
706
- return new TuiDay(year, month, day);
707
- };
708
- /**
709
- * Returns current day based on UTC
710
- */
711
- TuiDay.currentUtc = function () {
712
- var nativeDate = new Date();
713
- var year = nativeDate.getUTCFullYear();
714
- var month = nativeDate.getUTCMonth();
715
- var day = nativeDate.getUTCDate();
716
- return new TuiDay(year, month, day);
717
- };
718
- /**
719
- * Calculates {@link TuiDay} normalizing year, month and day. {@link NaN} is turned into minimal value.
720
- *
721
- * @param year any year value, including invalid
722
- * @param month any month value, including invalid (months start with 0)
723
- * @param day any day value, including invalid
724
- * @return normalized date
725
- */
726
- TuiDay.normalizeOf = function (year, month, day) {
727
- var normalizedYear = TuiYear.normalizeYearPart(year);
728
- var normalizedMonth = TuiMonth.normalizeMonthPart(month);
729
- var normalizedDay = TuiDay.normalizeDayPart(day, normalizedMonth, normalizedYear);
730
- return new TuiDay(normalizedYear, normalizedMonth, normalizedDay);
731
- };
732
- TuiDay.lengthBetween = function (from, to) {
733
- return Math.round((to.toLocalNativeDate().getTime() - from.toLocalNativeDate().getTime()) /
734
- (1000 * 60 * 60 * 24));
735
- };
736
- TuiDay.parseRawDateString = function (date, dateMode) {
737
- if (dateMode === void 0) { dateMode = "DMY"; }
738
- ngDevMode &&
739
- classes.tuiAssert.assert(date.length === DATE_FILLER_LENGTH, "[parseRawDateString]: wrong date string length");
740
- switch (dateMode) {
741
- case "YMD":
742
- return {
743
- day: parseInt(date.slice(8, 10), 10),
744
- month: parseInt(date.slice(5, 7), 10) - 1,
745
- year: parseInt(date.slice(0, 4), 10),
746
- };
747
- case "MDY":
748
- return {
749
- day: parseInt(date.slice(3, 5), 10),
750
- month: parseInt(date.slice(0, 2), 10) - 1,
751
- year: parseInt(date.slice(6, 10), 10),
752
- };
753
- case "DMY":
754
- default:
755
- return {
756
- day: parseInt(date.slice(0, 2), 10),
757
- month: parseInt(date.slice(3, 5), 10) - 1,
758
- year: parseInt(date.slice(6, 10), 10),
759
- };
760
- }
761
- };
762
- // TODO: Move month and year related code corresponding classes
763
- /**
764
- * Parsing a string with date with normalization
765
- *
766
- * @param rawDate date string
767
- * @param dateMode date format of the date string (DMY | MDY | YMD)
768
- * @return normalized date
769
- */
770
- TuiDay.normalizeParse = function (rawDate, dateMode) {
771
- if (dateMode === void 0) { dateMode = "DMY"; }
772
- var _a = this.parseRawDateString(rawDate, dateMode), day = _a.day, month = _a.month, year = _a.year;
773
- return TuiDay.normalizeOf(year, month, day);
774
- };
775
- /**
776
- * Parsing a date stringified in a toJSON format
777
- * @param yearMonthDayString date string in format of YYYY-MM-DD
778
- * @return date
779
- * @throws exceptions if any part of the date is invalid
780
- */
781
- TuiDay.jsonParse = function (yearMonthDayString) {
782
- var _a = this.parseRawDateString(yearMonthDayString, "YMD"), day = _a.day, month = _a.month, year = _a.year;
783
- if (!TuiYear.isValidYear(year)) {
784
- throw new exceptions.TuiInvalidYearException(year);
785
- }
786
- if (!TuiMonth.isValidMonth(year, month)) {
787
- throw new exceptions.TuiInvalidMonthException(month);
788
- }
789
- if (!Number.isInteger(day) ||
790
- !math.tuiInRange(day, MIN_DAY, TuiMonth.getMonthDaysCount(month, TuiYear.isLeapYear(year)) + 1)) {
791
- throw new exceptions.TuiInvalidDayException(day);
792
- }
793
- return new TuiDay(year, month, day);
794
- };
795
- TuiDay.normalizeDayPart = function (day, month, year) {
796
- ngDevMode && classes.tuiAssert.assert(TuiMonth.isValidMonth(year, month));
797
- var monthDaysCount = TuiMonth.getMonthDaysCount(month, TuiYear.isLeapYear(year));
798
- return math.tuiNormalizeToIntNumber(day, 1, monthDaysCount);
799
- };
800
- Object.defineProperty(TuiDay.prototype, "formattedDayPart", {
801
- get: function () {
802
- return String(this.day).padStart(2, "0");
803
- },
804
- enumerable: false,
805
- configurable: true
806
- });
807
- Object.defineProperty(TuiDay.prototype, "isWeekend", {
808
- get: function () {
809
- var dayOfWeek = this.dayOfWeek(false);
810
- return dayOfWeek === enums.TuiDayOfWeek.Saturday || dayOfWeek === enums.TuiDayOfWeek.Sunday;
811
- },
812
- enumerable: false,
813
- configurable: true
814
- });
815
- /**
816
- * Returns day of week
817
- *
818
- * @param startFromMonday whether week starts from Monday and not from Sunday
819
- * @return day of week (from 0 to 6)
820
- */
821
- TuiDay.prototype.dayOfWeek = function (startFromMonday) {
822
- if (startFromMonday === void 0) { startFromMonday = true; }
823
- var dayOfWeek = startFromMonday
824
- ? this.toLocalNativeDate().getDay() - 1
825
- : this.toLocalNativeDate().getDay();
826
- return dayOfWeek < 0 ? 6 : dayOfWeek;
827
- };
828
- /**
829
- * Passed date is after current
830
- */
831
- TuiDay.prototype.dayBefore = function (another) {
832
- return (this.monthBefore(another) ||
833
- (this.monthSame(another) && this.day < another.day));
834
- };
835
- /**
836
- * Passed date is after or equals to current
837
- */
838
- TuiDay.prototype.daySameOrBefore = function (another) {
839
- return (this.monthBefore(another) ||
840
- (this.monthSame(another) && this.day <= another.day));
841
- };
842
- /**
843
- * Passed date is the same as current
844
- */
845
- TuiDay.prototype.daySame = function (another) {
846
- return this.monthSame(another) && this.day === another.day;
847
- };
848
- /**
849
- * Passed date is either before or the same as current
850
- */
851
- TuiDay.prototype.daySameOrAfter = function (another) {
852
- return (this.monthAfter(another) ||
853
- (this.monthSame(another) && this.day >= another.day));
854
- };
855
- /**
856
- * Passed date is before current
857
- */
858
- TuiDay.prototype.dayAfter = function (another) {
859
- return (this.monthAfter(another) ||
860
- (this.monthSame(another) && this.day > another.day));
861
- };
862
- /**
863
- * Clamping date between two limits
864
- *
865
- * @param min
866
- * @param max
867
- * @return clamped date
868
- */
869
- TuiDay.prototype.dayLimit = function (min, max) {
870
- if (min !== null && this.dayBefore(min)) {
871
- return min;
872
- }
873
- if (max !== null && this.dayAfter(max)) {
874
- return max;
875
- }
876
- return this;
877
- };
878
- /**
879
- * Immutably alters current day by passed offset
880
- *
881
- * If resulting month has more days than original one, date is rounded to the maximum day
882
- * in the resulting month. Offset of days will be calculated based on the resulted year and month
883
- * to not interfere with parent classes methods
884
- *
885
- * @param offset
886
- * @return new date object as a result of offsetting current
887
- */
888
- TuiDay.prototype.append = function (_a) {
889
- var _b = _a.year, year = _b === void 0 ? 0 : _b, _c = _a.month, month = _c === void 0 ? 0 : _c, _d = _a.day, day = _d === void 0 ? 0 : _d;
890
- var totalMonths = (this.year + year) * MONTHS_IN_YEAR + this.month + month;
891
- var years = Math.floor(totalMonths / MONTHS_IN_YEAR);
892
- var months = totalMonths % MONTHS_IN_YEAR;
893
- var days = Math.min(this.day, TuiMonth.getMonthDaysCount(months, TuiYear.isLeapYear(years))) + day;
894
- while (days > TuiMonth.getMonthDaysCount(months, TuiYear.isLeapYear(years))) {
895
- days -= TuiMonth.getMonthDaysCount(months, TuiYear.isLeapYear(years));
896
- if (months === enums.TuiMonthNumber.December) {
897
- years++;
898
- months = enums.TuiMonthNumber.January;
899
- }
900
- else {
901
- months++;
902
- }
903
- }
904
- while (days < MIN_DAY) {
905
- if (months === enums.TuiMonthNumber.January) {
906
- years--;
907
- months = enums.TuiMonthNumber.December;
908
- }
909
- else {
910
- months--;
911
- }
912
- days += TuiMonth.getMonthDaysCount(months, TuiYear.isLeapYear(years));
913
- }
914
- return new TuiDay(years, months, days);
915
- };
916
- /**
917
- * Returns formatted whole date
918
- */
919
- TuiDay.prototype.getFormattedDay = function (dateFormat, separator) {
920
- ngDevMode &&
921
- classes.tuiAssert.assert(separator.length === 1, "Separator should consist of only 1 symbol");
922
- var dd = this.formattedDayPart;
923
- var mm = this.formattedMonthPart;
924
- var yyyy = this.formattedYear;
925
- switch (dateFormat) {
926
- case "YMD":
927
- return "" + yyyy + separator + mm + separator + dd;
928
- case "MDY":
929
- return "" + mm + separator + dd + separator + yyyy;
930
- case "DMY":
931
- default:
932
- return "" + dd + separator + mm + separator + yyyy;
933
- }
934
- };
935
- TuiDay.prototype.toString = function (dateFormat, separator) {
936
- if (dateFormat === void 0) { dateFormat = "DMY"; }
937
- if (separator === void 0) { separator = "."; }
938
- return this.getFormattedDay(dateFormat, separator);
939
- };
940
- TuiDay.prototype.toJSON = function () {
941
- return _super.prototype.toJSON.call(this) + "-" + this.formattedDayPart;
942
- };
943
- /**
944
- * Returns native {@link Date} based on local time zone
945
- */
946
- TuiDay.prototype.toLocalNativeDate = function () {
947
- return new Date(this.year, this.month, this.day);
948
- };
949
- /**
950
- * Returns native {@link Date} based on UTC
951
- */
952
- TuiDay.prototype.toUtcNativeDate = function () {
953
- return new Date(Date.UTC(this.year, this.month, this.day));
954
- };
955
- return TuiDay;
956
- }(TuiMonth));
957
-
958
- /**
959
- * An immutable range of two {@link TuiMonth} objects
960
- */
961
- var TuiMonthRange = /** @class */ (function () {
962
- function TuiMonthRange(from, to) {
963
- this.from = from;
964
- this.to = to;
965
- ngDevMode && classes.tuiAssert.assert(from.monthSameOrBefore(to));
966
- }
967
- TuiMonthRange.sort = function (month1, month2) {
968
- return month1.monthSameOrBefore(month2)
969
- ? new TuiMonthRange(month1, month2)
970
- : new TuiMonthRange(month2, month1);
971
- };
972
- Object.defineProperty(TuiMonthRange.prototype, "isSingleMonth", {
973
- get: function () {
974
- return this.from.monthSame(this.to);
975
- },
976
- enumerable: false,
977
- configurable: true
978
- });
979
- TuiMonthRange.prototype.monthSame = function (another) {
980
- return this.from.monthSame(another.from) && this.to.monthSame(another.to);
981
- };
982
- TuiMonthRange.prototype.toString = function () {
983
- return "" + this.from + RANGE_SEPARATOR_CHAR + this.to;
984
- };
985
- return TuiMonthRange;
986
- }());
987
-
988
- /**
989
- * An immutable range of two {@link TuiDay} objects
990
- */
991
- var TuiDayRange = /** @class */ (function (_super) {
992
- __extends(TuiDayRange, _super);
993
- function TuiDayRange(from, to) {
994
- var _this = _super.call(this, from, to) || this;
995
- _this.from = from;
996
- _this.to = to;
997
- ngDevMode && classes.tuiAssert.assert(from.daySameOrBefore(to));
998
- return _this;
999
- }
1000
- /**
1001
- * Creates range from two days after sorting them
1002
- *
1003
- * @param day1
1004
- * @param day2
1005
- * @return new range with sorted days
1006
- */
1007
- TuiDayRange.sort = function (day1, day2) {
1008
- return day1.daySameOrBefore(day2)
1009
- ? new TuiDayRange(day1, day2)
1010
- : new TuiDayRange(day2, day1);
1011
- };
1012
- /**
1013
- * Parse and correct a day range in string format
1014
- *
1015
- * @param rangeString a string of dates in a format dd.mm.yyyy - dd.mm.yyyy
1016
- * @param dateMode {@link TuiDateMode}
1017
- * @return normalized day range object
1018
- */
1019
- TuiDayRange.normalizeParse = function (rangeString, dateMode) {
1020
- if (dateMode === void 0) { dateMode = "DMY"; }
1021
- var leftDay = TuiDay.normalizeParse(rangeString.slice(0, DATE_FILLER_LENGTH), dateMode);
1022
- if (rangeString.length < DATE_RANGE_FILLER_LENGTH) {
1023
- return new TuiDayRange(leftDay, leftDay);
1024
- }
1025
- return TuiDayRange.sort(leftDay, TuiDay.normalizeParse(rangeString.slice(DATE_FILLER_LENGTH + RANGE_SEPARATOR_CHAR.length), dateMode));
1026
- };
1027
- Object.defineProperty(TuiDayRange.prototype, "isSingleDay", {
1028
- get: function () {
1029
- return this.from.daySame(this.to);
1030
- },
1031
- enumerable: false,
1032
- configurable: true
1033
- });
1034
- /**
1035
- * Tests ranges for identity
1036
- *
1037
- * @param another second range to test against current
1038
- * @return `true` if days are identical
1039
- */
1040
- TuiDayRange.prototype.daySame = function (another) {
1041
- return this.from.daySame(another.from) && this.to.daySame(another.to);
1042
- };
1043
- /**
1044
- * Locks range between two days included, or limits from one side if the other is null
1045
- *
1046
- * @param min
1047
- * @param max
1048
- * @return range — clamped range
1049
- */
1050
- TuiDayRange.prototype.dayLimit = function (min, max) {
1051
- return new TuiDayRange(this.from.dayLimit(min, max), this.to.dayLimit(min, max));
1052
- };
1053
- /**
1054
- * Human readable format.
1055
- */
1056
- TuiDayRange.prototype.getFormattedDayRange = function (dateFormat, dateSeparator) {
1057
- var from = this.from.getFormattedDay(dateFormat, dateSeparator);
1058
- var to = this.to.getFormattedDay(dateFormat, dateSeparator);
1059
- return "" + from + RANGE_SEPARATOR_CHAR + to;
1060
- };
1061
- TuiDayRange.prototype.toString = function (dateFormat, dateSeparator) {
1062
- if (dateFormat === void 0) { dateFormat = "DMY"; }
1063
- if (dateSeparator === void 0) { dateSeparator = "."; }
1064
- return this.getFormattedDayRange(dateFormat, dateSeparator);
1065
- };
1066
- return TuiDayRange;
1067
- }(TuiMonthRange));
1068
-
1069
- var TUI_FIRST_DAY = new TuiDay(MIN_YEAR, MIN_MONTH, MIN_DAY);
1070
- var TUI_LAST_DAY = new TuiDay(MAX_YEAR, MAX_MONTH, 31);
1071
-
1072
- /**
1073
- * Immutable time object with hours, minutes, seconds and ms
1074
- */
1075
- var TuiTime = /** @class */ (function () {
1076
- function TuiTime(hours, minutes, seconds, ms) {
1077
- if (seconds === void 0) { seconds = 0; }
1078
- if (ms === void 0) { ms = 0; }
1079
- this.hours = hours;
1080
- this.minutes = minutes;
1081
- this.seconds = seconds;
1082
- this.ms = ms;
1083
- ngDevMode &&
1084
- classes.tuiAssert.assert(TuiTime.isValidTime(hours, minutes, seconds, ms), "Time must be real, but got:", hours, minutes, seconds, ms);
1085
- }
1086
- /**
1087
- * Checks if time is valid
1088
- */
1089
- TuiTime.isValidTime = function (hours, minutes, seconds, ms) {
1090
- if (seconds === void 0) { seconds = 0; }
1091
- if (ms === void 0) { ms = 0; }
1092
- return (Number.isInteger(hours) &&
1093
- math.tuiInRange(hours, 0, HOURS_IN_DAY) &&
1094
- Number.isInteger(minutes) &&
1095
- math.tuiInRange(minutes, 0, MINUTES_IN_HOUR) &&
1096
- Number.isInteger(seconds) &&
1097
- math.tuiInRange(seconds, 0, SECONDS_IN_MINUTE) &&
1098
- Number.isInteger(ms) &&
1099
- math.tuiInRange(ms, 0, 1000));
1100
- };
1101
- /**
1102
- * Current UTC time.
1103
- */
1104
- TuiTime.current = function () {
1105
- return TuiTime.fromAbsoluteMilliseconds(Date.now() % MILLISECONDS_IN_DAY);
1106
- };
1107
- /**
1108
- * Current time in local timezone
1109
- */
1110
- TuiTime.currentLocal = function () {
1111
- var date = new Date();
1112
- return TuiTime.fromAbsoluteMilliseconds((Date.now() - date.getTimezoneOffset() * MILLISECONDS_IN_MINUTE) %
1113
- MILLISECONDS_IN_DAY);
1114
- };
1115
- /**
1116
- * Calculates TuiTime from milliseconds
1117
- */
1118
- TuiTime.fromAbsoluteMilliseconds = function (milliseconds) {
1119
- ngDevMode && classes.tuiAssert.assert(Number.isInteger(milliseconds));
1120
- ngDevMode &&
1121
- classes.tuiAssert.assert(math.tuiInRange(milliseconds, 0, MILLISECONDS_IN_DAY), "Milliseconds must be below " + MILLISECONDS_IN_DAY + " (milliseconds in a day).");
1122
- var hours = Math.floor(milliseconds / MILLISECONDS_IN_HOUR);
1123
- var minutes = Math.floor((milliseconds % MILLISECONDS_IN_HOUR) / MILLISECONDS_IN_MINUTE);
1124
- var seconds = Math.floor(((milliseconds % MILLISECONDS_IN_HOUR) % MILLISECONDS_IN_MINUTE) / 1000) || 0;
1125
- var ms = Math.floor(((milliseconds % MILLISECONDS_IN_HOUR) % MILLISECONDS_IN_MINUTE) % 1000) || 0;
1126
- return new TuiTime(hours, minutes, seconds, ms);
1127
- };
1128
- /**
1129
- * Parses string into TuiTime object
1130
- */
1131
- TuiTime.fromString = function (time) {
1132
- var hours = Number(time.slice(0, 2));
1133
- var minutes = Number(time.slice(3, 5));
1134
- var seconds = Number(time.slice(6, 8)) || 0;
1135
- var ms = Number(time.slice(9, 12)) || 0;
1136
- return new TuiTime(hours, minutes, seconds, ms);
1137
- };
1138
- /**
1139
- * Converts Date object into TuiTime
1140
- * @param date
1141
- */
1142
- TuiTime.fromLocalNativeDate = function (date) {
1143
- return new TuiTime(date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());
1144
- };
1145
- /**
1146
- * Shifts time by hours and minutes
1147
- */
1148
- TuiTime.prototype.shift = function (_a) {
1149
- var _b = _a.hours, hours = _b === void 0 ? 0 : _b, _c = _a.minutes, minutes = _c === void 0 ? 0 : _c, _d = _a.seconds, seconds = _d === void 0 ? 0 : _d, _e = _a.ms, ms = _e === void 0 ? 0 : _e;
1150
- var newMs = (1000 + this.ms + (ms % 1000)) % 1000;
1151
- var secondsInMs = ms < 0 ? Math.ceil(ms / 1000) : Math.floor(ms / 1000);
1152
- var secondsToAdd = secondsInMs + seconds;
1153
- var newSeconds = (60 + this.seconds + (secondsToAdd % 60)) % 60;
1154
- var minutesInSeconds = secondsToAdd < 0
1155
- ? Math.ceil(secondsToAdd / 60)
1156
- : Math.floor(secondsToAdd / 60);
1157
- var minutesToAdd = minutesInSeconds + minutes;
1158
- var newMinutes = (60 + this.minutes + (minutesToAdd % 60)) % 60;
1159
- var hoursInMinutes = minutesToAdd < 0
1160
- ? Math.ceil(minutesToAdd / 60)
1161
- : Math.floor(minutesToAdd / 60);
1162
- var hoursToAdd = hoursInMinutes + hours;
1163
- var newHours = (24 + this.hours + (hoursToAdd % 24)) % 24;
1164
- return new TuiTime(newHours, newMinutes, newSeconds, newMs);
1165
- };
1166
- /**
1167
- * Converts TuiTime to string
1168
- */
1169
- TuiTime.prototype.toString = function (mode) {
1170
- var needAddMs = mode === "HH:MM:SS.MSS" || (!mode && this.ms > 0);
1171
- var needAddSeconds = needAddMs || mode === "HH:MM:SS" || (!mode && this.seconds > 0);
1172
- return (this.formatTime(this.hours) + ":" + this.formatTime(this.minutes) +
1173
- ("" + (needAddSeconds ? ":" + this.formatTime(this.seconds) : "")) +
1174
- ("" + (needAddMs ? "." + this.formatTime(this.ms, 3) : "")));
1175
- };
1176
- TuiTime.prototype.valueOf = function () {
1177
- return this.toAbsoluteMilliseconds();
1178
- };
1179
- /**
1180
- * Returns the primitive value of the given Date object.
1181
- * Depending on the argument, the method can return either a string or a number.
1182
- * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/@@toPrimitive
1183
- */
1184
- TuiTime.prototype[Symbol.toPrimitive] = function (hint) {
1185
- return Date.prototype[Symbol.toPrimitive].call(this, hint);
1186
- };
1187
- /**
1188
- * Converts TuiTime to milliseconds
1189
- */
1190
- TuiTime.prototype.toAbsoluteMilliseconds = function () {
1191
- return (this.hours * MILLISECONDS_IN_HOUR +
1192
- this.minutes * MILLISECONDS_IN_MINUTE +
1193
- this.seconds * 1000 +
1194
- this.ms);
1195
- };
1196
- TuiTime.prototype.formatTime = function (time, digits) {
1197
- if (digits === void 0) { digits = 2; }
1198
- return String(time).padStart(digits, "0");
1199
- };
1200
- return TuiTime;
1201
- }());
1202
-
1203
- /**
1204
- * Generated bundle index. Do not edit.
1205
- */
1206
-
1207
- exports.DATE_FILLER_LENGTH = DATE_FILLER_LENGTH;
1208
- exports.DATE_RANGE_FILLER_LENGTH = DATE_RANGE_FILLER_LENGTH;
1209
- exports.DAYS_IN_LEAP_YEAR = DAYS_IN_LEAP_YEAR;
1210
- exports.DAYS_IN_NORMAL_YEAR = DAYS_IN_NORMAL_YEAR;
1211
- exports.DAYS_IN_WEEK = DAYS_IN_WEEK;
1212
- exports.HOURS_IN_DAY = HOURS_IN_DAY;
1213
- exports.MAX_MONTH = MAX_MONTH;
1214
- exports.MAX_YEAR = MAX_YEAR;
1215
- exports.MILLISECONDS_IN_DAY = MILLISECONDS_IN_DAY;
1216
- exports.MILLISECONDS_IN_HOUR = MILLISECONDS_IN_HOUR;
1217
- exports.MILLISECONDS_IN_MINUTE = MILLISECONDS_IN_MINUTE;
1218
- exports.MILLISECONDS_IN_SECOND = MILLISECONDS_IN_SECOND;
1219
- exports.MINUTES_IN_HOUR = MINUTES_IN_HOUR;
1220
- exports.MIN_DAY = MIN_DAY;
1221
- exports.MIN_MONTH = MIN_MONTH;
1222
- exports.MIN_YEAR = MIN_YEAR;
1223
- exports.MONTHS_IN_YEAR = MONTHS_IN_YEAR;
1224
- exports.RANGE_SEPARATOR_CHAR = RANGE_SEPARATOR_CHAR;
1225
- exports.SECONDS_IN_MINUTE = SECONDS_IN_MINUTE;
1226
- exports.TUI_DATE_FORMAT = TUI_DATE_FORMAT;
1227
- exports.TUI_DATE_SEPARATOR = TUI_DATE_SEPARATOR;
1228
- exports.TUI_FIRST_DAY = TUI_FIRST_DAY;
1229
- exports.TUI_LAST_DAY = TUI_LAST_DAY;
1230
- exports.TuiDay = TuiDay;
1231
- exports.TuiDayRange = TuiDayRange;
1232
- exports.TuiMonth = TuiMonth;
1233
- exports.TuiMonthRange = TuiMonthRange;
1234
- exports.TuiTime = TuiTime;
1235
- exports.TuiYear = TuiYear;
1236
- exports.changeDateSeparator = changeDateSeparator;
1237
- exports.tuiDateClamp = tuiDateClamp;
1238
-
1239
- Object.defineProperty(exports, '__esModule', { value: true });
1240
-
1241
- }));
1242
- //# sourceMappingURL=taiga-ui-cdk-date-time.umd.js.map