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

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 -165
  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 -264
  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,264 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### DropDownButton
6
-
7
- #### Bug Fixes
8
-
9
- - `#I511002` - Issue in `Aria-label` accessibility issue in DropDownButton has been resolved
10
-
11
- ## 23.1.36 (2023-09-15)
12
-
13
- ### DropDownButton
14
-
15
- #### Bug Fixes
16
-
17
- - `#I445638` - Issue in DropDownButton Popup Alignment issue while setting `enableRtl` property as true has been resolved.
18
-
19
- ## 20.4.50 (2023-02-14)
20
-
21
- ### SplitButton
22
-
23
- #### Bug Fixes
24
-
25
- - `#I434642` - Issue in Script error thrown when we add items in before open event with enable createPopupOnClick property has been resolved.
26
-
27
- ### DropDownButton
28
-
29
- #### Bug Fixes
30
-
31
- - `#I388868` - Script error occurs while using `beforeOpen` event in DropDownButton issue has been resolved
32
-
33
- ## 19.4.40 (2021-12-28)
34
-
35
- ### DropDownButton
36
-
37
- #### Bug Fixes
38
-
39
- - ColorPicker is not closed while clicks again the DropDownButton issue has been resolved.
40
-
41
- ## 19.4.38 (2021-12-17)
42
-
43
- ### DropDownButton
44
-
45
- #### Bug Fixes
46
-
47
- - Overflow issue in ColorPicker has been resolved.
48
-
49
- ## 19.3.48 (2021-11-02)
50
-
51
- ### DropDownButton
52
-
53
- #### Bug Fixes
54
-
55
- - `createPopupOnClick` property scenario not handled properly in `DropDownButton` has been resolved.
56
-
57
- ## 19.2.55 (2021-08-11)
58
-
59
- ### DropDownButton
60
-
61
- #### Bug Fixes
62
-
63
- - `#I337016` - Input space not works in DropDownButton if the target is set as text input issue has been resolved.
64
-
65
- ## 18.4.41 (2021-02-02)
66
-
67
- ### SplitButton
68
-
69
- #### Bug Fixes
70
-
71
- - Issue with destroy has been fixed.
72
-
73
- ## 18.4.31 (2020-12-22)
74
-
75
- ### ProgressButton
76
-
77
- #### Bug Fixes
78
-
79
- - Issue with setting content property in begin event has been resolved.
80
-
81
- ## 18.4.30 (2020-12-17)
82
-
83
- ### SplitButton
84
-
85
- #### New Features
86
-
87
- - `#299063` - Provided support to remove the items in split button using item id.
88
-
89
- ## 18.3.40 (2020-10-13)
90
-
91
- ### SplitButton
92
-
93
- #### Bug Fixes
94
-
95
- - Warning message has been resolved.
96
-
97
- ## 18.1.43 (2020-04-07)
98
-
99
- ### SplitButton
100
-
101
- #### Bug Fixes
102
-
103
- - Keyboard navigation not working in `bootstrap4` has been resolved.
104
-
105
- ## 17.4.49 (2020-02-11)
106
-
107
- ### Button Group
108
-
109
- #### Bug Fixes
110
-
111
- - CSS validation issues has been resolved.
112
-
113
- ## 17.4.39 (2019-12-17)
114
-
115
- ### DropDownButton
116
-
117
- #### New Features
118
-
119
- - #253123 - Provided `addItems` `removeItems` methods and update items dynamically.
120
-
121
- #### Bug Fixes
122
-
123
- - #254048 - UI misalignment while changing the font-size issue fixed.
124
-
125
- ## 17.2.40 (2019-08-06)
126
-
127
- ### ProgressButton
128
-
129
- #### Bug Fixes
130
-
131
- - Issue with 'progressComplete' method is fixed.
132
-
133
- ## 17.2.39 (2019-07-30)
134
-
135
- ### SplitButton
136
-
137
- #### Bug Fixes
138
-
139
- - Provided support for 'OnOpen' and 'OnClose' events in Blazor.
140
-
141
- ## 17.1.50 (2019-06-04)
142
-
143
- ### ProgressButton
144
-
145
- #### Bug Fixes
146
-
147
- - Provided public method 'progressComplete' to complete the progress.
148
-
149
- ## 16.4.53 (2019-02-13)
150
-
151
- ### DropDownButton
152
-
153
- #### Bug Fixes
154
-
155
- - Proper ARIA standards followed.
156
-
157
- ## 16.4.46 (2019-01-08)
158
-
159
- ### DropDownButton
160
-
161
- #### Bug Fixes
162
-
163
- - Item text overflow issue fixed.
164
-
165
- ## 16.4.40-beta (2018-12-10)
166
-
167
- ### ProgressButton
168
-
169
- #### Breaking Changes
170
-
171
- - Type changes done for the following property.
172
-
173
- | Property Name | Old Type | New Type |
174
- |---|---|---|
175
- | `animationSettings` | AnimationSettings | AnimationSettingsModel |
176
- | `spinSettings` | SpinSettings | SpinSettingsModel |
177
-
178
- ## 16.3.22 (2018-09-25)
179
-
180
- ### ProgressButton
181
-
182
- #### Bug Fixes
183
-
184
- - Content update while progress issue resolved.
185
-
186
- ## 16.3.17 (2018-09-12)
187
-
188
- ### ProgressButton
189
-
190
- 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.
191
-
192
-
193
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of progress button.
194
- - **Icons and Spinner** - Supports icon, spinner and its positioning.
195
- - **Animation** - Provided with predefined animation and progress indicator.
196
- - **Events** - Supports event triggering at specified interval.
197
- - **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.
198
-
199
- ## 16.2.48 (2018-08-14)
200
-
201
- ### DropDownButton
202
-
203
- #### Bug Fixes
204
-
205
- - Popup z-index calculation inside bootstrap model dialog issue fixed.
206
-
207
- ## 16.2.44 (2018-07-10)
208
-
209
- ### DropDownButton
210
-
211
- #### Bug Fixes
212
-
213
- - Popup positioning under fixed parent issue fixed.
214
-
215
- ## 16.2.41 (2018-06-25)
216
-
217
- ### ButtonGroup
218
-
219
- ButtonGroup is a graphical user interface that groups series of buttons horizontally or vertically.
220
-
221
-
222
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of button.
223
- - **Selection** - Supports single and multiple selection behaviors.
224
- - **Orientation** - Supports horizontal and vertical orientations.
225
- - **Nesting** - Supports nesting with drop-down and split button components.
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
-
249
- - **Sizes** - Provided with different sizes of DropDownButton.
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
- - **Separator** - Supports Popup items grouping by using the Separator.
252
- - **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.
253
-
254
- ### SplitButton
255
-
256
- 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.
257
-
258
-
259
- - **Sizes** - Provided with different sizes of SplitButton.
260
- - **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.
261
- - **Separator** - Supports Popup items grouping by using the Separator.
262
- - **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.
263
-
264
-