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

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