-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pipeline
committed
Dec 18, 2023
1 parent
86a5ce4
commit 48c6513
Showing
162 changed files
with
1,455 additions
and
1,446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## [Unreleased] | ||
|
||
## 23.2.7 (2023-12-05) | ||
## 24.1.41 (2023-12-18) | ||
|
||
### Barcode | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { gh, isExecute, vueDefineComponent, DefineVueDirective } from '@syncfusion/ej2-vue-base'; | ||
import { isNullOrUndefined } from '@syncfusion/ej2-base'; | ||
import { Chart3DAxisModel } from '@syncfusion/ej2-charts'; | ||
|
||
export let Chart3DAxesDirective = vueDefineComponent({ | ||
inject: { custom: { default: null } }, | ||
render(createElement: any): void { | ||
if (!isExecute) { | ||
let h: any = !isExecute ? gh : createElement; | ||
let slots: any = null; | ||
if(!isNullOrUndefined((this as any).$slots.default)) { | ||
slots = !isExecute ? (this as any).$slots.default() : (this as any).$slots.default; | ||
} | ||
return h('div', { class: 'e-directive' }, slots); | ||
} | ||
return; | ||
}, | ||
updated(): void { | ||
if (!isExecute && this.custom) { this.custom() } | ||
}, | ||
methods: { | ||
getTag(): string { | ||
return 'e-chart3daxes'; | ||
} | ||
} | ||
}); | ||
export const Chart3DAxesPlugin = { | ||
name: 'e-chart3daxes', | ||
install(Vue: any) { | ||
Vue.component(Chart3DAxesPlugin.name, Chart3DAxesDirective); | ||
} | ||
} | ||
|
||
|
||
export let Chart3DAxisDirective: DefineVueDirective<Chart3DAxisModel> = vueDefineComponent({ | ||
render(): void { | ||
return; | ||
}, | ||
methods: { | ||
getTag(): string { | ||
return 'e-chart3daxis'; | ||
} | ||
} | ||
}); | ||
export const Chart3DAxisPlugin = { | ||
name: 'e-chart3daxis', | ||
install(Vue: any) { | ||
Vue.component(Chart3DAxisPlugin.name, Chart3DAxisDirective); | ||
} | ||
} |
Oops, something went wrong.