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

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