@fmsim/board 1.0.3 → 1.0.5
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/custom-elements.json +428 -416
- package/dist/src/layers/movement-layer.d.ts +27 -3
- package/dist/src/layers/movement-layer.js +213 -36
- package/dist/src/layers/movement-layer.js.map +1 -1
- package/dist/src/modeller/property-sidebar/property-shared-style.js +3 -0
- package/dist/src/modeller/property-sidebar/property-shared-style.js.map +1 -1
- package/dist/src/modeller/property-sidebar/styles/styles.js +8 -3
- package/dist/src/modeller/property-sidebar/styles/styles.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/icons/icon-properties-label.png +0 -0
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -1868,22 +1868,27 @@
|
|
|
1868
1868
|
}
|
|
1869
1869
|
},
|
|
1870
1870
|
{
|
|
1871
|
-
"name": "
|
|
1871
|
+
"name": "p1",
|
|
1872
1872
|
"type": {
|
|
1873
1873
|
"text": "POINT"
|
|
1874
1874
|
}
|
|
1875
1875
|
},
|
|
1876
1876
|
{
|
|
1877
|
-
"name": "
|
|
1877
|
+
"name": "p2",
|
|
1878
1878
|
"type": {
|
|
1879
1879
|
"text": "POINT"
|
|
1880
1880
|
}
|
|
1881
1881
|
},
|
|
1882
1882
|
{
|
|
1883
|
-
"name": "
|
|
1884
|
-
"default": "10",
|
|
1883
|
+
"name": "pathType",
|
|
1885
1884
|
"type": {
|
|
1886
|
-
"text": "
|
|
1885
|
+
"text": "PathType"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"name": "pathStatus",
|
|
1890
|
+
"type": {
|
|
1891
|
+
"text": "PathStatus"
|
|
1887
1892
|
}
|
|
1888
1893
|
},
|
|
1889
1894
|
{
|
|
@@ -1891,6 +1896,13 @@
|
|
|
1891
1896
|
"type": {
|
|
1892
1897
|
"text": "string"
|
|
1893
1898
|
}
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"name": "styles",
|
|
1902
|
+
"optional": true,
|
|
1903
|
+
"type": {
|
|
1904
|
+
"text": "PathStyles"
|
|
1905
|
+
}
|
|
1894
1906
|
}
|
|
1895
1907
|
]
|
|
1896
1908
|
},
|
|
@@ -3633,7 +3645,7 @@
|
|
|
3633
3645
|
{
|
|
3634
3646
|
"kind": "variable",
|
|
3635
3647
|
"name": "PropertySharedStyle",
|
|
3636
|
-
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } `"
|
|
3648
|
+
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } .icon-only-label.letterSpacing { background-position: 100% -1594px; } `"
|
|
3637
3649
|
}
|
|
3638
3650
|
],
|
|
3639
3651
|
"exports": [
|
|
@@ -5181,6 +5193,246 @@
|
|
|
5181
5193
|
}
|
|
5182
5194
|
]
|
|
5183
5195
|
},
|
|
5196
|
+
{
|
|
5197
|
+
"kind": "javascript-module",
|
|
5198
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
5199
|
+
"declarations": [
|
|
5200
|
+
{
|
|
5201
|
+
"kind": "class",
|
|
5202
|
+
"description": "",
|
|
5203
|
+
"name": "SceneInspector",
|
|
5204
|
+
"members": [
|
|
5205
|
+
{
|
|
5206
|
+
"kind": "field",
|
|
5207
|
+
"name": "scene",
|
|
5208
|
+
"type": {
|
|
5209
|
+
"text": "Scene | undefined"
|
|
5210
|
+
},
|
|
5211
|
+
"attribute": "scene"
|
|
5212
|
+
},
|
|
5213
|
+
{
|
|
5214
|
+
"kind": "field",
|
|
5215
|
+
"name": "searchText",
|
|
5216
|
+
"type": {
|
|
5217
|
+
"text": "string"
|
|
5218
|
+
},
|
|
5219
|
+
"privacy": "private",
|
|
5220
|
+
"default": "''"
|
|
5221
|
+
},
|
|
5222
|
+
{
|
|
5223
|
+
"kind": "field",
|
|
5224
|
+
"name": "_extendedMap",
|
|
5225
|
+
"type": {
|
|
5226
|
+
"text": "any"
|
|
5227
|
+
},
|
|
5228
|
+
"privacy": "private"
|
|
5229
|
+
},
|
|
5230
|
+
{
|
|
5231
|
+
"kind": "field",
|
|
5232
|
+
"name": "show",
|
|
5233
|
+
"type": {
|
|
5234
|
+
"text": "boolean"
|
|
5235
|
+
},
|
|
5236
|
+
"privacy": "private",
|
|
5237
|
+
"default": "false"
|
|
5238
|
+
},
|
|
5239
|
+
{
|
|
5240
|
+
"kind": "field",
|
|
5241
|
+
"name": "count",
|
|
5242
|
+
"type": {
|
|
5243
|
+
"text": "number"
|
|
5244
|
+
},
|
|
5245
|
+
"privacy": "private",
|
|
5246
|
+
"default": "-1"
|
|
5247
|
+
},
|
|
5248
|
+
{
|
|
5249
|
+
"kind": "method",
|
|
5250
|
+
"name": "disconnectScene",
|
|
5251
|
+
"parameters": [
|
|
5252
|
+
{
|
|
5253
|
+
"name": "scene",
|
|
5254
|
+
"optional": true,
|
|
5255
|
+
"type": {
|
|
5256
|
+
"text": "Scene"
|
|
5257
|
+
}
|
|
5258
|
+
}
|
|
5259
|
+
]
|
|
5260
|
+
},
|
|
5261
|
+
{
|
|
5262
|
+
"kind": "method",
|
|
5263
|
+
"name": "refresh"
|
|
5264
|
+
},
|
|
5265
|
+
{
|
|
5266
|
+
"kind": "method",
|
|
5267
|
+
"name": "_onclick",
|
|
5268
|
+
"parameters": [
|
|
5269
|
+
{
|
|
5270
|
+
"name": "e",
|
|
5271
|
+
"type": {
|
|
5272
|
+
"text": "MouseEvent"
|
|
5273
|
+
}
|
|
5274
|
+
}
|
|
5275
|
+
]
|
|
5276
|
+
},
|
|
5277
|
+
{
|
|
5278
|
+
"kind": "method",
|
|
5279
|
+
"name": "_ondblclick",
|
|
5280
|
+
"parameters": [
|
|
5281
|
+
{
|
|
5282
|
+
"name": "e",
|
|
5283
|
+
"type": {
|
|
5284
|
+
"text": "MouseEvent"
|
|
5285
|
+
}
|
|
5286
|
+
}
|
|
5287
|
+
]
|
|
5288
|
+
},
|
|
5289
|
+
{
|
|
5290
|
+
"kind": "field",
|
|
5291
|
+
"name": "extendedMap",
|
|
5292
|
+
"readonly": true
|
|
5293
|
+
},
|
|
5294
|
+
{
|
|
5295
|
+
"kind": "method",
|
|
5296
|
+
"name": "getNodeHandleClass",
|
|
5297
|
+
"parameters": [
|
|
5298
|
+
{
|
|
5299
|
+
"name": "component",
|
|
5300
|
+
"type": {
|
|
5301
|
+
"text": "Component"
|
|
5302
|
+
}
|
|
5303
|
+
}
|
|
5304
|
+
]
|
|
5305
|
+
},
|
|
5306
|
+
{
|
|
5307
|
+
"kind": "method",
|
|
5308
|
+
"name": "isExtended",
|
|
5309
|
+
"parameters": [
|
|
5310
|
+
{
|
|
5311
|
+
"name": "component",
|
|
5312
|
+
"type": {
|
|
5313
|
+
"text": "Component"
|
|
5314
|
+
}
|
|
5315
|
+
}
|
|
5316
|
+
]
|
|
5317
|
+
},
|
|
5318
|
+
{
|
|
5319
|
+
"kind": "method",
|
|
5320
|
+
"name": "toggleExtended",
|
|
5321
|
+
"parameters": [
|
|
5322
|
+
{
|
|
5323
|
+
"name": "component",
|
|
5324
|
+
"type": {
|
|
5325
|
+
"text": "Component"
|
|
5326
|
+
}
|
|
5327
|
+
}
|
|
5328
|
+
]
|
|
5329
|
+
},
|
|
5330
|
+
{
|
|
5331
|
+
"kind": "method",
|
|
5332
|
+
"name": "toggleHidden",
|
|
5333
|
+
"parameters": [
|
|
5334
|
+
{
|
|
5335
|
+
"name": "component",
|
|
5336
|
+
"type": {
|
|
5337
|
+
"text": "Component"
|
|
5338
|
+
}
|
|
5339
|
+
}
|
|
5340
|
+
]
|
|
5341
|
+
},
|
|
5342
|
+
{
|
|
5343
|
+
"kind": "method",
|
|
5344
|
+
"name": "selectComponent",
|
|
5345
|
+
"parameters": [
|
|
5346
|
+
{
|
|
5347
|
+
"name": "component",
|
|
5348
|
+
"type": {
|
|
5349
|
+
"text": "Component"
|
|
5350
|
+
}
|
|
5351
|
+
},
|
|
5352
|
+
{
|
|
5353
|
+
"name": "append",
|
|
5354
|
+
"default": "false",
|
|
5355
|
+
"type": {
|
|
5356
|
+
"text": "boolean"
|
|
5357
|
+
}
|
|
5358
|
+
}
|
|
5359
|
+
]
|
|
5360
|
+
},
|
|
5361
|
+
{
|
|
5362
|
+
"kind": "method",
|
|
5363
|
+
"name": "shouldBeShown",
|
|
5364
|
+
"return": {
|
|
5365
|
+
"type": {
|
|
5366
|
+
"text": "boolean"
|
|
5367
|
+
}
|
|
5368
|
+
},
|
|
5369
|
+
"parameters": [
|
|
5370
|
+
{
|
|
5371
|
+
"name": "component",
|
|
5372
|
+
"type": {
|
|
5373
|
+
"text": "Component"
|
|
5374
|
+
}
|
|
5375
|
+
},
|
|
5376
|
+
{
|
|
5377
|
+
"name": "counting",
|
|
5378
|
+
"default": "false",
|
|
5379
|
+
"type": {
|
|
5380
|
+
"text": "boolean"
|
|
5381
|
+
}
|
|
5382
|
+
}
|
|
5383
|
+
]
|
|
5384
|
+
},
|
|
5385
|
+
{
|
|
5386
|
+
"kind": "method",
|
|
5387
|
+
"name": "renderComponent",
|
|
5388
|
+
"return": {
|
|
5389
|
+
"type": {
|
|
5390
|
+
"text": "TemplateResult"
|
|
5391
|
+
}
|
|
5392
|
+
},
|
|
5393
|
+
"parameters": [
|
|
5394
|
+
{
|
|
5395
|
+
"name": "component",
|
|
5396
|
+
"type": {
|
|
5397
|
+
"text": "Component"
|
|
5398
|
+
}
|
|
5399
|
+
},
|
|
5400
|
+
{
|
|
5401
|
+
"name": "depth",
|
|
5402
|
+
"type": {
|
|
5403
|
+
"text": "number"
|
|
5404
|
+
}
|
|
5405
|
+
}
|
|
5406
|
+
]
|
|
5407
|
+
}
|
|
5408
|
+
],
|
|
5409
|
+
"attributes": [
|
|
5410
|
+
{
|
|
5411
|
+
"name": "scene",
|
|
5412
|
+
"type": {
|
|
5413
|
+
"text": "Scene | undefined"
|
|
5414
|
+
},
|
|
5415
|
+
"fieldName": "scene"
|
|
5416
|
+
}
|
|
5417
|
+
],
|
|
5418
|
+
"superclass": {
|
|
5419
|
+
"name": "LitElement",
|
|
5420
|
+
"package": "lit"
|
|
5421
|
+
},
|
|
5422
|
+
"customElement": true
|
|
5423
|
+
}
|
|
5424
|
+
],
|
|
5425
|
+
"exports": [
|
|
5426
|
+
{
|
|
5427
|
+
"kind": "js",
|
|
5428
|
+
"name": "SceneInspector",
|
|
5429
|
+
"declaration": {
|
|
5430
|
+
"name": "SceneInspector",
|
|
5431
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
5432
|
+
}
|
|
5433
|
+
}
|
|
5434
|
+
]
|
|
5435
|
+
},
|
|
5184
5436
|
{
|
|
5185
5437
|
"kind": "javascript-module",
|
|
5186
5438
|
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|
|
@@ -5752,291 +6004,265 @@
|
|
|
5752
6004
|
},
|
|
5753
6005
|
{
|
|
5754
6006
|
"kind": "javascript-module",
|
|
5755
|
-
"path": "src/modeller/property-sidebar/
|
|
6007
|
+
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
5756
6008
|
"declarations": [
|
|
5757
6009
|
{
|
|
5758
|
-
"kind": "
|
|
5759
|
-
"
|
|
5760
|
-
"
|
|
6010
|
+
"kind": "variable",
|
|
6011
|
+
"name": "BoxPaddingEditorStyles",
|
|
6012
|
+
"default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
|
|
6013
|
+
}
|
|
6014
|
+
],
|
|
6015
|
+
"exports": [
|
|
6016
|
+
{
|
|
6017
|
+
"kind": "js",
|
|
6018
|
+
"name": "BoxPaddingEditorStyles",
|
|
6019
|
+
"declaration": {
|
|
6020
|
+
"name": "BoxPaddingEditorStyles",
|
|
6021
|
+
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
6024
|
+
]
|
|
6025
|
+
},
|
|
6026
|
+
{
|
|
6027
|
+
"kind": "javascript-module",
|
|
6028
|
+
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
6029
|
+
"declarations": [
|
|
6030
|
+
{
|
|
6031
|
+
"kind": "class",
|
|
6032
|
+
"description": "",
|
|
6033
|
+
"name": "PropertyShapes",
|
|
5761
6034
|
"members": [
|
|
5762
6035
|
{
|
|
5763
6036
|
"kind": "field",
|
|
5764
|
-
"name": "
|
|
5765
|
-
"type": {
|
|
5766
|
-
"text": "Scene | undefined"
|
|
5767
|
-
},
|
|
5768
|
-
"attribute": "scene"
|
|
5769
|
-
},
|
|
5770
|
-
{
|
|
5771
|
-
"kind": "field",
|
|
5772
|
-
"name": "searchText",
|
|
5773
|
-
"type": {
|
|
5774
|
-
"text": "string"
|
|
5775
|
-
},
|
|
5776
|
-
"privacy": "private",
|
|
5777
|
-
"default": "''"
|
|
5778
|
-
},
|
|
5779
|
-
{
|
|
5780
|
-
"kind": "field",
|
|
5781
|
-
"name": "_extendedMap",
|
|
6037
|
+
"name": "value",
|
|
5782
6038
|
"type": {
|
|
5783
|
-
"text": "
|
|
6039
|
+
"text": "Properties | undefined"
|
|
5784
6040
|
},
|
|
5785
|
-
"
|
|
6041
|
+
"attribute": "value"
|
|
5786
6042
|
},
|
|
5787
6043
|
{
|
|
5788
6044
|
"kind": "field",
|
|
5789
|
-
"name": "
|
|
6045
|
+
"name": "bounds",
|
|
5790
6046
|
"type": {
|
|
5791
|
-
"text": "
|
|
6047
|
+
"text": "BOUNDS | null"
|
|
5792
6048
|
},
|
|
5793
|
-
"
|
|
5794
|
-
"
|
|
6049
|
+
"default": "null",
|
|
6050
|
+
"attribute": "bounds"
|
|
5795
6051
|
},
|
|
5796
6052
|
{
|
|
5797
6053
|
"kind": "field",
|
|
5798
|
-
"name": "
|
|
6054
|
+
"name": "selected",
|
|
5799
6055
|
"type": {
|
|
5800
|
-
"text": "
|
|
6056
|
+
"text": "Component[]"
|
|
5801
6057
|
},
|
|
5802
|
-
"
|
|
5803
|
-
"
|
|
6058
|
+
"default": "[]",
|
|
6059
|
+
"attribute": "selected"
|
|
5804
6060
|
},
|
|
5805
6061
|
{
|
|
5806
6062
|
"kind": "method",
|
|
5807
|
-
"name": "
|
|
6063
|
+
"name": "_onValueChange",
|
|
5808
6064
|
"parameters": [
|
|
5809
6065
|
{
|
|
5810
|
-
"name": "
|
|
5811
|
-
"optional": true,
|
|
6066
|
+
"name": "e",
|
|
5812
6067
|
"type": {
|
|
5813
|
-
"text": "
|
|
6068
|
+
"text": "Event"
|
|
5814
6069
|
}
|
|
5815
6070
|
}
|
|
5816
|
-
]
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
6071
|
+
],
|
|
6072
|
+
"inheritedFrom": {
|
|
6073
|
+
"name": "AbstractProperty",
|
|
6074
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6075
|
+
}
|
|
5821
6076
|
},
|
|
5822
6077
|
{
|
|
5823
6078
|
"kind": "method",
|
|
5824
|
-
"name": "
|
|
6079
|
+
"name": "_hasTextProperty",
|
|
5825
6080
|
"parameters": [
|
|
5826
6081
|
{
|
|
5827
|
-
"name": "
|
|
6082
|
+
"name": "selected",
|
|
5828
6083
|
"type": {
|
|
5829
|
-
"text": "
|
|
6084
|
+
"text": "Component[]"
|
|
5830
6085
|
}
|
|
5831
6086
|
}
|
|
5832
6087
|
]
|
|
5833
6088
|
},
|
|
5834
6089
|
{
|
|
5835
6090
|
"kind": "method",
|
|
5836
|
-
"name": "
|
|
6091
|
+
"name": "_hasProperties",
|
|
5837
6092
|
"parameters": [
|
|
5838
6093
|
{
|
|
5839
|
-
"name": "
|
|
6094
|
+
"name": "selected",
|
|
5840
6095
|
"type": {
|
|
5841
|
-
"text": "
|
|
6096
|
+
"text": "Component[]"
|
|
5842
6097
|
}
|
|
5843
6098
|
}
|
|
5844
6099
|
]
|
|
5845
6100
|
},
|
|
5846
|
-
{
|
|
5847
|
-
"kind": "field",
|
|
5848
|
-
"name": "extendedMap",
|
|
5849
|
-
"readonly": true
|
|
5850
|
-
},
|
|
5851
6101
|
{
|
|
5852
6102
|
"kind": "method",
|
|
5853
|
-
"name": "
|
|
6103
|
+
"name": "_isIdentifiable",
|
|
5854
6104
|
"parameters": [
|
|
5855
6105
|
{
|
|
5856
|
-
"name": "
|
|
6106
|
+
"name": "selected",
|
|
5857
6107
|
"type": {
|
|
5858
|
-
"text": "Component"
|
|
6108
|
+
"text": "Component[]"
|
|
5859
6109
|
}
|
|
5860
6110
|
}
|
|
5861
6111
|
]
|
|
5862
6112
|
},
|
|
5863
6113
|
{
|
|
5864
6114
|
"kind": "method",
|
|
5865
|
-
"name": "
|
|
6115
|
+
"name": "_isClassIdentifiable",
|
|
5866
6116
|
"parameters": [
|
|
5867
6117
|
{
|
|
5868
|
-
"name": "
|
|
6118
|
+
"name": "selected",
|
|
5869
6119
|
"type": {
|
|
5870
|
-
"text": "Component"
|
|
6120
|
+
"text": "Component[]"
|
|
5871
6121
|
}
|
|
5872
6122
|
}
|
|
5873
6123
|
]
|
|
5874
6124
|
},
|
|
5875
6125
|
{
|
|
5876
6126
|
"kind": "method",
|
|
5877
|
-
"name": "
|
|
6127
|
+
"name": "_isLine",
|
|
5878
6128
|
"parameters": [
|
|
5879
6129
|
{
|
|
5880
|
-
"name": "
|
|
6130
|
+
"name": "selected",
|
|
5881
6131
|
"type": {
|
|
5882
|
-
"text": "Component"
|
|
6132
|
+
"text": "Component[]"
|
|
5883
6133
|
}
|
|
5884
6134
|
}
|
|
5885
6135
|
]
|
|
5886
6136
|
},
|
|
5887
6137
|
{
|
|
5888
6138
|
"kind": "method",
|
|
5889
|
-
"name": "
|
|
6139
|
+
"name": "_is3dish",
|
|
5890
6140
|
"parameters": [
|
|
5891
6141
|
{
|
|
5892
|
-
"name": "
|
|
6142
|
+
"name": "selected",
|
|
5893
6143
|
"type": {
|
|
5894
|
-
"text": "Component"
|
|
6144
|
+
"text": "Component[]"
|
|
5895
6145
|
}
|
|
5896
6146
|
}
|
|
5897
6147
|
]
|
|
5898
6148
|
},
|
|
5899
6149
|
{
|
|
5900
6150
|
"kind": "method",
|
|
5901
|
-
"name": "
|
|
6151
|
+
"name": "_getValueFromEventTarget",
|
|
5902
6152
|
"parameters": [
|
|
5903
6153
|
{
|
|
5904
|
-
"name": "
|
|
5905
|
-
"type": {
|
|
5906
|
-
"text": "Component"
|
|
5907
|
-
}
|
|
5908
|
-
},
|
|
5909
|
-
{
|
|
5910
|
-
"name": "append",
|
|
5911
|
-
"default": "false",
|
|
6154
|
+
"name": "element",
|
|
5912
6155
|
"type": {
|
|
5913
|
-
"text": "
|
|
6156
|
+
"text": "HTMLElement"
|
|
5914
6157
|
}
|
|
5915
6158
|
}
|
|
5916
|
-
]
|
|
6159
|
+
],
|
|
6160
|
+
"inheritedFrom": {
|
|
6161
|
+
"name": "AbstractProperty",
|
|
6162
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6163
|
+
}
|
|
5917
6164
|
},
|
|
5918
6165
|
{
|
|
5919
6166
|
"kind": "method",
|
|
5920
|
-
"name": "
|
|
5921
|
-
"return": {
|
|
5922
|
-
"type": {
|
|
5923
|
-
"text": "boolean"
|
|
5924
|
-
}
|
|
5925
|
-
},
|
|
6167
|
+
"name": "_onAfterValueChange",
|
|
5926
6168
|
"parameters": [
|
|
5927
6169
|
{
|
|
5928
|
-
"name": "
|
|
6170
|
+
"name": "key",
|
|
5929
6171
|
"type": {
|
|
5930
|
-
"text": "
|
|
6172
|
+
"text": "string"
|
|
5931
6173
|
}
|
|
5932
6174
|
},
|
|
5933
6175
|
{
|
|
5934
|
-
"name": "
|
|
5935
|
-
"default": "false",
|
|
6176
|
+
"name": "value",
|
|
5936
6177
|
"type": {
|
|
5937
|
-
"text": "
|
|
6178
|
+
"text": "any"
|
|
5938
6179
|
}
|
|
5939
6180
|
}
|
|
5940
|
-
]
|
|
6181
|
+
],
|
|
6182
|
+
"inheritedFrom": {
|
|
6183
|
+
"name": "AbstractProperty",
|
|
6184
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6185
|
+
}
|
|
6186
|
+
}
|
|
6187
|
+
],
|
|
6188
|
+
"events": [
|
|
6189
|
+
{
|
|
6190
|
+
"name": "bounds-change",
|
|
6191
|
+
"type": {
|
|
6192
|
+
"text": "CustomEvent"
|
|
6193
|
+
}
|
|
5941
6194
|
},
|
|
5942
6195
|
{
|
|
5943
|
-
"
|
|
5944
|
-
"
|
|
5945
|
-
|
|
5946
|
-
"type": {
|
|
5947
|
-
"text": "TemplateResult"
|
|
5948
|
-
}
|
|
6196
|
+
"name": "property-change",
|
|
6197
|
+
"type": {
|
|
6198
|
+
"text": "CustomEvent"
|
|
5949
6199
|
},
|
|
5950
|
-
"
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
"text": "Component"
|
|
5955
|
-
}
|
|
5956
|
-
},
|
|
5957
|
-
{
|
|
5958
|
-
"name": "depth",
|
|
5959
|
-
"type": {
|
|
5960
|
-
"text": "number"
|
|
5961
|
-
}
|
|
5962
|
-
}
|
|
5963
|
-
]
|
|
6200
|
+
"inheritedFrom": {
|
|
6201
|
+
"name": "AbstractProperty",
|
|
6202
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6203
|
+
}
|
|
5964
6204
|
}
|
|
5965
6205
|
],
|
|
5966
6206
|
"attributes": [
|
|
5967
6207
|
{
|
|
5968
|
-
"name": "
|
|
6208
|
+
"name": "value",
|
|
5969
6209
|
"type": {
|
|
5970
|
-
"text": "
|
|
6210
|
+
"text": "Properties | undefined"
|
|
5971
6211
|
},
|
|
5972
|
-
"fieldName": "
|
|
6212
|
+
"fieldName": "value"
|
|
6213
|
+
},
|
|
6214
|
+
{
|
|
6215
|
+
"name": "bounds",
|
|
6216
|
+
"type": {
|
|
6217
|
+
"text": "BOUNDS | null"
|
|
6218
|
+
},
|
|
6219
|
+
"default": "null",
|
|
6220
|
+
"fieldName": "bounds"
|
|
6221
|
+
},
|
|
6222
|
+
{
|
|
6223
|
+
"name": "selected",
|
|
6224
|
+
"type": {
|
|
6225
|
+
"text": "Component[]"
|
|
6226
|
+
},
|
|
6227
|
+
"default": "[]",
|
|
6228
|
+
"fieldName": "selected"
|
|
5973
6229
|
}
|
|
5974
6230
|
],
|
|
5975
6231
|
"superclass": {
|
|
5976
|
-
"name": "
|
|
5977
|
-
"
|
|
5978
|
-
},
|
|
5979
|
-
"customElement": true
|
|
5980
|
-
}
|
|
5981
|
-
],
|
|
5982
|
-
"exports": [
|
|
5983
|
-
{
|
|
5984
|
-
"kind": "js",
|
|
5985
|
-
"name": "SceneInspector",
|
|
5986
|
-
"declaration": {
|
|
5987
|
-
"name": "SceneInspector",
|
|
5988
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6232
|
+
"name": "AbstractProperty",
|
|
6233
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
5989
6234
|
}
|
|
5990
6235
|
}
|
|
5991
|
-
]
|
|
5992
|
-
},
|
|
5993
|
-
{
|
|
5994
|
-
"kind": "javascript-module",
|
|
5995
|
-
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
5996
|
-
"declarations": [
|
|
5997
|
-
{
|
|
5998
|
-
"kind": "variable",
|
|
5999
|
-
"name": "BoxPaddingEditorStyles",
|
|
6000
|
-
"default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
|
|
6001
|
-
}
|
|
6002
6236
|
],
|
|
6003
6237
|
"exports": [
|
|
6004
6238
|
{
|
|
6005
6239
|
"kind": "js",
|
|
6006
|
-
"name": "
|
|
6240
|
+
"name": "PropertyShapes",
|
|
6007
6241
|
"declaration": {
|
|
6008
|
-
"name": "
|
|
6009
|
-
"module": "src/modeller/property-sidebar/shapes/
|
|
6242
|
+
"name": "PropertyShapes",
|
|
6243
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
6010
6244
|
}
|
|
6011
6245
|
}
|
|
6012
6246
|
]
|
|
6013
6247
|
},
|
|
6014
6248
|
{
|
|
6015
6249
|
"kind": "javascript-module",
|
|
6016
|
-
"path": "src/modeller/property-sidebar/
|
|
6250
|
+
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
6017
6251
|
"declarations": [
|
|
6018
6252
|
{
|
|
6019
6253
|
"kind": "class",
|
|
6020
6254
|
"description": "",
|
|
6021
|
-
"name": "
|
|
6255
|
+
"name": "PropertyStyles",
|
|
6022
6256
|
"members": [
|
|
6023
6257
|
{
|
|
6024
6258
|
"kind": "field",
|
|
6025
6259
|
"name": "value",
|
|
6026
6260
|
"type": {
|
|
6027
|
-
"text": "
|
|
6261
|
+
"text": "any"
|
|
6028
6262
|
},
|
|
6263
|
+
"default": "{}",
|
|
6029
6264
|
"attribute": "value"
|
|
6030
6265
|
},
|
|
6031
|
-
{
|
|
6032
|
-
"kind": "field",
|
|
6033
|
-
"name": "bounds",
|
|
6034
|
-
"type": {
|
|
6035
|
-
"text": "BOUNDS | null"
|
|
6036
|
-
},
|
|
6037
|
-
"default": "null",
|
|
6038
|
-
"attribute": "bounds"
|
|
6039
|
-
},
|
|
6040
6266
|
{
|
|
6041
6267
|
"kind": "field",
|
|
6042
6268
|
"name": "selected",
|
|
@@ -6047,68 +6273,21 @@
|
|
|
6047
6273
|
"attribute": "selected"
|
|
6048
6274
|
},
|
|
6049
6275
|
{
|
|
6050
|
-
"kind": "
|
|
6051
|
-
"name": "
|
|
6052
|
-
"
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
}
|
|
6058
|
-
}
|
|
6059
|
-
],
|
|
6060
|
-
"inheritedFrom": {
|
|
6061
|
-
"name": "AbstractProperty",
|
|
6062
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6063
|
-
}
|
|
6064
|
-
},
|
|
6065
|
-
{
|
|
6066
|
-
"kind": "method",
|
|
6067
|
-
"name": "_hasTextProperty",
|
|
6068
|
-
"parameters": [
|
|
6069
|
-
{
|
|
6070
|
-
"name": "selected",
|
|
6071
|
-
"type": {
|
|
6072
|
-
"text": "Component[]"
|
|
6073
|
-
}
|
|
6074
|
-
}
|
|
6075
|
-
]
|
|
6076
|
-
},
|
|
6077
|
-
{
|
|
6078
|
-
"kind": "method",
|
|
6079
|
-
"name": "_hasProperties",
|
|
6080
|
-
"parameters": [
|
|
6081
|
-
{
|
|
6082
|
-
"name": "selected",
|
|
6083
|
-
"type": {
|
|
6084
|
-
"text": "Component[]"
|
|
6085
|
-
}
|
|
6086
|
-
}
|
|
6087
|
-
]
|
|
6088
|
-
},
|
|
6089
|
-
{
|
|
6090
|
-
"kind": "method",
|
|
6091
|
-
"name": "_isIdentifiable",
|
|
6092
|
-
"parameters": [
|
|
6093
|
-
{
|
|
6094
|
-
"name": "selected",
|
|
6095
|
-
"type": {
|
|
6096
|
-
"text": "Component[]"
|
|
6097
|
-
}
|
|
6098
|
-
}
|
|
6099
|
-
]
|
|
6276
|
+
"kind": "field",
|
|
6277
|
+
"name": "fonts",
|
|
6278
|
+
"type": {
|
|
6279
|
+
"text": "any[]"
|
|
6280
|
+
},
|
|
6281
|
+
"default": "[]",
|
|
6282
|
+
"attribute": "fonts"
|
|
6100
6283
|
},
|
|
6101
6284
|
{
|
|
6102
|
-
"kind": "
|
|
6103
|
-
"name": "
|
|
6104
|
-
"
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
"text": "Component[]"
|
|
6109
|
-
}
|
|
6110
|
-
}
|
|
6111
|
-
]
|
|
6285
|
+
"kind": "field",
|
|
6286
|
+
"name": "fontAvailable",
|
|
6287
|
+
"type": {
|
|
6288
|
+
"text": "boolean"
|
|
6289
|
+
},
|
|
6290
|
+
"default": "false"
|
|
6112
6291
|
},
|
|
6113
6292
|
{
|
|
6114
6293
|
"kind": "method",
|
|
@@ -6124,15 +6303,19 @@
|
|
|
6124
6303
|
},
|
|
6125
6304
|
{
|
|
6126
6305
|
"kind": "method",
|
|
6127
|
-
"name": "
|
|
6306
|
+
"name": "_onValueChange",
|
|
6128
6307
|
"parameters": [
|
|
6129
6308
|
{
|
|
6130
|
-
"name": "
|
|
6309
|
+
"name": "e",
|
|
6131
6310
|
"type": {
|
|
6132
|
-
"text": "
|
|
6311
|
+
"text": "Event"
|
|
6133
6312
|
}
|
|
6134
6313
|
}
|
|
6135
|
-
]
|
|
6314
|
+
],
|
|
6315
|
+
"inheritedFrom": {
|
|
6316
|
+
"name": "AbstractProperty",
|
|
6317
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6318
|
+
}
|
|
6136
6319
|
},
|
|
6137
6320
|
{
|
|
6138
6321
|
"kind": "method",
|
|
@@ -6173,62 +6356,57 @@
|
|
|
6173
6356
|
}
|
|
6174
6357
|
}
|
|
6175
6358
|
],
|
|
6176
|
-
"events": [
|
|
6177
|
-
{
|
|
6178
|
-
"name": "bounds-change",
|
|
6179
|
-
"type": {
|
|
6180
|
-
"text": "CustomEvent"
|
|
6181
|
-
}
|
|
6182
|
-
},
|
|
6183
|
-
{
|
|
6184
|
-
"name": "property-change",
|
|
6185
|
-
"type": {
|
|
6186
|
-
"text": "CustomEvent"
|
|
6187
|
-
},
|
|
6188
|
-
"inheritedFrom": {
|
|
6189
|
-
"name": "AbstractProperty",
|
|
6190
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6191
|
-
}
|
|
6192
|
-
}
|
|
6193
|
-
],
|
|
6194
6359
|
"attributes": [
|
|
6195
6360
|
{
|
|
6196
6361
|
"name": "value",
|
|
6197
6362
|
"type": {
|
|
6198
|
-
"text": "
|
|
6363
|
+
"text": "any"
|
|
6199
6364
|
},
|
|
6365
|
+
"default": "{}",
|
|
6200
6366
|
"fieldName": "value"
|
|
6201
6367
|
},
|
|
6202
6368
|
{
|
|
6203
|
-
"name": "
|
|
6369
|
+
"name": "selected",
|
|
6204
6370
|
"type": {
|
|
6205
|
-
"text": "
|
|
6371
|
+
"text": "Component[]"
|
|
6206
6372
|
},
|
|
6207
|
-
"default": "
|
|
6208
|
-
"fieldName": "
|
|
6373
|
+
"default": "[]",
|
|
6374
|
+
"fieldName": "selected"
|
|
6209
6375
|
},
|
|
6210
6376
|
{
|
|
6211
|
-
"name": "
|
|
6377
|
+
"name": "fonts",
|
|
6212
6378
|
"type": {
|
|
6213
|
-
"text": "
|
|
6379
|
+
"text": "any[]"
|
|
6214
6380
|
},
|
|
6215
6381
|
"default": "[]",
|
|
6216
|
-
"fieldName": "
|
|
6382
|
+
"fieldName": "fonts"
|
|
6217
6383
|
}
|
|
6218
6384
|
],
|
|
6219
6385
|
"superclass": {
|
|
6220
6386
|
"name": "AbstractProperty",
|
|
6221
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
6222
|
-
}
|
|
6387
|
+
"module": "/src/modeller/property-sidebar/abstract-property.js"
|
|
6388
|
+
},
|
|
6389
|
+
"events": [
|
|
6390
|
+
{
|
|
6391
|
+
"name": "property-change",
|
|
6392
|
+
"type": {
|
|
6393
|
+
"text": "CustomEvent"
|
|
6394
|
+
},
|
|
6395
|
+
"inheritedFrom": {
|
|
6396
|
+
"name": "AbstractProperty",
|
|
6397
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6398
|
+
}
|
|
6399
|
+
}
|
|
6400
|
+
]
|
|
6223
6401
|
}
|
|
6224
6402
|
],
|
|
6225
6403
|
"exports": [
|
|
6226
6404
|
{
|
|
6227
6405
|
"kind": "js",
|
|
6228
|
-
"name": "
|
|
6406
|
+
"name": "PropertyStyles",
|
|
6229
6407
|
"declaration": {
|
|
6230
|
-
"name": "
|
|
6231
|
-
"module": "src/modeller/property-sidebar/
|
|
6408
|
+
"name": "PropertyStyles",
|
|
6409
|
+
"module": "src/modeller/property-sidebar/styles/styles.ts"
|
|
6232
6410
|
}
|
|
6233
6411
|
}
|
|
6234
6412
|
]
|
|
@@ -6579,172 +6757,6 @@
|
|
|
6579
6757
|
}
|
|
6580
6758
|
}
|
|
6581
6759
|
]
|
|
6582
|
-
},
|
|
6583
|
-
{
|
|
6584
|
-
"kind": "javascript-module",
|
|
6585
|
-
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
6586
|
-
"declarations": [
|
|
6587
|
-
{
|
|
6588
|
-
"kind": "class",
|
|
6589
|
-
"description": "",
|
|
6590
|
-
"name": "PropertyStyles",
|
|
6591
|
-
"members": [
|
|
6592
|
-
{
|
|
6593
|
-
"kind": "field",
|
|
6594
|
-
"name": "value",
|
|
6595
|
-
"type": {
|
|
6596
|
-
"text": "any"
|
|
6597
|
-
},
|
|
6598
|
-
"default": "{}",
|
|
6599
|
-
"attribute": "value"
|
|
6600
|
-
},
|
|
6601
|
-
{
|
|
6602
|
-
"kind": "field",
|
|
6603
|
-
"name": "selected",
|
|
6604
|
-
"type": {
|
|
6605
|
-
"text": "Component[]"
|
|
6606
|
-
},
|
|
6607
|
-
"default": "[]",
|
|
6608
|
-
"attribute": "selected"
|
|
6609
|
-
},
|
|
6610
|
-
{
|
|
6611
|
-
"kind": "field",
|
|
6612
|
-
"name": "fonts",
|
|
6613
|
-
"type": {
|
|
6614
|
-
"text": "any[]"
|
|
6615
|
-
},
|
|
6616
|
-
"default": "[]",
|
|
6617
|
-
"attribute": "fonts"
|
|
6618
|
-
},
|
|
6619
|
-
{
|
|
6620
|
-
"kind": "field",
|
|
6621
|
-
"name": "fontAvailable",
|
|
6622
|
-
"type": {
|
|
6623
|
-
"text": "boolean"
|
|
6624
|
-
},
|
|
6625
|
-
"default": "false"
|
|
6626
|
-
},
|
|
6627
|
-
{
|
|
6628
|
-
"kind": "method",
|
|
6629
|
-
"name": "_isLine",
|
|
6630
|
-
"parameters": [
|
|
6631
|
-
{
|
|
6632
|
-
"name": "selected",
|
|
6633
|
-
"type": {
|
|
6634
|
-
"text": "Component[]"
|
|
6635
|
-
}
|
|
6636
|
-
}
|
|
6637
|
-
]
|
|
6638
|
-
},
|
|
6639
|
-
{
|
|
6640
|
-
"kind": "method",
|
|
6641
|
-
"name": "_onValueChange",
|
|
6642
|
-
"parameters": [
|
|
6643
|
-
{
|
|
6644
|
-
"name": "e",
|
|
6645
|
-
"type": {
|
|
6646
|
-
"text": "Event"
|
|
6647
|
-
}
|
|
6648
|
-
}
|
|
6649
|
-
],
|
|
6650
|
-
"inheritedFrom": {
|
|
6651
|
-
"name": "AbstractProperty",
|
|
6652
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6653
|
-
}
|
|
6654
|
-
},
|
|
6655
|
-
{
|
|
6656
|
-
"kind": "method",
|
|
6657
|
-
"name": "_getValueFromEventTarget",
|
|
6658
|
-
"parameters": [
|
|
6659
|
-
{
|
|
6660
|
-
"name": "element",
|
|
6661
|
-
"type": {
|
|
6662
|
-
"text": "HTMLElement"
|
|
6663
|
-
}
|
|
6664
|
-
}
|
|
6665
|
-
],
|
|
6666
|
-
"inheritedFrom": {
|
|
6667
|
-
"name": "AbstractProperty",
|
|
6668
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6669
|
-
}
|
|
6670
|
-
},
|
|
6671
|
-
{
|
|
6672
|
-
"kind": "method",
|
|
6673
|
-
"name": "_onAfterValueChange",
|
|
6674
|
-
"parameters": [
|
|
6675
|
-
{
|
|
6676
|
-
"name": "key",
|
|
6677
|
-
"type": {
|
|
6678
|
-
"text": "string"
|
|
6679
|
-
}
|
|
6680
|
-
},
|
|
6681
|
-
{
|
|
6682
|
-
"name": "value",
|
|
6683
|
-
"type": {
|
|
6684
|
-
"text": "any"
|
|
6685
|
-
}
|
|
6686
|
-
}
|
|
6687
|
-
],
|
|
6688
|
-
"inheritedFrom": {
|
|
6689
|
-
"name": "AbstractProperty",
|
|
6690
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6691
|
-
}
|
|
6692
|
-
}
|
|
6693
|
-
],
|
|
6694
|
-
"attributes": [
|
|
6695
|
-
{
|
|
6696
|
-
"name": "value",
|
|
6697
|
-
"type": {
|
|
6698
|
-
"text": "any"
|
|
6699
|
-
},
|
|
6700
|
-
"default": "{}",
|
|
6701
|
-
"fieldName": "value"
|
|
6702
|
-
},
|
|
6703
|
-
{
|
|
6704
|
-
"name": "selected",
|
|
6705
|
-
"type": {
|
|
6706
|
-
"text": "Component[]"
|
|
6707
|
-
},
|
|
6708
|
-
"default": "[]",
|
|
6709
|
-
"fieldName": "selected"
|
|
6710
|
-
},
|
|
6711
|
-
{
|
|
6712
|
-
"name": "fonts",
|
|
6713
|
-
"type": {
|
|
6714
|
-
"text": "any[]"
|
|
6715
|
-
},
|
|
6716
|
-
"default": "[]",
|
|
6717
|
-
"fieldName": "fonts"
|
|
6718
|
-
}
|
|
6719
|
-
],
|
|
6720
|
-
"superclass": {
|
|
6721
|
-
"name": "AbstractProperty",
|
|
6722
|
-
"module": "/src/modeller/property-sidebar/abstract-property.js"
|
|
6723
|
-
},
|
|
6724
|
-
"events": [
|
|
6725
|
-
{
|
|
6726
|
-
"name": "property-change",
|
|
6727
|
-
"type": {
|
|
6728
|
-
"text": "CustomEvent"
|
|
6729
|
-
},
|
|
6730
|
-
"inheritedFrom": {
|
|
6731
|
-
"name": "AbstractProperty",
|
|
6732
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6733
|
-
}
|
|
6734
|
-
}
|
|
6735
|
-
]
|
|
6736
|
-
}
|
|
6737
|
-
],
|
|
6738
|
-
"exports": [
|
|
6739
|
-
{
|
|
6740
|
-
"kind": "js",
|
|
6741
|
-
"name": "PropertyStyles",
|
|
6742
|
-
"declaration": {
|
|
6743
|
-
"name": "PropertyStyles",
|
|
6744
|
-
"module": "src/modeller/property-sidebar/styles/styles.ts"
|
|
6745
|
-
}
|
|
6746
|
-
}
|
|
6747
|
-
]
|
|
6748
6760
|
}
|
|
6749
6761
|
]
|
|
6750
6762
|
}
|