@mescius/spread-sheets 18.2.0 → 18.2.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.
@@ -48064,7 +48064,10 @@ declare module GC{
48064
48064
 
48065
48065
 
48066
48066
  export interface IShapeTextFrame{
48067
- vAlign?: GC.Spread.Sheets.VerticalAlign
48067
+ /**
48068
+ * The text vertical alignment, it is VerticalAlign enum or formula(starts with =).
48069
+ */
48070
+ vAlign?: GC.Spread.Sheets.VerticalAlign | string;
48068
48071
  /**
48069
48072
  * The text horizontal alignment, it is HorizontalAlign enum or formula(starts with =).
48070
48073
  */
@@ -48073,7 +48076,10 @@ declare module GC{
48073
48076
  * Resize the shape to fit text size.
48074
48077
  */
48075
48078
  resizeToFitText?: boolean | string;
48076
- textDirection?: GC.Spread.Sheets.Shapes.TextDirection;
48079
+ /**
48080
+ * The text direction, it is TextDirection enum or formula(starts with =).
48081
+ */
48082
+ textDirection?: GC.Spread.Sheets.Shapes.TextDirection | string;
48077
48083
  }
48078
48084
 
48079
48085
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mescius/spread-sheets",
3
- "version": "18.2.0",
3
+ "version": "18.2.1",
4
4
  "main": "index.js",
5
5
  "description":"A Complete Microsoft Excel-like JavaScript Spreadsheet for Enterprise Applications",
6
6
  "scripts": {},