@syncfusion/ej2-splitbuttons 21.2.3 → 21.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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 21.2.3
3
+ * version : 21.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-splitbuttons@*",
3
- "_id": "@syncfusion/ej2-splitbuttons@21.1.41",
3
+ "_id": "@syncfusion/ej2-splitbuttons@21.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-7cHFt4hNOadZYLS595oVcj/sD03puRBCkYUJuzu8LJ/1drY5Y8AuALOWvfdE2MBYarJSm0ntnT0iJqnNm3BUEQ==",
5
+ "_integrity": "sha512-aaTkfYkoS/hBmvS4RAUisx3HdU9/xIPdr98CkoMhW0I0Y1ymVVLs+H6QWUo0yHTJw0rQTkWwNAlpDH8cxD7NkQ==",
6
6
  "_location": "/@syncfusion/ej2-splitbuttons",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,6 +19,7 @@
19
19
  "_requiredBy": [
20
20
  "/",
21
21
  "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-splitbuttons",
22
23
  "/@syncfusion/ej2-documenteditor",
23
24
  "/@syncfusion/ej2-filemanager",
24
25
  "/@syncfusion/ej2-grids",
@@ -27,11 +28,13 @@
27
28
  "/@syncfusion/ej2-inputs",
28
29
  "/@syncfusion/ej2-pivotview",
29
30
  "/@syncfusion/ej2-querybuilder",
31
+ "/@syncfusion/ej2-react-splitbuttons",
30
32
  "/@syncfusion/ej2-ribbon",
31
- "/@syncfusion/ej2-richtexteditor"
33
+ "/@syncfusion/ej2-richtexteditor",
34
+ "/@syncfusion/ej2-vue-splitbuttons"
32
35
  ],
33
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-21.1.41.tgz",
34
- "_shasum": "610f58ad71a3b79df4352c14af180016742f238c",
36
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-21.2.3.tgz",
37
+ "_shasum": "fd49d6a00019fe2150245e6e649237d1a9486cca",
35
38
  "_spec": "@syncfusion/ej2-splitbuttons@*",
36
39
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
37
40
  "author": {
@@ -43,7 +46,7 @@
43
46
  "bundleDependencies": false,
44
47
  "dependencies": {
45
48
  "@syncfusion/ej2-base": "~21.2.3",
46
- "@syncfusion/ej2-popups": "~21.2.3"
49
+ "@syncfusion/ej2-popups": "~21.2.4"
47
50
  },
48
51
  "deprecated": false,
49
52
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup.",
@@ -86,6 +89,6 @@
86
89
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
87
90
  },
88
91
  "typings": "index.d.ts",
89
- "version": "21.2.3",
92
+ "version": "21.2.5",
90
93
  "sideEffects": false
91
94
  }
@@ -247,7 +247,7 @@ var ProgressButton = /** @class */ (function (_super) {
247
247
  var isVertical = clsList.contains('e-vertical');
248
248
  clsList.add(PROGRESSACTIVE);
249
249
  if (!(clsList.contains(HIDESPINNER))) {
250
- showSpinner(this.element);
250
+ showSpinner(this.element.querySelector(".e-spinner"));
251
251
  }
252
252
  this.startAnimate(Date.now(), progressTime ? progressTime : 0, progressTime ? Date.now() - (this.duration * 1 / 100) : Date.now(), percent ? percent : 0, 0, this.step, 0, isVertical);
253
253
  this.startContAnimate();
@@ -380,7 +380,7 @@ var ProgressButton = /** @class */ (function (_super) {
380
380
  ProgressButton.prototype.hideSpin = function () {
381
381
  var cont = this.element.getElementsByClassName(CONTENTCLS)[0];
382
382
  if (!(this.element.classList.contains(HIDESPINNER))) {
383
- hideSpinner(this.element);
383
+ hideSpinner(this.element.querySelector(".e-spinner"));
384
384
  }
385
385
  this.element.classList.remove(PROGRESSACTIVE);
386
386
  if (this.animationSettings.effect !== 'None') {
@@ -437,7 +437,7 @@ var ProgressButton = /** @class */ (function (_super) {
437
437
  this.setContent();
438
438
  this.createSpinner();
439
439
  if (isSpinning) {
440
- showSpinner(this.element);
440
+ showSpinner(this.element.querySelector(".e-spinner"));
441
441
  isSpinning = false;
442
442
  }
443
443
  if (this.enableProgress) {