@univerjs/core 0.1.11 → 0.1.13
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 +9 -9
- package/lib/es/index.js +5378 -3714
- package/lib/types/docs/data-model/document-data-model.d.ts +10 -12
- package/lib/types/docs/data-model/json-x/json-x.d.ts +38 -0
- package/lib/types/{shared/permission/index.d.ts → docs/data-model/subdocument.d.ts} +1 -12
- package/lib/types/docs/data-model/text-x/__tests__/common.spec.d.ts +16 -0
- package/lib/types/docs/data-model/text-x/__tests__/invert.spec.d.ts +16 -0
- package/lib/types/docs/data-model/text-x/action-iterator.d.ts +1 -1
- package/lib/types/docs/data-model/{action-types.d.ts → text-x/action-types.d.ts} +4 -2
- package/lib/types/docs/data-model/{apply-utils → text-x/apply-utils}/common.d.ts +1 -1
- package/lib/types/docs/data-model/{apply-utils → text-x/apply-utils}/delete-apply.d.ts +1 -1
- package/lib/types/docs/data-model/{apply-utils → text-x/apply-utils}/insert-apply.d.ts +1 -1
- package/lib/types/docs/data-model/{apply-utils → text-x/apply-utils}/update-apply.d.ts +2 -2
- package/lib/types/docs/data-model/text-x/apply.d.ts +4 -0
- package/lib/types/docs/data-model/text-x/text-x.d.ts +10 -2
- package/lib/types/docs/data-model/text-x/utils.d.ts +2 -2
- package/lib/types/index.d.ts +13 -5
- package/lib/types/observer/__tests__/observable.spec.d.ts +16 -0
- package/lib/types/observer/observable.d.ts +1 -20
- package/lib/types/services/__test__/index.d.ts +18 -0
- package/lib/types/services/__test__/permission.spec.d.ts +16 -0
- package/lib/types/services/authz-io/authz-io-local.service.d.ts +30 -0
- package/lib/types/services/authz-io/type.d.ts +20 -0
- package/lib/types/services/command/command.service.d.ts +3 -1
- package/lib/types/services/context/context.d.ts +4 -0
- package/lib/types/services/locale/locale.service.d.ts +3 -1
- package/lib/types/services/permission/permission.service.d.ts +12 -24
- package/lib/types/services/permission/type.d.ts +43 -0
- package/lib/types/services/user-manager/const.d.ts +4 -0
- package/lib/types/services/{permission → user-manager}/index.d.ts +1 -3
- package/lib/types/services/user-manager/user-manager.service.d.ts +8 -0
- package/lib/types/shared/check-if-move.d.ts +6 -0
- package/lib/types/shared/index.d.ts +2 -1
- package/lib/types/shared/rectangle.d.ts +12 -0
- package/lib/types/{services/floating-object/floating-object-interfaces.d.ts → shared/shape.d.ts} +5 -6
- package/lib/types/sheets/sheet-snapshot-utils.d.ts +2 -2
- package/lib/types/sheets/workbook.d.ts +6 -3
- package/lib/types/slides/slide-model.d.ts +1 -1
- package/lib/types/types/enum/index.d.ts +1 -1
- package/lib/types/types/enum/prst-geom-type.d.ts +118 -0
- package/lib/types/types/interfaces/i-cell-data.d.ts +1 -0
- package/lib/types/types/interfaces/i-cell-validation-data.d.ts +1 -0
- package/lib/types/types/interfaces/i-document-data.d.ts +58 -7
- package/lib/types/types/interfaces/i-slide-data.d.ts +3 -3
- package/lib/umd/index.js +9 -9
- package/package.json +8 -8
- package/lib/types/services/floating-object/floating-object-manager.service.d.ts +0 -82
- package/lib/types/services/permission/permission-point.d.ts +0 -9
- package/lib/types/services/permission/univer.permission.service.d.ts +0 -12
- package/lib/types/types/enum/shape-type.d.ts +0 -160
- /package/lib/types/docs/data-model/{__tests__/apply-utils.spec.d.ts → json-x/__tests__/json-x.spec.d.ts} +0 -0
- /package/lib/types/docs/data-model/{__tests__/common.spec.d.ts → text-x/__tests__/apply-utils.spec.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Core library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -50,23 +50,23 @@
|
|
|
50
50
|
"npm": ">=8.0.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@wendellhu/redi": "
|
|
53
|
+
"@wendellhu/redi": "0.15.2",
|
|
54
54
|
"rxjs": ">=7.0.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@univerjs/protocol": "^0.1.
|
|
57
|
+
"@univerjs/protocol": "^0.1.34",
|
|
58
58
|
"nanoid": "5.0.7",
|
|
59
|
-
"numeral": "^2.0.6"
|
|
59
|
+
"numeral": "^2.0.6",
|
|
60
|
+
"ot-json1": "^1.0.2"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|
|
62
63
|
"@types/numeral": "^2.0.5",
|
|
63
|
-
"@wendellhu/redi": "
|
|
64
|
-
"dayjs": "^1.11.11",
|
|
64
|
+
"@wendellhu/redi": "0.15.2",
|
|
65
65
|
"rxjs": "^7.8.1",
|
|
66
66
|
"typescript": "^5.4.5",
|
|
67
|
-
"vite": "^5.2.
|
|
67
|
+
"vite": "^5.2.12",
|
|
68
68
|
"vitest": "^1.6.0",
|
|
69
|
-
"@univerjs/shared": "0.1.
|
|
69
|
+
"@univerjs/shared": "0.1.13"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
72
|
"test": "vitest run",
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { IDisposable } from '@wendellhu/redi';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { Nullable } from '../../common/type-util';
|
|
4
|
-
import { ITransformState } from './floating-object-interfaces';
|
|
5
|
-
|
|
6
|
-
export declare const DEFAULT_DOCUMENT_SUB_COMPONENT_ID = "__default_document_sub_component_id20231101__";
|
|
7
|
-
export interface IFloatingObjectManagerSearchParam {
|
|
8
|
-
unitId: string;
|
|
9
|
-
subUnitId: string;
|
|
10
|
-
}
|
|
11
|
-
export interface IFloatingObjectManagerSearchItemParam extends IFloatingObjectManagerSearchParam {
|
|
12
|
-
floatingObjectId: string;
|
|
13
|
-
}
|
|
14
|
-
export interface IFloatingObjectManagerParam extends IFloatingObjectManagerSearchItemParam {
|
|
15
|
-
behindText?: boolean;
|
|
16
|
-
floatingObject: ITransformState;
|
|
17
|
-
}
|
|
18
|
-
export type FloatingObjects = Map<string, ITransformState>;
|
|
19
|
-
export type IFloatingObjectManagerInfo = Map<string, Map<string, FloatingObjects>>;
|
|
20
|
-
export interface IFloatingObjectManagerService {
|
|
21
|
-
readonly remove$: Observable<IFloatingObjectManagerParam[]>;
|
|
22
|
-
readonly andOrUpdate$: Observable<IFloatingObjectManagerParam[]>;
|
|
23
|
-
readonly pluginUpdate$: Observable<IFloatingObjectManagerParam[]>;
|
|
24
|
-
getFloatObject(searchItem: IFloatingObjectManagerSearchItemParam): Nullable<ITransformState>;
|
|
25
|
-
getFloatObjects(search: IFloatingObjectManagerSearchParam): Nullable<FloatingObjects>;
|
|
26
|
-
dispose(): void;
|
|
27
|
-
clear(search: IFloatingObjectManagerSearchParam): void;
|
|
28
|
-
addOrUpdate(insertParam: IFloatingObjectManagerParam): void;
|
|
29
|
-
remove(searchItem: IFloatingObjectManagerSearchItemParam): void;
|
|
30
|
-
batchAddOrUpdate(insertParam: IFloatingObjectManagerParam[]): void;
|
|
31
|
-
pluginUpdateRefresh(searchObjects: IFloatingObjectManagerParam[]): void;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* This service is primarily used for the management of 'univer' floating objects,
|
|
35
|
-
* decoupling common configurations such as position, volume,
|
|
36
|
-
* and rotation of the floating objects from the core business.
|
|
37
|
-
* This allows plugins to be reused across multiple core businesses.
|
|
38
|
-
*
|
|
39
|
-
* Floating elements in spreadsheets need to stay synchronized with the grid layout,
|
|
40
|
-
* and inserting rows and columns will change their position;
|
|
41
|
-
* Floating elements in documents need to stay synchronized with the text layout and can affect the text layout;
|
|
42
|
-
* Floating elements in slides are more flexible but support settings such as animations.
|
|
43
|
-
*
|
|
44
|
-
* Please open the architecture diagram with TLDraw.
|
|
45
|
-
* https://github.com/dream-num/univer/blob/db227563b4df65572dd4fceebecdbd9f27fa7a39/docs/selection%20architecture%20design.tldr
|
|
46
|
-
*/
|
|
47
|
-
export declare class FloatingObjectManagerService implements IDisposable, IFloatingObjectManagerService {
|
|
48
|
-
private readonly _managerInfo;
|
|
49
|
-
/**
|
|
50
|
-
* The deletion action is triggered and broadcasted within the core business plugin.
|
|
51
|
-
* Upon receiving the deletion broadcast, the plugin executes the plugin command logic.
|
|
52
|
-
*/
|
|
53
|
-
private readonly _remove$;
|
|
54
|
-
readonly remove$: Observable<IFloatingObjectManagerParam[]>;
|
|
55
|
-
/**
|
|
56
|
-
* Addition and updates are also triggered and broadcasted within the core business plugin.
|
|
57
|
-
* Upon receiving the update broadcast, the plugin updates the location of its business components.
|
|
58
|
-
*/
|
|
59
|
-
private readonly _andOrUpdate$;
|
|
60
|
-
readonly andOrUpdate$: Observable<IFloatingObjectManagerParam[]>;
|
|
61
|
-
/**
|
|
62
|
-
* The position, width, and height of the plugin's business components can be changed by the user through interface operations.
|
|
63
|
-
* Here, it is necessary to notify the core business plugin to update the relevant location model.
|
|
64
|
-
* The logic converges in the core business plugin.
|
|
65
|
-
*/
|
|
66
|
-
private readonly _pluginUpdate$;
|
|
67
|
-
readonly pluginUpdate$: Observable<IFloatingObjectManagerParam[]>;
|
|
68
|
-
getFloatObject(searchItem: IFloatingObjectManagerSearchItemParam): Nullable<ITransformState>;
|
|
69
|
-
getFloatObjects(search: IFloatingObjectManagerSearchParam): Nullable<FloatingObjects>;
|
|
70
|
-
dispose(): void;
|
|
71
|
-
clear(search: IFloatingObjectManagerSearchParam): void;
|
|
72
|
-
addOrUpdate(insertParam: IFloatingObjectManagerParam): void;
|
|
73
|
-
batchAddOrUpdate(insertParams: IFloatingObjectManagerParam[]): void;
|
|
74
|
-
remove(searchItem: IFloatingObjectManagerSearchItemParam): void;
|
|
75
|
-
pluginUpdateRefresh(updateObjects: IFloatingObjectManagerParam[]): void;
|
|
76
|
-
private _getFloatingObjects;
|
|
77
|
-
private _getFloatingObject;
|
|
78
|
-
private _addByParam;
|
|
79
|
-
private _clearByParam;
|
|
80
|
-
private _removeByParam;
|
|
81
|
-
}
|
|
82
|
-
export declare const IFloatingObjectManagerService: import('@wendellhu/redi').IdentifierDecorator<IFloatingObjectManagerService>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { PermissionPoint } from '../../shared';
|
|
2
|
-
|
|
3
|
-
export declare const UniverEditablePermissionPoint = "univer.editable";
|
|
4
|
-
export declare class UniverEditablePermission extends PermissionPoint<boolean> {
|
|
5
|
-
id: string;
|
|
6
|
-
value: boolean;
|
|
7
|
-
unitID: string;
|
|
8
|
-
constructor(unitID: string);
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Disposable } from '../../shared';
|
|
2
|
-
import { IUniverInstanceService } from '../instance/instance.service';
|
|
3
|
-
import { IPermissionService } from './permission.service';
|
|
4
|
-
|
|
5
|
-
export declare class UniverPermissionService extends Disposable {
|
|
6
|
-
private _permissionService;
|
|
7
|
-
private _univerInstanceService;
|
|
8
|
-
constructor(_permissionService: IPermissionService, _univerInstanceService: IUniverInstanceService);
|
|
9
|
-
private _init;
|
|
10
|
-
getEditable(unitId?: string | undefined): any;
|
|
11
|
-
setEditable(unitId: string, v: boolean): void;
|
|
12
|
-
}
|
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2023-present DreamNum Inc.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
export declare enum ShapeType {
|
|
17
|
-
TYPE_UNSPECIFIED = 0,//The shape type that is not predefined.
|
|
18
|
-
TEXT_BOX = 1,//Text box shape.
|
|
19
|
-
RECTANGLE = 2,//Rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'rect'.
|
|
20
|
-
ROUND_RECTANGLE = 3,//Round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'roundRect'
|
|
21
|
-
ELLIPSE = 4,//Ellipse shape. Corresponds to ECMA-376 ST_ShapeType 'ellipse'
|
|
22
|
-
ARC = 5,//Curved arc shape. Corresponds to ECMA-376 ST_ShapeType 'arc'
|
|
23
|
-
BENT_ARROW = 6,//Bent arrow shape. Corresponds to ECMA-376 ST_ShapeType 'bentArrow'
|
|
24
|
-
BENT_UP_ARROW = 7,//Bent up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'bentUpArrow'
|
|
25
|
-
BEVEL = 8,//Bevel shape. Corresponds to ECMA-376 ST_ShapeType 'bevel'
|
|
26
|
-
BLOCK_ARC = 9,//Block arc shape. Corresponds to ECMA-376 ST_ShapeType 'blockArc'
|
|
27
|
-
BRACE_PAIR = 10,//Brace pair shape. Corresponds to ECMA-376 ST_ShapeType 'bracePair'
|
|
28
|
-
BRACKET_PAIR = 11,//Bracket pair shape. Corresponds to ECMA-376 ST_ShapeType 'bracketPair'
|
|
29
|
-
CAN = 12,//Can shape. Corresponds to ECMA-376 ST_ShapeType 'can'
|
|
30
|
-
CHEVRON = 13,//Chevron shape. Corresponds to ECMA-376 ST_ShapeType 'chevron'
|
|
31
|
-
CHORD = 14,//Chord shape. Corresponds to ECMA-376 ST_ShapeType 'chord'
|
|
32
|
-
CLOUD = 15,//Cloud shape. Corresponds to ECMA-376 ST_ShapeType 'cloud'
|
|
33
|
-
CORNER = 16,//Corner shape. Corresponds to ECMA-376 ST_ShapeType 'corner'
|
|
34
|
-
CUBE = 17,//Cube shape. Corresponds to ECMA-376 ST_ShapeType 'cube'
|
|
35
|
-
CURVED_DOWN_ARROW = 18,//Curved down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedDownArrow'
|
|
36
|
-
CURVED_LEFT_ARROW = 19,//Curved left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedLeftArrow'
|
|
37
|
-
CURVED_RIGHT_ARROW = 20,//Curved right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedRightArrow'
|
|
38
|
-
CURVED_UP_ARROW = 21,//Curved up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'curvedUpArrow'
|
|
39
|
-
DECAGON = 22,//Decagon shape. Corresponds to ECMA-376 ST_ShapeType 'decagon'
|
|
40
|
-
DIAGONAL_STRIPE = 23,//Diagonal stripe shape. Corresponds to ECMA-376 ST_ShapeType 'diagStripe'
|
|
41
|
-
DIAMOND = 24,//Diamond shape. Corresponds to ECMA-376 ST_ShapeType 'diamond'
|
|
42
|
-
DODECAGON = 25,//Dodecagon shape. Corresponds to ECMA-376 ST_ShapeType 'dodecagon'
|
|
43
|
-
DONUT = 26,//Donut shape. Corresponds to ECMA-376 ST_ShapeType 'donut'
|
|
44
|
-
DOUBLE_WAVE = 27,//Double wave shape. Corresponds to ECMA-376 ST_ShapeType 'doubleWave'
|
|
45
|
-
DOWN_ARROW = 28,//Down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'downArrow'
|
|
46
|
-
DOWN_ARROW_CALLOUT = 29,//Callout down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'downArrowCallout'
|
|
47
|
-
FOLDED_CORNER = 30,//Folded corner shape. Corresponds to ECMA-376 ST_ShapeType 'foldedCorner'
|
|
48
|
-
FRAME = 31,//Frame shape. Corresponds to ECMA-376 ST_ShapeType 'frame'
|
|
49
|
-
HALF_FRAME = 32,//Half frame shape. Corresponds to ECMA-376 ST_ShapeType 'halfFrame'
|
|
50
|
-
HEART = 33,//Heart shape. Corresponds to ECMA-376 ST_ShapeType 'heart'
|
|
51
|
-
HEPTAGON = 34,//Heptagon shape. Corresponds to ECMA-376 ST_ShapeType 'heptagon'
|
|
52
|
-
HEXAGON = 35,//Hexagon shape. Corresponds to ECMA-376 ST_ShapeType 'hexagon'
|
|
53
|
-
HOME_PLATE = 36,//Home plate shape. Corresponds to ECMA-376 ST_ShapeType 'homePlate'
|
|
54
|
-
HORIZONTAL_SCROLL = 37,//Horizontal scroll shape. Corresponds to ECMA-376 ST_ShapeType 'horizontalScroll'
|
|
55
|
-
IRREGULAR_SEAL_1 = 38,//Irregular seal 1 shape. Corresponds to ECMA-376 ST_ShapeType 'irregularSeal1'
|
|
56
|
-
IRREGULAR_SEAL_2 = 39,//Irregular seal 2 shape. Corresponds to ECMA-376 ST_ShapeType 'irregularSeal2'
|
|
57
|
-
LEFT_ARROW = 40,//Left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftArrow'
|
|
58
|
-
LEFT_ARROW_CALLOUT = 41,//Callout left arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftArrowCallout'
|
|
59
|
-
LEFT_BRACE = 42,//Left brace shape. Corresponds to ECMA-376 ST_ShapeType 'leftBrace'
|
|
60
|
-
LEFT_BRACKET = 43,//Left bracket shape. Corresponds to ECMA-376 ST_ShapeType 'leftBracket'
|
|
61
|
-
LEFT_RIGHT_ARROW = 44,//Left right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightArrow'
|
|
62
|
-
LEFT_RIGHT_ARROW_CALLOUT = 45,//Callout left right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightArrowCallout'
|
|
63
|
-
LEFT_RIGHT_UP_ARROW = 46,//Left right up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftRightUpArrow'
|
|
64
|
-
LEFT_UP_ARROW = 47,//Left up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'leftUpArrow'
|
|
65
|
-
LIGHTNING_BOLT = 48,//Lightning bolt shape. Corresponds to ECMA-376 ST_ShapeType 'lightningBolt'
|
|
66
|
-
MATH_DIVIDE = 49,//Divide math shape. Corresponds to ECMA-376 ST_ShapeType 'mathDivide'
|
|
67
|
-
MATH_EQUAL = 50,//Equal math shape. Corresponds to ECMA-376 ST_ShapeType 'mathEqual'
|
|
68
|
-
MATH_MINUS = 51,//Minus math shape. Corresponds to ECMA-376 ST_ShapeType 'mathMinus'
|
|
69
|
-
MATH_MULTIPLY = 52,//Multiply math shape. Corresponds to ECMA-376 ST_ShapeType 'mathMultiply'
|
|
70
|
-
MATH_NOT_EQUAL = 53,//Not equal math shape. Corresponds to ECMA-376 ST_ShapeType 'mathNotEqual'
|
|
71
|
-
MATH_PLUS = 54,//Plus math shape. Corresponds to ECMA-376 ST_ShapeType 'mathPlus'
|
|
72
|
-
MOON = 55,//Moon shape. Corresponds to ECMA-376 ST_ShapeType 'moon'
|
|
73
|
-
NO_SMOKING = 56,//No smoking shape. Corresponds to ECMA-376 ST_ShapeType 'noSmoking'
|
|
74
|
-
NOTCHED_RIGHT_ARROW = 57,//Notched right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'notchedRightArrow'
|
|
75
|
-
OCTAGON = 58,//Octagon shape. Corresponds to ECMA-376 ST_ShapeType 'octagon'
|
|
76
|
-
PARALLELOGRAM = 59,//Parallelogram shape. Corresponds to ECMA-376 ST_ShapeType 'parallelogram'
|
|
77
|
-
PENTAGON = 60,//Pentagon shape. Corresponds to ECMA-376 ST_ShapeType 'pentagon'
|
|
78
|
-
PIE = 61,//Pie shape. Corresponds to ECMA-376 ST_ShapeType 'pie'
|
|
79
|
-
PLAQUE = 62,//Plaque shape. Corresponds to ECMA-376 ST_ShapeType 'plaque'
|
|
80
|
-
PLUS = 63,//Plus shape. Corresponds to ECMA-376 ST_ShapeType 'plus'
|
|
81
|
-
QUAD_ARROW = 64,//Quad-arrow shape. Corresponds to ECMA-376 ST_ShapeType 'quadArrow'
|
|
82
|
-
QUAD_ARROW_CALLOUT = 65,//Callout quad-arrow shape. Corresponds to ECMA-376 ST_ShapeType 'quadArrowCallout'
|
|
83
|
-
RIBBON = 66,//Ribbon shape. Corresponds to ECMA-376 ST_ShapeType 'ribbon'
|
|
84
|
-
RIBBON_2 = 67,//Ribbon 2 shape. Corresponds to ECMA-376 ST_ShapeType 'ribbon2'
|
|
85
|
-
RIGHT_ARROW = 68,//Right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'rightArrow'
|
|
86
|
-
RIGHT_ARROW_CALLOUT = 69,//Callout right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'rightArrowCallout'
|
|
87
|
-
RIGHT_BRACE = 70,//Right brace shape. Corresponds to ECMA-376 ST_ShapeType 'rightBrace'
|
|
88
|
-
RIGHT_BRACKET = 71,//Right bracket shape. Corresponds to ECMA-376 ST_ShapeType 'rightBracket'
|
|
89
|
-
ROUND_1_RECTANGLE = 72,//One round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round1Rect'
|
|
90
|
-
ROUND_2_DIAGONAL_RECTANGLE = 73,//Two diagonal round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round2DiagRect'
|
|
91
|
-
ROUND_2_SAME_RECTANGLE = 74,//Two same-side round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'round2SameRect'
|
|
92
|
-
RIGHT_TRIANGLE = 75,//Right triangle shape. Corresponds to ECMA-376 ST_ShapeType 'rtTriangle'
|
|
93
|
-
SMILEY_FACE = 76,//Smiley face shape. Corresponds to ECMA-376 ST_ShapeType 'smileyFace'
|
|
94
|
-
SNIP_1_RECTANGLE = 77,//One snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip1Rect'
|
|
95
|
-
SNIP_2_DIAGONAL_RECTANGLE = 78,//Two diagonal snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip2DiagRect'
|
|
96
|
-
SNIP_2_SAME_RECTANGLE = 79,//Two same-side snip corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snip2SameRect'
|
|
97
|
-
SNIP_ROUND_RECTANGLE = 80,//One snip one round corner rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'snipRoundRect'
|
|
98
|
-
STAR_10 = 81,//Ten pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star10'
|
|
99
|
-
STAR_12 = 82,//Twelve pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star12'
|
|
100
|
-
STAR_16 = 83,//Sixteen pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star16'
|
|
101
|
-
STAR_24 = 84,//Twenty four pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star24'
|
|
102
|
-
STAR_32 = 85,//Thirty two pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star32'
|
|
103
|
-
STAR_4 = 86,//Four pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star4'
|
|
104
|
-
STAR_5 = 87,//Five pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star5'
|
|
105
|
-
STAR_6 = 88,//Six pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star6'
|
|
106
|
-
STAR_7 = 89,//Seven pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star7'
|
|
107
|
-
STAR_8 = 90,//Eight pointed star shape. Corresponds to ECMA-376 ST_ShapeType 'star8'
|
|
108
|
-
STRIPED_RIGHT_ARROW = 91,//Striped right arrow shape. Corresponds to ECMA-376 ST_ShapeType 'stripedRightArrow'
|
|
109
|
-
SUN = 92,//Sun shape. Corresponds to ECMA-376 ST_ShapeType 'sun'
|
|
110
|
-
TRAPEZOID = 93,//Trapezoid shape. Corresponds to ECMA-376 ST_ShapeType 'trapezoid'
|
|
111
|
-
TRIANGLE = 94,//Triangle shape. Corresponds to ECMA-376 ST_ShapeType 'triangle'
|
|
112
|
-
UP_ARROW = 95,//Up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upArrow'
|
|
113
|
-
UP_ARROW_CALLOUT = 96,//Callout up arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upArrowCallout'
|
|
114
|
-
UP_DOWN_ARROW = 97,//Up down arrow shape. Corresponds to ECMA-376 ST_ShapeType 'upDownArrow'
|
|
115
|
-
UTURN_ARROW = 98,//U-turn arrow shape. Corresponds to ECMA-376 ST_ShapeType 'uturnArrow'
|
|
116
|
-
VERTICAL_SCROLL = 99,//Vertical scroll shape. Corresponds to ECMA-376 ST_ShapeType 'verticalScroll'
|
|
117
|
-
WAVE = 100,//Wave shape. Corresponds to ECMA-376 ST_ShapeType 'wave'
|
|
118
|
-
WEDGE_ELLIPSE_CALLOUT = 101,//Callout wedge ellipse shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeEllipseCallout'
|
|
119
|
-
WEDGE_RECTANGLE_CALLOUT = 102,//Callout wedge rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeRectCallout'
|
|
120
|
-
WEDGE_ROUND_RECTANGLE_CALLOUT = 103,//Callout wedge round rectangle shape. Corresponds to ECMA-376 ST_ShapeType 'wedgeRoundRectCallout'
|
|
121
|
-
FLOW_CHART_ALTERNATE_PROCESS = 104,//Alternate process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartAlternateProcess'
|
|
122
|
-
FLOW_CHART_COLLATE = 105,//Collate flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartCollate'
|
|
123
|
-
FLOW_CHART_CONNECTOR = 106,//Connector flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartConnector'
|
|
124
|
-
FLOW_CHART_DECISION = 107,//Decision flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDecision'
|
|
125
|
-
FLOW_CHART_DELAY = 108,//Delay flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDelay'
|
|
126
|
-
FLOW_CHART_DISPLAY = 109,//Display flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDisplay'
|
|
127
|
-
FLOW_CHART_DOCUMENT = 110,//Document flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartDocument'
|
|
128
|
-
FLOW_CHART_EXTRACT = 111,//Extract flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartExtract'
|
|
129
|
-
FLOW_CHART_INPUT_OUTPUT = 112,//Input output flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartInputOutput'
|
|
130
|
-
FLOW_CHART_INTERNAL_STORAGE = 113,//Internal storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartInternalStorage'
|
|
131
|
-
FLOW_CHART_MAGNETIC_DISK = 114,//Magnetic disk flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticDisk'
|
|
132
|
-
FLOW_CHART_MAGNETIC_DRUM = 115,//Magnetic drum flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticDrum'
|
|
133
|
-
FLOW_CHART_MAGNETIC_TAPE = 116,//Magnetic tape flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMagneticTape'
|
|
134
|
-
FLOW_CHART_MANUAL_INPUT = 117,//Manual input flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartManualInput'
|
|
135
|
-
FLOW_CHART_MANUAL_OPERATION = 118,//Manual operation flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartManualOperation'
|
|
136
|
-
FLOW_CHART_MERGE = 119,//Merge flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMerge'
|
|
137
|
-
FLOW_CHART_MULTIDOCUMENT = 120,//Multi-document flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartMultidocument'
|
|
138
|
-
FLOW_CHART_OFFLINE_STORAGE = 121,//Offline storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOfflineStorage'
|
|
139
|
-
FLOW_CHART_OFFPAGE_CONNECTOR = 122,//Off-page connector flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOffpageConnector'
|
|
140
|
-
FLOW_CHART_ONLINE_STORAGE = 123,//Online storage flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOnlineStorage'
|
|
141
|
-
FLOW_CHART_OR = 124,//Or flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartOr'
|
|
142
|
-
FLOW_CHART_PREDEFINED_PROCESS = 125,//Predefined process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPredefinedProcess'
|
|
143
|
-
FLOW_CHART_PREPARATION = 126,//Preparation flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPreparation'
|
|
144
|
-
FLOW_CHART_PROCESS = 127,//Process flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartProcess'
|
|
145
|
-
FLOW_CHART_PUNCHED_CARD = 128,//Punched card flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPunchedCard'
|
|
146
|
-
FLOW_CHART_PUNCHED_TAPE = 129,//Punched tape flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartPunchedTape'
|
|
147
|
-
FLOW_CHART_SORT = 130,//Sort flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartSort'
|
|
148
|
-
FLOW_CHART_SUMMING_JUNCTION = 131,//Summing junction flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartSummingJunction'
|
|
149
|
-
FLOW_CHART_TERMINATOR = 132,//Terminator flow shape. Corresponds to ECMA-376 ST_ShapeType 'flowChartTerminator'
|
|
150
|
-
ARROW_EAST = 133,//East arrow shape.
|
|
151
|
-
ARROW_NORTH_EAST = 134,//Northeast arrow shape.
|
|
152
|
-
ARROW_NORTH = 135,//North arrow shape.
|
|
153
|
-
SPEECH = 136,//Speech shape.
|
|
154
|
-
STARBURST = 137,//Star burst shape.
|
|
155
|
-
TEARDROP = 138,//Teardrop shape. Corresponds to ECMA-376 ST_ShapeType 'teardrop'
|
|
156
|
-
ELLIPSE_RIBBON = 139,//Ellipse ribbon shape. Corresponds to ECMA-376 ST_ShapeType 'ellipseRibbon'
|
|
157
|
-
ELLIPSE_RIBBON_2 = 140,//Ellipse ribbon 2 shape. Corresponds to ECMA-376 ST_ShapeType 'ellipseRibbon2'
|
|
158
|
-
CLOUD_CALLOUT = 141,//Callout cloud shape. Corresponds to ECMA-376 ST_ShapeType 'cloudCallout'
|
|
159
|
-
CUSTOM = 142
|
|
160
|
-
}
|
|
File without changes
|
|
File without changes
|