@progress/kendo-angular-buttons 7.0.0-next.202111120840 → 7.0.2-dev.202201201235

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 (283) hide show
  1. package/LICENSE.md +1 -1
  2. package/NOTICE.txt +119 -79
  3. package/README.md +1 -1
  4. package/dist/cdn/js/kendo-angular-buttons.js +20 -0
  5. package/dist/cdn/main.js +5 -0
  6. package/dist/es/button/button.directive.js +769 -0
  7. package/{esm2015 → dist/es}/button/button.module.js +13 -13
  8. package/dist/es/button/button.service.js +24 -0
  9. package/{esm2015 → dist/es}/button/selection-settings.js +0 -1
  10. package/dist/es/buttongroup/buttongroup.component.js +353 -0
  11. package/dist/es/buttongroup/buttongroup.module.js +30 -0
  12. package/{esm2015 → dist/es}/buttons.module.js +12 -12
  13. package/{esm2015 → dist/es}/chip/chip-content-click-event-args.interface.js +0 -1
  14. package/{esm2015 → dist/es}/chip/chip-list-remove-event-args.interface.js +0 -1
  15. package/dist/es/chip/chip-list.component.js +214 -0
  16. package/{esm2015 → dist/es}/chip/chip-remove-event-args.interface.js +0 -1
  17. package/dist/es/chip/chip.component.js +449 -0
  18. package/dist/es/chip/chip.module.js +55 -0
  19. package/{esm2015 → dist/es}/chip/models/selection.js +0 -1
  20. package/dist/es/common/models/fillmode.js +4 -0
  21. package/dist/es/common/models/rounded.js +4 -0
  22. package/{esm2015 → dist/es}/common/models/shape.js +0 -1
  23. package/{esm2015 → dist/es}/common/models/size.js +0 -1
  24. package/dist/es/common/models/styling-classes.js +4 -0
  25. package/{esm2015 → dist/es}/common/models/theme-color.js +0 -1
  26. package/{esm2015/button-look.js → dist/es/common/models.js} +0 -1
  27. package/{esm2015 → dist/es}/direction.js +0 -1
  28. package/dist/es/dropdownbutton/dropdownbutton.component.js +704 -0
  29. package/dist/es/dropdownbutton/dropdownbutton.module.js +32 -0
  30. package/dist/es/floatingactionbutton/animations/animations.js +33 -0
  31. package/dist/es/floatingactionbutton/dial-item.component.js +143 -0
  32. package/dist/es/floatingactionbutton/dial-list.component.js +76 -0
  33. package/dist/es/floatingactionbutton/floatingactionbutton.component.js +903 -0
  34. package/dist/es/floatingactionbutton/floatingactionbutton.module.js +65 -0
  35. package/{esm2015 → dist/es}/floatingactionbutton/models/align.js +0 -1
  36. package/{esm2015 → dist/es}/floatingactionbutton/models/item-animation.interface.js +0 -1
  37. package/{esm2015 → dist/es}/floatingactionbutton/models/item-click.event.js +0 -1
  38. package/{esm2015 → dist/es}/floatingactionbutton/models/item.interface.js +0 -1
  39. package/{esm2015 → dist/es}/floatingactionbutton/models/offset.js +0 -1
  40. package/{esm2015 → dist/es}/floatingactionbutton/models/position-mode.js +0 -1
  41. package/dist/es/floatingactionbutton/templates/dial-item-template.directive.js +26 -0
  42. package/dist/es/floatingactionbutton/templates/fab-template.directive.js +26 -0
  43. package/dist/es/floatingactionbutton/utils.js +38 -0
  44. package/dist/es/focusable/focus.service.js +43 -0
  45. package/dist/es/focusable/focusable.directive.js +68 -0
  46. package/dist/es/index.js +22 -0
  47. package/dist/es/listbutton/button-item-template.directive.js +68 -0
  48. package/dist/es/listbutton/list-button.js +243 -0
  49. package/{esm2015 → dist/es}/listbutton/list-item-model.js +0 -1
  50. package/dist/es/listbutton/list.component.js +85 -0
  51. package/dist/es/listbutton/list.module.js +33 -0
  52. package/{esm2015 → dist/es}/listbutton/popup-settings.js +0 -1
  53. package/dist/es/listbutton/template-context.directive.js +40 -0
  54. package/{esm2015 → dist/es}/main.js +1 -5
  55. package/{esm2015 → dist/es}/navigation/key-events.js +0 -0
  56. package/{esm2015 → dist/es}/navigation/navigation-action.js +0 -0
  57. package/dist/es/navigation/navigation-config.js +9 -0
  58. package/dist/es/navigation/navigation.service.js +114 -0
  59. package/dist/es/package-metadata.js +15 -0
  60. package/dist/es/preventable-event.js +29 -0
  61. package/dist/es/splitbutton/localization/custom-messages.component.js +44 -0
  62. package/dist/es/splitbutton/localization/localized-messages.directive.js +35 -0
  63. package/dist/es/splitbutton/localization/messages.js +22 -0
  64. package/dist/es/splitbutton/splitbutton.component.js +830 -0
  65. package/dist/es/splitbutton/splitbutton.module.js +34 -0
  66. package/dist/es/util.js +97 -0
  67. package/{button → dist/es2015/button}/button.directive.d.ts +101 -46
  68. package/dist/es2015/button/button.directive.js +671 -0
  69. package/{button → dist/es2015/button}/button.module.d.ts +0 -5
  70. package/dist/es2015/button/button.module.js +47 -0
  71. package/{button → dist/es2015/button}/button.service.d.ts +1 -7
  72. package/dist/es2015/button/button.service.js +26 -0
  73. package/{button → dist/es2015/button}/selection-settings.d.ts +0 -0
  74. package/dist/es2015/button/selection-settings.js +4 -0
  75. package/{buttongroup → dist/es2015/buttongroup}/buttongroup.component.d.ts +9 -28
  76. package/{esm2015 → dist/es2015}/buttongroup/buttongroup.component.js +116 -121
  77. package/dist/es2015/buttongroup/buttongroup.module.d.ts +14 -0
  78. package/dist/es2015/buttongroup/buttongroup.module.js +27 -0
  79. package/{buttons.module.d.ts → dist/es2015/buttons.module.d.ts} +0 -10
  80. package/dist/es2015/buttons.module.js +51 -0
  81. package/{chip → dist/es2015/chip}/chip-content-click-event-args.interface.d.ts +0 -0
  82. package/dist/es2015/chip/chip-content-click-event-args.interface.js +4 -0
  83. package/{chip → dist/es2015/chip}/chip-list-remove-event-args.interface.d.ts +0 -0
  84. package/dist/es2015/chip/chip-list-remove-event-args.interface.js +4 -0
  85. package/{chip → dist/es2015/chip}/chip-list.component.d.ts +21 -8
  86. package/dist/es2015/chip/chip-list.component.js +197 -0
  87. package/{chip → dist/es2015/chip}/chip-remove-event-args.interface.d.ts +0 -0
  88. package/dist/es2015/chip/chip-remove-event-args.interface.js +4 -0
  89. package/{chip → dist/es2015/chip}/chip.component.d.ts +72 -38
  90. package/dist/es2015/chip/chip.component.js +431 -0
  91. package/{chip → dist/es2015/chip}/chip.module.d.ts +0 -7
  92. package/{esm2015 → dist/es2015}/chip/chip.module.js +11 -16
  93. package/{chip → dist/es2015/chip}/models/selection.d.ts +0 -0
  94. package/dist/es2015/chip/models/selection.js +4 -0
  95. package/{util.d.ts → dist/es2015/common/models/fillmode.d.ts} +4 -8
  96. package/dist/es2015/common/models/fillmode.js +4 -0
  97. package/dist/es2015/common/models/rounded.d.ts +12 -0
  98. package/dist/es2015/common/models/rounded.js +4 -0
  99. package/dist/es2015/common/models/shape.d.ts +9 -0
  100. package/dist/es2015/common/models/shape.js +4 -0
  101. package/dist/es2015/common/models/size.d.ts +17 -0
  102. package/dist/es2015/common/models/size.js +4 -0
  103. package/{esm2015/kendo-angular-buttons.js → dist/es2015/common/models/styling-classes.d.ts} +5 -2
  104. package/dist/es2015/common/models/styling-classes.js +4 -0
  105. package/{common → dist/es2015/common}/models/theme-color.d.ts +15 -4
  106. package/dist/es2015/common/models/theme-color.js +4 -0
  107. package/{common/models/size.d.ts → dist/es2015/common/models.d.ts} +6 -10
  108. package/dist/es2015/common/models.js +4 -0
  109. package/{direction.d.ts → dist/es2015/direction.d.ts} +0 -0
  110. package/dist/es2015/direction.js +4 -0
  111. package/{dropdownbutton → dist/es2015/dropdownbutton}/dropdownbutton.component.d.ts +74 -29
  112. package/{esm2015 → dist/es2015}/dropdownbutton/dropdownbutton.component.js +257 -179
  113. package/dist/es2015/dropdownbutton/dropdownbutton.module.d.ts +14 -0
  114. package/dist/es2015/dropdownbutton/dropdownbutton.module.js +29 -0
  115. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/animations/animations.d.ts +0 -0
  116. package/{esm2015 → dist/es2015}/floatingactionbutton/animations/animations.js +0 -0
  117. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/dial-item.component.d.ts +5 -8
  118. package/dist/es2015/floatingactionbutton/dial-item.component.js +133 -0
  119. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/dial-list.component.d.ts +2 -5
  120. package/dist/es2015/floatingactionbutton/dial-list.component.js +81 -0
  121. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/floatingactionbutton.component.d.ts +47 -49
  122. package/{esm2015 → dist/es2015}/floatingactionbutton/floatingactionbutton.component.js +212 -192
  123. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/floatingactionbutton.module.d.ts +0 -13
  124. package/{esm2015 → dist/es2015}/floatingactionbutton/floatingactionbutton.module.js +11 -19
  125. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/align.d.ts +0 -0
  126. package/dist/es2015/floatingactionbutton/models/align.js +4 -0
  127. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/item-animation.interface.d.ts +0 -0
  128. package/dist/es2015/floatingactionbutton/models/item-animation.interface.js +4 -0
  129. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/item-click.event.d.ts +0 -0
  130. package/dist/es2015/floatingactionbutton/models/item-click.event.js +4 -0
  131. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/item.interface.d.ts +0 -0
  132. package/dist/es2015/floatingactionbutton/models/item.interface.js +4 -0
  133. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/offset.d.ts +0 -0
  134. package/dist/es2015/floatingactionbutton/models/offset.js +4 -0
  135. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/models/position-mode.d.ts +0 -0
  136. package/dist/es2015/floatingactionbutton/models/position-mode.js +4 -0
  137. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/templates/dial-item-template.directive.d.ts +0 -3
  138. package/dist/es2015/floatingactionbutton/templates/dial-item-template.directive.js +25 -0
  139. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/templates/fab-template.directive.d.ts +0 -3
  140. package/dist/es2015/floatingactionbutton/templates/fab-template.directive.js +25 -0
  141. package/{floatingactionbutton → dist/es2015/floatingactionbutton}/utils.d.ts +0 -0
  142. package/{esm2015 → dist/es2015}/floatingactionbutton/utils.js +0 -0
  143. package/{focusable → dist/es2015/focusable}/focus.service.d.ts +1 -5
  144. package/{esm2015 → dist/es2015}/focusable/focus.service.js +10 -8
  145. package/{focusable → dist/es2015/focusable}/focusable.directive.d.ts +0 -3
  146. package/{esm2015 → dist/es2015}/focusable/focusable.directive.js +20 -19
  147. package/dist/es2015/index.d.ts +22 -0
  148. package/dist/es2015/index.js +22 -0
  149. package/dist/es2015/index.metadata.json +1 -0
  150. package/{listbutton → dist/es2015/listbutton}/button-item-template.directive.d.ts +0 -3
  151. package/{esm2015 → dist/es2015}/listbutton/button-item-template.directive.js +12 -13
  152. package/{listbutton → dist/es2015/listbutton}/list-button.d.ts +2 -6
  153. package/{esm2015 → dist/es2015}/listbutton/list-button.js +6 -16
  154. package/{listbutton → dist/es2015/listbutton}/list-item-model.d.ts +0 -0
  155. package/dist/es2015/listbutton/list-item-model.js +4 -0
  156. package/{listbutton → dist/es2015/listbutton}/list.component.d.ts +3 -3
  157. package/dist/es2015/listbutton/list.component.js +113 -0
  158. package/dist/es2015/listbutton/list.module.d.ts +9 -0
  159. package/dist/es2015/listbutton/list.module.js +30 -0
  160. package/{listbutton → dist/es2015/listbutton}/popup-settings.d.ts +0 -0
  161. package/dist/es2015/listbutton/popup-settings.js +4 -0
  162. package/{listbutton → dist/es2015/listbutton}/template-context.directive.d.ts +1 -4
  163. package/dist/es2015/listbutton/template-context.directive.js +35 -0
  164. package/{main.d.ts → dist/es2015/main.d.ts} +5 -9
  165. package/dist/es2015/main.js +22 -0
  166. package/{navigation → dist/es2015/navigation}/key-events.d.ts +0 -0
  167. package/dist/es2015/navigation/key-events.js +13 -0
  168. package/{navigation → dist/es2015/navigation}/navigation-action.d.ts +0 -0
  169. package/dist/es2015/navigation/navigation-action.js +19 -0
  170. package/{navigation → dist/es2015/navigation}/navigation-config.d.ts +0 -0
  171. package/{esm2015 → dist/es2015}/navigation/navigation-config.js +0 -0
  172. package/{navigation → dist/es2015/navigation}/navigation.service.d.ts +0 -3
  173. package/{esm2015 → dist/es2015}/navigation/navigation.service.js +9 -11
  174. package/{package-metadata.d.ts → dist/es2015/package-metadata.d.ts} +0 -0
  175. package/{esm2015 → dist/es2015}/package-metadata.js +1 -1
  176. package/{preventable-event.d.ts → dist/es2015/preventable-event.d.ts} +0 -0
  177. package/{esm2015 → dist/es2015}/preventable-event.js +0 -0
  178. package/dist/es2015/splitbutton/localization/custom-messages.component.d.ts +15 -0
  179. package/dist/es2015/splitbutton/localization/custom-messages.component.js +36 -0
  180. package/dist/es2015/splitbutton/localization/localized-messages.directive.d.ts +13 -0
  181. package/dist/es2015/splitbutton/localization/localized-messages.directive.js +31 -0
  182. package/dist/es2015/splitbutton/localization/messages.d.ts +32 -0
  183. package/dist/es2015/splitbutton/localization/messages.js +16 -0
  184. package/{splitbutton → dist/es2015/splitbutton}/splitbutton.component.d.ts +74 -34
  185. package/{esm2015 → dist/es2015}/splitbutton/splitbutton.component.js +288 -203
  186. package/dist/es2015/splitbutton/splitbutton.module.d.ts +14 -0
  187. package/dist/es2015/splitbutton/splitbutton.module.js +31 -0
  188. package/dist/es2015/util.d.ts +41 -0
  189. package/dist/es2015/util.js +95 -0
  190. package/{fesm2015/kendo-angular-buttons.js → dist/fesm2015/index.js} +2394 -1838
  191. package/dist/fesm5/index.js +5561 -0
  192. package/dist/npm/button/button.directive.js +771 -0
  193. package/dist/npm/button/button.module.js +52 -0
  194. package/dist/npm/button/button.service.js +26 -0
  195. package/dist/npm/button/selection-settings.js +6 -0
  196. package/dist/npm/buttongroup/buttongroup.component.js +355 -0
  197. package/dist/npm/buttongroup/buttongroup.module.js +32 -0
  198. package/dist/npm/buttons.module.js +56 -0
  199. package/dist/npm/chip/chip-content-click-event-args.interface.js +6 -0
  200. package/dist/npm/chip/chip-list-remove-event-args.interface.js +6 -0
  201. package/dist/npm/chip/chip-list.component.js +216 -0
  202. package/dist/npm/chip/chip-remove-event-args.interface.js +6 -0
  203. package/dist/npm/chip/chip.component.js +451 -0
  204. package/dist/npm/chip/chip.module.js +57 -0
  205. package/dist/npm/chip/models/selection.js +6 -0
  206. package/dist/npm/common/models/fillmode.js +6 -0
  207. package/dist/npm/common/models/rounded.js +6 -0
  208. package/dist/npm/common/models/shape.js +6 -0
  209. package/dist/npm/common/models/size.js +6 -0
  210. package/dist/npm/common/models/styling-classes.js +6 -0
  211. package/dist/npm/common/models/theme-color.js +6 -0
  212. package/dist/npm/common/models.js +6 -0
  213. package/dist/npm/direction.js +6 -0
  214. package/dist/npm/dropdownbutton/dropdownbutton.component.js +706 -0
  215. package/dist/npm/dropdownbutton/dropdownbutton.module.js +34 -0
  216. package/dist/npm/floatingactionbutton/animations/animations.js +37 -0
  217. package/dist/npm/floatingactionbutton/dial-item.component.js +145 -0
  218. package/dist/npm/floatingactionbutton/dial-list.component.js +78 -0
  219. package/dist/npm/floatingactionbutton/floatingactionbutton.component.js +905 -0
  220. package/dist/npm/floatingactionbutton/floatingactionbutton.module.js +67 -0
  221. package/dist/npm/floatingactionbutton/models/align.js +6 -0
  222. package/dist/npm/floatingactionbutton/models/item-animation.interface.js +6 -0
  223. package/dist/npm/floatingactionbutton/models/item-click.event.js +6 -0
  224. package/dist/npm/floatingactionbutton/models/item.interface.js +6 -0
  225. package/dist/npm/floatingactionbutton/models/offset.js +6 -0
  226. package/dist/npm/floatingactionbutton/models/position-mode.js +6 -0
  227. package/dist/npm/floatingactionbutton/templates/dial-item-template.directive.js +28 -0
  228. package/dist/npm/floatingactionbutton/templates/fab-template.directive.js +28 -0
  229. package/dist/npm/floatingactionbutton/utils.js +42 -0
  230. package/dist/npm/focusable/focus.service.js +45 -0
  231. package/dist/npm/focusable/focusable.directive.js +70 -0
  232. package/dist/npm/index.js +39 -0
  233. package/dist/npm/listbutton/button-item-template.directive.js +70 -0
  234. package/dist/npm/listbutton/list-button.js +245 -0
  235. package/dist/npm/listbutton/list-item-model.js +6 -0
  236. package/dist/npm/listbutton/list.component.js +87 -0
  237. package/dist/npm/listbutton/list.module.js +35 -0
  238. package/dist/npm/listbutton/popup-settings.js +6 -0
  239. package/dist/npm/listbutton/template-context.directive.js +42 -0
  240. package/dist/npm/main.js +45 -0
  241. package/dist/npm/navigation/key-events.js +15 -0
  242. package/dist/npm/navigation/navigation-action.js +21 -0
  243. package/dist/npm/navigation/navigation-config.js +11 -0
  244. package/dist/npm/navigation/navigation.service.js +116 -0
  245. package/dist/npm/package-metadata.js +17 -0
  246. package/dist/npm/preventable-event.js +31 -0
  247. package/dist/npm/splitbutton/localization/custom-messages.component.js +46 -0
  248. package/dist/npm/splitbutton/localization/localized-messages.directive.js +37 -0
  249. package/dist/npm/splitbutton/localization/messages.js +24 -0
  250. package/dist/npm/splitbutton/splitbutton.component.js +832 -0
  251. package/dist/npm/splitbutton/splitbutton.module.js +36 -0
  252. package/dist/npm/util.js +100 -0
  253. package/dist/systemjs/kendo-angular-buttons.js +5 -0
  254. package/package.json +110 -35
  255. package/schematics/ngAdd/index.js +2 -5
  256. package/schematics/ngAdd/index.js.map +1 -1
  257. package/bundles/kendo-angular-buttons.umd.js +0 -5
  258. package/button-look.d.ts +0 -21
  259. package/buttongroup/buttongroup.module.d.ts +0 -21
  260. package/chip/models/chip-look.d.ts +0 -18
  261. package/chip/models/type.d.ts +0 -21
  262. package/common/models/shape.d.ts +0 -16
  263. package/dropdownbutton/dropdownbutton.module.d.ts +0 -23
  264. package/esm2015/button/button.directive.js +0 -488
  265. package/esm2015/button/button.service.js +0 -28
  266. package/esm2015/buttongroup/buttongroup.module.js +0 -30
  267. package/esm2015/chip/chip-list.component.js +0 -145
  268. package/esm2015/chip/chip.component.js +0 -335
  269. package/esm2015/chip/models/chip-look.js +0 -5
  270. package/esm2015/chip/models/type.js +0 -5
  271. package/esm2015/dropdownbutton/dropdownbutton.module.js +0 -32
  272. package/esm2015/floatingactionbutton/dial-item.component.js +0 -126
  273. package/esm2015/floatingactionbutton/dial-list.component.js +0 -89
  274. package/esm2015/floatingactionbutton/templates/dial-item-template.directive.js +0 -27
  275. package/esm2015/floatingactionbutton/templates/fab-template.directive.js +0 -27
  276. package/esm2015/listbutton/list.component.js +0 -120
  277. package/esm2015/listbutton/list.module.js +0 -39
  278. package/esm2015/listbutton/template-context.directive.js +0 -33
  279. package/esm2015/splitbutton/splitbutton.module.js +0 -32
  280. package/esm2015/util.js +0 -39
  281. package/kendo-angular-buttons.d.ts +0 -9
  282. package/listbutton/list.module.d.ts +0 -18
  283. package/splitbutton/splitbutton.module.d.ts +0 -23
@@ -2,9 +2,11 @@
2
2
  * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- /* eslint-disable no-access-missing-member */
6
- import { Component, ElementRef, Input, Output, HostBinding, HostListener, EventEmitter, ContentChild, ViewChild, ViewContainerRef } from '@angular/core';
5
+ import * as tslib_1 from "tslib";
6
+ /* tslint:disable:no-access-missing-member */
7
+ import { Component, ElementRef, TemplateRef, Input, Output, HostBinding, HostListener, EventEmitter, ContentChild, ViewChild, ViewContainerRef, NgZone, ChangeDetectorRef, Renderer2 } from '@angular/core';
7
8
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
9
+ import { PopupService } from '@progress/kendo-angular-popup';
8
10
  import { ListButton } from './../listbutton/list-button';
9
11
  import { ButtonItemTemplateDirective } from './../listbutton/button-item-template.directive';
10
12
  import { FocusService } from './../focusable/focus.service';
@@ -14,20 +16,14 @@ import { isDocumentAvailable, guid, isChanged } from '@progress/kendo-angular-co
14
16
  import { isPresent, tick } from './../util';
15
17
  import { PreventableEvent } from '../preventable-event';
16
18
  import { Keys } from '@progress/kendo-angular-common';
17
- import * as i0 from "@angular/core";
18
- import * as i1 from "./../focusable/focus.service";
19
- import * as i2 from "./../navigation/navigation.service";
20
- import * as i3 from "@progress/kendo-angular-popup";
21
- import * as i4 from "@progress/kendo-angular-l10n";
22
- import * as i5 from "../listbutton/list.component";
23
- import * as i6 from "../button/button.directive";
24
- import * as i7 from "@angular/common";
19
+ import { replaceMessagePlaceholder, getStylingClasses } from '../util';
25
20
  const NAVIGATION_SETTINGS = {
26
21
  useLeftRightArrows: true
27
22
  };
23
+ const ɵ0 = NAVIGATION_SETTINGS;
28
24
  const NAVIGATION_SETTINGS_PROVIDER = {
29
25
  provide: NAVIGATION_CONFIG,
30
- useValue: NAVIGATION_SETTINGS
26
+ useValue: ɵ0
31
27
  };
32
28
  /**
33
29
  * Represents the Kendo UI SplitButton component for Angular.
@@ -70,11 +66,13 @@ const NAVIGATION_SETTINGS_PROVIDER = {
70
66
  * }
71
67
  * ```
72
68
  */
73
- export class SplitButtonComponent extends ListButton {
74
- constructor(focusService, navigationService, wrapperRef, zone, popupService, elRef, localization, cdr) {
69
+ let SplitButtonComponent = class SplitButtonComponent extends ListButton {
70
+ constructor(focusService, navigationService, wrapperRef, zone, popupService, elRef, localization, cdr, renderer) {
75
71
  super(focusService, navigationService, wrapperRef, zone, localization, cdr);
76
72
  this.popupService = popupService;
77
73
  this.elRef = elRef;
74
+ this.localization = localization;
75
+ this.renderer = renderer;
78
76
  /**
79
77
  * Sets the text of the SplitButton.
80
78
  */
@@ -99,13 +97,35 @@ export class SplitButtonComponent extends ListButton {
99
97
  */
100
98
  this.imageUrl = '';
101
99
  /**
102
- * Changes the visual appearance by using alternative styling options.
100
+ * The size property specifies the padding of the SplitButton
101
+ * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-size)).
103
102
  *
104
- * The available values are:
105
- * * `flat`
106
- * * `outline`
103
+ * The possible values are:
104
+ * * `'small'`
105
+ * * `'medium'` (default)
106
+ * * `'large'`
107
+ * * `null`
107
108
  */
108
- this.look = 'default';
109
+ this.size = 'medium';
110
+ /**
111
+ * The SplitButton allows you to specify predefined theme colors.
112
+ * The theme color will be applied as a background and border color while also amending the text color accordingly
113
+ * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-themeColor)).
114
+ *
115
+ * The possible values are:
116
+ * * `base` —Applies coloring based on the `base` theme color. (default)
117
+ * * `primary` —Applies coloring based on the `primary` theme color.
118
+ * * `secondary`—Applies coloring based on the `secondary` theme color.
119
+ * * `tertiary`— Applies coloring based on the `tertiary` theme color.
120
+ * * `info`—Applies coloring based on the `info` theme color.
121
+ * * `success`— Applies coloring based on the `success` theme color.
122
+ * * `warning`— Applies coloring based on the `warning` theme color.
123
+ * * `error`— Applies coloring based on the `error` theme color.
124
+ * * `dark`— Applies coloring based on the `dark` theme color.
125
+ * * `light`— Applies coloring based on the `light` theme color.
126
+ * * `inverse`— Applies coloring based on the `inverse` theme color.
127
+ */
128
+ this.themeColor = 'base';
109
129
  /**
110
130
  * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
111
131
  */
@@ -168,11 +188,11 @@ export class SplitButtonComponent extends ListButton {
168
188
  /**
169
189
  * Fires each time the SplitButton gets focused.
170
190
  */
171
- this.onFocus = new EventEmitter(); //eslint-disable-line no-output-rename
191
+ this.onFocus = new EventEmitter(); //tslint:disable-line:no-output-rename
172
192
  /**
173
193
  * Fires each time the SplitButton gets blurred.
174
194
  */
175
- this.onBlur = new EventEmitter(); //eslint-disable-line no-output-rename
195
+ this.onBlur = new EventEmitter(); //tslint:disable-line:no-output-rename
176
196
  /**
177
197
  * Fires each time the popup is about to open.
178
198
  * This event is preventable. If you cancel the event, the popup will remain closed.
@@ -183,16 +203,52 @@ export class SplitButtonComponent extends ListButton {
183
203
  * This event is preventable. If you cancel the event, the popup will remain open.
184
204
  */
185
205
  this.close = new EventEmitter();
186
- this.listId = guid();
187
206
  /**
188
207
  * @hidden
189
208
  */
190
209
  this.activeArrow = false;
210
+ this.listId = guid();
191
211
  this.buttonText = '';
192
212
  this.lockFocus = false;
213
+ this._rounded = 'medium';
214
+ this._fillMode = "solid";
193
215
  this._itemClick = this.itemClick;
194
216
  this._blur = this.onBlur;
195
217
  }
218
+ /**
219
+ * The rounded property specifies the border radius of the SplitButton
220
+ * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-rounded)).
221
+ *
222
+ * The possible values are:
223
+ * * `'small'`
224
+ * * `'medium'` (default)
225
+ * * `'large'`
226
+ * * `'full'`
227
+ * * `null`
228
+ */
229
+ set rounded(rounded) {
230
+ this.handleClasses(rounded, 'rounded');
231
+ this._rounded = rounded;
232
+ }
233
+ get rounded() {
234
+ return this._rounded;
235
+ }
236
+ /**
237
+ * The fillMode property specifies the background and border styles of the SplitButton
238
+ * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-fillMode)).
239
+ *
240
+ * The available values are:
241
+ * * `solid` (default)
242
+ * * `flat`
243
+ * * `outline`
244
+ * * `link`
245
+ */
246
+ set fillMode(fillMode) {
247
+ this._fillMode = fillMode === 'clear' ? 'flat' : fillMode;
248
+ }
249
+ get fillMode() {
250
+ return this._fillMode;
251
+ }
196
252
  /**
197
253
  * When set to `true`, disables a SplitButton item
198
254
  * ([see example]({% slug databinding_splitbutton %}#toc-arrays-of-complex-data)).
@@ -278,12 +334,6 @@ export class SplitButtonComponent extends ListButton {
278
334
  get isFocused() {
279
335
  return this._isFocused && !this._disabled;
280
336
  }
281
- get isFlat() {
282
- return this.look === 'flat';
283
- }
284
- get isOutline() {
285
- return this.look === 'outline';
286
- }
287
337
  get widgetClasses() {
288
338
  return true;
289
339
  }
@@ -294,7 +344,8 @@ export class SplitButtonComponent extends ListButton {
294
344
  * @hidden
295
345
  */
296
346
  get ariaLabel() {
297
- return `${this.buttonText} splitbutton`;
347
+ const localizationMsg = this.localization.get('splitButtonLabel') || '';
348
+ return replaceMessagePlaceholder(localizationMsg, 'buttonText', this.buttonText);
298
349
  }
299
350
  /**
300
351
  * @hidden
@@ -369,6 +420,7 @@ export class SplitButtonComponent extends ListButton {
369
420
  */
370
421
  ngAfterViewInit() {
371
422
  this.updateButtonText();
423
+ this.handleClasses(this.rounded, 'rounded');
372
424
  }
373
425
  /**
374
426
  * @hidden
@@ -516,100 +568,200 @@ export class SplitButtonComponent extends ListButton {
516
568
  this.popupRef = null;
517
569
  }
518
570
  }
519
- }
520
- SplitButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: SplitButtonComponent, deps: [{ token: i1.FocusService }, { token: i2.NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3.PopupService }, { token: i0.ElementRef }, { token: i4.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
521
- SplitButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: SplitButtonComponent, selector: "kendo-splitbutton", inputs: { text: "text", icon: "icon", iconClass: "iconClass", type: "type", imageUrl: "imageUrl", look: "look", disabled: "disabled", popupSettings: "popupSettings", tabIndex: "tabIndex", textField: "textField", data: "data", buttonClass: "buttonClass", arrowButtonClass: "arrowButtonClass", arrowButtonIcon: "arrowButtonIcon" }, outputs: { buttonClick: "buttonClick", itemClick: "itemClick", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { listeners: { "keydown": "keydown($event)", "keypress": "keypress($event)", "keyup": "keyup($event)" }, properties: { "class.k-state-focused": "this.isFocused", "class.k-flat": "this.isFlat", "class.k-outline": "this.isOutline", "class.k-split-button": "this.widgetClasses", "class.k-button-group": "this.widgetClasses", "attr.dir": "this.dir" } }, providers: [
522
- FocusService,
523
- NavigationService,
524
- NAVIGATION_SETTINGS_PROVIDER,
525
- LocalizationService,
526
- {
527
- provide: L10N_PREFIX,
528
- useValue: 'kendo.splitbutton'
571
+ handleClasses(value, input) {
572
+ const elem = this.wrapperRef.nativeElement;
573
+ const classes = getStylingClasses('button', input, this[input], value);
574
+ if (classes.toRemove) {
575
+ this.renderer.removeClass(elem, classes.toRemove);
529
576
  }
530
- ], queries: [{ propertyName: "itemTemplate", first: true, predicate: ButtonItemTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "button", first: true, predicate: ["button"], descendants: true, static: true }, { propertyName: "arrowButton", first: true, predicate: ["arrowButton"], descendants: true, read: ElementRef, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "containerRef", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], exportAs: ["kendoSplitButton"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
531
- <button
532
- kendoButton
533
- #button
534
- role="listbox"
535
- [type]="type"
536
- [look]="look"
537
- [tabindex]="componentTabIndex"
538
- [disabled]="disabled"
539
- [icon]="icon"
540
- [class.k-state-active]="active"
541
- [iconClass]="iconClass"
542
- [imageUrl]="imageUrl"
543
- [ngClass]="buttonClass"
544
- (focus)="onButtonFocus()"
545
- (click)="onButtonClick()"
546
- (blur)="onButtonBlur()"
547
- (mousedown)="toggleButtonActiveState(true)"
548
- (mouseup)="toggleButtonActiveState(false)"
549
- [attr.aria-disabled]="disabled"
550
- [attr.aria-expanded]="openState"
551
- [attr.aria-haspopup]="true"
552
- [attr.aria-owns]="listId"
553
- [attr.aria-label]="ariaLabel"
554
- >
555
- {{ text }}<ng-content></ng-content>
556
- </button>
557
- <button
558
- kendoButton
559
- #arrowButton
560
- type="button"
561
- [class.k-state-active]="activeArrow"
562
- [disabled]="disabled"
563
- [icon]="arrowButtonIcon"
564
- [look]="look"
565
- [tabindex]="-1"
566
- [ngClass]="arrowButtonClass"
567
- (click)="onArrowButtonClick()"
568
- (mousedown)="toggleArrowButtonActiveState(true)"
569
- (mouseup)="toggleArrowButtonActiveState(false)"
570
- ></button>
571
- <ng-template #popupTemplate>
572
- <kendo-button-list
573
- [id]="listId"
574
- [data]="data"
575
- [textField]="textField"
576
- [itemTemplate]="itemTemplate"
577
- (onItemClick)="onItemClick($event)"
578
- (keydown)="keyDownHandler($event)"
579
- (keypress)="keyPressHandler($event)"
580
- (keyup)="keyUpHandler($event)"
581
- [attr.dir]="dir"
582
- >
583
- </kendo-button-list>
584
- </ng-template>
585
- <ng-container #container></ng-container>
586
- `, isInline: true, components: [{ type: i5.ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate"], outputs: ["onItemClick", "onItemBlur"] }], directives: [{ type: i6.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "primary", "look", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "role"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
587
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: SplitButtonComponent, decorators: [{
588
- type: Component,
589
- args: [{
590
- exportAs: 'kendoSplitButton',
591
- providers: [
592
- FocusService,
593
- NavigationService,
594
- NAVIGATION_SETTINGS_PROVIDER,
595
- LocalizationService,
596
- {
597
- provide: L10N_PREFIX,
598
- useValue: 'kendo.splitbutton'
599
- }
600
- ],
601
- selector: 'kendo-splitbutton',
602
- template: `
577
+ if (classes.toAdd) {
578
+ this.renderer.addClass(elem, classes.toAdd);
579
+ }
580
+ }
581
+ };
582
+ tslib_1.__decorate([
583
+ Input(),
584
+ tslib_1.__metadata("design:type", String)
585
+ ], SplitButtonComponent.prototype, "text", void 0);
586
+ tslib_1.__decorate([
587
+ Input(),
588
+ tslib_1.__metadata("design:type", String)
589
+ ], SplitButtonComponent.prototype, "icon", void 0);
590
+ tslib_1.__decorate([
591
+ Input(),
592
+ tslib_1.__metadata("design:type", String)
593
+ ], SplitButtonComponent.prototype, "iconClass", void 0);
594
+ tslib_1.__decorate([
595
+ Input(),
596
+ tslib_1.__metadata("design:type", String)
597
+ ], SplitButtonComponent.prototype, "type", void 0);
598
+ tslib_1.__decorate([
599
+ Input(),
600
+ tslib_1.__metadata("design:type", String)
601
+ ], SplitButtonComponent.prototype, "imageUrl", void 0);
602
+ tslib_1.__decorate([
603
+ Input(),
604
+ tslib_1.__metadata("design:type", String)
605
+ ], SplitButtonComponent.prototype, "size", void 0);
606
+ tslib_1.__decorate([
607
+ Input(),
608
+ tslib_1.__metadata("design:type", String),
609
+ tslib_1.__metadata("design:paramtypes", [String])
610
+ ], SplitButtonComponent.prototype, "rounded", null);
611
+ tslib_1.__decorate([
612
+ Input(),
613
+ tslib_1.__metadata("design:type", String),
614
+ tslib_1.__metadata("design:paramtypes", [String])
615
+ ], SplitButtonComponent.prototype, "fillMode", null);
616
+ tslib_1.__decorate([
617
+ Input(),
618
+ tslib_1.__metadata("design:type", String)
619
+ ], SplitButtonComponent.prototype, "themeColor", void 0);
620
+ tslib_1.__decorate([
621
+ Input(),
622
+ tslib_1.__metadata("design:type", Boolean),
623
+ tslib_1.__metadata("design:paramtypes", [Boolean])
624
+ ], SplitButtonComponent.prototype, "disabled", null);
625
+ tslib_1.__decorate([
626
+ Input(),
627
+ tslib_1.__metadata("design:type", Object),
628
+ tslib_1.__metadata("design:paramtypes", [Object])
629
+ ], SplitButtonComponent.prototype, "popupSettings", null);
630
+ tslib_1.__decorate([
631
+ Input(),
632
+ tslib_1.__metadata("design:type", Number)
633
+ ], SplitButtonComponent.prototype, "tabIndex", void 0);
634
+ tslib_1.__decorate([
635
+ Input(),
636
+ tslib_1.__metadata("design:type", String)
637
+ ], SplitButtonComponent.prototype, "textField", void 0);
638
+ tslib_1.__decorate([
639
+ Input(),
640
+ tslib_1.__metadata("design:type", Object),
641
+ tslib_1.__metadata("design:paramtypes", [Object])
642
+ ], SplitButtonComponent.prototype, "data", null);
643
+ tslib_1.__decorate([
644
+ Input(),
645
+ tslib_1.__metadata("design:type", Object)
646
+ ], SplitButtonComponent.prototype, "buttonClass", void 0);
647
+ tslib_1.__decorate([
648
+ Input(),
649
+ tslib_1.__metadata("design:type", Object)
650
+ ], SplitButtonComponent.prototype, "arrowButtonClass", void 0);
651
+ tslib_1.__decorate([
652
+ Input(),
653
+ tslib_1.__metadata("design:type", String)
654
+ ], SplitButtonComponent.prototype, "arrowButtonIcon", void 0);
655
+ tslib_1.__decorate([
656
+ Output(),
657
+ tslib_1.__metadata("design:type", EventEmitter)
658
+ ], SplitButtonComponent.prototype, "buttonClick", void 0);
659
+ tslib_1.__decorate([
660
+ Output(),
661
+ tslib_1.__metadata("design:type", EventEmitter)
662
+ ], SplitButtonComponent.prototype, "itemClick", void 0);
663
+ tslib_1.__decorate([
664
+ Output('focus'),
665
+ tslib_1.__metadata("design:type", EventEmitter)
666
+ ], SplitButtonComponent.prototype, "onFocus", void 0);
667
+ tslib_1.__decorate([
668
+ Output('blur'),
669
+ tslib_1.__metadata("design:type", EventEmitter)
670
+ ], SplitButtonComponent.prototype, "onBlur", void 0);
671
+ tslib_1.__decorate([
672
+ Output(),
673
+ tslib_1.__metadata("design:type", EventEmitter)
674
+ ], SplitButtonComponent.prototype, "open", void 0);
675
+ tslib_1.__decorate([
676
+ Output(),
677
+ tslib_1.__metadata("design:type", EventEmitter)
678
+ ], SplitButtonComponent.prototype, "close", void 0);
679
+ tslib_1.__decorate([
680
+ ContentChild(ButtonItemTemplateDirective, { static: false }),
681
+ tslib_1.__metadata("design:type", ButtonItemTemplateDirective)
682
+ ], SplitButtonComponent.prototype, "itemTemplate", void 0);
683
+ tslib_1.__decorate([
684
+ ViewChild('button', { static: true }),
685
+ tslib_1.__metadata("design:type", ElementRef)
686
+ ], SplitButtonComponent.prototype, "button", void 0);
687
+ tslib_1.__decorate([
688
+ ViewChild('arrowButton', { static: true, read: ElementRef }),
689
+ tslib_1.__metadata("design:type", ElementRef)
690
+ ], SplitButtonComponent.prototype, "arrowButton", void 0);
691
+ tslib_1.__decorate([
692
+ ViewChild('popupTemplate', { static: true }),
693
+ tslib_1.__metadata("design:type", TemplateRef)
694
+ ], SplitButtonComponent.prototype, "popupTemplate", void 0);
695
+ tslib_1.__decorate([
696
+ ViewChild('container', { read: ViewContainerRef, static: true }),
697
+ tslib_1.__metadata("design:type", ViewContainerRef)
698
+ ], SplitButtonComponent.prototype, "containerRef", void 0);
699
+ tslib_1.__decorate([
700
+ HostBinding('class.k-focus'),
701
+ tslib_1.__metadata("design:type", Boolean),
702
+ tslib_1.__metadata("design:paramtypes", [Boolean])
703
+ ], SplitButtonComponent.prototype, "isFocused", null);
704
+ tslib_1.__decorate([
705
+ HostBinding('class.k-split-button'),
706
+ HostBinding('class.k-button-group'),
707
+ tslib_1.__metadata("design:type", Boolean),
708
+ tslib_1.__metadata("design:paramtypes", [])
709
+ ], SplitButtonComponent.prototype, "widgetClasses", null);
710
+ tslib_1.__decorate([
711
+ HostBinding('attr.dir'),
712
+ tslib_1.__metadata("design:type", String),
713
+ tslib_1.__metadata("design:paramtypes", [])
714
+ ], SplitButtonComponent.prototype, "dir", null);
715
+ tslib_1.__decorate([
716
+ HostListener('keydown', ['$event']),
717
+ tslib_1.__metadata("design:type", Function),
718
+ tslib_1.__metadata("design:paramtypes", [Object]),
719
+ tslib_1.__metadata("design:returntype", void 0)
720
+ ], SplitButtonComponent.prototype, "keydown", null);
721
+ tslib_1.__decorate([
722
+ HostListener('keypress', ['$event']),
723
+ tslib_1.__metadata("design:type", Function),
724
+ tslib_1.__metadata("design:paramtypes", [Object]),
725
+ tslib_1.__metadata("design:returntype", void 0)
726
+ ], SplitButtonComponent.prototype, "keypress", null);
727
+ tslib_1.__decorate([
728
+ HostListener('keyup', ['$event']),
729
+ tslib_1.__metadata("design:type", Function),
730
+ tslib_1.__metadata("design:paramtypes", [Object]),
731
+ tslib_1.__metadata("design:returntype", void 0)
732
+ ], SplitButtonComponent.prototype, "keyup", null);
733
+ SplitButtonComponent = tslib_1.__decorate([
734
+ Component({
735
+ exportAs: 'kendoSplitButton',
736
+ providers: [
737
+ FocusService,
738
+ NavigationService,
739
+ NAVIGATION_SETTINGS_PROVIDER,
740
+ LocalizationService,
741
+ {
742
+ provide: L10N_PREFIX,
743
+ useValue: 'kendo.splitbutton'
744
+ }
745
+ ],
746
+ selector: 'kendo-splitbutton',
747
+ template: `
748
+ <ng-container kendoSplitButtonLocalizedMessages
749
+ i18n-splitButtonLabel="kendo.splitbutton.splitButtonLabel|The text for the SplitButton aria-label"
750
+ splitButtonLabel="{{ '{buttonText} splitbutton' }}">
751
+ </ng-container>
603
752
  <button
604
753
  kendoButton
605
754
  #button
606
- role="listbox"
607
755
  [type]="type"
608
- [look]="look"
609
756
  [tabindex]="componentTabIndex"
610
757
  [disabled]="disabled"
758
+ [size]="size"
759
+ [rounded]="rounded"
760
+ [fillMode]="fillMode"
761
+ [themeColor]="themeColor"
611
762
  [icon]="icon"
612
- [class.k-state-active]="active"
763
+ [class.k-active]="active"
764
+ [class.k-icon-button]="!text && icon"
613
765
  [iconClass]="iconClass"
614
766
  [imageUrl]="imageUrl"
615
767
  [ngClass]="buttonClass"
@@ -624,16 +776,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
624
776
  [attr.aria-owns]="listId"
625
777
  [attr.aria-label]="ariaLabel"
626
778
  >
627
- {{ text }}<ng-content></ng-content>
779
+ <span *ngIf="text" class="k-button-text">
780
+ {{ text }}
781
+ </span><ng-content></ng-content>
628
782
  </button>
629
783
  <button
630
784
  kendoButton
631
785
  #arrowButton
632
786
  type="button"
633
- [class.k-state-active]="activeArrow"
787
+ [class.k-active]="activeArrow"
634
788
  [disabled]="disabled"
635
789
  [icon]="arrowButtonIcon"
636
- [look]="look"
790
+ [size]="size"
791
+ [rounded]="rounded"
792
+ [fillMode]="fillMode"
793
+ [themeColor]="fillMode ? themeColor : null"
637
794
  [tabindex]="-1"
638
795
  [ngClass]="arrowButtonClass"
639
796
  (click)="onArrowButtonClick()"
@@ -651,94 +808,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
651
808
  (keypress)="keyPressHandler($event)"
652
809
  (keyup)="keyUpHandler($event)"
653
810
  [attr.dir]="dir"
811
+ [size]="size"
654
812
  >
655
813
  </kendo-button-list>
656
814
  </ng-template>
657
815
  <ng-container #container></ng-container>
658
816
  `
659
- }]
660
- }], ctorParameters: function () { return [{ type: i1.FocusService }, { type: i2.NavigationService }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i3.PopupService }, { type: i0.ElementRef }, { type: i4.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { text: [{
661
- type: Input
662
- }], icon: [{
663
- type: Input
664
- }], iconClass: [{
665
- type: Input
666
- }], type: [{
667
- type: Input
668
- }], imageUrl: [{
669
- type: Input
670
- }], look: [{
671
- type: Input
672
- }], disabled: [{
673
- type: Input
674
- }], popupSettings: [{
675
- type: Input
676
- }], tabIndex: [{
677
- type: Input
678
- }], textField: [{
679
- type: Input
680
- }], data: [{
681
- type: Input
682
- }], buttonClass: [{
683
- type: Input
684
- }], arrowButtonClass: [{
685
- type: Input
686
- }], arrowButtonIcon: [{
687
- type: Input
688
- }], buttonClick: [{
689
- type: Output
690
- }], itemClick: [{
691
- type: Output
692
- }], onFocus: [{
693
- type: Output,
694
- args: ['focus']
695
- }], onBlur: [{
696
- type: Output,
697
- args: ['blur']
698
- }], open: [{
699
- type: Output
700
- }], close: [{
701
- type: Output
702
- }], itemTemplate: [{
703
- type: ContentChild,
704
- args: [ButtonItemTemplateDirective, { static: false }]
705
- }], button: [{
706
- type: ViewChild,
707
- args: ['button', { static: true }]
708
- }], arrowButton: [{
709
- type: ViewChild,
710
- args: ['arrowButton', { static: true, read: ElementRef }]
711
- }], popupTemplate: [{
712
- type: ViewChild,
713
- args: ['popupTemplate', { static: true }]
714
- }], containerRef: [{
715
- type: ViewChild,
716
- args: ['container', { read: ViewContainerRef, static: true }]
717
- }], isFocused: [{
718
- type: HostBinding,
719
- args: ['class.k-state-focused']
720
- }], isFlat: [{
721
- type: HostBinding,
722
- args: ['class.k-flat']
723
- }], isOutline: [{
724
- type: HostBinding,
725
- args: ['class.k-outline']
726
- }], widgetClasses: [{
727
- type: HostBinding,
728
- args: ['class.k-split-button']
729
- }, {
730
- type: HostBinding,
731
- args: ['class.k-button-group']
732
- }], dir: [{
733
- type: HostBinding,
734
- args: ['attr.dir']
735
- }], keydown: [{
736
- type: HostListener,
737
- args: ['keydown', ['$event']]
738
- }], keypress: [{
739
- type: HostListener,
740
- args: ['keypress', ['$event']]
741
- }], keyup: [{
742
- type: HostListener,
743
- args: ['keyup', ['$event']]
744
- }] } });
817
+ }),
818
+ tslib_1.__metadata("design:paramtypes", [FocusService,
819
+ NavigationService,
820
+ ElementRef,
821
+ NgZone,
822
+ PopupService,
823
+ ElementRef,
824
+ LocalizationService,
825
+ ChangeDetectorRef,
826
+ Renderer2])
827
+ ], SplitButtonComponent);
828
+ export { SplitButtonComponent };
829
+ export { ɵ0 };
@@ -0,0 +1,14 @@
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
+ /**
6
+ * @hidden
7
+ *
8
+ * The exported package module.
9
+ *
10
+ * The package exports:
11
+ * - `SplitButtonComponent`&mdash;The SplitButtonComponent component class.
12
+ */
13
+ export declare class SplitButtonModule {
14
+ }
@@ -0,0 +1,31 @@
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
+ import * as tslib_1 from "tslib";
6
+ import { NgModule } from '@angular/core';
7
+ import { CommonModule } from '@angular/common';
8
+ import { PopupModule } from '@progress/kendo-angular-popup';
9
+ import { ButtonModule } from './../button/button.module';
10
+ import { ListModule } from './../listbutton/list.module';
11
+ import { SplitButtonComponent } from './splitbutton.component';
12
+ import { LocalizedSplitButtonMessagesDirective } from './localization/localized-messages.directive';
13
+ import { SplitButtonCustomMessagesComponent } from './localization/custom-messages.component';
14
+ /**
15
+ * @hidden
16
+ *
17
+ * The exported package module.
18
+ *
19
+ * The package exports:
20
+ * - `SplitButtonComponent`&mdash;The SplitButtonComponent component class.
21
+ */
22
+ let SplitButtonModule = class SplitButtonModule {
23
+ };
24
+ SplitButtonModule = tslib_1.__decorate([
25
+ NgModule({
26
+ declarations: [SplitButtonComponent, LocalizedSplitButtonMessagesDirective, SplitButtonCustomMessagesComponent],
27
+ exports: [SplitButtonComponent, ListModule, LocalizedSplitButtonMessagesDirective, SplitButtonCustomMessagesComponent],
28
+ imports: [CommonModule, PopupModule, ButtonModule, ListModule]
29
+ })
30
+ ], SplitButtonModule);
31
+ export { SplitButtonModule };