igniteui-webcomponents-excel 1.4.2 → 3.2.0
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/bundles/igniteui-webcomponents-excel.umd.js +3531 -3356
- package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
- package/esm2015/lib/AlignmentInfo.js +2 -2
- package/esm2015/lib/DataValidationImeMode.js +61 -0
- package/esm2015/lib/DefaultStyleHelper_combined.js +672 -616
- package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeOutlineCreator.js +1 -1
- package/esm2015/lib/ProtectionInfo.js +1 -1
- package/esm2015/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +4 -4
- package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +458 -457
- package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +14 -12
- package/esm2015/lib/XlsxUtilities_combined.js +105 -73
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/AlignmentInfo.js +2 -2
- package/esm5/lib/DataValidationImeMode.js +61 -0
- package/esm5/lib/DefaultStyleHelper_combined.js +2878 -2800
- package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeOutlineCreator.js +1 -1
- package/esm5/lib/ProtectionInfo.js +1 -1
- package/esm5/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +4 -4
- package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +467 -466
- package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +14 -12
- package/esm5/lib/XlsxUtilities_combined.js +105 -73
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-excel.js +1317 -1166
- package/fesm5/igniteui-webcomponents-excel.js +3530 -3357
- package/lib/DataValidationImeMode.d.ts +54 -0
- package/lib/DefaultStyleHelper_combined.d.ts +243 -228
- package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +7 -7
- package/lib/XlsxUtilities_combined.d.ts +68 -64
- package/package.json +3 -3
- package/public_api.d.ts +1 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents the description of the Japanese input rules.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum DataValidationImeMode {
|
|
6
|
+
/**
|
|
7
|
+
* The ime mode is not controlled.
|
|
8
|
+
*/
|
|
9
|
+
NoControl = 0,
|
|
10
|
+
/**
|
|
11
|
+
* The ime mode is on.
|
|
12
|
+
*/
|
|
13
|
+
On = 1,
|
|
14
|
+
/**
|
|
15
|
+
* The ime mode is off.
|
|
16
|
+
*/
|
|
17
|
+
Off = 2,
|
|
18
|
+
/**
|
|
19
|
+
* The ime mode is disabled.
|
|
20
|
+
*/
|
|
21
|
+
Disabled = 3,
|
|
22
|
+
/**
|
|
23
|
+
* The ime mode is set to Hiragana.
|
|
24
|
+
*/
|
|
25
|
+
Hiragana = 4,
|
|
26
|
+
/**
|
|
27
|
+
* The ime mode is set to Katakana
|
|
28
|
+
*/
|
|
29
|
+
FullKatakana = 5,
|
|
30
|
+
/**
|
|
31
|
+
* The ime mode is set to half-width Katakana.
|
|
32
|
+
*/
|
|
33
|
+
HalfKatakana = 6,
|
|
34
|
+
/**
|
|
35
|
+
* The ime mode is set to full-width alphanumeric.
|
|
36
|
+
*/
|
|
37
|
+
FullAlpha = 7,
|
|
38
|
+
/**
|
|
39
|
+
* The ime mode is set to half-width alphanumeric.
|
|
40
|
+
*/
|
|
41
|
+
HalfAlpha = 8,
|
|
42
|
+
/**
|
|
43
|
+
* The ime mode is set to full-width Hangul.
|
|
44
|
+
*/
|
|
45
|
+
FullHangul = 9,
|
|
46
|
+
/**
|
|
47
|
+
* The ime mode is set to half-width Hangul.
|
|
48
|
+
*/
|
|
49
|
+
HalfHangul = 10
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @hidden
|
|
53
|
+
*/
|
|
54
|
+
export declare let DataValidationImeMode_$type: Type;
|