@taiga-ui/addon-mobile 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 (406) hide show
  1. package/components/app-bar/app-bar-back.component.d.ts +1 -1
  2. package/components/app-bar/app-bar.component.d.ts +1 -1
  3. package/components/app-bar/app-bar.directive.d.ts +1 -1
  4. package/components/mobile-calendar/mobile-calendar.component.d.ts +1 -1
  5. package/components/mobile-calendar-dialog/mobile-calendar-dialog.component.d.ts +1 -1
  6. package/components/mobile-dialog/mobile-dialog.component.d.ts +1 -1
  7. package/components/mobile-dialog/mobile-dialog.options.d.ts +1 -1
  8. package/components/pull-to-refresh/loader-android/loader-android.component.d.ts +1 -1
  9. package/components/pull-to-refresh/loader-ios/loader-ios.component.d.ts +1 -1
  10. package/components/pull-to-refresh/pull-to-refresh.component.d.ts +1 -1
  11. package/components/sheet/components/sheet/sheet.component.d.ts +1 -1
  12. package/components/sheet/components/sheet-bar/sheet-bar.component.d.ts +1 -1
  13. package/components/sheet/components/sheet-heading/sheet-heading.component.d.ts +1 -1
  14. package/components/sheet/components/sheets-host/sheets-host.component.d.ts +1 -1
  15. package/components/sheet/directives/sheet-close/sheet-close.directive.d.ts +1 -1
  16. package/components/sheet/directives/sheet-stop/sheet-stop.directive.d.ts +1 -1
  17. package/components/sheet/directives/sheet-top/sheet-top.directive.d.ts +1 -1
  18. package/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.d.ts +1 -1
  19. package/components/sheet/sheet.directive.d.ts +1 -1
  20. package/components/sheet-dialog/sheet-dialog.component.d.ts +1 -1
  21. package/components/sheet-dialog/sheet-dialog.directive.d.ts +1 -1
  22. package/components/sheet-dialog/sheet-dialog.options.d.ts +1 -1
  23. package/components/tab-bar/tab-bar-item.component.d.ts +1 -1
  24. package/components/tab-bar/tab-bar-item.directive.d.ts +1 -1
  25. package/components/tab-bar/tab-bar.component.d.ts +1 -1
  26. package/components/theme-android/theme-android.component.d.ts +1 -1
  27. package/components/theme-ios/theme-ios.component.d.ts +1 -1
  28. package/const/mobile-alert-options.d.ts +3 -3
  29. package/directives/elastic-sticky/elastic-sticky.directive.d.ts +1 -1
  30. package/directives/mobile-tabs/mobile-tabs.component.d.ts +1 -1
  31. package/directives/mobile-tabs/mobile-tabs.directive.d.ts +1 -1
  32. package/directives/ripple/ripple-styles.component.d.ts +1 -1
  33. package/directives/ripple/ripple.directive.d.ts +1 -1
  34. package/directives/sidebar/sidebar.component.d.ts +1 -1
  35. package/directives/sidebar/sidebar.directive.d.ts +1 -1
  36. package/directives/touchable/touchable.directive.d.ts +1 -1
  37. package/esm2020/components/app-bar/app-bar-back.component.mjs +11 -0
  38. package/esm2020/components/app-bar/app-bar.component.mjs +34 -0
  39. package/{esm2015/components/app-bar/app-bar.directive.js → esm2020/components/app-bar/app-bar.directive.mjs} +3 -3
  40. package/{esm2015/components/app-bar/app-bar.module.js → esm2020/components/app-bar/app-bar.module.mjs} +5 -5
  41. package/esm2020/components/mobile-calendar/mobile-calendar.component.mjs +302 -0
  42. package/{esm2015/components/mobile-calendar/mobile-calendar.module.js → esm2020/components/mobile-calendar/mobile-calendar.module.mjs} +14 -16
  43. package/esm2020/components/mobile-calendar-dialog/mobile-calendar-dialog.component.mjs +35 -0
  44. package/{esm2015/components/mobile-calendar-dialog/mobile-calendar-dialog.module.js → esm2020/components/mobile-calendar-dialog/mobile-calendar-dialog.module.mjs} +6 -6
  45. package/esm2020/components/mobile-dialog/mobile-dialog.component.mjs +32 -0
  46. package/{esm2015/components/mobile-dialog/mobile-dialog.module.js → esm2020/components/mobile-dialog/mobile-dialog.module.mjs} +5 -5
  47. package/esm2020/components/mobile-dialog/mobile-dialog.service.mjs +29 -0
  48. package/esm2020/components/pull-to-refresh/loader-android/loader-android.component.mjs +55 -0
  49. package/esm2020/components/pull-to-refresh/loader-ios/loader-ios.component.mjs +44 -0
  50. package/{esm2015/components/pull-to-refresh/pull-to-refresh.component.js → esm2020/components/pull-to-refresh/pull-to-refresh.component.mjs} +7 -13
  51. package/{esm2015/components/pull-to-refresh/pull-to-refresh.module.js → esm2020/components/pull-to-refresh/pull-to-refresh.module.mjs} +5 -5
  52. package/esm2020/components/pull-to-refresh/pull-to-refresh.service.mjs +54 -0
  53. package/esm2020/components/sheet/components/sheet/sheet.component.mjs +121 -0
  54. package/{esm2015/components/sheet/components/sheet-bar/sheet-bar.component.js → esm2020/components/sheet/components/sheet-bar/sheet-bar.component.mjs} +7 -12
  55. package/{esm2015/components/sheet/components/sheet-heading/sheet-heading.component.js → esm2020/components/sheet/components/sheet-heading/sheet-heading.component.mjs} +5 -10
  56. package/esm2020/components/sheet/components/sheets-host/sheets-host.component.mjs +61 -0
  57. package/{esm2015/components/sheet/directives/sheet-close/sheet-close.directive.js → esm2020/components/sheet/directives/sheet-close/sheet-close.directive.mjs} +5 -5
  58. package/{esm2015/components/sheet/directives/sheet-stop/sheet-stop.directive.js → esm2020/components/sheet/directives/sheet-stop/sheet-stop.directive.mjs} +3 -3
  59. package/{esm2015/components/sheet/directives/sheet-top/sheet-top.directive.js → esm2020/components/sheet/directives/sheet-top/sheet-top.directive.mjs} +4 -4
  60. package/{esm2015/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.js → esm2020/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.mjs} +6 -8
  61. package/esm2020/components/sheet/sheet-options.mjs +21 -0
  62. package/esm2020/components/sheet/sheet.directive.mjs +49 -0
  63. package/{esm2015/components/sheet/sheet.module.js → esm2020/components/sheet/sheet.module.mjs} +10 -12
  64. package/esm2020/components/sheet/sheet.service.mjs +56 -0
  65. package/esm2020/components/sheet-dialog/sheet-dialog.component.mjs +132 -0
  66. package/{esm2015/components/sheet-dialog/sheet-dialog.directive.js → esm2020/components/sheet-dialog/sheet-dialog.directive.mjs} +3 -3
  67. package/{esm2015/components/sheet-dialog/sheet-dialog.module.js → esm2020/components/sheet-dialog/sheet-dialog.module.mjs} +5 -5
  68. package/{esm2015/components/sheet-dialog/sheet-dialog.service.js → esm2020/components/sheet-dialog/sheet-dialog.service.mjs} +8 -5
  69. package/esm2020/components/tab-bar/tab-bar-item.component.mjs +29 -0
  70. package/{esm2015/components/tab-bar/tab-bar-item.directive.js → esm2020/components/tab-bar/tab-bar-item.directive.mjs} +3 -3
  71. package/esm2020/components/tab-bar/tab-bar.component.mjs +47 -0
  72. package/{esm2015/components/tab-bar/tab-bar.module.js → esm2020/components/tab-bar/tab-bar.module.mjs} +5 -5
  73. package/{esm2015/components/theme-android/theme-android.component.js → esm2020/components/theme-android/theme-android.component.mjs} +5 -11
  74. package/{esm2015/components/theme-android/theme-android.module.js → esm2020/components/theme-android/theme-android.module.mjs} +4 -4
  75. package/esm2020/components/theme-ios/theme-ios.component.mjs +12 -0
  76. package/{esm2015/components/theme-ios/theme-ios.module.js → esm2020/components/theme-ios/theme-ios.module.mjs} +4 -4
  77. package/esm2020/const/mobile-alert-options.mjs +13 -0
  78. package/{esm2015/directives/elastic-sticky/elastic-sticky.directive.js → esm2020/directives/elastic-sticky/elastic-sticky.directive.mjs} +3 -3
  79. package/{esm2015/directives/elastic-sticky/elastic-sticky.module.js → esm2020/directives/elastic-sticky/elastic-sticky.module.mjs} +4 -4
  80. package/{esm2015/directives/elastic-sticky/elastic-sticky.service.js → esm2020/directives/elastic-sticky/elastic-sticky.service.mjs} +3 -3
  81. package/esm2020/directives/mobile-tabs/mobile-tabs.component.mjs +13 -0
  82. package/{esm2015/directives/mobile-tabs/mobile-tabs.directive.js → esm2020/directives/mobile-tabs/mobile-tabs.directive.mjs} +3 -3
  83. package/{esm2015/directives/mobile-tabs/mobile-tabs.module.js → esm2020/directives/mobile-tabs/mobile-tabs.module.mjs} +4 -4
  84. package/{esm2015/directives/ripple/ripple-styles.component.js → esm2020/directives/ripple/ripple-styles.component.mjs} +6 -12
  85. package/{esm2015/directives/ripple/ripple.directive.js → esm2020/directives/ripple/ripple.directive.mjs} +3 -3
  86. package/{esm2015/directives/ripple/ripple.module.js → esm2020/directives/ripple/ripple.module.mjs} +4 -4
  87. package/esm2020/directives/sidebar/sidebar.component.mjs +58 -0
  88. package/esm2020/directives/sidebar/sidebar.directive.mjs +72 -0
  89. package/{esm2015/directives/sidebar/sidebar.module.js → esm2020/directives/sidebar/sidebar.module.mjs} +5 -5
  90. package/esm2020/directives/touchable/touchable.directive.mjs +83 -0
  91. package/{esm2015/directives/touchable/touchable.module.js → esm2020/directives/touchable/touchable.module.mjs} +4 -4
  92. package/esm2020/internal/primitive-calendar-mobile/primitive-calendar-mobile.component.mjs +34 -0
  93. package/{esm2015/internal/primitive-calendar-mobile/primitive-calendar-mobile.module.js → esm2020/internal/primitive-calendar-mobile/primitive-calendar-mobile.module.mjs} +8 -10
  94. package/fesm2015/taiga-ui-addon-mobile-components-app-bar.mjs +104 -0
  95. package/fesm2015/taiga-ui-addon-mobile-components-app-bar.mjs.map +1 -0
  96. package/fesm2015/{taiga-ui-addon-mobile-components-mobile-calendar-dialog.js → taiga-ui-addon-mobile-components-mobile-calendar-dialog.mjs} +16 -19
  97. package/fesm2015/taiga-ui-addon-mobile-components-mobile-calendar-dialog.mjs.map +1 -0
  98. package/fesm2015/taiga-ui-addon-mobile-components-mobile-calendar.mjs +540 -0
  99. package/fesm2015/taiga-ui-addon-mobile-components-mobile-calendar.mjs.map +1 -0
  100. package/fesm2015/taiga-ui-addon-mobile-components-mobile-dialog.mjs +91 -0
  101. package/fesm2015/taiga-ui-addon-mobile-components-mobile-dialog.mjs.map +1 -0
  102. package/fesm2015/taiga-ui-addon-mobile-components-pull-to-refresh.mjs +258 -0
  103. package/fesm2015/taiga-ui-addon-mobile-components-pull-to-refresh.mjs.map +1 -0
  104. package/fesm2015/taiga-ui-addon-mobile-components-sheet-dialog.mjs +215 -0
  105. package/fesm2015/taiga-ui-addon-mobile-components-sheet-dialog.mjs.map +1 -0
  106. package/fesm2015/taiga-ui-addon-mobile-components-sheet.mjs +688 -0
  107. package/fesm2015/taiga-ui-addon-mobile-components-sheet.mjs.map +1 -0
  108. package/fesm2015/taiga-ui-addon-mobile-components-tab-bar.mjs +137 -0
  109. package/fesm2015/taiga-ui-addon-mobile-components-tab-bar.mjs.map +1 -0
  110. package/fesm2015/{taiga-ui-addon-mobile-components-theme-android.js → taiga-ui-addon-mobile-components-theme-android.mjs} +9 -15
  111. package/fesm2015/taiga-ui-addon-mobile-components-theme-android.mjs.map +1 -0
  112. package/fesm2015/{taiga-ui-addon-mobile-components-theme-ios.js → taiga-ui-addon-mobile-components-theme-ios.mjs} +9 -15
  113. package/fesm2015/taiga-ui-addon-mobile-components-theme-ios.mjs.map +1 -0
  114. package/fesm2015/{taiga-ui-addon-mobile-components.js → taiga-ui-addon-mobile-components.mjs} +1 -1
  115. package/fesm2015/taiga-ui-addon-mobile-components.mjs.map +1 -0
  116. package/fesm2015/{taiga-ui-addon-mobile-const.js → taiga-ui-addon-mobile-const.mjs} +1 -1
  117. package/fesm2015/taiga-ui-addon-mobile-const.mjs.map +1 -0
  118. package/fesm2015/taiga-ui-addon-mobile-directives-elastic-sticky.mjs +86 -0
  119. package/fesm2015/taiga-ui-addon-mobile-directives-elastic-sticky.mjs.map +1 -0
  120. package/fesm2015/taiga-ui-addon-mobile-directives-mobile-tabs.mjs +87 -0
  121. package/fesm2015/taiga-ui-addon-mobile-directives-mobile-tabs.mjs.map +1 -0
  122. package/fesm2015/taiga-ui-addon-mobile-directives-ripple.mjs +137 -0
  123. package/fesm2015/taiga-ui-addon-mobile-directives-ripple.mjs.map +1 -0
  124. package/fesm2015/taiga-ui-addon-mobile-directives-sidebar.mjs +143 -0
  125. package/fesm2015/taiga-ui-addon-mobile-directives-sidebar.mjs.map +1 -0
  126. package/fesm2015/taiga-ui-addon-mobile-directives-touchable.mjs +105 -0
  127. package/fesm2015/taiga-ui-addon-mobile-directives-touchable.mjs.map +1 -0
  128. package/fesm2015/{taiga-ui-addon-mobile-directives.js → taiga-ui-addon-mobile-directives.mjs} +1 -1
  129. package/fesm2015/taiga-ui-addon-mobile-directives.mjs.map +1 -0
  130. package/fesm2015/taiga-ui-addon-mobile-interfaces.mjs +4 -0
  131. package/fesm2015/taiga-ui-addon-mobile-interfaces.mjs.map +1 -0
  132. package/fesm2015/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.mjs +72 -0
  133. package/fesm2015/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.mjs.map +1 -0
  134. package/fesm2015/{taiga-ui-addon-mobile-internal.js → taiga-ui-addon-mobile-internal.mjs} +1 -1
  135. package/fesm2015/taiga-ui-addon-mobile-internal.mjs.map +1 -0
  136. package/fesm2015/taiga-ui-addon-mobile-types.mjs +4 -0
  137. package/fesm2015/taiga-ui-addon-mobile-types.mjs.map +1 -0
  138. package/fesm2015/{taiga-ui-addon-mobile-utils.js → taiga-ui-addon-mobile-utils.mjs} +1 -1
  139. package/fesm2015/taiga-ui-addon-mobile-utils.mjs.map +1 -0
  140. package/fesm2015/{taiga-ui-addon-mobile.js → taiga-ui-addon-mobile.mjs} +1 -1
  141. package/fesm2015/taiga-ui-addon-mobile.mjs.map +1 -0
  142. package/{fesm2015/taiga-ui-addon-mobile-components-app-bar.js → fesm2020/taiga-ui-addon-mobile-components-app-bar.mjs} +18 -32
  143. package/fesm2020/taiga-ui-addon-mobile-components-app-bar.mjs.map +1 -0
  144. package/fesm2020/taiga-ui-addon-mobile-components-mobile-calendar-dialog.mjs +69 -0
  145. package/fesm2020/taiga-ui-addon-mobile-components-mobile-calendar-dialog.mjs.map +1 -0
  146. package/{fesm2015/taiga-ui-addon-mobile-components-mobile-calendar.js → fesm2020/taiga-ui-addon-mobile-components-mobile-calendar.mjs} +35 -49
  147. package/fesm2020/taiga-ui-addon-mobile-components-mobile-calendar.mjs.map +1 -0
  148. package/{fesm2015/taiga-ui-addon-mobile-components-mobile-dialog.js → fesm2020/taiga-ui-addon-mobile-components-mobile-dialog.mjs} +22 -25
  149. package/fesm2020/taiga-ui-addon-mobile-components-mobile-dialog.mjs.map +1 -0
  150. package/{fesm2015/taiga-ui-addon-mobile-components-pull-to-refresh.js → fesm2020/taiga-ui-addon-mobile-components-pull-to-refresh.mjs} +24 -40
  151. package/fesm2020/taiga-ui-addon-mobile-components-pull-to-refresh.mjs.map +1 -0
  152. package/{fesm2015/taiga-ui-addon-mobile-components-sheet-dialog.js → fesm2020/taiga-ui-addon-mobile-components-sheet-dialog.mjs} +25 -31
  153. package/fesm2020/taiga-ui-addon-mobile-components-sheet-dialog.mjs.map +1 -0
  154. package/{fesm2015/taiga-ui-addon-mobile-components-sheet.js → fesm2020/taiga-ui-addon-mobile-components-sheet.mjs} +85 -106
  155. package/fesm2020/taiga-ui-addon-mobile-components-sheet.mjs.map +1 -0
  156. package/{fesm2015/taiga-ui-addon-mobile-components-tab-bar.js → fesm2020/taiga-ui-addon-mobile-components-tab-bar.mjs} +18 -29
  157. package/fesm2020/taiga-ui-addon-mobile-components-tab-bar.mjs.map +1 -0
  158. package/fesm2020/taiga-ui-addon-mobile-components-theme-android.mjs +32 -0
  159. package/fesm2020/taiga-ui-addon-mobile-components-theme-android.mjs.map +1 -0
  160. package/fesm2020/taiga-ui-addon-mobile-components-theme-ios.mjs +32 -0
  161. package/fesm2020/taiga-ui-addon-mobile-components-theme-ios.mjs.map +1 -0
  162. package/fesm2020/taiga-ui-addon-mobile-components.mjs +15 -0
  163. package/fesm2020/taiga-ui-addon-mobile-components.mjs.map +1 -0
  164. package/fesm2020/taiga-ui-addon-mobile-const.mjs +19 -0
  165. package/fesm2020/taiga-ui-addon-mobile-const.mjs.map +1 -0
  166. package/{fesm2015/taiga-ui-addon-mobile-directives-elastic-sticky.js → fesm2020/taiga-ui-addon-mobile-directives-elastic-sticky.mjs} +11 -11
  167. package/fesm2020/taiga-ui-addon-mobile-directives-elastic-sticky.mjs.map +1 -0
  168. package/fesm2020/taiga-ui-addon-mobile-directives-mobile-tabs.mjs +85 -0
  169. package/fesm2020/taiga-ui-addon-mobile-directives-mobile-tabs.mjs.map +1 -0
  170. package/{fesm2015/taiga-ui-addon-mobile-directives-ripple.js → fesm2020/taiga-ui-addon-mobile-directives-ripple.mjs} +13 -19
  171. package/fesm2020/taiga-ui-addon-mobile-directives-ripple.mjs.map +1 -0
  172. package/{fesm2015/taiga-ui-addon-mobile-directives-sidebar.js → fesm2020/taiga-ui-addon-mobile-directives-sidebar.mjs} +28 -28
  173. package/fesm2020/taiga-ui-addon-mobile-directives-sidebar.mjs.map +1 -0
  174. package/{fesm2015/taiga-ui-addon-mobile-directives-touchable.js → fesm2020/taiga-ui-addon-mobile-directives-touchable.mjs} +9 -9
  175. package/fesm2020/taiga-ui-addon-mobile-directives-touchable.mjs.map +1 -0
  176. package/fesm2020/taiga-ui-addon-mobile-directives.mjs +10 -0
  177. package/fesm2020/taiga-ui-addon-mobile-directives.mjs.map +1 -0
  178. package/fesm2020/taiga-ui-addon-mobile-interfaces.mjs +4 -0
  179. package/fesm2020/taiga-ui-addon-mobile-interfaces.mjs.map +1 -0
  180. package/{fesm2015/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.js → fesm2020/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.mjs} +13 -21
  181. package/fesm2020/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.mjs.map +1 -0
  182. package/fesm2020/taiga-ui-addon-mobile-internal.mjs +6 -0
  183. package/fesm2020/taiga-ui-addon-mobile-internal.mjs.map +1 -0
  184. package/fesm2020/taiga-ui-addon-mobile-types.mjs +4 -0
  185. package/fesm2020/taiga-ui-addon-mobile-types.mjs.map +1 -0
  186. package/fesm2020/taiga-ui-addon-mobile-utils.mjs +16 -0
  187. package/fesm2020/taiga-ui-addon-mobile-utils.mjs.map +1 -0
  188. package/fesm2020/taiga-ui-addon-mobile.mjs +11 -0
  189. package/fesm2020/taiga-ui-addon-mobile.mjs.map +1 -0
  190. package/internal/primitive-calendar-mobile/primitive-calendar-mobile.component.d.ts +1 -1
  191. package/package.json +229 -32
  192. package/styles/android/checkbox.less +1 -2
  193. package/styles/android/radio.less +2 -2
  194. package/styles/common/badge.less +3 -3
  195. package/styles/ios/checkbox.less +2 -2
  196. package/types/touch-mode.d.ts +1 -1
  197. package/bundles/taiga-ui-addon-mobile-components-app-bar.umd.js +0 -149
  198. package/bundles/taiga-ui-addon-mobile-components-app-bar.umd.js.map +0 -1
  199. package/bundles/taiga-ui-addon-mobile-components-mobile-calendar-dialog.umd.js +0 -129
  200. package/bundles/taiga-ui-addon-mobile-components-mobile-calendar-dialog.umd.js.map +0 -1
  201. package/bundles/taiga-ui-addon-mobile-components-mobile-calendar.umd.js +0 -929
  202. package/bundles/taiga-ui-addon-mobile-components-mobile-calendar.umd.js.map +0 -1
  203. package/bundles/taiga-ui-addon-mobile-components-mobile-dialog.umd.js +0 -450
  204. package/bundles/taiga-ui-addon-mobile-components-mobile-dialog.umd.js.map +0 -1
  205. package/bundles/taiga-ui-addon-mobile-components-pull-to-refresh.umd.js +0 -677
  206. package/bundles/taiga-ui-addon-mobile-components-pull-to-refresh.umd.js.map +0 -1
  207. package/bundles/taiga-ui-addon-mobile-components-sheet-dialog.umd.js +0 -596
  208. package/bundles/taiga-ui-addon-mobile-components-sheet-dialog.umd.js.map +0 -1
  209. package/bundles/taiga-ui-addon-mobile-components-sheet.umd.js +0 -1153
  210. package/bundles/taiga-ui-addon-mobile-components-sheet.umd.js.map +0 -1
  211. package/bundles/taiga-ui-addon-mobile-components-tab-bar.umd.js +0 -188
  212. package/bundles/taiga-ui-addon-mobile-components-tab-bar.umd.js.map +0 -1
  213. package/bundles/taiga-ui-addon-mobile-components-theme-android.umd.js +0 -391
  214. package/bundles/taiga-ui-addon-mobile-components-theme-android.umd.js.map +0 -1
  215. package/bundles/taiga-ui-addon-mobile-components-theme-ios.umd.js +0 -391
  216. package/bundles/taiga-ui-addon-mobile-components-theme-ios.umd.js.map +0 -1
  217. package/bundles/taiga-ui-addon-mobile-components.umd.js +0 -75
  218. package/bundles/taiga-ui-addon-mobile-components.umd.js.map +0 -1
  219. package/bundles/taiga-ui-addon-mobile-const.umd.js +0 -24
  220. package/bundles/taiga-ui-addon-mobile-const.umd.js.map +0 -1
  221. package/bundles/taiga-ui-addon-mobile-directives-elastic-sticky.umd.js +0 -437
  222. package/bundles/taiga-ui-addon-mobile-directives-elastic-sticky.umd.js.map +0 -1
  223. package/bundles/taiga-ui-addon-mobile-directives-mobile-tabs.umd.js +0 -131
  224. package/bundles/taiga-ui-addon-mobile-directives-mobile-tabs.umd.js.map +0 -1
  225. package/bundles/taiga-ui-addon-mobile-directives-ripple.umd.js +0 -195
  226. package/bundles/taiga-ui-addon-mobile-directives-ripple.umd.js.map +0 -1
  227. package/bundles/taiga-ui-addon-mobile-directives-sidebar.umd.js +0 -524
  228. package/bundles/taiga-ui-addon-mobile-directives-sidebar.umd.js.map +0 -1
  229. package/bundles/taiga-ui-addon-mobile-directives-touchable.umd.js +0 -144
  230. package/bundles/taiga-ui-addon-mobile-directives-touchable.umd.js.map +0 -1
  231. package/bundles/taiga-ui-addon-mobile-directives.umd.js +0 -45
  232. package/bundles/taiga-ui-addon-mobile-directives.umd.js.map +0 -1
  233. package/bundles/taiga-ui-addon-mobile-interfaces.umd.js +0 -11
  234. package/bundles/taiga-ui-addon-mobile-interfaces.umd.js.map +0 -1
  235. package/bundles/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.umd.js +0 -429
  236. package/bundles/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.umd.js.map +0 -1
  237. package/bundles/taiga-ui-addon-mobile-internal.umd.js +0 -21
  238. package/bundles/taiga-ui-addon-mobile-internal.umd.js.map +0 -1
  239. package/bundles/taiga-ui-addon-mobile-types.umd.js +0 -11
  240. package/bundles/taiga-ui-addon-mobile-types.umd.js.map +0 -1
  241. package/bundles/taiga-ui-addon-mobile-utils.umd.js +0 -26
  242. package/bundles/taiga-ui-addon-mobile-utils.umd.js.map +0 -1
  243. package/bundles/taiga-ui-addon-mobile.umd.js +0 -51
  244. package/bundles/taiga-ui-addon-mobile.umd.js.map +0 -1
  245. package/components/app-bar/package.json +0 -10
  246. package/components/app-bar/taiga-ui-addon-mobile-components-app-bar.d.ts +0 -5
  247. package/components/mobile-calendar/package.json +0 -10
  248. package/components/mobile-calendar/taiga-ui-addon-mobile-components-mobile-calendar.d.ts +0 -5
  249. package/components/mobile-calendar-dialog/package.json +0 -10
  250. package/components/mobile-calendar-dialog/taiga-ui-addon-mobile-components-mobile-calendar-dialog.d.ts +0 -5
  251. package/components/mobile-dialog/package.json +0 -10
  252. package/components/mobile-dialog/taiga-ui-addon-mobile-components-mobile-dialog.d.ts +0 -5
  253. package/components/package.json +0 -10
  254. package/components/pull-to-refresh/package.json +0 -10
  255. package/components/pull-to-refresh/taiga-ui-addon-mobile-components-pull-to-refresh.d.ts +0 -5
  256. package/components/sheet/package.json +0 -10
  257. package/components/sheet/taiga-ui-addon-mobile-components-sheet.d.ts +0 -5
  258. package/components/sheet-dialog/package.json +0 -10
  259. package/components/sheet-dialog/taiga-ui-addon-mobile-components-sheet-dialog.d.ts +0 -5
  260. package/components/tab-bar/package.json +0 -10
  261. package/components/tab-bar/taiga-ui-addon-mobile-components-tab-bar.d.ts +0 -5
  262. package/components/taiga-ui-addon-mobile-components.d.ts +0 -5
  263. package/components/theme-android/package.json +0 -10
  264. package/components/theme-android/taiga-ui-addon-mobile-components-theme-android.d.ts +0 -5
  265. package/components/theme-ios/package.json +0 -10
  266. package/components/theme-ios/taiga-ui-addon-mobile-components-theme-ios.d.ts +0 -5
  267. package/const/package.json +0 -10
  268. package/const/taiga-ui-addon-mobile-const.d.ts +0 -5
  269. package/directives/elastic-sticky/package.json +0 -10
  270. package/directives/elastic-sticky/taiga-ui-addon-mobile-directives-elastic-sticky.d.ts +0 -5
  271. package/directives/mobile-tabs/package.json +0 -10
  272. package/directives/mobile-tabs/taiga-ui-addon-mobile-directives-mobile-tabs.d.ts +0 -5
  273. package/directives/package.json +0 -10
  274. package/directives/ripple/package.json +0 -10
  275. package/directives/ripple/taiga-ui-addon-mobile-directives-ripple.d.ts +0 -5
  276. package/directives/sidebar/package.json +0 -10
  277. package/directives/sidebar/taiga-ui-addon-mobile-directives-sidebar.d.ts +0 -5
  278. package/directives/taiga-ui-addon-mobile-directives.d.ts +0 -5
  279. package/directives/touchable/package.json +0 -10
  280. package/directives/touchable/taiga-ui-addon-mobile-directives-touchable.d.ts +0 -5
  281. package/esm2015/components/app-bar/app-bar-back.component.js +0 -16
  282. package/esm2015/components/app-bar/app-bar.component.js +0 -43
  283. package/esm2015/components/mobile-calendar/mobile-calendar.component.js +0 -314
  284. package/esm2015/components/mobile-calendar-dialog/mobile-calendar-dialog.component.js +0 -45
  285. package/esm2015/components/mobile-dialog/mobile-dialog.component.js +0 -38
  286. package/esm2015/components/mobile-dialog/mobile-dialog.service.js +0 -26
  287. package/esm2015/components/pull-to-refresh/loader-android/loader-android.component.js +0 -60
  288. package/esm2015/components/pull-to-refresh/loader-ios/loader-ios.component.js +0 -49
  289. package/esm2015/components/pull-to-refresh/pull-to-refresh.service.js +0 -54
  290. package/esm2015/components/sheet/components/sheet/sheet.component.js +0 -128
  291. package/esm2015/components/sheet/components/sheets-host/sheets-host.component.js +0 -68
  292. package/esm2015/components/sheet/sheet-options.js +0 -19
  293. package/esm2015/components/sheet/sheet.directive.js +0 -49
  294. package/esm2015/components/sheet/sheet.service.js +0 -51
  295. package/esm2015/components/sheet-dialog/sheet-dialog.component.js +0 -141
  296. package/esm2015/components/tab-bar/tab-bar-item.component.js +0 -35
  297. package/esm2015/components/tab-bar/tab-bar.component.js +0 -52
  298. package/esm2015/components/theme-ios/theme-ios.component.js +0 -18
  299. package/esm2015/const/mobile-alert-options.js +0 -7
  300. package/esm2015/directives/mobile-tabs/mobile-tabs.component.js +0 -19
  301. package/esm2015/directives/sidebar/sidebar.component.js +0 -58
  302. package/esm2015/directives/sidebar/sidebar.directive.js +0 -72
  303. package/esm2015/directives/touchable/touchable.directive.js +0 -83
  304. package/esm2015/internal/primitive-calendar-mobile/primitive-calendar-mobile.component.js +0 -40
  305. package/fesm2015/taiga-ui-addon-mobile-components-app-bar.js.map +0 -1
  306. package/fesm2015/taiga-ui-addon-mobile-components-mobile-calendar-dialog.js.map +0 -1
  307. package/fesm2015/taiga-ui-addon-mobile-components-mobile-calendar.js.map +0 -1
  308. package/fesm2015/taiga-ui-addon-mobile-components-mobile-dialog.js.map +0 -1
  309. package/fesm2015/taiga-ui-addon-mobile-components-pull-to-refresh.js.map +0 -1
  310. package/fesm2015/taiga-ui-addon-mobile-components-sheet-dialog.js.map +0 -1
  311. package/fesm2015/taiga-ui-addon-mobile-components-sheet.js.map +0 -1
  312. package/fesm2015/taiga-ui-addon-mobile-components-tab-bar.js.map +0 -1
  313. package/fesm2015/taiga-ui-addon-mobile-components-theme-android.js.map +0 -1
  314. package/fesm2015/taiga-ui-addon-mobile-components-theme-ios.js.map +0 -1
  315. package/fesm2015/taiga-ui-addon-mobile-components.js.map +0 -1
  316. package/fesm2015/taiga-ui-addon-mobile-const.js.map +0 -1
  317. package/fesm2015/taiga-ui-addon-mobile-directives-elastic-sticky.js.map +0 -1
  318. package/fesm2015/taiga-ui-addon-mobile-directives-mobile-tabs.js +0 -91
  319. package/fesm2015/taiga-ui-addon-mobile-directives-mobile-tabs.js.map +0 -1
  320. package/fesm2015/taiga-ui-addon-mobile-directives-ripple.js.map +0 -1
  321. package/fesm2015/taiga-ui-addon-mobile-directives-sidebar.js.map +0 -1
  322. package/fesm2015/taiga-ui-addon-mobile-directives-touchable.js.map +0 -1
  323. package/fesm2015/taiga-ui-addon-mobile-directives.js.map +0 -1
  324. package/fesm2015/taiga-ui-addon-mobile-interfaces.js +0 -4
  325. package/fesm2015/taiga-ui-addon-mobile-interfaces.js.map +0 -1
  326. package/fesm2015/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.js.map +0 -1
  327. package/fesm2015/taiga-ui-addon-mobile-internal.js.map +0 -1
  328. package/fesm2015/taiga-ui-addon-mobile-types.js +0 -4
  329. package/fesm2015/taiga-ui-addon-mobile-types.js.map +0 -1
  330. package/fesm2015/taiga-ui-addon-mobile-utils.js.map +0 -1
  331. package/fesm2015/taiga-ui-addon-mobile.js.map +0 -1
  332. package/interfaces/package.json +0 -10
  333. package/interfaces/taiga-ui-addon-mobile-interfaces.d.ts +0 -5
  334. package/internal/package.json +0 -10
  335. package/internal/primitive-calendar-mobile/package.json +0 -10
  336. package/internal/primitive-calendar-mobile/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.d.ts +0 -5
  337. package/internal/taiga-ui-addon-mobile-internal.d.ts +0 -5
  338. package/taiga-ui-addon-mobile.d.ts +0 -5
  339. package/types/package.json +0 -10
  340. package/types/taiga-ui-addon-mobile-types.d.ts +0 -5
  341. package/utils/package.json +0 -10
  342. package/utils/taiga-ui-addon-mobile-utils.d.ts +0 -5
  343. /package/{esm2015/components/app-bar/app-bar.providers.js → esm2020/components/app-bar/app-bar.providers.mjs} +0 -0
  344. /package/{esm2015/components/app-bar/index.js → esm2020/components/app-bar/index.mjs} +0 -0
  345. /package/{esm2015/components/app-bar/taiga-ui-addon-mobile-components-app-bar.js → esm2020/components/app-bar/taiga-ui-addon-mobile-components-app-bar.mjs} +0 -0
  346. /package/{esm2015/components/index.js → esm2020/components/index.mjs} +0 -0
  347. /package/{esm2015/components/mobile-calendar/index.js → esm2020/components/mobile-calendar/index.mjs} +0 -0
  348. /package/{esm2015/components/mobile-calendar/mobile-calendar.const.js → esm2020/components/mobile-calendar/mobile-calendar.const.mjs} +0 -0
  349. /package/{esm2015/components/mobile-calendar/mobile-calendar.providers.js → esm2020/components/mobile-calendar/mobile-calendar.providers.mjs} +0 -0
  350. /package/{esm2015/components/mobile-calendar/mobile-calendar.strategy.js → esm2020/components/mobile-calendar/mobile-calendar.strategy.mjs} +0 -0
  351. /package/{esm2015/components/mobile-calendar/taiga-ui-addon-mobile-components-mobile-calendar.js → esm2020/components/mobile-calendar/taiga-ui-addon-mobile-components-mobile-calendar.mjs} +0 -0
  352. /package/{esm2015/components/mobile-calendar-dialog/index.js → esm2020/components/mobile-calendar-dialog/index.mjs} +0 -0
  353. /package/{esm2015/components/mobile-calendar-dialog/taiga-ui-addon-mobile-components-mobile-calendar-dialog.js → esm2020/components/mobile-calendar-dialog/taiga-ui-addon-mobile-components-mobile-calendar-dialog.mjs} +0 -0
  354. /package/{esm2015/components/mobile-dialog/index.js → esm2020/components/mobile-dialog/index.mjs} +0 -0
  355. /package/{esm2015/components/mobile-dialog/mobile-dialog-options.js → esm2020/components/mobile-dialog/mobile-dialog-options.mjs} +0 -0
  356. /package/{esm2015/components/mobile-dialog/mobile-dialog.options.js → esm2020/components/mobile-dialog/mobile-dialog.options.mjs} +0 -0
  357. /package/{esm2015/components/mobile-dialog/taiga-ui-addon-mobile-components-mobile-dialog.js → esm2020/components/mobile-dialog/taiga-ui-addon-mobile-components-mobile-dialog.mjs} +0 -0
  358. /package/{esm2015/components/pull-to-refresh/index.js → esm2020/components/pull-to-refresh/index.mjs} +0 -0
  359. /package/{esm2015/components/pull-to-refresh/pull-to-refresh.providers.js → esm2020/components/pull-to-refresh/pull-to-refresh.providers.mjs} +0 -0
  360. /package/{esm2015/components/pull-to-refresh/taiga-ui-addon-mobile-components-pull-to-refresh.js → esm2020/components/pull-to-refresh/taiga-ui-addon-mobile-components-pull-to-refresh.mjs} +0 -0
  361. /package/{esm2015/components/sheet/components/sheet/sheet.providers.js → esm2020/components/sheet/components/sheet/sheet.providers.mjs} +0 -0
  362. /package/{esm2015/components/sheet/index.js → esm2020/components/sheet/index.mjs} +0 -0
  363. /package/{esm2015/components/sheet/ios.hacks.js → esm2020/components/sheet/ios.hacks.mjs} +0 -0
  364. /package/{esm2015/components/sheet/sheet-tokens.js → esm2020/components/sheet/sheet-tokens.mjs} +0 -0
  365. /package/{esm2015/components/sheet/sheet.js → esm2020/components/sheet/sheet.mjs} +0 -0
  366. /package/{esm2015/components/sheet/taiga-ui-addon-mobile-components-sheet.js → esm2020/components/sheet/taiga-ui-addon-mobile-components-sheet.mjs} +0 -0
  367. /package/{esm2015/components/sheet-dialog/index.js → esm2020/components/sheet-dialog/index.mjs} +0 -0
  368. /package/{esm2015/components/sheet-dialog/sheet-dialog.options.js → esm2020/components/sheet-dialog/sheet-dialog.options.mjs} +0 -0
  369. /package/{esm2015/components/sheet-dialog/taiga-ui-addon-mobile-components-sheet-dialog.js → esm2020/components/sheet-dialog/taiga-ui-addon-mobile-components-sheet-dialog.mjs} +0 -0
  370. /package/{esm2015/components/tab-bar/index.js → esm2020/components/tab-bar/index.mjs} +0 -0
  371. /package/{esm2015/components/tab-bar/taiga-ui-addon-mobile-components-tab-bar.js → esm2020/components/tab-bar/taiga-ui-addon-mobile-components-tab-bar.mjs} +0 -0
  372. /package/{esm2015/components/taiga-ui-addon-mobile-components.js → esm2020/components/taiga-ui-addon-mobile-components.mjs} +0 -0
  373. /package/{esm2015/components/theme-android/index.js → esm2020/components/theme-android/index.mjs} +0 -0
  374. /package/{esm2015/components/theme-android/taiga-ui-addon-mobile-components-theme-android.js → esm2020/components/theme-android/taiga-ui-addon-mobile-components-theme-android.mjs} +0 -0
  375. /package/{esm2015/components/theme-ios/index.js → esm2020/components/theme-ios/index.mjs} +0 -0
  376. /package/{esm2015/components/theme-ios/taiga-ui-addon-mobile-components-theme-ios.js → esm2020/components/theme-ios/taiga-ui-addon-mobile-components-theme-ios.mjs} +0 -0
  377. /package/{esm2015/const/index.js → esm2020/const/index.mjs} +0 -0
  378. /package/{esm2015/const/taiga-ui-addon-mobile-const.js → esm2020/const/taiga-ui-addon-mobile-const.mjs} +0 -0
  379. /package/{esm2015/directives/elastic-sticky/index.js → esm2020/directives/elastic-sticky/index.mjs} +0 -0
  380. /package/{esm2015/directives/elastic-sticky/taiga-ui-addon-mobile-directives-elastic-sticky.js → esm2020/directives/elastic-sticky/taiga-ui-addon-mobile-directives-elastic-sticky.mjs} +0 -0
  381. /package/{esm2015/directives/index.js → esm2020/directives/index.mjs} +0 -0
  382. /package/{esm2015/directives/mobile-tabs/index.js → esm2020/directives/mobile-tabs/index.mjs} +0 -0
  383. /package/{esm2015/directives/mobile-tabs/taiga-ui-addon-mobile-directives-mobile-tabs.js → esm2020/directives/mobile-tabs/taiga-ui-addon-mobile-directives-mobile-tabs.mjs} +0 -0
  384. /package/{esm2015/directives/ripple/index.js → esm2020/directives/ripple/index.mjs} +0 -0
  385. /package/{esm2015/directives/ripple/ripple.providers.js → esm2020/directives/ripple/ripple.providers.mjs} +0 -0
  386. /package/{esm2015/directives/ripple/taiga-ui-addon-mobile-directives-ripple.js → esm2020/directives/ripple/taiga-ui-addon-mobile-directives-ripple.mjs} +0 -0
  387. /package/{esm2015/directives/sidebar/index.js → esm2020/directives/sidebar/index.mjs} +0 -0
  388. /package/{esm2015/directives/sidebar/taiga-ui-addon-mobile-directives-sidebar.js → esm2020/directives/sidebar/taiga-ui-addon-mobile-directives-sidebar.mjs} +0 -0
  389. /package/{esm2015/directives/taiga-ui-addon-mobile-directives.js → esm2020/directives/taiga-ui-addon-mobile-directives.mjs} +0 -0
  390. /package/{esm2015/directives/touchable/index.js → esm2020/directives/touchable/index.mjs} +0 -0
  391. /package/{esm2015/directives/touchable/taiga-ui-addon-mobile-directives-touchable.js → esm2020/directives/touchable/taiga-ui-addon-mobile-directives-touchable.mjs} +0 -0
  392. /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  393. /package/{esm2015/interfaces/index.js → esm2020/interfaces/index.mjs} +0 -0
  394. /package/{esm2015/interfaces/mobile-alert-data.js → esm2020/interfaces/mobile-alert-data.mjs} +0 -0
  395. /package/{esm2015/interfaces/taiga-ui-addon-mobile-interfaces.js → esm2020/interfaces/taiga-ui-addon-mobile-interfaces.mjs} +0 -0
  396. /package/{esm2015/internal/index.js → esm2020/internal/index.mjs} +0 -0
  397. /package/{esm2015/internal/primitive-calendar-mobile/index.js → esm2020/internal/primitive-calendar-mobile/index.mjs} +0 -0
  398. /package/{esm2015/internal/primitive-calendar-mobile/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.js → esm2020/internal/primitive-calendar-mobile/taiga-ui-addon-mobile-internal-primitive-calendar-mobile.mjs} +0 -0
  399. /package/{esm2015/internal/taiga-ui-addon-mobile-internal.js → esm2020/internal/taiga-ui-addon-mobile-internal.mjs} +0 -0
  400. /package/{esm2015/taiga-ui-addon-mobile.js → esm2020/taiga-ui-addon-mobile.mjs} +0 -0
  401. /package/{esm2015/types/index.js → esm2020/types/index.mjs} +0 -0
  402. /package/{esm2015/types/taiga-ui-addon-mobile-types.js → esm2020/types/taiga-ui-addon-mobile-types.mjs} +0 -0
  403. /package/{esm2015/types/touch-mode.js → esm2020/types/touch-mode.mjs} +0 -0
  404. /package/{esm2015/utils/find-touch-index.js → esm2020/utils/find-touch-index.mjs} +0 -0
  405. /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  406. /package/{esm2015/utils/taiga-ui-addon-mobile-utils.js → esm2020/utils/taiga-ui-addon-mobile-utils.mjs} +0 -0
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class TuiAppBarBackComponent {
3
3
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarBackComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarBackComponent, "button[tuiAppBarBack], a[tuiAppBarBack]", never, {}, {}, never, ["*"]>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarBackComponent, "button[tuiAppBarBack], a[tuiAppBarBack]", never, {}, {}, never, ["*"], false, never>;
5
5
  }
@@ -7,5 +7,5 @@ export declare class TuiAppBarComponent {
7
7
  readonly width$: Observable<number>;
8
8
  constructor(resize$: Observable<unknown>, mutation$: Observable<unknown>);
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarComponent, "tui-app-bar", never, {}, {}, never, ["[tuiSlot='left']", "*", "[tuiSlot='right']"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarComponent, "tui-app-bar", never, {}, {}, never, ["[tuiSlot='left']", "*", "[tuiSlot='right']"], false, never>;
11
11
  }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class TuiAppBarDirective {
3
3
  tuiSlot: string | 'left' | 'right';
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiAppBarDirective, "[tuiSlot]", never, { "tuiSlot": "tuiSlot"; }, {}, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiAppBarDirective, "[tuiSlot]", never, { "tuiSlot": "tuiSlot"; }, {}, never, never, false, never>;
6
6
  }
@@ -61,5 +61,5 @@ export declare class TuiMobileCalendarComponent implements AfterViewInit {
61
61
  private monthToYear;
62
62
  private getMonthOffset;
63
63
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileCalendarComponent, [null, null, null, { self: true; }, null, null, null, null, null, null, null, null, null]>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileCalendarComponent, "tui-mobile-calendar", never, { "single": "single"; "multi": "multi"; "min": "min"; "max": "max"; "disabledItemHandler": "disabledItemHandler"; }, { "cancel": "cancel"; "confirm": "confirm"; }, never, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileCalendarComponent, "tui-mobile-calendar", never, { "single": "single"; "multi": "multi"; "min": "min"; "max": "max"; "disabledItemHandler": "disabledItemHandler"; }, { "cancel": "cancel"; "confirm": "confirm"; }, never, never, false, never>;
65
65
  }
@@ -11,5 +11,5 @@ export declare class TuiMobileCalendarDialogComponent {
11
11
  get max(): TuiDay;
12
12
  get disabledItemHandler(): TuiBooleanHandler<TuiDay>;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileCalendarDialogComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileCalendarDialogComponent, "tui-mobile-calendar-dialog", never, {}, {}, never, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileCalendarDialogComponent, "tui-mobile-calendar-dialog", never, {}, {}, never, never, false, never>;
15
15
  }
@@ -7,5 +7,5 @@ export declare class TuiMobileDialogComponent<I> {
7
7
  constructor(isIOS: boolean, context: TuiDialog<TuiMobileDialogOptions<I>, number>);
8
8
  onAction(index: number): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileDialogComponent<any>, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileDialogComponent<any>, "tui-mobile-dialog", never, {}, {}, never, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileDialogComponent<any>, "tui-mobile-dialog", never, {}, {}, never, never, false, never>;
11
11
  }
@@ -1,6 +1,6 @@
1
1
  import { Provider } from '@angular/core';
2
2
  import { TuiMobileDialogOptions } from './mobile-dialog-options';
3
- declare type TuiMobileDialogDefaultOptions = Omit<TuiMobileDialogOptions<unknown>, 'data'>;
3
+ type TuiMobileDialogDefaultOptions = Omit<TuiMobileDialogOptions<unknown>, 'data'>;
4
4
  export declare const TUI_MOBILE_DIALOG_DEFAULT_OPTIONS: TuiMobileDialogDefaultOptions;
5
5
  /**
6
6
  * Default parameters for mobile dialog component
@@ -11,6 +11,6 @@ export declare class TuiMobileLoaderAndroidComponent {
11
11
  get dropped(): boolean;
12
12
  get hostTransform(): string;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileLoaderAndroidComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileLoaderAndroidComponent, "tui-mobile-android-loader", never, {}, {}, never, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileLoaderAndroidComponent, "tui-mobile-android-loader", never, {}, {}, never, never, false, never>;
15
15
  }
16
16
  export declare const TUI_ANDROID_LOADER: PolymorpheusComponent<TuiMobileLoaderAndroidComponent, any>;
@@ -12,6 +12,6 @@ export declare class TuiMobileLoaderIOSComponent {
12
12
  calculateTransform(index: number): string;
13
13
  calculateAnimationBegin(index: number): string;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileLoaderIOSComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileLoaderIOSComponent, "tui-mobile-ios-loader", never, {}, {}, never, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileLoaderIOSComponent, "tui-mobile-ios-loader", never, {}, {}, never, never, false, never>;
16
16
  }
17
17
  export declare const TUI_IOS_LOADER: PolymorpheusComponent<TuiMobileLoaderIOSComponent, any>;
@@ -13,5 +13,5 @@ export declare class TuiPullToRefreshComponent {
13
13
  readonly dropped$: Observable<boolean>;
14
14
  constructor(zone: NgZone, destroy$: Observable<unknown>, { nativeElement }: ElementRef<HTMLElement>, isIOS: boolean, threshold: number, component: PolymorpheusContent<TuiContextWithImplicit<number>>, pulling$: Observable<number>);
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiPullToRefreshComponent, [null, { self: true; }, null, null, null, null, null]>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiPullToRefreshComponent, "tui-pull-to-refresh", never, { "styleHandler": "styleHandler"; }, { "pulled": "pulled"; }, never, ["*"]>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiPullToRefreshComponent, "tui-pull-to-refresh", never, { "styleHandler": "styleHandler"; }, { "pulled": "pulled"; }, never, ["*"], false, never>;
17
17
  }
@@ -27,5 +27,5 @@ export declare class TuiSheetComponent<T> implements TuiSheetRequiredProps<T>, A
27
27
  private get sheetTop();
28
28
  private getStops;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetComponent<any>, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetComponent<any>, "tui-sheet", never, { "item": "item"; }, {}, never, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetComponent<any>, "tui-sheet", never, { "item": "item"; }, {}, never, never, false, never>;
31
31
  }
@@ -10,5 +10,5 @@ export declare class TuiSheetBarComponent {
10
10
  constructor(sheet: TuiSheetRequiredProps, scroll$: Observable<number>, zone: NgZone);
11
11
  private get stop();
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetBarComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetBarComponent, "tui-sheet-bar", never, {}, {}, never, ["*"]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetBarComponent, "tui-sheet-bar", never, {}, {}, never, ["*"], false, never>;
14
14
  }
@@ -15,5 +15,5 @@ export declare class TuiSheetHeadingComponent implements AfterViewInit {
15
15
  ngAfterViewInit(): void;
16
16
  onClick(): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetHeadingComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetHeadingComponent, "[tuiSheetHeading]", never, {}, {}, never, ["*"]>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetHeadingComponent, "[tuiSheetHeading]", never, {}, {}, never, ["*"], false, never>;
19
19
  }
@@ -15,5 +15,5 @@ export declare class TuiSheetsHostComponent implements OnInit {
15
15
  ngOnInit(): void;
16
16
  close({ closeable, $implicit }: TuiSheet<unknown>): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetsHostComponent, [null, null, null, { self: true; }, null]>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetsHostComponent, "tui-sheets-host", never, {}, {}, never, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetsHostComponent, "tui-sheets-host", never, {}, {}, never, never, false, never>;
19
19
  }
@@ -13,5 +13,5 @@ export declare class TuiSheetCloseDirective {
13
13
  constructor(zone: NgZone, dragged$: Observable<boolean>, scroll$: Observable<number>, win: Window, el: ElementRef<HTMLElement>, sheet: TuiSheetComponent<unknown>);
14
14
  private shouldClose;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetCloseDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetCloseDirective, "tui-sheet[close]", never, {}, { "close": "close"; }, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetCloseDirective, "tui-sheet[close]", never, {}, { "close": "close"; }, never, never, false, never>;
17
17
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class TuiSheetStopDirective {
5
5
  constructor(el: ElementRef<HTMLElement>, destroy$: Observable<unknown>, dragged$: Observable<boolean>, scroll$: Observable<number>, { nativeElement }: ElementRef<HTMLElement>);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetStopDirective, [null, { self: true; }, null, null, null]>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetStopDirective, "[tuiSheetStop]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetStopDirective, "[tuiSheetStop]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -12,5 +12,5 @@ export declare class TuiSheetTopDirective {
12
12
  constructor(scroll$: Observable<number>, component: TuiSheetRequiredProps, win: Window);
13
13
  private getY;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetTopDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetTopDirective, "[tuiSheetTop]", never, { "stop": "tuiSheetTop"; }, {}, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetTopDirective, "[tuiSheetTop]", never, { "stop": "tuiSheetTop"; }, {}, never, never, false, never>;
16
16
  }
@@ -15,5 +15,5 @@ export declare class TuiSheetWrapperDirective {
15
15
  private getHeight;
16
16
  private withImage;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetWrapperDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetWrapperDirective, "[tuiSheetWrapper]", ["tuiSheetWrapper"], { "tuiSheetWrapper": "tuiSheetWrapper"; }, {}, ["sheet", "dragged$", "scroll$"]>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetWrapperDirective, "[tuiSheetWrapper]", ["tuiSheetWrapper"], { "tuiSheetWrapper": "tuiSheetWrapper"; }, {}, ["sheet", "dragged$", "scroll$"], never, false, never>;
19
19
  }
@@ -16,5 +16,5 @@ export declare class TuiSheetDirective extends PolymorpheusTemplate<TuiSheet<nev
16
16
  readonly tuiSheetChange: import("rxjs").Observable<boolean>;
17
17
  constructor(cdr: ChangeDetectorRef, templateRef: TemplateRef<TuiSheet<never>>, service: TuiSheetService);
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetDirective, never>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetDirective, "ng-template[tuiSheet]", never, { "options": "tuiSheetOptions"; "tuiSheet": "tuiSheet"; }, { "tuiSheetChange": "tuiSheetChange"; }, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetDirective, "ng-template[tuiSheet]", never, { "options": "tuiSheetOptions"; "tuiSheet": "tuiSheet"; }, { "tuiSheetChange": "tuiSheetChange"; }, never, never, false, never>;
20
20
  }
@@ -31,5 +31,5 @@ export declare class TuiSheetDialogComponent<I> implements AfterViewInit {
31
31
  private get sheetTop();
32
32
  private getStops;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetDialogComponent<any>, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetDialogComponent<any>, "tui-sheet-dialog", never, {}, {}, never, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetDialogComponent<any>, "tui-sheet-dialog", never, {}, {}, never, never, false, never>;
35
35
  }
@@ -3,5 +3,5 @@ import { TuiSheetDialogOptions } from './sheet-dialog.options';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TuiSheetDialogDirective extends AbstractTuiDialogDirective<TuiSheetDialogOptions> {
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetDialogDirective, never>;
6
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetDialogDirective, "ng-template[tuiSheetDialog]", never, { "options": "tuiSheetDialogOptions"; "open": "tuiSheetDialog"; }, { "openChange": "tuiSheetDialogChange"; }, never>;
6
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetDialogDirective, "ng-template[tuiSheetDialog]", never, { "options": "tuiSheetDialogOptions"; "open": "tuiSheetDialog"; }, { "openChange": "tuiSheetDialogChange"; }, never, never, false, never>;
7
7
  }
@@ -1,6 +1,6 @@
1
1
  import { Provider } from '@angular/core';
2
2
  import { PolymorpheusContent } from '@tinkoff/ng-polymorpheus';
3
- declare type TuiSheetDialogDefaultOptions = Omit<TuiSheetDialogOptions<unknown>, 'data'>;
3
+ type TuiSheetDialogDefaultOptions = Omit<TuiSheetDialogOptions<unknown>, 'data'>;
4
4
  export interface TuiSheetDialogOptions<I = never> {
5
5
  readonly closeable: boolean;
6
6
  readonly data: I;
@@ -7,5 +7,5 @@ export declare class TuiTabBarItemComponent {
7
7
  constructor(animation: AnimationOptions);
8
8
  format(value: number): string;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiTabBarItemComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiTabBarItemComponent, "button[tuiTabBarItem], a[tuiTabBarItem]", never, { "icon": "icon"; "badge": "badge"; }, {}, never, ["*"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiTabBarItemComponent, "button[tuiTabBarItem], a[tuiTabBarItem]", never, { "icon": "icon"; "badge": "badge"; }, {}, never, ["*"], false, never>;
11
11
  }
@@ -5,5 +5,5 @@ import * as i0 from "@angular/core";
5
5
  export declare class TuiTabBarItemDirective {
6
6
  constructor(destroy$: Observable<unknown>, active$: Observable<boolean>, tabs: TuiTabBarComponent, { nativeElement }: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiTabBarItemDirective, [{ self: true; }, null, null, null, null]>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiTabBarItemDirective, "[tuiTabBarItem][routerLinkActive]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiTabBarItemDirective, "[tuiTabBarItem][routerLinkActive]", never, {}, {}, never, never, false, never>;
9
9
  }
@@ -9,5 +9,5 @@ export declare class TuiTabBarComponent {
9
9
  get style(): string;
10
10
  private updateIndex;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiTabBarComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiTabBarComponent, "nav[tuiTabBar]", never, { "quantity": "quantity"; "activeItemIndex": "activeItemIndex"; }, { "activeItemIndexChange": "activeItemIndexChange"; }, ["tabs"], ["*"]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiTabBarComponent, "nav[tuiTabBar]", never, { "quantity": "quantity"; "activeItemIndex": "activeItemIndex"; }, { "activeItemIndexChange": "activeItemIndexChange"; }, ["tabs"], ["*"], false, never>;
13
13
  }
@@ -2,5 +2,5 @@ import { AbstractTuiThemeSwitcher } from '@taiga-ui/cdk';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TuiThemeAndroidComponent extends AbstractTuiThemeSwitcher {
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiThemeAndroidComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiThemeAndroidComponent, "tui-theme-android", never, {}, {}, never, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiThemeAndroidComponent, "tui-theme-android", never, {}, {}, never, never, false, never>;
6
6
  }
@@ -2,5 +2,5 @@ import { AbstractTuiThemeSwitcher } from '@taiga-ui/cdk';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TuiThemeIosComponent extends AbstractTuiThemeSwitcher {
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiThemeIosComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiThemeIosComponent, "tui-theme-ios", never, {}, {}, never, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiThemeIosComponent, "tui-theme-ios", never, {}, {}, never, never, false, never>;
6
6
  }
@@ -1,6 +1,6 @@
1
1
  import { TuiDialogOptions } from '@taiga-ui/core';
2
- export declare type TuiMobileAlertOptions = Omit<TuiDialogOptions<unknown>, 'data' | 'dismissible' | 'header' | 'label' | 'required'>;
3
- export declare type TuiIosAlertOptions = Omit<TuiDialogOptions<unknown>, 'data' | 'header' | 'label' | 'required'>;
2
+ export type TuiMobileAlertOptions = Omit<TuiDialogOptions<unknown>, 'data' | 'dismissible' | 'header' | 'label' | 'required'>;
3
+ export type TuiIosAlertOptions = Omit<TuiDialogOptions<unknown>, 'data' | 'header' | 'label' | 'required'>;
4
4
  export declare const TUI_IOS_ALERT_OPTIONS: TuiIosAlertOptions;
5
- export declare type TuiAndroidAlertOptions = TuiIosAlertOptions;
5
+ export type TuiAndroidAlertOptions = TuiIosAlertOptions;
6
6
  export declare const TUI_ANDROID_ALERT_OPTIONS: TuiAndroidAlertOptions;
@@ -5,5 +5,5 @@ export declare class TuiElasticStickyDirective {
5
5
  readonly tuiElasticSticky: Observable<number>;
6
6
  constructor(elasticStickyService: TuiElasticStickyService);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiElasticStickyDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiElasticStickyDirective, "[tuiElasticSticky]", ["tuiElasticSticky"], {}, { "tuiElasticSticky": "tuiElasticSticky"; }, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiElasticStickyDirective, "[tuiElasticSticky]", ["tuiElasticSticky"], {}, { "tuiElasticSticky": "tuiElasticSticky"; }, never, never, false, never>;
9
9
  }
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class TuiMobileTabsComponent {
3
3
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileTabsComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileTabsComponent, "ng-component", never, {}, {}, never, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiMobileTabsComponent, "ng-component", never, {}, {}, never, never, false, never>;
5
5
  }
@@ -6,5 +6,5 @@ export declare class TuiMobileTabsDirective {
6
6
  constructor(isIos: boolean, isAndroid: boolean, directiveStyles: TuiDirectiveStylesService);
7
7
  get platform(): TuiPlatform | null;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiMobileTabsDirective, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiMobileTabsDirective, "[tuiMobileTabs]", never, {}, {}, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiMobileTabsDirective, "[tuiMobileTabs]", never, {}, {}, never, never, false, never>;
10
10
  }
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class TuiRippleStylesComponent {
3
3
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiRippleStylesComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiRippleStylesComponent, "ng-component", never, {}, {}, never, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiRippleStylesComponent, "ng-component", never, {}, {}, never, never, false, never>;
5
5
  }
@@ -6,5 +6,5 @@ export declare class TuiRippleDirective {
6
6
  tuiRipple?: string | '';
7
7
  constructor({ nativeElement }: ElementRef<HTMLElement>, directiveStyles: TuiDirectiveStylesService, renderer: Renderer2, destroy$: TuiDestroyService, start$: Observable<HTMLElement>, end$: Observable<EventTarget>);
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiRippleDirective, [null, null, null, { self: true; }, null, null]>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiRippleDirective, "[tuiRipple]", never, { "tuiRipple": "tuiRipple"; }, {}, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiRippleDirective, "[tuiRipple]", never, { "tuiRipple": "tuiRipple"; }, {}, never, never, false, never>;
10
10
  }
@@ -17,5 +17,5 @@ export declare class TuiSidebarComponent implements DoCheck {
17
17
  get autoWidth(): boolean;
18
18
  ngDoCheck(): void;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSidebarComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<TuiSidebarComponent, "aside[tuiSidebar]", never, {}, {}, never, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<TuiSidebarComponent, "aside[tuiSidebar]", never, {}, {}, never, never, false, never>;
21
21
  }
@@ -17,5 +17,5 @@ export declare class TuiSidebarDirective<T = Record<string, unknown>> extends Po
17
17
  private show;
18
18
  private hide;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiSidebarDirective<any>, never>;
20
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSidebarDirective<any>, "[tuiSidebar]", never, { "direction": "tuiSidebarDirection"; "autoWidth": "tuiSidebarAutoWidth"; "tuiSidebar": "tuiSidebar"; }, {}, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSidebarDirective<any>, "[tuiSidebar]", never, { "direction": "tuiSidebarDirection"; "autoWidth": "tuiSidebarAutoWidth"; "tuiSidebar": "tuiSidebar"; }, {}, never, never, false, never>;
21
21
  }
@@ -9,5 +9,5 @@ export declare class TuiTouchableDirective {
9
9
  private hasTouchLeft;
10
10
  private onTouchStart;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<TuiTouchableDirective, [{ optional: true; }, null, null, null, { self: true; }]>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiTouchableDirective, "[tuiTouchable]", never, { "tuiTouchable": "tuiTouchable"; }, {}, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TuiTouchableDirective, "[tuiTouchable]", never, { "tuiTouchable": "tuiTouchable"; }, {}, never, never, false, never>;
13
13
  }
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class TuiAppBarBackComponent {
4
+ }
5
+ TuiAppBarBackComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarBackComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
+ TuiAppBarBackComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TuiAppBarBackComponent, selector: "button[tuiAppBarBack], a[tuiAppBarBack]", ngImport: i0, template: "<svg\n height=\"24\"\n viewBox=\"0 0 24 24\"\n width=\"24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n>\n <path\n d=\"M7.44025 12L14.9826 4.43872C15.5391 3.88083 15.5391 2.97631 14.9826 2.41842C14.4261 1.86053 13.5239 1.86053 12.9674 2.41842L4.41737 10.9898C3.86088 11.5477 3.86088 12.4523 4.41737 13.0102L12.9674 21.5816C13.5239 22.1395 14.4261 22.1395 14.9826 21.5816C15.5391 21.0237 15.5391 20.1192 14.9826 19.5613L7.44025 12Z\"\n fill=\"currentColor\"\n />\n</svg>\n<ng-content></ng-content>\n", styles: [":host{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;border:0;background:none;font-size:inherit;line-height:inherit;text-decoration:none;display:flex;align-items:center;padding:0 .625rem 0 .125rem}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarBackComponent, decorators: [{
8
+ type: Component,
9
+ args: [{ selector: 'button[tuiAppBarBack], a[tuiAppBarBack]', changeDetection: ChangeDetectionStrategy.OnPush, template: "<svg\n height=\"24\"\n viewBox=\"0 0 24 24\"\n width=\"24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n>\n <path\n d=\"M7.44025 12L14.9826 4.43872C15.5391 3.88083 15.5391 2.97631 14.9826 2.41842C14.4261 1.86053 13.5239 1.86053 12.9674 2.41842L4.41737 10.9898C3.86088 11.5477 3.86088 12.4523 4.41737 13.0102L12.9674 21.5816C13.5239 22.1395 14.4261 22.1395 14.9826 21.5816C15.5391 21.0237 15.5391 20.1192 14.9826 19.5613L7.44025 12Z\"\n fill=\"currentColor\"\n />\n</svg>\n<ng-content></ng-content>\n", styles: [":host{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;border:0;background:none;font-size:inherit;line-height:inherit;text-decoration:none;display:flex;align-items:center;padding:0 .625rem 0 .125rem}\n"] }]
10
+ }] });
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci1iYWNrLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FkZG9uLW1vYmlsZS9jb21wb25lbnRzL2FwcC1iYXIvYXBwLWJhci1iYWNrLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FkZG9uLW1vYmlsZS9jb21wb25lbnRzL2FwcC1iYXIvYXBwLWJhci1iYWNrLnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLHVCQUF1QixFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7QUFRakUsTUFBTSxPQUFPLHNCQUFzQjs7b0hBQXRCLHNCQUFzQjt3R0FBdEIsc0JBQXNCLCtFQ1JuQyxpaEJBWUE7NEZESmEsc0JBQXNCO2tCQU5sQyxTQUFTOytCQUNJLHlDQUF5QyxtQkFHbEMsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnYnV0dG9uW3R1aUFwcEJhckJhY2tdLCBhW3R1aUFwcEJhckJhY2tdJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYXBwLWJhci1iYWNrLnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2FwcC1iYXItYmFjay5zdHlsZS5sZXNzJ10sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFR1aUFwcEJhckJhY2tDb21wb25lbnQge31cbiIsIjxzdmdcbiAgICBoZWlnaHQ9XCIyNFwiXG4gICAgdmlld0JveD1cIjAgMCAyNCAyNFwiXG4gICAgd2lkdGg9XCIyNFwiXG4gICAgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiXG4+XG4gICAgPHBhdGhcbiAgICAgICAgZD1cIk03LjQ0MDI1IDEyTDE0Ljk4MjYgNC40Mzg3MkMxNS41MzkxIDMuODgwODMgMTUuNTM5MSAyLjk3NjMxIDE0Ljk4MjYgMi40MTg0MkMxNC40MjYxIDEuODYwNTMgMTMuNTIzOSAxLjg2MDUzIDEyLjk2NzQgMi40MTg0Mkw0LjQxNzM3IDEwLjk4OThDMy44NjA4OCAxMS41NDc3IDMuODYwODggMTIuNDUyMyA0LjQxNzM3IDEzLjAxMDJMMTIuOTY3NCAyMS41ODE2QzEzLjUyMzkgMjIuMTM5NSAxNC40MjYxIDIyLjEzOTUgMTQuOTgyNiAyMS41ODE2QzE1LjUzOTEgMjEuMDIzNyAxNS41MzkxIDIwLjExOTIgMTQuOTgyNiAxOS41NjEzTDcuNDQwMjUgMTJaXCJcbiAgICAgICAgZmlsbD1cImN1cnJlbnRDb2xvclwiXG4gICAgLz5cbjwvc3ZnPlxuPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuIl19
@@ -0,0 +1,34 @@
1
+ import { ChangeDetectionStrategy, Component, Inject, ViewChildren, } from '@angular/core';
2
+ import { MutationObserverService } from '@ng-web-apis/mutation-observer';
3
+ import { EMPTY_QUERY, TuiResizeService } from '@taiga-ui/cdk';
4
+ import { merge } from 'rxjs';
5
+ import { map } from 'rxjs/operators';
6
+ import { TUI_APP_BAR_PROVIDERS } from './app-bar.providers';
7
+ import * as i0 from "@angular/core";
8
+ import * as i1 from "@angular/common";
9
+ import * as i2 from "rxjs";
10
+ export class TuiAppBarComponent {
11
+ constructor(resize$, mutation$) {
12
+ this.resize$ = resize$;
13
+ this.mutation$ = mutation$;
14
+ this.side = EMPTY_QUERY;
15
+ this.width$ = merge(this.resize$, this.mutation$).pipe(map(() => 2 *
16
+ Math.max(this.side.first?.nativeElement.clientWidth, this.side.last?.nativeElement.clientWidth)));
17
+ }
18
+ }
19
+ TuiAppBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarComponent, deps: [{ token: TuiResizeService }, { token: MutationObserverService }], target: i0.ɵɵFactoryTarget.Component });
20
+ TuiAppBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TuiAppBarComponent, selector: "tui-app-bar", providers: TUI_APP_BAR_PROVIDERS, viewQueries: [{ propertyName: "side", predicate: ["side"], descendants: true }], ngImport: i0, template: "<div\n #side\n class=\"t-left\"\n>\n <ng-content select=\"[tuiSlot='left']\"></ng-content>\n</div>\n<div\n class=\"t-content\"\n [style.--sides.px]=\"width$ | async\"\n>\n <ng-content></ng-content>\n</div>\n<div\n #side\n class=\"t-right\"\n>\n <ng-content select=\"[tuiSlot='right']\"></ng-content>\n</div>\n", styles: [":host{--tui-padding: .625rem;position:relative;display:flex;height:3rem;align-items:center;justify-content:space-between;border:solid transparent;border-width:0 .375rem;box-sizing:border-box;font:var(--tui-font-text-m);font-weight:700;color:var(--tui-text-01);background:var(--tui-base-01)}:host ::ng-deep [tuiButton][data-size=m]{font-weight:400}.t-content{top:50%;left:50%;transform:translate(-50%,-50%);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:absolute;max-width:calc(100% - var(--sides, 0px));flex:1;padding:0 .375rem;box-sizing:border-box;text-align:center;color:var(--tui-text-01)}\n"], dependencies: [{ kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarComponent, decorators: [{
22
+ type: Component,
23
+ args: [{ selector: 'tui-app-bar', changeDetection: ChangeDetectionStrategy.OnPush, providers: TUI_APP_BAR_PROVIDERS, template: "<div\n #side\n class=\"t-left\"\n>\n <ng-content select=\"[tuiSlot='left']\"></ng-content>\n</div>\n<div\n class=\"t-content\"\n [style.--sides.px]=\"width$ | async\"\n>\n <ng-content></ng-content>\n</div>\n<div\n #side\n class=\"t-right\"\n>\n <ng-content select=\"[tuiSlot='right']\"></ng-content>\n</div>\n", styles: [":host{--tui-padding: .625rem;position:relative;display:flex;height:3rem;align-items:center;justify-content:space-between;border:solid transparent;border-width:0 .375rem;box-sizing:border-box;font:var(--tui-font-text-m);font-weight:700;color:var(--tui-text-01);background:var(--tui-base-01)}:host ::ng-deep [tuiButton][data-size=m]{font-weight:400}.t-content{top:50%;left:50%;transform:translate(-50%,-50%);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:absolute;max-width:calc(100% - var(--sides, 0px));flex:1;padding:0 .375rem;box-sizing:border-box;text-align:center;color:var(--tui-text-01)}\n"] }]
24
+ }], ctorParameters: function () { return [{ type: i2.Observable, decorators: [{
25
+ type: Inject,
26
+ args: [TuiResizeService]
27
+ }] }, { type: i2.Observable, decorators: [{
28
+ type: Inject,
29
+ args: [MutationObserverService]
30
+ }] }]; }, propDecorators: { side: [{
31
+ type: ViewChildren,
32
+ args: ['side']
33
+ }] } });
34
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hZGRvbi1tb2JpbGUvY29tcG9uZW50cy9hcHAtYmFyL2FwcC1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYWRkb24tbW9iaWxlL2NvbXBvbmVudHMvYXBwLWJhci9hcHAtYmFyLnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBRVQsTUFBTSxFQUVOLFlBQVksR0FDZixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RSxPQUFPLEVBQUMsV0FBVyxFQUFFLGdCQUFnQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzVELE9BQU8sRUFBQyxLQUFLLEVBQWEsTUFBTSxNQUFNLENBQUM7QUFDdkMsT0FBTyxFQUFDLEdBQUcsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBRW5DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHFCQUFxQixDQUFDOzs7O0FBUzFELE1BQU0sT0FBTyxrQkFBa0I7SUFlM0IsWUFDK0MsT0FBNEIsRUFDckIsU0FBOEI7UUFEckMsWUFBTyxHQUFQLE9BQU8sQ0FBcUI7UUFDckIsY0FBUyxHQUFULFNBQVMsQ0FBcUI7UUFmbkUsU0FBSSxHQUF1QyxXQUFXLENBQUM7UUFFL0QsV0FBTSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxJQUFJLENBQ3RELEdBQUcsQ0FDQyxHQUFHLEVBQUUsQ0FDRCxDQUFDO1lBQ0QsSUFBSSxDQUFDLEdBQUcsQ0FDSixJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxhQUFhLENBQUMsV0FBVyxFQUMxQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksRUFBRSxhQUFhLENBQUMsV0FBVyxDQUM1QyxDQUNSLENBQ0osQ0FBQztJQUtDLENBQUM7O2dIQWxCSyxrQkFBa0Isa0JBZ0JmLGdCQUFnQixhQUNoQix1QkFBdUI7b0dBakIxQixrQkFBa0Isc0NBRmhCLHFCQUFxQiwyR0NwQnBDLGtWQWtCQTs0RkRJYSxrQkFBa0I7a0JBUDlCLFNBQVM7K0JBQ0ksYUFBYSxtQkFHTix1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDLHFCQUFxQjs7MEJBa0IzQixNQUFNOzJCQUFDLGdCQUFnQjs7MEJBQ3ZCLE1BQU07MkJBQUMsdUJBQXVCOzRDQWZsQixJQUFJO3NCQURwQixZQUFZO3VCQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBFbGVtZW50UmVmLFxuICAgIEluamVjdCxcbiAgICBRdWVyeUxpc3QsXG4gICAgVmlld0NoaWxkcmVuLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7TXV0YXRpb25PYnNlcnZlclNlcnZpY2V9IGZyb20gJ0BuZy13ZWItYXBpcy9tdXRhdGlvbi1vYnNlcnZlcic7XG5pbXBvcnQge0VNUFRZX1FVRVJZLCBUdWlSZXNpemVTZXJ2aWNlfSBmcm9tICdAdGFpZ2EtdWkvY2RrJztcbmltcG9ydCB7bWVyZ2UsIE9ic2VydmFibGV9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHttYXB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuaW1wb3J0IHtUVUlfQVBQX0JBUl9QUk9WSURFUlN9IGZyb20gJy4vYXBwLWJhci5wcm92aWRlcnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3R1aS1hcHAtYmFyJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYXBwLWJhci50ZW1wbGF0ZS5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9hcHAtYmFyLnN0eWxlLmxlc3MnXSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBwcm92aWRlcnM6IFRVSV9BUFBfQkFSX1BST1ZJREVSUyxcbn0pXG5leHBvcnQgY2xhc3MgVHVpQXBwQmFyQ29tcG9uZW50IHtcbiAgICBAVmlld0NoaWxkcmVuKCdzaWRlJylcbiAgICBwcml2YXRlIHJlYWRvbmx5IHNpZGU6IFF1ZXJ5TGlzdDxFbGVtZW50UmVmPEhUTUxFbGVtZW50Pj4gPSBFTVBUWV9RVUVSWTtcblxuICAgIHJlYWRvbmx5IHdpZHRoJCA9IG1lcmdlKHRoaXMucmVzaXplJCwgdGhpcy5tdXRhdGlvbiQpLnBpcGUoXG4gICAgICAgIG1hcChcbiAgICAgICAgICAgICgpID0+XG4gICAgICAgICAgICAgICAgMiAqXG4gICAgICAgICAgICAgICAgTWF0aC5tYXgoXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2lkZS5maXJzdD8ubmF0aXZlRWxlbWVudC5jbGllbnRXaWR0aCxcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5zaWRlLmxhc3Q/Lm5hdGl2ZUVsZW1lbnQuY2xpZW50V2lkdGgsXG4gICAgICAgICAgICAgICAgKSxcbiAgICAgICAgKSxcbiAgICApO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoVHVpUmVzaXplU2VydmljZSkgcHJpdmF0ZSByZWFkb25seSByZXNpemUkOiBPYnNlcnZhYmxlPHVua25vd24+LFxuICAgICAgICBASW5qZWN0KE11dGF0aW9uT2JzZXJ2ZXJTZXJ2aWNlKSBwcml2YXRlIHJlYWRvbmx5IG11dGF0aW9uJDogT2JzZXJ2YWJsZTx1bmtub3duPixcbiAgICApIHt9XG59XG4iLCI8ZGl2XG4gICAgI3NpZGVcbiAgICBjbGFzcz1cInQtbGVmdFwiXG4+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW3R1aVNsb3Q9J2xlZnQnXVwiPjwvbmctY29udGVudD5cbjwvZGl2PlxuPGRpdlxuICAgIGNsYXNzPVwidC1jb250ZW50XCJcbiAgICBbc3R5bGUuLS1zaWRlcy5weF09XCJ3aWR0aCQgfCBhc3luY1wiXG4+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG48ZGl2XG4gICAgI3NpZGVcbiAgICBjbGFzcz1cInQtcmlnaHRcIlxuPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIlt0dWlTbG90PSdyaWdodCddXCI+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=
@@ -5,9 +5,9 @@ export class TuiAppBarDirective {
5
5
  this.tuiSlot = 'left';
6
6
  }
7
7
  }
8
- TuiAppBarDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
9
- TuiAppBarDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiAppBarDirective, selector: "[tuiSlot]", inputs: { tuiSlot: "tuiSlot" }, ngImport: i0 });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarDirective, decorators: [{
8
+ TuiAppBarDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
9
+ TuiAppBarDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiAppBarDirective, selector: "[tuiSlot]", inputs: { tuiSlot: "tuiSlot" }, ngImport: i0 });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarDirective, decorators: [{
11
11
  type: Directive,
12
12
  args: [{
13
13
  selector: '[tuiSlot]',
@@ -7,10 +7,10 @@ import { TuiAppBarBackComponent } from './app-bar-back.component';
7
7
  import * as i0 from "@angular/core";
8
8
  export class TuiAppBarModule {
9
9
  }
10
- TuiAppBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
- TuiAppBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarModule, declarations: [TuiAppBarComponent, TuiAppBarDirective, TuiAppBarBackComponent], imports: [CommonModule, TuiSvgModule], exports: [TuiAppBarComponent, TuiAppBarDirective, TuiAppBarBackComponent] });
12
- TuiAppBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarModule, imports: [[CommonModule, TuiSvgModule]] });
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarModule, decorators: [{
10
+ TuiAppBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ TuiAppBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarModule, declarations: [TuiAppBarComponent, TuiAppBarDirective, TuiAppBarBackComponent], imports: [CommonModule, TuiSvgModule], exports: [TuiAppBarComponent, TuiAppBarDirective, TuiAppBarBackComponent] });
12
+ TuiAppBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarModule, imports: [CommonModule, TuiSvgModule] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiAppBarModule, decorators: [{
14
14
  type: NgModule,
15
15
  args: [{
16
16
  imports: [CommonModule, TuiSvgModule],
@@ -18,4 +18,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
18
18
  exports: [TuiAppBarComponent, TuiAppBarDirective, TuiAppBarBackComponent],
19
19
  }]
20
20
  }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hZGRvbi1tb2JpbGUvY29tcG9uZW50cy9hcHAtYmFyL2FwcC1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUU1QyxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQzs7QUFPaEUsTUFBTSxPQUFPLGVBQWU7OzZHQUFmLGVBQWU7OEdBQWYsZUFBZSxpQkFIVCxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSxzQkFBc0IsYUFEbkUsWUFBWSxFQUFFLFlBQVksYUFFMUIsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUUsc0JBQXNCOzhHQUUvRCxlQUFlLFlBSmYsQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDOzRGQUk1QixlQUFlO2tCQUwzQixRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxZQUFZLENBQUM7b0JBQ3JDLFlBQVksRUFBRSxDQUFDLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLHNCQUFzQixDQUFDO29CQUM5RSxPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSxzQkFBc0IsQ0FBQztpQkFDNUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlTdmdNb2R1bGV9IGZyb20gJ0B0YWlnYS11aS9jb3JlJztcblxuaW1wb3J0IHtUdWlBcHBCYXJDb21wb25lbnR9IGZyb20gJy4vYXBwLWJhci5jb21wb25lbnQnO1xuaW1wb3J0IHtUdWlBcHBCYXJEaXJlY3RpdmV9IGZyb20gJy4vYXBwLWJhci5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUdWlBcHBCYXJCYWNrQ29tcG9uZW50fSBmcm9tICcuL2FwcC1iYXItYmFjay5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIFR1aVN2Z01vZHVsZV0sXG4gICAgZGVjbGFyYXRpb25zOiBbVHVpQXBwQmFyQ29tcG9uZW50LCBUdWlBcHBCYXJEaXJlY3RpdmUsIFR1aUFwcEJhckJhY2tDb21wb25lbnRdLFxuICAgIGV4cG9ydHM6IFtUdWlBcHBCYXJDb21wb25lbnQsIFR1aUFwcEJhckRpcmVjdGl2ZSwgVHVpQXBwQmFyQmFja0NvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aUFwcEJhck1vZHVsZSB7fVxuIl19
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hZGRvbi1tb2JpbGUvY29tcG9uZW50cy9hcHAtYmFyL2FwcC1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUU1QyxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQzs7QUFPaEUsTUFBTSxPQUFPLGVBQWU7OzZHQUFmLGVBQWU7OEdBQWYsZUFBZSxpQkFIVCxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSxzQkFBc0IsYUFEbkUsWUFBWSxFQUFFLFlBQVksYUFFMUIsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUUsc0JBQXNCOzhHQUUvRCxlQUFlLFlBSmQsWUFBWSxFQUFFLFlBQVk7NEZBSTNCLGVBQWU7a0JBTDNCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQztvQkFDckMsWUFBWSxFQUFFLENBQUMsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUUsc0JBQXNCLENBQUM7b0JBQzlFLE9BQU8sRUFBRSxDQUFDLGtCQUFrQixFQUFFLGtCQUFrQixFQUFFLHNCQUFzQixDQUFDO2lCQUM1RSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1R1aVN2Z01vZHVsZX0gZnJvbSAnQHRhaWdhLXVpL2NvcmUnO1xuXG5pbXBvcnQge1R1aUFwcEJhckNvbXBvbmVudH0gZnJvbSAnLi9hcHAtYmFyLmNvbXBvbmVudCc7XG5pbXBvcnQge1R1aUFwcEJhckRpcmVjdGl2ZX0gZnJvbSAnLi9hcHAtYmFyLmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aUFwcEJhckJhY2tDb21wb25lbnR9IGZyb20gJy4vYXBwLWJhci1iYWNrLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgVHVpU3ZnTW9kdWxlXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlBcHBCYXJDb21wb25lbnQsIFR1aUFwcEJhckRpcmVjdGl2ZSwgVHVpQXBwQmFyQmFja0NvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW1R1aUFwcEJhckNvbXBvbmVudCwgVHVpQXBwQmFyRGlyZWN0aXZlLCBUdWlBcHBCYXJCYWNrQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpQXBwQmFyTW9kdWxlIHt9XG4iXX0=