@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
package/package.json CHANGED
@@ -1,109 +1,43 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
+ "version": "8.0.0-dev.202204131530",
3
4
  "description": "Buttons Package for Angular",
4
- "author": "Progress",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
- "version": "7.0.7-dev.202204111624",
7
- "main": "dist/npm/index.js",
8
- "module": "dist/fesm5/index.js",
9
- "es2015": "dist/fesm2015/index.js",
10
- "esm5": "dist/es/index.js",
11
- "esm2015": "dist/es2015/index.js",
12
- "jsnext:main": "dist/es/index.js",
13
- "typings": "dist/es2015/index.d.ts",
14
- "jsdelivr": "dist/cdn/main.js",
15
- "unpkg": "dist/cdn/main.js",
16
- "sideEffects": false,
17
- "scripts": {
18
- "test": "jest",
19
- "test:watch": "jest --watch",
20
- "test:ci": "ci-angular-test",
21
- "start": "gulp start",
22
- "e2e:ci": "ci-angular-e2e",
23
- "lint": "gulp lint && gulp lint-docs",
24
- "api-check": "gulp api-check",
25
- "build-package": "gulp build-package",
26
- "semantic-release": "semantic-release pre && semantic-prerelease publish && semantic-release post",
27
- "ci-semantic-release": "ci-semantic-release"
6
+ "author": "Progress",
7
+ "homepage": "https://www.telerik.com/kendo-angular-ui/components/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/telerik/kendo-angular-buttons.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/telerik/kendo-angular"
28
14
  },
29
15
  "keywords": [
30
- "Kendo UI",
31
16
  "Angular",
32
- "Progress",
33
- "Buttons",
34
17
  "Button",
35
- "ButtonGroup"
18
+ "ButtonGroup",
19
+ "Buttons",
20
+ "Kendo UI",
21
+ "Progress"
36
22
  ],
37
- "peerDependencies": {
38
- "@angular/animations": "8 - 13",
39
- "@angular/common": "8 - 13",
40
- "@angular/core": "8 - 13",
41
- "@angular/forms": "8 - 13",
42
- "@progress/kendo-angular-common": "^2.0.0",
43
- "@progress/kendo-angular-l10n": "^3.0.0",
44
- "@progress/kendo-angular-popup": "^4.0.0",
45
- "@progress/kendo-licensing": "^1.0.2",
46
- "rxjs": "^6.4.0 || ^7.0.0"
23
+ "@progress": {
24
+ "friendlyName": "Buttons"
47
25
  },
48
26
  "dependencies": {
49
- "@progress/kendo-schematics": "^2.0.0",
50
27
  "@progress/kendo-common": "^0.2.1",
51
- "tslib": "^1.9.0"
28
+ "@progress/kendo-schematics": "^3.0.0",
29
+ "tslib": "^2.3.1"
52
30
  },
53
- "devDependencies": {
54
- "@angular-devkit/core": "^8.2.0",
55
- "@angular-devkit/schematics": "^8.2.0",
56
- "@angular/animations": "^8.2.0",
57
- "@angular/common": "^8.2.0",
58
- "@angular/compiler": "^8.2.0",
59
- "@angular/compiler-cli": "^8.2.0",
60
- "@angular/core": "^8.2.0",
61
- "@angular/forms": "^8.2.0",
62
- "@angular/platform-browser": "^8.2.0",
63
- "@angular/platform-browser-dynamic": "^8.2.0",
64
- "@angular/platform-server": "^8.2.0",
65
- "@angular/router": "^8.2.0",
66
- "@progress/kendo-angular-common": "^2.0.0",
67
- "@progress/kendo-angular-dropdowns": "latest",
68
- "@progress/kendo-angular-e2e": "^3.0.0",
69
- "@progress/kendo-angular-indicators": "^1.1.1",
70
- "@progress/kendo-angular-inputs": "^8.0.0",
71
- "@progress/kendo-angular-intl": "^3.0.0",
72
- "@progress/kendo-angular-jest-preset": "^2.0.0",
73
- "@progress/kendo-angular-l10n": "^3.0.0",
74
- "@progress/kendo-angular-label": "^3.0.0",
75
- "@progress/kendo-angular-layout": "^6.0.0",
76
- "@progress/kendo-angular-notification": "^3.0.0",
77
- "@progress/kendo-angular-popup": "^4.0.0",
78
- "@progress/kendo-angular-progressbar": "^2.0.0",
79
- "@progress/kendo-angular-tasks": "18.1.2-cdn-bundle-v18.10",
80
- "@progress/kendo-angular-treeview": "^5.0.0",
81
- "@progress/kendo-drawing": "^1.0.0",
82
- "@progress/kendo-e2e": "^0.7.0",
31
+ "peerDependencies": {
32
+ "@angular/animations": "^12.0.0 || ^13.0.0",
33
+ "@angular/common": "^12.0.0 || ^13.0.0",
34
+ "@angular/core": "^12.0.0 || ^13.0.0",
35
+ "@angular/forms": "^12.0.0 || ^13.0.0",
36
+ "@progress/kendo-angular-common": ">3.0.0-next",
37
+ "@progress/kendo-angular-l10n": ">4.0.0-next",
38
+ "@progress/kendo-angular-popup": ">5.0.0-next",
83
39
  "@progress/kendo-licensing": "^1.0.2",
84
- "@progress/kendo-theme-bootstrap": "^5.0.0",
85
- "@progress/kendo-theme-default": "^5.0.0",
86
- "@progress/kendo-theme-material": "^5.0.0",
87
- "@telerik/semantic-prerelease": "^1.0.0",
88
- "@types/jest": "^21.0.0",
89
- "@types/node": "ts3.4",
90
- "@types/zone.js": "0.0.27",
91
- "codelyzer": "^5.0.0",
92
- "core-js": "^2.2.2",
93
- "cz-conventional-changelog": "^1.1.5",
94
- "ghooks": "^1.0.3",
95
- "gulp": "^4.0.0",
96
- "jest": "^21.0.0",
97
- "jest-cli": "^21.0.0",
98
- "jest-junit": "^12.2.0",
99
- "rxjs": "~6.4.0",
100
- "rxjs-tslint-rules": "^4.23.1",
101
- "semantic-release": "^6.3.6",
102
- "ts-jest": "^21.0.0",
103
- "tslint": "^5.20.1",
104
- "typescript": "~3.4.5",
105
- "validate-commit-msg": "^1.1.1",
106
- "zone.js": "~0.9.1"
40
+ "rxjs": "^6.5.3 || ^7.0.0"
107
41
  },
108
42
  "config": {
109
43
  "commitizen": {
@@ -128,27 +62,16 @@
128
62
  "maxSubjectLength": 100
129
63
  }
130
64
  },
131
- "jest": {
132
- "preset": "@progress/kendo-angular-jest-preset"
133
- },
134
- "repository": {
135
- "type": "git",
136
- "url": "https://github.com/telerik/kendo-angular-buttons.git"
137
- },
138
- "bugs": {
139
- "url": "https://github.com/telerik/kendo-angular"
140
- },
141
- "@progress": {
142
- "friendlyName": "Buttons"
143
- },
144
- "homepage": "https://www.telerik.com/kendo-angular-ui/components/",
65
+ "schematics": "./schematics/collection.json",
145
66
  "release": {
146
67
  "debug": false,
147
68
  "branchTags": {
148
- "develop": "dev"
69
+ "develop": "dev",
70
+ "ng12-update": "next"
149
71
  },
150
72
  "fallbackTags": {
151
- "dev": "latest"
73
+ "dev": "latest",
74
+ "next": "latest"
152
75
  },
153
76
  "analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
154
77
  "generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
@@ -156,9 +79,11 @@
156
79
  "verifyConditions": "@telerik/semantic-prerelease/verifyConditions",
157
80
  "verifyRelease": "@telerik/semantic-prerelease/verifyRelease"
158
81
  },
159
- "schematics": "./schematics/collection.json",
160
- "files": [
161
- "dist",
162
- "schematics"
163
- ]
82
+ "main": "bundles/kendo-angular-buttons.umd.js",
83
+ "module": "fesm2015/kendo-angular-buttons.js",
84
+ "es2015": "fesm2015/kendo-angular-buttons.js",
85
+ "esm2015": "esm2015/kendo-angular-buttons.js",
86
+ "fesm2015": "fesm2015/kendo-angular-buttons.js",
87
+ "typings": "kendo-angular-buttons.d.ts",
88
+ "sideEffects": false
164
89
  }
@@ -1,10 +1,13 @@
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
+ *-------------------------------------------------------------------------------------------*/
1
5
  "use strict";
2
6
  Object.defineProperty(exports, "__esModule", { value: true });
3
7
  const schematics_1 = require("@angular-devkit/schematics");
4
8
  function default_1(options) {
5
- const finalOptions = Object.assign({}, options, { mainNgModule: 'ButtonsModule', package: 'buttons' //package name, e.g grid
9
+ const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ButtonsModule', package: 'buttons' //package name, e.g grid
6
10
  });
7
11
  return schematics_1.externalSchematic('@progress/kendo-schematics', 'ng-add', finalOptions);
8
12
  }
9
13
  exports.default = default_1;
10
- //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,qBACX,OAAO,IACV,YAAY,EAAE,eAAe,EAC7B,OAAO,EAAE,SAAS,CAAC,wBAAwB;OAC9C,CAAC;IAEF,OAAO,8BAAiB,CAAC,4BAA4B,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;AACnF,CAAC;AARD,4BAQC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,mCACX,OAAO,KACV,YAAY,EAAE,eAAe,EAC7B,OAAO,EAAE,SAAS,CAAC,wBAAwB;OAC9C,CAAC;IAEF,OAAO,8BAAiB,CAAC,4BAA4B,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;AACnF,CAAC;AARD,4BAQC"}
@@ -4,6 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { Messages } from './messages';
7
+ import * as i0 from "@angular/core";
7
8
  /**
8
9
  * Custom component messages override default component messages
9
10
  * ([see example]({% slug rtl_buttons %}).
@@ -11,5 +12,7 @@ import { Messages } from './messages';
11
12
  export declare class SplitButtonCustomMessagesComponent extends Messages {
12
13
  protected service: LocalizationService;
13
14
  constructor(service: LocalizationService);
14
- protected readonly override: boolean;
15
+ protected get override(): boolean;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonCustomMessagesComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonCustomMessagesComponent, "kendo-splitbutton-messages", never, {}, {}, never, never>;
15
18
  }
@@ -4,10 +4,13 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { Messages } from './messages';
7
+ import * as i0 from "@angular/core";
7
8
  /**
8
9
  * @hidden
9
10
  */
10
11
  export declare class LocalizedSplitButtonMessagesDirective extends Messages {
11
12
  protected service: LocalizationService;
12
13
  constructor(service: LocalizationService);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedSplitButtonMessagesDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedSplitButtonMessagesDirective, "[kendoSplitButtonLocalizedMessages]", never, {}, {}, never>;
13
16
  }
@@ -3,6 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ComponentMessages } from '@progress/kendo-angular-l10n';
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * @hidden
8
9
  */
@@ -29,4 +30,6 @@ export declare class Messages extends ComponentMessages {
29
30
  * ```
30
31
  */
31
32
  splitButtonLabel: string;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
34
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-splitbutton-messages-base", never, { "splitButtonLabel": "splitButtonLabel"; }, {}, never>;
32
35
  }
@@ -12,6 +12,7 @@ import { FocusService } from './../focusable/focus.service';
12
12
  import { NavigationService } from './../navigation/navigation.service';
13
13
  import { PreventableEvent } from '../preventable-event';
14
14
  import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '../common/models';
15
+ import * as i0 from "@angular/core";
15
16
  /**
16
17
  * Represents the Kendo UI SplitButton component for Angular.
17
18
  *
@@ -86,10 +87,10 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
86
87
  * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-size)).
87
88
  *
88
89
  * The possible values are:
89
- * * `'small'`
90
- * * `'medium'` (default)
91
- * * `'large'`
92
- * * `null`
90
+ * * `small`
91
+ * * `medium` (default)
92
+ * * `large`
93
+ * * `none`
93
94
  */
94
95
  size: ButtonSize;
95
96
  /**
@@ -97,13 +98,14 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
97
98
  * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-rounded)).
98
99
  *
99
100
  * The possible values are:
100
- * * `'small'`
101
- * * `'medium'` (default)
102
- * * `'large'`
103
- * * `'full'`
104
- * * `null`
101
+ * * `small`
102
+ * * `medium` (default)
103
+ * * `large`
104
+ * * `full`
105
+ * * `none`
105
106
  */
106
- rounded: ButtonRounded;
107
+ set rounded(rounded: ButtonRounded);
108
+ get rounded(): ButtonRounded;
107
109
  /**
108
110
  * The fillMode property specifies the background and border styles of the SplitButton
109
111
  * ([see example]({% slug api_buttons_splitbuttoncomponent %}#toc-fillMode)).
@@ -114,7 +116,8 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
114
116
  * * `outline`
115
117
  * * `link`
116
118
  */
117
- fillMode: ButtonFillMode;
119
+ set fillMode(fillMode: ButtonFillMode);
120
+ get fillMode(): ButtonFillMode;
118
121
  /**
119
122
  * The SplitButton allows you to specify predefined theme colors.
120
123
  * The theme color will be applied as a background and border color while also amending the text color accordingly
@@ -132,13 +135,15 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
132
135
  * * `dark`&mdash; Applies coloring based on the `dark` theme color.
133
136
  * * `light`&mdash; Applies coloring based on the `light` theme color.
134
137
  * * `inverse`&mdash; Applies coloring based on the `inverse` theme color.
138
+ * * `none`&mdash; Removes the built in theme color.
135
139
  */
136
140
  themeColor: ButtonThemeColor;
137
141
  /**
138
142
  * When set to `true`, disables a SplitButton item
139
143
  * ([see example]({% slug databinding_splitbutton %}#toc-arrays-of-complex-data)).
140
144
  */
141
- disabled: boolean;
145
+ set disabled(value: boolean);
146
+ get disabled(): boolean;
142
147
  /**
143
148
  * Configures the popup of the SplitButton.
144
149
  *
@@ -148,7 +153,8 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
148
153
  * - `appendTo: "root" | "component" | ViewContainerRef`&mdash;Specifies the component to which the popup will be appended.
149
154
  * - `align: "left" | "center" | "right"`&mdash;Specifies the alignment of the popup.
150
155
  */
151
- popupSettings: PopupSettings;
156
+ set popupSettings(settings: PopupSettings);
157
+ get popupSettings(): PopupSettings;
152
158
  /**
153
159
  * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
154
160
  */
@@ -162,7 +168,8 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
162
168
  *
163
169
  * > The data has to be provided in an array-like list.
164
170
  */
165
- data: any;
171
+ set data(data: any);
172
+ get data(): any;
166
173
  /**
167
174
  * The CSS classes that will be rendered on the main button.
168
175
  * Supports the type of values that are supported by [`ngClass`]({{ site.data.urls.angular['ngclassapi'] }}).
@@ -263,30 +270,32 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
263
270
  /**
264
271
  * @hidden
265
272
  */
273
+ set openState(open: boolean);
266
274
  /**
267
- * @hidden
268
- */
269
- openState: boolean;
275
+ * @hidden
276
+ */
277
+ get openState(): boolean;
270
278
  /**
271
279
  * @hidden
272
280
  */
273
- readonly active: boolean;
281
+ get active(): boolean;
274
282
  /**
275
283
  * @hidden
276
284
  */
277
- readonly componentTabIndex: number;
285
+ get componentTabIndex(): number;
278
286
  private buttonText;
279
287
  private lockFocus;
280
288
  private _rounded;
281
289
  private _fillMode;
282
290
  private popupSubs;
283
- isFocused: boolean;
284
- readonly widgetClasses: boolean;
285
- readonly dir: string;
291
+ set isFocused(value: boolean);
292
+ get isFocused(): boolean;
293
+ get widgetClasses(): boolean;
294
+ get dir(): string;
286
295
  /**
287
296
  * @hidden
288
297
  */
289
- readonly ariaLabel: string;
298
+ get ariaLabel(): string;
290
299
  /**
291
300
  * @hidden
292
301
  */
@@ -342,11 +351,11 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
342
351
  /**
343
352
  * @hidden
344
353
  */
345
- readonly anchorAlign: Align;
354
+ get anchorAlign(): Align;
346
355
  /**
347
356
  * @hidden
348
357
  */
349
- readonly popupAlign: Align;
358
+ get popupAlign(): Align;
350
359
  /**
351
360
  * Focuses the SplitButton component.
352
361
  */
@@ -367,12 +376,14 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
367
376
  /**
368
377
  * Returns the current open state of the popup.
369
378
  */
370
- readonly isOpen: boolean;
379
+ get isOpen(): boolean;
371
380
  protected enterHandler(): void;
372
381
  private updateButtonText;
373
- private readonly appendTo;
382
+ private get appendTo();
374
383
  private _toggle;
375
384
  private createPopup;
376
385
  private destroyPopup;
377
386
  private handleClasses;
387
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
388
+ static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "kendo-splitbutton", ["kendoSplitButton"], { "text": "text"; "icon": "icon"; "iconClass": "iconClass"; "type": "type"; "imageUrl": "imageUrl"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "themeColor": "themeColor"; "disabled": "disabled"; "popupSettings": "popupSettings"; "tabIndex": "tabIndex"; "textField": "textField"; "data": "data"; "buttonClass": "buttonClass"; "arrowButtonClass": "arrowButtonClass"; "arrowButtonIcon": "arrowButtonIcon"; }, { "buttonClick": "buttonClick"; "itemClick": "itemClick"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; }, ["itemTemplate"], ["*"]>;
378
389
  }
@@ -0,0 +1,25 @@
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 "./splitbutton.component";
7
+ import * as i2 from "./localization/localized-messages.directive";
8
+ import * as i3 from "./localization/custom-messages.component";
9
+ import * as i4 from "@angular/common";
10
+ import * as i5 from "@progress/kendo-angular-popup";
11
+ import * as i6 from "../button/button.module";
12
+ import * as i7 from "../listbutton/list.module";
13
+ /**
14
+ * @hidden
15
+ *
16
+ * The exported package module.
17
+ *
18
+ * The package exports:
19
+ * - `SplitButtonComponent`&mdash;The SplitButtonComponent component class.
20
+ */
21
+ export declare class SplitButtonModule {
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof i1.SplitButtonComponent, typeof i2.LocalizedSplitButtonMessagesDirective, typeof i3.SplitButtonCustomMessagesComponent], [typeof i4.CommonModule, typeof i5.PopupModule, typeof i6.ButtonModule, typeof i7.ListModule], [typeof i1.SplitButtonComponent, typeof i7.ListModule, typeof i2.LocalizedSplitButtonMessagesDirective, typeof i3.SplitButtonCustomMessagesComponent]>;
24
+ static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
25
+ }
File without changes