@progress/kendo-angular-buttons 7.0.7-dev.202204111624 → 8.0.0-dev.202204131530

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 (270) hide show
  1. package/bundles/kendo-angular-buttons.umd.js +5 -0
  2. package/{dist/es2015/button → button}/button.directive.d.ts +63 -60
  3. package/{dist/es2015/button → button}/button.module.d.ts +5 -0
  4. package/{dist/es2015/button → button}/button.service.d.ts +3 -0
  5. package/{dist/es2015/button → button}/selection-settings.d.ts +0 -0
  6. package/{dist/es2015/buttongroup → buttongroup}/buttongroup.component.d.ts +13 -9
  7. package/{dist/es2015/buttongroup → buttongroup}/buttongroup.module.d.ts +7 -0
  8. package/{dist/es2015/buttons.module.d.ts → buttons.module.d.ts} +10 -0
  9. package/{dist/es2015/chip → chip}/chip-content-click-event-args.interface.d.ts +0 -0
  10. package/{dist/es2015/chip → chip}/chip-list-remove-event-args.interface.d.ts +0 -0
  11. package/{dist/es2015/chip → chip}/chip-list.component.d.ts +8 -4
  12. package/{dist/es2015/chip → chip}/chip-remove-event-args.interface.d.ts +0 -0
  13. package/{dist/es2015/chip → chip}/chip.component.d.ts +38 -31
  14. package/{dist/es2015/chip → chip}/chip.module.d.ts +7 -0
  15. package/{dist/es2015/chip → chip}/models/selection.d.ts +0 -0
  16. package/{dist/es2015/common → common}/models/fillmode.d.ts +2 -2
  17. package/{dist/es2015/common → common}/models/rounded.d.ts +2 -2
  18. package/{dist/es2015/common → common}/models/size.d.ts +2 -2
  19. package/{dist/es2015/common → common}/models/styling-classes.d.ts +0 -0
  20. package/{dist/es2015/common → common}/models/theme-color.d.ts +2 -2
  21. package/{dist/es2015/common → common}/models.d.ts +0 -1
  22. package/{dist/es2015/direction.d.ts → direction.d.ts} +0 -0
  23. package/{dist/es2015/dropdownbutton → dropdownbutton}/dropdownbutton.component.d.ts +36 -38
  24. package/dropdownbutton/dropdownbutton.module.d.ts +23 -0
  25. package/{dist/es2015 → esm2015}/button/button.directive.js +139 -209
  26. package/{dist/es2015 → esm2015}/button/button.module.js +13 -10
  27. package/{dist/es2015 → esm2015}/button/button.service.js +8 -10
  28. package/{dist/es → esm2015}/button/selection-settings.js +1 -0
  29. package/{dist/es2015 → esm2015}/buttongroup/buttongroup.component.js +82 -106
  30. package/esm2015/buttongroup/buttongroup.module.js +30 -0
  31. package/{dist/es → esm2015}/buttons.module.js +12 -12
  32. package/{dist/es2015 → esm2015}/chip/chip-content-click-event-args.interface.js +1 -0
  33. package/{dist/es2015 → esm2015}/chip/chip-list-remove-event-args.interface.js +1 -0
  34. package/{dist/es2015 → esm2015}/chip/chip-list.component.js +62 -73
  35. package/{dist/es2015 → esm2015}/chip/chip-remove-event-args.interface.js +1 -0
  36. package/{dist/es2015 → esm2015}/chip/chip.component.js +160 -148
  37. package/{dist/es2015 → esm2015}/chip/chip.module.js +16 -11
  38. package/{dist/es → esm2015}/chip/models/selection.js +1 -0
  39. package/{dist/es → esm2015}/common/models/fillmode.js +1 -0
  40. package/{dist/es → esm2015}/common/models/rounded.js +1 -0
  41. package/{dist/es → esm2015}/common/models/size.js +1 -0
  42. package/{dist/es → esm2015}/common/models/styling-classes.js +1 -0
  43. package/{dist/es → esm2015}/common/models/theme-color.js +1 -0
  44. package/{dist/es → esm2015}/common/models.js +5 -0
  45. package/{dist/es → esm2015}/direction.js +1 -0
  46. package/{dist/es2015 → esm2015}/dropdownbutton/dropdownbutton.component.js +175 -206
  47. package/esm2015/dropdownbutton/dropdownbutton.module.js +32 -0
  48. package/{dist/es2015 → esm2015}/floatingactionbutton/animations/animations.js +0 -0
  49. package/esm2015/floatingactionbutton/dial-item.component.js +127 -0
  50. package/esm2015/floatingactionbutton/dial-list.component.js +90 -0
  51. package/{dist/es2015 → esm2015}/floatingactionbutton/floatingactionbutton.component.js +205 -210
  52. package/{dist/es2015 → esm2015}/floatingactionbutton/floatingactionbutton.module.js +19 -11
  53. package/{dist/es → esm2015}/floatingactionbutton/models/align.js +1 -0
  54. package/{dist/es → esm2015}/floatingactionbutton/models/item-animation.interface.js +1 -0
  55. package/{dist/es → esm2015}/floatingactionbutton/models/item-click.event.js +1 -0
  56. package/{dist/es → esm2015}/floatingactionbutton/models/item.interface.js +1 -0
  57. package/{dist/es → esm2015}/floatingactionbutton/models/offset.js +1 -0
  58. package/{dist/es → esm2015}/floatingactionbutton/models/position-mode.js +1 -0
  59. package/esm2015/floatingactionbutton/templates/dial-item-template.directive.js +27 -0
  60. package/esm2015/floatingactionbutton/templates/fab-template.directive.js +27 -0
  61. package/{dist/es2015 → esm2015}/floatingactionbutton/utils.js +0 -0
  62. package/{dist/es2015 → esm2015}/focusable/focus.service.js +8 -10
  63. package/{dist/es2015 → esm2015}/focusable/focusable.directive.js +15 -16
  64. package/{dist/es2015/listbutton/list.module.d.ts → esm2015/kendo-angular-buttons.js} +2 -3
  65. package/{dist/es2015 → esm2015}/listbutton/button-item-template.directive.js +12 -12
  66. package/{dist/es2015 → esm2015}/listbutton/list-button.js +15 -2
  67. package/{dist/es → esm2015}/listbutton/list-item-model.js +1 -0
  68. package/esm2015/listbutton/list.component.js +140 -0
  69. package/esm2015/listbutton/list.module.js +39 -0
  70. package/{dist/es → esm2015}/listbutton/popup-settings.js +1 -0
  71. package/esm2015/listbutton/template-context.directive.js +34 -0
  72. package/{dist/es2015 → esm2015}/main.js +7 -0
  73. package/{dist/es → esm2015}/navigation/key-events.js +0 -0
  74. package/{dist/es2015 → esm2015}/navigation/navigation-action.js +1 -0
  75. package/{dist/es2015 → esm2015}/navigation/navigation-config.js +0 -0
  76. package/{dist/es2015 → esm2015}/navigation/navigation.service.js +11 -9
  77. package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
  78. package/{dist/es2015 → esm2015}/preventable-event.js +0 -0
  79. package/esm2015/splitbutton/localization/custom-messages.component.js +37 -0
  80. package/esm2015/splitbutton/localization/localized-messages.directive.js +36 -0
  81. package/esm2015/splitbutton/localization/messages.js +23 -0
  82. package/{dist/es2015 → esm2015}/splitbutton/splitbutton.component.js +216 -207
  83. package/esm2015/splitbutton/splitbutton.module.js +34 -0
  84. package/{dist/es2015 → esm2015}/util.js +7 -7
  85. package/{dist/fesm2015/index.js → fesm2015/kendo-angular-buttons.js} +1843 -1866
  86. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/animations/animations.d.ts +0 -0
  87. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/dial-item.component.d.ts +8 -5
  88. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/dial-list.component.d.ts +5 -2
  89. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/floatingactionbutton.component.d.ts +50 -51
  90. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/floatingactionbutton.module.d.ts +13 -0
  91. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/align.d.ts +0 -0
  92. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/item-animation.interface.d.ts +0 -0
  93. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/item-click.event.d.ts +0 -0
  94. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/item.interface.d.ts +0 -0
  95. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/offset.d.ts +0 -0
  96. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/models/position-mode.d.ts +0 -0
  97. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/templates/dial-item-template.directive.d.ts +3 -0
  98. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/templates/fab-template.directive.d.ts +3 -0
  99. package/{dist/es2015/floatingactionbutton → floatingactionbutton}/utils.d.ts +0 -0
  100. package/{dist/es2015/focusable → focusable}/focus.service.d.ts +5 -1
  101. package/{dist/es2015/focusable → focusable}/focusable.directive.d.ts +3 -0
  102. package/{dist/es2015/common/models/shape.d.ts → kendo-angular-buttons.d.ts} +3 -3
  103. package/{dist/es2015/listbutton → listbutton}/button-item-template.directive.d.ts +3 -0
  104. package/{dist/es2015/listbutton → listbutton}/list-button.d.ts +6 -2
  105. package/{dist/es2015/listbutton → listbutton}/list-item-model.d.ts +0 -0
  106. package/{dist/es2015/listbutton → listbutton}/list.component.d.ts +4 -1
  107. package/listbutton/list.module.d.ts +18 -0
  108. package/{dist/es2015/listbutton → listbutton}/popup-settings.d.ts +0 -0
  109. package/{dist/es2015/listbutton → listbutton}/template-context.directive.d.ts +4 -1
  110. package/{dist/es2015/main.d.ts → main.d.ts} +7 -1
  111. package/{dist/es2015/navigation → navigation}/key-events.d.ts +0 -0
  112. package/{dist/es2015/navigation → navigation}/navigation-action.d.ts +0 -0
  113. package/{dist/es2015/navigation → navigation}/navigation-config.d.ts +0 -0
  114. package/{dist/es2015/navigation → navigation}/navigation.service.d.ts +3 -0
  115. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  116. package/package.json +38 -113
  117. package/{dist/es2015/preventable-event.d.ts → preventable-event.d.ts} +0 -0
  118. package/schematics/ngAdd/index.js +5 -2
  119. package/schematics/ngAdd/index.js.map +1 -1
  120. package/{dist/es2015/splitbutton → splitbutton}/localization/custom-messages.component.d.ts +4 -1
  121. package/{dist/es2015/splitbutton → splitbutton}/localization/localized-messages.directive.d.ts +3 -0
  122. package/{dist/es2015/splitbutton → splitbutton}/localization/messages.d.ts +3 -0
  123. package/{dist/es2015/splitbutton → splitbutton}/splitbutton.component.d.ts +38 -27
  124. package/splitbutton/splitbutton.module.d.ts +25 -0
  125. package/{dist/es2015/util.d.ts → util.d.ts} +0 -0
  126. package/dist/cdn/js/kendo-angular-buttons.js +0 -20
  127. package/dist/cdn/main.js +0 -5
  128. package/dist/es/button/button.directive.js +0 -775
  129. package/dist/es/button/button.module.js +0 -50
  130. package/dist/es/button/button.service.js +0 -24
  131. package/dist/es/buttongroup/buttongroup.component.js +0 -354
  132. package/dist/es/buttongroup/buttongroup.module.js +0 -30
  133. package/dist/es/chip/chip-content-click-event-args.interface.js +0 -4
  134. package/dist/es/chip/chip-list-remove-event-args.interface.js +0 -4
  135. package/dist/es/chip/chip-list.component.js +0 -214
  136. package/dist/es/chip/chip-remove-event-args.interface.js +0 -4
  137. package/dist/es/chip/chip.component.js +0 -441
  138. package/dist/es/chip/chip.module.js +0 -55
  139. package/dist/es/common/models/shape.js +0 -4
  140. package/dist/es/dropdownbutton/dropdownbutton.component.js +0 -706
  141. package/dist/es/dropdownbutton/dropdownbutton.module.js +0 -32
  142. package/dist/es/floatingactionbutton/animations/animations.js +0 -33
  143. package/dist/es/floatingactionbutton/dial-item.component.js +0 -143
  144. package/dist/es/floatingactionbutton/dial-list.component.js +0 -76
  145. package/dist/es/floatingactionbutton/floatingactionbutton.component.js +0 -903
  146. package/dist/es/floatingactionbutton/floatingactionbutton.module.js +0 -65
  147. package/dist/es/floatingactionbutton/templates/dial-item-template.directive.js +0 -26
  148. package/dist/es/floatingactionbutton/templates/fab-template.directive.js +0 -26
  149. package/dist/es/floatingactionbutton/utils.js +0 -38
  150. package/dist/es/focusable/focus.service.js +0 -43
  151. package/dist/es/focusable/focusable.directive.js +0 -62
  152. package/dist/es/index.js +0 -22
  153. package/dist/es/listbutton/button-item-template.directive.js +0 -68
  154. package/dist/es/listbutton/list-button.js +0 -223
  155. package/dist/es/listbutton/list.component.js +0 -85
  156. package/dist/es/listbutton/list.module.js +0 -33
  157. package/dist/es/listbutton/template-context.directive.js +0 -40
  158. package/dist/es/main.js +0 -22
  159. package/dist/es/navigation/navigation-action.js +0 -19
  160. package/dist/es/navigation/navigation-config.js +0 -9
  161. package/dist/es/navigation/navigation.service.js +0 -114
  162. package/dist/es/package-metadata.js +0 -15
  163. package/dist/es/preventable-event.js +0 -29
  164. package/dist/es/splitbutton/localization/custom-messages.component.js +0 -44
  165. package/dist/es/splitbutton/localization/localized-messages.directive.js +0 -35
  166. package/dist/es/splitbutton/localization/messages.js +0 -22
  167. package/dist/es/splitbutton/splitbutton.component.js +0 -833
  168. package/dist/es/splitbutton/splitbutton.module.js +0 -34
  169. package/dist/es/util.js +0 -108
  170. package/dist/es2015/button/selection-settings.js +0 -4
  171. package/dist/es2015/buttongroup/buttongroup.module.js +0 -27
  172. package/dist/es2015/buttons.module.js +0 -51
  173. package/dist/es2015/chip/models/selection.js +0 -4
  174. package/dist/es2015/common/models/fillmode.js +0 -4
  175. package/dist/es2015/common/models/rounded.js +0 -4
  176. package/dist/es2015/common/models/shape.js +0 -4
  177. package/dist/es2015/common/models/size.js +0 -4
  178. package/dist/es2015/common/models/styling-classes.js +0 -4
  179. package/dist/es2015/common/models/theme-color.js +0 -4
  180. package/dist/es2015/common/models.js +0 -4
  181. package/dist/es2015/direction.js +0 -4
  182. package/dist/es2015/dropdownbutton/dropdownbutton.module.d.ts +0 -14
  183. package/dist/es2015/dropdownbutton/dropdownbutton.module.js +0 -29
  184. package/dist/es2015/floatingactionbutton/dial-item.component.js +0 -133
  185. package/dist/es2015/floatingactionbutton/dial-list.component.js +0 -81
  186. package/dist/es2015/floatingactionbutton/models/align.js +0 -4
  187. package/dist/es2015/floatingactionbutton/models/item-animation.interface.js +0 -4
  188. package/dist/es2015/floatingactionbutton/models/item-click.event.js +0 -4
  189. package/dist/es2015/floatingactionbutton/models/item.interface.js +0 -4
  190. package/dist/es2015/floatingactionbutton/models/offset.js +0 -4
  191. package/dist/es2015/floatingactionbutton/models/position-mode.js +0 -4
  192. package/dist/es2015/floatingactionbutton/templates/dial-item-template.directive.js +0 -25
  193. package/dist/es2015/floatingactionbutton/templates/fab-template.directive.js +0 -25
  194. package/dist/es2015/index.d.ts +0 -22
  195. package/dist/es2015/index.js +0 -22
  196. package/dist/es2015/index.metadata.json +0 -1
  197. package/dist/es2015/listbutton/list-item-model.js +0 -4
  198. package/dist/es2015/listbutton/list.component.js +0 -115
  199. package/dist/es2015/listbutton/list.module.js +0 -30
  200. package/dist/es2015/listbutton/popup-settings.js +0 -4
  201. package/dist/es2015/listbutton/template-context.directive.js +0 -35
  202. package/dist/es2015/navigation/key-events.js +0 -13
  203. package/dist/es2015/splitbutton/localization/custom-messages.component.js +0 -36
  204. package/dist/es2015/splitbutton/localization/localized-messages.directive.js +0 -31
  205. package/dist/es2015/splitbutton/localization/messages.js +0 -16
  206. package/dist/es2015/splitbutton/splitbutton.module.d.ts +0 -14
  207. package/dist/es2015/splitbutton/splitbutton.module.js +0 -31
  208. package/dist/fesm5/index.js +0 -5544
  209. package/dist/npm/button/button.directive.js +0 -777
  210. package/dist/npm/button/button.module.js +0 -52
  211. package/dist/npm/button/button.service.js +0 -26
  212. package/dist/npm/button/selection-settings.js +0 -6
  213. package/dist/npm/buttongroup/buttongroup.component.js +0 -356
  214. package/dist/npm/buttongroup/buttongroup.module.js +0 -32
  215. package/dist/npm/buttons.module.js +0 -56
  216. package/dist/npm/chip/chip-content-click-event-args.interface.js +0 -6
  217. package/dist/npm/chip/chip-list-remove-event-args.interface.js +0 -6
  218. package/dist/npm/chip/chip-list.component.js +0 -216
  219. package/dist/npm/chip/chip-remove-event-args.interface.js +0 -6
  220. package/dist/npm/chip/chip.component.js +0 -443
  221. package/dist/npm/chip/chip.module.js +0 -57
  222. package/dist/npm/chip/models/selection.js +0 -6
  223. package/dist/npm/common/models/fillmode.js +0 -6
  224. package/dist/npm/common/models/rounded.js +0 -6
  225. package/dist/npm/common/models/shape.js +0 -6
  226. package/dist/npm/common/models/size.js +0 -6
  227. package/dist/npm/common/models/styling-classes.js +0 -6
  228. package/dist/npm/common/models/theme-color.js +0 -6
  229. package/dist/npm/common/models.js +0 -6
  230. package/dist/npm/direction.js +0 -6
  231. package/dist/npm/dropdownbutton/dropdownbutton.component.js +0 -708
  232. package/dist/npm/dropdownbutton/dropdownbutton.module.js +0 -34
  233. package/dist/npm/floatingactionbutton/animations/animations.js +0 -37
  234. package/dist/npm/floatingactionbutton/dial-item.component.js +0 -145
  235. package/dist/npm/floatingactionbutton/dial-list.component.js +0 -78
  236. package/dist/npm/floatingactionbutton/floatingactionbutton.component.js +0 -905
  237. package/dist/npm/floatingactionbutton/floatingactionbutton.module.js +0 -67
  238. package/dist/npm/floatingactionbutton/models/align.js +0 -6
  239. package/dist/npm/floatingactionbutton/models/item-animation.interface.js +0 -6
  240. package/dist/npm/floatingactionbutton/models/item-click.event.js +0 -6
  241. package/dist/npm/floatingactionbutton/models/item.interface.js +0 -6
  242. package/dist/npm/floatingactionbutton/models/offset.js +0 -6
  243. package/dist/npm/floatingactionbutton/models/position-mode.js +0 -6
  244. package/dist/npm/floatingactionbutton/templates/dial-item-template.directive.js +0 -28
  245. package/dist/npm/floatingactionbutton/templates/fab-template.directive.js +0 -28
  246. package/dist/npm/floatingactionbutton/utils.js +0 -42
  247. package/dist/npm/focusable/focus.service.js +0 -45
  248. package/dist/npm/focusable/focusable.directive.js +0 -64
  249. package/dist/npm/index.js +0 -39
  250. package/dist/npm/listbutton/button-item-template.directive.js +0 -70
  251. package/dist/npm/listbutton/list-button.js +0 -225
  252. package/dist/npm/listbutton/list-item-model.js +0 -6
  253. package/dist/npm/listbutton/list.component.js +0 -87
  254. package/dist/npm/listbutton/list.module.js +0 -35
  255. package/dist/npm/listbutton/popup-settings.js +0 -6
  256. package/dist/npm/listbutton/template-context.directive.js +0 -42
  257. package/dist/npm/main.js +0 -45
  258. package/dist/npm/navigation/key-events.js +0 -15
  259. package/dist/npm/navigation/navigation-action.js +0 -21
  260. package/dist/npm/navigation/navigation-config.js +0 -11
  261. package/dist/npm/navigation/navigation.service.js +0 -116
  262. package/dist/npm/package-metadata.js +0 -17
  263. package/dist/npm/preventable-event.js +0 -31
  264. package/dist/npm/splitbutton/localization/custom-messages.component.js +0 -46
  265. package/dist/npm/splitbutton/localization/localized-messages.directive.js +0 -37
  266. package/dist/npm/splitbutton/localization/messages.js +0 -24
  267. package/dist/npm/splitbutton/splitbutton.component.js +0 -835
  268. package/dist/npm/splitbutton/splitbutton.module.js +0 -36
  269. package/dist/npm/util.js +0 -111
  270. package/dist/systemjs/kendo-angular-buttons.js +0 -5
@@ -2,6 +2,13 @@
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
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "./buttongroup/buttongroup.module";
7
+ import * as i2 from "./button/button.module";
8
+ import * as i3 from "./splitbutton/splitbutton.module";
9
+ import * as i4 from "./dropdownbutton/dropdownbutton.module";
10
+ import * as i5 from "./chip/chip.module";
11
+ import * as i6 from "./floatingactionbutton/floatingactionbutton.module";
5
12
  /**
6
13
  * Represents the [NgModule]({{ site.data.urls.angular['ngmodules'] }})
7
14
  * definition for the Buttons components.
@@ -34,4 +41,7 @@
34
41
  * ```
35
42
  */
36
43
  export declare class ButtonsModule {
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsModule, never>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonsModule, never, never, [typeof i1.ButtonGroupModule, typeof i2.ButtonModule, typeof i3.SplitButtonModule, typeof i4.DropDownButtonModule, typeof i5.ChipModule, typeof i6.FloatingActionButtonModule]>;
46
+ static ɵinj: i0.ɵɵInjectorDeclaration<ButtonsModule>;
37
47
  }
@@ -8,6 +8,7 @@ import { ChipComponent } from './chip.component';
8
8
  import { ChipListSelection } from './models/selection';
9
9
  import { ChipListRemoveEvent } from './chip-list-remove-event-args.interface';
10
10
  import { ChipListSize } from '../common/models';
11
+ import * as i0 from "@angular/core";
11
12
  export declare class ChipListComponent implements OnInit, AfterViewInit, AfterContentInit, OnDestroy {
12
13
  private localizationService;
13
14
  private renderer;
@@ -34,9 +35,10 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
34
35
  * * `'small'`
35
36
  * * `'medium'` (default)
36
37
  * * `'large'`
37
- * * `null`
38
+ * * `none`
38
39
  */
39
- size: ChipListSize;
40
+ set size(size: ChipListSize);
41
+ get size(): ChipListSize;
40
42
  /**
41
43
  * Fires each time when the ChipList selection is changed.
42
44
  */
@@ -46,8 +48,8 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
46
48
  */
47
49
  remove: EventEmitter<ChipListRemoveEvent>;
48
50
  chips: QueryList<ChipComponent>;
49
- readonly single: boolean;
50
- readonly multiple: boolean;
51
+ get single(): boolean;
52
+ get multiple(): boolean;
51
53
  role: string;
52
54
  private dynamicRTLSubscription;
53
55
  private _size;
@@ -67,4 +69,6 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
67
69
  private setSelection;
68
70
  private clearSelection;
69
71
  private handleClasses;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipListComponent, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipListComponent, "kendo-chiplist, kendo-chip-list", never, { "selection": "selection"; "size": "size"; }, { "selectedChange": "selectedChange"; "remove": "remove"; }, ["chips"], ["*"]>;
70
74
  }
@@ -7,6 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import { ChipRemoveEvent } from './chip-remove-event-args.interface';
8
8
  import { ChipContentClickEvent } from './chip-content-click-event-args.interface';
9
9
  import { ChipFillMode, ChipRounded, ChipSize, ChipThemeColor } from '../common/models';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * Displays a Chip that represents an input, attribute or an action.
12
13
  */
@@ -60,48 +61,52 @@ export declare class ChipComponent implements OnInit, AfterViewInit {
60
61
  * ([see example]({% slug appearance_chip %}#toc-size)).
61
62
  *
62
63
  * The possible values are:
63
- * * `'small'`
64
- * * `'medium'` (default)
65
- * * `'large'`
66
- * * `null`
64
+ * * `small`
65
+ * * `medium` (default)
66
+ * * `large`
67
+ * * `none`
67
68
  */
68
- size: ChipSize;
69
+ set size(size: ChipSize);
70
+ get size(): ChipSize;
69
71
  /**
70
72
  * The rounded property specifies the border radius of the Chip
71
73
  * ([see example]({% slug appearance_chip %}#toc-rounded)).
72
74
  *
73
75
  * The possible values are:
74
- * * `'small'`
75
- * * `'medium'` (default)
76
- * * `'large'`
77
- * * `'full'`
78
- * * `null`
76
+ * * `small`
77
+ * * `medium` (default)
78
+ * * `large`
79
+ * * `full`
80
+ * * `none`
79
81
  */
80
- rounded: ChipRounded;
82
+ set rounded(rounded: ChipRounded);
83
+ get rounded(): ChipRounded;
81
84
  /**
82
85
  * The fillMode property specifies the background and border styles of the Chip
83
86
  * ([see example]({% slug appearance_chip %}#toc-fillMode)).
84
87
  *
85
88
  * The possible values are:
86
- * * `'solid'` (default)
87
- * * `'outline'`
88
- * * `null`
89
+ * * `solid` (default)
90
+ * * `outline`
91
+ * * `none`
89
92
  */
90
- fillMode: ChipFillMode;
93
+ set fillMode(fillMode: ChipFillMode);
94
+ get fillMode(): ChipFillMode;
91
95
  /**
92
96
  * The Chip allows you to specify predefined theme colors.
93
97
  * The theme color will be applied as a background and border color while also amending the text color accordingly
94
98
  * ([see example]({% slug appearance_chip %}#toc-themeColor)).
95
99
  *
96
100
  * The possible values are:
97
- * * `'base'` (default)
98
- * * `'info'`
99
- * * `'success'`
100
- * * `'warning'`
101
- * * `'error'`
102
- * * `null`
101
+ * * `base` (default)
102
+ * * `info`
103
+ * * `success`
104
+ * * `warning`
105
+ * * `error`
106
+ * * `none`
103
107
  */
104
- themeColor: ChipThemeColor;
108
+ set themeColor(themeColor: ChipThemeColor);
109
+ get themeColor(): ChipThemeColor;
105
110
  /**
106
111
  * Fires each time the user clicks the remove icon of the Chip.
107
112
  */
@@ -111,12 +116,12 @@ export declare class ChipComponent implements OnInit, AfterViewInit {
111
116
  */
112
117
  contentClick: EventEmitter<ChipContentClickEvent>;
113
118
  tabIndex: number;
114
- readonly ariaChecked: boolean;
119
+ get ariaChecked(): boolean;
115
120
  hostClass: boolean;
116
- readonly hasIconClass: boolean;
117
- readonly disabledClass: boolean;
118
- readonly selectedClass: boolean;
119
- readonly focusedClass: boolean;
121
+ get hasIconClass(): boolean;
122
+ get disabledClass(): boolean;
123
+ get selectedClass(): boolean;
124
+ get focusedClass(): boolean;
120
125
  /**
121
126
  * @hidden
122
127
  */
@@ -134,19 +139,19 @@ export declare class ChipComponent implements OnInit, AfterViewInit {
134
139
  /**
135
140
  * @hidden
136
141
  */
137
- readonly kendoIconClass: string;
142
+ get kendoIconClass(): string;
138
143
  /**
139
144
  * @hidden
140
145
  */
141
- readonly customIconClass: string;
146
+ get customIconClass(): string;
142
147
  /**
143
148
  * @hidden
144
149
  */
145
- readonly chipAvatarClass: string;
150
+ get chipAvatarClass(): string;
146
151
  /**
147
152
  * @hidden
148
153
  */
149
- readonly removeIconClass: string;
154
+ get removeIconClass(): string;
150
155
  /**
151
156
  * Focuses the Chip component.
152
157
  */
@@ -166,4 +171,6 @@ export declare class ChipComponent implements OnInit, AfterViewInit {
166
171
  private verifyIconSettings;
167
172
  private handleClasses;
168
173
  private handleThemeColor;
174
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
175
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "kendo-chip", never, { "label": "label"; "icon": "icon"; "iconClass": "iconClass"; "avatarClass": "avatarClass"; "selected": "selected"; "removable": "removable"; "removeIcon": "removeIcon"; "disabled": "disabled"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "themeColor": "themeColor"; }, { "remove": "remove"; "contentClick": "contentClick"; }, never, ["*"]>;
169
176
  }
@@ -2,6 +2,10 @@
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
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "./chip.component";
7
+ import * as i2 from "./chip-list.component";
8
+ import * as i3 from "@angular/common";
5
9
  /**
6
10
  * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
7
11
  * definition for the Chip and ChipList components.
@@ -31,4 +35,7 @@
31
35
  * ```
32
36
  */
33
37
  export declare class ChipModule {
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipModule, never>;
39
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChipModule, [typeof i1.ChipComponent, typeof i2.ChipListComponent], [typeof i3.CommonModule], [typeof i1.ChipComponent, typeof i2.ChipListComponent]>;
40
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChipModule>;
34
41
  }
File without changes
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * Represents the possible fillMode options of the buttons.
7
7
  */
8
- export declare type ButtonFillMode = 'solid' | 'flat' | 'outline' | 'link' | 'clear';
8
+ export declare type ButtonFillMode = 'solid' | 'flat' | 'outline' | 'link' | 'clear' | 'none';
9
9
  /**
10
10
  * Represents the possible fillMode options of the Chip.
11
11
  */
12
- export declare type ChipFillMode = 'solid' | 'outline';
12
+ export declare type ChipFillMode = 'solid' | 'outline' | 'none';
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * Represents the possible rounded options of the buttons.
7
7
  */
8
- export declare type ButtonRounded = 'small' | 'medium' | 'large' | 'full';
8
+ export declare type ButtonRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
9
9
  /**
10
10
  * Represents the possible rounded options of the Chip.
11
11
  */
12
- export declare type ChipRounded = 'small' | 'medium' | 'large' | 'full';
12
+ export declare type ChipRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
@@ -6,11 +6,11 @@
6
6
  * Specifies the possible sizes of the buttons.
7
7
  *
8
8
  */
9
- export declare type ButtonSize = 'small' | 'medium' | 'large';
9
+ export declare type ButtonSize = 'small' | 'medium' | 'large' | 'none';
10
10
  /**
11
11
  * Specifies the possible sizes of the Chip.
12
12
  */
13
- export declare type ChipSize = 'small' | 'medium' | 'large';
13
+ export declare type ChipSize = 'small' | 'medium' | 'large' | 'none';
14
14
  /**
15
15
  * Specifies the possible gap between Chips in a ChipList.
16
16
  */
@@ -19,7 +19,7 @@
19
19
  * * `inverse`&mdash; Applies coloring based on the `inverse` theme color.
20
20
  *
21
21
  */
22
- export declare type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
22
+ export declare type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'none';
23
23
  /**
24
24
  * Specifies the possible theme colors of the Chip.
25
25
  *
@@ -30,4 +30,4 @@ export declare type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'terti
30
30
  * * `warning`&mdash; Applies coloring based on the `warning` theme color.
31
31
  * * `error`&mdash; Applies coloring based on the `error` theme color.
32
32
  */
33
- export declare type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error';
33
+ export declare type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error' | 'none';
@@ -2,7 +2,6 @@
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
- export * from './models/shape';
6
5
  export * from './models/size';
7
6
  export * from './models/theme-color';
8
7
  export * from './models/fillmode';
File without changes
@@ -13,7 +13,8 @@ import { ListComponent } from '../listbutton/list.component';
13
13
  import { FocusService } from '../focusable/focus.service';
14
14
  import { NavigationService } from '../navigation/navigation.service';
15
15
  import { PreventableEvent } from '../preventable-event';
16
- import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor, ButtonShape } from '../common/models';
16
+ import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '../common/models';
17
+ import * as i0 from "@angular/core";
17
18
  /**
18
19
  * Represents the Kendo UI DropDownButton component for Angular.
19
20
  *
@@ -66,7 +67,8 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
66
67
  * - `appendTo: "root" | "component" | ViewContainerRef`&mdash;Specifies the component to which the popup will be appended.
67
68
  * - `align: "left" | "center" | "right"`&mdash;Specifies the alignment of the popup.
68
69
  */
69
- popupSettings: PopupSettings;
70
+ set popupSettings(settings: PopupSettings);
71
+ get popupSettings(): PopupSettings;
70
72
  /**
71
73
  * Sets the data item field that represents the item text.
72
74
  * If the data contains only primitive values, do not define it.
@@ -75,44 +77,36 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
75
77
  /**
76
78
  * Sets the disabled state of the DropDownButton.
77
79
  */
78
- disabled: boolean;
80
+ set disabled(value: boolean);
81
+ get disabled(): boolean;
79
82
  /**
80
83
  * Sets or gets the data of the DropDownButton.
81
84
  *
82
85
  * > The data has to be provided in an array-like list.
83
86
  */
84
- data: any;
87
+ set data(data: any);
88
+ get data(): any;
85
89
  /**
86
90
  * The size property specifies the padding of the DropDownButton
87
91
  * ([see example]({% slug api_buttons_dropdownbuttoncomponent %}#toc-size)).
88
92
  *
89
93
  * The possible values are:
90
- * * `'small'`
91
- * * `'medium'` (default)
92
- * * `'large'`
93
- * * `null`
94
+ * * `small`
95
+ * * `medium` (default)
96
+ * * `large`
97
+ * * `none`
94
98
  */
95
99
  size: ButtonSize;
96
- /**
97
- * The shape property specifies if the DropDownButton will be a square or rectangle.
98
- * ([see example]({% slug api_buttons_dropdownbuttoncomponent %}#toc-shape)).
99
- *
100
- * The possible values are:
101
- * * `'rectangle'` (default)
102
- * * `'square'`
103
- * * `null`
104
- */
105
- shape: ButtonShape;
106
100
  /**
107
101
  * The rounded property specifies the border radius of the DropDownButton
108
102
  * ([see example]({% slug api_buttons_dropdownbuttoncomponent %}#toc-rounded)).
109
103
  *
110
104
  * The possible values are:
111
- * * `'small'`
112
- * * `'medium'` (default)
113
- * * `'large'`
114
- * * `'full'`
115
- * * `null`
105
+ * * `small`
106
+ * * `medium` (default)
107
+ * * `large`
108
+ * * `full`
109
+ * * `none`
116
110
  */
117
111
  rounded: ButtonRounded;
118
112
  /**
@@ -124,9 +118,10 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
124
118
  * * `flat`
125
119
  * * `outline`
126
120
  * * `link`
127
- * * `null`
121
+ * * `none`
128
122
  */
129
- fillMode: ButtonFillMode;
123
+ set fillMode(fillMode: ButtonFillMode);
124
+ get fillMode(): ButtonFillMode;
130
125
  /**
131
126
  * The DropDownButton allows you to specify predefined theme colors.
132
127
  * The theme color will be applied as a background and border color while also amending the text color accordingly
@@ -144,7 +139,7 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
144
139
  * * `dark`&mdash; Applies coloring based on the `dark` theme color.
145
140
  * * `light`&mdash; Applies coloring based on the `light` theme color.
146
141
  * * `inverse`&mdash; Applies coloring based on the `inverse` theme color.
147
- * * `null` &mdash;Removes the default CSS class (no class would be rendered).
142
+ * * `none` &mdash;Removes the default CSS class (no class would be rendered).
148
143
  */
149
144
  themeColor: ButtonThemeColor;
150
145
  /**
@@ -155,15 +150,16 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
155
150
  /**
156
151
  * @hidden
157
152
  */
153
+ set openState(open: boolean);
158
154
  /**
159
- * @hidden
160
- */
161
- openState: boolean;
155
+ * @hidden
156
+ */
157
+ get openState(): boolean;
162
158
  /**
163
159
  * @hidden
164
160
  */
165
- readonly componentTabIndex: number;
166
- private readonly appendTo;
161
+ get componentTabIndex(): number;
162
+ private get appendTo();
167
163
  /**
168
164
  * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
169
165
  */
@@ -190,13 +186,13 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
190
186
  * Fires each time the DropDownButton gets blurred.
191
187
  */
192
188
  onBlur: EventEmitter<any>;
193
- readonly focused: boolean;
194
- readonly widgetClasses: boolean;
195
- readonly dir: Direction;
189
+ get focused(): boolean;
190
+ get widgetClasses(): boolean;
191
+ get dir(): Direction;
196
192
  /**
197
193
  * @hidden
198
194
  */
199
- readonly active: boolean;
195
+ get active(): boolean;
200
196
  itemTemplate: ButtonItemTemplateDirective;
201
197
  button: ElementRef<HTMLButtonElement>;
202
198
  buttonList: ListComponent;
@@ -237,11 +233,11 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
237
233
  /**
238
234
  * @hidden
239
235
  */
240
- readonly anchorAlign: Align;
236
+ get anchorAlign(): Align;
241
237
  /**
242
238
  * @hidden
243
239
  */
244
- readonly popupAlign: Align;
240
+ get popupAlign(): Align;
245
241
  /**
246
242
  * Focuses the DropDownButton component.
247
243
  */
@@ -263,7 +259,7 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
263
259
  /**
264
260
  * Returns the current open state of the popup.
265
261
  */
266
- readonly isOpen: boolean;
262
+ get isOpen(): boolean;
267
263
  /**
268
264
  * @hidden
269
265
  */
@@ -280,4 +276,6 @@ export declare class DropDownButtonComponent extends ListButton implements OnCha
280
276
  private _toggle;
281
277
  private createPopup;
282
278
  private destroyPopup;
279
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonComponent, never>;
280
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropDownButtonComponent, "kendo-dropdownbutton", ["kendoDropDownButton"], { "icon": "icon"; "iconClass": "iconClass"; "imageUrl": "imageUrl"; "popupSettings": "popupSettings"; "textField": "textField"; "disabled": "disabled"; "data": "data"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "themeColor": "themeColor"; "buttonClass": "buttonClass"; "tabIndex": "tabIndex"; }, { "itemClick": "itemClick"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; }, ["itemTemplate"], ["*"]>;
283
281
  }
@@ -0,0 +1,23 @@
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 i0 from "@angular/core";
6
+ import * as i1 from "./dropdownbutton.component";
7
+ import * as i2 from "@angular/common";
8
+ import * as i3 from "@progress/kendo-angular-popup";
9
+ import * as i4 from "../listbutton/list.module";
10
+ import * as i5 from "../button/button.module";
11
+ /**
12
+ * @hidden
13
+ *
14
+ * The exported package module.
15
+ *
16
+ * The package exports:
17
+ * - `DropDownButtonComponent`&mdash;The DropDownButtonComponent component class.
18
+ */
19
+ export declare class DropDownButtonModule {
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonModule, never>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownButtonModule, [typeof i1.DropDownButtonComponent], [typeof i2.CommonModule, typeof i3.PopupModule, typeof i4.ListModule, typeof i5.ButtonModule], [typeof i1.DropDownButtonComponent, typeof i4.ListModule]>;
22
+ static ɵinj: i0.ɵɵInjectorDeclaration<DropDownButtonModule>;
23
+ }