igniteui-webcomponents-excel 1.4.2 → 3.2.2

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.
Files changed (30) hide show
  1. package/bundles/igniteui-webcomponents-excel.umd.js +3531 -3356
  2. package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
  3. package/esm2015/lib/AlignmentInfo.js +2 -2
  4. package/esm2015/lib/DataValidationImeMode.js +61 -0
  5. package/esm2015/lib/DefaultStyleHelper_combined.js +672 -616
  6. package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeOutlineCreator.js +1 -1
  7. package/esm2015/lib/ProtectionInfo.js +1 -1
  8. package/esm2015/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +4 -4
  9. package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +458 -457
  10. package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +14 -12
  11. package/esm2015/lib/XlsxUtilities_combined.js +105 -73
  12. package/esm2015/public_api.js +1 -0
  13. package/esm5/lib/AlignmentInfo.js +2 -2
  14. package/esm5/lib/DataValidationImeMode.js +61 -0
  15. package/esm5/lib/DefaultStyleHelper_combined.js +2878 -2800
  16. package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeOutlineCreator.js +1 -1
  17. package/esm5/lib/ProtectionInfo.js +1 -1
  18. package/esm5/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +4 -4
  19. package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +467 -466
  20. package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +14 -12
  21. package/esm5/lib/XlsxUtilities_combined.js +105 -73
  22. package/esm5/public_api.js +1 -0
  23. package/fesm2015/igniteui-webcomponents-excel.js +1317 -1166
  24. package/fesm5/igniteui-webcomponents-excel.js +3530 -3357
  25. package/lib/DataValidationImeMode.d.ts +54 -0
  26. package/lib/DefaultStyleHelper_combined.d.ts +243 -228
  27. package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +7 -7
  28. package/lib/XlsxUtilities_combined.d.ts +68 -64
  29. package/package.json +3 -3
  30. package/public_api.d.ts +1 -0
@@ -137,7 +137,7 @@ export let AlignmentInfo = /*@__PURE__*/ (() => {
137
137
  if (b || a._cw != c) {
138
138
  a.rotation = c;
139
139
  }
140
- let d = XlsxUtilities.a6(this.u);
140
+ let d = XlsxUtilities.a8(this.u);
141
141
  if (b || nullableNotEquals(a._c7, d)) {
142
142
  a._wrapText$i = d;
143
143
  }
@@ -148,7 +148,7 @@ export let AlignmentInfo = /*@__PURE__*/ (() => {
148
148
  if (b || a._ct != e) {
149
149
  a.indent = e;
150
150
  }
151
- let f = XlsxUtilities.a6(this.s);
151
+ let f = XlsxUtilities.a8(this.s);
152
152
  if (b || nullableNotEquals(a._c6, f)) {
153
153
  a._shrinkToFit$i = f;
154
154
  }
@@ -0,0 +1,61 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { markEnum } from "igniteui-webcomponents-core";
8
+ /**
9
+ * Represents the description of the Japanese input rules.
10
+ */
11
+ export var DataValidationImeMode = /*@__PURE__*/ (function (DataValidationImeMode) {
12
+ /**
13
+ * The ime mode is not controlled.
14
+ */
15
+ DataValidationImeMode[DataValidationImeMode["NoControl"] = 0] = "NoControl";
16
+ /**
17
+ * The ime mode is on.
18
+ */
19
+ DataValidationImeMode[DataValidationImeMode["On"] = 1] = "On";
20
+ /**
21
+ * The ime mode is off.
22
+ */
23
+ DataValidationImeMode[DataValidationImeMode["Off"] = 2] = "Off";
24
+ /**
25
+ * The ime mode is disabled.
26
+ */
27
+ DataValidationImeMode[DataValidationImeMode["Disabled"] = 3] = "Disabled";
28
+ /**
29
+ * The ime mode is set to Hiragana.
30
+ */
31
+ DataValidationImeMode[DataValidationImeMode["Hiragana"] = 4] = "Hiragana";
32
+ /**
33
+ * The ime mode is set to Katakana
34
+ */
35
+ DataValidationImeMode[DataValidationImeMode["FullKatakana"] = 5] = "FullKatakana";
36
+ /**
37
+ * The ime mode is set to half-width Katakana.
38
+ */
39
+ DataValidationImeMode[DataValidationImeMode["HalfKatakana"] = 6] = "HalfKatakana";
40
+ /**
41
+ * The ime mode is set to full-width alphanumeric.
42
+ */
43
+ DataValidationImeMode[DataValidationImeMode["FullAlpha"] = 7] = "FullAlpha";
44
+ /**
45
+ * The ime mode is set to half-width alphanumeric.
46
+ */
47
+ DataValidationImeMode[DataValidationImeMode["HalfAlpha"] = 8] = "HalfAlpha";
48
+ /**
49
+ * The ime mode is set to full-width Hangul.
50
+ */
51
+ DataValidationImeMode[DataValidationImeMode["FullHangul"] = 9] = "FullHangul";
52
+ /**
53
+ * The ime mode is set to half-width Hangul.
54
+ */
55
+ DataValidationImeMode[DataValidationImeMode["HalfHangul"] = 10] = "HalfHangul";
56
+ return DataValidationImeMode;
57
+ })({});
58
+ /**
59
+ * @hidden
60
+ */
61
+ export let DataValidationImeMode_$type = /*@__PURE__*/ markEnum('DataValidationImeMode', 'NoControl,0|On,1|Off,2|Disabled,3|Hiragana,4|FullKatakana,5|HalfKatakana,6|FullAlpha,7|HalfAlpha,8|FullHangul,9|HalfHangul,10');