@univerjs/engine-render 0.10.3 → 0.10.4
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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +733 -732
- package/lib/index.js +733 -732
- package/lib/types/shape/text.d.ts +2 -1
- package/lib/umd/index.js +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Nullable, HorizontalAlign, VerticalAlign } from '@univerjs/core';
|
|
1
|
+
import { Nullable, CellValueType, HorizontalAlign, VerticalAlign } from '@univerjs/core';
|
|
2
2
|
import { UniverRenderingContext } from '../context';
|
|
3
3
|
import { IShapeProps, Shape } from './shape';
|
|
4
4
|
import { DocSimpleSkeleton } from '../components/docs/layout/doc-simple-skeleton';
|
|
@@ -13,6 +13,7 @@ export interface ITextProps extends IShapeProps {
|
|
|
13
13
|
color?: Nullable<string>;
|
|
14
14
|
strokeLine?: boolean;
|
|
15
15
|
underline?: boolean;
|
|
16
|
+
cellValueType?: Nullable<CellValueType>;
|
|
16
17
|
}
|
|
17
18
|
export declare const TEXT_OBJECT_ARRAY: string[];
|
|
18
19
|
export declare class Text extends Shape<ITextProps> {
|