@syncfusion/ej2-angular-splitbuttons 24.1.45 → 24.1.46-ngcc

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