@visactor/vchart-schema 1.4.0-alpha.7 → 1.4.0-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/package.json +1 -1
- package/vchart.json +522 -25
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -5116,6 +5116,11 @@
|
|
|
5116
5116
|
"cursor": {
|
|
5117
5117
|
"$ref": "#/definitions/VisualType<Cursor>"
|
|
5118
5118
|
},
|
|
5119
|
+
"direction": {
|
|
5120
|
+
"$ref": "#/definitions/VisualType<\"horizontal\"|\"vertical\">",
|
|
5121
|
+
"default": "'horizontal'",
|
|
5122
|
+
"description": "文本的排布方向,如果需要文本纵向排布,可以配置为 'vertical'"
|
|
5123
|
+
},
|
|
5119
5124
|
"dx": {
|
|
5120
5125
|
"$ref": "#/definitions/VisualType<number>",
|
|
5121
5126
|
"description": "x 方向偏移"
|
|
@@ -5277,6 +5282,11 @@
|
|
|
5277
5282
|
"cursor": {
|
|
5278
5283
|
"$ref": "#/definitions/VisualType<Cursor>"
|
|
5279
5284
|
},
|
|
5285
|
+
"direction": {
|
|
5286
|
+
"$ref": "#/definitions/VisualType<\"horizontal\"|\"vertical\">",
|
|
5287
|
+
"default": "'horizontal'",
|
|
5288
|
+
"description": "文本的排布方向,如果需要文本纵向排布,可以配置为 'vertical'"
|
|
5289
|
+
},
|
|
5280
5290
|
"dx": {
|
|
5281
5291
|
"$ref": "#/definitions/VisualType<number>",
|
|
5282
5292
|
"description": "x 方向偏移"
|
|
@@ -5438,6 +5448,11 @@
|
|
|
5438
5448
|
"cursor": {
|
|
5439
5449
|
"$ref": "#/definitions/VisualType<Cursor>"
|
|
5440
5450
|
},
|
|
5451
|
+
"direction": {
|
|
5452
|
+
"$ref": "#/definitions/VisualType<\"horizontal\"|\"vertical\">",
|
|
5453
|
+
"default": "'horizontal'",
|
|
5454
|
+
"description": "文本的排布方向,如果需要文本纵向排布,可以配置为 'vertical'"
|
|
5455
|
+
},
|
|
5441
5456
|
"dx": {
|
|
5442
5457
|
"$ref": "#/definitions/VisualType<number>",
|
|
5443
5458
|
"description": "x 方向偏移"
|
|
@@ -26093,6 +26108,14 @@
|
|
|
26093
26108
|
"$ref": "#/definitions/ILayoutNumber",
|
|
26094
26109
|
"description": "模块的布局大小:高度"
|
|
26095
26110
|
},
|
|
26111
|
+
"layout": {
|
|
26112
|
+
"description": "图例组件的布局配置,默认自动跟随显示位置进行调整。\n1. `orient` 为 'top' 或者 'bottom' 时,默认为 'horizontal' 水平布局\n2. `orient` 为 'left' 或者 'right' 时,默认为 'vertical' 垂直布局",
|
|
26113
|
+
"enum": [
|
|
26114
|
+
"horizontal",
|
|
26115
|
+
"vertical"
|
|
26116
|
+
],
|
|
26117
|
+
"type": "string"
|
|
26118
|
+
},
|
|
26096
26119
|
"layoutLevel": {
|
|
26097
26120
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
26098
26121
|
"type": "number"
|
|
@@ -27513,6 +27536,16 @@
|
|
|
27513
27536
|
},
|
|
27514
27537
|
"IDiscreteLegendTheme": {
|
|
27515
27538
|
"properties": {
|
|
27539
|
+
"_debug_bounds": {
|
|
27540
|
+
"anyOf": [
|
|
27541
|
+
{
|
|
27542
|
+
"typeof": "function"
|
|
27543
|
+
},
|
|
27544
|
+
{
|
|
27545
|
+
"type": "boolean"
|
|
27546
|
+
}
|
|
27547
|
+
]
|
|
27548
|
+
},
|
|
27516
27549
|
"alignContent": {
|
|
27517
27550
|
"enum": [
|
|
27518
27551
|
"center",
|
|
@@ -27817,6 +27850,14 @@
|
|
|
27817
27850
|
"keepDirIn3d": {
|
|
27818
27851
|
"type": "boolean"
|
|
27819
27852
|
},
|
|
27853
|
+
"layout": {
|
|
27854
|
+
"description": "图例组件的布局配置,默认自动跟随显示位置进行调整。\n1. `orient` 为 'top' 或者 'bottom' 时,默认为 'horizontal' 水平布局\n2. `orient` 为 'left' 或者 'right' 时,默认为 'vertical' 垂直布局",
|
|
27855
|
+
"enum": [
|
|
27856
|
+
"horizontal",
|
|
27857
|
+
"vertical"
|
|
27858
|
+
],
|
|
27859
|
+
"type": "string"
|
|
27860
|
+
},
|
|
27820
27861
|
"layoutLevel": {
|
|
27821
27862
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
27822
27863
|
"type": "number"
|
|
@@ -39081,6 +39122,28 @@
|
|
|
39081
39122
|
"range": {
|
|
39082
39123
|
"typeof": "function"
|
|
39083
39124
|
},
|
|
39125
|
+
"tooltipFilterRange": {
|
|
39126
|
+
"anyOf": [
|
|
39127
|
+
{
|
|
39128
|
+
"items": [
|
|
39129
|
+
{
|
|
39130
|
+
"type": "number"
|
|
39131
|
+
},
|
|
39132
|
+
{
|
|
39133
|
+
"type": "number"
|
|
39134
|
+
}
|
|
39135
|
+
],
|
|
39136
|
+
"maxItems": 2,
|
|
39137
|
+
"minItems": 2,
|
|
39138
|
+
"type": "array"
|
|
39139
|
+
},
|
|
39140
|
+
{
|
|
39141
|
+
"type": "number"
|
|
39142
|
+
}
|
|
39143
|
+
],
|
|
39144
|
+
"description": "连续轴上的 dimension tooltip 数据筛选范围\n如果配置为单个数字 d,则筛选区间为 [x0 - d, x0 + d];如果配置为二元组 [d1, d2],则筛选区间为 [x0 + d1, x0 + d2]",
|
|
39145
|
+
"since": "1.4.0"
|
|
39146
|
+
},
|
|
39084
39147
|
"zero": {
|
|
39085
39148
|
"default": true,
|
|
39086
39149
|
"description": "当配置了 min和 max,该配置项失效",
|
|
@@ -44634,6 +44697,16 @@
|
|
|
44634
44697
|
},
|
|
44635
44698
|
"IPoptipTheme": {
|
|
44636
44699
|
"properties": {
|
|
44700
|
+
"_debug_bounds": {
|
|
44701
|
+
"anyOf": [
|
|
44702
|
+
{
|
|
44703
|
+
"typeof": "function"
|
|
44704
|
+
},
|
|
44705
|
+
{
|
|
44706
|
+
"type": "boolean"
|
|
44707
|
+
}
|
|
44708
|
+
]
|
|
44709
|
+
},
|
|
44637
44710
|
"alignContent": {
|
|
44638
44711
|
"enum": [
|
|
44639
44712
|
"center",
|
|
@@ -51579,6 +51652,7 @@
|
|
|
51579
51652
|
"description": "系列名称",
|
|
51580
51653
|
"type": "string"
|
|
51581
51654
|
},
|
|
51655
|
+
"nameKey": {},
|
|
51582
51656
|
"node": {
|
|
51583
51657
|
"$ref": "#/definitions/IMarkSpec<IRectMarkSpec>",
|
|
51584
51658
|
"description": "节点配置"
|
|
@@ -51760,6 +51834,7 @@
|
|
|
51760
51834
|
},
|
|
51761
51835
|
"required": [
|
|
51762
51836
|
"categoryField",
|
|
51837
|
+
"nameKey",
|
|
51763
51838
|
"type",
|
|
51764
51839
|
"valueField"
|
|
51765
51840
|
],
|
|
@@ -51960,6 +52035,7 @@
|
|
|
51960
52035
|
"description": "系列名称",
|
|
51961
52036
|
"type": "string"
|
|
51962
52037
|
},
|
|
52038
|
+
"nameKey": {},
|
|
51963
52039
|
"node": {
|
|
51964
52040
|
"$ref": "#/definitions/IMarkSpec<IRectMarkSpec>",
|
|
51965
52041
|
"description": "节点配置"
|
|
@@ -52089,6 +52165,7 @@
|
|
|
52089
52165
|
},
|
|
52090
52166
|
"required": [
|
|
52091
52167
|
"categoryField",
|
|
52168
|
+
"nameKey",
|
|
52092
52169
|
"type",
|
|
52093
52170
|
"valueField"
|
|
52094
52171
|
],
|
|
@@ -56368,6 +56445,15 @@
|
|
|
56368
56445
|
"cursor": {
|
|
56369
56446
|
"$ref": "#/definitions/Cursor_1"
|
|
56370
56447
|
},
|
|
56448
|
+
"direction": {
|
|
56449
|
+
"default": "'horizontal'",
|
|
56450
|
+
"description": "文本的排布方向,如果需要文本纵向排布,可以配置为 'vertical'",
|
|
56451
|
+
"enum": [
|
|
56452
|
+
"horizontal",
|
|
56453
|
+
"vertical"
|
|
56454
|
+
],
|
|
56455
|
+
"type": "string"
|
|
56456
|
+
},
|
|
56371
56457
|
"dx": {
|
|
56372
56458
|
"description": "x 方向偏移",
|
|
56373
56459
|
"type": "number"
|
|
@@ -57384,6 +57470,11 @@
|
|
|
57384
57470
|
"position": {
|
|
57385
57471
|
"$ref": "#/definitions/TooltipPatternProperty<TooltipPosition>"
|
|
57386
57472
|
},
|
|
57473
|
+
"positionMode": {
|
|
57474
|
+
"$ref": "#/definitions/TooltipPatternProperty<TooltipPositionMode>",
|
|
57475
|
+
"description": "决定 `position` 相对固定于什么图形,如固定在鼠标指针周围或图元周围。该配置只有 `position` 设为字符串时生效。默认为 `'mark'`",
|
|
57476
|
+
"since": "1.4.0"
|
|
57477
|
+
},
|
|
57387
57478
|
"seriesId": {
|
|
57388
57479
|
"description": "该 pattern 属于哪个系列id(用户不需要设置)",
|
|
57389
57480
|
"type": "number"
|
|
@@ -63311,7 +63402,7 @@
|
|
|
63311
63402
|
},
|
|
63312
63403
|
"Map<Function,(...args:any[])=>void>": {
|
|
63313
63404
|
"properties": {
|
|
63314
|
-
"__@toStringTag@
|
|
63405
|
+
"__@toStringTag@13056": {
|
|
63315
63406
|
"type": "string"
|
|
63316
63407
|
},
|
|
63317
63408
|
"size": {
|
|
@@ -63319,14 +63410,14 @@
|
|
|
63319
63410
|
}
|
|
63320
63411
|
},
|
|
63321
63412
|
"required": [
|
|
63322
|
-
"__@toStringTag@
|
|
63413
|
+
"__@toStringTag@13056",
|
|
63323
63414
|
"size"
|
|
63324
63415
|
],
|
|
63325
63416
|
"type": "object"
|
|
63326
63417
|
},
|
|
63327
63418
|
"Map<number,IGraphicPicker>": {
|
|
63328
63419
|
"properties": {
|
|
63329
|
-
"__@toStringTag@
|
|
63420
|
+
"__@toStringTag@13056": {
|
|
63330
63421
|
"type": "string"
|
|
63331
63422
|
},
|
|
63332
63423
|
"size": {
|
|
@@ -63334,14 +63425,14 @@
|
|
|
63334
63425
|
}
|
|
63335
63426
|
},
|
|
63336
63427
|
"required": [
|
|
63337
|
-
"__@toStringTag@
|
|
63428
|
+
"__@toStringTag@13056",
|
|
63338
63429
|
"size"
|
|
63339
63430
|
],
|
|
63340
63431
|
"type": "object"
|
|
63341
63432
|
},
|
|
63342
63433
|
"Map<number,IGraphicRender>": {
|
|
63343
63434
|
"properties": {
|
|
63344
|
-
"__@toStringTag@
|
|
63435
|
+
"__@toStringTag@13056": {
|
|
63345
63436
|
"type": "string"
|
|
63346
63437
|
},
|
|
63347
63438
|
"size": {
|
|
@@ -63349,14 +63440,14 @@
|
|
|
63349
63440
|
}
|
|
63350
63441
|
},
|
|
63351
63442
|
"required": [
|
|
63352
|
-
"__@toStringTag@
|
|
63443
|
+
"__@toStringTag@13056",
|
|
63353
63444
|
"size"
|
|
63354
63445
|
],
|
|
63355
63446
|
"type": "object"
|
|
63356
63447
|
},
|
|
63357
63448
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
63358
63449
|
"properties": {
|
|
63359
|
-
"__@toStringTag@
|
|
63450
|
+
"__@toStringTag@13056": {
|
|
63360
63451
|
"type": "string"
|
|
63361
63452
|
},
|
|
63362
63453
|
"size": {
|
|
@@ -63364,14 +63455,14 @@
|
|
|
63364
63455
|
}
|
|
63365
63456
|
},
|
|
63366
63457
|
"required": [
|
|
63367
|
-
"__@toStringTag@
|
|
63458
|
+
"__@toStringTag@13056",
|
|
63368
63459
|
"size"
|
|
63369
63460
|
],
|
|
63370
63461
|
"type": "object"
|
|
63371
63462
|
},
|
|
63372
63463
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
63373
63464
|
"properties": {
|
|
63374
|
-
"__@toStringTag@
|
|
63465
|
+
"__@toStringTag@13056": {
|
|
63375
63466
|
"type": "string"
|
|
63376
63467
|
},
|
|
63377
63468
|
"size": {
|
|
@@ -63379,14 +63470,14 @@
|
|
|
63379
63470
|
}
|
|
63380
63471
|
},
|
|
63381
63472
|
"required": [
|
|
63382
|
-
"__@toStringTag@
|
|
63473
|
+
"__@toStringTag@13056",
|
|
63383
63474
|
"size"
|
|
63384
63475
|
],
|
|
63385
63476
|
"type": "object"
|
|
63386
63477
|
},
|
|
63387
63478
|
"Map<string,any>": {
|
|
63388
63479
|
"properties": {
|
|
63389
|
-
"__@toStringTag@
|
|
63480
|
+
"__@toStringTag@13056": {
|
|
63390
63481
|
"type": "string"
|
|
63391
63482
|
},
|
|
63392
63483
|
"size": {
|
|
@@ -63394,14 +63485,14 @@
|
|
|
63394
63485
|
}
|
|
63395
63486
|
},
|
|
63396
63487
|
"required": [
|
|
63397
|
-
"__@toStringTag@
|
|
63488
|
+
"__@toStringTag@13056",
|
|
63398
63489
|
"size"
|
|
63399
63490
|
],
|
|
63400
63491
|
"type": "object"
|
|
63401
63492
|
},
|
|
63402
63493
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
63403
63494
|
"properties": {
|
|
63404
|
-
"__@toStringTag@
|
|
63495
|
+
"__@toStringTag@13056": {
|
|
63405
63496
|
"type": "string"
|
|
63406
63497
|
},
|
|
63407
63498
|
"size": {
|
|
@@ -63409,14 +63500,14 @@
|
|
|
63409
63500
|
}
|
|
63410
63501
|
},
|
|
63411
63502
|
"required": [
|
|
63412
|
-
"__@toStringTag@
|
|
63503
|
+
"__@toStringTag@13056",
|
|
63413
63504
|
"size"
|
|
63414
63505
|
],
|
|
63415
63506
|
"type": "object"
|
|
63416
63507
|
},
|
|
63417
63508
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:HTMLElement;wrapGroup:HTMLDivElement;}>": {
|
|
63418
63509
|
"properties": {
|
|
63419
|
-
"__@toStringTag@
|
|
63510
|
+
"__@toStringTag@13056": {
|
|
63420
63511
|
"type": "string"
|
|
63421
63512
|
},
|
|
63422
63513
|
"size": {
|
|
@@ -63424,14 +63515,14 @@
|
|
|
63424
63515
|
}
|
|
63425
63516
|
},
|
|
63426
63517
|
"required": [
|
|
63427
|
-
"__@toStringTag@
|
|
63518
|
+
"__@toStringTag@13056",
|
|
63428
63519
|
"size"
|
|
63429
63520
|
],
|
|
63430
63521
|
"type": "object"
|
|
63431
63522
|
},
|
|
63432
63523
|
"Map<string|number,IAnimate>": {
|
|
63433
63524
|
"properties": {
|
|
63434
|
-
"__@toStringTag@
|
|
63525
|
+
"__@toStringTag@13056": {
|
|
63435
63526
|
"type": "string"
|
|
63436
63527
|
},
|
|
63437
63528
|
"size": {
|
|
@@ -63439,7 +63530,7 @@
|
|
|
63439
63530
|
}
|
|
63440
63531
|
},
|
|
63441
63532
|
"required": [
|
|
63442
|
-
"__@toStringTag@
|
|
63533
|
+
"__@toStringTag@13056",
|
|
63443
63534
|
"size"
|
|
63444
63535
|
],
|
|
63445
63536
|
"type": "object"
|
|
@@ -63748,6 +63839,16 @@
|
|
|
63748
63839
|
},
|
|
63749
63840
|
"Omit<DiscreteLegendAttrs,\"title\"|\"layout\"|\"items\"|\"pager\"|\"item\">": {
|
|
63750
63841
|
"properties": {
|
|
63842
|
+
"_debug_bounds": {
|
|
63843
|
+
"anyOf": [
|
|
63844
|
+
{
|
|
63845
|
+
"typeof": "function"
|
|
63846
|
+
},
|
|
63847
|
+
{
|
|
63848
|
+
"type": "boolean"
|
|
63849
|
+
}
|
|
63850
|
+
]
|
|
63851
|
+
},
|
|
63751
63852
|
"alignContent": {
|
|
63752
63853
|
"enum": [
|
|
63753
63854
|
"center",
|
|
@@ -66211,6 +66312,16 @@
|
|
|
66211
66312
|
},
|
|
66212
66313
|
"Omit<IGroupGraphicAttribute,\"background\">": {
|
|
66213
66314
|
"properties": {
|
|
66315
|
+
"_debug_bounds": {
|
|
66316
|
+
"anyOf": [
|
|
66317
|
+
{
|
|
66318
|
+
"typeof": "function"
|
|
66319
|
+
},
|
|
66320
|
+
{
|
|
66321
|
+
"type": "boolean"
|
|
66322
|
+
}
|
|
66323
|
+
]
|
|
66324
|
+
},
|
|
66214
66325
|
"alignContent": {
|
|
66215
66326
|
"enum": [
|
|
66216
66327
|
"center",
|
|
@@ -67525,6 +67636,16 @@
|
|
|
67525
67636
|
},
|
|
67526
67637
|
"Omit<Omit<PagerAttributes,\"total\">&{space?:number;animation?:boolean;animationDuration?:number;animationEasing?:EasingType;},\"textStyle\"|\"handler\">": {
|
|
67527
67638
|
"properties": {
|
|
67639
|
+
"_debug_bounds": {
|
|
67640
|
+
"anyOf": [
|
|
67641
|
+
{
|
|
67642
|
+
"typeof": "function"
|
|
67643
|
+
},
|
|
67644
|
+
{
|
|
67645
|
+
"type": "boolean"
|
|
67646
|
+
}
|
|
67647
|
+
]
|
|
67648
|
+
},
|
|
67528
67649
|
"alignContent": {
|
|
67529
67650
|
"enum": [
|
|
67530
67651
|
"center",
|
|
@@ -68192,6 +68313,16 @@
|
|
|
68192
68313
|
},
|
|
68193
68314
|
"Partial<IArcGraphicAttribute>": {
|
|
68194
68315
|
"properties": {
|
|
68316
|
+
"_debug_bounds": {
|
|
68317
|
+
"anyOf": [
|
|
68318
|
+
{
|
|
68319
|
+
"typeof": "function"
|
|
68320
|
+
},
|
|
68321
|
+
{
|
|
68322
|
+
"type": "boolean"
|
|
68323
|
+
}
|
|
68324
|
+
]
|
|
68325
|
+
},
|
|
68195
68326
|
"alpha": {
|
|
68196
68327
|
"type": "number"
|
|
68197
68328
|
},
|
|
@@ -68538,6 +68669,16 @@
|
|
|
68538
68669
|
},
|
|
68539
68670
|
"Partial<IAreaGraphicAttribute>": {
|
|
68540
68671
|
"properties": {
|
|
68672
|
+
"_debug_bounds": {
|
|
68673
|
+
"anyOf": [
|
|
68674
|
+
{
|
|
68675
|
+
"typeof": "function"
|
|
68676
|
+
},
|
|
68677
|
+
{
|
|
68678
|
+
"type": "boolean"
|
|
68679
|
+
}
|
|
68680
|
+
]
|
|
68681
|
+
},
|
|
68541
68682
|
"alpha": {
|
|
68542
68683
|
"type": "number"
|
|
68543
68684
|
},
|
|
@@ -68941,6 +69082,16 @@
|
|
|
68941
69082
|
},
|
|
68942
69083
|
"Partial<ICircleGraphicAttribute>": {
|
|
68943
69084
|
"properties": {
|
|
69085
|
+
"_debug_bounds": {
|
|
69086
|
+
"anyOf": [
|
|
69087
|
+
{
|
|
69088
|
+
"typeof": "function"
|
|
69089
|
+
},
|
|
69090
|
+
{
|
|
69091
|
+
"type": "boolean"
|
|
69092
|
+
}
|
|
69093
|
+
]
|
|
69094
|
+
},
|
|
68944
69095
|
"alpha": {
|
|
68945
69096
|
"type": "number"
|
|
68946
69097
|
},
|
|
@@ -69249,6 +69400,16 @@
|
|
|
69249
69400
|
},
|
|
69250
69401
|
"Partial<IGlyphGraphicAttribute>": {
|
|
69251
69402
|
"properties": {
|
|
69403
|
+
"_debug_bounds": {
|
|
69404
|
+
"anyOf": [
|
|
69405
|
+
{
|
|
69406
|
+
"typeof": "function"
|
|
69407
|
+
},
|
|
69408
|
+
{
|
|
69409
|
+
"type": "boolean"
|
|
69410
|
+
}
|
|
69411
|
+
]
|
|
69412
|
+
},
|
|
69252
69413
|
"alpha": {
|
|
69253
69414
|
"type": "number"
|
|
69254
69415
|
},
|
|
@@ -69580,6 +69741,16 @@
|
|
|
69580
69741
|
},
|
|
69581
69742
|
"Partial<IGraphicAttribute>": {
|
|
69582
69743
|
"properties": {
|
|
69744
|
+
"_debug_bounds": {
|
|
69745
|
+
"anyOf": [
|
|
69746
|
+
{
|
|
69747
|
+
"typeof": "function"
|
|
69748
|
+
},
|
|
69749
|
+
{
|
|
69750
|
+
"type": "boolean"
|
|
69751
|
+
}
|
|
69752
|
+
]
|
|
69753
|
+
},
|
|
69583
69754
|
"alpha": {
|
|
69584
69755
|
"type": "number"
|
|
69585
69756
|
},
|
|
@@ -69879,6 +70050,16 @@
|
|
|
69879
70050
|
},
|
|
69880
70051
|
"Partial<IGroupGraphicAttribute>": {
|
|
69881
70052
|
"properties": {
|
|
70053
|
+
"_debug_bounds": {
|
|
70054
|
+
"anyOf": [
|
|
70055
|
+
{
|
|
70056
|
+
"typeof": "function"
|
|
70057
|
+
},
|
|
70058
|
+
{
|
|
70059
|
+
"type": "boolean"
|
|
70060
|
+
}
|
|
70061
|
+
]
|
|
70062
|
+
},
|
|
69882
70063
|
"alignContent": {
|
|
69883
70064
|
"enum": [
|
|
69884
70065
|
"center",
|
|
@@ -70259,6 +70440,16 @@
|
|
|
70259
70440
|
},
|
|
70260
70441
|
"Partial<IImageGraphicAttribute>": {
|
|
70261
70442
|
"properties": {
|
|
70443
|
+
"_debug_bounds": {
|
|
70444
|
+
"anyOf": [
|
|
70445
|
+
{
|
|
70446
|
+
"typeof": "function"
|
|
70447
|
+
},
|
|
70448
|
+
{
|
|
70449
|
+
"type": "boolean"
|
|
70450
|
+
}
|
|
70451
|
+
]
|
|
70452
|
+
},
|
|
70262
70453
|
"alpha": {
|
|
70263
70454
|
"type": "number"
|
|
70264
70455
|
},
|
|
@@ -71083,6 +71274,16 @@
|
|
|
71083
71274
|
},
|
|
71084
71275
|
"Partial<ILineGraphicAttribute>": {
|
|
71085
71276
|
"properties": {
|
|
71277
|
+
"_debug_bounds": {
|
|
71278
|
+
"anyOf": [
|
|
71279
|
+
{
|
|
71280
|
+
"typeof": "function"
|
|
71281
|
+
},
|
|
71282
|
+
{
|
|
71283
|
+
"type": "boolean"
|
|
71284
|
+
}
|
|
71285
|
+
]
|
|
71286
|
+
},
|
|
71086
71287
|
"alpha": {
|
|
71087
71288
|
"type": "number"
|
|
71088
71289
|
},
|
|
@@ -71944,6 +72145,16 @@
|
|
|
71944
72145
|
},
|
|
71945
72146
|
"Partial<IPathGraphicAttribute>": {
|
|
71946
72147
|
"properties": {
|
|
72148
|
+
"_debug_bounds": {
|
|
72149
|
+
"anyOf": [
|
|
72150
|
+
{
|
|
72151
|
+
"typeof": "function"
|
|
72152
|
+
},
|
|
72153
|
+
{
|
|
72154
|
+
"type": "boolean"
|
|
72155
|
+
}
|
|
72156
|
+
]
|
|
72157
|
+
},
|
|
71947
72158
|
"alpha": {
|
|
71948
72159
|
"type": "number"
|
|
71949
72160
|
},
|
|
@@ -72256,6 +72467,16 @@
|
|
|
72256
72467
|
},
|
|
72257
72468
|
"Partial<IPolygonGraphicAttribute>": {
|
|
72258
72469
|
"properties": {
|
|
72470
|
+
"_debug_bounds": {
|
|
72471
|
+
"anyOf": [
|
|
72472
|
+
{
|
|
72473
|
+
"typeof": "function"
|
|
72474
|
+
},
|
|
72475
|
+
{
|
|
72476
|
+
"type": "boolean"
|
|
72477
|
+
}
|
|
72478
|
+
]
|
|
72479
|
+
},
|
|
72259
72480
|
"alpha": {
|
|
72260
72481
|
"type": "number"
|
|
72261
72482
|
},
|
|
@@ -72799,6 +73020,16 @@
|
|
|
72799
73020
|
},
|
|
72800
73021
|
"Partial<IRect3dGraphicAttribute>": {
|
|
72801
73022
|
"properties": {
|
|
73023
|
+
"_debug_bounds": {
|
|
73024
|
+
"anyOf": [
|
|
73025
|
+
{
|
|
73026
|
+
"typeof": "function"
|
|
73027
|
+
},
|
|
73028
|
+
{
|
|
73029
|
+
"type": "boolean"
|
|
73030
|
+
}
|
|
73031
|
+
]
|
|
73032
|
+
},
|
|
72802
73033
|
"alpha": {
|
|
72803
73034
|
"type": "number"
|
|
72804
73035
|
},
|
|
@@ -73120,6 +73351,16 @@
|
|
|
73120
73351
|
},
|
|
73121
73352
|
"Partial<IRectGraphicAttribute>": {
|
|
73122
73353
|
"properties": {
|
|
73354
|
+
"_debug_bounds": {
|
|
73355
|
+
"anyOf": [
|
|
73356
|
+
{
|
|
73357
|
+
"typeof": "function"
|
|
73358
|
+
},
|
|
73359
|
+
{
|
|
73360
|
+
"type": "boolean"
|
|
73361
|
+
}
|
|
73362
|
+
]
|
|
73363
|
+
},
|
|
73123
73364
|
"alpha": {
|
|
73124
73365
|
"type": "number"
|
|
73125
73366
|
},
|
|
@@ -73755,6 +73996,16 @@
|
|
|
73755
73996
|
},
|
|
73756
73997
|
"Partial<ISymbolGraphicAttribute>": {
|
|
73757
73998
|
"properties": {
|
|
73999
|
+
"_debug_bounds": {
|
|
74000
|
+
"anyOf": [
|
|
74001
|
+
{
|
|
74002
|
+
"typeof": "function"
|
|
74003
|
+
},
|
|
74004
|
+
{
|
|
74005
|
+
"type": "boolean"
|
|
74006
|
+
}
|
|
74007
|
+
]
|
|
74008
|
+
},
|
|
73758
74009
|
"alpha": {
|
|
73759
74010
|
"type": "number"
|
|
73760
74011
|
},
|
|
@@ -74077,6 +74328,16 @@
|
|
|
74077
74328
|
},
|
|
74078
74329
|
"Partial<ITextGraphicAttribute>": {
|
|
74079
74330
|
"properties": {
|
|
74331
|
+
"_debug_bounds": {
|
|
74332
|
+
"anyOf": [
|
|
74333
|
+
{
|
|
74334
|
+
"typeof": "function"
|
|
74335
|
+
},
|
|
74336
|
+
{
|
|
74337
|
+
"type": "boolean"
|
|
74338
|
+
}
|
|
74339
|
+
]
|
|
74340
|
+
},
|
|
74080
74341
|
"alpha": {
|
|
74081
74342
|
"type": "number"
|
|
74082
74343
|
},
|
|
@@ -74433,6 +74694,9 @@
|
|
|
74433
74694
|
"underline": {
|
|
74434
74695
|
"type": "number"
|
|
74435
74696
|
},
|
|
74697
|
+
"verticalMode": {
|
|
74698
|
+
"type": "number"
|
|
74699
|
+
},
|
|
74436
74700
|
"visible": {
|
|
74437
74701
|
"type": "boolean"
|
|
74438
74702
|
},
|
|
@@ -74518,6 +74782,15 @@
|
|
|
74518
74782
|
"cursor": {
|
|
74519
74783
|
"$ref": "#/definitions/Cursor_1"
|
|
74520
74784
|
},
|
|
74785
|
+
"direction": {
|
|
74786
|
+
"default": "'horizontal'",
|
|
74787
|
+
"description": "文本的排布方向,如果需要文本纵向排布,可以配置为 'vertical'",
|
|
74788
|
+
"enum": [
|
|
74789
|
+
"horizontal",
|
|
74790
|
+
"vertical"
|
|
74791
|
+
],
|
|
74792
|
+
"type": "string"
|
|
74793
|
+
},
|
|
74521
74794
|
"dx": {
|
|
74522
74795
|
"description": "x 方向偏移",
|
|
74523
74796
|
"type": "number"
|
|
@@ -74935,6 +75208,16 @@
|
|
|
74935
75208
|
},
|
|
74936
75209
|
"Partial<Omit<Partial<ITextGraphicAttribute>,\"fill\">>": {
|
|
74937
75210
|
"properties": {
|
|
75211
|
+
"_debug_bounds": {
|
|
75212
|
+
"anyOf": [
|
|
75213
|
+
{
|
|
75214
|
+
"typeof": "function"
|
|
75215
|
+
},
|
|
75216
|
+
{
|
|
75217
|
+
"type": "boolean"
|
|
75218
|
+
}
|
|
75219
|
+
]
|
|
75220
|
+
},
|
|
74938
75221
|
"alpha": {
|
|
74939
75222
|
"type": "number"
|
|
74940
75223
|
},
|
|
@@ -75288,6 +75571,9 @@
|
|
|
75288
75571
|
"underline": {
|
|
75289
75572
|
"type": "number"
|
|
75290
75573
|
},
|
|
75574
|
+
"verticalMode": {
|
|
75575
|
+
"type": "number"
|
|
75576
|
+
},
|
|
75291
75577
|
"visible": {
|
|
75292
75578
|
"type": "boolean"
|
|
75293
75579
|
},
|
|
@@ -75315,6 +75601,16 @@
|
|
|
75315
75601
|
},
|
|
75316
75602
|
"Partial<Omit<{visible:boolean;}&Partial<IRectGraphicAttribute>&Partial<IGraphicAttribute>&Partial<ISymbolAttribute>&{space?:number;},\"shadowColor\"|\"fill\"|\"stroke\">>": {
|
|
75317
75603
|
"properties": {
|
|
75604
|
+
"_debug_bounds": {
|
|
75605
|
+
"anyOf": [
|
|
75606
|
+
{
|
|
75607
|
+
"typeof": "function"
|
|
75608
|
+
},
|
|
75609
|
+
{
|
|
75610
|
+
"type": "boolean"
|
|
75611
|
+
}
|
|
75612
|
+
]
|
|
75613
|
+
},
|
|
75318
75614
|
"alpha": {
|
|
75319
75615
|
"type": "number"
|
|
75320
75616
|
},
|
|
@@ -75628,6 +75924,16 @@
|
|
|
75628
75924
|
},
|
|
75629
75925
|
"Partial<Partial<IGraphicAttribute>>": {
|
|
75630
75926
|
"properties": {
|
|
75927
|
+
"_debug_bounds": {
|
|
75928
|
+
"anyOf": [
|
|
75929
|
+
{
|
|
75930
|
+
"typeof": "function"
|
|
75931
|
+
},
|
|
75932
|
+
{
|
|
75933
|
+
"type": "boolean"
|
|
75934
|
+
}
|
|
75935
|
+
]
|
|
75936
|
+
},
|
|
75631
75937
|
"alpha": {
|
|
75632
75938
|
"type": "number"
|
|
75633
75939
|
},
|
|
@@ -77226,34 +77532,34 @@
|
|
|
77226
77532
|
},
|
|
77227
77533
|
"Promise<FontFaceSet>": {
|
|
77228
77534
|
"properties": {
|
|
77229
|
-
"__@toStringTag@
|
|
77535
|
+
"__@toStringTag@13056": {
|
|
77230
77536
|
"type": "string"
|
|
77231
77537
|
}
|
|
77232
77538
|
},
|
|
77233
77539
|
"required": [
|
|
77234
|
-
"__@toStringTag@
|
|
77540
|
+
"__@toStringTag@13056"
|
|
77235
77541
|
],
|
|
77236
77542
|
"type": "object"
|
|
77237
77543
|
},
|
|
77238
77544
|
"Promise<ServiceWorkerRegistration>": {
|
|
77239
77545
|
"properties": {
|
|
77240
|
-
"__@toStringTag@
|
|
77546
|
+
"__@toStringTag@13056": {
|
|
77241
77547
|
"type": "string"
|
|
77242
77548
|
}
|
|
77243
77549
|
},
|
|
77244
77550
|
"required": [
|
|
77245
|
-
"__@toStringTag@
|
|
77551
|
+
"__@toStringTag@13056"
|
|
77246
77552
|
],
|
|
77247
77553
|
"type": "object"
|
|
77248
77554
|
},
|
|
77249
77555
|
"Promise<any>": {
|
|
77250
77556
|
"properties": {
|
|
77251
|
-
"__@toStringTag@
|
|
77557
|
+
"__@toStringTag@13056": {
|
|
77252
77558
|
"type": "string"
|
|
77253
77559
|
}
|
|
77254
77560
|
},
|
|
77255
77561
|
"required": [
|
|
77256
|
-
"__@toStringTag@
|
|
77562
|
+
"__@toStringTag@13056"
|
|
77257
77563
|
],
|
|
77258
77564
|
"type": "object"
|
|
77259
77565
|
},
|
|
@@ -77337,6 +77643,16 @@
|
|
|
77337
77643
|
},
|
|
77338
77644
|
"Required<IArcGraphicAttribute>": {
|
|
77339
77645
|
"properties": {
|
|
77646
|
+
"_debug_bounds": {
|
|
77647
|
+
"anyOf": [
|
|
77648
|
+
{
|
|
77649
|
+
"typeof": "function"
|
|
77650
|
+
},
|
|
77651
|
+
{
|
|
77652
|
+
"type": "boolean"
|
|
77653
|
+
}
|
|
77654
|
+
]
|
|
77655
|
+
},
|
|
77340
77656
|
"alpha": {
|
|
77341
77657
|
"type": "number"
|
|
77342
77658
|
},
|
|
@@ -77680,6 +77996,7 @@
|
|
|
77680
77996
|
}
|
|
77681
77997
|
},
|
|
77682
77998
|
"required": [
|
|
77999
|
+
"_debug_bounds",
|
|
77683
78000
|
"alpha",
|
|
77684
78001
|
"anchor",
|
|
77685
78002
|
"anchor3d",
|
|
@@ -77751,6 +78068,16 @@
|
|
|
77751
78068
|
},
|
|
77752
78069
|
"Required<IAreaGraphicAttribute>": {
|
|
77753
78070
|
"properties": {
|
|
78071
|
+
"_debug_bounds": {
|
|
78072
|
+
"anyOf": [
|
|
78073
|
+
{
|
|
78074
|
+
"typeof": "function"
|
|
78075
|
+
},
|
|
78076
|
+
{
|
|
78077
|
+
"type": "boolean"
|
|
78078
|
+
}
|
|
78079
|
+
]
|
|
78080
|
+
},
|
|
77754
78081
|
"alpha": {
|
|
77755
78082
|
"type": "number"
|
|
77756
78083
|
},
|
|
@@ -78085,6 +78412,7 @@
|
|
|
78085
78412
|
}
|
|
78086
78413
|
},
|
|
78087
78414
|
"required": [
|
|
78415
|
+
"_debug_bounds",
|
|
78088
78416
|
"alpha",
|
|
78089
78417
|
"anchor",
|
|
78090
78418
|
"anchor3d",
|
|
@@ -78156,6 +78484,16 @@
|
|
|
78156
78484
|
},
|
|
78157
78485
|
"Required<ICircleGraphicAttribute>": {
|
|
78158
78486
|
"properties": {
|
|
78487
|
+
"_debug_bounds": {
|
|
78488
|
+
"anyOf": [
|
|
78489
|
+
{
|
|
78490
|
+
"typeof": "function"
|
|
78491
|
+
},
|
|
78492
|
+
{
|
|
78493
|
+
"type": "boolean"
|
|
78494
|
+
}
|
|
78495
|
+
]
|
|
78496
|
+
},
|
|
78159
78497
|
"alpha": {
|
|
78160
78498
|
"type": "number"
|
|
78161
78499
|
},
|
|
@@ -78461,6 +78799,7 @@
|
|
|
78461
78799
|
}
|
|
78462
78800
|
},
|
|
78463
78801
|
"required": [
|
|
78802
|
+
"_debug_bounds",
|
|
78464
78803
|
"alpha",
|
|
78465
78804
|
"anchor",
|
|
78466
78805
|
"anchor3d",
|
|
@@ -78526,6 +78865,16 @@
|
|
|
78526
78865
|
},
|
|
78527
78866
|
"Required<IGlyphGraphicAttribute>": {
|
|
78528
78867
|
"properties": {
|
|
78868
|
+
"_debug_bounds": {
|
|
78869
|
+
"anyOf": [
|
|
78870
|
+
{
|
|
78871
|
+
"typeof": "function"
|
|
78872
|
+
},
|
|
78873
|
+
{
|
|
78874
|
+
"type": "boolean"
|
|
78875
|
+
}
|
|
78876
|
+
]
|
|
78877
|
+
},
|
|
78529
78878
|
"alpha": {
|
|
78530
78879
|
"type": "number"
|
|
78531
78880
|
},
|
|
@@ -78854,6 +79203,7 @@
|
|
|
78854
79203
|
}
|
|
78855
79204
|
},
|
|
78856
79205
|
"required": [
|
|
79206
|
+
"_debug_bounds",
|
|
78857
79207
|
"alpha",
|
|
78858
79208
|
"anchor",
|
|
78859
79209
|
"anchor3d",
|
|
@@ -78921,6 +79271,16 @@
|
|
|
78921
79271
|
},
|
|
78922
79272
|
"Required<IGroupGraphicAttribute>": {
|
|
78923
79273
|
"properties": {
|
|
79274
|
+
"_debug_bounds": {
|
|
79275
|
+
"anyOf": [
|
|
79276
|
+
{
|
|
79277
|
+
"typeof": "function"
|
|
79278
|
+
},
|
|
79279
|
+
{
|
|
79280
|
+
"type": "boolean"
|
|
79281
|
+
}
|
|
79282
|
+
]
|
|
79283
|
+
},
|
|
78924
79284
|
"alignContent": {
|
|
78925
79285
|
"enum": [
|
|
78926
79286
|
"center",
|
|
@@ -79298,6 +79658,7 @@
|
|
|
79298
79658
|
}
|
|
79299
79659
|
},
|
|
79300
79660
|
"required": [
|
|
79661
|
+
"_debug_bounds",
|
|
79301
79662
|
"alignContent",
|
|
79302
79663
|
"alignItems",
|
|
79303
79664
|
"alpha",
|
|
@@ -79372,6 +79733,16 @@
|
|
|
79372
79733
|
},
|
|
79373
79734
|
"Required<IImageGraphicAttribute>": {
|
|
79374
79735
|
"properties": {
|
|
79736
|
+
"_debug_bounds": {
|
|
79737
|
+
"anyOf": [
|
|
79738
|
+
{
|
|
79739
|
+
"typeof": "function"
|
|
79740
|
+
},
|
|
79741
|
+
{
|
|
79742
|
+
"type": "boolean"
|
|
79743
|
+
}
|
|
79744
|
+
]
|
|
79745
|
+
},
|
|
79375
79746
|
"alpha": {
|
|
79376
79747
|
"type": "number"
|
|
79377
79748
|
},
|
|
@@ -79706,6 +80077,7 @@
|
|
|
79706
80077
|
}
|
|
79707
80078
|
},
|
|
79708
80079
|
"required": [
|
|
80080
|
+
"_debug_bounds",
|
|
79709
80081
|
"alpha",
|
|
79710
80082
|
"anchor",
|
|
79711
80083
|
"anchor3d",
|
|
@@ -79774,6 +80146,16 @@
|
|
|
79774
80146
|
},
|
|
79775
80147
|
"Required<ILineGraphicAttribute>": {
|
|
79776
80148
|
"properties": {
|
|
80149
|
+
"_debug_bounds": {
|
|
80150
|
+
"anyOf": [
|
|
80151
|
+
{
|
|
80152
|
+
"typeof": "function"
|
|
80153
|
+
},
|
|
80154
|
+
{
|
|
80155
|
+
"type": "boolean"
|
|
80156
|
+
}
|
|
80157
|
+
]
|
|
80158
|
+
},
|
|
79777
80159
|
"alpha": {
|
|
79778
80160
|
"type": "number"
|
|
79779
80161
|
},
|
|
@@ -80111,6 +80493,7 @@
|
|
|
80111
80493
|
}
|
|
80112
80494
|
},
|
|
80113
80495
|
"required": [
|
|
80496
|
+
"_debug_bounds",
|
|
80114
80497
|
"alpha",
|
|
80115
80498
|
"anchor",
|
|
80116
80499
|
"anchor3d",
|
|
@@ -80183,6 +80566,16 @@
|
|
|
80183
80566
|
},
|
|
80184
80567
|
"Required<IPathGraphicAttribute>": {
|
|
80185
80568
|
"properties": {
|
|
80569
|
+
"_debug_bounds": {
|
|
80570
|
+
"anyOf": [
|
|
80571
|
+
{
|
|
80572
|
+
"typeof": "function"
|
|
80573
|
+
},
|
|
80574
|
+
{
|
|
80575
|
+
"type": "boolean"
|
|
80576
|
+
}
|
|
80577
|
+
]
|
|
80578
|
+
},
|
|
80186
80579
|
"alpha": {
|
|
80187
80580
|
"type": "number"
|
|
80188
80581
|
},
|
|
@@ -80492,6 +80885,7 @@
|
|
|
80492
80885
|
}
|
|
80493
80886
|
},
|
|
80494
80887
|
"required": [
|
|
80888
|
+
"_debug_bounds",
|
|
80495
80889
|
"alpha",
|
|
80496
80890
|
"anchor",
|
|
80497
80891
|
"anchor3d",
|
|
@@ -80556,6 +80950,16 @@
|
|
|
80556
80950
|
},
|
|
80557
80951
|
"Required<IPolygonGraphicAttribute>": {
|
|
80558
80952
|
"properties": {
|
|
80953
|
+
"_debug_bounds": {
|
|
80954
|
+
"anyOf": [
|
|
80955
|
+
{
|
|
80956
|
+
"typeof": "function"
|
|
80957
|
+
},
|
|
80958
|
+
{
|
|
80959
|
+
"type": "boolean"
|
|
80960
|
+
}
|
|
80961
|
+
]
|
|
80962
|
+
},
|
|
80559
80963
|
"alpha": {
|
|
80560
80964
|
"type": "number"
|
|
80561
80965
|
},
|
|
@@ -80874,6 +81278,7 @@
|
|
|
80874
81278
|
}
|
|
80875
81279
|
},
|
|
80876
81280
|
"required": [
|
|
81281
|
+
"_debug_bounds",
|
|
80877
81282
|
"alpha",
|
|
80878
81283
|
"anchor",
|
|
80879
81284
|
"anchor3d",
|
|
@@ -80939,6 +81344,16 @@
|
|
|
80939
81344
|
},
|
|
80940
81345
|
"Required<IRect3dGraphicAttribute>": {
|
|
80941
81346
|
"properties": {
|
|
81347
|
+
"_debug_bounds": {
|
|
81348
|
+
"anyOf": [
|
|
81349
|
+
{
|
|
81350
|
+
"typeof": "function"
|
|
81351
|
+
},
|
|
81352
|
+
{
|
|
81353
|
+
"type": "boolean"
|
|
81354
|
+
}
|
|
81355
|
+
]
|
|
81356
|
+
},
|
|
80942
81357
|
"alpha": {
|
|
80943
81358
|
"type": "number"
|
|
80944
81359
|
},
|
|
@@ -81257,6 +81672,7 @@
|
|
|
81257
81672
|
}
|
|
81258
81673
|
},
|
|
81259
81674
|
"required": [
|
|
81675
|
+
"_debug_bounds",
|
|
81260
81676
|
"alpha",
|
|
81261
81677
|
"anchor",
|
|
81262
81678
|
"anchor3d",
|
|
@@ -81323,6 +81739,16 @@
|
|
|
81323
81739
|
},
|
|
81324
81740
|
"Required<IRectGraphicAttribute>": {
|
|
81325
81741
|
"properties": {
|
|
81742
|
+
"_debug_bounds": {
|
|
81743
|
+
"anyOf": [
|
|
81744
|
+
{
|
|
81745
|
+
"typeof": "function"
|
|
81746
|
+
},
|
|
81747
|
+
{
|
|
81748
|
+
"type": "boolean"
|
|
81749
|
+
}
|
|
81750
|
+
]
|
|
81751
|
+
},
|
|
81326
81752
|
"alpha": {
|
|
81327
81753
|
"type": "number"
|
|
81328
81754
|
},
|
|
@@ -81638,6 +82064,7 @@
|
|
|
81638
82064
|
}
|
|
81639
82065
|
},
|
|
81640
82066
|
"required": [
|
|
82067
|
+
"_debug_bounds",
|
|
81641
82068
|
"alpha",
|
|
81642
82069
|
"anchor",
|
|
81643
82070
|
"anchor3d",
|
|
@@ -81703,6 +82130,16 @@
|
|
|
81703
82130
|
},
|
|
81704
82131
|
"Required<IRichTextGraphicAttribute>": {
|
|
81705
82132
|
"properties": {
|
|
82133
|
+
"_debug_bounds": {
|
|
82134
|
+
"anyOf": [
|
|
82135
|
+
{
|
|
82136
|
+
"typeof": "function"
|
|
82137
|
+
},
|
|
82138
|
+
{
|
|
82139
|
+
"type": "boolean"
|
|
82140
|
+
}
|
|
82141
|
+
]
|
|
82142
|
+
},
|
|
81706
82143
|
"alpha": {
|
|
81707
82144
|
"type": "number"
|
|
81708
82145
|
},
|
|
@@ -82041,6 +82478,7 @@
|
|
|
82041
82478
|
}
|
|
82042
82479
|
},
|
|
82043
82480
|
"required": [
|
|
82481
|
+
"_debug_bounds",
|
|
82044
82482
|
"alpha",
|
|
82045
82483
|
"anchor",
|
|
82046
82484
|
"anchor3d",
|
|
@@ -82115,6 +82553,16 @@
|
|
|
82115
82553
|
},
|
|
82116
82554
|
"Required<IRichTextIconGraphicAttribute>": {
|
|
82117
82555
|
"properties": {
|
|
82556
|
+
"_debug_bounds": {
|
|
82557
|
+
"anyOf": [
|
|
82558
|
+
{
|
|
82559
|
+
"typeof": "function"
|
|
82560
|
+
},
|
|
82561
|
+
{
|
|
82562
|
+
"type": "boolean"
|
|
82563
|
+
}
|
|
82564
|
+
]
|
|
82565
|
+
},
|
|
82118
82566
|
"alpha": {
|
|
82119
82567
|
"type": "number"
|
|
82120
82568
|
},
|
|
@@ -82535,6 +82983,7 @@
|
|
|
82535
82983
|
}
|
|
82536
82984
|
},
|
|
82537
82985
|
"required": [
|
|
82986
|
+
"_debug_bounds",
|
|
82538
82987
|
"alpha",
|
|
82539
82988
|
"anchor",
|
|
82540
82989
|
"anchor3d",
|
|
@@ -82616,6 +83065,16 @@
|
|
|
82616
83065
|
},
|
|
82617
83066
|
"Required<ISymbolGraphicAttribute>": {
|
|
82618
83067
|
"properties": {
|
|
83068
|
+
"_debug_bounds": {
|
|
83069
|
+
"anyOf": [
|
|
83070
|
+
{
|
|
83071
|
+
"typeof": "function"
|
|
83072
|
+
},
|
|
83073
|
+
{
|
|
83074
|
+
"type": "boolean"
|
|
83075
|
+
}
|
|
83076
|
+
]
|
|
83077
|
+
},
|
|
82619
83078
|
"alpha": {
|
|
82620
83079
|
"type": "number"
|
|
82621
83080
|
},
|
|
@@ -82935,6 +83394,7 @@
|
|
|
82935
83394
|
}
|
|
82936
83395
|
},
|
|
82937
83396
|
"required": [
|
|
83397
|
+
"_debug_bounds",
|
|
82938
83398
|
"alpha",
|
|
82939
83399
|
"anchor",
|
|
82940
83400
|
"anchor3d",
|
|
@@ -82999,6 +83459,16 @@
|
|
|
82999
83459
|
},
|
|
83000
83460
|
"Required<ITextGraphicAttribute>": {
|
|
83001
83461
|
"properties": {
|
|
83462
|
+
"_debug_bounds": {
|
|
83463
|
+
"anyOf": [
|
|
83464
|
+
{
|
|
83465
|
+
"typeof": "function"
|
|
83466
|
+
},
|
|
83467
|
+
{
|
|
83468
|
+
"type": "boolean"
|
|
83469
|
+
}
|
|
83470
|
+
]
|
|
83471
|
+
},
|
|
83002
83472
|
"alpha": {
|
|
83003
83473
|
"type": "number"
|
|
83004
83474
|
},
|
|
@@ -83355,6 +83825,9 @@
|
|
|
83355
83825
|
"underline": {
|
|
83356
83826
|
"type": "number"
|
|
83357
83827
|
},
|
|
83828
|
+
"verticalMode": {
|
|
83829
|
+
"type": "number"
|
|
83830
|
+
},
|
|
83358
83831
|
"visible": {
|
|
83359
83832
|
"type": "boolean"
|
|
83360
83833
|
},
|
|
@@ -83379,6 +83852,7 @@
|
|
|
83379
83852
|
}
|
|
83380
83853
|
},
|
|
83381
83854
|
"required": [
|
|
83855
|
+
"_debug_bounds",
|
|
83382
83856
|
"alpha",
|
|
83383
83857
|
"anchor",
|
|
83384
83858
|
"anchor3d",
|
|
@@ -83447,6 +83921,7 @@
|
|
|
83447
83921
|
"texturePadding",
|
|
83448
83922
|
"textureSize",
|
|
83449
83923
|
"underline",
|
|
83924
|
+
"verticalMode",
|
|
83450
83925
|
"visible",
|
|
83451
83926
|
"wordBreak",
|
|
83452
83927
|
"x",
|
|
@@ -87081,11 +87556,33 @@
|
|
|
87081
87556
|
},
|
|
87082
87557
|
{
|
|
87083
87558
|
"enum": [
|
|
87559
|
+
"bl",
|
|
87084
87560
|
"bottom",
|
|
87561
|
+
"br",
|
|
87085
87562
|
"inside",
|
|
87563
|
+
"lb",
|
|
87086
87564
|
"left",
|
|
87565
|
+
"lt",
|
|
87566
|
+
"rb",
|
|
87087
87567
|
"right",
|
|
87088
|
-
"
|
|
87568
|
+
"rt",
|
|
87569
|
+
"tl",
|
|
87570
|
+
"top",
|
|
87571
|
+
"tr"
|
|
87572
|
+
],
|
|
87573
|
+
"type": "string"
|
|
87574
|
+
}
|
|
87575
|
+
]
|
|
87576
|
+
},
|
|
87577
|
+
"TooltipPatternProperty<TooltipPositionMode>": {
|
|
87578
|
+
"anyOf": [
|
|
87579
|
+
{
|
|
87580
|
+
"typeof": "function"
|
|
87581
|
+
},
|
|
87582
|
+
{
|
|
87583
|
+
"enum": [
|
|
87584
|
+
"mark",
|
|
87585
|
+
"pointer"
|
|
87089
87586
|
],
|
|
87090
87587
|
"type": "string"
|
|
87091
87588
|
}
|