igniteui-webcomponents-excel 4.7.1 → 4.7.2-beta.1
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 +1127 -950
- package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
- package/esm2015/lib/AlignmentInfo.js +4 -4
- package/esm2015/lib/BiffRecordStream.js +7 -7
- package/esm2015/lib/CellFormatValue.js +1 -1
- package/esm2015/lib/ConditionalFormattingUtils.js +1 -1
- package/esm2015/lib/DefaultStyleHelper_combined.js +871 -742
- package/esm2015/lib/DomTextMetricsProvider.js +8 -8
- package/esm2015/lib/Formula_VisitWorksheetVisitor.js +7 -0
- package/esm2015/lib/JapaneseCalendar.js +1 -1
- package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm2015/lib/PackagePart_combined.js +1 -1
- package/esm2015/lib/ProtectionInfo.js +8 -5
- package/esm2015/lib/SgmlReader.js +1 -1
- package/esm2015/lib/UltraCalcFunctionCell.js +1 -1
- package/esm2015/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm2015/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm2015/lib/UltraCalcFunctionFormulaText.js +1 -1
- package/esm2015/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm2015/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm2015/lib/UltraCalcFunctionText.js +1 -1
- package/esm2015/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm2015/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
- package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/AlignmentInfo.js +4 -4
- package/esm5/lib/BiffRecordStream.js +7 -7
- package/esm5/lib/CellFormatValue.js +1 -1
- package/esm5/lib/ConditionalFormattingUtils.js +1 -1
- package/esm5/lib/DefaultStyleHelper_combined.js +899 -741
- package/esm5/lib/DomTextMetricsProvider.js +8 -8
- package/esm5/lib/Formula_VisitWorksheetVisitor.js +7 -0
- package/esm5/lib/JapaneseCalendar.js +1 -1
- package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm5/lib/PackagePart_combined.js +1 -1
- package/esm5/lib/ProtectionInfo.js +8 -5
- package/esm5/lib/SgmlReader.js +1 -1
- package/esm5/lib/UltraCalcFunctionCell.js +1 -1
- package/esm5/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm5/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm5/lib/UltraCalcFunctionFormulaText.js +1 -1
- package/esm5/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm5/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm5/lib/UltraCalcFunctionText.js +1 -1
- package/esm5/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm5/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
- package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-excel.js +1100 -952
- package/fesm5/igniteui-webcomponents-excel.js +1127 -951
- package/lib/BiffRecordStream.d.ts +2 -2
- package/lib/CellFormatValue.d.ts +5 -4
- package/lib/DefaultStyleHelper_combined.d.ts +149 -115
- package/lib/DomTextMetricsProvider.d.ts +1 -1
- package/lib/Formula_VisitWorksheetVisitor.d.ts +1 -0
- package/lib/JapaneseCalendar.d.ts +1 -1
- package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +5 -5
- package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +3 -3
- package/package.json +2 -2
- package/public_api.d.ts +1 -0
|
@@ -2,8 +2,8 @@ import { TextMetricsProviderBase } from "./TextMetricsProviderBase";
|
|
|
2
2
|
import { Workbook } from "./Workbook";
|
|
3
3
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
4
4
|
import { WorksheetCellFormatData } from "./WorksheetCellFormatData";
|
|
5
|
-
import { Size } from "igniteui-webcomponents-core";
|
|
6
5
|
import { Nullable$1, Type } from "igniteui-webcomponents-core";
|
|
6
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
7
7
|
/**
|
|
8
8
|
* @hidden
|
|
9
9
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Formula_VisitWorksheetVisitor } from "./DefaultStyleHelper_combined";
|
|
@@ -23,8 +23,8 @@ import { ProtectionInfo } from "./ProtectionInfo";
|
|
|
23
23
|
import { AlignmentInfo } from "./AlignmentInfo";
|
|
24
24
|
import { WorksheetCellFormatData } from "./WorksheetCellFormatData";
|
|
25
25
|
import { WorkbookStyle } from "./WorkbookStyle";
|
|
26
|
-
import { IWorkbookFontDefaultsResolver } from "./IWorkbookFontDefaultsResolver";
|
|
27
26
|
import { WorkbookFontData } from "./WorkbookFontData";
|
|
27
|
+
import { IWorkbookFontDefaultsResolver } from "./IWorkbookFontDefaultsResolver";
|
|
28
28
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
29
29
|
import { IWorkbookFont } from "./IWorkbookFont";
|
|
30
30
|
import { XmlPartManagerBase } from "./XmlPartManagerBase";
|
|
@@ -68,8 +68,8 @@ import { ST_TimePeriod } from "./ST_TimePeriod";
|
|
|
68
68
|
import { CfvoWrapper } from "./CfvoWrapper";
|
|
69
69
|
import { IconCriterionWrapper } from "./IconCriterionWrapper";
|
|
70
70
|
import { IconSetConditionalFormat } from "./IconSetConditionalFormat";
|
|
71
|
-
import { IconCriterion } from "./IconCriterion";
|
|
72
71
|
import { IconSetCriterionCollection } from "./IconSetCriterionCollection";
|
|
72
|
+
import { IconCriterion } from "./IconCriterion";
|
|
73
73
|
import { ST_DataBarDirection } from "./ST_DataBarDirection";
|
|
74
74
|
import { ST_DataBarAxisPosition } from "./ST_DataBarAxisPosition";
|
|
75
75
|
import { CommentsPartManager } from "./CommentsPartManager";
|
|
@@ -178,14 +178,14 @@ import { ST_StyleEntryModifierList } from "./ST_StyleEntryModifierList";
|
|
|
178
178
|
import { ST_FontCollectionIndex } from "./ST_FontCollectionIndex";
|
|
179
179
|
import { ST_PresetMaterialType } from "./ST_PresetMaterialType";
|
|
180
180
|
import { XmlElement } from "igniteui-webcomponents-core";
|
|
181
|
+
import { CT_GroupFillProperties } from "./CT_GroupFillProperties";
|
|
182
|
+
import { CT_NoFillProperties } from "./CT_NoFillProperties";
|
|
181
183
|
import { ST_PresetPatternVal } from "./ST_PresetPatternVal";
|
|
182
184
|
import { ST_BlackWhiteMode } from "./ST_BlackWhiteMode";
|
|
183
185
|
import { ST_ColorSchemeIndex } from "./ST_ColorSchemeIndex";
|
|
184
186
|
import { CT_PresetTextShape } from "./CT_PresetTextShape";
|
|
185
187
|
import { CT_TextSpacingPercent } from "./CT_TextSpacingPercent";
|
|
186
188
|
import { CT_TextSpacingPoint } from "./CT_TextSpacingPoint";
|
|
187
|
-
import { CT_NoFillProperties } from "./CT_NoFillProperties";
|
|
188
|
-
import { CT_GroupFillProperties } from "./CT_GroupFillProperties";
|
|
189
189
|
import { CT_AlphaOutsetEffect } from "./CT_AlphaOutsetEffect";
|
|
190
190
|
import { CT_EffectReference } from "./CT_EffectReference";
|
|
191
191
|
import { CT_LuminanceEffect } from "./CT_LuminanceEffect";
|
|
@@ -318,10 +318,10 @@ import { CT_Perspective } from "./CT_Perspective";
|
|
|
318
318
|
import { CT_DispBlanksAs } from "./CT_DispBlanksAs";
|
|
319
319
|
import { CT_Lvl } from "./CT_Lvl";
|
|
320
320
|
import { IFormattedStringOwner } from "./IFormattedStringOwner";
|
|
321
|
+
import { FormattedStringFont } from "./FormattedStringFont";
|
|
321
322
|
import { ErrorBars } from "./ErrorBars";
|
|
322
323
|
import { ST_ErrBarType } from "./ST_ErrBarType";
|
|
323
324
|
import { ST_ErrValType } from "./ST_ErrValType";
|
|
324
|
-
import { FormattedStringFont } from "./FormattedStringFont";
|
|
325
325
|
import { ChartGradientFill } from "./ChartGradientFill";
|
|
326
326
|
import { GradientType } from "./GradientType";
|
|
327
327
|
import { ChartSolidFill } from "./ChartSolidFill";
|
|
@@ -7,7 +7,7 @@ import { WorkbookSaveManagerExcel2003_ExtSstItem } from "./WorkbookSaveManagerEx
|
|
|
7
7
|
import { WorksheetCellFormatData } from "./WorksheetCellFormatData";
|
|
8
8
|
import { WorkbookSerializationDataExcel2003_ImageHolder } from "./WorkbookSerializationDataExcel2003_ImageHolder";
|
|
9
9
|
import { WorkbookStyle } from "./WorkbookStyle";
|
|
10
|
-
import { Stream, Base, Nullable$1, Type,
|
|
10
|
+
import { Stream, Base, Nullable$1, Type, IList$1, ValueType } from "igniteui-webcomponents-core";
|
|
11
11
|
import { SeekableBufferedStream } from "./SeekableBufferedStream";
|
|
12
12
|
import { InPlaceTransform } from "./InPlaceTransform";
|
|
13
13
|
import { Workbook } from "./Workbook";
|
|
@@ -38,8 +38,8 @@ import { WorkbookReferenceBase } from "./WorkbookReferenceBase";
|
|
|
38
38
|
import { WorksheetTableStyle } from "./WorksheetTableStyle";
|
|
39
39
|
import { ExtProp } from "./ExtProp";
|
|
40
40
|
import { XFProp } from "./XFProp";
|
|
41
|
-
import { WorksheetCellComment } from "./WorksheetCellComment";
|
|
42
41
|
import { WorksheetSerializationCache } from "./WorksheetSerializationCache";
|
|
42
|
+
import { WorksheetCellComment } from "./WorksheetCellComment";
|
|
43
43
|
import { SortedList$2 } from "./SortedList$2";
|
|
44
44
|
import { TableColumnFilterData } from "./TableColumnFilterData";
|
|
45
45
|
import { Filter } from "./Filter";
|
|
@@ -127,8 +127,8 @@ import { HorizontalCellAlignment } from "./HorizontalCellAlignment";
|
|
|
127
127
|
import { VerticalCellAlignment } from "./VerticalCellAlignment";
|
|
128
128
|
import { IWorkbookFont } from "./IWorkbookFont";
|
|
129
129
|
import { FontSuperscriptSubscriptStyle } from "./FontSuperscriptSubscriptStyle";
|
|
130
|
-
import { WorksheetProtectedRange } from "./WorksheetProtectedRange";
|
|
131
130
|
import { FontScheme } from "./FontScheme";
|
|
131
|
+
import { WorksheetProtectedRange } from "./WorksheetProtectedRange";
|
|
132
132
|
import { FullColorExtInfo } from "./FullColorExtInfo";
|
|
133
133
|
import { GradStopInfo } from "./GradStopInfo";
|
|
134
134
|
import { CellFillGradientStop } from "./CellFillGradientStop";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-excel",
|
|
3
|
-
"version": "4.7.1",
|
|
3
|
+
"version": "4.7.2-beta.1",
|
|
4
4
|
"description": "Ignite UI Web Components excel component for creating, loading and saving Microsoft Excel workbooks for modern web apps.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-excel",
|
|
6
6
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"tslib": "^2.3.1"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"igniteui-webcomponents-core": "4.7.1"
|
|
22
|
+
"igniteui-webcomponents-core": "4.7.2-beta.1"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"typings": "igniteui-webcomponents-excel.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -804,6 +804,7 @@ export * from './lib/Formula_TableResizingVisitor';
|
|
|
804
804
|
export * from './lib/Formula_WorksheetMovedVisitor';
|
|
805
805
|
export * from './lib/Formula_WorksheetRemovedVisitor';
|
|
806
806
|
export * from './lib/Formula_VerifyFormatLimitsVisitor';
|
|
807
|
+
export * from './lib/Formula_VisitWorksheetVisitor';
|
|
807
808
|
export * from './lib/Formula_InternalFlags';
|
|
808
809
|
export * from './lib/Formula_TokensReplacedChangeContext';
|
|
809
810
|
export * from './lib/FormulaParseException';
|