@progress/kendo-charts 1.23.3 → 1.23.4-dev.202205050627

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.
@@ -6,8 +6,7 @@ import { ValidationResult } from './validation';
6
6
  * The QR Code encoding modes.
7
7
  */
8
8
  export type QRCodeEncoding =
9
- 'ISO_8859_1' | 'UTF_8' |
10
- 'iso_8859_1' | 'utf_8';
9
+ 'ISO_8859_1' | 'UTF_8';
11
10
 
12
11
  /**
13
12
  * The QR Code error correction levels.
@@ -18,8 +17,7 @@ export type QRCodeEncoding =
18
17
  * * "H" - approximately 30% of the codewords can be restored.
19
18
  */
20
19
  export type QRCodeErrorCorrection =
21
- 'L' | 'M' | 'Q' | 'H' |
22
- 'l' | 'm' | 'q' | 'h';
20
+ 'L' | 'M' | 'Q' | 'H';
23
21
 
24
22
  /**
25
23
  * The QR Code image overlay configuration.