@progress/kendo-angular-layout 6.5.2 → 7.0.0-next.202203231147

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 (619) hide show
  1. package/{dist/es2015/avatar → avatar}/avatar.component.d.ts +18 -11
  2. package/{dist/es2015/avatar → avatar}/models/fill.d.ts +0 -0
  3. package/{dist/es2015/avatar → avatar}/models/models.d.ts +0 -0
  4. package/{dist/es2015/avatar → avatar}/models/rounded.d.ts +0 -0
  5. package/{dist/es2015/avatar → avatar}/models/shape.d.ts +0 -0
  6. package/{dist/es2015/avatar → avatar}/models/size.d.ts +0 -0
  7. package/{dist/es2015/avatar → avatar}/models/theme-color.d.ts +0 -0
  8. package/{dist/es2015/avatar.module.d.ts → avatar.module.d.ts} +6 -0
  9. package/bundles/kendo-angular-layout.umd.js +5 -0
  10. package/{dist/es2015/card → card}/card-actions.component.d.ts +16 -9
  11. package/{dist/es2015/card → card}/card-body.component.d.ts +3 -0
  12. package/{dist/es2015/card → card}/card-footer.component.d.ts +3 -0
  13. package/{dist/es2015/card → card}/card-header.component.d.ts +3 -0
  14. package/{dist/es2015/card → card}/card.component.d.ts +6 -3
  15. package/{dist/es2015/card → card}/directives/card-media.directive.d.ts +3 -0
  16. package/{dist/es2015/card → card}/directives/card-separator.directive.d.ts +5 -2
  17. package/{dist/es2015/card → card}/directives/card-subtitle.directive.d.ts +3 -0
  18. package/{dist/es2015/card → card}/directives/card-title.directive.d.ts +3 -0
  19. package/{dist/es2015/card → card}/models/actions-layout.d.ts +0 -0
  20. package/{dist/es2015/card → card}/models/card-action.d.ts +0 -0
  21. package/card.module.d.ts +24 -0
  22. package/{dist/es2015/common → common}/direction.d.ts +0 -0
  23. package/{dist/es2015/common → common}/dom-queries.d.ts +0 -0
  24. package/{dist/es2015/common → common}/orientation.d.ts +0 -0
  25. package/{dist/es2015/common → common}/styling-classes.d.ts +0 -0
  26. package/{dist/es2015/common → common}/util.d.ts +4 -4
  27. package/{dist/es2015/drawer → drawer}/animations.d.ts +0 -0
  28. package/{dist/es2015/drawer → drawer}/drawer-container.component.d.ts +9 -6
  29. package/{dist/es2015/drawer → drawer}/drawer-content.component.d.ts +3 -0
  30. package/{dist/es2015/drawer → drawer}/drawer.component.d.ts +17 -8
  31. package/{dist/es2015/drawer → drawer}/drawer.service.d.ts +3 -1
  32. package/drawer/events/drawer-list-select.event.d.ts +26 -0
  33. package/{dist/es2015/drawer → drawer}/events/select-event.d.ts +6 -2
  34. package/{dist/es2015/drawer → drawer}/item.component.d.ts +7 -4
  35. package/{dist/es2015/drawer → drawer}/list.component.d.ts +6 -1
  36. package/{dist/es2015/drawer → drawer}/models/constants.d.ts +0 -0
  37. package/{dist/es2015/drawer → drawer}/models/drawer-animation.interface.d.ts +1 -1
  38. package/{dist/es2015/drawer → drawer}/models/drawer-item.interface.d.ts +0 -0
  39. package/{dist/es2015/drawer → drawer}/models/mode.d.ts +0 -0
  40. package/{dist/es2015/drawer → drawer}/models/position.d.ts +0 -0
  41. package/{dist/es2015/drawer → drawer}/template-directives/drawer-template.directive.d.ts +3 -0
  42. package/{dist/es2015/drawer → drawer}/template-directives/footer-template.directive.d.ts +3 -0
  43. package/{dist/es2015/drawer → drawer}/template-directives/header-template.directive.d.ts +3 -0
  44. package/{dist/es2015/drawer → drawer}/template-directives/item-template.directive.d.ts +3 -0
  45. package/{dist/es2015/drawer → drawer}/template-directives.d.ts +0 -0
  46. package/{dist/es2015/drawer → drawer}/types.d.ts +0 -0
  47. package/{dist/es2015/drawer → drawer}/util.d.ts +0 -0
  48. package/drawer.module.d.ts +24 -0
  49. package/{dist/es2015 → esm2015}/avatar/avatar.component.js +73 -98
  50. package/{dist/es → esm2015}/avatar/models/fill.js +1 -0
  51. package/{dist/es/layouts → esm2015/avatar/models}/models.js +5 -0
  52. package/{dist/es2015 → esm2015}/avatar/models/rounded.js +1 -0
  53. package/{dist/es2015 → esm2015}/avatar/models/shape.js +1 -0
  54. package/{dist/es → esm2015}/avatar/models/size.js +1 -0
  55. package/{dist/es → esm2015}/avatar/models/theme-color.js +1 -0
  56. package/esm2015/avatar.module.js +31 -0
  57. package/esm2015/card/card-actions.component.js +145 -0
  58. package/esm2015/card/card-body.component.js +30 -0
  59. package/esm2015/card/card-footer.component.js +30 -0
  60. package/esm2015/card/card-header.component.js +30 -0
  61. package/esm2015/card/card.component.js +101 -0
  62. package/esm2015/card/directives/card-media.directive.js +25 -0
  63. package/esm2015/card/directives/card-separator.directive.js +52 -0
  64. package/esm2015/card/directives/card-subtitle.directive.js +25 -0
  65. package/esm2015/card/directives/card-title.directive.js +25 -0
  66. package/{dist/es → esm2015}/card/models/actions-layout.js +1 -0
  67. package/{dist/es2015 → esm2015}/card/models/card-action.js +0 -0
  68. package/{dist/es2015 → esm2015}/card.module.js +28 -11
  69. package/{dist/es → esm2015}/common/direction.js +1 -0
  70. package/{dist/es2015 → esm2015}/common/dom-queries.js +0 -3
  71. package/{dist/es → esm2015}/common/orientation.js +1 -0
  72. package/{dist/es → esm2015}/common/styling-classes.js +1 -0
  73. package/{dist/es2015 → esm2015}/common/util.js +4 -6
  74. package/{dist/es2015 → esm2015}/drawer/animations.js +0 -0
  75. package/esm2015/drawer/drawer-container.component.js +109 -0
  76. package/esm2015/drawer/drawer-content.component.js +31 -0
  77. package/{dist/es2015 → esm2015}/drawer/drawer.component.js +124 -124
  78. package/{dist/es2015 → esm2015}/drawer/drawer.service.js +8 -20
  79. package/esm2015/drawer/events/drawer-list-select.event.js +17 -0
  80. package/{dist/es2015 → esm2015}/drawer/events/select-event.js +8 -1
  81. package/esm2015/drawer/item.component.js +121 -0
  82. package/{dist/es2015 → esm2015}/drawer/list.component.js +32 -34
  83. package/{dist/es2015 → esm2015}/drawer/models/constants.js +0 -0
  84. package/{dist/es → esm2015}/drawer/models/drawer-animation.interface.js +1 -0
  85. package/{dist/es → esm2015}/drawer/models/drawer-item.interface.js +1 -0
  86. package/{dist/es → esm2015}/drawer/models/mode.js +1 -0
  87. package/{dist/es → esm2015}/drawer/models/position.js +1 -0
  88. package/esm2015/drawer/template-directives/drawer-template.directive.js +28 -0
  89. package/esm2015/drawer/template-directives/footer-template.directive.js +26 -0
  90. package/esm2015/drawer/template-directives/header-template.directive.js +26 -0
  91. package/esm2015/drawer/template-directives/item-template.directive.js +26 -0
  92. package/{dist/es → esm2015}/drawer/template-directives.js +0 -0
  93. package/{dist/es → esm2015}/drawer/types.js +1 -0
  94. package/{dist/es2015 → esm2015}/drawer/util.js +0 -0
  95. package/{dist/es2015 → esm2015}/drawer.module.js +25 -11
  96. package/{dist/es2015 → esm2015}/expansionpanel/animations.js +0 -0
  97. package/{dist/es2015 → esm2015}/expansionpanel/events/action-event.js +8 -1
  98. package/esm2015/expansionpanel/expansionpanel-title.directive.js +27 -0
  99. package/{dist/es2015 → esm2015}/expansionpanel/expansionpanel.component.js +112 -119
  100. package/esm2015/expansionpanel.module.js +36 -0
  101. package/esm2015/gridlayout.module.js +35 -0
  102. package/esm2015/kendo-angular-layout.js +8 -0
  103. package/{dist/es2015 → esm2015}/layout.module.js +44 -21
  104. package/{dist/es2015 → esm2015}/layouts/grid-layout.component.js +44 -48
  105. package/esm2015/layouts/gridlayout-item.component.js +47 -0
  106. package/{dist/es → esm2015}/layouts/models/gridlayout-gap-settings.js +1 -0
  107. package/{dist/es → esm2015}/layouts/models/gridlayout-row-col-size.js +1 -0
  108. package/{dist/es → esm2015}/layouts/models/layout-align-settings.js +1 -0
  109. package/{dist/es → esm2015}/layouts/models/layout-horizontal-align.js +1 -0
  110. package/{dist/es → esm2015}/layouts/models/layout-vertical-align.js +1 -0
  111. package/{dist/es2015/layouts/models.d.ts → esm2015/layouts/models.js} +0 -0
  112. package/{dist/es2015 → esm2015}/layouts/stack-layout.component.js +48 -54
  113. package/{dist/es2015 → esm2015}/layouts/util.js +0 -0
  114. package/{dist/es → esm2015}/main.js +4 -0
  115. package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
  116. package/esm2015/panelbar/panelbar-content.directive.js +23 -0
  117. package/{dist/es → esm2015}/panelbar/panelbar-expand-mode.js +0 -0
  118. package/{dist/es → esm2015}/panelbar/panelbar-item-model.js +1 -0
  119. package/esm2015/panelbar/panelbar-item-template.directive.js +24 -0
  120. package/{dist/es2015 → esm2015}/panelbar/panelbar-item-title.directive.js +14 -12
  121. package/{dist/es2015 → esm2015}/panelbar/panelbar-item.component.js +218 -158
  122. package/{dist/es2015 → esm2015}/panelbar/panelbar.component.js +116 -131
  123. package/{dist/es2015 → esm2015}/panelbar/panelbar.service.js +8 -8
  124. package/{dist/es2015 → esm2015}/panelbar.module.js +22 -11
  125. package/{dist/es2015 → esm2015}/splitter/splitter-bar.component.js +60 -81
  126. package/{dist/es2015 → esm2015}/splitter/splitter-pane.component.js +53 -84
  127. package/{dist/es2015 → esm2015}/splitter/splitter.component.js +84 -69
  128. package/{dist/es2015 → esm2015}/splitter/splitter.service.js +9 -9
  129. package/{dist/es2015 → esm2015}/splitter.module.js +21 -12
  130. package/esm2015/stacklayout.module.js +31 -0
  131. package/{dist/es2015 → esm2015}/stepper/events/activate-event.js +8 -1
  132. package/esm2015/stepper/list.component.js +145 -0
  133. package/esm2015/stepper/localization/custom-messages.component.js +41 -0
  134. package/esm2015/stepper/localization/localized-messages.directive.js +38 -0
  135. package/esm2015/stepper/localization/messages.js +23 -0
  136. package/{dist/es2015 → esm2015}/stepper/models/constants.js +0 -0
  137. package/{dist/es → esm2015}/stepper/models/orientation.js +1 -0
  138. package/{dist/es → esm2015}/stepper/models/step-predicate.js +1 -0
  139. package/{dist/es → esm2015}/stepper/models/step-type.js +1 -0
  140. package/{dist/es → esm2015}/stepper/models/stepper-step.interface.js +1 -0
  141. package/{dist/es2015 → esm2015}/stepper/step.component.js +88 -66
  142. package/{dist/es2015 → esm2015}/stepper/stepper.component.js +141 -103
  143. package/{dist/es2015 → esm2015}/stepper/stepper.service.js +25 -14
  144. package/esm2015/stepper/template-directives/indicator-template.directive.js +26 -0
  145. package/esm2015/stepper/template-directives/label-template.directive.js +26 -0
  146. package/esm2015/stepper/template-directives/step-template.directive.js +26 -0
  147. package/{dist/es → esm2015}/stepper/template-directives.js +0 -0
  148. package/{dist/es → esm2015}/stepper/types.js +1 -0
  149. package/{dist/es2015 → esm2015}/stepper.module.js +22 -11
  150. package/{dist/es2015 → esm2015}/tabstrip/constants.js +0 -0
  151. package/{dist/es2015 → esm2015}/tabstrip/directives/tab-content.directive.js +12 -11
  152. package/{dist/es2015 → esm2015}/tabstrip/directives/tab-title.directive.js +12 -11
  153. package/{dist/es2015 → esm2015}/tabstrip/events/select-event.js +0 -0
  154. package/{dist/es2015 → esm2015}/tabstrip/events/tabclose-event.js +0 -0
  155. package/{dist/es2015 → esm2015}/tabstrip/events/tabscroll-event.js +8 -1
  156. package/{dist/es → esm2015}/tabstrip/events.js +0 -0
  157. package/esm2015/tabstrip/localization/custom-messages.component.js +41 -0
  158. package/esm2015/tabstrip/localization/localized-messages.directive.js +36 -0
  159. package/esm2015/tabstrip/localization/messages.js +23 -0
  160. package/{dist/es → esm2015}/tabstrip/models/button-state-change.js +1 -0
  161. package/{dist/es/avatar/models/models.js → esm2015/tabstrip/models/scroll-button-type.js} +1 -0
  162. package/{dist/es → esm2015}/tabstrip/models/scroll-buttons-visibility.js +1 -0
  163. package/{dist/es2015 → esm2015}/tabstrip/models/scrollable-settings.js +0 -2
  164. package/{dist/es → esm2015}/tabstrip/models/tab-alignment.js +1 -0
  165. package/{dist/es → esm2015}/tabstrip/models/tab-position.js +1 -0
  166. package/esm2015/tabstrip/models/tabstrip-tab.component.js +65 -0
  167. package/esm2015/tabstrip/rendering/tab.component.js +123 -0
  168. package/esm2015/tabstrip/scrollable-button.component.js +123 -0
  169. package/{dist/es2015 → esm2015}/tabstrip/tabstrip-scroll.service.js +16 -36
  170. package/{dist/es2015 → esm2015}/tabstrip/tabstrip.component.js +237 -149
  171. package/{dist/es2015 → esm2015}/tabstrip/tabstrip.service.js +11 -16
  172. package/{dist/es2015 → esm2015}/tabstrip/util.js +0 -0
  173. package/{dist/es2015 → esm2015}/tabstrip.module.js +26 -11
  174. package/{dist/es2015 → esm2015}/tilelayout/constants.js +0 -0
  175. package/{dist/es2015 → esm2015}/tilelayout/dragging-service.js +10 -12
  176. package/{dist/es → esm2015}/tilelayout/models/dragging-config.interface.js +1 -0
  177. package/{dist/es → esm2015}/tilelayout/models/flowmode.type.js +1 -0
  178. package/{dist/es → esm2015}/tilelayout/models/gap.interface.js +1 -0
  179. package/{dist/es2015 → esm2015}/tilelayout/reorder-event.js +1 -1
  180. package/{dist/es2015 → esm2015}/tilelayout/resize-event.js +1 -1
  181. package/esm2015/tilelayout/tilelayout-item-body.component.js +37 -0
  182. package/esm2015/tilelayout/tilelayout-item-header.component.js +52 -0
  183. package/{dist/es2015 → esm2015}/tilelayout/tilelayout-item.component.js +81 -76
  184. package/{dist/es2015 → esm2015}/tilelayout/tilelayout-resize-handle.directive.js +16 -20
  185. package/{dist/es2015 → esm2015}/tilelayout/tilelayout.component.js +79 -84
  186. package/{dist/es2015 → esm2015}/tilelayout/util.js +0 -0
  187. package/{dist/es2015 → esm2015}/tilelayout.module.js +22 -11
  188. package/{dist/es2015/expansionpanel → expansionpanel}/animations.d.ts +0 -0
  189. package/{dist/es2015/expansionpanel → expansionpanel}/events/action-event.d.ts +5 -1
  190. package/{dist/es2015/expansionpanel → expansionpanel}/expansionpanel-title.directive.d.ts +3 -0
  191. package/{dist/es2015/expansionpanel → expansionpanel}/expansionpanel.component.d.ts +9 -5
  192. package/expansionpanel.module.d.ts +18 -0
  193. package/{dist/fesm2015/index.js → fesm2015/kendo-angular-layout.js} +5166 -4888
  194. package/gridlayout.module.d.ts +17 -0
  195. package/{dist/es/stepper/models/constants.js → kendo-angular-layout.d.ts} +3 -2
  196. package/{dist/es2015/layout.module.d.ts → layout.module.d.ts} +15 -0
  197. package/{dist/es2015/layouts → layouts}/grid-layout.component.d.ts +7 -3
  198. package/{dist/es2015/layouts → layouts}/gridlayout-item.component.d.ts +3 -0
  199. package/{dist/es2015/layouts → layouts}/models/gridlayout-gap-settings.d.ts +0 -0
  200. package/{dist/es2015/layouts → layouts}/models/gridlayout-row-col-size.d.ts +0 -0
  201. package/{dist/es2015/layouts → layouts}/models/layout-align-settings.d.ts +0 -0
  202. package/{dist/es2015/layouts → layouts}/models/layout-horizontal-align.d.ts +0 -0
  203. package/{dist/es2015/layouts → layouts}/models/layout-vertical-align.d.ts +0 -0
  204. package/{dist/es/avatar/models/shape.js → layouts/models.d.ts} +6 -0
  205. package/{dist/es2015/layouts → layouts}/stack-layout.component.d.ts +9 -5
  206. package/{dist/es2015/layouts → layouts}/util.d.ts +3 -3
  207. package/{dist/es2015/main.d.ts → main.d.ts} +3 -0
  208. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  209. package/package.json +43 -131
  210. package/{dist/es2015/panelbar → panelbar}/panelbar-content.directive.d.ts +3 -0
  211. package/{dist/es2015/panelbar → panelbar}/panelbar-expand-mode.d.ts +0 -0
  212. package/{dist/es2015/panelbar → panelbar}/panelbar-item-model.d.ts +0 -0
  213. package/{dist/es2015/panelbar → panelbar}/panelbar-item-template.directive.d.ts +3 -0
  214. package/{dist/es2015/panelbar → panelbar}/panelbar-item-title.directive.d.ts +3 -0
  215. package/{dist/es2015/panelbar → panelbar}/panelbar-item.component.d.ts +17 -13
  216. package/{dist/es2015/panelbar → panelbar}/panelbar.component.d.ts +13 -8
  217. package/{dist/es2015/panelbar → panelbar}/panelbar.service.d.ts +3 -0
  218. package/panelbar.module.d.ts +27 -0
  219. package/schematics/ngAdd/index.js +5 -2
  220. package/schematics/ngAdd/index.js.map +1 -1
  221. package/{dist/es2015/splitter → splitter}/splitter-bar.component.d.ts +8 -5
  222. package/{dist/es2015/splitter → splitter}/splitter-pane.component.d.ts +13 -8
  223. package/{dist/es2015/splitter → splitter}/splitter.component.d.ts +9 -6
  224. package/{dist/es2015/splitter → splitter}/splitter.service.d.ts +3 -0
  225. package/splitter.module.d.ts +23 -0
  226. package/{dist/es2015/stacklayout.module.d.ts → stacklayout.module.d.ts} +6 -0
  227. package/{dist/es2015/stepper → stepper}/events/activate-event.d.ts +6 -2
  228. package/{dist/es2015/stepper → stepper}/list.component.d.ts +9 -6
  229. package/{dist/es2015/stepper → stepper}/localization/custom-messages.component.d.ts +4 -1
  230. package/{dist/es2015/stepper → stepper}/localization/localized-messages.directive.d.ts +3 -0
  231. package/{dist/es2015/stepper → stepper}/localization/messages.d.ts +3 -0
  232. package/{dist/es2015/stepper → stepper}/models/constants.d.ts +0 -0
  233. package/{dist/es2015/stepper → stepper}/models/orientation.d.ts +0 -0
  234. package/{dist/es2015/stepper → stepper}/models/step-predicate.d.ts +0 -0
  235. package/{dist/es2015/stepper → stepper}/models/step-type.d.ts +0 -0
  236. package/{dist/es2015/stepper → stepper}/models/stepper-step.interface.d.ts +0 -0
  237. package/{dist/es2015/stepper → stepper}/step.component.d.ts +16 -13
  238. package/{dist/es2015/stepper → stepper}/stepper.component.d.ts +22 -9
  239. package/{dist/es2015/stepper → stepper}/stepper.service.d.ts +6 -4
  240. package/{dist/es2015/stepper → stepper}/template-directives/indicator-template.directive.d.ts +3 -0
  241. package/{dist/es2015/stepper → stepper}/template-directives/label-template.directive.d.ts +3 -0
  242. package/{dist/es2015/stepper → stepper}/template-directives/step-template.directive.d.ts +3 -0
  243. package/{dist/es2015/stepper → stepper}/template-directives.d.ts +0 -0
  244. package/{dist/es2015/stepper → stepper}/types.d.ts +0 -0
  245. package/stepper.module.d.ts +24 -0
  246. package/{dist/es2015/tabstrip → tabstrip}/constants.d.ts +0 -0
  247. package/{dist/es2015/tabstrip → tabstrip}/directives/tab-content.directive.d.ts +3 -0
  248. package/{dist/es2015/tabstrip → tabstrip}/directives/tab-title.directive.d.ts +3 -0
  249. package/{dist/es2015/tabstrip → tabstrip}/events/select-event.d.ts +0 -0
  250. package/{dist/es2015/tabstrip → tabstrip}/events/tabclose-event.d.ts +0 -0
  251. package/{dist/es2015/tabstrip → tabstrip}/events/tabscroll-event.d.ts +5 -1
  252. package/{dist/es2015/tabstrip → tabstrip}/events.d.ts +0 -0
  253. package/{dist/es2015/tabstrip → tabstrip}/localization/custom-messages.component.d.ts +4 -1
  254. package/{dist/es2015/tabstrip → tabstrip}/localization/localized-messages.directive.d.ts +3 -0
  255. package/{dist/es2015/tabstrip → tabstrip}/localization/messages.d.ts +3 -0
  256. package/{dist/es2015/tabstrip → tabstrip}/models/button-state-change.d.ts +0 -0
  257. package/{dist/es/drawer/models/constants.js → tabstrip/models/scroll-button-type.d.ts} +1 -1
  258. package/{dist/es2015/tabstrip → tabstrip}/models/scroll-buttons-visibility.d.ts +0 -0
  259. package/{dist/es2015/tabstrip → tabstrip}/models/scrollable-settings.d.ts +0 -0
  260. package/{dist/es2015/tabstrip → tabstrip}/models/tab-alignment.d.ts +0 -0
  261. package/{dist/es2015/tabstrip → tabstrip}/models/tab-position.d.ts +0 -0
  262. package/{dist/es2015/tabstrip → tabstrip}/models/tabstrip-tab.component.d.ts +5 -2
  263. package/tabstrip/rendering/tab.component.d.ts +32 -0
  264. package/tabstrip/scrollable-button.component.d.ts +38 -0
  265. package/{dist/es2015/tabstrip → tabstrip}/tabstrip-scroll.service.d.ts +9 -11
  266. package/{dist/es2015/tabstrip → tabstrip}/tabstrip.component.d.ts +25 -15
  267. package/{dist/es2015/tabstrip → tabstrip}/tabstrip.service.d.ts +3 -1
  268. package/{dist/es2015/tabstrip → tabstrip}/util.d.ts +0 -0
  269. package/tabstrip.module.d.ts +30 -0
  270. package/{dist/es2015/tilelayout → tilelayout}/constants.d.ts +0 -0
  271. package/{dist/es2015/tilelayout → tilelayout}/dragging-service.d.ts +7 -4
  272. package/{dist/es2015/tilelayout → tilelayout}/models/dragging-config.interface.d.ts +0 -0
  273. package/{dist/es2015/tilelayout → tilelayout}/models/flowmode.type.d.ts +0 -0
  274. package/{dist/es2015/tilelayout → tilelayout}/models/gap.interface.d.ts +0 -0
  275. package/{dist/es2015/tilelayout → tilelayout}/reorder-event.d.ts +1 -1
  276. package/{dist/es2015/tilelayout → tilelayout}/resize-event.d.ts +1 -1
  277. package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item-body.component.d.ts +3 -0
  278. package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item-header.component.d.ts +11 -5
  279. package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item.component.d.ts +14 -5
  280. package/{dist/es2015/tilelayout → tilelayout}/tilelayout-resize-handle.directive.d.ts +3 -0
  281. package/{dist/es2015/tilelayout → tilelayout}/tilelayout.component.d.ts +10 -6
  282. package/{dist/es2015/tilelayout → tilelayout}/util.d.ts +0 -0
  283. package/tilelayout.module.d.ts +26 -0
  284. package/dist/cdn/js/kendo-angular-layout.js +0 -20
  285. package/dist/cdn/main.js +0 -5
  286. package/dist/es/avatar/avatar.component.js +0 -357
  287. package/dist/es/avatar/models/rounded.js +0 -4
  288. package/dist/es/avatar.module.js +0 -29
  289. package/dist/es/card/card-actions.component.js +0 -151
  290. package/dist/es/card/card-body.component.js +0 -26
  291. package/dist/es/card/card-footer.component.js +0 -26
  292. package/dist/es/card/card-header.component.js +0 -26
  293. package/dist/es/card/card.component.js +0 -114
  294. package/dist/es/card/directives/card-media.directive.js +0 -25
  295. package/dist/es/card/directives/card-separator.directive.js +0 -66
  296. package/dist/es/card/directives/card-subtitle.directive.js +0 -25
  297. package/dist/es/card/directives/card-title.directive.js +0 -25
  298. package/dist/es/card/models/card-action.js +0 -13
  299. package/dist/es/card.module.js +0 -47
  300. package/dist/es/common/dom-queries.js +0 -52
  301. package/dist/es/common/preventable-event.js +0 -36
  302. package/dist/es/common/util.js +0 -91
  303. package/dist/es/drawer/animations.js +0 -146
  304. package/dist/es/drawer/drawer-container.component.js +0 -133
  305. package/dist/es/drawer/drawer-content.component.js +0 -28
  306. package/dist/es/drawer/drawer.component.js +0 -405
  307. package/dist/es/drawer/drawer.service.js +0 -45
  308. package/dist/es/drawer/events/select-event.js +0 -17
  309. package/dist/es/drawer/item.component.js +0 -123
  310. package/dist/es/drawer/list.component.js +0 -119
  311. package/dist/es/drawer/template-directives/drawer-template.directive.js +0 -27
  312. package/dist/es/drawer/template-directives/footer-template.directive.js +0 -25
  313. package/dist/es/drawer/template-directives/header-template.directive.js +0 -25
  314. package/dist/es/drawer/template-directives/item-template.directive.js +0 -25
  315. package/dist/es/drawer/util.js +0 -16
  316. package/dist/es/drawer.module.js +0 -45
  317. package/dist/es/expansionpanel/animations.js +0 -23
  318. package/dist/es/expansionpanel/events/action-event.js +0 -17
  319. package/dist/es/expansionpanel/expansionpanel-title.directive.js +0 -26
  320. package/dist/es/expansionpanel/expansionpanel.component.js +0 -441
  321. package/dist/es/expansionpanel.module.js +0 -32
  322. package/dist/es/gridlayout.module.js +0 -31
  323. package/dist/es/index.js +0 -29
  324. package/dist/es/layout.module.js +0 -71
  325. package/dist/es/layouts/grid-layout.component.js +0 -155
  326. package/dist/es/layouts/gridlayout-item.component.js +0 -52
  327. package/dist/es/layouts/stack-layout.component.js +0 -171
  328. package/dist/es/layouts/util.js +0 -102
  329. package/dist/es/package-metadata.js +0 -15
  330. package/dist/es/panelbar/panelbar-content.directive.js +0 -23
  331. package/dist/es/panelbar/panelbar-item-template.directive.js +0 -23
  332. package/dist/es/panelbar/panelbar-item-title.directive.js +0 -46
  333. package/dist/es/panelbar/panelbar-item.component.js +0 -455
  334. package/dist/es/panelbar/panelbar.component.js +0 -557
  335. package/dist/es/panelbar/panelbar.service.js +0 -43
  336. package/dist/es/panelbar.module.js +0 -44
  337. package/dist/es/splitter/splitter-bar.component.js +0 -282
  338. package/dist/es/splitter/splitter-pane.component.js +0 -270
  339. package/dist/es/splitter/splitter.component.js +0 -226
  340. package/dist/es/splitter/splitter.service.js +0 -153
  341. package/dist/es/splitter.module.js +0 -42
  342. package/dist/es/stacklayout.module.js +0 -29
  343. package/dist/es/stepper/events/activate-event.js +0 -17
  344. package/dist/es/stepper/list.component.js +0 -144
  345. package/dist/es/stepper/localization/custom-messages.component.js +0 -44
  346. package/dist/es/stepper/localization/localized-messages.directive.js +0 -35
  347. package/dist/es/stepper/localization/messages.js +0 -22
  348. package/dist/es/stepper/step.component.js +0 -272
  349. package/dist/es/stepper/stepper.component.js +0 -328
  350. package/dist/es/stepper/stepper.service.js +0 -161
  351. package/dist/es/stepper/template-directives/indicator-template.directive.js +0 -25
  352. package/dist/es/stepper/template-directives/label-template.directive.js +0 -25
  353. package/dist/es/stepper/template-directives/step-template.directive.js +0 -25
  354. package/dist/es/stepper.module.js +0 -47
  355. package/dist/es/tabstrip/constants.js +0 -33
  356. package/dist/es/tabstrip/directives/tab-content.directive.js +0 -49
  357. package/dist/es/tabstrip/directives/tab-title.directive.js +0 -54
  358. package/dist/es/tabstrip/events/select-event.js +0 -26
  359. package/dist/es/tabstrip/events/tabclose-event.js +0 -22
  360. package/dist/es/tabstrip/events/tabscroll-event.js +0 -19
  361. package/dist/es/tabstrip/localization/custom-messages.component.js +0 -44
  362. package/dist/es/tabstrip/localization/localized-messages.directive.js +0 -35
  363. package/dist/es/tabstrip/localization/messages.js +0 -22
  364. package/dist/es/tabstrip/models/scrollable-settings.js +0 -28
  365. package/dist/es/tabstrip/models/tabstrip-tab.component.js +0 -88
  366. package/dist/es/tabstrip/rendering/tab.component.js +0 -131
  367. package/dist/es/tabstrip/scrollable-button.component.js +0 -131
  368. package/dist/es/tabstrip/tabstrip-scroll.service.js +0 -226
  369. package/dist/es/tabstrip/tabstrip.component.js +0 -529
  370. package/dist/es/tabstrip/tabstrip.service.js +0 -158
  371. package/dist/es/tabstrip/util.js +0 -111
  372. package/dist/es/tabstrip.module.js +0 -51
  373. package/dist/es/tilelayout/constants.js +0 -70
  374. package/dist/es/tilelayout/dragging-service.js +0 -430
  375. package/dist/es/tilelayout/preventable-event.js +0 -29
  376. package/dist/es/tilelayout/reorder-event.js +0 -39
  377. package/dist/es/tilelayout/resize-event.js +0 -35
  378. package/dist/es/tilelayout/tilelayout-item-body.component.js +0 -32
  379. package/dist/es/tilelayout/tilelayout-item-header.component.js +0 -55
  380. package/dist/es/tilelayout/tilelayout-item.component.js +0 -198
  381. package/dist/es/tilelayout/tilelayout-resize-handle.directive.js +0 -61
  382. package/dist/es/tilelayout/tilelayout.component.js +0 -344
  383. package/dist/es/tilelayout/util.js +0 -88
  384. package/dist/es/tilelayout.module.js +0 -43
  385. package/dist/es2015/avatar/models/fill.js +0 -4
  386. package/dist/es2015/avatar/models/models.js +0 -4
  387. package/dist/es2015/avatar/models/size.js +0 -4
  388. package/dist/es2015/avatar/models/theme-color.js +0 -4
  389. package/dist/es2015/avatar.module.js +0 -28
  390. package/dist/es2015/card/card-actions.component.js +0 -146
  391. package/dist/es2015/card/card-body.component.js +0 -30
  392. package/dist/es2015/card/card-footer.component.js +0 -30
  393. package/dist/es2015/card/card-header.component.js +0 -30
  394. package/dist/es2015/card/card.component.js +0 -101
  395. package/dist/es2015/card/directives/card-media.directive.js +0 -27
  396. package/dist/es2015/card/directives/card-separator.directive.js +0 -60
  397. package/dist/es2015/card/directives/card-subtitle.directive.js +0 -27
  398. package/dist/es2015/card/directives/card-title.directive.js +0 -27
  399. package/dist/es2015/card/models/actions-layout.js +0 -4
  400. package/dist/es2015/card.module.d.ts +0 -10
  401. package/dist/es2015/common/direction.js +0 -4
  402. package/dist/es2015/common/orientation.js +0 -4
  403. package/dist/es2015/common/preventable-event.d.ts +0 -28
  404. package/dist/es2015/common/preventable-event.js +0 -34
  405. package/dist/es2015/common/styling-classes.js +0 -4
  406. package/dist/es2015/drawer/drawer-container.component.js +0 -109
  407. package/dist/es2015/drawer/drawer-content.component.js +0 -29
  408. package/dist/es2015/drawer/item.component.js +0 -121
  409. package/dist/es2015/drawer/models/drawer-animation.interface.js +0 -4
  410. package/dist/es2015/drawer/models/drawer-item.interface.js +0 -4
  411. package/dist/es2015/drawer/models/mode.js +0 -4
  412. package/dist/es2015/drawer/models/position.js +0 -4
  413. package/dist/es2015/drawer/template-directives/drawer-template.directive.js +0 -26
  414. package/dist/es2015/drawer/template-directives/footer-template.directive.js +0 -24
  415. package/dist/es2015/drawer/template-directives/header-template.directive.js +0 -24
  416. package/dist/es2015/drawer/template-directives/item-template.directive.js +0 -24
  417. package/dist/es2015/drawer/template-directives.js +0 -8
  418. package/dist/es2015/drawer/types.js +0 -4
  419. package/dist/es2015/drawer.module.d.ts +0 -10
  420. package/dist/es2015/expansionpanel/expansionpanel-title.directive.js +0 -25
  421. package/dist/es2015/expansionpanel.module.d.ts +0 -10
  422. package/dist/es2015/expansionpanel.module.js +0 -31
  423. package/dist/es2015/gridlayout.module.d.ts +0 -10
  424. package/dist/es2015/gridlayout.module.js +0 -30
  425. package/dist/es2015/index.d.ts +0 -29
  426. package/dist/es2015/index.js +0 -29
  427. package/dist/es2015/index.metadata.json +0 -1
  428. package/dist/es2015/layouts/gridlayout-item.component.js +0 -53
  429. package/dist/es2015/layouts/models/gridlayout-gap-settings.js +0 -4
  430. package/dist/es2015/layouts/models/gridlayout-row-col-size.js +0 -4
  431. package/dist/es2015/layouts/models/layout-align-settings.js +0 -4
  432. package/dist/es2015/layouts/models/layout-horizontal-align.js +0 -4
  433. package/dist/es2015/layouts/models/layout-vertical-align.js +0 -4
  434. package/dist/es2015/layouts/models.js +0 -4
  435. package/dist/es2015/main.js +0 -72
  436. package/dist/es2015/panelbar/panelbar-content.directive.js +0 -22
  437. package/dist/es2015/panelbar/panelbar-expand-mode.js +0 -30
  438. package/dist/es2015/panelbar/panelbar-item-model.js +0 -4
  439. package/dist/es2015/panelbar/panelbar-item-template.directive.js +0 -22
  440. package/dist/es2015/panelbar.module.d.ts +0 -17
  441. package/dist/es2015/splitter.module.d.ts +0 -14
  442. package/dist/es2015/stacklayout.module.js +0 -28
  443. package/dist/es2015/stepper/list.component.js +0 -161
  444. package/dist/es2015/stepper/localization/custom-messages.component.js +0 -36
  445. package/dist/es2015/stepper/localization/localized-messages.directive.js +0 -33
  446. package/dist/es2015/stepper/localization/messages.js +0 -16
  447. package/dist/es2015/stepper/models/orientation.js +0 -4
  448. package/dist/es2015/stepper/models/step-predicate.js +0 -4
  449. package/dist/es2015/stepper/models/step-type.js +0 -4
  450. package/dist/es2015/stepper/models/stepper-step.interface.js +0 -4
  451. package/dist/es2015/stepper/template-directives/indicator-template.directive.js +0 -24
  452. package/dist/es2015/stepper/template-directives/label-template.directive.js +0 -24
  453. package/dist/es2015/stepper/template-directives/step-template.directive.js +0 -24
  454. package/dist/es2015/stepper/template-directives.js +0 -7
  455. package/dist/es2015/stepper/types.js +0 -4
  456. package/dist/es2015/stepper.module.d.ts +0 -10
  457. package/dist/es2015/tabstrip/events.js +0 -6
  458. package/dist/es2015/tabstrip/localization/custom-messages.component.js +0 -36
  459. package/dist/es2015/tabstrip/localization/localized-messages.directive.js +0 -31
  460. package/dist/es2015/tabstrip/localization/messages.js +0 -16
  461. package/dist/es2015/tabstrip/models/button-state-change.js +0 -4
  462. package/dist/es2015/tabstrip/models/scroll-buttons-visibility.js +0 -4
  463. package/dist/es2015/tabstrip/models/tab-alignment.js +0 -4
  464. package/dist/es2015/tabstrip/models/tab-position.js +0 -4
  465. package/dist/es2015/tabstrip/models/tabstrip-tab.component.js +0 -82
  466. package/dist/es2015/tabstrip/rendering/tab.component.d.ts +0 -28
  467. package/dist/es2015/tabstrip/rendering/tab.component.js +0 -116
  468. package/dist/es2015/tabstrip/scrollable-button.component.d.ts +0 -29
  469. package/dist/es2015/tabstrip/scrollable-button.component.js +0 -110
  470. package/dist/es2015/tabstrip.module.d.ts +0 -16
  471. package/dist/es2015/tilelayout/models/dragging-config.interface.js +0 -4
  472. package/dist/es2015/tilelayout/models/flowmode.type.js +0 -4
  473. package/dist/es2015/tilelayout/models/gap.interface.js +0 -4
  474. package/dist/es2015/tilelayout/preventable-event.d.ts +0 -21
  475. package/dist/es2015/tilelayout/preventable-event.js +0 -27
  476. package/dist/es2015/tilelayout/tilelayout-item-body.component.js +0 -36
  477. package/dist/es2015/tilelayout/tilelayout-item-header.component.js +0 -48
  478. package/dist/es2015/tilelayout.module.d.ts +0 -16
  479. package/dist/fesm5/index.js +0 -9179
  480. package/dist/npm/avatar/avatar.component.js +0 -359
  481. package/dist/npm/avatar/models/fill.js +0 -6
  482. package/dist/npm/avatar/models/models.js +0 -6
  483. package/dist/npm/avatar/models/rounded.js +0 -6
  484. package/dist/npm/avatar/models/shape.js +0 -6
  485. package/dist/npm/avatar/models/size.js +0 -6
  486. package/dist/npm/avatar/models/theme-color.js +0 -6
  487. package/dist/npm/avatar.module.js +0 -31
  488. package/dist/npm/card/card-actions.component.js +0 -153
  489. package/dist/npm/card/card-body.component.js +0 -28
  490. package/dist/npm/card/card-footer.component.js +0 -28
  491. package/dist/npm/card/card-header.component.js +0 -28
  492. package/dist/npm/card/card.component.js +0 -116
  493. package/dist/npm/card/directives/card-media.directive.js +0 -27
  494. package/dist/npm/card/directives/card-separator.directive.js +0 -68
  495. package/dist/npm/card/directives/card-subtitle.directive.js +0 -27
  496. package/dist/npm/card/directives/card-title.directive.js +0 -27
  497. package/dist/npm/card/models/actions-layout.js +0 -6
  498. package/dist/npm/card/models/card-action.js +0 -15
  499. package/dist/npm/card.module.js +0 -49
  500. package/dist/npm/common/direction.js +0 -6
  501. package/dist/npm/common/dom-queries.js +0 -55
  502. package/dist/npm/common/orientation.js +0 -6
  503. package/dist/npm/common/preventable-event.js +0 -38
  504. package/dist/npm/common/styling-classes.js +0 -6
  505. package/dist/npm/common/util.js +0 -93
  506. package/dist/npm/drawer/animations.js +0 -150
  507. package/dist/npm/drawer/drawer-container.component.js +0 -135
  508. package/dist/npm/drawer/drawer-content.component.js +0 -30
  509. package/dist/npm/drawer/drawer.component.js +0 -407
  510. package/dist/npm/drawer/drawer.service.js +0 -47
  511. package/dist/npm/drawer/events/select-event.js +0 -19
  512. package/dist/npm/drawer/item.component.js +0 -125
  513. package/dist/npm/drawer/list.component.js +0 -121
  514. package/dist/npm/drawer/models/constants.js +0 -10
  515. package/dist/npm/drawer/models/drawer-animation.interface.js +0 -6
  516. package/dist/npm/drawer/models/drawer-item.interface.js +0 -6
  517. package/dist/npm/drawer/models/mode.js +0 -6
  518. package/dist/npm/drawer/models/position.js +0 -6
  519. package/dist/npm/drawer/template-directives/drawer-template.directive.js +0 -29
  520. package/dist/npm/drawer/template-directives/footer-template.directive.js +0 -27
  521. package/dist/npm/drawer/template-directives/header-template.directive.js +0 -27
  522. package/dist/npm/drawer/template-directives/item-template.directive.js +0 -27
  523. package/dist/npm/drawer/template-directives.js +0 -14
  524. package/dist/npm/drawer/types.js +0 -6
  525. package/dist/npm/drawer/util.js +0 -18
  526. package/dist/npm/drawer.module.js +0 -47
  527. package/dist/npm/expansionpanel/animations.js +0 -27
  528. package/dist/npm/expansionpanel/events/action-event.js +0 -19
  529. package/dist/npm/expansionpanel/expansionpanel-title.directive.js +0 -28
  530. package/dist/npm/expansionpanel/expansionpanel.component.js +0 -443
  531. package/dist/npm/expansionpanel.module.js +0 -34
  532. package/dist/npm/gridlayout.module.js +0 -33
  533. package/dist/npm/index.js +0 -53
  534. package/dist/npm/layout.module.js +0 -73
  535. package/dist/npm/layouts/grid-layout.component.js +0 -157
  536. package/dist/npm/layouts/gridlayout-item.component.js +0 -54
  537. package/dist/npm/layouts/models/gridlayout-gap-settings.js +0 -6
  538. package/dist/npm/layouts/models/gridlayout-row-col-size.js +0 -6
  539. package/dist/npm/layouts/models/layout-align-settings.js +0 -6
  540. package/dist/npm/layouts/models/layout-horizontal-align.js +0 -6
  541. package/dist/npm/layouts/models/layout-vertical-align.js +0 -6
  542. package/dist/npm/layouts/models.js +0 -6
  543. package/dist/npm/layouts/stack-layout.component.js +0 -173
  544. package/dist/npm/layouts/util.js +0 -104
  545. package/dist/npm/main.js +0 -132
  546. package/dist/npm/package-metadata.js +0 -17
  547. package/dist/npm/panelbar/panelbar-content.directive.js +0 -25
  548. package/dist/npm/panelbar/panelbar-expand-mode.js +0 -32
  549. package/dist/npm/panelbar/panelbar-item-model.js +0 -6
  550. package/dist/npm/panelbar/panelbar-item-template.directive.js +0 -25
  551. package/dist/npm/panelbar/panelbar-item-title.directive.js +0 -48
  552. package/dist/npm/panelbar/panelbar-item.component.js +0 -457
  553. package/dist/npm/panelbar/panelbar.component.js +0 -559
  554. package/dist/npm/panelbar/panelbar.service.js +0 -45
  555. package/dist/npm/panelbar.module.js +0 -46
  556. package/dist/npm/splitter/splitter-bar.component.js +0 -287
  557. package/dist/npm/splitter/splitter-pane.component.js +0 -272
  558. package/dist/npm/splitter/splitter.component.js +0 -228
  559. package/dist/npm/splitter/splitter.service.js +0 -155
  560. package/dist/npm/splitter.module.js +0 -44
  561. package/dist/npm/stacklayout.module.js +0 -31
  562. package/dist/npm/stepper/events/activate-event.js +0 -19
  563. package/dist/npm/stepper/list.component.js +0 -146
  564. package/dist/npm/stepper/localization/custom-messages.component.js +0 -46
  565. package/dist/npm/stepper/localization/localized-messages.directive.js +0 -37
  566. package/dist/npm/stepper/localization/messages.js +0 -24
  567. package/dist/npm/stepper/models/constants.js +0 -10
  568. package/dist/npm/stepper/models/orientation.js +0 -6
  569. package/dist/npm/stepper/models/step-predicate.js +0 -6
  570. package/dist/npm/stepper/models/step-type.js +0 -6
  571. package/dist/npm/stepper/models/stepper-step.interface.js +0 -6
  572. package/dist/npm/stepper/step.component.js +0 -274
  573. package/dist/npm/stepper/stepper.component.js +0 -330
  574. package/dist/npm/stepper/stepper.service.js +0 -163
  575. package/dist/npm/stepper/template-directives/indicator-template.directive.js +0 -27
  576. package/dist/npm/stepper/template-directives/label-template.directive.js +0 -27
  577. package/dist/npm/stepper/template-directives/step-template.directive.js +0 -27
  578. package/dist/npm/stepper/template-directives.js +0 -12
  579. package/dist/npm/stepper/types.js +0 -6
  580. package/dist/npm/stepper.module.js +0 -49
  581. package/dist/npm/tabstrip/constants.js +0 -35
  582. package/dist/npm/tabstrip/directives/tab-content.directive.js +0 -51
  583. package/dist/npm/tabstrip/directives/tab-title.directive.js +0 -56
  584. package/dist/npm/tabstrip/events/select-event.js +0 -28
  585. package/dist/npm/tabstrip/events/tabclose-event.js +0 -24
  586. package/dist/npm/tabstrip/events/tabscroll-event.js +0 -21
  587. package/dist/npm/tabstrip/events.js +0 -10
  588. package/dist/npm/tabstrip/localization/custom-messages.component.js +0 -46
  589. package/dist/npm/tabstrip/localization/localized-messages.directive.js +0 -37
  590. package/dist/npm/tabstrip/localization/messages.js +0 -24
  591. package/dist/npm/tabstrip/models/button-state-change.js +0 -6
  592. package/dist/npm/tabstrip/models/scroll-buttons-visibility.js +0 -6
  593. package/dist/npm/tabstrip/models/scrollable-settings.js +0 -30
  594. package/dist/npm/tabstrip/models/tab-alignment.js +0 -6
  595. package/dist/npm/tabstrip/models/tab-position.js +0 -6
  596. package/dist/npm/tabstrip/models/tabstrip-tab.component.js +0 -90
  597. package/dist/npm/tabstrip/rendering/tab.component.js +0 -133
  598. package/dist/npm/tabstrip/scrollable-button.component.js +0 -133
  599. package/dist/npm/tabstrip/tabstrip-scroll.service.js +0 -228
  600. package/dist/npm/tabstrip/tabstrip.component.js +0 -531
  601. package/dist/npm/tabstrip/tabstrip.service.js +0 -160
  602. package/dist/npm/tabstrip/util.js +0 -113
  603. package/dist/npm/tabstrip.module.js +0 -53
  604. package/dist/npm/tilelayout/constants.js +0 -72
  605. package/dist/npm/tilelayout/dragging-service.js +0 -432
  606. package/dist/npm/tilelayout/models/dragging-config.interface.js +0 -6
  607. package/dist/npm/tilelayout/models/flowmode.type.js +0 -6
  608. package/dist/npm/tilelayout/models/gap.interface.js +0 -6
  609. package/dist/npm/tilelayout/preventable-event.js +0 -31
  610. package/dist/npm/tilelayout/reorder-event.js +0 -41
  611. package/dist/npm/tilelayout/resize-event.js +0 -37
  612. package/dist/npm/tilelayout/tilelayout-item-body.component.js +0 -34
  613. package/dist/npm/tilelayout/tilelayout-item-header.component.js +0 -57
  614. package/dist/npm/tilelayout/tilelayout-item.component.js +0 -200
  615. package/dist/npm/tilelayout/tilelayout-resize-handle.directive.js +0 -63
  616. package/dist/npm/tilelayout/tilelayout.component.js +0 -346
  617. package/dist/npm/tilelayout/util.js +0 -90
  618. package/dist/npm/tilelayout.module.js +0 -45
  619. package/dist/systemjs/kendo-angular-layout.js +0 -5
@@ -1,330 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_l10n_1 = require("@progress/kendo-angular-l10n");
10
- var step_template_directive_1 = require("./template-directives/step-template.directive");
11
- var label_template_directive_1 = require("./template-directives/label-template.directive");
12
- var util_1 = require("../common/util");
13
- var indicator_template_directive_1 = require("./template-directives/indicator-template.directive");
14
- var stepper_service_1 = require("./stepper.service");
15
- var DEFAULT_ANIMATION_DURATION = 400;
16
- /**
17
- * Represents the [Kendo UI Stepper component for Angular]({% slug overview_stepper %}).
18
- *
19
- * @example
20
- * ```ts-preview
21
- * _@Component({
22
- * selector: 'my-app',
23
- * template: `
24
- * <kendo-stepper [steps]="steps">
25
- * </kendo-stepper>
26
- * `
27
- * })
28
- * class AppComponent {
29
- * public steps: Array<StepperStep> = [
30
- * { label: 'Step One' }, { label: 'Step Two' }, { label: 'Step Three' }
31
- * ];
32
- * }
33
- * ```
34
- */
35
- var StepperComponent = /** @class */ (function () {
36
- function StepperComponent(renderer, elem, localization, stepperService) {
37
- var _this = this;
38
- this.renderer = renderer;
39
- this.elem = elem;
40
- this.localization = localization;
41
- this.stepperService = stepperService;
42
- this.hostClasses = true;
43
- this.ariaRole = 'navigation';
44
- this.displayStyle = 'grid';
45
- /**
46
- * Specifies the type of the steps in the Stepper.
47
- *
48
- * The possible values are:
49
- * * (Default) `indicator`
50
- * * `label`
51
- * * `full`
52
- */
53
- this.stepType = 'indicator';
54
- /**
55
- * Specifies the linear flow of the Stepper.
56
- *
57
- * @default true
58
- */
59
- this.linear = true;
60
- /**
61
- * Specifies the orientation of the Stepper
62
- * ([see example]({% slug orientation_stepper %})).
63
- *
64
- * The possible values are:
65
- * * (Default) `horizontal`
66
- * * `vertical`
67
- */
68
- this.orientation = 'horizontal';
69
- /**
70
- * Specifies the duration of the progress indicator animation in milliseconds. Defaults to `400ms`.
71
- *
72
- * The possible values are:
73
- * * Boolean
74
- * * (Default) `true`
75
- * * false
76
- * * Number
77
- */
78
- this.animation = true;
79
- /**
80
- * Fires when a step is about to be activated. This event is preventable.
81
- */
82
- this.activate = new core_1.EventEmitter();
83
- /**
84
- * Fires when the `currentStep` property of the component was updated.
85
- * Used to provide a two-way binding for the `currentStep` property.
86
- */
87
- this.currentStepChange = new core_1.EventEmitter();
88
- this._steps = [];
89
- this.dynamicRTLSubscription = this.localization.changes.subscribe(function (_a) {
90
- var rtl = _a.rtl;
91
- _this.direction = rtl ? 'rtl' : 'ltr';
92
- });
93
- this.stepperService.owner = this;
94
- }
95
- Object.defineProperty(StepperComponent.prototype, "linearClass", {
96
- get: function () {
97
- return this.linear;
98
- },
99
- enumerable: true,
100
- configurable: true
101
- });
102
- Object.defineProperty(StepperComponent.prototype, "currentStep", {
103
- get: function () {
104
- return this.stepperService.currentStep;
105
- },
106
- /**
107
- * The index of the current step.
108
- */
109
- set: function (value) {
110
- this.stepperService.currentStep = value;
111
- },
112
- enumerable: true,
113
- configurable: true
114
- });
115
- Object.defineProperty(StepperComponent.prototype, "steps", {
116
- get: function () {
117
- return this._steps;
118
- },
119
- /**
120
- * The collection of steps that will be rendered in the Stepper.
121
- * ([see example]({% slug step_appearance_stepper %}))
122
- */
123
- set: function (steps) {
124
- if (util_1.isPresent(steps) && steps.length > 0) {
125
- this._steps = steps;
126
- }
127
- },
128
- enumerable: true,
129
- configurable: true
130
- });
131
- StepperComponent.prototype.ngOnInit = function () {
132
- this.applyHostStyling();
133
- };
134
- StepperComponent.prototype.ngOnChanges = function (changes) {
135
- if (changes.steps && !changes.steps.firstChange) {
136
- this.applyHostStyling();
137
- }
138
- if (changes.orientation) {
139
- this.resetHostStyling();
140
- this.applyHostStyling();
141
- }
142
- };
143
- StepperComponent.prototype.ngOnDestroy = function () {
144
- if (this.dynamicRTLSubscription) {
145
- this.dynamicRTLSubscription.unsubscribe();
146
- }
147
- };
148
- /**
149
- * Manually triggers the validity check configured by the [isValid]({% slug api_layout_stepperstep %}#toc-isvalid) property of the steps ([see example]({% slug step_validation_stepper %}#toc-triggering-the-validation)).
150
- *
151
- * Steps that have their [validate]({% slug api_layout_stepperstep %}#toc-validate) property set to `false`, will not be validated.
152
- */
153
- StepperComponent.prototype.validateSteps = function () {
154
- this.stepperService.validateSteps();
155
- };
156
- StepperComponent.prototype.applyHostStyling = function () {
157
- var stepFramesStyle = this.orientation === 'horizontal' ? 'grid-template-columns' : 'grid-template-rows';
158
- var stepFramesValue = "repeat(" + this.steps.length * 2 + ", 1fr)";
159
- this.renderer.setStyle(this.elem.nativeElement, stepFramesStyle, stepFramesValue);
160
- };
161
- StepperComponent.prototype.resetHostStyling = function () {
162
- this.renderer.removeStyle(this.elem.nativeElement, 'grid-template-columns');
163
- this.renderer.removeStyle(this.elem.nativeElement, 'grid-template-rows');
164
- };
165
- Object.defineProperty(StepperComponent.prototype, "progressAnimation", {
166
- /**
167
- * @hidden
168
- */
169
- get: function () {
170
- return { duration: this.animationDuration };
171
- },
172
- enumerable: true,
173
- configurable: true
174
- });
175
- Object.defineProperty(StepperComponent.prototype, "animationDuration", {
176
- /**
177
- * @hidden
178
- */
179
- get: function () {
180
- if (typeof this.animation === 'number') {
181
- return this.animation;
182
- }
183
- if (typeof this.animation === 'boolean' && this.animation) {
184
- return DEFAULT_ANIMATION_DURATION;
185
- }
186
- return 0;
187
- },
188
- enumerable: true,
189
- configurable: true
190
- });
191
- Object.defineProperty(StepperComponent.prototype, "stepsListStyling", {
192
- /**
193
- * @hidden
194
- */
195
- get: function () {
196
- if (this.orientation === 'horizontal') {
197
- return { 'grid-column-start': 1, 'grid-column-end': -1 };
198
- }
199
- return { 'grid-row-start': 1, 'grid-row-end': -1 };
200
- },
201
- enumerable: true,
202
- configurable: true
203
- });
204
- Object.defineProperty(StepperComponent.prototype, "progressBarStyling", {
205
- /**
206
- * @hidden
207
- */
208
- get: function () {
209
- if (this.orientation === 'horizontal') {
210
- return {
211
- 'grid-column-start': 2,
212
- 'grid-column-end': this.steps.length * 2
213
- };
214
- }
215
- return {
216
- 'grid-row-start': 2,
217
- 'grid-row-end': this.steps.length * 2
218
- };
219
- },
220
- enumerable: true,
221
- configurable: true
222
- });
223
- Object.defineProperty(StepperComponent.prototype, "isHorizontal", {
224
- /***
225
- * @hidden
226
- */
227
- get: function () {
228
- return this.stepperService.isHorizontal;
229
- },
230
- enumerable: true,
231
- configurable: true
232
- });
233
- tslib_1.__decorate([
234
- core_1.HostBinding('class.k-widget'),
235
- core_1.HostBinding('class.k-stepper'),
236
- tslib_1.__metadata("design:type", Boolean)
237
- ], StepperComponent.prototype, "hostClasses", void 0);
238
- tslib_1.__decorate([
239
- core_1.HostBinding('class.k-stepper-linear'),
240
- tslib_1.__metadata("design:type", Boolean),
241
- tslib_1.__metadata("design:paramtypes", [])
242
- ], StepperComponent.prototype, "linearClass", null);
243
- tslib_1.__decorate([
244
- core_1.HostBinding('attr.role'),
245
- tslib_1.__metadata("design:type", String)
246
- ], StepperComponent.prototype, "ariaRole", void 0);
247
- tslib_1.__decorate([
248
- core_1.HostBinding('attr.dir'),
249
- tslib_1.__metadata("design:type", String)
250
- ], StepperComponent.prototype, "direction", void 0);
251
- tslib_1.__decorate([
252
- core_1.HostBinding('style.display'),
253
- tslib_1.__metadata("design:type", String)
254
- ], StepperComponent.prototype, "displayStyle", void 0);
255
- tslib_1.__decorate([
256
- core_1.Input(),
257
- tslib_1.__metadata("design:type", String)
258
- ], StepperComponent.prototype, "stepType", void 0);
259
- tslib_1.__decorate([
260
- core_1.Input(),
261
- tslib_1.__metadata("design:type", Boolean)
262
- ], StepperComponent.prototype, "linear", void 0);
263
- tslib_1.__decorate([
264
- core_1.Input(),
265
- tslib_1.__metadata("design:type", String)
266
- ], StepperComponent.prototype, "orientation", void 0);
267
- tslib_1.__decorate([
268
- core_1.Input(),
269
- tslib_1.__metadata("design:type", Number),
270
- tslib_1.__metadata("design:paramtypes", [Number])
271
- ], StepperComponent.prototype, "currentStep", null);
272
- tslib_1.__decorate([
273
- core_1.Input(),
274
- tslib_1.__metadata("design:type", Array),
275
- tslib_1.__metadata("design:paramtypes", [Array])
276
- ], StepperComponent.prototype, "steps", null);
277
- tslib_1.__decorate([
278
- core_1.Input(),
279
- tslib_1.__metadata("design:type", String)
280
- ], StepperComponent.prototype, "successIcon", void 0);
281
- tslib_1.__decorate([
282
- core_1.Input(),
283
- tslib_1.__metadata("design:type", String)
284
- ], StepperComponent.prototype, "errorIcon", void 0);
285
- tslib_1.__decorate([
286
- core_1.Input(),
287
- tslib_1.__metadata("design:type", Object)
288
- ], StepperComponent.prototype, "animation", void 0);
289
- tslib_1.__decorate([
290
- core_1.Output(),
291
- tslib_1.__metadata("design:type", core_1.EventEmitter)
292
- ], StepperComponent.prototype, "activate", void 0);
293
- tslib_1.__decorate([
294
- core_1.Output(),
295
- tslib_1.__metadata("design:type", core_1.EventEmitter)
296
- ], StepperComponent.prototype, "currentStepChange", void 0);
297
- tslib_1.__decorate([
298
- core_1.ContentChild(step_template_directive_1.StepperStepTemplateDirective, { static: false }),
299
- tslib_1.__metadata("design:type", step_template_directive_1.StepperStepTemplateDirective)
300
- ], StepperComponent.prototype, "stepTemplate", void 0);
301
- tslib_1.__decorate([
302
- core_1.ContentChild(label_template_directive_1.StepperLabelTemplateDirective, { static: false }),
303
- tslib_1.__metadata("design:type", label_template_directive_1.StepperLabelTemplateDirective)
304
- ], StepperComponent.prototype, "labelTemplate", void 0);
305
- tslib_1.__decorate([
306
- core_1.ContentChild(indicator_template_directive_1.StepperIndicatorTemplateDirective, { static: false }),
307
- tslib_1.__metadata("design:type", indicator_template_directive_1.StepperIndicatorTemplateDirective)
308
- ], StepperComponent.prototype, "indicatorTemplate", void 0);
309
- StepperComponent = tslib_1.__decorate([
310
- core_1.Component({
311
- exportAs: 'kendoStepper',
312
- providers: [
313
- kendo_angular_l10n_1.LocalizationService,
314
- stepper_service_1.StepperService,
315
- {
316
- provide: kendo_angular_l10n_1.L10N_PREFIX,
317
- useValue: 'kendo.stepper'
318
- }
319
- ],
320
- selector: 'kendo-stepper',
321
- template: "\n <ng-container kendoStepperLocalizedMessages\n i18n-optional=\"kendo.stepper.optional|The text for the optional segment of the step label\"\n optional=\"Optional\"\n >\n </ng-container>\n <ol kendoStepperList\n [stepType]='stepType'\n [linear]='linear'\n [orientation]='orientation'\n [steps]='steps'\n [currentStep]='currentStep'\n [successIcon]='successIcon'\n [errorIcon]='errorIcon'\n [indicatorTemplate]='indicatorTemplate?.templateRef'\n [labelTemplate]='labelTemplate?.templateRef'\n [stepTemplate]='stepTemplate?.templateRef'\n class='k-step-list'\n [class.k-step-list-horizontal]='isHorizontal'\n [class.k-step-list-vertical]='!isHorizontal'\n [ngStyle]='stepsListStyling'>\n </ol>\n\n <kendo-progressbar *ngIf='steps.length > 0'\n [attr.aria-hidden]='true'\n [animation]='progressAnimation'\n [max]='steps.length - 1'\n [label]='false'\n [orientation]='orientation'\n [reverse]='!isHorizontal'\n [value]='currentStep'\n [ngStyle]='progressBarStyling'>\n </kendo-progressbar>\n "
322
- }),
323
- tslib_1.__metadata("design:paramtypes", [core_1.Renderer2,
324
- core_1.ElementRef,
325
- kendo_angular_l10n_1.LocalizationService,
326
- stepper_service_1.StepperService])
327
- ], StepperComponent);
328
- return StepperComponent;
329
- }());
330
- exports.StepperComponent = StepperComponent;
@@ -1,163 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var activate_event_1 = require("./events/activate-event");
10
- var kendo_angular_common_1 = require("@progress/kendo-angular-common");
11
- var kendo_angular_common_2 = require("@progress/kendo-angular-common");
12
- var kendo_angular_l10n_1 = require("@progress/kendo-angular-l10n");
13
- var util_1 = require("../common/util");
14
- var DEFAULT_CURRENT_STEP = 0;
15
- var handlers = {};
16
- handlers[kendo_angular_common_2.Keys.ArrowLeft] = 'left';
17
- handlers[kendo_angular_common_2.Keys.ArrowRight] = 'right';
18
- handlers[kendo_angular_common_2.Keys.ArrowUp] = 'up';
19
- handlers[kendo_angular_common_2.Keys.ArrowDown] = 'down';
20
- handlers[kendo_angular_common_2.Keys.Home] = 'home';
21
- handlers[kendo_angular_common_2.Keys.End] = 'end';
22
- handlers[kendo_angular_common_2.Keys.Enter] = 'enter';
23
- handlers[kendo_angular_common_2.Keys.Space] = 'enter';
24
- var handlersRTL = Object.assign({}, handlers);
25
- handlersRTL[kendo_angular_common_2.Keys.ArrowLeft] = 'right';
26
- handlersRTL[kendo_angular_common_2.Keys.ArrowRight] = 'left';
27
- /**
28
- * @hidden
29
- */
30
- var StepperService = /** @class */ (function () {
31
- function StepperService(localization, ngZone, changeDetector) {
32
- this.localization = localization;
33
- this.ngZone = ngZone;
34
- this.changeDetector = changeDetector;
35
- this.currentStep = DEFAULT_CURRENT_STEP;
36
- this.triggerValidation = new core_1.EventEmitter();
37
- this.focusedStepChange = new core_1.EventEmitter();
38
- }
39
- Object.defineProperty(StepperService.prototype, "handlers", {
40
- get: function () {
41
- return this.localization.rtl ? handlersRTL : handlers;
42
- },
43
- enumerable: true,
44
- configurable: true
45
- });
46
- StepperService.prototype.emit = function (event, eventArgs) {
47
- var stepper = this.owner;
48
- if (kendo_angular_common_1.hasObservers(stepper[event])) {
49
- stepper[event].emit(eventArgs);
50
- }
51
- return eventArgs.isDefaultPrevented();
52
- };
53
- StepperService.prototype.onActivate = function (currentIdx, originalEvent) {
54
- var _this = this;
55
- var eventArgs = new activate_event_1.StepperActivateEvent({
56
- index: currentIdx,
57
- step: this.owner.steps[currentIdx],
58
- originalEvent: originalEvent,
59
- sender: this.owner
60
- });
61
- this.ngZone.run(function () {
62
- if (!_this.emit('activate', eventArgs)) {
63
- _this.currentStep = currentIdx;
64
- _this.owner['currentStepChange'].emit(currentIdx);
65
- _this.changeDetector.detectChanges();
66
- }
67
- });
68
- };
69
- StepperService.prototype.validateSteps = function () {
70
- this.triggerValidation.emit();
71
- };
72
- StepperService.prototype.keydown = function (e) {
73
- var current = this.focusedStep || this.currentStep;
74
- var handler = this.handlers[e.keyCode];
75
- if (!util_1.isPresent(current)) {
76
- return;
77
- }
78
- if (handler) {
79
- e.preventDefault();
80
- this[handler](e);
81
- }
82
- };
83
- StepperService.prototype.left = function () {
84
- if (!this.isHorizontal) {
85
- return;
86
- }
87
- this.focusPrevStep();
88
- };
89
- StepperService.prototype.right = function () {
90
- if (!this.isHorizontal) {
91
- return;
92
- }
93
- this.focusNextStep();
94
- };
95
- StepperService.prototype.up = function () {
96
- if (this.isHorizontal) {
97
- return;
98
- }
99
- this.focusPrevStep();
100
- };
101
- StepperService.prototype.down = function () {
102
- if (this.isHorizontal) {
103
- return;
104
- }
105
- this.focusNextStep();
106
- };
107
- StepperService.prototype.home = function () {
108
- this.focusedStep = 0;
109
- this.focusedStepChange.emit();
110
- };
111
- StepperService.prototype.end = function () {
112
- this.focusedStep = this.owner.steps.length - 1;
113
- this.focusedStepChange.emit();
114
- };
115
- StepperService.prototype.enter = function (event) {
116
- if (this.focusedStep === this.currentStep) {
117
- return;
118
- }
119
- if (this.isStepDisabled(this.focusedStep)) {
120
- return;
121
- }
122
- if (this.owner.linear && this.isPrevOrNextStep(this.focusedStep) === false) {
123
- return;
124
- }
125
- this.onActivate(this.focusedStep, event);
126
- };
127
- StepperService.prototype.focus = function (focusedIdx) {
128
- this.focusedStep = focusedIdx;
129
- };
130
- StepperService.prototype.focusNextStep = function () {
131
- if (this.focusedStep < this.owner.steps.length) {
132
- this.focusedStep += 1;
133
- this.focusedStepChange.emit();
134
- }
135
- };
136
- StepperService.prototype.focusPrevStep = function () {
137
- if (this.focusedStep > 0) {
138
- this.focusedStep -= 1;
139
- this.focusedStepChange.emit();
140
- }
141
- };
142
- StepperService.prototype.isStepDisabled = function (index) {
143
- return this.owner.steps[index].disabled;
144
- };
145
- StepperService.prototype.isPrevOrNextStep = function (index) {
146
- return index === this.currentStep + 1 || index === this.currentStep - 1;
147
- };
148
- Object.defineProperty(StepperService.prototype, "isHorizontal", {
149
- get: function () {
150
- return this.owner.orientation === 'horizontal';
151
- },
152
- enumerable: true,
153
- configurable: true
154
- });
155
- StepperService = tslib_1.__decorate([
156
- core_1.Injectable(),
157
- tslib_1.__metadata("design:paramtypes", [kendo_angular_l10n_1.LocalizationService,
158
- core_1.NgZone,
159
- core_1.ChangeDetectorRef])
160
- ], StepperService);
161
- return StepperService;
162
- }());
163
- exports.StepperService = StepperService;
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- /**
10
- * Represents a template that defines the content of the Step indicator.
11
- * To define the template, nest an `<ng-template>` tag
12
- * with the `kendoStepperIndicatorTemplate` directive inside the `<kendo-stepper>` tag.
13
- */
14
- var StepperIndicatorTemplateDirective = /** @class */ (function () {
15
- function StepperIndicatorTemplateDirective(templateRef) {
16
- this.templateRef = templateRef;
17
- }
18
- StepperIndicatorTemplateDirective = tslib_1.__decorate([
19
- core_1.Directive({
20
- selector: '[kendoStepperIndicatorTemplate]'
21
- }),
22
- tslib_1.__param(0, core_1.Optional()),
23
- tslib_1.__metadata("design:paramtypes", [core_1.TemplateRef])
24
- ], StepperIndicatorTemplateDirective);
25
- return StepperIndicatorTemplateDirective;
26
- }());
27
- exports.StepperIndicatorTemplateDirective = StepperIndicatorTemplateDirective;
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- /**
10
- * Represents a template that defines the content of the Step label.
11
- * To define the template, nest an `<ng-template>` tag
12
- * with the `kendoStepperLabelTemplate` directive inside the `<kendo-stepper>` tag.
13
- */
14
- var StepperLabelTemplateDirective = /** @class */ (function () {
15
- function StepperLabelTemplateDirective(templateRef) {
16
- this.templateRef = templateRef;
17
- }
18
- StepperLabelTemplateDirective = tslib_1.__decorate([
19
- core_1.Directive({
20
- selector: '[kendoStepperLabelTemplate]'
21
- }),
22
- tslib_1.__param(0, core_1.Optional()),
23
- tslib_1.__metadata("design:paramtypes", [core_1.TemplateRef])
24
- ], StepperLabelTemplateDirective);
25
- return StepperLabelTemplateDirective;
26
- }());
27
- exports.StepperLabelTemplateDirective = StepperLabelTemplateDirective;
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- /**
10
- * Represents a template that defines the content of the whole Step.
11
- * To define the template, nest an `<ng-template>` tag
12
- * with the `kendoStepperStepTemplate` directive inside the `<kendo-stepper>` tag.
13
- */
14
- var StepperStepTemplateDirective = /** @class */ (function () {
15
- function StepperStepTemplateDirective(templateRef) {
16
- this.templateRef = templateRef;
17
- }
18
- StepperStepTemplateDirective = tslib_1.__decorate([
19
- core_1.Directive({
20
- selector: '[kendoStepperStepTemplate]'
21
- }),
22
- tslib_1.__param(0, core_1.Optional()),
23
- tslib_1.__metadata("design:paramtypes", [core_1.TemplateRef])
24
- ], StepperStepTemplateDirective);
25
- return StepperStepTemplateDirective;
26
- }());
27
- exports.StepperStepTemplateDirective = StepperStepTemplateDirective;
@@ -1,12 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var indicator_template_directive_1 = require("./template-directives/indicator-template.directive");
8
- exports.StepperIndicatorTemplateDirective = indicator_template_directive_1.StepperIndicatorTemplateDirective;
9
- var label_template_directive_1 = require("./template-directives/label-template.directive");
10
- exports.StepperLabelTemplateDirective = label_template_directive_1.StepperLabelTemplateDirective;
11
- var step_template_directive_1 = require("./template-directives/step-template.directive");
12
- exports.StepperStepTemplateDirective = step_template_directive_1.StepperStepTemplateDirective;
@@ -1,6 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,49 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var common_1 = require("@angular/common");
10
- var kendo_angular_progressbar_1 = require("@progress/kendo-angular-progressbar");
11
- var stepper_component_1 = require("./stepper/stepper.component");
12
- var step_component_1 = require("./stepper/step.component");
13
- var list_component_1 = require("./stepper/list.component");
14
- var indicator_template_directive_1 = require("./stepper/template-directives/indicator-template.directive");
15
- var label_template_directive_1 = require("./stepper/template-directives/label-template.directive");
16
- var step_template_directive_1 = require("./stepper/template-directives/step-template.directive");
17
- var localized_messages_directive_1 = require("./stepper/localization/localized-messages.directive");
18
- var custom_messages_component_1 = require("./stepper/localization/custom-messages.component");
19
- var templateDirectives = [
20
- step_template_directive_1.StepperStepTemplateDirective,
21
- label_template_directive_1.StepperLabelTemplateDirective,
22
- indicator_template_directive_1.StepperIndicatorTemplateDirective
23
- ];
24
- var exportedModules = [
25
- stepper_component_1.StepperComponent,
26
- custom_messages_component_1.StepperCustomMessagesComponent
27
- ].concat(templateDirectives);
28
- var declarations = [
29
- step_component_1.StepperStepComponent,
30
- list_component_1.StepperListComponent,
31
- localized_messages_directive_1.LocalizedStepperMessagesDirective
32
- ].concat(exportedModules);
33
- /**
34
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
35
- * definition for the Stepper component.
36
- */
37
- var StepperModule = /** @class */ (function () {
38
- function StepperModule() {
39
- }
40
- StepperModule = tslib_1.__decorate([
41
- core_1.NgModule({
42
- declarations: [declarations],
43
- exports: [exportedModules],
44
- imports: [common_1.CommonModule, kendo_angular_progressbar_1.ProgressBarModule]
45
- })
46
- ], StepperModule);
47
- return StepperModule;
48
- }());
49
- exports.StepperModule = StepperModule;