Skip to content

Commit a88dadc

Browse files
author
pipeline
committed
v17.3.14 is released
1 parent ce9c576 commit a88dadc

File tree

1,208 files changed

+47988
-30923
lines changed

Some content is hidden

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

1,208 files changed

+47988
-30923
lines changed

controls/barcodegenerator/dist/ej2-barcode-generator.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es2015.js

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es5.js

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/dist/global/ej2-barcode-generator.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/barcodegenerator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-barcode-generator",
3-
"version": "17.2.48",
3+
"version": "17.3.9",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/barcodegenerator/src/barcode/barcode-model.d.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface BarcodeGeneratorModel extends ComponentModel{
1616
* width:'1000px', height:'500px' });
1717
* barcode.appendTo('#barcode');
1818
* ```
19-
* @default '100%'
19+
2020
*/
2121
width?: string | number;
2222

@@ -30,57 +30,57 @@ export interface BarcodeGeneratorModel extends ComponentModel{
3030
* height:'1000px', height:'500px' });
3131
* barcode.appendTo('#barcode');
3232
* ```
33-
* @default '100'
33+
3434
*/
3535
height?: string | number;
3636

3737
/**
3838
* Defines the barcode rendering mode.
3939
* * SVG - Renders the bar-code objects as SVG elements
4040
* * Canvas - Renders the bar-code in a canvas
41-
* @default 'SVG'
41+
4242
*/
4343
mode?: RenderingMode;
4444

4545
/**
4646
* Defines the type of barcode to be rendered.
47-
* @default 'Code128'
47+
4848
*/
4949
type?: BarcodeType;
5050

5151
/**
5252
* Defines the value of the barcode to be rendered.
53-
* @default undefined
53+
5454
*/
5555
value?: string;
5656

5757
/**
5858
* Defines the checksum for the barcode.
59-
* @default 'true'
59+
6060
*/
6161
enableCheckSum?: boolean;
6262

6363
/**
6464
* Defines the text properties for the barcode.
65-
* @default ''
65+
6666
*/
6767
displayText?: DisplayTextModel;
6868

6969
/**
7070
* Defines the margin properties for the barcode.
71-
* @default ''
71+
7272
*/
7373
margin?: MarginModel;
7474

7575
/**
7676
* Defines the background color of the barcode.
77-
* @default 'white'
77+
7878
*/
7979
backgroundColor?: string;
8080

8181
/**
8282
* Defines the forecolor of the barcode.
83-
* @default 'black'
83+
8484
*/
8585
foreColor?: string;
8686

controls/barcodegenerator/src/barcode/barcode.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class BarcodeGenerator extends Component<HTMLElement> implements INotifyP
5252
* width:'1000px', height:'500px' });
5353
* barcode.appendTo('#barcode');
5454
* ```
55-
* @default '100%'
55+
5656
*/
5757
@Property('100%')
5858
public width: string | number;
@@ -68,7 +68,7 @@ export class BarcodeGenerator extends Component<HTMLElement> implements INotifyP
6868
* height:'1000px', height:'500px' });
6969
* barcode.appendTo('#barcode');
7070
* ```
71-
* @default '100'
71+
7272
*/
7373
@Property('100px')
7474
public height: string | number;
@@ -78,56 +78,56 @@ export class BarcodeGenerator extends Component<HTMLElement> implements INotifyP
7878
* Defines the barcode rendering mode.
7979
* * SVG - Renders the bar-code objects as SVG elements
8080
* * Canvas - Renders the bar-code in a canvas
81-
* @default 'SVG'
81+
8282
*/
8383
@Property('SVG')
8484
public mode: RenderingMode;
8585

8686
/**
8787
* Defines the type of barcode to be rendered.
88-
* @default 'Code128'
88+
8989
*/
9090
@Property('Code128')
9191
public type: BarcodeType;
9292

9393
/**
9494
* Defines the value of the barcode to be rendered.
95-
* @default undefined
95+
9696
*/
9797
@Property(undefined)
9898
public value: string;
9999

100100
/**
101101
* Defines the checksum for the barcode.
102-
* @default 'true'
102+
103103
*/
104104
@Property(true)
105105
public enableCheckSum: boolean;
106106

107107
/**
108108
* Defines the text properties for the barcode.
109-
* @default ''
109+
110110
*/
111111
@Complex<DisplayTextModel>({}, DisplayText)
112112
public displayText: DisplayTextModel;
113113

114114
/**
115115
* Defines the margin properties for the barcode.
116-
* @default ''
116+
117117
*/
118118
@Complex<MarginModel>({}, Margin)
119119
public margin: MarginModel;
120120

121121
/**
122122
* Defines the background color of the barcode.
123-
* @default 'white'
123+
124124
*/
125125
@Property('white')
126126
public backgroundColor: string;
127127

128128
/**
129129
* Defines the forecolor of the barcode.
130-
* @default 'black'
130+
131131
*/
132132
@Property('black')
133133
public foreColor: string;

controls/barcodegenerator/src/barcode/enum/enum.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ export type DataMatrixEncoding =
110110
* * Size12x36
111111
* * Size16x36
112112
* * Size16x48
113-
* @aspNumberEnum
114-
* @blazorNumberEnum
113+
114+
115115
* @IgnoreSingular
116116
*/
117117

@@ -358,8 +358,8 @@ export type QRInputMode =
358358
* * Version38
359359
* * Version39
360360
* * Version40
361-
* @aspNumberEnum
362-
* @blazorNumberEnum
361+
362+
363363
* @IgnoreSingular
364364
*/
365365

@@ -537,8 +537,8 @@ export enum QRCodeVersion {
537537
* * Medium
538538
* * Quartile
539539
* * High
540-
* @aspNumberEnum
541-
* @blazorNumberEnum
540+
541+
542542
* @IgnoreSingular
543543
*/
544544
export enum ErrorCorrectionLevel {

controls/barcodegenerator/src/barcode/primitives/displaytext-model.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@ export interface DisplayTextModel {
77

88
/**
99
* Sets the textual description of the barcode.
10-
* @default ''
10+
1111
*/
1212
text?: string;
1313

1414
/**
1515
* Defines the visibility of the text.
16-
* @default true
16+
1717
*/
1818
visibility?: boolean;
1919

2020
/**
2121
* Defines the font style of the text
22-
* @default 'monospace'
22+
2323
*/
2424
font?: string;
2525

2626
/**
2727
* Defines the size of the text.
28-
* @default 20
28+
2929
*/
3030
size?: number;
3131

3232
/**
3333
* Sets the space to be left between the text and its barcode.
34-
* @default ''
34+
3535
*/
3636
margin?: MarginModel;
3737

@@ -40,15 +40,15 @@ export interface DisplayTextModel {
4040
* * Left - Aligns the text at the left
4141
* * Right - Aligns the text at the Right
4242
* * Center - Aligns the text at the Center
43-
* @default 'Center'
43+
4444
*/
4545
alignment?: Alignment;
4646

4747
/**
4848
* Defines the position of the text.
4949
* * Bottom - Position the text at the Bottom
5050
* * Top - Position the text at the Top
51-
* @default 'Bottom'
51+
5252
*/
5353
position?: TextPosition;
5454

0 commit comments

Comments
 (0)