@syncfusion/ej2-vue-splitbuttons 24.2.5 → 25.1.35

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "_from": "@syncfusion/ej2-vue-splitbuttons@*",
3
3
  "_id": "@syncfusion/ej2-vue-splitbuttons@24.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-G0mDCGU+/MFSh4HCyHyLyItiXjf93KBGqgOFVY/oybmnr3Ln4mPHiGS9e0t+wPMyqAWuisWSVHdVlf5YF1Osfg==",
5
+ "_integrity": "sha512-N8RA8Mf7GNTui6BNnqSPAw2OVdkJTzLTJd1XI/OXa/92uZEX09Ef0jKb6S2DqA65nyWzlU6zgAUeHIdOHO84kA==",
6
6
  "_location": "/@syncfusion/ej2-vue-splitbuttons",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-splitbuttons/-/ej2-vue-splitbuttons-24.2.3.tgz",
23
- "_shasum": "4deb7ceeac98d398318a4f5c45979d1a506f7c32",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-vue-splitbuttons/-/ej2-vue-splitbuttons-24.2.3.tgz",
23
+ "_shasum": "e316277091ed3c5d8f79cd4c5578d3346e9d82aa",
24
24
  "_spec": "@syncfusion/ej2-vue-splitbuttons@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~24.2.5",
35
- "@syncfusion/ej2-splitbuttons": "24.2.5",
36
- "@syncfusion/ej2-vue-base": "~24.2.3"
34
+ "@syncfusion/ej2-base": "~25.1.35",
35
+ "@syncfusion/ej2-splitbuttons": "25.1.35",
36
+ "@syncfusion/ej2-vue-base": "~25.1.35"
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.2.5",
67
+ "version": "25.1.35",
68
68
  "sideEffects": false
69
69
  }
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { DropDownButtonModel } from '@syncfusion/ej2-splitbuttons';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { DropDownButton, DropDownButtonModel } from '@syncfusion/ej2-splitbuttons';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,27 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let DropDownButtonComponent: DefineVueComponent<DropDownButtonModel>;
14
- export declare type DropDownButtonComponent = InstanceType<typeof DropDownButtonComponent>;
14
+ export declare type DropDownButtonComponent = typeof ComponentBase & {
15
+ ej2Instances: DropDownButton;
16
+ isVue3: boolean;
17
+ isLazyUpdate: Boolean;
18
+ plugins: any[];
19
+ propKeys: string[];
20
+ models: string[];
21
+ hasChildDirective: boolean;
22
+ tagMapper: {
23
+ [key: string]: Object;
24
+ };
25
+ tagNameMapper: Object;
26
+ setProperties(prop: any, muteOnChange: boolean): void;
27
+ trigger(eventName: string, eventProp: {
28
+ [key: string]: Object;
29
+ }, successHandler?: Function): void;
30
+ addItems(items: Object[], text?: string): void;
31
+ focusIn(): void;
32
+ removeItems(items: string[], isUniqueId?: boolean): void;
33
+ toggle(): void;
34
+ };
15
35
  export declare const DropDownButtonPlugin: {
16
36
  name: string;
17
37
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { ProgressButtonModel } from '@syncfusion/ej2-splitbuttons';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { ProgressButton, ProgressButtonModel } from '@syncfusion/ej2-splitbuttons';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,28 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let ProgressButtonComponent: DefineVueComponent<ProgressButtonModel>;
14
- export declare type ProgressButtonComponent = InstanceType<typeof ProgressButtonComponent>;
14
+ export declare type ProgressButtonComponent = typeof ComponentBase & {
15
+ ej2Instances: ProgressButton;
16
+ isVue3: boolean;
17
+ isLazyUpdate: Boolean;
18
+ plugins: any[];
19
+ propKeys: string[];
20
+ models: string[];
21
+ hasChildDirective: boolean;
22
+ tagMapper: {
23
+ [key: string]: Object;
24
+ };
25
+ tagNameMapper: Object;
26
+ setProperties(prop: any, muteOnChange: boolean): void;
27
+ trigger(eventName: string, eventProp: {
28
+ [key: string]: Object;
29
+ }, successHandler?: Function): void;
30
+ click(): void;
31
+ focusIn(): void;
32
+ progressComplete(): void;
33
+ start(percent?: number): void;
34
+ stop(): void;
35
+ };
15
36
  export declare const ProgressButtonPlugin: {
16
37
  name: string;
17
38
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { SplitButtonModel } from '@syncfusion/ej2-splitbuttons';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { SplitButton, SplitButtonModel } from '@syncfusion/ej2-splitbuttons';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,27 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let SplitButtonComponent: DefineVueComponent<SplitButtonModel>;
14
- export declare type SplitButtonComponent = InstanceType<typeof SplitButtonComponent>;
14
+ export declare type SplitButtonComponent = typeof ComponentBase & {
15
+ ej2Instances: SplitButton;
16
+ isVue3: boolean;
17
+ isLazyUpdate: Boolean;
18
+ plugins: any[];
19
+ propKeys: string[];
20
+ models: string[];
21
+ hasChildDirective: boolean;
22
+ tagMapper: {
23
+ [key: string]: Object;
24
+ };
25
+ tagNameMapper: Object;
26
+ setProperties(prop: any, muteOnChange: boolean): void;
27
+ trigger(eventName: string, eventProp: {
28
+ [key: string]: Object;
29
+ }, successHandler?: Function): void;
30
+ addItems(items: Object[], text?: string): void;
31
+ focusIn(): void;
32
+ removeItems(items: string[], isUniqueId?: boolean): void;
33
+ toggle(): void;
34
+ };
15
35
  export declare const SplitButtonPlugin: {
16
36
  name: string;
17
37
  install(Vue: any): void;