@fmsim/board 0.0.88 → 0.0.89

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.
@@ -3116,31 +3116,62 @@
3116
3116
  },
3117
3117
  {
3118
3118
  "kind": "javascript-module",
3119
- "path": "src/modeller/component-toolbar/component-detail.ts",
3119
+ "path": "src/modeller/property-sidebar/abstract-property.ts",
3120
3120
  "declarations": [
3121
3121
  {
3122
3122
  "kind": "class",
3123
3123
  "description": "",
3124
- "name": "ComponentDetail",
3124
+ "name": "AbstractProperty",
3125
3125
  "members": [
3126
3126
  {
3127
- "kind": "field",
3128
- "name": "template",
3129
- "type": {
3130
- "text": "{ about: string } | null"
3131
- },
3132
- "default": "null",
3133
- "attribute": "template"
3127
+ "kind": "method",
3128
+ "name": "_onValueChange",
3129
+ "parameters": [
3130
+ {
3131
+ "name": "e",
3132
+ "type": {
3133
+ "text": "Event"
3134
+ }
3135
+ }
3136
+ ]
3137
+ },
3138
+ {
3139
+ "kind": "method",
3140
+ "name": "_getValueFromEventTarget",
3141
+ "parameters": [
3142
+ {
3143
+ "name": "element",
3144
+ "type": {
3145
+ "text": "HTMLElement"
3146
+ }
3147
+ }
3148
+ ]
3149
+ },
3150
+ {
3151
+ "kind": "method",
3152
+ "name": "_onAfterValueChange",
3153
+ "parameters": [
3154
+ {
3155
+ "name": "key",
3156
+ "type": {
3157
+ "text": "string"
3158
+ }
3159
+ },
3160
+ {
3161
+ "name": "value",
3162
+ "type": {
3163
+ "text": "any"
3164
+ }
3165
+ }
3166
+ ]
3134
3167
  }
3135
3168
  ],
3136
- "attributes": [
3169
+ "events": [
3137
3170
  {
3138
- "name": "template",
3171
+ "name": "property-change",
3139
3172
  "type": {
3140
- "text": "{ about: string } | null"
3141
- },
3142
- "default": "null",
3143
- "fieldName": "template"
3173
+ "text": "CustomEvent"
3174
+ }
3144
3175
  }
3145
3176
  ],
3146
3177
  "superclass": {
@@ -3153,71 +3184,131 @@
3153
3184
  "exports": [
3154
3185
  {
3155
3186
  "kind": "js",
3156
- "name": "ComponentDetail",
3187
+ "name": "AbstractProperty",
3157
3188
  "declaration": {
3158
- "name": "ComponentDetail",
3159
- "module": "src/modeller/component-toolbar/component-detail.ts"
3189
+ "name": "AbstractProperty",
3190
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
3160
3191
  }
3161
3192
  }
3162
3193
  ]
3163
3194
  },
3164
3195
  {
3165
3196
  "kind": "javascript-module",
3166
- "path": "src/modeller/component-toolbar/component-menu.ts",
3197
+ "path": "src/modeller/property-sidebar/property-shared-style.ts",
3198
+ "declarations": [
3199
+ {
3200
+ "kind": "variable",
3201
+ "name": "PropertySharedStyle",
3202
+ "default": "css`\n fieldset {\n border: none;\n margin: 4px;\n padding: 9px 4px 9px 4px;\n border-bottom: var(--property-sidebar-fieldset-border);\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-label);\n }\n\n fieldset legend {\n padding: 5px 0 0 5px;\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-legend);\n text-transform: capitalize;\n }\n\n select,\n input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n /* property grid */\n .property-grid {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .property-grid > * {\n width: 100%;\n box-sizing: border-box;\n }\n\n .property-grid > label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n line-height: 2;\n }\n\n .property-grid > input,\n .property-grid > table,\n .property-grid > select,\n .property-grid > ox-input-angle,\n .property-grid > ox-buttons-radio,\n .property-grid > ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n align-self: stretch;\n }\n\n .property-grid > .checkbox-row {\n grid-column: span 10;\n }\n\n .property-grid > .property-full-label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n }\n\n .property-grid > .property-half-label {\n grid-column: span 1;\n }\n\n .property-grid > .property-full-input {\n grid-column: span 7;\n }\n\n .property-grid > .property-half-input {\n grid-column: span 4;\n }\n\n /* checkbox-row */\n .checkbox-row {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .checkbox-row > input {\n grid-column: 4 / 5;\n }\n\n .checkbox-row > label {\n grid-column: span 6;\n text-align: left;\n }\n\n /* image resources */\n .icon-only-label {\n grid-column: span 1;\n\n background: var(--url-icon-properties-label) no-repeat;\n float: left;\n margin: 0;\n align-self: stretch;\n }\n\n .icon-only-label.color {\n background-position: 100% -500px;\n }\n .icon-only-label.font-size {\n background-position: 100% -594px;\n }\n .icon-only-label.leading {\n background-position: 100% -696px;\n }\n .icon-only-label.hscale {\n background-position: 100% -296px;\n }\n .icon-only-label.vscale {\n background-position: 100% -396px;\n }\n .icon-only-label.linewidth {\n background-position: 100% -894px;\n }\n .icon-only-label.lineHeight {\n background-position: 100% -995px;\n }\n`"
3203
+ }
3204
+ ],
3205
+ "exports": [
3206
+ {
3207
+ "kind": "js",
3208
+ "name": "PropertySharedStyle",
3209
+ "declaration": {
3210
+ "name": "PropertySharedStyle",
3211
+ "module": "src/modeller/property-sidebar/property-shared-style.ts"
3212
+ }
3213
+ }
3214
+ ]
3215
+ },
3216
+ {
3217
+ "kind": "javascript-module",
3218
+ "path": "src/modeller/property-sidebar/property-sidebar.ts",
3167
3219
  "declarations": [
3168
3220
  {
3169
3221
  "kind": "class",
3170
3222
  "description": "",
3171
- "name": "ComponentMenu",
3223
+ "name": "PropertySidebar",
3172
3224
  "members": [
3173
3225
  {
3174
3226
  "kind": "field",
3175
- "name": "groups",
3227
+ "name": "scene",
3176
3228
  "type": {
3177
- "text": "Pallet[]"
3229
+ "text": "Scene | null"
3230
+ },
3231
+ "default": "null",
3232
+ "attribute": "scene"
3233
+ },
3234
+ {
3235
+ "kind": "field",
3236
+ "name": "bounds",
3237
+ "type": {
3238
+ "text": "any"
3239
+ },
3240
+ "default": "{}",
3241
+ "attribute": "bounds"
3242
+ },
3243
+ {
3244
+ "kind": "field",
3245
+ "name": "model",
3246
+ "type": {
3247
+ "text": "Model | null"
3248
+ },
3249
+ "default": "{}",
3250
+ "attribute": "model"
3251
+ },
3252
+ {
3253
+ "kind": "field",
3254
+ "name": "selected",
3255
+ "type": {
3256
+ "text": "Component[]"
3178
3257
  },
3179
3258
  "default": "[]",
3180
- "attribute": "groups"
3259
+ "attribute": "selected"
3181
3260
  },
3182
3261
  {
3183
3262
  "kind": "field",
3184
- "name": "scene",
3263
+ "name": "specificProps",
3185
3264
  "type": {
3186
- "text": "Scene | null"
3265
+ "text": "any"
3187
3266
  },
3188
- "default": "null",
3189
- "attribute": "scene"
3267
+ "attribute": "specificProps"
3190
3268
  },
3191
3269
  {
3192
3270
  "kind": "field",
3193
- "name": "group",
3271
+ "name": "tabName",
3194
3272
  "type": {
3195
3273
  "text": "string | null"
3196
3274
  },
3197
- "default": "''",
3198
- "attribute": "group"
3275
+ "default": "'specific'",
3276
+ "attribute": "tabName"
3199
3277
  },
3200
3278
  {
3201
3279
  "kind": "field",
3202
- "name": "templates",
3280
+ "name": "collapsed",
3203
3281
  "type": {
3204
- "text": "PalletItem[]"
3282
+ "text": "boolean"
3205
3283
  },
3206
- "default": "[]"
3284
+ "default": "false",
3285
+ "attribute": "collapsed"
3207
3286
  },
3208
3287
  {
3209
3288
  "kind": "field",
3210
- "name": "template",
3289
+ "name": "fonts",
3211
3290
  "type": {
3212
- "text": "PalletItem | any"
3213
- }
3291
+ "text": "any[]"
3292
+ },
3293
+ "default": "[]",
3294
+ "attribute": "fonts"
3214
3295
  },
3215
3296
  {
3216
3297
  "kind": "field",
3217
- "name": "detail",
3298
+ "name": "propertyEditor",
3218
3299
  "type": {
3219
- "text": "HTMLElement"
3220
- }
3300
+ "text": "any[]"
3301
+ },
3302
+ "default": "[]",
3303
+ "attribute": "propertyEditor"
3304
+ },
3305
+ {
3306
+ "kind": "field",
3307
+ "name": "propertyTarget",
3308
+ "type": {
3309
+ "text": "Component | null"
3310
+ },
3311
+ "default": "null"
3221
3312
  },
3222
3313
  {
3223
3314
  "kind": "field",
@@ -3227,62 +3318,90 @@
3227
3318
  },
3228
3319
  {
3229
3320
  "kind": "method",
3230
- "name": "findTemplate",
3321
+ "name": "_onPropertyChanged",
3231
3322
  "parameters": [
3232
3323
  {
3233
- "name": "type",
3324
+ "name": "e",
3234
3325
  "type": {
3235
- "text": "string | null | undefined"
3326
+ "text": "CustomEvent"
3236
3327
  }
3237
3328
  }
3238
3329
  ]
3239
3330
  },
3240
3331
  {
3241
3332
  "kind": "method",
3242
- "name": "onHoverComponent",
3333
+ "name": "_onBoundsChanged",
3243
3334
  "parameters": [
3244
3335
  {
3245
3336
  "name": "e",
3246
3337
  "type": {
3247
- "text": "MouseEvent"
3338
+ "text": "CustomEvent"
3248
3339
  }
3249
3340
  }
3250
3341
  ]
3251
3342
  },
3252
3343
  {
3253
3344
  "kind": "method",
3254
- "name": "onClickTemplate",
3345
+ "name": "_onChangedByScene"
3346
+ },
3347
+ {
3348
+ "kind": "method",
3349
+ "name": "_setPropertyTargetAsDefault"
3350
+ },
3351
+ {
3352
+ "kind": "method",
3353
+ "name": "_onCollapsed",
3255
3354
  "parameters": [
3256
3355
  {
3257
- "name": "e",
3356
+ "name": "collapsed",
3258
3357
  "type": {
3259
- "text": "MouseEvent"
3358
+ "text": "boolean"
3260
3359
  }
3261
3360
  }
3262
3361
  ]
3263
3362
  },
3264
3363
  {
3265
3364
  "kind": "method",
3266
- "name": "templateIcon",
3365
+ "name": "_onSceneChanged"
3366
+ },
3367
+ {
3368
+ "kind": "method",
3369
+ "name": "_onSelectedChanged",
3267
3370
  "parameters": [
3268
3371
  {
3269
- "name": "template",
3372
+ "name": "after",
3270
3373
  "type": {
3271
- "text": "PalletItem"
3374
+ "text": "Component[]"
3375
+ }
3376
+ }
3377
+ ]
3378
+ },
3379
+ {
3380
+ "kind": "method",
3381
+ "name": "_setPropertyTarget",
3382
+ "parameters": [
3383
+ {
3384
+ "name": "newTarget",
3385
+ "type": {
3386
+ "text": "Component | null"
3387
+ }
3388
+ }
3389
+ ]
3390
+ },
3391
+ {
3392
+ "kind": "method",
3393
+ "name": "_setBounds",
3394
+ "parameters": [
3395
+ {
3396
+ "name": "bounds",
3397
+ "type": {
3398
+ "text": "BOUNDS"
3272
3399
  }
3273
3400
  }
3274
3401
  ]
3275
3402
  }
3276
3403
  ],
3277
3404
  "attributes": [
3278
- {
3279
- "name": "groups",
3280
- "type": {
3281
- "text": "Pallet[]"
3282
- },
3283
- "default": "[]",
3284
- "fieldName": "groups"
3285
- },
3286
3405
  {
3287
3406
  "name": "scene",
3288
3407
  "type": {
@@ -3292,119 +3411,197 @@
3292
3411
  "fieldName": "scene"
3293
3412
  },
3294
3413
  {
3295
- "name": "group",
3414
+ "name": "bounds",
3296
3415
  "type": {
3297
- "text": "string | null"
3416
+ "text": "any"
3298
3417
  },
3299
- "default": "''",
3300
- "fieldName": "group"
3301
- }
3302
- ],
3303
- "mixins": [
3418
+ "default": "{}",
3419
+ "fieldName": "bounds"
3420
+ },
3304
3421
  {
3305
- "name": "ScopedElementsMixin",
3306
- "package": "@open-wc/scoped-elements"
3307
- }
3308
- ],
3309
- "superclass": {
3310
- "name": "LitElement",
3311
- "package": "lit"
3312
- },
3313
- "customElement": true
3422
+ "name": "model",
3423
+ "type": {
3424
+ "text": "Model | null"
3425
+ },
3426
+ "default": "{}",
3427
+ "fieldName": "model"
3428
+ },
3429
+ {
3430
+ "name": "selected",
3431
+ "type": {
3432
+ "text": "Component[]"
3433
+ },
3434
+ "default": "[]",
3435
+ "fieldName": "selected"
3436
+ },
3437
+ {
3438
+ "name": "specificProps",
3439
+ "type": {
3440
+ "text": "any"
3441
+ },
3442
+ "fieldName": "specificProps"
3443
+ },
3444
+ {
3445
+ "name": "tabName",
3446
+ "type": {
3447
+ "text": "string | null"
3448
+ },
3449
+ "default": "'specific'",
3450
+ "fieldName": "tabName"
3451
+ },
3452
+ {
3453
+ "name": "collapsed",
3454
+ "type": {
3455
+ "text": "boolean"
3456
+ },
3457
+ "default": "false",
3458
+ "fieldName": "collapsed"
3459
+ },
3460
+ {
3461
+ "name": "fonts",
3462
+ "type": {
3463
+ "text": "any[]"
3464
+ },
3465
+ "default": "[]",
3466
+ "fieldName": "fonts"
3467
+ },
3468
+ {
3469
+ "name": "propertyEditor",
3470
+ "type": {
3471
+ "text": "any[]"
3472
+ },
3473
+ "default": "[]",
3474
+ "fieldName": "propertyEditor"
3475
+ }
3476
+ ],
3477
+ "mixins": [
3478
+ {
3479
+ "name": "ScopedElementsMixin",
3480
+ "package": "@open-wc/scoped-elements"
3481
+ }
3482
+ ],
3483
+ "superclass": {
3484
+ "name": "LitElement",
3485
+ "package": "lit"
3486
+ },
3487
+ "customElement": true
3314
3488
  }
3315
3489
  ],
3316
3490
  "exports": [
3317
3491
  {
3318
3492
  "kind": "js",
3319
- "name": "ComponentMenu",
3493
+ "name": "PropertySidebar",
3320
3494
  "declaration": {
3321
- "name": "ComponentMenu",
3322
- "module": "src/modeller/component-toolbar/component-menu.ts"
3495
+ "name": "PropertySidebar",
3496
+ "module": "src/modeller/property-sidebar/property-sidebar.ts"
3323
3497
  }
3324
3498
  }
3325
3499
  ]
3326
3500
  },
3327
3501
  {
3328
3502
  "kind": "javascript-module",
3329
- "path": "src/modeller/component-toolbar/component-toolbar.ts",
3503
+ "path": "src/modeller/component-toolbar/component-detail.ts",
3330
3504
  "declarations": [
3331
3505
  {
3332
3506
  "kind": "class",
3333
3507
  "description": "",
3334
- "name": "ComponentToolbar",
3508
+ "name": "ComponentDetail",
3335
3509
  "members": [
3336
3510
  {
3337
3511
  "kind": "field",
3338
- "name": "componentGroupList",
3512
+ "name": "template",
3339
3513
  "type": {
3340
- "text": "ComponentGroup[]"
3514
+ "text": "{ about: string } | null"
3341
3515
  },
3342
- "default": "[]",
3343
- "attribute": "componentGroupList"
3344
- },
3516
+ "default": "null",
3517
+ "attribute": "template"
3518
+ }
3519
+ ],
3520
+ "attributes": [
3345
3521
  {
3346
- "kind": "field",
3347
- "name": "group",
3522
+ "name": "template",
3348
3523
  "type": {
3349
- "text": "string | null | undefined"
3524
+ "text": "{ about: string } | null"
3350
3525
  },
3351
- "attribute": "group"
3352
- },
3526
+ "default": "null",
3527
+ "fieldName": "template"
3528
+ }
3529
+ ],
3530
+ "superclass": {
3531
+ "name": "LitElement",
3532
+ "package": "lit"
3533
+ },
3534
+ "customElement": true
3535
+ }
3536
+ ],
3537
+ "exports": [
3538
+ {
3539
+ "kind": "js",
3540
+ "name": "ComponentDetail",
3541
+ "declaration": {
3542
+ "name": "ComponentDetail",
3543
+ "module": "src/modeller/component-toolbar/component-detail.ts"
3544
+ }
3545
+ }
3546
+ ]
3547
+ },
3548
+ {
3549
+ "kind": "javascript-module",
3550
+ "path": "src/modeller/component-toolbar/component-menu.ts",
3551
+ "declarations": [
3552
+ {
3553
+ "kind": "class",
3554
+ "description": "",
3555
+ "name": "ComponentMenu",
3556
+ "members": [
3353
3557
  {
3354
3558
  "kind": "field",
3355
- "name": "scene",
3559
+ "name": "groups",
3356
3560
  "type": {
3357
- "text": "Scene"
3561
+ "text": "Pallet[]"
3358
3562
  },
3359
- "attribute": "scene"
3563
+ "default": "[]",
3564
+ "attribute": "groups"
3360
3565
  },
3361
3566
  {
3362
3567
  "kind": "field",
3363
- "name": "mode",
3568
+ "name": "scene",
3364
3569
  "type": {
3365
- "text": "SCENE_MODE"
3570
+ "text": "Scene | null"
3366
3571
  },
3367
- "attribute": "mode"
3368
- },
3369
- {
3370
- "kind": "field",
3371
- "name": "shift",
3372
- "type": {
3373
- "text": "HTMLImageElement"
3374
- }
3572
+ "default": "null",
3573
+ "attribute": "scene"
3375
3574
  },
3376
3575
  {
3377
3576
  "kind": "field",
3378
- "name": "menu",
3577
+ "name": "group",
3379
3578
  "type": {
3380
- "text": "HTMLElement"
3579
+ "text": "string | null"
3381
3580
  },
3382
- "privacy": "private"
3581
+ "default": "''",
3582
+ "attribute": "group"
3383
3583
  },
3384
3584
  {
3385
3585
  "kind": "field",
3386
- "name": "componentsContainer",
3586
+ "name": "templates",
3387
3587
  "type": {
3388
- "text": "HTMLElement"
3588
+ "text": "PalletItem[]"
3389
3589
  },
3390
- "privacy": "private"
3590
+ "default": "[]"
3391
3591
  },
3392
3592
  {
3393
3593
  "kind": "field",
3394
- "name": "groups",
3594
+ "name": "template",
3395
3595
  "type": {
3396
- "text": "NodeListOf<HTMLElement>"
3397
- },
3398
- "privacy": "private"
3596
+ "text": "PalletItem | any"
3597
+ }
3399
3598
  },
3400
3599
  {
3401
3600
  "kind": "field",
3402
- "name": "icons",
3601
+ "name": "detail",
3403
3602
  "type": {
3404
- "text": "{ [name: string]: string }"
3405
- },
3406
- "privacy": "private",
3407
- "default": "{}"
3603
+ "text": "HTMLElement"
3604
+ }
3408
3605
  },
3409
3606
  {
3410
3607
  "kind": "field",
@@ -3414,31 +3611,31 @@
3414
3611
  },
3415
3612
  {
3416
3613
  "kind": "method",
3417
- "name": "onWheelEvent",
3614
+ "name": "findTemplate",
3418
3615
  "parameters": [
3419
3616
  {
3420
- "name": "e",
3617
+ "name": "type",
3421
3618
  "type": {
3422
- "text": "Event"
3619
+ "text": "string | null | undefined"
3423
3620
  }
3424
3621
  }
3425
3622
  ]
3426
3623
  },
3427
3624
  {
3428
3625
  "kind": "method",
3429
- "name": "_setMode",
3626
+ "name": "onHoverComponent",
3430
3627
  "parameters": [
3431
3628
  {
3432
- "name": "mode",
3629
+ "name": "e",
3433
3630
  "type": {
3434
- "text": "SCENE_MODE"
3631
+ "text": "MouseEvent"
3435
3632
  }
3436
3633
  }
3437
3634
  ]
3438
3635
  },
3439
3636
  {
3440
3637
  "kind": "method",
3441
- "name": "_onClickShift",
3638
+ "name": "onClickTemplate",
3442
3639
  "parameters": [
3443
3640
  {
3444
3641
  "name": "e",
@@ -3450,54 +3647,41 @@
3450
3647
  },
3451
3648
  {
3452
3649
  "kind": "method",
3453
- "name": "_onClickGroup",
3650
+ "name": "templateIcon",
3454
3651
  "parameters": [
3455
3652
  {
3456
- "name": "e",
3653
+ "name": "template",
3457
3654
  "type": {
3458
- "text": "MouseEvent"
3655
+ "text": "PalletItem"
3459
3656
  }
3460
3657
  }
3461
3658
  ]
3462
3659
  }
3463
3660
  ],
3464
- "events": [
3465
- {
3466
- "name": "mode-changed",
3467
- "type": {
3468
- "text": "CustomEvent"
3469
- }
3470
- }
3471
- ],
3472
3661
  "attributes": [
3473
3662
  {
3474
- "name": "componentGroupList",
3663
+ "name": "groups",
3475
3664
  "type": {
3476
- "text": "ComponentGroup[]"
3665
+ "text": "Pallet[]"
3477
3666
  },
3478
3667
  "default": "[]",
3479
- "fieldName": "componentGroupList"
3480
- },
3481
- {
3482
- "name": "group",
3483
- "type": {
3484
- "text": "string | null | undefined"
3485
- },
3486
- "fieldName": "group"
3668
+ "fieldName": "groups"
3487
3669
  },
3488
3670
  {
3489
3671
  "name": "scene",
3490
3672
  "type": {
3491
- "text": "Scene"
3673
+ "text": "Scene | null"
3492
3674
  },
3675
+ "default": "null",
3493
3676
  "fieldName": "scene"
3494
3677
  },
3495
3678
  {
3496
- "name": "mode",
3679
+ "name": "group",
3497
3680
  "type": {
3498
- "text": "SCENE_MODE"
3681
+ "text": "string | null"
3499
3682
  },
3500
- "fieldName": "mode"
3683
+ "default": "''",
3684
+ "fieldName": "group"
3501
3685
  }
3502
3686
  ],
3503
3687
  "mixins": [
@@ -3516,243 +3700,95 @@
3516
3700
  "exports": [
3517
3701
  {
3518
3702
  "kind": "js",
3519
- "name": "ComponentToolbar",
3703
+ "name": "ComponentMenu",
3520
3704
  "declaration": {
3521
- "name": "ComponentToolbar",
3522
- "module": "src/modeller/component-toolbar/component-toolbar.ts"
3705
+ "name": "ComponentMenu",
3706
+ "module": "src/modeller/component-toolbar/component-menu.ts"
3523
3707
  }
3524
3708
  }
3525
3709
  ]
3526
3710
  },
3527
3711
  {
3528
3712
  "kind": "javascript-module",
3529
- "path": "src/modeller/component-toolbar/mode-icons.ts",
3530
- "declarations": [
3531
- {
3532
- "kind": "variable",
3533
- "name": "ICON_EDIT_MODE",
3534
- "default": "`\n <svg\n version=\"1.1\"\n id=\"Layer_1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n x=\"0px\"\n y=\"0px\"\n viewBox=\"0 0 30 30\"\n style=\"enable-background:new 0 0 30 30;\"\n xml:space=\"preserve\"\n >\n <style type=\"text/css\">\n .st0 {\n fill: {{strokeColor}};\n }\n .st1 {\n fill: none;\n stroke: {{strokeColor}};\n stroke-width: 0.75;\n stroke-linejoin: round;\n stroke-miterlimit: 10;\n }\n </style>\n <g>\n <polygon class=\"st0\" points=\"2.7,3.9 2.7,22.8 7.8,17.2 16.1,16.9 \t\" />\n <path\n class=\"st1\"\n d=\"M27.7,20.1L26.1,19c-0.1,0-0.2,0-0.2,0c0,0.1,0,0.2,0,0.2l1.2,0.9h-4.9v-5l0.9,1.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0c0.1,0,0.1-0.1,0-0.2l-1.1-1.6c-0.1-0.1-0.2-0.1-0.2,0L20.8,16c0,0.1,0,0.2,0,0.2s0.2,0,0.2,0l0.9-1.2v5h-5\n l1.2-0.9c0.1,0,0.1-0.1,0-0.2c0-0.1-0.1-0.1-0.2,0l-1.6,1.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0.1,0.1l1.6,1.1c0,0,0.1,0,0.1,0\n c0,0,0.1,0,0.1-0.1c0-0.1,0-0.2,0-0.2l-1.2-0.9h5v5L21,24.2c0-0.1-0.1-0.1-0.2,0c-0.1,0-0.1,0.1,0,0.2l1.1,1.6c0,0,0.1,0.1,0.1,0.1\n s0.1,0,0.1-0.1l1.1-1.6c0-0.1,0-0.2,0-0.2c-0.1,0-0.2,0-0.2,0l-0.9,1.2v-5h4.9l-1.2,0.9c-0.1,0-0.1,0.1,0,0.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0l1.6-1.1c0,0,0.1-0.1,0.1-0.1C27.7,20.2,27.7,20.1,27.7,20.1z\"\n />\n </g>\n </svg>\n`"
3535
- },
3536
- {
3537
- "kind": "variable",
3538
- "name": "ICON_SHIFT_MODE",
3539
- "default": "`\n <svg\n version=\"1.1\"\n id=\"Layer_1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n x=\"0px\"\n y=\"0px\"\n viewBox=\"0 0 30 30\"\n style=\"enable-background:new 0 0 30 30;\"\n xml:space=\"preserve\"\n >\n <style type=\"text/css\">\n .st0 {\n fill: {{strokeColor}};\n stroke: {{strokeColor}};\n fill-rule: evenodd;\n clip-rule: evenodd;\n }\n .st1 {\n fill: {{strokeColor}};\n stroke: {{strokeColor}};\n stroke-width: 0.75;\n stroke-linejoin: round;\n stroke-miterlimit: 10;\n }\n </style>\n <g>\n <path\n class=\"st0\"\n d=\"M7.8,23.2c1.6,0,3.8,0,5.7,0c0.8,0,1.3-0.3,1.6-1.2c0.4-2.9,1.5-4.9,2.4-6.9s1.4-2.5,1.6-3.4\n c0.1-0.5,0.2-1.6-0.4-1.9c-0.6-0.3-1.2,0.1-1.9,1.3c-0.8,1.6-1,2-1.4,2c-0.3,0-0.1-4,0-5.4c0.1-1.3-0.6-1.8-1.3-1.8\n c-0.8-0.1-1.5,0.4-1.5,1.5c0,1.5-0.2,5.2-0.7,5.2c-0.4,0-0.3-4.3-0.6-6.7c-0.1-1-0.6-1.8-1.5-1.8C9.1,4.2,8.4,4.7,8.3,5.8\n c-0.1,1.3,1,6.7,0.5,6.7c-0.4,0-1.4-3.3-2.3-5.1C6,6.5,5.6,6,4.6,6.4C3.9,6.7,3.5,7.6,3.8,8.5c0.5,1.2,2.7,6.8,2.2,6.8\n c-0.4,0-1.4-1.4-2.7-2.1c-1.1-0.6-1.8-0.4-2.1-0.1c-0.4,0.3-0.7,1,0.9,2.8c0.6,0.6,3.1,2.3,3.7,3.2c0.7,1.3,0.6,1,0.8,2.8\n C6.7,22.7,7,23.2,7.8,23.2z\"\n />\n <path\n class=\"st1\"\n d=\"M28.7,20.1L27.1,19c-0.1,0-0.2,0-0.2,0c0,0.1,0,0.2,0,0.2l1.2,0.9h-4.9v-5l0.9,1.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0c0.1,0,0.1-0.1,0-0.2l-1.1-1.6c-0.1-0.1-0.2-0.1-0.2,0L21.8,16c0,0.1,0,0.2,0,0.2s0.2,0,0.2,0l0.9-1.2v5h-5\n l1.2-0.9c0.1,0,0.1-0.1,0-0.2c0-0.1-0.1-0.1-0.2,0l-1.6,1.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0.1,0.1l1.6,1.1c0,0,0.1,0,0.1,0\n c0,0,0.1,0,0.1-0.1c0-0.1,0-0.2,0-0.2l-1.2-0.9h5v5L22,24.2c0-0.1-0.1-0.1-0.2,0c-0.1,0-0.1,0.1,0,0.2l1.1,1.6c0,0,0.1,0.1,0.1,0.1\n s0.1,0,0.1-0.1l1.1-1.6c0-0.1,0-0.2,0-0.2c-0.1,0-0.2,0-0.2,0l-0.9,1.2v-5h4.9l-1.2,0.9c-0.1,0-0.1,0.1,0,0.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0l1.6-1.1c0,0,0.1-0.1,0.1-0.1C28.7,20.2,28.7,20.1,28.7,20.1z\"\n />\n </g>\n </svg>\n`"
3540
- }
3541
- ],
3542
- "exports": [
3543
- {
3544
- "kind": "js",
3545
- "name": "ICON_EDIT_MODE",
3546
- "declaration": {
3547
- "name": "ICON_EDIT_MODE",
3548
- "module": "src/modeller/component-toolbar/mode-icons.ts"
3549
- }
3550
- },
3551
- {
3552
- "kind": "js",
3553
- "name": "ICON_SHIFT_MODE",
3554
- "declaration": {
3555
- "name": "ICON_SHIFT_MODE",
3556
- "module": "src/modeller/component-toolbar/mode-icons.ts"
3557
- }
3558
- }
3559
- ]
3560
- },
3561
- {
3562
- "kind": "javascript-module",
3563
- "path": "src/modeller/property-sidebar/abstract-property.ts",
3564
- "declarations": [
3565
- {
3566
- "kind": "class",
3567
- "description": "",
3568
- "name": "AbstractProperty",
3569
- "members": [
3570
- {
3571
- "kind": "method",
3572
- "name": "_onValueChange",
3573
- "parameters": [
3574
- {
3575
- "name": "e",
3576
- "type": {
3577
- "text": "Event"
3578
- }
3579
- }
3580
- ]
3581
- },
3582
- {
3583
- "kind": "method",
3584
- "name": "_getValueFromEventTarget",
3585
- "parameters": [
3586
- {
3587
- "name": "element",
3588
- "type": {
3589
- "text": "HTMLElement"
3590
- }
3591
- }
3592
- ]
3593
- },
3594
- {
3595
- "kind": "method",
3596
- "name": "_onAfterValueChange",
3597
- "parameters": [
3598
- {
3599
- "name": "key",
3600
- "type": {
3601
- "text": "string"
3602
- }
3603
- },
3604
- {
3605
- "name": "value",
3606
- "type": {
3607
- "text": "any"
3608
- }
3609
- }
3610
- ]
3611
- }
3612
- ],
3613
- "events": [
3614
- {
3615
- "name": "property-change",
3616
- "type": {
3617
- "text": "CustomEvent"
3618
- }
3619
- }
3620
- ],
3621
- "superclass": {
3622
- "name": "LitElement",
3623
- "package": "lit"
3624
- },
3625
- "customElement": true
3626
- }
3627
- ],
3628
- "exports": [
3629
- {
3630
- "kind": "js",
3631
- "name": "AbstractProperty",
3632
- "declaration": {
3633
- "name": "AbstractProperty",
3634
- "module": "src/modeller/property-sidebar/abstract-property.ts"
3635
- }
3636
- }
3637
- ]
3638
- },
3639
- {
3640
- "kind": "javascript-module",
3641
- "path": "src/modeller/property-sidebar/property-shared-style.ts",
3642
- "declarations": [
3643
- {
3644
- "kind": "variable",
3645
- "name": "PropertySharedStyle",
3646
- "default": "css`\n fieldset {\n border: none;\n margin: 4px;\n padding: 9px 4px 9px 4px;\n border-bottom: var(--property-sidebar-fieldset-border);\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-label);\n }\n\n fieldset legend {\n padding: 5px 0 0 5px;\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-legend);\n text-transform: capitalize;\n }\n\n select,\n input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n /* property grid */\n .property-grid {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .property-grid > * {\n width: 100%;\n box-sizing: border-box;\n }\n\n .property-grid > label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n line-height: 2;\n }\n\n .property-grid > input,\n .property-grid > table,\n .property-grid > select,\n .property-grid > ox-input-angle,\n .property-grid > ox-buttons-radio,\n .property-grid > ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n align-self: stretch;\n }\n\n .property-grid > .checkbox-row {\n grid-column: span 10;\n }\n\n .property-grid > .property-full-label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n }\n\n .property-grid > .property-half-label {\n grid-column: span 1;\n }\n\n .property-grid > .property-full-input {\n grid-column: span 7;\n }\n\n .property-grid > .property-half-input {\n grid-column: span 4;\n }\n\n /* checkbox-row */\n .checkbox-row {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .checkbox-row > input {\n grid-column: 4 / 5;\n }\n\n .checkbox-row > label {\n grid-column: span 6;\n text-align: left;\n }\n\n /* image resources */\n .icon-only-label {\n grid-column: span 1;\n\n background: var(--url-icon-properties-label) no-repeat;\n float: left;\n margin: 0;\n align-self: stretch;\n }\n\n .icon-only-label.color {\n background-position: 100% -500px;\n }\n .icon-only-label.font-size {\n background-position: 100% -594px;\n }\n .icon-only-label.leading {\n background-position: 100% -696px;\n }\n .icon-only-label.hscale {\n background-position: 100% -296px;\n }\n .icon-only-label.vscale {\n background-position: 100% -396px;\n }\n .icon-only-label.linewidth {\n background-position: 100% -894px;\n }\n .icon-only-label.lineHeight {\n background-position: 100% -995px;\n }\n`"
3647
- }
3648
- ],
3649
- "exports": [
3650
- {
3651
- "kind": "js",
3652
- "name": "PropertySharedStyle",
3653
- "declaration": {
3654
- "name": "PropertySharedStyle",
3655
- "module": "src/modeller/property-sidebar/property-shared-style.ts"
3656
- }
3657
- }
3658
- ]
3659
- },
3660
- {
3661
- "kind": "javascript-module",
3662
- "path": "src/modeller/property-sidebar/property-sidebar.ts",
3713
+ "path": "src/modeller/component-toolbar/component-toolbar.ts",
3663
3714
  "declarations": [
3664
3715
  {
3665
3716
  "kind": "class",
3666
3717
  "description": "",
3667
- "name": "PropertySidebar",
3718
+ "name": "ComponentToolbar",
3668
3719
  "members": [
3669
3720
  {
3670
3721
  "kind": "field",
3671
- "name": "scene",
3672
- "type": {
3673
- "text": "Scene | null"
3674
- },
3675
- "default": "null",
3676
- "attribute": "scene"
3677
- },
3678
- {
3679
- "kind": "field",
3680
- "name": "bounds",
3722
+ "name": "componentGroupList",
3681
3723
  "type": {
3682
- "text": "any"
3724
+ "text": "ComponentGroup[]"
3683
3725
  },
3684
- "default": "{}",
3685
- "attribute": "bounds"
3726
+ "default": "[]",
3727
+ "attribute": "componentGroupList"
3686
3728
  },
3687
3729
  {
3688
3730
  "kind": "field",
3689
- "name": "model",
3731
+ "name": "group",
3690
3732
  "type": {
3691
- "text": "Model | null"
3733
+ "text": "string | null | undefined"
3692
3734
  },
3693
- "default": "{}",
3694
- "attribute": "model"
3735
+ "attribute": "group"
3695
3736
  },
3696
3737
  {
3697
3738
  "kind": "field",
3698
- "name": "selected",
3739
+ "name": "scene",
3699
3740
  "type": {
3700
- "text": "Component[]"
3741
+ "text": "Scene"
3701
3742
  },
3702
- "default": "[]",
3703
- "attribute": "selected"
3743
+ "attribute": "scene"
3704
3744
  },
3705
3745
  {
3706
3746
  "kind": "field",
3707
- "name": "specificProps",
3747
+ "name": "mode",
3708
3748
  "type": {
3709
- "text": "any"
3749
+ "text": "SCENE_MODE"
3710
3750
  },
3711
- "attribute": "specificProps"
3751
+ "attribute": "mode"
3712
3752
  },
3713
3753
  {
3714
3754
  "kind": "field",
3715
- "name": "tabName",
3755
+ "name": "shift",
3716
3756
  "type": {
3717
- "text": "string | null"
3718
- },
3719
- "default": "'specific'",
3720
- "attribute": "tabName"
3757
+ "text": "HTMLImageElement"
3758
+ }
3721
3759
  },
3722
3760
  {
3723
3761
  "kind": "field",
3724
- "name": "collapsed",
3762
+ "name": "menu",
3725
3763
  "type": {
3726
- "text": "boolean"
3764
+ "text": "HTMLElement"
3727
3765
  },
3728
- "default": "false",
3729
- "attribute": "collapsed"
3766
+ "privacy": "private"
3730
3767
  },
3731
3768
  {
3732
3769
  "kind": "field",
3733
- "name": "fonts",
3770
+ "name": "componentsContainer",
3734
3771
  "type": {
3735
- "text": "any[]"
3772
+ "text": "HTMLElement"
3736
3773
  },
3737
- "default": "[]",
3738
- "attribute": "fonts"
3774
+ "privacy": "private"
3739
3775
  },
3740
3776
  {
3741
3777
  "kind": "field",
3742
- "name": "propertyEditor",
3778
+ "name": "groups",
3743
3779
  "type": {
3744
- "text": "any[]"
3780
+ "text": "NodeListOf<HTMLElement>"
3745
3781
  },
3746
- "default": "[]",
3747
- "attribute": "propertyEditor"
3782
+ "privacy": "private"
3748
3783
  },
3749
3784
  {
3750
3785
  "kind": "field",
3751
- "name": "propertyTarget",
3786
+ "name": "icons",
3752
3787
  "type": {
3753
- "text": "Component | null"
3788
+ "text": "{ [name: string]: string }"
3754
3789
  },
3755
- "default": "null"
3790
+ "privacy": "private",
3791
+ "default": "{}"
3756
3792
  },
3757
3793
  {
3758
3794
  "kind": "field",
@@ -3762,160 +3798,90 @@
3762
3798
  },
3763
3799
  {
3764
3800
  "kind": "method",
3765
- "name": "_onPropertyChanged",
3766
- "parameters": [
3767
- {
3768
- "name": "e",
3769
- "type": {
3770
- "text": "CustomEvent"
3771
- }
3772
- }
3773
- ]
3774
- },
3775
- {
3776
- "kind": "method",
3777
- "name": "_onBoundsChanged",
3801
+ "name": "onWheelEvent",
3778
3802
  "parameters": [
3779
3803
  {
3780
3804
  "name": "e",
3781
3805
  "type": {
3782
- "text": "CustomEvent"
3806
+ "text": "Event"
3783
3807
  }
3784
3808
  }
3785
3809
  ]
3786
3810
  },
3787
3811
  {
3788
3812
  "kind": "method",
3789
- "name": "_onChangedByScene"
3790
- },
3791
- {
3792
- "kind": "method",
3793
- "name": "_setPropertyTargetAsDefault"
3794
- },
3795
- {
3796
- "kind": "method",
3797
- "name": "_onCollapsed",
3813
+ "name": "_setMode",
3798
3814
  "parameters": [
3799
3815
  {
3800
- "name": "collapsed",
3816
+ "name": "mode",
3801
3817
  "type": {
3802
- "text": "boolean"
3818
+ "text": "SCENE_MODE"
3803
3819
  }
3804
3820
  }
3805
3821
  ]
3806
3822
  },
3807
3823
  {
3808
3824
  "kind": "method",
3809
- "name": "_onSceneChanged"
3810
- },
3811
- {
3812
- "kind": "method",
3813
- "name": "_onSelectedChanged",
3825
+ "name": "_onClickShift",
3814
3826
  "parameters": [
3815
3827
  {
3816
- "name": "after",
3828
+ "name": "e",
3817
3829
  "type": {
3818
- "text": "Component[]"
3830
+ "text": "MouseEvent"
3819
3831
  }
3820
3832
  }
3821
3833
  ]
3822
3834
  },
3823
3835
  {
3824
3836
  "kind": "method",
3825
- "name": "_setPropertyTarget",
3837
+ "name": "_onClickGroup",
3826
3838
  "parameters": [
3827
3839
  {
3828
- "name": "newTarget",
3840
+ "name": "e",
3829
3841
  "type": {
3830
- "text": "Component | null"
3842
+ "text": "MouseEvent"
3831
3843
  }
3832
3844
  }
3833
3845
  ]
3834
- },
3846
+ }
3847
+ ],
3848
+ "events": [
3835
3849
  {
3836
- "kind": "method",
3837
- "name": "_setBounds",
3838
- "parameters": [
3839
- {
3840
- "name": "bounds",
3841
- "type": {
3842
- "text": "BOUNDS"
3843
- }
3844
- }
3845
- ]
3850
+ "name": "mode-changed",
3851
+ "type": {
3852
+ "text": "CustomEvent"
3853
+ }
3846
3854
  }
3847
3855
  ],
3848
3856
  "attributes": [
3849
3857
  {
3850
- "name": "scene",
3858
+ "name": "componentGroupList",
3851
3859
  "type": {
3852
- "text": "Scene | null"
3853
- },
3854
- "default": "null",
3855
- "fieldName": "scene"
3856
- },
3857
- {
3858
- "name": "bounds",
3859
- "type": {
3860
- "text": "any"
3861
- },
3862
- "default": "{}",
3863
- "fieldName": "bounds"
3864
- },
3865
- {
3866
- "name": "model",
3867
- "type": {
3868
- "text": "Model | null"
3869
- },
3870
- "default": "{}",
3871
- "fieldName": "model"
3872
- },
3873
- {
3874
- "name": "selected",
3875
- "type": {
3876
- "text": "Component[]"
3860
+ "text": "ComponentGroup[]"
3877
3861
  },
3878
3862
  "default": "[]",
3879
- "fieldName": "selected"
3880
- },
3881
- {
3882
- "name": "specificProps",
3883
- "type": {
3884
- "text": "any"
3885
- },
3886
- "fieldName": "specificProps"
3887
- },
3888
- {
3889
- "name": "tabName",
3890
- "type": {
3891
- "text": "string | null"
3892
- },
3893
- "default": "'specific'",
3894
- "fieldName": "tabName"
3863
+ "fieldName": "componentGroupList"
3895
3864
  },
3896
3865
  {
3897
- "name": "collapsed",
3866
+ "name": "group",
3898
3867
  "type": {
3899
- "text": "boolean"
3868
+ "text": "string | null | undefined"
3900
3869
  },
3901
- "default": "false",
3902
- "fieldName": "collapsed"
3870
+ "fieldName": "group"
3903
3871
  },
3904
3872
  {
3905
- "name": "fonts",
3873
+ "name": "scene",
3906
3874
  "type": {
3907
- "text": "any[]"
3875
+ "text": "Scene"
3908
3876
  },
3909
- "default": "[]",
3910
- "fieldName": "fonts"
3877
+ "fieldName": "scene"
3911
3878
  },
3912
3879
  {
3913
- "name": "propertyEditor",
3880
+ "name": "mode",
3914
3881
  "type": {
3915
- "text": "any[]"
3882
+ "text": "SCENE_MODE"
3916
3883
  },
3917
- "default": "[]",
3918
- "fieldName": "propertyEditor"
3884
+ "fieldName": "mode"
3919
3885
  }
3920
3886
  ],
3921
3887
  "mixins": [
@@ -3934,10 +3900,44 @@
3934
3900
  "exports": [
3935
3901
  {
3936
3902
  "kind": "js",
3937
- "name": "PropertySidebar",
3903
+ "name": "ComponentToolbar",
3938
3904
  "declaration": {
3939
- "name": "PropertySidebar",
3940
- "module": "src/modeller/property-sidebar/property-sidebar.ts"
3905
+ "name": "ComponentToolbar",
3906
+ "module": "src/modeller/component-toolbar/component-toolbar.ts"
3907
+ }
3908
+ }
3909
+ ]
3910
+ },
3911
+ {
3912
+ "kind": "javascript-module",
3913
+ "path": "src/modeller/component-toolbar/mode-icons.ts",
3914
+ "declarations": [
3915
+ {
3916
+ "kind": "variable",
3917
+ "name": "ICON_EDIT_MODE",
3918
+ "default": "`\n <svg\n version=\"1.1\"\n id=\"Layer_1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n x=\"0px\"\n y=\"0px\"\n viewBox=\"0 0 30 30\"\n style=\"enable-background:new 0 0 30 30;\"\n xml:space=\"preserve\"\n >\n <style type=\"text/css\">\n .st0 {\n fill: {{strokeColor}};\n }\n .st1 {\n fill: none;\n stroke: {{strokeColor}};\n stroke-width: 0.75;\n stroke-linejoin: round;\n stroke-miterlimit: 10;\n }\n </style>\n <g>\n <polygon class=\"st0\" points=\"2.7,3.9 2.7,22.8 7.8,17.2 16.1,16.9 \t\" />\n <path\n class=\"st1\"\n d=\"M27.7,20.1L26.1,19c-0.1,0-0.2,0-0.2,0c0,0.1,0,0.2,0,0.2l1.2,0.9h-4.9v-5l0.9,1.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0c0.1,0,0.1-0.1,0-0.2l-1.1-1.6c-0.1-0.1-0.2-0.1-0.2,0L20.8,16c0,0.1,0,0.2,0,0.2s0.2,0,0.2,0l0.9-1.2v5h-5\n l1.2-0.9c0.1,0,0.1-0.1,0-0.2c0-0.1-0.1-0.1-0.2,0l-1.6,1.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0.1,0.1l1.6,1.1c0,0,0.1,0,0.1,0\n c0,0,0.1,0,0.1-0.1c0-0.1,0-0.2,0-0.2l-1.2-0.9h5v5L21,24.2c0-0.1-0.1-0.1-0.2,0c-0.1,0-0.1,0.1,0,0.2l1.1,1.6c0,0,0.1,0.1,0.1,0.1\n s0.1,0,0.1-0.1l1.1-1.6c0-0.1,0-0.2,0-0.2c-0.1,0-0.2,0-0.2,0l-0.9,1.2v-5h4.9l-1.2,0.9c-0.1,0-0.1,0.1,0,0.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0l1.6-1.1c0,0,0.1-0.1,0.1-0.1C27.7,20.2,27.7,20.1,27.7,20.1z\"\n />\n </g>\n </svg>\n`"
3919
+ },
3920
+ {
3921
+ "kind": "variable",
3922
+ "name": "ICON_SHIFT_MODE",
3923
+ "default": "`\n <svg\n version=\"1.1\"\n id=\"Layer_1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n x=\"0px\"\n y=\"0px\"\n viewBox=\"0 0 30 30\"\n style=\"enable-background:new 0 0 30 30;\"\n xml:space=\"preserve\"\n >\n <style type=\"text/css\">\n .st0 {\n fill: {{strokeColor}};\n stroke: {{strokeColor}};\n fill-rule: evenodd;\n clip-rule: evenodd;\n }\n .st1 {\n fill: {{strokeColor}};\n stroke: {{strokeColor}};\n stroke-width: 0.75;\n stroke-linejoin: round;\n stroke-miterlimit: 10;\n }\n </style>\n <g>\n <path\n class=\"st0\"\n d=\"M7.8,23.2c1.6,0,3.8,0,5.7,0c0.8,0,1.3-0.3,1.6-1.2c0.4-2.9,1.5-4.9,2.4-6.9s1.4-2.5,1.6-3.4\n c0.1-0.5,0.2-1.6-0.4-1.9c-0.6-0.3-1.2,0.1-1.9,1.3c-0.8,1.6-1,2-1.4,2c-0.3,0-0.1-4,0-5.4c0.1-1.3-0.6-1.8-1.3-1.8\n c-0.8-0.1-1.5,0.4-1.5,1.5c0,1.5-0.2,5.2-0.7,5.2c-0.4,0-0.3-4.3-0.6-6.7c-0.1-1-0.6-1.8-1.5-1.8C9.1,4.2,8.4,4.7,8.3,5.8\n c-0.1,1.3,1,6.7,0.5,6.7c-0.4,0-1.4-3.3-2.3-5.1C6,6.5,5.6,6,4.6,6.4C3.9,6.7,3.5,7.6,3.8,8.5c0.5,1.2,2.7,6.8,2.2,6.8\n c-0.4,0-1.4-1.4-2.7-2.1c-1.1-0.6-1.8-0.4-2.1-0.1c-0.4,0.3-0.7,1,0.9,2.8c0.6,0.6,3.1,2.3,3.7,3.2c0.7,1.3,0.6,1,0.8,2.8\n C6.7,22.7,7,23.2,7.8,23.2z\"\n />\n <path\n class=\"st1\"\n d=\"M28.7,20.1L27.1,19c-0.1,0-0.2,0-0.2,0c0,0.1,0,0.2,0,0.2l1.2,0.9h-4.9v-5l0.9,1.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0c0.1,0,0.1-0.1,0-0.2l-1.1-1.6c-0.1-0.1-0.2-0.1-0.2,0L21.8,16c0,0.1,0,0.2,0,0.2s0.2,0,0.2,0l0.9-1.2v5h-5\n l1.2-0.9c0.1,0,0.1-0.1,0-0.2c0-0.1-0.1-0.1-0.2,0l-1.6,1.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0.1,0.1l1.6,1.1c0,0,0.1,0,0.1,0\n c0,0,0.1,0,0.1-0.1c0-0.1,0-0.2,0-0.2l-1.2-0.9h5v5L22,24.2c0-0.1-0.1-0.1-0.2,0c-0.1,0-0.1,0.1,0,0.2l1.1,1.6c0,0,0.1,0.1,0.1,0.1\n s0.1,0,0.1-0.1l1.1-1.6c0-0.1,0-0.2,0-0.2c-0.1,0-0.2,0-0.2,0l-0.9,1.2v-5h4.9l-1.2,0.9c-0.1,0-0.1,0.1,0,0.2c0,0,0.1,0.1,0.1,0.1\n c0,0,0.1,0,0.1,0l1.6-1.1c0,0,0.1-0.1,0.1-0.1C28.7,20.2,28.7,20.1,28.7,20.1z\"\n />\n </g>\n </svg>\n`"
3924
+ }
3925
+ ],
3926
+ "exports": [
3927
+ {
3928
+ "kind": "js",
3929
+ "name": "ICON_EDIT_MODE",
3930
+ "declaration": {
3931
+ "name": "ICON_EDIT_MODE",
3932
+ "module": "src/modeller/component-toolbar/mode-icons.ts"
3933
+ }
3934
+ },
3935
+ {
3936
+ "kind": "js",
3937
+ "name": "ICON_SHIFT_MODE",
3938
+ "declaration": {
3939
+ "name": "ICON_SHIFT_MODE",
3940
+ "module": "src/modeller/component-toolbar/mode-icons.ts"
3941
3941
  }
3942
3942
  }
3943
3943
  ]
@@ -5193,458 +5193,352 @@
5193
5193
  },
5194
5194
  {
5195
5195
  "kind": "javascript-module",
5196
- "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
5197
- "declarations": [
5198
- {
5199
- "kind": "variable",
5200
- "name": "BoxPaddingEditorStyles",
5201
- "default": "css`\n .box-padding {\n width: 100%;\n }\n\n .box-padding td {\n background: var(--url-icon-properties-padding) 50% 0 no-repeat;\n }\n\n .box-padding tr:nth-child(1),\n .box-padding tr:nth-child(3) {\n height: 20px;\n }\n\n .box-padding tr td:nth-child(1),\n .box-padding tr td:nth-child(3) {\n width: 18px;\n }\n\n .box-padding .slide1 {\n background-position: 0 0;\n }\n\n .box-padding .slide2 {\n background-position: 50% -40px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide3 {\n background-position: 100% -440px;\n }\n\n .box-padding .slide4 {\n background-position: 0 -360px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide5 {\n background: none;\n text-align: center;\n }\n\n .box-padding .slide6 {\n background-position: 100% -160px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide7 {\n background-position: 0 100%;\n }\n\n .box-padding .slide8 {\n background-position: 50% -320px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide9 {\n background-position: 0 0px;\n }\n\n .box-padding input {\n background-color: transparent;\n width: 35px;\n margin: 0px;\n padding: 0px;\n clear: both;\n float: initial;\n border: 1px solid #fff;\n border-width: 0 0 1px 0;\n text-align: right;\n font-size: 14px;\n }\n\n .slide5 input:nth-child(1),\n .slide5 input:nth-child(4) {\n display: block;\n margin: auto;\n }\n\n .slide5 input:nth-child(2) {\n float: left;\n }\n\n .slide5 input:nth-child(3) {\n float: right;\n margin-top: -25px;\n }\n\n .slide5 input:nth-child(4) {\n margin-top: -5px;\n }\n`"
5202
- }
5203
- ],
5204
- "exports": [
5205
- {
5206
- "kind": "js",
5207
- "name": "BoxPaddingEditorStyles",
5208
- "declaration": {
5209
- "name": "BoxPaddingEditorStyles",
5210
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
5211
- }
5212
- }
5213
- ]
5214
- },
5215
- {
5216
- "kind": "javascript-module",
5217
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
5196
+ "path": "src/modeller/property-sidebar/inspector/inspector.ts",
5218
5197
  "declarations": [
5219
5198
  {
5220
5199
  "kind": "class",
5221
5200
  "description": "",
5222
- "name": "PropertyShapes",
5201
+ "name": "SceneInspector",
5223
5202
  "members": [
5224
5203
  {
5225
5204
  "kind": "field",
5226
- "name": "value",
5205
+ "name": "scene",
5227
5206
  "type": {
5228
- "text": "Properties | undefined"
5207
+ "text": "Scene | undefined"
5229
5208
  },
5230
- "attribute": "value"
5209
+ "attribute": "scene"
5231
5210
  },
5232
5211
  {
5233
5212
  "kind": "field",
5234
- "name": "bounds",
5213
+ "name": "searchText",
5235
5214
  "type": {
5236
- "text": "BOUNDS | null"
5215
+ "text": "string"
5237
5216
  },
5238
- "default": "null",
5239
- "attribute": "bounds"
5217
+ "privacy": "private",
5218
+ "default": "''"
5240
5219
  },
5241
5220
  {
5242
5221
  "kind": "field",
5243
- "name": "selected",
5222
+ "name": "_extendedMap",
5244
5223
  "type": {
5245
- "text": "Component[]"
5224
+ "text": "any"
5246
5225
  },
5247
- "default": "[]",
5248
- "attribute": "selected"
5226
+ "privacy": "private"
5227
+ },
5228
+ {
5229
+ "kind": "field",
5230
+ "name": "show",
5231
+ "type": {
5232
+ "text": "boolean"
5233
+ },
5234
+ "privacy": "private",
5235
+ "default": "false"
5236
+ },
5237
+ {
5238
+ "kind": "field",
5239
+ "name": "count",
5240
+ "type": {
5241
+ "text": "number"
5242
+ },
5243
+ "privacy": "private",
5244
+ "default": "-1"
5249
5245
  },
5250
5246
  {
5251
5247
  "kind": "method",
5252
- "name": "_onValueChange",
5248
+ "name": "disconnectScene",
5253
5249
  "parameters": [
5254
5250
  {
5255
- "name": "e",
5251
+ "name": "scene",
5252
+ "optional": true,
5256
5253
  "type": {
5257
- "text": "Event"
5254
+ "text": "Scene"
5258
5255
  }
5259
5256
  }
5260
- ],
5261
- "inheritedFrom": {
5262
- "name": "AbstractProperty",
5263
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5264
- }
5257
+ ]
5265
5258
  },
5266
5259
  {
5267
5260
  "kind": "method",
5268
- "name": "_hasTextProperty",
5261
+ "name": "refresh"
5262
+ },
5263
+ {
5264
+ "kind": "method",
5265
+ "name": "_onclick",
5269
5266
  "parameters": [
5270
5267
  {
5271
- "name": "selected",
5268
+ "name": "e",
5272
5269
  "type": {
5273
- "text": "Component[]"
5270
+ "text": "MouseEvent"
5274
5271
  }
5275
5272
  }
5276
5273
  ]
5277
5274
  },
5278
5275
  {
5279
5276
  "kind": "method",
5280
- "name": "_hasProperties",
5277
+ "name": "_ondblclick",
5281
5278
  "parameters": [
5282
5279
  {
5283
- "name": "selected",
5280
+ "name": "e",
5284
5281
  "type": {
5285
- "text": "Component[]"
5282
+ "text": "MouseEvent"
5286
5283
  }
5287
5284
  }
5288
5285
  ]
5289
5286
  },
5287
+ {
5288
+ "kind": "field",
5289
+ "name": "extendedMap",
5290
+ "readonly": true
5291
+ },
5290
5292
  {
5291
5293
  "kind": "method",
5292
- "name": "_isIdentifiable",
5294
+ "name": "getNodeHandleClass",
5293
5295
  "parameters": [
5294
5296
  {
5295
- "name": "selected",
5297
+ "name": "component",
5296
5298
  "type": {
5297
- "text": "Component[]"
5299
+ "text": "Component"
5298
5300
  }
5299
5301
  }
5300
5302
  ]
5301
5303
  },
5302
5304
  {
5303
5305
  "kind": "method",
5304
- "name": "_isClassIdentifiable",
5306
+ "name": "isExtended",
5305
5307
  "parameters": [
5306
5308
  {
5307
- "name": "selected",
5309
+ "name": "component",
5308
5310
  "type": {
5309
- "text": "Component[]"
5311
+ "text": "Component"
5310
5312
  }
5311
5313
  }
5312
5314
  ]
5313
5315
  },
5314
5316
  {
5315
5317
  "kind": "method",
5316
- "name": "_isLine",
5318
+ "name": "toggleExtended",
5317
5319
  "parameters": [
5318
5320
  {
5319
- "name": "selected",
5321
+ "name": "component",
5320
5322
  "type": {
5321
- "text": "Component[]"
5323
+ "text": "Component"
5322
5324
  }
5323
5325
  }
5324
5326
  ]
5325
5327
  },
5326
5328
  {
5327
5329
  "kind": "method",
5328
- "name": "_is3dish",
5330
+ "name": "toggleHidden",
5329
5331
  "parameters": [
5330
5332
  {
5331
- "name": "selected",
5333
+ "name": "component",
5332
5334
  "type": {
5333
- "text": "Component[]"
5335
+ "text": "Component"
5334
5336
  }
5335
5337
  }
5336
5338
  ]
5337
5339
  },
5338
5340
  {
5339
5341
  "kind": "method",
5340
- "name": "_getValueFromEventTarget",
5342
+ "name": "selectComponent",
5341
5343
  "parameters": [
5342
5344
  {
5343
- "name": "element",
5345
+ "name": "component",
5344
5346
  "type": {
5345
- "text": "HTMLElement"
5347
+ "text": "Component"
5346
5348
  }
5347
5349
  }
5348
- ],
5349
- "inheritedFrom": {
5350
- "name": "AbstractProperty",
5351
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5352
- }
5350
+ ]
5353
5351
  },
5354
5352
  {
5355
5353
  "kind": "method",
5356
- "name": "_onAfterValueChange",
5354
+ "name": "shouldBeShown",
5355
+ "return": {
5356
+ "type": {
5357
+ "text": "boolean"
5358
+ }
5359
+ },
5357
5360
  "parameters": [
5358
5361
  {
5359
- "name": "key",
5362
+ "name": "component",
5360
5363
  "type": {
5361
- "text": "string"
5364
+ "text": "Component"
5362
5365
  }
5363
5366
  },
5364
5367
  {
5365
- "name": "value",
5368
+ "name": "counting",
5369
+ "default": "false",
5366
5370
  "type": {
5367
- "text": "any"
5371
+ "text": "boolean"
5368
5372
  }
5369
5373
  }
5370
- ],
5371
- "inheritedFrom": {
5372
- "name": "AbstractProperty",
5373
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5374
- }
5375
- }
5376
- ],
5377
- "events": [
5374
+ ]
5375
+ },
5378
5376
  {
5379
- "name": "bounds-change",
5380
- "type": {
5381
- "text": "CustomEvent"
5382
- }
5383
- },
5384
- {
5385
- "name": "property-change",
5386
- "type": {
5387
- "text": "CustomEvent"
5377
+ "kind": "method",
5378
+ "name": "renderComponent",
5379
+ "return": {
5380
+ "type": {
5381
+ "text": "TemplateResult"
5382
+ }
5388
5383
  },
5389
- "inheritedFrom": {
5390
- "name": "AbstractProperty",
5391
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5392
- }
5384
+ "parameters": [
5385
+ {
5386
+ "name": "component",
5387
+ "type": {
5388
+ "text": "Component"
5389
+ }
5390
+ },
5391
+ {
5392
+ "name": "depth",
5393
+ "type": {
5394
+ "text": "number"
5395
+ }
5396
+ }
5397
+ ]
5393
5398
  }
5394
5399
  ],
5395
5400
  "attributes": [
5396
5401
  {
5397
- "name": "value",
5398
- "type": {
5399
- "text": "Properties | undefined"
5400
- },
5401
- "fieldName": "value"
5402
- },
5403
- {
5404
- "name": "bounds",
5405
- "type": {
5406
- "text": "BOUNDS | null"
5407
- },
5408
- "default": "null",
5409
- "fieldName": "bounds"
5410
- },
5411
- {
5412
- "name": "selected",
5402
+ "name": "scene",
5413
5403
  "type": {
5414
- "text": "Component[]"
5404
+ "text": "Scene | undefined"
5415
5405
  },
5416
- "default": "[]",
5417
- "fieldName": "selected"
5406
+ "fieldName": "scene"
5418
5407
  }
5419
5408
  ],
5420
5409
  "superclass": {
5421
- "name": "AbstractProperty",
5422
- "module": "/src/modeller/property-sidebar/abstract-property"
5410
+ "name": "LitElement",
5411
+ "package": "lit"
5412
+ },
5413
+ "customElement": true
5414
+ }
5415
+ ],
5416
+ "exports": [
5417
+ {
5418
+ "kind": "js",
5419
+ "name": "SceneInspector",
5420
+ "declaration": {
5421
+ "name": "SceneInspector",
5422
+ "module": "src/modeller/property-sidebar/inspector/inspector.ts"
5423
5423
  }
5424
5424
  }
5425
+ ]
5426
+ },
5427
+ {
5428
+ "kind": "javascript-module",
5429
+ "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
5430
+ "declarations": [
5431
+ {
5432
+ "kind": "variable",
5433
+ "name": "EffectsSharedStyle",
5434
+ "default": "css`\n :host {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n\n align-items: center;\n }\n\n * {\n align-self: stretch;\n }\n\n label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n\n align-self: center;\n }\n\n input,\n select,\n ox-input-angle,\n ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n }\n\n input,\n select,\n ox-input-angle input,\n ox-input-color input,\n [custom-editor] input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n input[type='checkbox'] {\n grid-column: 4 / 5;\n align-self: center;\n }\n\n label.checkbox-label {\n grid-column: span 6;\n text-align: left;\n }\n\n [fullwidth] {\n grid-column: 1 / -1;\n }\n`"
5435
+ }
5425
5436
  ],
5426
5437
  "exports": [
5427
5438
  {
5428
5439
  "kind": "js",
5429
- "name": "PropertyShapes",
5440
+ "name": "EffectsSharedStyle",
5430
5441
  "declaration": {
5431
- "name": "PropertyShapes",
5432
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
5442
+ "name": "EffectsSharedStyle",
5443
+ "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
5433
5444
  }
5434
5445
  }
5435
5446
  ]
5436
5447
  },
5437
5448
  {
5438
5449
  "kind": "javascript-module",
5439
- "path": "src/modeller/property-sidebar/inspector/inspector.ts",
5450
+ "path": "src/modeller/property-sidebar/effects/effects.ts",
5440
5451
  "declarations": [
5441
5452
  {
5442
5453
  "kind": "class",
5443
5454
  "description": "",
5444
- "name": "SceneInspector",
5455
+ "name": "PropertyEffects",
5445
5456
  "members": [
5446
5457
  {
5447
5458
  "kind": "field",
5448
- "name": "scene",
5449
- "type": {
5450
- "text": "Scene | undefined"
5451
- },
5452
- "attribute": "scene"
5453
- },
5454
- {
5455
- "kind": "field",
5456
- "name": "searchText",
5457
- "type": {
5458
- "text": "string"
5459
- },
5460
- "privacy": "private",
5461
- "default": "''"
5462
- },
5463
- {
5464
- "kind": "field",
5465
- "name": "_extendedMap",
5466
- "type": {
5467
- "text": "any"
5468
- },
5469
- "privacy": "private"
5470
- },
5471
- {
5472
- "kind": "field",
5473
- "name": "show",
5459
+ "name": "value",
5474
5460
  "type": {
5475
- "text": "boolean"
5461
+ "text": "Properties | undefined"
5476
5462
  },
5477
- "privacy": "private",
5478
- "default": "false"
5479
- },
5480
- {
5481
- "kind": "method",
5482
- "name": "disconnectScene",
5483
- "parameters": [
5484
- {
5485
- "name": "scene",
5486
- "optional": true,
5487
- "type": {
5488
- "text": "Scene"
5489
- }
5490
- }
5491
- ]
5492
- },
5493
- {
5494
- "kind": "method",
5495
- "name": "refresh"
5463
+ "attribute": "value"
5496
5464
  },
5497
5465
  {
5498
5466
  "kind": "field",
5499
- "name": "sortableConfig",
5467
+ "name": "scene",
5500
5468
  "type": {
5501
- "text": "Sortable.Options"
5469
+ "text": "Scene | undefined"
5502
5470
  },
5503
- "default": "{\n group: 'inspector',\n animation: 150,\n draggable: '.component',\n swapThreshold: 1,\n onSort: this.onSort.bind(this)\n }"
5504
- },
5505
- {
5506
- "kind": "method",
5507
- "name": "onSort",
5508
- "parameters": [
5509
- {
5510
- "name": "e",
5511
- "type": {
5512
- "text": "Sortable.SortableEvent"
5513
- }
5514
- }
5515
- ]
5516
- },
5517
- {
5518
- "kind": "method",
5519
- "name": "_onclick",
5520
- "parameters": [
5521
- {
5522
- "name": "e",
5523
- "type": {
5524
- "text": "MouseEvent"
5525
- }
5526
- }
5527
- ]
5528
- },
5529
- {
5530
- "kind": "method",
5531
- "name": "_ondblclick",
5532
- "parameters": [
5533
- {
5534
- "name": "e",
5535
- "type": {
5536
- "text": "MouseEvent"
5537
- }
5538
- }
5539
- ]
5471
+ "attribute": "scene"
5540
5472
  },
5541
5473
  {
5542
5474
  "kind": "field",
5543
- "name": "extendedMap",
5475
+ "name": "scopedElements",
5476
+ "static": true,
5544
5477
  "readonly": true
5545
5478
  },
5546
5479
  {
5547
5480
  "kind": "method",
5548
- "name": "getNodeHandleClass",
5549
- "parameters": [
5550
- {
5551
- "name": "component",
5552
- "type": {
5553
- "text": "Component"
5554
- }
5555
- }
5556
- ]
5557
- },
5558
- {
5559
- "kind": "method",
5560
- "name": "isExtended",
5561
- "parameters": [
5562
- {
5563
- "name": "component",
5564
- "type": {
5565
- "text": "Component"
5566
- }
5567
- }
5568
- ]
5569
- },
5570
- {
5571
- "kind": "method",
5572
- "name": "toggleExtended",
5573
- "parameters": [
5574
- {
5575
- "name": "component",
5576
- "type": {
5577
- "text": "Component"
5578
- }
5579
- }
5580
- ]
5581
- },
5582
- {
5583
- "kind": "method",
5584
- "name": "toggleHidden",
5585
- "parameters": [
5586
- {
5587
- "name": "component",
5588
- "type": {
5589
- "text": "Component"
5590
- }
5591
- }
5592
- ]
5593
- },
5594
- {
5595
- "kind": "method",
5596
- "name": "selectComponent",
5481
+ "name": "_onValueChange",
5597
5482
  "parameters": [
5598
5483
  {
5599
- "name": "component",
5484
+ "name": "e",
5600
5485
  "type": {
5601
- "text": "Component"
5486
+ "text": "Event"
5602
5487
  }
5603
5488
  }
5604
- ]
5489
+ ],
5490
+ "inheritedFrom": {
5491
+ "name": "AbstractProperty",
5492
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5493
+ }
5605
5494
  },
5606
5495
  {
5607
5496
  "kind": "method",
5608
- "name": "shouldBeShown",
5609
- "return": {
5610
- "type": {
5611
- "text": "boolean"
5612
- }
5613
- },
5497
+ "name": "_getValueFromEventTarget",
5614
5498
  "parameters": [
5615
5499
  {
5616
- "name": "component",
5500
+ "name": "element",
5617
5501
  "type": {
5618
- "text": "Component"
5502
+ "text": "HTMLElement"
5619
5503
  }
5620
5504
  }
5621
- ]
5505
+ ],
5506
+ "inheritedFrom": {
5507
+ "name": "AbstractProperty",
5508
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5509
+ }
5622
5510
  },
5623
5511
  {
5624
5512
  "kind": "method",
5625
- "name": "renderComponent",
5626
- "return": {
5627
- "type": {
5628
- "text": "TemplateResult"
5629
- }
5630
- },
5513
+ "name": "_onAfterValueChange",
5631
5514
  "parameters": [
5632
5515
  {
5633
- "name": "component",
5516
+ "name": "key",
5634
5517
  "type": {
5635
- "text": "Component"
5518
+ "text": "string"
5636
5519
  }
5637
5520
  },
5638
5521
  {
5639
- "name": "depth",
5522
+ "name": "value",
5640
5523
  "type": {
5641
- "text": "number"
5524
+ "text": "any"
5642
5525
  }
5643
5526
  }
5644
- ]
5527
+ ],
5528
+ "inheritedFrom": {
5529
+ "name": "AbstractProperty",
5530
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5531
+ }
5645
5532
  }
5646
5533
  ],
5647
5534
  "attributes": [
5535
+ {
5536
+ "name": "value",
5537
+ "type": {
5538
+ "text": "Properties | undefined"
5539
+ },
5540
+ "fieldName": "value"
5541
+ },
5648
5542
  {
5649
5543
  "name": "scene",
5650
5544
  "type": {
@@ -5653,77 +5547,98 @@
5653
5547
  "fieldName": "scene"
5654
5548
  }
5655
5549
  ],
5550
+ "mixins": [
5551
+ {
5552
+ "name": "ScopedElementsMixin",
5553
+ "package": "@open-wc/scoped-elements"
5554
+ }
5555
+ ],
5656
5556
  "superclass": {
5657
- "name": "LitElement",
5658
- "package": "lit"
5557
+ "name": "AbstractProperty",
5558
+ "module": "/src/modeller/property-sidebar/abstract-property.js"
5659
5559
  },
5660
- "customElement": true
5560
+ "events": [
5561
+ {
5562
+ "name": "property-change",
5563
+ "type": {
5564
+ "text": "CustomEvent"
5565
+ },
5566
+ "inheritedFrom": {
5567
+ "name": "AbstractProperty",
5568
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5569
+ }
5570
+ }
5571
+ ]
5661
5572
  }
5662
5573
  ],
5663
5574
  "exports": [
5664
5575
  {
5665
5576
  "kind": "js",
5666
- "name": "SceneInspector",
5577
+ "name": "PropertyEffects",
5667
5578
  "declaration": {
5668
- "name": "SceneInspector",
5669
- "module": "src/modeller/property-sidebar/inspector/inspector.ts"
5579
+ "name": "PropertyEffects",
5580
+ "module": "src/modeller/property-sidebar/effects/effects.ts"
5670
5581
  }
5671
5582
  }
5672
5583
  ]
5673
5584
  },
5674
5585
  {
5675
5586
  "kind": "javascript-module",
5676
- "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
5587
+ "path": "src/modeller/property-sidebar/effects/property-event-hover.ts",
5677
5588
  "declarations": [
5678
5589
  {
5679
5590
  "kind": "class",
5680
5591
  "description": "",
5681
- "name": "SpecificPropertiesBuilder",
5592
+ "name": "PropertyEventHover",
5682
5593
  "members": [
5683
5594
  {
5684
5595
  "kind": "field",
5685
5596
  "name": "value",
5686
5597
  "type": {
5687
- "text": "any"
5598
+ "text": "Properties | undefined"
5688
5599
  },
5689
5600
  "attribute": "value"
5690
5601
  },
5691
5602
  {
5692
5603
  "kind": "field",
5693
- "name": "props",
5694
- "type": {
5695
- "text": "any[]"
5696
- },
5697
- "default": "[]",
5698
- "attribute": "props"
5699
- },
5700
- {
5701
- "kind": "field",
5702
- "name": "propertyEditor",
5604
+ "name": "scene",
5703
5605
  "type": {
5704
- "text": "any"
5606
+ "text": "Scene | undefined"
5705
5607
  },
5706
- "attribute": "propertyEditor"
5608
+ "attribute": "scene"
5707
5609
  },
5708
5610
  {
5709
5611
  "kind": "method",
5710
- "name": "_onPropsChanged",
5612
+ "name": "_getPlaceHoder",
5711
5613
  "parameters": [
5712
5614
  {
5713
- "name": "props",
5615
+ "name": "action",
5714
5616
  "type": {
5715
- "text": "any[]"
5617
+ "text": "string"
5716
5618
  }
5717
5619
  }
5718
5620
  ]
5719
5621
  },
5720
5622
  {
5721
5623
  "kind": "method",
5722
- "name": "_setValues"
5624
+ "name": "_getTargetList",
5625
+ "return": {
5626
+ "type": {
5627
+ "text": "{ value: string; description: string }[]"
5628
+ }
5629
+ },
5630
+ "parameters": [
5631
+ {
5632
+ "name": "action",
5633
+ "type": {
5634
+ "text": "string"
5635
+ }
5636
+ }
5637
+ ]
5723
5638
  },
5724
5639
  {
5725
5640
  "kind": "method",
5726
- "name": "_onValueChanged",
5641
+ "name": "_onValueChange",
5727
5642
  "parameters": [
5728
5643
  {
5729
5644
  "name": "e",
@@ -5736,7 +5651,7 @@
5736
5651
  ],
5737
5652
  "events": [
5738
5653
  {
5739
- "name": "property-change",
5654
+ "name": "change",
5740
5655
  "type": {
5741
5656
  "text": "CustomEvent"
5742
5657
  }
@@ -5746,24 +5661,16 @@
5746
5661
  {
5747
5662
  "name": "value",
5748
5663
  "type": {
5749
- "text": "any"
5664
+ "text": "Properties | undefined"
5750
5665
  },
5751
5666
  "fieldName": "value"
5752
5667
  },
5753
5668
  {
5754
- "name": "props",
5755
- "type": {
5756
- "text": "any[]"
5757
- },
5758
- "default": "[]",
5759
- "fieldName": "props"
5760
- },
5761
- {
5762
- "name": "propertyEditor",
5669
+ "name": "scene",
5763
5670
  "type": {
5764
- "text": "any"
5671
+ "text": "Scene | undefined"
5765
5672
  },
5766
- "fieldName": "propertyEditor"
5673
+ "fieldName": "scene"
5767
5674
  }
5768
5675
  ],
5769
5676
  "superclass": {
@@ -5776,28 +5683,28 @@
5776
5683
  "exports": [
5777
5684
  {
5778
5685
  "kind": "js",
5779
- "name": "SpecificPropertiesBuilder",
5686
+ "name": "PropertyEventHover",
5780
5687
  "declaration": {
5781
- "name": "SpecificPropertiesBuilder",
5782
- "module": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts"
5688
+ "name": "PropertyEventHover",
5689
+ "module": "src/modeller/property-sidebar/effects/property-event-hover.ts"
5783
5690
  }
5784
5691
  }
5785
5692
  ]
5786
5693
  },
5787
5694
  {
5788
5695
  "kind": "javascript-module",
5789
- "path": "src/modeller/property-sidebar/specifics/specifics.ts",
5696
+ "path": "src/modeller/property-sidebar/effects/property-event-tap.ts",
5790
5697
  "declarations": [
5791
5698
  {
5792
5699
  "kind": "class",
5793
5700
  "description": "",
5794
- "name": "PropertySpecific",
5701
+ "name": "PropertyEventTap",
5795
5702
  "members": [
5796
5703
  {
5797
5704
  "kind": "field",
5798
5705
  "name": "value",
5799
5706
  "type": {
5800
- "text": "any"
5707
+ "text": "Properties | undefined"
5801
5708
  },
5802
5709
  "attribute": "value"
5803
5710
  },
@@ -5805,140 +5712,73 @@
5805
5712
  "kind": "field",
5806
5713
  "name": "scene",
5807
5714
  "type": {
5808
- "text": "Scene | null"
5715
+ "text": "Scene | undefined"
5809
5716
  },
5810
- "default": "null",
5811
5717
  "attribute": "scene"
5812
5718
  },
5813
5719
  {
5814
5720
  "kind": "field",
5815
- "name": "selected",
5816
- "type": {
5817
- "text": "Component[]"
5818
- },
5819
- "default": "[]",
5820
- "attribute": "selected"
5821
- },
5822
- {
5823
- "kind": "field",
5824
- "name": "props",
5825
- "type": {
5826
- "text": "any[]"
5827
- },
5828
- "default": "[]",
5829
- "attribute": "props"
5830
- },
5831
- {
5832
- "kind": "field",
5833
- "name": "propertyEditor",
5721
+ "name": "scenarios",
5834
5722
  "type": {
5835
- "text": "any[]"
5723
+ "text": "{ value: string; description: string }[]"
5836
5724
  },
5837
- "default": "[]",
5838
- "attribute": "propertyEditor"
5725
+ "default": "[]"
5839
5726
  },
5840
5727
  {
5841
5728
  "kind": "field",
5842
- "name": "boundINeedSelected",
5729
+ "name": "targetList",
5843
5730
  "type": {
5844
- "text": "any"
5731
+ "text": "{ value: string; description: string }[]"
5845
5732
  },
5846
- "privacy": "private"
5847
- },
5848
- {
5849
- "kind": "field",
5850
- "name": "scopedElements",
5851
- "static": true,
5852
- "readonly": true
5853
- },
5854
- {
5855
- "kind": "method",
5856
- "name": "_onValueChange",
5857
- "parameters": [
5858
- {
5859
- "name": "e",
5860
- "type": {
5861
- "text": "Event"
5862
- }
5863
- }
5864
- ],
5865
- "inheritedFrom": {
5866
- "name": "AbstractProperty",
5867
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5868
- }
5733
+ "default": "[]"
5869
5734
  },
5870
5735
  {
5871
5736
  "kind": "method",
5872
- "name": "_isIdentifiable",
5737
+ "name": "_getPlaceHoder",
5873
5738
  "parameters": [
5874
5739
  {
5875
- "name": "selected",
5740
+ "name": "action",
5876
5741
  "type": {
5877
- "text": "Component[]"
5742
+ "text": "string"
5878
5743
  }
5879
5744
  }
5880
5745
  ]
5881
5746
  },
5882
5747
  {
5883
5748
  "kind": "method",
5884
- "name": "_hasTextProperty",
5749
+ "name": "_getInputList",
5750
+ "return": {
5751
+ "type": {
5752
+ "text": "{ value: string; description: string }[]"
5753
+ }
5754
+ },
5885
5755
  "parameters": [
5886
5756
  {
5887
- "name": "selected",
5757
+ "name": "action",
5888
5758
  "type": {
5889
- "text": "Component[]"
5759
+ "text": "string"
5890
5760
  }
5891
5761
  }
5892
5762
  ]
5893
5763
  },
5894
5764
  {
5895
5765
  "kind": "method",
5896
- "name": "_onINeedSelected",
5766
+ "name": "_onValueChange",
5897
5767
  "parameters": [
5898
5768
  {
5899
5769
  "name": "e",
5900
5770
  "type": {
5901
- "text": "CustomEvent"
5771
+ "text": "Event"
5902
5772
  }
5903
5773
  }
5904
5774
  ]
5905
- },
5906
- {
5907
- "kind": "method",
5908
- "name": "_getValueFromEventTarget",
5909
- "parameters": [
5910
- {
5911
- "name": "element",
5912
- "type": {
5913
- "text": "HTMLElement"
5914
- }
5915
- }
5916
- ],
5917
- "inheritedFrom": {
5918
- "name": "AbstractProperty",
5919
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5920
- }
5921
- },
5775
+ }
5776
+ ],
5777
+ "events": [
5922
5778
  {
5923
- "kind": "method",
5924
- "name": "_onAfterValueChange",
5925
- "parameters": [
5926
- {
5927
- "name": "key",
5928
- "type": {
5929
- "text": "string"
5930
- }
5931
- },
5932
- {
5933
- "name": "value",
5934
- "type": {
5935
- "text": "any"
5936
- }
5937
- }
5938
- ],
5939
- "inheritedFrom": {
5940
- "name": "AbstractProperty",
5941
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5779
+ "name": "change",
5780
+ "type": {
5781
+ "text": "CustomEvent"
5942
5782
  }
5943
5783
  }
5944
5784
  ],
@@ -5946,107 +5786,44 @@
5946
5786
  {
5947
5787
  "name": "value",
5948
5788
  "type": {
5949
- "text": "any"
5789
+ "text": "Properties | undefined"
5950
5790
  },
5951
5791
  "fieldName": "value"
5952
5792
  },
5953
5793
  {
5954
5794
  "name": "scene",
5955
5795
  "type": {
5956
- "text": "Scene | null"
5957
- },
5958
- "default": "null",
5959
- "fieldName": "scene"
5960
- },
5961
- {
5962
- "name": "selected",
5963
- "type": {
5964
- "text": "Component[]"
5965
- },
5966
- "default": "[]",
5967
- "fieldName": "selected"
5968
- },
5969
- {
5970
- "name": "props",
5971
- "type": {
5972
- "text": "any[]"
5973
- },
5974
- "default": "[]",
5975
- "fieldName": "props"
5976
- },
5977
- {
5978
- "name": "propertyEditor",
5979
- "type": {
5980
- "text": "any[]"
5981
- },
5982
- "default": "[]",
5983
- "fieldName": "propertyEditor"
5984
- }
5985
- ],
5986
- "mixins": [
5987
- {
5988
- "name": "ScopedElementsMixin",
5989
- "package": "@open-wc/scoped-elements"
5990
- }
5991
- ],
5992
- "superclass": {
5993
- "name": "AbstractProperty",
5994
- "module": "/src/modeller/property-sidebar/abstract-property"
5995
- },
5996
- "events": [
5997
- {
5998
- "name": "property-change",
5999
- "type": {
6000
- "text": "CustomEvent"
6001
- },
6002
- "inheritedFrom": {
6003
- "name": "AbstractProperty",
6004
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6005
- }
5796
+ "text": "Scene | undefined"
5797
+ },
5798
+ "fieldName": "scene"
6006
5799
  }
6007
- ]
6008
- }
6009
- ],
6010
- "exports": [
6011
- {
6012
- "kind": "js",
6013
- "name": "PropertySpecific",
6014
- "declaration": {
6015
- "name": "PropertySpecific",
6016
- "module": "src/modeller/property-sidebar/specifics/specifics.ts"
6017
- }
6018
- }
6019
- ]
6020
- },
6021
- {
6022
- "kind": "javascript-module",
6023
- "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
6024
- "declarations": [
6025
- {
6026
- "kind": "variable",
6027
- "name": "EffectsSharedStyle",
6028
- "default": "css`\n :host {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n\n align-items: center;\n }\n\n * {\n align-self: stretch;\n }\n\n label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n\n align-self: center;\n }\n\n input,\n select,\n ox-input-angle,\n ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n }\n\n input,\n select,\n ox-input-angle input,\n ox-input-color input,\n [custom-editor] input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n input[type='checkbox'] {\n grid-column: 4 / 5;\n align-self: center;\n }\n\n label.checkbox-label {\n grid-column: span 6;\n text-align: left;\n }\n\n [fullwidth] {\n grid-column: 1 / -1;\n }\n`"
5800
+ ],
5801
+ "superclass": {
5802
+ "name": "LitElement",
5803
+ "package": "lit"
5804
+ },
5805
+ "customElement": true
6029
5806
  }
6030
5807
  ],
6031
5808
  "exports": [
6032
5809
  {
6033
5810
  "kind": "js",
6034
- "name": "EffectsSharedStyle",
5811
+ "name": "PropertyEventTap",
6035
5812
  "declaration": {
6036
- "name": "EffectsSharedStyle",
6037
- "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
5813
+ "name": "PropertyEventTap",
5814
+ "module": "src/modeller/property-sidebar/effects/property-event-tap.ts"
6038
5815
  }
6039
5816
  }
6040
5817
  ]
6041
5818
  },
6042
5819
  {
6043
5820
  "kind": "javascript-module",
6044
- "path": "src/modeller/property-sidebar/effects/effects.ts",
5821
+ "path": "src/modeller/property-sidebar/effects/property-event.ts",
6045
5822
  "declarations": [
6046
5823
  {
6047
5824
  "kind": "class",
6048
5825
  "description": "",
6049
- "name": "PropertyEffects",
5826
+ "name": "PropertyEvent",
6050
5827
  "members": [
6051
5828
  {
6052
5829
  "kind": "field",
@@ -6080,48 +5857,14 @@
6080
5857
  "text": "Event"
6081
5858
  }
6082
5859
  }
6083
- ],
6084
- "inheritedFrom": {
6085
- "name": "AbstractProperty",
6086
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6087
- }
6088
- },
6089
- {
6090
- "kind": "method",
6091
- "name": "_getValueFromEventTarget",
6092
- "parameters": [
6093
- {
6094
- "name": "element",
6095
- "type": {
6096
- "text": "HTMLElement"
6097
- }
6098
- }
6099
- ],
6100
- "inheritedFrom": {
6101
- "name": "AbstractProperty",
6102
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6103
- }
6104
- },
5860
+ ]
5861
+ }
5862
+ ],
5863
+ "events": [
6105
5864
  {
6106
- "kind": "method",
6107
- "name": "_onAfterValueChange",
6108
- "parameters": [
6109
- {
6110
- "name": "key",
6111
- "type": {
6112
- "text": "string"
6113
- }
6114
- },
6115
- {
6116
- "name": "value",
6117
- "type": {
6118
- "text": "any"
6119
- }
6120
- }
6121
- ],
6122
- "inheritedFrom": {
6123
- "name": "AbstractProperty",
6124
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5865
+ "name": "change",
5866
+ "type": {
5867
+ "text": "CustomEvent"
6125
5868
  }
6126
5869
  }
6127
5870
  ],
@@ -6148,42 +5891,31 @@
6148
5891
  }
6149
5892
  ],
6150
5893
  "superclass": {
6151
- "name": "AbstractProperty",
6152
- "module": "/src/modeller/property-sidebar/abstract-property.js"
5894
+ "name": "LitElement",
5895
+ "package": "lit"
6153
5896
  },
6154
- "events": [
6155
- {
6156
- "name": "property-change",
6157
- "type": {
6158
- "text": "CustomEvent"
6159
- },
6160
- "inheritedFrom": {
6161
- "name": "AbstractProperty",
6162
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6163
- }
6164
- }
6165
- ]
5897
+ "customElement": true
6166
5898
  }
6167
5899
  ],
6168
5900
  "exports": [
6169
5901
  {
6170
5902
  "kind": "js",
6171
- "name": "PropertyEffects",
5903
+ "name": "PropertyEvent",
6172
5904
  "declaration": {
6173
- "name": "PropertyEffects",
6174
- "module": "src/modeller/property-sidebar/effects/effects.ts"
5905
+ "name": "PropertyEvent",
5906
+ "module": "src/modeller/property-sidebar/effects/property-event.ts"
6175
5907
  }
6176
5908
  }
6177
5909
  ]
6178
5910
  },
6179
5911
  {
6180
5912
  "kind": "javascript-module",
6181
- "path": "src/modeller/property-sidebar/effects/property-event-hover.ts",
5913
+ "path": "src/modeller/property-sidebar/effects/property-shadow.ts",
6182
5914
  "declarations": [
6183
5915
  {
6184
5916
  "kind": "class",
6185
- "description": "",
6186
- "name": "PropertyEventHover",
5917
+ "description": "컴포넌트의 그림자 속성을 편집하는 element\n\nExample:\n <property-shadow",
5918
+ "name": "PropertyShadow",
6187
5919
  "members": [
6188
5920
  {
6189
5921
  "kind": "field",
@@ -6193,43 +5925,6 @@
6193
5925
  },
6194
5926
  "attribute": "value"
6195
5927
  },
6196
- {
6197
- "kind": "field",
6198
- "name": "scene",
6199
- "type": {
6200
- "text": "Scene | undefined"
6201
- },
6202
- "attribute": "scene"
6203
- },
6204
- {
6205
- "kind": "method",
6206
- "name": "_getPlaceHoder",
6207
- "parameters": [
6208
- {
6209
- "name": "action",
6210
- "type": {
6211
- "text": "string"
6212
- }
6213
- }
6214
- ]
6215
- },
6216
- {
6217
- "kind": "method",
6218
- "name": "_getTargetList",
6219
- "return": {
6220
- "type": {
6221
- "text": "{ value: string; description: string }[]"
6222
- }
6223
- },
6224
- "parameters": [
6225
- {
6226
- "name": "action",
6227
- "type": {
6228
- "text": "string"
6229
- }
6230
- }
6231
- ]
6232
- },
6233
5928
  {
6234
5929
  "kind": "method",
6235
5930
  "name": "_onValueChange",
@@ -6258,13 +5953,6 @@
6258
5953
  "text": "Properties | undefined"
6259
5954
  },
6260
5955
  "fieldName": "value"
6261
- },
6262
- {
6263
- "name": "scene",
6264
- "type": {
6265
- "text": "Scene | undefined"
6266
- },
6267
- "fieldName": "scene"
6268
5956
  }
6269
5957
  ],
6270
5958
  "superclass": {
@@ -6277,87 +5965,95 @@
6277
5965
  "exports": [
6278
5966
  {
6279
5967
  "kind": "js",
6280
- "name": "PropertyEventHover",
5968
+ "name": "PropertyShadow",
6281
5969
  "declaration": {
6282
- "name": "PropertyEventHover",
6283
- "module": "src/modeller/property-sidebar/effects/property-event-hover.ts"
5970
+ "name": "PropertyShadow",
5971
+ "module": "src/modeller/property-sidebar/effects/property-shadow.ts"
6284
5972
  }
6285
5973
  }
6286
5974
  ]
6287
5975
  },
6288
5976
  {
6289
5977
  "kind": "javascript-module",
6290
- "path": "src/modeller/property-sidebar/effects/property-event-tap.ts",
5978
+ "path": "src/modeller/property-sidebar/effects/value-converter.ts",
5979
+ "declarations": [
5980
+ {
5981
+ "kind": "function",
5982
+ "name": "convert",
5983
+ "parameters": [
5984
+ {
5985
+ "name": "element",
5986
+ "type": {
5987
+ "text": "any"
5988
+ }
5989
+ }
5990
+ ]
5991
+ }
5992
+ ],
5993
+ "exports": [
5994
+ {
5995
+ "kind": "js",
5996
+ "name": "convert",
5997
+ "declaration": {
5998
+ "name": "convert",
5999
+ "module": "src/modeller/property-sidebar/effects/value-converter.ts"
6000
+ }
6001
+ }
6002
+ ]
6003
+ },
6004
+ {
6005
+ "kind": "javascript-module",
6006
+ "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
6291
6007
  "declarations": [
6292
6008
  {
6293
6009
  "kind": "class",
6294
6010
  "description": "",
6295
- "name": "PropertyEventTap",
6011
+ "name": "SpecificPropertiesBuilder",
6296
6012
  "members": [
6297
6013
  {
6298
6014
  "kind": "field",
6299
6015
  "name": "value",
6300
6016
  "type": {
6301
- "text": "Properties | undefined"
6017
+ "text": "any"
6302
6018
  },
6303
6019
  "attribute": "value"
6304
6020
  },
6305
6021
  {
6306
6022
  "kind": "field",
6307
- "name": "scene",
6308
- "type": {
6309
- "text": "Scene | undefined"
6310
- },
6311
- "attribute": "scene"
6312
- },
6313
- {
6314
- "kind": "field",
6315
- "name": "scenarios",
6023
+ "name": "props",
6316
6024
  "type": {
6317
- "text": "{ value: string; description: string }[]"
6025
+ "text": "any[]"
6318
6026
  },
6319
- "default": "[]"
6027
+ "default": "[]",
6028
+ "attribute": "props"
6320
6029
  },
6321
6030
  {
6322
6031
  "kind": "field",
6323
- "name": "targetList",
6032
+ "name": "propertyEditor",
6324
6033
  "type": {
6325
- "text": "{ value: string; description: string }[]"
6034
+ "text": "any"
6326
6035
  },
6327
- "default": "[]"
6036
+ "attribute": "propertyEditor"
6328
6037
  },
6329
6038
  {
6330
6039
  "kind": "method",
6331
- "name": "_getPlaceHoder",
6040
+ "name": "_onPropsChanged",
6332
6041
  "parameters": [
6333
6042
  {
6334
- "name": "action",
6043
+ "name": "props",
6335
6044
  "type": {
6336
- "text": "string"
6045
+ "text": "any[]"
6337
6046
  }
6338
6047
  }
6339
6048
  ]
6340
6049
  },
6341
6050
  {
6342
6051
  "kind": "method",
6343
- "name": "_getInputList",
6344
- "return": {
6345
- "type": {
6346
- "text": "{ value: string; description: string }[]"
6347
- }
6348
- },
6349
- "parameters": [
6350
- {
6351
- "name": "action",
6352
- "type": {
6353
- "text": "string"
6354
- }
6355
- }
6356
- ]
6052
+ "name": "_setValues"
6357
6053
  },
6358
6054
  {
6359
6055
  "kind": "method",
6360
- "name": "_onValueChange",
6056
+ "name": "_onValueChanged",
6361
6057
  "parameters": [
6362
6058
  {
6363
6059
  "name": "e",
@@ -6370,7 +6066,7 @@
6370
6066
  ],
6371
6067
  "events": [
6372
6068
  {
6373
- "name": "change",
6069
+ "name": "property-change",
6374
6070
  "type": {
6375
6071
  "text": "CustomEvent"
6376
6072
  }
@@ -6380,16 +6076,24 @@
6380
6076
  {
6381
6077
  "name": "value",
6382
6078
  "type": {
6383
- "text": "Properties | undefined"
6079
+ "text": "any"
6080
+ },
6081
+ "fieldName": "value"
6082
+ },
6083
+ {
6084
+ "name": "props",
6085
+ "type": {
6086
+ "text": "any[]"
6384
6087
  },
6385
- "fieldName": "value"
6088
+ "default": "[]",
6089
+ "fieldName": "props"
6386
6090
  },
6387
6091
  {
6388
- "name": "scene",
6092
+ "name": "propertyEditor",
6389
6093
  "type": {
6390
- "text": "Scene | undefined"
6094
+ "text": "any"
6391
6095
  },
6392
- "fieldName": "scene"
6096
+ "fieldName": "propertyEditor"
6393
6097
  }
6394
6098
  ],
6395
6099
  "superclass": {
@@ -6402,28 +6106,28 @@
6402
6106
  "exports": [
6403
6107
  {
6404
6108
  "kind": "js",
6405
- "name": "PropertyEventTap",
6109
+ "name": "SpecificPropertiesBuilder",
6406
6110
  "declaration": {
6407
- "name": "PropertyEventTap",
6408
- "module": "src/modeller/property-sidebar/effects/property-event-tap.ts"
6111
+ "name": "SpecificPropertiesBuilder",
6112
+ "module": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts"
6409
6113
  }
6410
6114
  }
6411
6115
  ]
6412
6116
  },
6413
6117
  {
6414
6118
  "kind": "javascript-module",
6415
- "path": "src/modeller/property-sidebar/effects/property-event.ts",
6119
+ "path": "src/modeller/property-sidebar/specifics/specifics.ts",
6416
6120
  "declarations": [
6417
6121
  {
6418
6122
  "kind": "class",
6419
6123
  "description": "",
6420
- "name": "PropertyEvent",
6124
+ "name": "PropertySpecific",
6421
6125
  "members": [
6422
6126
  {
6423
6127
  "kind": "field",
6424
6128
  "name": "value",
6425
6129
  "type": {
6426
- "text": "Properties | undefined"
6130
+ "text": "any"
6427
6131
  },
6428
6132
  "attribute": "value"
6429
6133
  },
@@ -6431,10 +6135,46 @@
6431
6135
  "kind": "field",
6432
6136
  "name": "scene",
6433
6137
  "type": {
6434
- "text": "Scene | undefined"
6138
+ "text": "Scene | null"
6435
6139
  },
6140
+ "default": "null",
6436
6141
  "attribute": "scene"
6437
6142
  },
6143
+ {
6144
+ "kind": "field",
6145
+ "name": "selected",
6146
+ "type": {
6147
+ "text": "Component[]"
6148
+ },
6149
+ "default": "[]",
6150
+ "attribute": "selected"
6151
+ },
6152
+ {
6153
+ "kind": "field",
6154
+ "name": "props",
6155
+ "type": {
6156
+ "text": "any[]"
6157
+ },
6158
+ "default": "[]",
6159
+ "attribute": "props"
6160
+ },
6161
+ {
6162
+ "kind": "field",
6163
+ "name": "propertyEditor",
6164
+ "type": {
6165
+ "text": "any[]"
6166
+ },
6167
+ "default": "[]",
6168
+ "attribute": "propertyEditor"
6169
+ },
6170
+ {
6171
+ "kind": "field",
6172
+ "name": "boundINeedSelected",
6173
+ "type": {
6174
+ "text": "any"
6175
+ },
6176
+ "privacy": "private"
6177
+ },
6438
6178
  {
6439
6179
  "kind": "field",
6440
6180
  "name": "scopedElements",
@@ -6451,14 +6191,84 @@
6451
6191
  "text": "Event"
6452
6192
  }
6453
6193
  }
6194
+ ],
6195
+ "inheritedFrom": {
6196
+ "name": "AbstractProperty",
6197
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6198
+ }
6199
+ },
6200
+ {
6201
+ "kind": "method",
6202
+ "name": "_isIdentifiable",
6203
+ "parameters": [
6204
+ {
6205
+ "name": "selected",
6206
+ "type": {
6207
+ "text": "Component[]"
6208
+ }
6209
+ }
6454
6210
  ]
6455
- }
6456
- ],
6457
- "events": [
6211
+ },
6458
6212
  {
6459
- "name": "change",
6460
- "type": {
6461
- "text": "CustomEvent"
6213
+ "kind": "method",
6214
+ "name": "_hasTextProperty",
6215
+ "parameters": [
6216
+ {
6217
+ "name": "selected",
6218
+ "type": {
6219
+ "text": "Component[]"
6220
+ }
6221
+ }
6222
+ ]
6223
+ },
6224
+ {
6225
+ "kind": "method",
6226
+ "name": "_onINeedSelected",
6227
+ "parameters": [
6228
+ {
6229
+ "name": "e",
6230
+ "type": {
6231
+ "text": "CustomEvent"
6232
+ }
6233
+ }
6234
+ ]
6235
+ },
6236
+ {
6237
+ "kind": "method",
6238
+ "name": "_getValueFromEventTarget",
6239
+ "parameters": [
6240
+ {
6241
+ "name": "element",
6242
+ "type": {
6243
+ "text": "HTMLElement"
6244
+ }
6245
+ }
6246
+ ],
6247
+ "inheritedFrom": {
6248
+ "name": "AbstractProperty",
6249
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6250
+ }
6251
+ },
6252
+ {
6253
+ "kind": "method",
6254
+ "name": "_onAfterValueChange",
6255
+ "parameters": [
6256
+ {
6257
+ "name": "key",
6258
+ "type": {
6259
+ "text": "string"
6260
+ }
6261
+ },
6262
+ {
6263
+ "name": "value",
6264
+ "type": {
6265
+ "text": "any"
6266
+ }
6267
+ }
6268
+ ],
6269
+ "inheritedFrom": {
6270
+ "name": "AbstractProperty",
6271
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6462
6272
  }
6463
6273
  }
6464
6274
  ],
@@ -6466,119 +6276,62 @@
6466
6276
  {
6467
6277
  "name": "value",
6468
6278
  "type": {
6469
- "text": "Properties | undefined"
6279
+ "text": "any"
6470
6280
  },
6471
6281
  "fieldName": "value"
6472
6282
  },
6473
6283
  {
6474
6284
  "name": "scene",
6475
6285
  "type": {
6476
- "text": "Scene | undefined"
6286
+ "text": "Scene | null"
6477
6287
  },
6288
+ "default": "null",
6478
6289
  "fieldName": "scene"
6479
- }
6480
- ],
6481
- "mixins": [
6482
- {
6483
- "name": "ScopedElementsMixin",
6484
- "package": "@open-wc/scoped-elements"
6485
- }
6486
- ],
6487
- "superclass": {
6488
- "name": "LitElement",
6489
- "package": "lit"
6490
- },
6491
- "customElement": true
6492
- }
6493
- ],
6494
- "exports": [
6495
- {
6496
- "kind": "js",
6497
- "name": "PropertyEvent",
6498
- "declaration": {
6499
- "name": "PropertyEvent",
6500
- "module": "src/modeller/property-sidebar/effects/property-event.ts"
6501
- }
6502
- }
6503
- ]
6504
- },
6505
- {
6506
- "kind": "javascript-module",
6507
- "path": "src/modeller/property-sidebar/effects/property-shadow.ts",
6508
- "declarations": [
6509
- {
6510
- "kind": "class",
6511
- "description": "컴포넌트의 그림자 속성을 편집하는 element\n\nExample:\n <property-shadow",
6512
- "name": "PropertyShadow",
6513
- "members": [
6290
+ },
6514
6291
  {
6515
- "kind": "field",
6516
- "name": "value",
6292
+ "name": "selected",
6517
6293
  "type": {
6518
- "text": "Properties | undefined"
6294
+ "text": "Component[]"
6519
6295
  },
6520
- "attribute": "value"
6296
+ "default": "[]",
6297
+ "fieldName": "selected"
6521
6298
  },
6522
6299
  {
6523
- "kind": "method",
6524
- "name": "_onValueChange",
6525
- "parameters": [
6526
- {
6527
- "name": "e",
6528
- "type": {
6529
- "text": "Event"
6530
- }
6531
- }
6532
- ]
6533
- }
6534
- ],
6535
- "events": [
6300
+ "name": "props",
6301
+ "type": {
6302
+ "text": "any[]"
6303
+ },
6304
+ "default": "[]",
6305
+ "fieldName": "props"
6306
+ },
6536
6307
  {
6537
- "name": "change",
6308
+ "name": "propertyEditor",
6538
6309
  "type": {
6539
- "text": "CustomEvent"
6540
- }
6310
+ "text": "any[]"
6311
+ },
6312
+ "default": "[]",
6313
+ "fieldName": "propertyEditor"
6541
6314
  }
6542
6315
  ],
6543
- "attributes": [
6316
+ "mixins": [
6544
6317
  {
6545
- "name": "value",
6546
- "type": {
6547
- "text": "Properties | undefined"
6548
- },
6549
- "fieldName": "value"
6318
+ "name": "ScopedElementsMixin",
6319
+ "package": "@open-wc/scoped-elements"
6550
6320
  }
6551
6321
  ],
6552
6322
  "superclass": {
6553
- "name": "LitElement",
6554
- "package": "lit"
6323
+ "name": "AbstractProperty",
6324
+ "module": "/src/modeller/property-sidebar/abstract-property"
6555
6325
  },
6556
- "customElement": true
6557
- }
6558
- ],
6559
- "exports": [
6560
- {
6561
- "kind": "js",
6562
- "name": "PropertyShadow",
6563
- "declaration": {
6564
- "name": "PropertyShadow",
6565
- "module": "src/modeller/property-sidebar/effects/property-shadow.ts"
6566
- }
6567
- }
6568
- ]
6569
- },
6570
- {
6571
- "kind": "javascript-module",
6572
- "path": "src/modeller/property-sidebar/effects/value-converter.ts",
6573
- "declarations": [
6574
- {
6575
- "kind": "function",
6576
- "name": "convert",
6577
- "parameters": [
6326
+ "events": [
6578
6327
  {
6579
- "name": "element",
6328
+ "name": "property-change",
6580
6329
  "type": {
6581
- "text": "any"
6330
+ "text": "CustomEvent"
6331
+ },
6332
+ "inheritedFrom": {
6333
+ "name": "AbstractProperty",
6334
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6582
6335
  }
6583
6336
  }
6584
6337
  ]
@@ -6587,10 +6340,10 @@
6587
6340
  "exports": [
6588
6341
  {
6589
6342
  "kind": "js",
6590
- "name": "convert",
6343
+ "name": "PropertySpecific",
6591
6344
  "declaration": {
6592
- "name": "convert",
6593
- "module": "src/modeller/property-sidebar/effects/value-converter.ts"
6345
+ "name": "PropertySpecific",
6346
+ "module": "src/modeller/property-sidebar/specifics/specifics.ts"
6594
6347
  }
6595
6348
  }
6596
6349
  ]
@@ -6760,6 +6513,249 @@
6760
6513
  }
6761
6514
  }
6762
6515
  ]
6516
+ },
6517
+ {
6518
+ "kind": "javascript-module",
6519
+ "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
6520
+ "declarations": [
6521
+ {
6522
+ "kind": "variable",
6523
+ "name": "BoxPaddingEditorStyles",
6524
+ "default": "css`\n .box-padding {\n width: 100%;\n }\n\n .box-padding td {\n background: var(--url-icon-properties-padding) 50% 0 no-repeat;\n }\n\n .box-padding tr:nth-child(1),\n .box-padding tr:nth-child(3) {\n height: 20px;\n }\n\n .box-padding tr td:nth-child(1),\n .box-padding tr td:nth-child(3) {\n width: 18px;\n }\n\n .box-padding .slide1 {\n background-position: 0 0;\n }\n\n .box-padding .slide2 {\n background-position: 50% -40px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide3 {\n background-position: 100% -440px;\n }\n\n .box-padding .slide4 {\n background-position: 0 -360px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide5 {\n background: none;\n text-align: center;\n }\n\n .box-padding .slide6 {\n background-position: 100% -160px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide7 {\n background-position: 0 100%;\n }\n\n .box-padding .slide8 {\n background-position: 50% -320px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide9 {\n background-position: 0 0px;\n }\n\n .box-padding input {\n background-color: transparent;\n width: 35px;\n margin: 0px;\n padding: 0px;\n clear: both;\n float: initial;\n border: 1px solid #fff;\n border-width: 0 0 1px 0;\n text-align: right;\n font-size: 14px;\n }\n\n .slide5 input:nth-child(1),\n .slide5 input:nth-child(4) {\n display: block;\n margin: auto;\n }\n\n .slide5 input:nth-child(2) {\n float: left;\n }\n\n .slide5 input:nth-child(3) {\n float: right;\n margin-top: -25px;\n }\n\n .slide5 input:nth-child(4) {\n margin-top: -5px;\n }\n`"
6525
+ }
6526
+ ],
6527
+ "exports": [
6528
+ {
6529
+ "kind": "js",
6530
+ "name": "BoxPaddingEditorStyles",
6531
+ "declaration": {
6532
+ "name": "BoxPaddingEditorStyles",
6533
+ "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
6534
+ }
6535
+ }
6536
+ ]
6537
+ },
6538
+ {
6539
+ "kind": "javascript-module",
6540
+ "path": "src/modeller/property-sidebar/shapes/shapes.ts",
6541
+ "declarations": [
6542
+ {
6543
+ "kind": "class",
6544
+ "description": "",
6545
+ "name": "PropertyShapes",
6546
+ "members": [
6547
+ {
6548
+ "kind": "field",
6549
+ "name": "value",
6550
+ "type": {
6551
+ "text": "Properties | undefined"
6552
+ },
6553
+ "attribute": "value"
6554
+ },
6555
+ {
6556
+ "kind": "field",
6557
+ "name": "bounds",
6558
+ "type": {
6559
+ "text": "BOUNDS | null"
6560
+ },
6561
+ "default": "null",
6562
+ "attribute": "bounds"
6563
+ },
6564
+ {
6565
+ "kind": "field",
6566
+ "name": "selected",
6567
+ "type": {
6568
+ "text": "Component[]"
6569
+ },
6570
+ "default": "[]",
6571
+ "attribute": "selected"
6572
+ },
6573
+ {
6574
+ "kind": "method",
6575
+ "name": "_onValueChange",
6576
+ "parameters": [
6577
+ {
6578
+ "name": "e",
6579
+ "type": {
6580
+ "text": "Event"
6581
+ }
6582
+ }
6583
+ ],
6584
+ "inheritedFrom": {
6585
+ "name": "AbstractProperty",
6586
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6587
+ }
6588
+ },
6589
+ {
6590
+ "kind": "method",
6591
+ "name": "_hasTextProperty",
6592
+ "parameters": [
6593
+ {
6594
+ "name": "selected",
6595
+ "type": {
6596
+ "text": "Component[]"
6597
+ }
6598
+ }
6599
+ ]
6600
+ },
6601
+ {
6602
+ "kind": "method",
6603
+ "name": "_hasProperties",
6604
+ "parameters": [
6605
+ {
6606
+ "name": "selected",
6607
+ "type": {
6608
+ "text": "Component[]"
6609
+ }
6610
+ }
6611
+ ]
6612
+ },
6613
+ {
6614
+ "kind": "method",
6615
+ "name": "_isIdentifiable",
6616
+ "parameters": [
6617
+ {
6618
+ "name": "selected",
6619
+ "type": {
6620
+ "text": "Component[]"
6621
+ }
6622
+ }
6623
+ ]
6624
+ },
6625
+ {
6626
+ "kind": "method",
6627
+ "name": "_isClassIdentifiable",
6628
+ "parameters": [
6629
+ {
6630
+ "name": "selected",
6631
+ "type": {
6632
+ "text": "Component[]"
6633
+ }
6634
+ }
6635
+ ]
6636
+ },
6637
+ {
6638
+ "kind": "method",
6639
+ "name": "_isLine",
6640
+ "parameters": [
6641
+ {
6642
+ "name": "selected",
6643
+ "type": {
6644
+ "text": "Component[]"
6645
+ }
6646
+ }
6647
+ ]
6648
+ },
6649
+ {
6650
+ "kind": "method",
6651
+ "name": "_is3dish",
6652
+ "parameters": [
6653
+ {
6654
+ "name": "selected",
6655
+ "type": {
6656
+ "text": "Component[]"
6657
+ }
6658
+ }
6659
+ ]
6660
+ },
6661
+ {
6662
+ "kind": "method",
6663
+ "name": "_getValueFromEventTarget",
6664
+ "parameters": [
6665
+ {
6666
+ "name": "element",
6667
+ "type": {
6668
+ "text": "HTMLElement"
6669
+ }
6670
+ }
6671
+ ],
6672
+ "inheritedFrom": {
6673
+ "name": "AbstractProperty",
6674
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6675
+ }
6676
+ },
6677
+ {
6678
+ "kind": "method",
6679
+ "name": "_onAfterValueChange",
6680
+ "parameters": [
6681
+ {
6682
+ "name": "key",
6683
+ "type": {
6684
+ "text": "string"
6685
+ }
6686
+ },
6687
+ {
6688
+ "name": "value",
6689
+ "type": {
6690
+ "text": "any"
6691
+ }
6692
+ }
6693
+ ],
6694
+ "inheritedFrom": {
6695
+ "name": "AbstractProperty",
6696
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6697
+ }
6698
+ }
6699
+ ],
6700
+ "events": [
6701
+ {
6702
+ "name": "bounds-change",
6703
+ "type": {
6704
+ "text": "CustomEvent"
6705
+ }
6706
+ },
6707
+ {
6708
+ "name": "property-change",
6709
+ "type": {
6710
+ "text": "CustomEvent"
6711
+ },
6712
+ "inheritedFrom": {
6713
+ "name": "AbstractProperty",
6714
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6715
+ }
6716
+ }
6717
+ ],
6718
+ "attributes": [
6719
+ {
6720
+ "name": "value",
6721
+ "type": {
6722
+ "text": "Properties | undefined"
6723
+ },
6724
+ "fieldName": "value"
6725
+ },
6726
+ {
6727
+ "name": "bounds",
6728
+ "type": {
6729
+ "text": "BOUNDS | null"
6730
+ },
6731
+ "default": "null",
6732
+ "fieldName": "bounds"
6733
+ },
6734
+ {
6735
+ "name": "selected",
6736
+ "type": {
6737
+ "text": "Component[]"
6738
+ },
6739
+ "default": "[]",
6740
+ "fieldName": "selected"
6741
+ }
6742
+ ],
6743
+ "superclass": {
6744
+ "name": "AbstractProperty",
6745
+ "module": "/src/modeller/property-sidebar/abstract-property"
6746
+ }
6747
+ }
6748
+ ],
6749
+ "exports": [
6750
+ {
6751
+ "kind": "js",
6752
+ "name": "PropertyShapes",
6753
+ "declaration": {
6754
+ "name": "PropertyShapes",
6755
+ "module": "src/modeller/property-sidebar/shapes/shapes.ts"
6756
+ }
6757
+ }
6758
+ ]
6763
6759
  }
6764
6760
  ]
6765
6761
  }