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.
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
@@ -186,7 +186,7 @@ var AlignmentInfo = /** @class */ /*@__PURE__*/ (function (_super) {
186
186
  if (b || a._cw != c) {
187
187
  a.rotation = c;
188
188
  }
189
- var d = XlsxUtilities.a6(this.u);
189
+ var d = XlsxUtilities.a8(this.u);
190
190
  if (b || nullableNotEquals(a._c7, d)) {
191
191
  a._wrapText$i = d;
192
192
  }
@@ -197,7 +197,7 @@ var AlignmentInfo = /** @class */ /*@__PURE__*/ (function (_super) {
197
197
  if (b || a._ct != e) {
198
198
  a.indent = e;
199
199
  }
200
- var f = XlsxUtilities.a6(this.s);
200
+ var f = XlsxUtilities.a8(this.s);
201
201
  if (b || nullableNotEquals(a._c6, f)) {
202
202
  a._shrinkToFit$i = f;
203
203
  }
@@ -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 var 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');