@syncfusion/ej2-vue-navigations 24.2.8 → 25.1.37

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
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-navigations@*",
3
- "_id": "@syncfusion/ej2-vue-navigations@24.2.4",
3
+ "_id": "@syncfusion/ej2-vue-navigations@25.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-SXmaAHjd8QUqDxpXlnN2FvrjpkZRA3zSJ+3lb5oA2o8lTAQAPIb+/YOyHmFQ3+63jnIZURJYBMSfWMEncgTyMg==",
5
+ "_integrity": "sha512-n1W2zzIqKdoKM0G9Q7f0rAY/jXQck6haFw/iUMMFt/OYUCCJiJv8BbJbvhLH5yHonhOwFlJaY63tzpA3rHWhkg==",
6
6
  "_location": "/@syncfusion/ej2-vue-navigations",
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-navigations/-/ej2-vue-navigations-24.2.4.tgz",
23
- "_shasum": "4270b275831d6168a4aa0557bab029209c544c9a",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-25.1.35.tgz",
23
+ "_shasum": "7b2568ed6804f954fc9df78868d59276b65e24e6",
24
24
  "_spec": "@syncfusion/ej2-vue-navigations@*",
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.7",
35
- "@syncfusion/ej2-navigations": "24.2.8",
36
- "@syncfusion/ej2-vue-base": "~24.2.3"
34
+ "@syncfusion/ej2-base": "~25.1.35",
35
+ "@syncfusion/ej2-navigations": "25.1.37",
36
+ "@syncfusion/ej2-vue-base": "~25.1.35"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
@@ -70,6 +70,6 @@
70
70
  "ci-publish": "gulp ci-publish",
71
71
  "compile": "gulp ci-compile && gulp vue-global-script"
72
72
  },
73
- "version": "24.2.8",
73
+ "version": "25.1.37",
74
74
  "sideEffects": false
75
75
  }
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { AccordionModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Accordion, AccordionModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,29 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let AccordionComponent: DefineVueComponent<AccordionModel>;
14
- export declare type AccordionComponent = InstanceType<typeof AccordionComponent>;
14
+ export declare type AccordionComponent = typeof ComponentBase & {
15
+ ej2Instances: Accordion;
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
+ addItem(item: Object | Object[] | Object | Object[], index?: number): void;
31
+ enableItem(index: number, isEnable: boolean): void;
32
+ expandItem(isExpand: boolean, index?: number): void;
33
+ hideItem(index: number, isHidden?: boolean): void;
34
+ removeItem(index: number): void;
35
+ select(index: number): void;
36
+ };
15
37
  export declare const AccordionPlugin: {
16
38
  name: string;
17
39
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { AppBarModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { AppBar, AppBarModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,23 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let AppBarComponent: DefineVueComponent<AppBarModel>;
14
- export declare type AppBarComponent = InstanceType<typeof AppBarComponent>;
14
+ export declare type AppBarComponent = typeof ComponentBase & {
15
+ ej2Instances: AppBar;
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
+ };
15
31
  export declare const AppBarPlugin: {
16
32
  name: string;
17
33
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { BreadcrumbModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Breadcrumb, BreadcrumbModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,23 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let BreadcrumbComponent: DefineVueComponent<BreadcrumbModel>;
14
- export declare type BreadcrumbComponent = InstanceType<typeof BreadcrumbComponent>;
14
+ export declare type BreadcrumbComponent = typeof ComponentBase & {
15
+ ej2Instances: Breadcrumb;
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
+ };
15
31
  export declare const BreadcrumbPlugin: {
16
32
  name: string;
17
33
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { CarouselModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Carousel, CarouselModel } from '@syncfusion/ej2-navigations';
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 CarouselComponent: DefineVueComponent<CarouselModel>;
14
- export declare type CarouselComponent = InstanceType<typeof CarouselComponent>;
14
+ export declare type CarouselComponent = typeof ComponentBase & {
15
+ ej2Instances: Carousel;
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
+ next(): void;
31
+ pause(): void;
32
+ play(): void;
33
+ prev(): void;
34
+ };
15
35
  export declare const CarouselPlugin: {
16
36
  name: string;
17
37
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { ContextMenuModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { ContextMenu, ContextMenuModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -12,7 +12,33 @@ export declare const props: any, watch: any, emitProbs: any;
12
12
  * ```
13
13
  */
14
14
  export declare let ContextMenuComponent: DefineVueComponent<ContextMenuModel>;
15
- export declare type ContextMenuComponent = InstanceType<typeof ContextMenuComponent>;
15
+ export declare type ContextMenuComponent = typeof ComponentBase & {
16
+ ej2Instances: ContextMenu;
17
+ isVue3: boolean;
18
+ isLazyUpdate: Boolean;
19
+ plugins: any[];
20
+ propKeys: string[];
21
+ models: string[];
22
+ hasChildDirective: boolean;
23
+ tagMapper: {
24
+ [key: string]: Object;
25
+ };
26
+ tagNameMapper: Object;
27
+ setProperties(prop: any, muteOnChange: boolean): void;
28
+ trigger(eventName: string, eventProp: {
29
+ [key: string]: Object;
30
+ }, successHandler?: Function): void;
31
+ close(): void;
32
+ enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
33
+ getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
34
+ hideItems(items: string[], isUniqueId?: boolean): void;
35
+ insertAfter(items: Object[], text: string, isUniqueId?: boolean): void;
36
+ insertBefore(items: Object[], text: string, isUniqueId?: boolean): void;
37
+ open(top: number, left: number, target?: Object): void;
38
+ removeItems(items: string[], isUniqueId?: boolean): void;
39
+ setItem(item: Object, id?: string, isUniqueId?: boolean): void;
40
+ showItems(items: string[], isUniqueId?: boolean): void;
41
+ };
16
42
  export declare const ContextMenuPlugin: {
17
43
  name: string;
18
44
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { MenuModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Menu, MenuModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,33 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let MenuComponent: DefineVueComponent<MenuModel>;
14
- export declare type MenuComponent = InstanceType<typeof MenuComponent>;
14
+ export declare type MenuComponent = typeof ComponentBase & {
15
+ ej2Instances: Menu;
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
+ close(): void;
31
+ enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
32
+ getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
33
+ hideItems(items: string[], isUniqueId?: boolean): void;
34
+ insertAfter(items: Object[], text: string, isUniqueId?: boolean): void;
35
+ insertBefore(items: Object[], text: string, isUniqueId?: boolean): void;
36
+ open(): void;
37
+ removeItems(items: string[], isUniqueId?: boolean): void;
38
+ setItem(item: Object, id?: string, isUniqueId?: boolean): void;
39
+ showItems(items: string[], isUniqueId?: boolean): void;
40
+ };
15
41
  export declare const MenuPlugin: {
16
42
  name: string;
17
43
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { SidebarModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Sidebar, SidebarModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,26 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let SidebarComponent: DefineVueComponent<SidebarModel>;
14
- export declare type SidebarComponent = InstanceType<typeof SidebarComponent>;
14
+ export declare type SidebarComponent = typeof ComponentBase & {
15
+ ej2Instances: Sidebar;
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
+ hide(e?: Object): void;
31
+ show(e?: Object): void;
32
+ toggle(): void;
33
+ };
15
34
  export declare const SidebarPlugin: {
16
35
  name: string;
17
36
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { StepperModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Stepper, StepperModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,26 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let StepperComponent: DefineVueComponent<StepperModel>;
14
- export declare type StepperComponent = InstanceType<typeof StepperComponent>;
14
+ export declare type StepperComponent = typeof ComponentBase & {
15
+ ej2Instances: Stepper;
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
+ nextStep(): void;
31
+ previousStep(): void;
32
+ reset(): void;
33
+ };
15
34
  export declare const StepperPlugin: {
16
35
  name: string;
17
36
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { TabModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Tab, TabModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,33 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let TabComponent: DefineVueComponent<TabModel>;
14
- export declare type TabComponent = InstanceType<typeof TabComponent>;
14
+ export declare type TabComponent = typeof ComponentBase & {
15
+ ej2Instances: Tab;
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
+ addTab(items: Object[], index?: number): void;
31
+ disable(value: boolean): void;
32
+ enableTab(index: number, value: boolean): void;
33
+ getItemIndex(tabItemId: string): number;
34
+ hideTab(index: number, value?: boolean): void;
35
+ refresh(): void;
36
+ refreshActiveTab(): void;
37
+ refreshActiveTabBorder(): void;
38
+ removeTab(index: number): void;
39
+ select(args: number | Object, event?: Object): void;
40
+ };
15
41
  export declare const TabPlugin: {
16
42
  name: string;
17
43
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { ToolbarModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { Toolbar, ToolbarModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,29 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let ToolbarComponent: DefineVueComponent<ToolbarModel>;
14
- export declare type ToolbarComponent = InstanceType<typeof ToolbarComponent>;
14
+ export declare type ToolbarComponent = typeof ComponentBase & {
15
+ ej2Instances: Toolbar;
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[], index?: number): void;
31
+ disable(value: boolean): void;
32
+ enableItems(items: number | Object | Object, isEnable?: boolean): void;
33
+ hideItem(index: number | Object | Object, value?: boolean): void;
34
+ refreshOverflow(): void;
35
+ removeItems(args: number | Object | Object | Object | Object[]): void;
36
+ };
15
37
  export declare const ToolbarPlugin: {
16
38
  name: string;
17
39
  install(Vue: any): void;
@@ -1,5 +1,5 @@
1
- import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
- import { TreeViewModel } from '@syncfusion/ej2-navigations';
1
+ import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
2
+ import { TreeView, TreeViewModel } from '@syncfusion/ej2-navigations';
3
3
  export declare const properties: string[];
4
4
  export declare const modelProps: string[];
5
5
  export declare const testProp: any;
@@ -11,7 +11,40 @@ export declare const props: any, watch: any, emitProbs: any;
11
11
  * ```
12
12
  */
13
13
  export declare let TreeViewComponent: DefineVueComponent<TreeViewModel>;
14
- export declare type TreeViewComponent = InstanceType<typeof TreeViewComponent>;
14
+ export declare type TreeViewComponent = typeof ComponentBase & {
15
+ ej2Instances: TreeView;
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
+ addNodes(nodes: undefined[], target?: string | Object, index?: number, preventTargetExpand?: boolean): void;
31
+ beginEdit(node: string | Object): void;
32
+ checkAll(nodes?: string[] | Object[]): void;
33
+ collapseAll(nodes?: string[] | Object[], level?: number, excludeHiddenNodes?: boolean): void;
34
+ disableNodes(nodes: string[] | Object[]): void;
35
+ enableNodes(nodes: string[] | Object[]): void;
36
+ ensureVisible(node: string | Object): void;
37
+ expandAll(nodes?: string[] | Object[], level?: number, excludeHiddenNodes?: boolean): void;
38
+ getAllCheckedNodes(): string[];
39
+ getDisabledNodes(): string[];
40
+ getNode(node: string | Object): Object;
41
+ getTreeData(node?: string | Object): undefined[];
42
+ moveNodes(sourceNodes: string[] | Object[], target: string | Object, index: number, preventTargetExpand?: boolean): void;
43
+ refreshNode(target: string | Object, newData: undefined[]): void;
44
+ removeNodes(nodes: string[] | Object[]): void;
45
+ uncheckAll(nodes?: string[] | Object[]): void;
46
+ updateNode(target: string | Object, newText: string): void;
47
+ };
15
48
  export declare const TreeViewPlugin: {
16
49
  name: string;
17
50
  install(Vue: any): void;