@syncfusion/ej2-angular-splitbuttons 20.3.56-ngcc → 20.3.56

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 (201) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
  3. package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
  4. package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
  5. package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
  6. package/esm2020/src/index.mjs +13 -0
  7. package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
  8. package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
  9. package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
  10. package/esm2020/src/split-button/items.directive.mjs +46 -0
  11. package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
  12. package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
  13. package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
  14. package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  16. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  18. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  19. package/package.json +26 -12
  20. package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
  21. package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
  22. package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
  23. package/src/drop-down-button/items.directive.d.ts +5 -0
  24. package/src/progress-button/progressbutton-all.module.d.ts +6 -0
  25. package/src/progress-button/progressbutton.component.d.ts +3 -0
  26. package/src/progress-button/progressbutton.module.d.ts +6 -0
  27. package/src/split-button/items.directive.d.ts +5 -0
  28. package/src/split-button/splitbutton-all.module.d.ts +6 -0
  29. package/src/split-button/splitbutton.component.d.ts +3 -0
  30. package/src/split-button/splitbutton.module.d.ts +7 -0
  31. package/styles/button-group/_all.scss +2 -0
  32. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  33. package/styles/button-group/_bootstrap-definition.scss +30 -0
  34. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  35. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  36. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  37. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  38. package/styles/button-group/_fabric-definition.scss +30 -0
  39. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  40. package/styles/button-group/_fluent-definition.scss +31 -0
  41. package/styles/button-group/_fusionnew-definition.scss +31 -0
  42. package/styles/button-group/_group-button-mixin.scss +72 -0
  43. package/styles/button-group/_highcontrast-definition.scss +32 -0
  44. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  45. package/styles/button-group/_layout.scss +288 -0
  46. package/styles/button-group/_material-dark-definition.scss +33 -0
  47. package/styles/button-group/_material-definition.scss +30 -0
  48. package/styles/button-group/_material3-definition.scss +31 -0
  49. package/styles/button-group/_tailwind-dark-definition.scss +1 -0
  50. package/styles/button-group/_tailwind-definition.scss +31 -0
  51. package/styles/button-group/_theme.scss +386 -0
  52. package/styles/button-group/bootstrap-dark.scss +4 -1
  53. package/styles/button-group/bootstrap.scss +4 -1
  54. package/styles/button-group/bootstrap4.scss +4 -1
  55. package/styles/button-group/bootstrap5-dark.scss +4 -1
  56. package/styles/button-group/bootstrap5.scss +4 -1
  57. package/styles/button-group/fabric-dark.scss +4 -1
  58. package/styles/button-group/fabric.scss +4 -1
  59. package/styles/button-group/fluent-dark.scss +4 -1
  60. package/styles/button-group/fluent.scss +4 -1
  61. package/styles/button-group/highcontrast-light.scss +4 -1
  62. package/styles/button-group/highcontrast.scss +4 -1
  63. package/styles/button-group/material-dark.scss +4 -1
  64. package/styles/button-group/material.scss +4 -1
  65. package/styles/button-group/tailwind-dark.scss +4 -1
  66. package/styles/button-group/tailwind.scss +4 -1
  67. package/styles/drop-down-button/_all.scss +2 -0
  68. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  69. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  70. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  71. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  72. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  73. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  74. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  75. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  76. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  77. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  78. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  79. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  80. package/styles/drop-down-button/_layout.scss +218 -0
  81. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  82. package/styles/drop-down-button/_material-definition.scss +48 -0
  83. package/styles/drop-down-button/_material3-definition.scss +50 -0
  84. package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
  85. package/styles/drop-down-button/_tailwind-definition.scss +49 -0
  86. package/styles/drop-down-button/_theme.scss +78 -0
  87. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  88. package/styles/drop-down-button/bootstrap.scss +6 -1
  89. package/styles/drop-down-button/bootstrap4.scss +6 -1
  90. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  91. package/styles/drop-down-button/bootstrap5.scss +6 -1
  92. package/styles/drop-down-button/fabric-dark.scss +6 -1
  93. package/styles/drop-down-button/fabric.scss +6 -1
  94. package/styles/drop-down-button/fluent-dark.scss +6 -1
  95. package/styles/drop-down-button/fluent.scss +6 -1
  96. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  97. package/styles/drop-down-button/highcontrast.scss +6 -1
  98. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  99. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  100. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  101. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  102. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  103. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  104. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  105. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  106. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  107. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  108. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  109. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  110. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  111. package/styles/drop-down-button/icons/_material.scss +10 -0
  112. package/styles/drop-down-button/icons/_material3.scss +10 -0
  113. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  114. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  115. package/styles/drop-down-button/material-dark.scss +6 -1
  116. package/styles/drop-down-button/material.scss +6 -1
  117. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  118. package/styles/drop-down-button/tailwind.scss +6 -1
  119. package/styles/progress-button/_all.scss +2 -0
  120. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  121. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  122. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  123. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  124. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  125. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  126. package/styles/progress-button/_fabric-definition.scss +24 -0
  127. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  128. package/styles/progress-button/_fluent-definition.scss +21 -0
  129. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  130. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  131. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  132. package/styles/progress-button/_layout.scss +396 -0
  133. package/styles/progress-button/_material-dark-definition.scss +27 -0
  134. package/styles/progress-button/_material-definition.scss +24 -0
  135. package/styles/progress-button/_material3-definition.scss +21 -0
  136. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  137. package/styles/progress-button/_tailwind-definition.scss +21 -0
  138. package/styles/progress-button/_theme.scss +457 -0
  139. package/styles/progress-button/bootstrap-dark.scss +5 -1
  140. package/styles/progress-button/bootstrap.scss +5 -1
  141. package/styles/progress-button/bootstrap4.scss +5 -1
  142. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  143. package/styles/progress-button/bootstrap5.scss +5 -1
  144. package/styles/progress-button/fabric-dark.scss +5 -1
  145. package/styles/progress-button/fabric.scss +5 -1
  146. package/styles/progress-button/fluent-dark.scss +5 -1
  147. package/styles/progress-button/fluent.scss +5 -1
  148. package/styles/progress-button/highcontrast-light.scss +5 -1
  149. package/styles/progress-button/highcontrast.scss +5 -1
  150. package/styles/progress-button/material-dark.scss +5 -1
  151. package/styles/progress-button/material.scss +5 -1
  152. package/styles/progress-button/tailwind-dark.scss +5 -1
  153. package/styles/progress-button/tailwind.scss +5 -1
  154. package/styles/split-button/_all.scss +2 -0
  155. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  156. package/styles/split-button/_bootstrap-definition.scss +23 -0
  157. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  158. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  159. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  160. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  161. package/styles/split-button/_fabric-definition.scss +23 -0
  162. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  163. package/styles/split-button/_fluent-definition.scss +24 -0
  164. package/styles/split-button/_fusionnew-definition.scss +24 -0
  165. package/styles/split-button/_highcontrast-definition.scss +23 -0
  166. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  167. package/styles/split-button/_layout.scss +420 -0
  168. package/styles/split-button/_material-dark-definition.scss +26 -0
  169. package/styles/split-button/_material-definition.scss +23 -0
  170. package/styles/split-button/_material3-definition.scss +24 -0
  171. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  172. package/styles/split-button/_tailwind-definition.scss +24 -0
  173. package/styles/split-button/_theme.scss +136 -0
  174. package/styles/split-button/bootstrap-dark.scss +6 -1
  175. package/styles/split-button/bootstrap.scss +6 -1
  176. package/styles/split-button/bootstrap4.scss +6 -1
  177. package/styles/split-button/bootstrap5-dark.scss +6 -1
  178. package/styles/split-button/bootstrap5.scss +6 -1
  179. package/styles/split-button/fabric-dark.scss +6 -1
  180. package/styles/split-button/fabric.scss +6 -1
  181. package/styles/split-button/fluent-dark.scss +6 -1
  182. package/styles/split-button/fluent.scss +6 -1
  183. package/styles/split-button/highcontrast-light.scss +6 -1
  184. package/styles/split-button/highcontrast.scss +6 -1
  185. package/styles/split-button/material-dark.scss +6 -1
  186. package/styles/split-button/material.scss +6 -1
  187. package/styles/split-button/tailwind-dark.scss +6 -1
  188. package/styles/split-button/tailwind.scss +6 -1
  189. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  190. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  191. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  192. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  193. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  194. package/CHANGELOG.md +0 -266
  195. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  196. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  197. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  198. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  199. package/ej2-angular-splitbuttons.d.ts +0 -7
  200. package/ej2-angular-splitbuttons.metadata.json +0 -1
  201. package/postinstall/tagchange.js +0 -18
package/CHANGELOG.md DELETED
@@ -1,266 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ## 20.3.52 (2022-10-26)
6
-
7
- ### DropDownButton
8
-
9
- #### Bug Fixes
10
-
11
- - `#I412776` - Select event is not triggered while using `closeActionEvents` in DropDownButton has been resolved.
12
-
13
- ## 20.3.47 (2022-09-29)
14
-
15
- ### DropDownButton
16
-
17
- #### New Features
18
-
19
- - `#I375776` - Provided the focusout event support to the DropDownButton component.
20
-
21
- ### DropDownButton
22
-
23
- #### Bug Fixes
24
-
25
- - `#I388868` - Script error occurs while using `beforeOpen` event in DropDownButton issue has been resolved
26
-
27
- ## 19.4.40 (2021-12-28)
28
-
29
- ### DropDownButton
30
-
31
- #### Bug Fixes
32
-
33
- - ColorPicker is not closed while clicks again the DropDownButton issue has been resolved.
34
-
35
- ## 19.4.38 (2021-12-17)
36
-
37
- ### DropDownButton
38
-
39
- #### Bug Fixes
40
-
41
- - Overflow issue in ColorPicker has been resolved.
42
-
43
- ## 19.3.48 (2021-11-02)
44
-
45
- ### DropDownButton
46
-
47
- #### Bug Fixes
48
-
49
- - `createPopupOnClick` property scenario not handled properly in `DropDownButton` has been resolved.
50
-
51
- ## 19.2.55 (2021-08-11)
52
-
53
- ### DropDownButton
54
-
55
- #### Bug Fixes
56
-
57
- - `#I337016` - Input space not works in DropDownButton if the target is set as text input issue has been resolved.
58
-
59
- ## 18.4.41 (2021-02-02)
60
-
61
- ### SplitButton
62
-
63
- #### Bug Fixes
64
-
65
- - Issue with destroy has been fixed.
66
-
67
- ## 18.4.31 (2020-12-22)
68
-
69
- ### ProgressButton
70
-
71
- #### Bug Fixes
72
-
73
- - Issue with setting content property in begin event has been resolved.
74
-
75
- ## 18.4.30 (2020-12-17)
76
-
77
- ### SplitButton
78
-
79
- #### New Features
80
-
81
- - `#299063` - Provided support to remove the items in split button using item id.
82
-
83
- ## 18.3.40 (2020-10-13)
84
-
85
- ### SplitButton
86
-
87
- #### Bug Fixes
88
-
89
- - Warning message has been resolved.
90
-
91
- ## 18.1.43 (2020-04-07)
92
-
93
- ### SplitButton
94
-
95
- #### Bug Fixes
96
-
97
- - Keyboard navigation not working in `bootstrap4` has been resolved.
98
-
99
- ## 17.4.49 (2020-02-11)
100
-
101
- ### Button Group
102
-
103
- #### Bug Fixes
104
-
105
- - CSS validation issues has been resolved.
106
-
107
- ## 17.4.39 (2019-12-17)
108
-
109
- ### DropDownButton
110
-
111
- #### New Features
112
-
113
- - #253123 - Provided `addItems` `removeItems` methods and update items dynamically.
114
-
115
- #### Bug Fixes
116
-
117
- - #254048 - UI misalignment while changing the font-size issue fixed.
118
-
119
- ## 17.2.40 (2019-08-06)
120
-
121
- ### ProgressButton
122
-
123
- #### Bug Fixes
124
-
125
- - Issue with 'progressComplete' method is fixed.
126
-
127
- ## 17.2.39 (2019-07-30)
128
-
129
- ### SplitButton
130
-
131
- #### Bug Fixes
132
-
133
- - Provided support for 'OnOpen' and 'OnClose' events in Blazor.
134
-
135
- ## 17.1.50 (2019-06-04)
136
-
137
- ### ProgressButton
138
-
139
- #### Bug Fixes
140
-
141
- - Provided public method 'progressComplete' to complete the progress.
142
-
143
- ## 16.4.53 (2019-02-13)
144
-
145
- ### DropDownButton
146
-
147
- #### Bug Fixes
148
-
149
- - Proper ARIA standards followed.
150
-
151
- ## 16.4.46 (2019-01-08)
152
-
153
- ### DropDownButton
154
-
155
- #### Bug Fixes
156
-
157
- - Item text overflow issue fixed.
158
-
159
- ## 16.4.40-beta (2018-12-10)
160
-
161
- ### ProgressButton
162
-
163
- #### Breaking Changes
164
-
165
- - Type changes done for the following property.
166
-
167
- Property Name | Old Type | New Type
168
- -----|-----|-----
169
- `animationSettings` | AnimationSettings | AnimationSettingsModel
170
- `spinSettings` | SpinSettings | SpinSettingsModel
171
-
172
- ## 16.3.22 (2018-09-25)
173
-
174
- ### ProgressButton
175
-
176
- #### Bug Fixes
177
-
178
- - Content update while progress issue resolved.
179
-
180
- ## 16.3.17 (2018-09-12)
181
-
182
- ### ProgressButton
183
-
184
- The progress button visualizes the progression of an operation to indicate the user that a process is happening in the background. The progress can be shown with graphics accompanied by a textual representation.
185
-
186
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of progress button.
187
-
188
- - **Icons and Spinner** - Supports icon, spinner and its positioning.
189
-
190
- - **Animation** - Provided with predefined animation and progress indicator.
191
-
192
- - **Events** - Supports event triggering at specified interval.
193
-
194
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the ProgressButton component features through the keyboard, screen readers, or other assistive technology devices.
195
-
196
- ## 16.2.48 (2018-08-14)
197
-
198
- ### DropDownButton
199
-
200
- #### Bug Fixes
201
-
202
- - Popup z-index calculation inside bootstrap model dialog issue fixed.
203
-
204
- ## 16.2.44 (2018-07-10)
205
-
206
- ### DropDownButton
207
-
208
- #### Bug Fixes
209
-
210
- - Popup positioning under fixed parent issue fixed.
211
-
212
- ## 16.2.41 (2018-06-25)
213
-
214
- ### ButtonGroup
215
-
216
- ButtonGroup is a graphical user interface that groups series of buttons horizontally or vertically.
217
-
218
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of button.
219
-
220
- - **Selection** - Supports single and multiple selection behaviors.
221
-
222
- - **Orientation** - Supports horizontal and vertical orientations.
223
-
224
- - **Nesting** - Supports nesting with drop-down and split button components.
225
-
226
- - **Accessibility** - Built-in accessibility features to access all the button group using the keyboard, screen readers, or other assistive technology devices.
227
-
228
- ### SplitButton
229
-
230
- #### Breaking Changes
231
-
232
- - UI changes based on design guidelines
233
-
234
- ## 16.1.28 (2018-03-09)
235
-
236
- ### SplitButton
237
-
238
- #### Bug Fixes
239
-
240
- - Style compatibility issue fixed.
241
-
242
- ## 16.1.24 (2018-02-22)
243
-
244
- ### DropDownButton
245
-
246
- DropDownButton component is used to toggle contextual overlays for displaying list of action items.
247
-
248
- - **Sizes** - Provided with different sizes of DropDownButton.
249
-
250
- - **Icons and Navigations** - Supports text and icon on the DropDownButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
251
-
252
- - **Separator** - Supports Popup items grouping by using the Separator.
253
-
254
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the DropDownButton component features through the keyboard, screen readers, or other assistive technology devices.
255
-
256
- ### SplitButton
257
-
258
- SplitButton component has primary and secondary button. Primary button is used to select default action and secondary button is used to toggle contextual overlays for displaying list of action items.
259
-
260
- - **Sizes** - Provided with different sizes of SplitButton.
261
-
262
- - **Icons and Navigations** - Supports text and icon on the SplitButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
263
-
264
- - **Separator** - Supports Popup items grouping by using the Separator.
265
-
266
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the SplitButton component features through the keyboard, screen readers, or other assistive technology devices.