@syncfusion/ej2-vue-splitbuttons 24.1.46 → 24.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.
- package/CHANGELOG.md +8 -0
- package/dist/ej2-vue-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-vue-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-splitbuttons.es2015.js +3 -3
- package/dist/es6/ej2-vue-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-splitbuttons.es5.js +3 -3
- package/dist/es6/ej2-vue-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-vue-splitbuttons.min.js +2 -2
- package/package.json +8 -8
- package/src/drop-down-button/dropdownbutton.component.js +1 -1
- package/src/progress-button/progressbutton.component.js +1 -1
- package/src/split-button/splitbutton.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-splitbuttons@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-splitbuttons@24.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-splitbuttons@24.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-G0mDCGU+/MFSh4HCyHyLyItiXjf93KBGqgOFVY/oybmnr3Ln4mPHiGS9e0t+wPMyqAWuisWSVHdVlf5YF1Osfg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-splitbuttons",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-splitbuttons/-/ej2-vue-splitbuttons-24.2.3.tgz",
|
|
23
|
+
"_shasum": "4deb7ceeac98d398318a4f5c45979d1a506f7c32",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-splitbuttons@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~24.
|
|
35
|
-
"@syncfusion/ej2-splitbuttons": "24.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~24.
|
|
34
|
+
"@syncfusion/ej2-base": "~24.2.5",
|
|
35
|
+
"@syncfusion/ej2-splitbuttons": "24.2.5",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~24.2.3"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Vue",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
"ci-publish": "gulp ci-publish",
|
|
65
65
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
66
66
|
},
|
|
67
|
-
"version": "24.
|
|
67
|
+
"version": "24.2.5",
|
|
68
68
|
"sideEffects": false
|
|
69
69
|
}
|
|
@@ -26,7 +26,7 @@ export var DropDownButtonComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new DropDownButton({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|
|
@@ -25,7 +25,7 @@ export var ProgressButtonComponent = vueDefineComponent({
|
|
|
25
25
|
provide: function () { return { custom: this.custom }; },
|
|
26
26
|
data: function () {
|
|
27
27
|
return {
|
|
28
|
-
|
|
28
|
+
ej2Instances: new ProgressButton({}),
|
|
29
29
|
propKeys: properties,
|
|
30
30
|
models: modelProps,
|
|
31
31
|
hasChildDirective: false,
|
|
@@ -26,7 +26,7 @@ export var SplitButtonComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new SplitButton({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|