Skip to content

Commit 8b46d95

Browse files
author
pipeline
committed
v23.1.36 is released
1 parent aa7bcd8 commit 8b46d95

File tree

2,223 files changed

+1495
-8163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,223 files changed

+1495
-8163
lines changed

README.md

Lines changed: 1 addition & 1214 deletions
Large diffs are not rendered by default.

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
1+
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent, DefineVueComponent } from '@syncfusion/ej2-vue-base';
22
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
33

4-
import { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';
4+
import { BarcodeGenerator, BarcodeGeneratorModel } from '@syncfusion/ej2-barcode-generator';
55

66

77
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
@@ -18,7 +18,7 @@ for (let props of modelProps) { emitProbs.push('update:'+props) }
1818
* <ejs-barcode-generator></ejs-barcode-generator>
1919
* ```
2020
*/
21-
export let BarcodeGeneratorComponent = vueDefineComponent({
21+
export let BarcodeGeneratorComponent: DefineVueComponent<BarcodeGeneratorModel> = vueDefineComponent({
2222
name: 'BarcodeGeneratorComponent',
2323
mixins: [ComponentBase],
2424
props: props,
@@ -27,7 +27,7 @@ export let BarcodeGeneratorComponent = vueDefineComponent({
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instances: new BarcodeGenerator({}) as any,
30+
ej2Instance: new BarcodeGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
1+
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent, DefineVueComponent } from '@syncfusion/ej2-vue-base';
22
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
33

4-
import { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
4+
import { DataMatrixGenerator, DataMatrixGeneratorModel } from '@syncfusion/ej2-barcode-generator';
55

66

77
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
@@ -18,7 +18,7 @@ for (let props of modelProps) { emitProbs.push('update:'+props) }
1818
* <ejs-datamatrix-generator></ejs-datamatrix-generator>
1919
* ```
2020
*/
21-
export let DataMatrixGeneratorComponent = vueDefineComponent({
21+
export let DataMatrixGeneratorComponent: DefineVueComponent<DataMatrixGeneratorModel> = vueDefineComponent({
2222
name: 'DataMatrixGeneratorComponent',
2323
mixins: [ComponentBase],
2424
props: props,
@@ -27,7 +27,7 @@ export let DataMatrixGeneratorComponent = vueDefineComponent({
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instances: new DataMatrixGenerator({}) as any,
30+
ej2Instance: new DataMatrixGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
1+
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent, DefineVueComponent } from '@syncfusion/ej2-vue-base';
22
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
33

4-
import { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
4+
import { QRCodeGenerator, QRCodeGeneratorModel } from '@syncfusion/ej2-barcode-generator';
55

66

77
export const properties: string[] = ['isLazyUpdate', 'plugins', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
@@ -18,7 +18,7 @@ for (let props of modelProps) { emitProbs.push('update:'+props) }
1818
* <ejs-qrcode-generator></ejs-qrcode-generator>
1919
* ```
2020
*/
21-
export let QRCodeGeneratorComponent = vueDefineComponent({
21+
export let QRCodeGeneratorComponent: DefineVueComponent<QRCodeGeneratorModel> = vueDefineComponent({
2222
name: 'QRCodeGeneratorComponent',
2323
mixins: [ComponentBase],
2424
props: props,
@@ -27,7 +27,7 @@ export let QRCodeGeneratorComponent = vueDefineComponent({
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instances: new QRCodeGenerator({}) as any,
30+
ej2Instance: new QRCodeGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@import 'ej2-base/styles/definition/material3-dark.scss';
2+
@import 'ej2-barcode-generator/styles/barcode/material3-dark.scss';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@import 'ej2-base/styles/definition/material3.scss';
2+
@import 'ej2-barcode-generator/styles/barcode/material3.scss';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
@import 'barcode/material3-dark.scss';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
@import 'barcode/material3.scss';
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)