@fmsim/board 0.0.95 → 0.0.97

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.
@@ -3106,31 +3106,62 @@
3106
3106
  },
3107
3107
  {
3108
3108
  "kind": "javascript-module",
3109
- "path": "src/modeller/component-toolbar/component-detail.ts",
3109
+ "path": "src/modeller/property-sidebar/abstract-property.ts",
3110
3110
  "declarations": [
3111
3111
  {
3112
3112
  "kind": "class",
3113
3113
  "description": "",
3114
- "name": "ComponentDetail",
3114
+ "name": "AbstractProperty",
3115
3115
  "members": [
3116
3116
  {
3117
- "kind": "field",
3118
- "name": "template",
3119
- "type": {
3120
- "text": "{ about: string } | null"
3121
- },
3122
- "default": "null",
3123
- "attribute": "template"
3117
+ "kind": "method",
3118
+ "name": "_onValueChange",
3119
+ "parameters": [
3120
+ {
3121
+ "name": "e",
3122
+ "type": {
3123
+ "text": "Event"
3124
+ }
3125
+ }
3126
+ ]
3127
+ },
3128
+ {
3129
+ "kind": "method",
3130
+ "name": "_getValueFromEventTarget",
3131
+ "parameters": [
3132
+ {
3133
+ "name": "element",
3134
+ "type": {
3135
+ "text": "HTMLElement"
3136
+ }
3137
+ }
3138
+ ]
3139
+ },
3140
+ {
3141
+ "kind": "method",
3142
+ "name": "_onAfterValueChange",
3143
+ "parameters": [
3144
+ {
3145
+ "name": "key",
3146
+ "type": {
3147
+ "text": "string"
3148
+ }
3149
+ },
3150
+ {
3151
+ "name": "value",
3152
+ "type": {
3153
+ "text": "any"
3154
+ }
3155
+ }
3156
+ ]
3124
3157
  }
3125
3158
  ],
3126
- "attributes": [
3159
+ "events": [
3127
3160
  {
3128
- "name": "template",
3161
+ "name": "property-change",
3129
3162
  "type": {
3130
- "text": "{ about: string } | null"
3131
- },
3132
- "default": "null",
3133
- "fieldName": "template"
3163
+ "text": "CustomEvent"
3164
+ }
3134
3165
  }
3135
3166
  ],
3136
3167
  "superclass": {
@@ -3143,71 +3174,131 @@
3143
3174
  "exports": [
3144
3175
  {
3145
3176
  "kind": "js",
3146
- "name": "ComponentDetail",
3177
+ "name": "AbstractProperty",
3147
3178
  "declaration": {
3148
- "name": "ComponentDetail",
3149
- "module": "src/modeller/component-toolbar/component-detail.ts"
3179
+ "name": "AbstractProperty",
3180
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
3150
3181
  }
3151
3182
  }
3152
3183
  ]
3153
3184
  },
3154
3185
  {
3155
3186
  "kind": "javascript-module",
3156
- "path": "src/modeller/component-toolbar/component-menu.ts",
3187
+ "path": "src/modeller/property-sidebar/property-shared-style.ts",
3188
+ "declarations": [
3189
+ {
3190
+ "kind": "variable",
3191
+ "name": "PropertySharedStyle",
3192
+ "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`"
3193
+ }
3194
+ ],
3195
+ "exports": [
3196
+ {
3197
+ "kind": "js",
3198
+ "name": "PropertySharedStyle",
3199
+ "declaration": {
3200
+ "name": "PropertySharedStyle",
3201
+ "module": "src/modeller/property-sidebar/property-shared-style.ts"
3202
+ }
3203
+ }
3204
+ ]
3205
+ },
3206
+ {
3207
+ "kind": "javascript-module",
3208
+ "path": "src/modeller/property-sidebar/property-sidebar.ts",
3157
3209
  "declarations": [
3158
3210
  {
3159
3211
  "kind": "class",
3160
3212
  "description": "",
3161
- "name": "ComponentMenu",
3213
+ "name": "PropertySidebar",
3162
3214
  "members": [
3163
3215
  {
3164
3216
  "kind": "field",
3165
- "name": "groups",
3217
+ "name": "scene",
3166
3218
  "type": {
3167
- "text": "Pallet[]"
3219
+ "text": "Scene | null"
3220
+ },
3221
+ "default": "null",
3222
+ "attribute": "scene"
3223
+ },
3224
+ {
3225
+ "kind": "field",
3226
+ "name": "bounds",
3227
+ "type": {
3228
+ "text": "any"
3229
+ },
3230
+ "default": "{}",
3231
+ "attribute": "bounds"
3232
+ },
3233
+ {
3234
+ "kind": "field",
3235
+ "name": "model",
3236
+ "type": {
3237
+ "text": "Model | null"
3238
+ },
3239
+ "default": "{}",
3240
+ "attribute": "model"
3241
+ },
3242
+ {
3243
+ "kind": "field",
3244
+ "name": "selected",
3245
+ "type": {
3246
+ "text": "Component[]"
3168
3247
  },
3169
3248
  "default": "[]",
3170
- "attribute": "groups"
3249
+ "attribute": "selected"
3171
3250
  },
3172
3251
  {
3173
3252
  "kind": "field",
3174
- "name": "scene",
3253
+ "name": "specificProps",
3175
3254
  "type": {
3176
- "text": "Scene | null"
3255
+ "text": "any"
3177
3256
  },
3178
- "default": "null",
3179
- "attribute": "scene"
3257
+ "attribute": "specificProps"
3180
3258
  },
3181
3259
  {
3182
3260
  "kind": "field",
3183
- "name": "group",
3261
+ "name": "tabName",
3184
3262
  "type": {
3185
3263
  "text": "string | null"
3186
3264
  },
3187
- "default": "''",
3188
- "attribute": "group"
3265
+ "default": "'specific'",
3266
+ "attribute": "tabName"
3189
3267
  },
3190
3268
  {
3191
3269
  "kind": "field",
3192
- "name": "templates",
3270
+ "name": "collapsed",
3193
3271
  "type": {
3194
- "text": "PalletItem[]"
3272
+ "text": "boolean"
3195
3273
  },
3196
- "default": "[]"
3274
+ "default": "false",
3275
+ "attribute": "collapsed"
3197
3276
  },
3198
3277
  {
3199
3278
  "kind": "field",
3200
- "name": "template",
3279
+ "name": "fonts",
3201
3280
  "type": {
3202
- "text": "PalletItem | any"
3203
- }
3281
+ "text": "any[]"
3282
+ },
3283
+ "default": "[]",
3284
+ "attribute": "fonts"
3204
3285
  },
3205
3286
  {
3206
3287
  "kind": "field",
3207
- "name": "detail",
3288
+ "name": "propertyEditor",
3208
3289
  "type": {
3209
- "text": "HTMLElement"
3210
- }
3290
+ "text": "any[]"
3291
+ },
3292
+ "default": "[]",
3293
+ "attribute": "propertyEditor"
3294
+ },
3295
+ {
3296
+ "kind": "field",
3297
+ "name": "propertyTarget",
3298
+ "type": {
3299
+ "text": "Component | null"
3300
+ },
3301
+ "default": "null"
3211
3302
  },
3212
3303
  {
3213
3304
  "kind": "field",
@@ -3217,62 +3308,90 @@
3217
3308
  },
3218
3309
  {
3219
3310
  "kind": "method",
3220
- "name": "findTemplate",
3311
+ "name": "_onPropertyChanged",
3221
3312
  "parameters": [
3222
3313
  {
3223
- "name": "type",
3314
+ "name": "e",
3224
3315
  "type": {
3225
- "text": "string | null | undefined"
3316
+ "text": "CustomEvent"
3226
3317
  }
3227
3318
  }
3228
3319
  ]
3229
3320
  },
3230
3321
  {
3231
3322
  "kind": "method",
3232
- "name": "onHoverComponent",
3323
+ "name": "_onBoundsChanged",
3233
3324
  "parameters": [
3234
3325
  {
3235
3326
  "name": "e",
3236
3327
  "type": {
3237
- "text": "MouseEvent"
3328
+ "text": "CustomEvent"
3238
3329
  }
3239
3330
  }
3240
3331
  ]
3241
3332
  },
3242
3333
  {
3243
3334
  "kind": "method",
3244
- "name": "onClickTemplate",
3335
+ "name": "_onChangedByScene"
3336
+ },
3337
+ {
3338
+ "kind": "method",
3339
+ "name": "_setPropertyTargetAsDefault"
3340
+ },
3341
+ {
3342
+ "kind": "method",
3343
+ "name": "_onCollapsed",
3245
3344
  "parameters": [
3246
3345
  {
3247
- "name": "e",
3346
+ "name": "collapsed",
3248
3347
  "type": {
3249
- "text": "MouseEvent"
3348
+ "text": "boolean"
3250
3349
  }
3251
3350
  }
3252
3351
  ]
3253
3352
  },
3254
3353
  {
3255
3354
  "kind": "method",
3256
- "name": "templateIcon",
3355
+ "name": "_onSceneChanged"
3356
+ },
3357
+ {
3358
+ "kind": "method",
3359
+ "name": "_onSelectedChanged",
3257
3360
  "parameters": [
3258
3361
  {
3259
- "name": "template",
3362
+ "name": "after",
3260
3363
  "type": {
3261
- "text": "PalletItem"
3364
+ "text": "Component[]"
3365
+ }
3366
+ }
3367
+ ]
3368
+ },
3369
+ {
3370
+ "kind": "method",
3371
+ "name": "_setPropertyTarget",
3372
+ "parameters": [
3373
+ {
3374
+ "name": "newTarget",
3375
+ "type": {
3376
+ "text": "Component | null"
3377
+ }
3378
+ }
3379
+ ]
3380
+ },
3381
+ {
3382
+ "kind": "method",
3383
+ "name": "_setBounds",
3384
+ "parameters": [
3385
+ {
3386
+ "name": "bounds",
3387
+ "type": {
3388
+ "text": "BOUNDS"
3262
3389
  }
3263
3390
  }
3264
3391
  ]
3265
3392
  }
3266
3393
  ],
3267
3394
  "attributes": [
3268
- {
3269
- "name": "groups",
3270
- "type": {
3271
- "text": "Pallet[]"
3272
- },
3273
- "default": "[]",
3274
- "fieldName": "groups"
3275
- },
3276
3395
  {
3277
3396
  "name": "scene",
3278
3397
  "type": {
@@ -3282,212 +3401,67 @@
3282
3401
  "fieldName": "scene"
3283
3402
  },
3284
3403
  {
3285
- "name": "group",
3404
+ "name": "bounds",
3286
3405
  "type": {
3287
- "text": "string | null"
3406
+ "text": "any"
3288
3407
  },
3289
- "default": "''",
3290
- "fieldName": "group"
3291
- }
3292
- ],
3293
- "mixins": [
3408
+ "default": "{}",
3409
+ "fieldName": "bounds"
3410
+ },
3294
3411
  {
3295
- "name": "ScopedElementsMixin",
3296
- "package": "@open-wc/scoped-elements"
3297
- }
3298
- ],
3299
- "superclass": {
3300
- "name": "LitElement",
3301
- "package": "lit"
3302
- },
3303
- "customElement": true
3304
- }
3305
- ],
3306
- "exports": [
3307
- {
3308
- "kind": "js",
3309
- "name": "ComponentMenu",
3310
- "declaration": {
3311
- "name": "ComponentMenu",
3312
- "module": "src/modeller/component-toolbar/component-menu.ts"
3313
- }
3314
- }
3315
- ]
3316
- },
3317
- {
3318
- "kind": "javascript-module",
3319
- "path": "src/modeller/component-toolbar/component-toolbar.ts",
3320
- "declarations": [
3321
- {
3322
- "kind": "class",
3323
- "description": "",
3324
- "name": "ComponentToolbar",
3325
- "members": [
3326
- {
3327
- "kind": "field",
3328
- "name": "componentGroupList",
3329
- "type": {
3330
- "text": "ComponentGroup[]"
3331
- },
3332
- "default": "[]",
3333
- "attribute": "componentGroupList"
3334
- },
3335
- {
3336
- "kind": "field",
3337
- "name": "group",
3338
- "type": {
3339
- "text": "string | null | undefined"
3340
- },
3341
- "attribute": "group"
3342
- },
3343
- {
3344
- "kind": "field",
3345
- "name": "scene",
3346
- "type": {
3347
- "text": "Scene"
3348
- },
3349
- "attribute": "scene"
3350
- },
3351
- {
3352
- "kind": "field",
3353
- "name": "mode",
3412
+ "name": "model",
3354
3413
  "type": {
3355
- "text": "SCENE_MODE"
3414
+ "text": "Model | null"
3356
3415
  },
3357
- "attribute": "mode"
3358
- },
3359
- {
3360
- "kind": "field",
3361
- "name": "shift",
3362
- "type": {
3363
- "text": "HTMLImageElement"
3364
- }
3416
+ "default": "{}",
3417
+ "fieldName": "model"
3365
3418
  },
3366
3419
  {
3367
- "kind": "field",
3368
- "name": "menu",
3420
+ "name": "selected",
3369
3421
  "type": {
3370
- "text": "HTMLElement"
3422
+ "text": "Component[]"
3371
3423
  },
3372
- "privacy": "private"
3424
+ "default": "[]",
3425
+ "fieldName": "selected"
3373
3426
  },
3374
3427
  {
3375
- "kind": "field",
3376
- "name": "componentsContainer",
3428
+ "name": "specificProps",
3377
3429
  "type": {
3378
- "text": "HTMLElement"
3430
+ "text": "any"
3379
3431
  },
3380
- "privacy": "private"
3432
+ "fieldName": "specificProps"
3381
3433
  },
3382
3434
  {
3383
- "kind": "field",
3384
- "name": "groups",
3435
+ "name": "tabName",
3385
3436
  "type": {
3386
- "text": "NodeListOf<HTMLElement>"
3437
+ "text": "string | null"
3387
3438
  },
3388
- "privacy": "private"
3439
+ "default": "'specific'",
3440
+ "fieldName": "tabName"
3389
3441
  },
3390
3442
  {
3391
- "kind": "field",
3392
- "name": "icons",
3443
+ "name": "collapsed",
3393
3444
  "type": {
3394
- "text": "{ [name: string]: string }"
3445
+ "text": "boolean"
3395
3446
  },
3396
- "privacy": "private",
3397
- "default": "{}"
3398
- },
3399
- {
3400
- "kind": "field",
3401
- "name": "scopedElements",
3402
- "static": true,
3403
- "readonly": true
3404
- },
3405
- {
3406
- "kind": "method",
3407
- "name": "onWheelEvent",
3408
- "parameters": [
3409
- {
3410
- "name": "e",
3411
- "type": {
3412
- "text": "Event"
3413
- }
3414
- }
3415
- ]
3416
- },
3417
- {
3418
- "kind": "method",
3419
- "name": "_setMode",
3420
- "parameters": [
3421
- {
3422
- "name": "mode",
3423
- "type": {
3424
- "text": "SCENE_MODE"
3425
- }
3426
- }
3427
- ]
3428
- },
3429
- {
3430
- "kind": "method",
3431
- "name": "_onClickShift",
3432
- "parameters": [
3433
- {
3434
- "name": "e",
3435
- "type": {
3436
- "text": "MouseEvent"
3437
- }
3438
- }
3439
- ]
3447
+ "default": "false",
3448
+ "fieldName": "collapsed"
3440
3449
  },
3441
3450
  {
3442
- "kind": "method",
3443
- "name": "_onClickGroup",
3444
- "parameters": [
3445
- {
3446
- "name": "e",
3447
- "type": {
3448
- "text": "MouseEvent"
3449
- }
3450
- }
3451
- ]
3452
- }
3453
- ],
3454
- "events": [
3455
- {
3456
- "name": "mode-changed",
3457
- "type": {
3458
- "text": "CustomEvent"
3459
- }
3460
- }
3461
- ],
3462
- "attributes": [
3463
- {
3464
- "name": "componentGroupList",
3451
+ "name": "fonts",
3465
3452
  "type": {
3466
- "text": "ComponentGroup[]"
3453
+ "text": "any[]"
3467
3454
  },
3468
3455
  "default": "[]",
3469
- "fieldName": "componentGroupList"
3470
- },
3471
- {
3472
- "name": "group",
3473
- "type": {
3474
- "text": "string | null | undefined"
3475
- },
3476
- "fieldName": "group"
3477
- },
3478
- {
3479
- "name": "scene",
3480
- "type": {
3481
- "text": "Scene"
3482
- },
3483
- "fieldName": "scene"
3456
+ "fieldName": "fonts"
3484
3457
  },
3485
3458
  {
3486
- "name": "mode",
3459
+ "name": "propertyEditor",
3487
3460
  "type": {
3488
- "text": "SCENE_MODE"
3461
+ "text": "any[]"
3489
3462
  },
3490
- "fieldName": "mode"
3463
+ "default": "[]",
3464
+ "fieldName": "propertyEditor"
3491
3465
  }
3492
3466
  ],
3493
3467
  "mixins": [
@@ -3506,44 +3480,10 @@
3506
3480
  "exports": [
3507
3481
  {
3508
3482
  "kind": "js",
3509
- "name": "ComponentToolbar",
3510
- "declaration": {
3511
- "name": "ComponentToolbar",
3512
- "module": "src/modeller/component-toolbar/component-toolbar.ts"
3513
- }
3514
- }
3515
- ]
3516
- },
3517
- {
3518
- "kind": "javascript-module",
3519
- "path": "src/modeller/component-toolbar/mode-icons.ts",
3520
- "declarations": [
3521
- {
3522
- "kind": "variable",
3523
- "name": "ICON_EDIT_MODE",
3524
- "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`"
3525
- },
3526
- {
3527
- "kind": "variable",
3528
- "name": "ICON_SHIFT_MODE",
3529
- "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`"
3530
- }
3531
- ],
3532
- "exports": [
3533
- {
3534
- "kind": "js",
3535
- "name": "ICON_EDIT_MODE",
3536
- "declaration": {
3537
- "name": "ICON_EDIT_MODE",
3538
- "module": "src/modeller/component-toolbar/mode-icons.ts"
3539
- }
3540
- },
3541
- {
3542
- "kind": "js",
3543
- "name": "ICON_SHIFT_MODE",
3483
+ "name": "PropertySidebar",
3544
3484
  "declaration": {
3545
- "name": "ICON_SHIFT_MODE",
3546
- "module": "src/modeller/component-toolbar/mode-icons.ts"
3485
+ "name": "PropertySidebar",
3486
+ "module": "src/modeller/property-sidebar/property-sidebar.ts"
3547
3487
  }
3548
3488
  }
3549
3489
  ]
@@ -4282,62 +4222,31 @@
4282
4222
  },
4283
4223
  {
4284
4224
  "kind": "javascript-module",
4285
- "path": "src/modeller/property-sidebar/abstract-property.ts",
4225
+ "path": "src/modeller/component-toolbar/component-detail.ts",
4286
4226
  "declarations": [
4287
4227
  {
4288
4228
  "kind": "class",
4289
4229
  "description": "",
4290
- "name": "AbstractProperty",
4230
+ "name": "ComponentDetail",
4291
4231
  "members": [
4292
4232
  {
4293
- "kind": "method",
4294
- "name": "_onValueChange",
4295
- "parameters": [
4296
- {
4297
- "name": "e",
4298
- "type": {
4299
- "text": "Event"
4300
- }
4301
- }
4302
- ]
4303
- },
4233
+ "kind": "field",
4234
+ "name": "template",
4235
+ "type": {
4236
+ "text": "{ about: string } | null"
4237
+ },
4238
+ "default": "null",
4239
+ "attribute": "template"
4240
+ }
4241
+ ],
4242
+ "attributes": [
4304
4243
  {
4305
- "kind": "method",
4306
- "name": "_getValueFromEventTarget",
4307
- "parameters": [
4308
- {
4309
- "name": "element",
4310
- "type": {
4311
- "text": "HTMLElement"
4312
- }
4313
- }
4314
- ]
4315
- },
4316
- {
4317
- "kind": "method",
4318
- "name": "_onAfterValueChange",
4319
- "parameters": [
4320
- {
4321
- "name": "key",
4322
- "type": {
4323
- "text": "string"
4324
- }
4325
- },
4326
- {
4327
- "name": "value",
4328
- "type": {
4329
- "text": "any"
4330
- }
4331
- }
4332
- ]
4333
- }
4334
- ],
4335
- "events": [
4336
- {
4337
- "name": "property-change",
4244
+ "name": "template",
4338
4245
  "type": {
4339
- "text": "CustomEvent"
4340
- }
4246
+ "text": "{ about: string } | null"
4247
+ },
4248
+ "default": "null",
4249
+ "fieldName": "template"
4341
4250
  }
4342
4251
  ],
4343
4252
  "superclass": {
@@ -4350,131 +4259,71 @@
4350
4259
  "exports": [
4351
4260
  {
4352
4261
  "kind": "js",
4353
- "name": "AbstractProperty",
4354
- "declaration": {
4355
- "name": "AbstractProperty",
4356
- "module": "src/modeller/property-sidebar/abstract-property.ts"
4357
- }
4358
- }
4359
- ]
4360
- },
4361
- {
4362
- "kind": "javascript-module",
4363
- "path": "src/modeller/property-sidebar/property-shared-style.ts",
4364
- "declarations": [
4365
- {
4366
- "kind": "variable",
4367
- "name": "PropertySharedStyle",
4368
- "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`"
4369
- }
4370
- ],
4371
- "exports": [
4372
- {
4373
- "kind": "js",
4374
- "name": "PropertySharedStyle",
4262
+ "name": "ComponentDetail",
4375
4263
  "declaration": {
4376
- "name": "PropertySharedStyle",
4377
- "module": "src/modeller/property-sidebar/property-shared-style.ts"
4264
+ "name": "ComponentDetail",
4265
+ "module": "src/modeller/component-toolbar/component-detail.ts"
4378
4266
  }
4379
4267
  }
4380
4268
  ]
4381
4269
  },
4382
4270
  {
4383
4271
  "kind": "javascript-module",
4384
- "path": "src/modeller/property-sidebar/property-sidebar.ts",
4272
+ "path": "src/modeller/component-toolbar/component-menu.ts",
4385
4273
  "declarations": [
4386
4274
  {
4387
4275
  "kind": "class",
4388
4276
  "description": "",
4389
- "name": "PropertySidebar",
4277
+ "name": "ComponentMenu",
4390
4278
  "members": [
4391
4279
  {
4392
4280
  "kind": "field",
4393
- "name": "scene",
4394
- "type": {
4395
- "text": "Scene | null"
4396
- },
4397
- "default": "null",
4398
- "attribute": "scene"
4399
- },
4400
- {
4401
- "kind": "field",
4402
- "name": "bounds",
4403
- "type": {
4404
- "text": "any"
4405
- },
4406
- "default": "{}",
4407
- "attribute": "bounds"
4408
- },
4409
- {
4410
- "kind": "field",
4411
- "name": "model",
4412
- "type": {
4413
- "text": "Model | null"
4414
- },
4415
- "default": "{}",
4416
- "attribute": "model"
4417
- },
4418
- {
4419
- "kind": "field",
4420
- "name": "selected",
4281
+ "name": "groups",
4421
4282
  "type": {
4422
- "text": "Component[]"
4283
+ "text": "Pallet[]"
4423
4284
  },
4424
4285
  "default": "[]",
4425
- "attribute": "selected"
4286
+ "attribute": "groups"
4426
4287
  },
4427
4288
  {
4428
4289
  "kind": "field",
4429
- "name": "specificProps",
4290
+ "name": "scene",
4430
4291
  "type": {
4431
- "text": "any"
4292
+ "text": "Scene | null"
4432
4293
  },
4433
- "attribute": "specificProps"
4294
+ "default": "null",
4295
+ "attribute": "scene"
4434
4296
  },
4435
4297
  {
4436
4298
  "kind": "field",
4437
- "name": "tabName",
4299
+ "name": "group",
4438
4300
  "type": {
4439
4301
  "text": "string | null"
4440
4302
  },
4441
- "default": "'specific'",
4442
- "attribute": "tabName"
4443
- },
4444
- {
4445
- "kind": "field",
4446
- "name": "collapsed",
4447
- "type": {
4448
- "text": "boolean"
4449
- },
4450
- "default": "false",
4451
- "attribute": "collapsed"
4303
+ "default": "''",
4304
+ "attribute": "group"
4452
4305
  },
4453
4306
  {
4454
4307
  "kind": "field",
4455
- "name": "fonts",
4308
+ "name": "templates",
4456
4309
  "type": {
4457
- "text": "any[]"
4310
+ "text": "PalletItem[]"
4458
4311
  },
4459
- "default": "[]",
4460
- "attribute": "fonts"
4312
+ "default": "[]"
4461
4313
  },
4462
4314
  {
4463
4315
  "kind": "field",
4464
- "name": "propertyEditor",
4316
+ "name": "template",
4465
4317
  "type": {
4466
- "text": "any[]"
4467
- },
4468
- "default": "[]",
4469
- "attribute": "propertyEditor"
4318
+ "text": "PalletItem | any"
4319
+ }
4470
4320
  },
4471
4321
  {
4472
4322
  "kind": "field",
4473
- "name": "propertyTarget",
4323
+ "name": "detail",
4474
4324
  "type": {
4475
- "text": "Component | null"
4476
- },
4477
- "default": "null"
4325
+ "text": "HTMLElement"
4326
+ }
4478
4327
  },
4479
4328
  {
4480
4329
  "kind": "field",
@@ -4484,84 +4333,48 @@
4484
4333
  },
4485
4334
  {
4486
4335
  "kind": "method",
4487
- "name": "_onPropertyChanged",
4336
+ "name": "findTemplate",
4488
4337
  "parameters": [
4489
4338
  {
4490
- "name": "e",
4339
+ "name": "type",
4491
4340
  "type": {
4492
- "text": "CustomEvent"
4341
+ "text": "string | null | undefined"
4493
4342
  }
4494
4343
  }
4495
4344
  ]
4496
4345
  },
4497
4346
  {
4498
4347
  "kind": "method",
4499
- "name": "_onBoundsChanged",
4348
+ "name": "onHoverComponent",
4500
4349
  "parameters": [
4501
4350
  {
4502
4351
  "name": "e",
4503
4352
  "type": {
4504
- "text": "CustomEvent"
4505
- }
4506
- }
4507
- ]
4508
- },
4509
- {
4510
- "kind": "method",
4511
- "name": "_onChangedByScene"
4512
- },
4513
- {
4514
- "kind": "method",
4515
- "name": "_setPropertyTargetAsDefault"
4516
- },
4517
- {
4518
- "kind": "method",
4519
- "name": "_onCollapsed",
4520
- "parameters": [
4521
- {
4522
- "name": "collapsed",
4523
- "type": {
4524
- "text": "boolean"
4525
- }
4526
- }
4527
- ]
4528
- },
4529
- {
4530
- "kind": "method",
4531
- "name": "_onSceneChanged"
4532
- },
4533
- {
4534
- "kind": "method",
4535
- "name": "_onSelectedChanged",
4536
- "parameters": [
4537
- {
4538
- "name": "after",
4539
- "type": {
4540
- "text": "Component[]"
4353
+ "text": "MouseEvent"
4541
4354
  }
4542
4355
  }
4543
4356
  ]
4544
4357
  },
4545
4358
  {
4546
4359
  "kind": "method",
4547
- "name": "_setPropertyTarget",
4360
+ "name": "onClickTemplate",
4548
4361
  "parameters": [
4549
4362
  {
4550
- "name": "newTarget",
4363
+ "name": "e",
4551
4364
  "type": {
4552
- "text": "Component | null"
4365
+ "text": "MouseEvent"
4553
4366
  }
4554
4367
  }
4555
4368
  ]
4556
4369
  },
4557
4370
  {
4558
4371
  "kind": "method",
4559
- "name": "_setBounds",
4372
+ "name": "templateIcon",
4560
4373
  "parameters": [
4561
4374
  {
4562
- "name": "bounds",
4375
+ "name": "template",
4563
4376
  "type": {
4564
- "text": "BOUNDS"
4377
+ "text": "PalletItem"
4565
4378
  }
4566
4379
  }
4567
4380
  ]
@@ -4569,78 +4382,31 @@
4569
4382
  ],
4570
4383
  "attributes": [
4571
4384
  {
4572
- "name": "scene",
4573
- "type": {
4574
- "text": "Scene | null"
4575
- },
4576
- "default": "null",
4577
- "fieldName": "scene"
4578
- },
4579
- {
4580
- "name": "bounds",
4581
- "type": {
4582
- "text": "any"
4583
- },
4584
- "default": "{}",
4585
- "fieldName": "bounds"
4586
- },
4587
- {
4588
- "name": "model",
4589
- "type": {
4590
- "text": "Model | null"
4591
- },
4592
- "default": "{}",
4593
- "fieldName": "model"
4594
- },
4595
- {
4596
- "name": "selected",
4385
+ "name": "groups",
4597
4386
  "type": {
4598
- "text": "Component[]"
4387
+ "text": "Pallet[]"
4599
4388
  },
4600
4389
  "default": "[]",
4601
- "fieldName": "selected"
4390
+ "fieldName": "groups"
4602
4391
  },
4603
4392
  {
4604
- "name": "specificProps",
4393
+ "name": "scene",
4605
4394
  "type": {
4606
- "text": "any"
4395
+ "text": "Scene | null"
4607
4396
  },
4608
- "fieldName": "specificProps"
4397
+ "default": "null",
4398
+ "fieldName": "scene"
4609
4399
  },
4610
4400
  {
4611
- "name": "tabName",
4401
+ "name": "group",
4612
4402
  "type": {
4613
4403
  "text": "string | null"
4614
4404
  },
4615
- "default": "'specific'",
4616
- "fieldName": "tabName"
4617
- },
4618
- {
4619
- "name": "collapsed",
4620
- "type": {
4621
- "text": "boolean"
4622
- },
4623
- "default": "false",
4624
- "fieldName": "collapsed"
4625
- },
4626
- {
4627
- "name": "fonts",
4628
- "type": {
4629
- "text": "any[]"
4630
- },
4631
- "default": "[]",
4632
- "fieldName": "fonts"
4633
- },
4634
- {
4635
- "name": "propertyEditor",
4636
- "type": {
4637
- "text": "any[]"
4638
- },
4639
- "default": "[]",
4640
- "fieldName": "propertyEditor"
4641
- }
4642
- ],
4643
- "mixins": [
4405
+ "default": "''",
4406
+ "fieldName": "group"
4407
+ }
4408
+ ],
4409
+ "mixins": [
4644
4410
  {
4645
4411
  "name": "ScopedElementsMixin",
4646
4412
  "package": "@open-wc/scoped-elements"
@@ -4656,124 +4422,146 @@
4656
4422
  "exports": [
4657
4423
  {
4658
4424
  "kind": "js",
4659
- "name": "PropertySidebar",
4425
+ "name": "ComponentMenu",
4660
4426
  "declaration": {
4661
- "name": "PropertySidebar",
4662
- "module": "src/modeller/property-sidebar/property-sidebar.ts"
4427
+ "name": "ComponentMenu",
4428
+ "module": "src/modeller/component-toolbar/component-menu.ts"
4663
4429
  }
4664
4430
  }
4665
4431
  ]
4666
4432
  },
4667
4433
  {
4668
4434
  "kind": "javascript-module",
4669
- "path": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts",
4435
+ "path": "src/modeller/component-toolbar/component-toolbar.ts",
4670
4436
  "declarations": [
4671
4437
  {
4672
4438
  "kind": "class",
4673
- "description": "element for mapping data value editing\n\nExample:\n\n<data-binding-mapper mapping=${mapping}>\n</data-binding-mapper>",
4674
- "name": "DataBindingMapper",
4439
+ "description": "",
4440
+ "name": "ComponentToolbar",
4675
4441
  "members": [
4676
4442
  {
4677
4443
  "kind": "field",
4678
- "name": "mapping",
4444
+ "name": "componentGroupList",
4679
4445
  "type": {
4680
- "text": "Mapping"
4446
+ "text": "ComponentGroup[]"
4681
4447
  },
4682
- "default": "{\n rule: 'value'\n }",
4683
- "attribute": "mapping"
4448
+ "default": "[]",
4449
+ "attribute": "componentGroupList"
4684
4450
  },
4685
4451
  {
4686
4452
  "kind": "field",
4687
- "name": "rule",
4453
+ "name": "group",
4688
4454
  "type": {
4689
- "text": "Rule"
4455
+ "text": "string | null | undefined"
4690
4456
  },
4691
- "default": "{}",
4692
- "attribute": "rule"
4457
+ "attribute": "group"
4693
4458
  },
4694
4459
  {
4695
4460
  "kind": "field",
4696
4461
  "name": "scene",
4697
4462
  "type": {
4698
- "text": "Scene | undefined"
4463
+ "text": "Scene"
4699
4464
  },
4700
4465
  "attribute": "scene"
4701
4466
  },
4702
4467
  {
4703
4468
  "kind": "field",
4704
- "name": "_valueTypes",
4469
+ "name": "mode",
4705
4470
  "type": {
4706
- "text": "any"
4471
+ "text": "SCENE_MODE"
4707
4472
  },
4708
- "default": "{\n play: 'boolean',\n hidden: 'boolean',\n started: 'boolean',\n\n rotation: 'number',\n value: 'number',\n\n fillStyle: 'color',\n strokeStyle: 'color',\n fontColor: 'color',\n\n data: 'object',\n source: 'attachment',\n location: 'object',\n dimension: 'object',\n\n text: 'string',\n ref: 'string'\n }"
4473
+ "attribute": "mode"
4709
4474
  },
4710
4475
  {
4711
4476
  "kind": "field",
4712
- "name": "_componentIds",
4477
+ "name": "shift",
4713
4478
  "type": {
4714
- "text": "{ value: string; description: string }[]"
4479
+ "text": "HTMLImageElement"
4480
+ }
4481
+ },
4482
+ {
4483
+ "kind": "field",
4484
+ "name": "menu",
4485
+ "type": {
4486
+ "text": "HTMLElement"
4715
4487
  },
4716
- "default": "[]"
4488
+ "privacy": "private"
4717
4489
  },
4718
4490
  {
4719
4491
  "kind": "field",
4720
- "name": "editor",
4492
+ "name": "componentsContainer",
4721
4493
  "type": {
4722
- "text": "HTMLInputElement"
4723
- }
4494
+ "text": "HTMLElement"
4495
+ },
4496
+ "privacy": "private"
4724
4497
  },
4725
4498
  {
4726
4499
  "kind": "field",
4727
- "name": "target",
4500
+ "name": "groups",
4728
4501
  "type": {
4729
- "text": "HTMLInputElement"
4730
- }
4502
+ "text": "NodeListOf<HTMLElement>"
4503
+ },
4504
+ "privacy": "private"
4505
+ },
4506
+ {
4507
+ "kind": "field",
4508
+ "name": "icons",
4509
+ "type": {
4510
+ "text": "{ [name: string]: string }"
4511
+ },
4512
+ "privacy": "private",
4513
+ "default": "{}"
4514
+ },
4515
+ {
4516
+ "kind": "field",
4517
+ "name": "scopedElements",
4518
+ "static": true,
4519
+ "readonly": true
4731
4520
  },
4732
4521
  {
4733
4522
  "kind": "method",
4734
- "name": "_valuetype",
4523
+ "name": "onWheelEvent",
4735
4524
  "parameters": [
4736
4525
  {
4737
- "name": "property",
4526
+ "name": "e",
4738
4527
  "type": {
4739
- "text": "string"
4528
+ "text": "Event"
4740
4529
  }
4741
4530
  }
4742
4531
  ]
4743
4532
  },
4744
- {
4745
- "kind": "field",
4746
- "name": "_keep_saved_rule_params",
4747
- "type": {
4748
- "text": "boolean"
4749
- },
4750
- "privacy": "private",
4751
- "default": "false"
4752
- },
4753
4533
  {
4754
4534
  "kind": "method",
4755
- "name": "_onChangedMapping"
4535
+ "name": "_setMode",
4536
+ "parameters": [
4537
+ {
4538
+ "name": "mode",
4539
+ "type": {
4540
+ "text": "SCENE_MODE"
4541
+ }
4542
+ }
4543
+ ]
4756
4544
  },
4757
4545
  {
4758
4546
  "kind": "method",
4759
- "name": "_onChangeRule",
4547
+ "name": "_onClickShift",
4760
4548
  "parameters": [
4761
4549
  {
4762
4550
  "name": "e",
4763
4551
  "type": {
4764
- "text": "Event"
4552
+ "text": "MouseEvent"
4765
4553
  }
4766
4554
  }
4767
4555
  ]
4768
4556
  },
4769
4557
  {
4770
4558
  "kind": "method",
4771
- "name": "_onChange",
4559
+ "name": "_onClickGroup",
4772
4560
  "parameters": [
4773
4561
  {
4774
4562
  "name": "e",
4775
4563
  "type": {
4776
- "text": "Event"
4564
+ "text": "MouseEvent"
4777
4565
  }
4778
4566
  }
4779
4567
  ]
@@ -4781,7 +4569,7 @@
4781
4569
  ],
4782
4570
  "events": [
4783
4571
  {
4784
- "name": "value-change",
4572
+ "name": "mode-changed",
4785
4573
  "type": {
4786
4574
  "text": "CustomEvent"
4787
4575
  }
@@ -4789,35 +4577,39 @@
4789
4577
  ],
4790
4578
  "attributes": [
4791
4579
  {
4792
- "name": "mapping",
4580
+ "name": "componentGroupList",
4793
4581
  "type": {
4794
- "text": "Mapping"
4582
+ "text": "ComponentGroup[]"
4795
4583
  },
4796
- "default": "{\n rule: 'value'\n }",
4797
- "fieldName": "mapping"
4584
+ "default": "[]",
4585
+ "fieldName": "componentGroupList"
4798
4586
  },
4799
4587
  {
4800
- "name": "rule",
4588
+ "name": "group",
4801
4589
  "type": {
4802
- "text": "Rule"
4590
+ "text": "string | null | undefined"
4803
4591
  },
4804
- "default": "{}",
4805
- "fieldName": "rule"
4592
+ "fieldName": "group"
4806
4593
  },
4807
4594
  {
4808
- "name": "properties",
4595
+ "name": "scene",
4809
4596
  "type": {
4810
- "text": "Properties[]"
4597
+ "text": "Scene"
4811
4598
  },
4812
- "default": "[]",
4813
- "fieldName": "properties"
4599
+ "fieldName": "scene"
4814
4600
  },
4815
4601
  {
4816
- "name": "scene",
4602
+ "name": "mode",
4817
4603
  "type": {
4818
- "text": "Scene | undefined"
4604
+ "text": "SCENE_MODE"
4819
4605
  },
4820
- "fieldName": "scene"
4606
+ "fieldName": "mode"
4607
+ }
4608
+ ],
4609
+ "mixins": [
4610
+ {
4611
+ "name": "ScopedElementsMixin",
4612
+ "package": "@open-wc/scoped-elements"
4821
4613
  }
4822
4614
  ],
4823
4615
  "superclass": {
@@ -4830,325 +4622,195 @@
4830
4622
  "exports": [
4831
4623
  {
4832
4624
  "kind": "js",
4833
- "name": "DataBindingMapper",
4625
+ "name": "ComponentToolbar",
4834
4626
  "declaration": {
4835
- "name": "DataBindingMapper",
4836
- "module": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts"
4627
+ "name": "ComponentToolbar",
4628
+ "module": "src/modeller/component-toolbar/component-toolbar.ts"
4837
4629
  }
4838
4630
  }
4839
4631
  ]
4840
4632
  },
4841
4633
  {
4842
4634
  "kind": "javascript-module",
4843
- "path": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts",
4635
+ "path": "src/modeller/component-toolbar/mode-icons.ts",
4844
4636
  "declarations": [
4845
4637
  {
4846
- "kind": "class",
4847
- "description": "",
4848
- "name": "DataBindingValueMap",
4849
- "members": [
4850
- {
4851
- "kind": "method",
4852
- "name": "valueInputTemplate",
4853
- "parameters": [
4854
- {
4855
- "name": "value",
4856
- "optional": true,
4857
- "type": {
4858
- "text": "any"
4859
- }
4860
- }
4861
- ]
4862
- }
4863
- ],
4864
- "superclass": {
4865
- "name": "OxInputValueMap",
4866
- "package": "@operato/input"
4867
- },
4868
- "tagName": "data-binding-value-map",
4869
- "customElement": true
4870
- }
4871
- ],
4872
- "exports": [
4873
- {
4874
- "kind": "js",
4875
- "name": "DataBindingValueMap",
4876
- "declaration": {
4877
- "name": "DataBindingValueMap",
4878
- "module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
4879
- }
4638
+ "kind": "variable",
4639
+ "name": "ICON_EDIT_MODE",
4640
+ "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`"
4880
4641
  },
4881
4642
  {
4882
- "kind": "custom-element-definition",
4883
- "name": "data-binding-value-map",
4884
- "declaration": {
4885
- "name": "DataBindingValueMap",
4886
- "module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
4887
- }
4888
- }
4889
- ]
4890
- },
4891
- {
4892
- "kind": "javascript-module",
4893
- "path": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts",
4894
- "declarations": [
4895
- {
4896
- "kind": "class",
4897
- "description": "",
4898
- "name": "DataBindingValueRange",
4899
- "members": [
4900
- {
4901
- "kind": "method",
4902
- "name": "valueInputTemplate",
4903
- "parameters": [
4904
- {
4905
- "name": "value",
4906
- "optional": true,
4907
- "type": {
4908
- "text": "any"
4909
- }
4910
- }
4911
- ]
4912
- }
4913
- ],
4914
- "superclass": {
4915
- "name": "OxInputValueRange",
4916
- "package": "@operato/input"
4917
- },
4918
- "tagName": "data-binding-value-range",
4919
- "customElement": true
4643
+ "kind": "variable",
4644
+ "name": "ICON_SHIFT_MODE",
4645
+ "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`"
4920
4646
  }
4921
4647
  ],
4922
4648
  "exports": [
4923
4649
  {
4924
4650
  "kind": "js",
4925
- "name": "DataBindingValueRange",
4651
+ "name": "ICON_EDIT_MODE",
4926
4652
  "declaration": {
4927
- "name": "DataBindingValueRange",
4928
- "module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
4653
+ "name": "ICON_EDIT_MODE",
4654
+ "module": "src/modeller/component-toolbar/mode-icons.ts"
4929
4655
  }
4930
4656
  },
4931
4657
  {
4932
- "kind": "custom-element-definition",
4933
- "name": "data-binding-value-range",
4658
+ "kind": "js",
4659
+ "name": "ICON_SHIFT_MODE",
4934
4660
  "declaration": {
4935
- "name": "DataBindingValueRange",
4936
- "module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
4661
+ "name": "ICON_SHIFT_MODE",
4662
+ "module": "src/modeller/component-toolbar/mode-icons.ts"
4937
4663
  }
4938
4664
  }
4939
4665
  ]
4940
4666
  },
4941
4667
  {
4942
4668
  "kind": "javascript-module",
4943
- "path": "src/modeller/property-sidebar/data-binding/data-binding.ts",
4669
+ "path": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts",
4944
4670
  "declarations": [
4945
4671
  {
4946
4672
  "kind": "class",
4947
- "description": "",
4948
- "name": "PropertyDataBinding",
4673
+ "description": "element for mapping data value editing\n\nExample:\n\n<data-binding-mapper mapping=${mapping}>\n</data-binding-mapper>",
4674
+ "name": "DataBindingMapper",
4949
4675
  "members": [
4950
4676
  {
4951
4677
  "kind": "field",
4952
- "name": "value",
4678
+ "name": "mapping",
4953
4679
  "type": {
4954
- "text": "Properties | undefined"
4680
+ "text": "Mapping"
4955
4681
  },
4956
- "attribute": "value"
4682
+ "default": "{\n rule: 'value'\n }",
4683
+ "attribute": "mapping"
4957
4684
  },
4958
4685
  {
4959
4686
  "kind": "field",
4960
- "name": "scene",
4687
+ "name": "rule",
4961
4688
  "type": {
4962
- "text": "Scene | undefined"
4689
+ "text": "Rule"
4963
4690
  },
4964
- "attribute": "scene"
4691
+ "default": "{}",
4692
+ "attribute": "rule"
4965
4693
  },
4966
4694
  {
4967
4695
  "kind": "field",
4968
- "name": "mappingIndex",
4696
+ "name": "scene",
4969
4697
  "type": {
4970
- "text": "number"
4698
+ "text": "Scene | undefined"
4971
4699
  },
4972
- "default": "0"
4973
- },
4974
- {
4975
- "kind": "field",
4976
- "name": "_afterRender",
4977
- "type": {
4978
- "text": "Function | null | undefined"
4979
- }
4700
+ "attribute": "scene"
4980
4701
  },
4981
4702
  {
4982
4703
  "kind": "field",
4983
- "name": "_dataExpanded",
4704
+ "name": "_valueTypes",
4984
4705
  "type": {
4985
- "text": "boolean"
4706
+ "text": "any"
4986
4707
  },
4987
- "default": "true"
4708
+ "default": "{\n play: 'boolean',\n hidden: 'boolean',\n started: 'boolean',\n\n rotation: 'number',\n value: 'number',\n\n fillStyle: 'color',\n strokeStyle: 'color',\n fontColor: 'color',\n\n data: 'object',\n source: 'attachment',\n location: 'object',\n dimension: 'object',\n\n text: 'string',\n ref: 'string'\n }"
4988
4709
  },
4989
4710
  {
4990
4711
  "kind": "field",
4991
- "name": "tabs",
4712
+ "name": "_componentIds",
4992
4713
  "type": {
4993
- "text": "HTMLElement"
4994
- }
4714
+ "text": "{ value: string; description: string }[]"
4715
+ },
4716
+ "default": "[]"
4995
4717
  },
4996
4718
  {
4997
4719
  "kind": "field",
4998
- "name": "tabNavLeftButton",
4720
+ "name": "editor",
4999
4721
  "type": {
5000
- "text": "HTMLElement"
4722
+ "text": "HTMLInputElement"
5001
4723
  }
5002
4724
  },
5003
4725
  {
5004
4726
  "kind": "field",
5005
- "name": "tabNavRightButton",
4727
+ "name": "target",
5006
4728
  "type": {
5007
- "text": "HTMLElement"
4729
+ "text": "HTMLInputElement"
5008
4730
  }
5009
4731
  },
5010
- {
5011
- "kind": "field",
5012
- "name": "mappings",
5013
- "readonly": true
5014
- },
5015
- {
5016
- "kind": "field",
5017
- "name": "scopedElements",
5018
- "static": true,
5019
- "readonly": true
5020
- },
5021
4732
  {
5022
4733
  "kind": "method",
5023
- "name": "_setMappingIndex",
4734
+ "name": "_valuetype",
5024
4735
  "parameters": [
5025
4736
  {
5026
- "name": "idx",
4737
+ "name": "property",
5027
4738
  "type": {
5028
- "text": "number"
4739
+ "text": "string"
5029
4740
  }
5030
4741
  }
5031
4742
  ]
5032
4743
  },
5033
- {
5034
- "kind": "method",
5035
- "name": "_clearDataBindingMapper"
5036
- },
5037
- {
5038
- "kind": "method",
5039
- "name": "_copyDataBindingMapper"
5040
- },
5041
- {
5042
- "kind": "method",
5043
- "name": "_pasteDataBindingMapper"
5044
- },
5045
- {
5046
- "kind": "method",
5047
- "name": "_onValueChanged"
5048
- },
5049
- {
5050
- "kind": "method",
5051
- "name": "_onValueChange",
5052
- "parameters": [
5053
- {
5054
- "name": "e",
5055
- "type": {
5056
- "text": "Event"
5057
- }
5058
- }
5059
- ],
5060
- "inheritedFrom": {
5061
- "name": "AbstractProperty",
5062
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5063
- }
5064
- },
5065
4744
  {
5066
4745
  "kind": "field",
5067
- "name": "tabContainer",
5068
- "readonly": true
5069
- },
5070
- {
5071
- "kind": "method",
5072
- "name": "_onMappingChanged",
5073
- "parameters": [
5074
- {
5075
- "name": "e",
5076
- "type": {
5077
- "text": "CustomEvent"
5078
- }
5079
- }
5080
- ]
5081
- },
5082
- {
5083
- "kind": "method",
5084
- "name": "_onTabScroll"
5085
- },
5086
- {
5087
- "kind": "method",
5088
- "name": "_onTabScrollNavLeft"
4746
+ "name": "_keep_saved_rule_params",
4747
+ "type": {
4748
+ "text": "boolean"
4749
+ },
4750
+ "privacy": "private",
4751
+ "default": "false"
5089
4752
  },
5090
4753
  {
5091
4754
  "kind": "method",
5092
- "name": "_onTabScrollNavRight"
4755
+ "name": "_onChangedMapping"
5093
4756
  },
5094
4757
  {
5095
4758
  "kind": "method",
5096
- "name": "_getValueFromEventTarget",
4759
+ "name": "_onChangeRule",
5097
4760
  "parameters": [
5098
4761
  {
5099
- "name": "element",
4762
+ "name": "e",
5100
4763
  "type": {
5101
- "text": "HTMLElement"
4764
+ "text": "Event"
5102
4765
  }
5103
4766
  }
5104
- ],
5105
- "inheritedFrom": {
5106
- "name": "AbstractProperty",
5107
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5108
- }
4767
+ ]
5109
4768
  },
5110
4769
  {
5111
4770
  "kind": "method",
5112
- "name": "_onAfterValueChange",
4771
+ "name": "_onChange",
5113
4772
  "parameters": [
5114
4773
  {
5115
- "name": "key",
5116
- "type": {
5117
- "text": "string"
5118
- }
5119
- },
5120
- {
5121
- "name": "value",
4774
+ "name": "e",
5122
4775
  "type": {
5123
- "text": "any"
4776
+ "text": "Event"
5124
4777
  }
5125
4778
  }
5126
- ],
5127
- "inheritedFrom": {
5128
- "name": "AbstractProperty",
5129
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5130
- }
4779
+ ]
5131
4780
  }
5132
4781
  ],
5133
4782
  "events": [
5134
4783
  {
5135
- "name": "property-change",
4784
+ "name": "value-change",
5136
4785
  "type": {
5137
4786
  "text": "CustomEvent"
5138
- },
5139
- "inheritedFrom": {
5140
- "name": "AbstractProperty",
5141
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5142
4787
  }
5143
4788
  }
5144
4789
  ],
5145
4790
  "attributes": [
5146
4791
  {
5147
- "name": "value",
4792
+ "name": "mapping",
5148
4793
  "type": {
5149
- "text": "Properties | undefined"
4794
+ "text": "Mapping"
5150
4795
  },
5151
- "fieldName": "value"
4796
+ "default": "{\n rule: 'value'\n }",
4797
+ "fieldName": "mapping"
4798
+ },
4799
+ {
4800
+ "name": "rule",
4801
+ "type": {
4802
+ "text": "Rule"
4803
+ },
4804
+ "default": "{}",
4805
+ "fieldName": "rule"
4806
+ },
4807
+ {
4808
+ "name": "properties",
4809
+ "type": {
4810
+ "text": "Properties[]"
4811
+ },
4812
+ "default": "[]",
4813
+ "fieldName": "properties"
5152
4814
  },
5153
4815
  {
5154
4816
  "name": "scene",
@@ -5158,156 +4820,138 @@
5158
4820
  "fieldName": "scene"
5159
4821
  }
5160
4822
  ],
5161
- "mixins": [
5162
- {
5163
- "name": "ScopedElementsMixin",
5164
- "package": "@open-wc/scoped-elements"
5165
- }
5166
- ],
5167
4823
  "superclass": {
5168
- "name": "AbstractProperty",
5169
- "module": "/src/modeller/property-sidebar/abstract-property.js"
5170
- }
4824
+ "name": "LitElement",
4825
+ "package": "lit"
4826
+ },
4827
+ "customElement": true
5171
4828
  }
5172
4829
  ],
5173
4830
  "exports": [
5174
4831
  {
5175
4832
  "kind": "js",
5176
- "name": "PropertyDataBinding",
4833
+ "name": "DataBindingMapper",
5177
4834
  "declaration": {
5178
- "name": "PropertyDataBinding",
5179
- "module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
4835
+ "name": "DataBindingMapper",
4836
+ "module": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts"
5180
4837
  }
5181
4838
  }
5182
4839
  ]
5183
4840
  },
5184
4841
  {
5185
4842
  "kind": "javascript-module",
5186
- "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
4843
+ "path": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts",
5187
4844
  "declarations": [
5188
4845
  {
5189
4846
  "kind": "class",
5190
4847
  "description": "",
5191
- "name": "SpecificPropertiesBuilder",
4848
+ "name": "DataBindingValueMap",
5192
4849
  "members": [
5193
- {
5194
- "kind": "field",
5195
- "name": "value",
5196
- "type": {
5197
- "text": "any"
5198
- },
5199
- "attribute": "value"
5200
- },
5201
- {
5202
- "kind": "field",
5203
- "name": "props",
5204
- "type": {
5205
- "text": "any[]"
5206
- },
5207
- "default": "[]",
5208
- "attribute": "props"
5209
- },
5210
- {
5211
- "kind": "field",
5212
- "name": "propertyEditor",
5213
- "type": {
5214
- "text": "any"
5215
- },
5216
- "attribute": "propertyEditor"
5217
- },
5218
4850
  {
5219
4851
  "kind": "method",
5220
- "name": "_onPropsChanged",
4852
+ "name": "valueInputTemplate",
5221
4853
  "parameters": [
5222
4854
  {
5223
- "name": "props",
4855
+ "name": "value",
4856
+ "optional": true,
5224
4857
  "type": {
5225
- "text": "any[]"
4858
+ "text": "any"
5226
4859
  }
5227
4860
  }
5228
4861
  ]
5229
- },
5230
- {
5231
- "kind": "method",
5232
- "name": "_setValues"
5233
- },
4862
+ }
4863
+ ],
4864
+ "superclass": {
4865
+ "name": "OxInputValueMap",
4866
+ "package": "@operato/input"
4867
+ },
4868
+ "tagName": "data-binding-value-map",
4869
+ "customElement": true
4870
+ }
4871
+ ],
4872
+ "exports": [
4873
+ {
4874
+ "kind": "js",
4875
+ "name": "DataBindingValueMap",
4876
+ "declaration": {
4877
+ "name": "DataBindingValueMap",
4878
+ "module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
4879
+ }
4880
+ },
4881
+ {
4882
+ "kind": "custom-element-definition",
4883
+ "name": "data-binding-value-map",
4884
+ "declaration": {
4885
+ "name": "DataBindingValueMap",
4886
+ "module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
4887
+ }
4888
+ }
4889
+ ]
4890
+ },
4891
+ {
4892
+ "kind": "javascript-module",
4893
+ "path": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts",
4894
+ "declarations": [
4895
+ {
4896
+ "kind": "class",
4897
+ "description": "",
4898
+ "name": "DataBindingValueRange",
4899
+ "members": [
5234
4900
  {
5235
4901
  "kind": "method",
5236
- "name": "_onValueChanged",
4902
+ "name": "valueInputTemplate",
5237
4903
  "parameters": [
5238
4904
  {
5239
- "name": "e",
4905
+ "name": "value",
4906
+ "optional": true,
5240
4907
  "type": {
5241
- "text": "Event"
4908
+ "text": "any"
5242
4909
  }
5243
4910
  }
5244
4911
  ]
5245
4912
  }
5246
4913
  ],
5247
- "events": [
5248
- {
5249
- "name": "property-change",
5250
- "type": {
5251
- "text": "CustomEvent"
5252
- }
5253
- }
5254
- ],
5255
- "attributes": [
5256
- {
5257
- "name": "value",
5258
- "type": {
5259
- "text": "any"
5260
- },
5261
- "fieldName": "value"
5262
- },
5263
- {
5264
- "name": "props",
5265
- "type": {
5266
- "text": "any[]"
5267
- },
5268
- "default": "[]",
5269
- "fieldName": "props"
5270
- },
5271
- {
5272
- "name": "propertyEditor",
5273
- "type": {
5274
- "text": "any"
5275
- },
5276
- "fieldName": "propertyEditor"
5277
- }
5278
- ],
5279
4914
  "superclass": {
5280
- "name": "LitElement",
5281
- "package": "lit"
4915
+ "name": "OxInputValueRange",
4916
+ "package": "@operato/input"
5282
4917
  },
4918
+ "tagName": "data-binding-value-range",
5283
4919
  "customElement": true
5284
4920
  }
5285
4921
  ],
5286
4922
  "exports": [
5287
4923
  {
5288
4924
  "kind": "js",
5289
- "name": "SpecificPropertiesBuilder",
4925
+ "name": "DataBindingValueRange",
5290
4926
  "declaration": {
5291
- "name": "SpecificPropertiesBuilder",
5292
- "module": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts"
4927
+ "name": "DataBindingValueRange",
4928
+ "module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
4929
+ }
4930
+ },
4931
+ {
4932
+ "kind": "custom-element-definition",
4933
+ "name": "data-binding-value-range",
4934
+ "declaration": {
4935
+ "name": "DataBindingValueRange",
4936
+ "module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
5293
4937
  }
5294
4938
  }
5295
4939
  ]
5296
4940
  },
5297
4941
  {
5298
4942
  "kind": "javascript-module",
5299
- "path": "src/modeller/property-sidebar/specifics/specifics.ts",
4943
+ "path": "src/modeller/property-sidebar/data-binding/data-binding.ts",
5300
4944
  "declarations": [
5301
4945
  {
5302
4946
  "kind": "class",
5303
4947
  "description": "",
5304
- "name": "PropertySpecific",
4948
+ "name": "PropertyDataBinding",
5305
4949
  "members": [
5306
4950
  {
5307
4951
  "kind": "field",
5308
4952
  "name": "value",
5309
4953
  "type": {
5310
- "text": "any"
4954
+ "text": "Properties | undefined"
5311
4955
  },
5312
4956
  "attribute": "value"
5313
4957
  },
@@ -5315,45 +4959,58 @@
5315
4959
  "kind": "field",
5316
4960
  "name": "scene",
5317
4961
  "type": {
5318
- "text": "Scene | null"
4962
+ "text": "Scene | undefined"
5319
4963
  },
5320
- "default": "null",
5321
4964
  "attribute": "scene"
5322
4965
  },
5323
4966
  {
5324
4967
  "kind": "field",
5325
- "name": "selected",
4968
+ "name": "mappingIndex",
5326
4969
  "type": {
5327
- "text": "Component[]"
4970
+ "text": "number"
5328
4971
  },
5329
- "default": "[]",
5330
- "attribute": "selected"
4972
+ "default": "0"
4973
+ },
4974
+ {
4975
+ "kind": "field",
4976
+ "name": "_afterRender",
4977
+ "type": {
4978
+ "text": "Function | null | undefined"
4979
+ }
4980
+ },
4981
+ {
4982
+ "kind": "field",
4983
+ "name": "_dataExpanded",
4984
+ "type": {
4985
+ "text": "boolean"
4986
+ },
4987
+ "default": "true"
4988
+ },
4989
+ {
4990
+ "kind": "field",
4991
+ "name": "tabs",
4992
+ "type": {
4993
+ "text": "HTMLElement"
4994
+ }
5331
4995
  },
5332
4996
  {
5333
4997
  "kind": "field",
5334
- "name": "props",
4998
+ "name": "tabNavLeftButton",
5335
4999
  "type": {
5336
- "text": "any[]"
5337
- },
5338
- "default": "[]",
5339
- "attribute": "props"
5000
+ "text": "HTMLElement"
5001
+ }
5340
5002
  },
5341
5003
  {
5342
5004
  "kind": "field",
5343
- "name": "propertyEditor",
5005
+ "name": "tabNavRightButton",
5344
5006
  "type": {
5345
- "text": "any[]"
5346
- },
5347
- "default": "[]",
5348
- "attribute": "propertyEditor"
5007
+ "text": "HTMLElement"
5008
+ }
5349
5009
  },
5350
5010
  {
5351
5011
  "kind": "field",
5352
- "name": "boundINeedSelected",
5353
- "type": {
5354
- "text": "any"
5355
- },
5356
- "privacy": "private"
5012
+ "name": "mappings",
5013
+ "readonly": true
5357
5014
  },
5358
5015
  {
5359
5016
  "kind": "field",
@@ -5361,6 +5018,34 @@
5361
5018
  "static": true,
5362
5019
  "readonly": true
5363
5020
  },
5021
+ {
5022
+ "kind": "method",
5023
+ "name": "_setMappingIndex",
5024
+ "parameters": [
5025
+ {
5026
+ "name": "idx",
5027
+ "type": {
5028
+ "text": "number"
5029
+ }
5030
+ }
5031
+ ]
5032
+ },
5033
+ {
5034
+ "kind": "method",
5035
+ "name": "_clearDataBindingMapper"
5036
+ },
5037
+ {
5038
+ "kind": "method",
5039
+ "name": "_copyDataBindingMapper"
5040
+ },
5041
+ {
5042
+ "kind": "method",
5043
+ "name": "_pasteDataBindingMapper"
5044
+ },
5045
+ {
5046
+ "kind": "method",
5047
+ "name": "_onValueChanged"
5048
+ },
5364
5049
  {
5365
5050
  "kind": "method",
5366
5051
  "name": "_onValueChange",
@@ -5377,41 +5062,34 @@
5377
5062
  "module": "src/modeller/property-sidebar/abstract-property.ts"
5378
5063
  }
5379
5064
  },
5065
+ {
5066
+ "kind": "field",
5067
+ "name": "tabContainer",
5068
+ "readonly": true
5069
+ },
5380
5070
  {
5381
5071
  "kind": "method",
5382
- "name": "_isIdentifiable",
5072
+ "name": "_onMappingChanged",
5383
5073
  "parameters": [
5384
5074
  {
5385
- "name": "selected",
5075
+ "name": "e",
5386
5076
  "type": {
5387
- "text": "Component[]"
5077
+ "text": "CustomEvent"
5388
5078
  }
5389
5079
  }
5390
5080
  ]
5391
5081
  },
5392
5082
  {
5393
5083
  "kind": "method",
5394
- "name": "_hasTextProperty",
5395
- "parameters": [
5396
- {
5397
- "name": "selected",
5398
- "type": {
5399
- "text": "Component[]"
5400
- }
5401
- }
5402
- ]
5084
+ "name": "_onTabScroll"
5403
5085
  },
5404
5086
  {
5405
5087
  "kind": "method",
5406
- "name": "_onINeedSelected",
5407
- "parameters": [
5408
- {
5409
- "name": "e",
5410
- "type": {
5411
- "text": "CustomEvent"
5412
- }
5413
- }
5414
- ]
5088
+ "name": "_onTabScrollNavLeft"
5089
+ },
5090
+ {
5091
+ "kind": "method",
5092
+ "name": "_onTabScrollNavRight"
5415
5093
  },
5416
5094
  {
5417
5095
  "kind": "method",
@@ -5452,45 +5130,32 @@
5452
5130
  }
5453
5131
  }
5454
5132
  ],
5133
+ "events": [
5134
+ {
5135
+ "name": "property-change",
5136
+ "type": {
5137
+ "text": "CustomEvent"
5138
+ },
5139
+ "inheritedFrom": {
5140
+ "name": "AbstractProperty",
5141
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5142
+ }
5143
+ }
5144
+ ],
5455
5145
  "attributes": [
5456
5146
  {
5457
5147
  "name": "value",
5458
5148
  "type": {
5459
- "text": "any"
5149
+ "text": "Properties | undefined"
5460
5150
  },
5461
5151
  "fieldName": "value"
5462
5152
  },
5463
5153
  {
5464
5154
  "name": "scene",
5465
5155
  "type": {
5466
- "text": "Scene | null"
5156
+ "text": "Scene | undefined"
5467
5157
  },
5468
- "default": "null",
5469
5158
  "fieldName": "scene"
5470
- },
5471
- {
5472
- "name": "selected",
5473
- "type": {
5474
- "text": "Component[]"
5475
- },
5476
- "default": "[]",
5477
- "fieldName": "selected"
5478
- },
5479
- {
5480
- "name": "props",
5481
- "type": {
5482
- "text": "any[]"
5483
- },
5484
- "default": "[]",
5485
- "fieldName": "props"
5486
- },
5487
- {
5488
- "name": "propertyEditor",
5489
- "type": {
5490
- "text": "any[]"
5491
- },
5492
- "default": "[]",
5493
- "fieldName": "propertyEditor"
5494
5159
  }
5495
5160
  ],
5496
5161
  "mixins": [
@@ -5501,29 +5166,17 @@
5501
5166
  ],
5502
5167
  "superclass": {
5503
5168
  "name": "AbstractProperty",
5504
- "module": "/src/modeller/property-sidebar/abstract-property"
5505
- },
5506
- "events": [
5507
- {
5508
- "name": "property-change",
5509
- "type": {
5510
- "text": "CustomEvent"
5511
- },
5512
- "inheritedFrom": {
5513
- "name": "AbstractProperty",
5514
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5515
- }
5516
- }
5517
- ]
5169
+ "module": "/src/modeller/property-sidebar/abstract-property.js"
5170
+ }
5518
5171
  }
5519
5172
  ],
5520
5173
  "exports": [
5521
5174
  {
5522
5175
  "kind": "js",
5523
- "name": "PropertySpecific",
5176
+ "name": "PropertyDataBinding",
5524
5177
  "declaration": {
5525
- "name": "PropertySpecific",
5526
- "module": "src/modeller/property-sidebar/specifics/specifics.ts"
5178
+ "name": "PropertyDataBinding",
5179
+ "module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
5527
5180
  }
5528
5181
  }
5529
5182
  ]
@@ -5695,59 +5348,172 @@
5695
5348
  },
5696
5349
  {
5697
5350
  "kind": "method",
5698
- "name": "shouldBeShown",
5699
- "return": {
5700
- "type": {
5701
- "text": "boolean"
5702
- }
5703
- },
5351
+ "name": "shouldBeShown",
5352
+ "return": {
5353
+ "type": {
5354
+ "text": "boolean"
5355
+ }
5356
+ },
5357
+ "parameters": [
5358
+ {
5359
+ "name": "component",
5360
+ "type": {
5361
+ "text": "Component"
5362
+ }
5363
+ },
5364
+ {
5365
+ "name": "counting",
5366
+ "default": "false",
5367
+ "type": {
5368
+ "text": "boolean"
5369
+ }
5370
+ }
5371
+ ]
5372
+ },
5373
+ {
5374
+ "kind": "method",
5375
+ "name": "renderComponent",
5376
+ "return": {
5377
+ "type": {
5378
+ "text": "TemplateResult"
5379
+ }
5380
+ },
5381
+ "parameters": [
5382
+ {
5383
+ "name": "component",
5384
+ "type": {
5385
+ "text": "Component"
5386
+ }
5387
+ },
5388
+ {
5389
+ "name": "depth",
5390
+ "type": {
5391
+ "text": "number"
5392
+ }
5393
+ }
5394
+ ]
5395
+ }
5396
+ ],
5397
+ "attributes": [
5398
+ {
5399
+ "name": "scene",
5400
+ "type": {
5401
+ "text": "Scene | undefined"
5402
+ },
5403
+ "fieldName": "scene"
5404
+ }
5405
+ ],
5406
+ "superclass": {
5407
+ "name": "LitElement",
5408
+ "package": "lit"
5409
+ },
5410
+ "customElement": true
5411
+ }
5412
+ ],
5413
+ "exports": [
5414
+ {
5415
+ "kind": "js",
5416
+ "name": "SceneInspector",
5417
+ "declaration": {
5418
+ "name": "SceneInspector",
5419
+ "module": "src/modeller/property-sidebar/inspector/inspector.ts"
5420
+ }
5421
+ }
5422
+ ]
5423
+ },
5424
+ {
5425
+ "kind": "javascript-module",
5426
+ "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
5427
+ "declarations": [
5428
+ {
5429
+ "kind": "class",
5430
+ "description": "",
5431
+ "name": "SpecificPropertiesBuilder",
5432
+ "members": [
5433
+ {
5434
+ "kind": "field",
5435
+ "name": "value",
5436
+ "type": {
5437
+ "text": "any"
5438
+ },
5439
+ "attribute": "value"
5440
+ },
5441
+ {
5442
+ "kind": "field",
5443
+ "name": "props",
5444
+ "type": {
5445
+ "text": "any[]"
5446
+ },
5447
+ "default": "[]",
5448
+ "attribute": "props"
5449
+ },
5450
+ {
5451
+ "kind": "field",
5452
+ "name": "propertyEditor",
5453
+ "type": {
5454
+ "text": "any"
5455
+ },
5456
+ "attribute": "propertyEditor"
5457
+ },
5458
+ {
5459
+ "kind": "method",
5460
+ "name": "_onPropsChanged",
5704
5461
  "parameters": [
5705
5462
  {
5706
- "name": "component",
5707
- "type": {
5708
- "text": "Component"
5709
- }
5710
- },
5711
- {
5712
- "name": "counting",
5713
- "default": "false",
5463
+ "name": "props",
5714
5464
  "type": {
5715
- "text": "boolean"
5465
+ "text": "any[]"
5716
5466
  }
5717
5467
  }
5718
5468
  ]
5719
5469
  },
5720
5470
  {
5721
5471
  "kind": "method",
5722
- "name": "renderComponent",
5723
- "return": {
5724
- "type": {
5725
- "text": "TemplateResult"
5726
- }
5727
- },
5472
+ "name": "_setValues"
5473
+ },
5474
+ {
5475
+ "kind": "method",
5476
+ "name": "_onValueChanged",
5728
5477
  "parameters": [
5729
5478
  {
5730
- "name": "component",
5731
- "type": {
5732
- "text": "Component"
5733
- }
5734
- },
5735
- {
5736
- "name": "depth",
5479
+ "name": "e",
5737
5480
  "type": {
5738
- "text": "number"
5481
+ "text": "Event"
5739
5482
  }
5740
5483
  }
5741
5484
  ]
5742
5485
  }
5743
5486
  ],
5487
+ "events": [
5488
+ {
5489
+ "name": "property-change",
5490
+ "type": {
5491
+ "text": "CustomEvent"
5492
+ }
5493
+ }
5494
+ ],
5744
5495
  "attributes": [
5745
5496
  {
5746
- "name": "scene",
5497
+ "name": "value",
5747
5498
  "type": {
5748
- "text": "Scene | undefined"
5499
+ "text": "any"
5749
5500
  },
5750
- "fieldName": "scene"
5501
+ "fieldName": "value"
5502
+ },
5503
+ {
5504
+ "name": "props",
5505
+ "type": {
5506
+ "text": "any[]"
5507
+ },
5508
+ "default": "[]",
5509
+ "fieldName": "props"
5510
+ },
5511
+ {
5512
+ "name": "propertyEditor",
5513
+ "type": {
5514
+ "text": "any"
5515
+ },
5516
+ "fieldName": "propertyEditor"
5751
5517
  }
5752
5518
  ],
5753
5519
  "superclass": {
@@ -5760,60 +5526,39 @@
5760
5526
  "exports": [
5761
5527
  {
5762
5528
  "kind": "js",
5763
- "name": "SceneInspector",
5764
- "declaration": {
5765
- "name": "SceneInspector",
5766
- "module": "src/modeller/property-sidebar/inspector/inspector.ts"
5767
- }
5768
- }
5769
- ]
5770
- },
5771
- {
5772
- "kind": "javascript-module",
5773
- "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
5774
- "declarations": [
5775
- {
5776
- "kind": "variable",
5777
- "name": "BoxPaddingEditorStyles",
5778
- "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`"
5779
- }
5780
- ],
5781
- "exports": [
5782
- {
5783
- "kind": "js",
5784
- "name": "BoxPaddingEditorStyles",
5529
+ "name": "SpecificPropertiesBuilder",
5785
5530
  "declaration": {
5786
- "name": "BoxPaddingEditorStyles",
5787
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
5531
+ "name": "SpecificPropertiesBuilder",
5532
+ "module": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts"
5788
5533
  }
5789
5534
  }
5790
5535
  ]
5791
5536
  },
5792
5537
  {
5793
5538
  "kind": "javascript-module",
5794
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
5539
+ "path": "src/modeller/property-sidebar/specifics/specifics.ts",
5795
5540
  "declarations": [
5796
5541
  {
5797
5542
  "kind": "class",
5798
5543
  "description": "",
5799
- "name": "PropertyShapes",
5544
+ "name": "PropertySpecific",
5800
5545
  "members": [
5801
5546
  {
5802
5547
  "kind": "field",
5803
5548
  "name": "value",
5804
5549
  "type": {
5805
- "text": "Properties | undefined"
5550
+ "text": "any"
5806
5551
  },
5807
5552
  "attribute": "value"
5808
5553
  },
5809
5554
  {
5810
5555
  "kind": "field",
5811
- "name": "bounds",
5556
+ "name": "scene",
5812
5557
  "type": {
5813
- "text": "BOUNDS | null"
5558
+ "text": "Scene | null"
5814
5559
  },
5815
5560
  "default": "null",
5816
- "attribute": "bounds"
5561
+ "attribute": "scene"
5817
5562
  },
5818
5563
  {
5819
5564
  "kind": "field",
@@ -5824,6 +5569,38 @@
5824
5569
  "default": "[]",
5825
5570
  "attribute": "selected"
5826
5571
  },
5572
+ {
5573
+ "kind": "field",
5574
+ "name": "props",
5575
+ "type": {
5576
+ "text": "any[]"
5577
+ },
5578
+ "default": "[]",
5579
+ "attribute": "props"
5580
+ },
5581
+ {
5582
+ "kind": "field",
5583
+ "name": "propertyEditor",
5584
+ "type": {
5585
+ "text": "any[]"
5586
+ },
5587
+ "default": "[]",
5588
+ "attribute": "propertyEditor"
5589
+ },
5590
+ {
5591
+ "kind": "field",
5592
+ "name": "boundINeedSelected",
5593
+ "type": {
5594
+ "text": "any"
5595
+ },
5596
+ "privacy": "private"
5597
+ },
5598
+ {
5599
+ "kind": "field",
5600
+ "name": "scopedElements",
5601
+ "static": true,
5602
+ "readonly": true
5603
+ },
5827
5604
  {
5828
5605
  "kind": "method",
5829
5606
  "name": "_onValueChange",
@@ -5840,30 +5617,6 @@
5840
5617
  "module": "src/modeller/property-sidebar/abstract-property.ts"
5841
5618
  }
5842
5619
  },
5843
- {
5844
- "kind": "method",
5845
- "name": "_hasTextProperty",
5846
- "parameters": [
5847
- {
5848
- "name": "selected",
5849
- "type": {
5850
- "text": "Component[]"
5851
- }
5852
- }
5853
- ]
5854
- },
5855
- {
5856
- "kind": "method",
5857
- "name": "_hasProperties",
5858
- "parameters": [
5859
- {
5860
- "name": "selected",
5861
- "type": {
5862
- "text": "Component[]"
5863
- }
5864
- }
5865
- ]
5866
- },
5867
5620
  {
5868
5621
  "kind": "method",
5869
5622
  "name": "_isIdentifiable",
@@ -5878,19 +5631,7 @@
5878
5631
  },
5879
5632
  {
5880
5633
  "kind": "method",
5881
- "name": "_isClassIdentifiable",
5882
- "parameters": [
5883
- {
5884
- "name": "selected",
5885
- "type": {
5886
- "text": "Component[]"
5887
- }
5888
- }
5889
- ]
5890
- },
5891
- {
5892
- "kind": "method",
5893
- "name": "_isLine",
5634
+ "name": "_hasTextProperty",
5894
5635
  "parameters": [
5895
5636
  {
5896
5637
  "name": "selected",
@@ -5902,12 +5643,12 @@
5902
5643
  },
5903
5644
  {
5904
5645
  "kind": "method",
5905
- "name": "_is3dish",
5646
+ "name": "_onINeedSelected",
5906
5647
  "parameters": [
5907
5648
  {
5908
- "name": "selected",
5649
+ "name": "e",
5909
5650
  "type": {
5910
- "text": "Component[]"
5651
+ "text": "CustomEvent"
5911
5652
  }
5912
5653
  }
5913
5654
  ]
@@ -5951,39 +5692,21 @@
5951
5692
  }
5952
5693
  }
5953
5694
  ],
5954
- "events": [
5955
- {
5956
- "name": "bounds-change",
5957
- "type": {
5958
- "text": "CustomEvent"
5959
- }
5960
- },
5961
- {
5962
- "name": "property-change",
5963
- "type": {
5964
- "text": "CustomEvent"
5965
- },
5966
- "inheritedFrom": {
5967
- "name": "AbstractProperty",
5968
- "module": "src/modeller/property-sidebar/abstract-property.ts"
5969
- }
5970
- }
5971
- ],
5972
5695
  "attributes": [
5973
5696
  {
5974
5697
  "name": "value",
5975
5698
  "type": {
5976
- "text": "Properties | undefined"
5699
+ "text": "any"
5977
5700
  },
5978
5701
  "fieldName": "value"
5979
5702
  },
5980
5703
  {
5981
- "name": "bounds",
5704
+ "name": "scene",
5982
5705
  "type": {
5983
- "text": "BOUNDS | null"
5706
+ "text": "Scene | null"
5984
5707
  },
5985
5708
  "default": "null",
5986
- "fieldName": "bounds"
5709
+ "fieldName": "scene"
5987
5710
  },
5988
5711
  {
5989
5712
  "name": "selected",
@@ -5992,21 +5715,55 @@
5992
5715
  },
5993
5716
  "default": "[]",
5994
5717
  "fieldName": "selected"
5718
+ },
5719
+ {
5720
+ "name": "props",
5721
+ "type": {
5722
+ "text": "any[]"
5723
+ },
5724
+ "default": "[]",
5725
+ "fieldName": "props"
5726
+ },
5727
+ {
5728
+ "name": "propertyEditor",
5729
+ "type": {
5730
+ "text": "any[]"
5731
+ },
5732
+ "default": "[]",
5733
+ "fieldName": "propertyEditor"
5734
+ }
5735
+ ],
5736
+ "mixins": [
5737
+ {
5738
+ "name": "ScopedElementsMixin",
5739
+ "package": "@open-wc/scoped-elements"
5995
5740
  }
5996
5741
  ],
5997
5742
  "superclass": {
5998
5743
  "name": "AbstractProperty",
5999
5744
  "module": "/src/modeller/property-sidebar/abstract-property"
6000
- }
5745
+ },
5746
+ "events": [
5747
+ {
5748
+ "name": "property-change",
5749
+ "type": {
5750
+ "text": "CustomEvent"
5751
+ },
5752
+ "inheritedFrom": {
5753
+ "name": "AbstractProperty",
5754
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
5755
+ }
5756
+ }
5757
+ ]
6001
5758
  }
6002
5759
  ],
6003
5760
  "exports": [
6004
5761
  {
6005
5762
  "kind": "js",
6006
- "name": "PropertyShapes",
5763
+ "name": "PropertySpecific",
6007
5764
  "declaration": {
6008
- "name": "PropertyShapes",
6009
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
5765
+ "name": "PropertySpecific",
5766
+ "module": "src/modeller/property-sidebar/specifics/specifics.ts"
6010
5767
  }
6011
5768
  }
6012
5769
  ]
@@ -6588,6 +6345,249 @@
6588
6345
  }
6589
6346
  ]
6590
6347
  },
6348
+ {
6349
+ "kind": "javascript-module",
6350
+ "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
6351
+ "declarations": [
6352
+ {
6353
+ "kind": "variable",
6354
+ "name": "BoxPaddingEditorStyles",
6355
+ "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`"
6356
+ }
6357
+ ],
6358
+ "exports": [
6359
+ {
6360
+ "kind": "js",
6361
+ "name": "BoxPaddingEditorStyles",
6362
+ "declaration": {
6363
+ "name": "BoxPaddingEditorStyles",
6364
+ "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
6365
+ }
6366
+ }
6367
+ ]
6368
+ },
6369
+ {
6370
+ "kind": "javascript-module",
6371
+ "path": "src/modeller/property-sidebar/shapes/shapes.ts",
6372
+ "declarations": [
6373
+ {
6374
+ "kind": "class",
6375
+ "description": "",
6376
+ "name": "PropertyShapes",
6377
+ "members": [
6378
+ {
6379
+ "kind": "field",
6380
+ "name": "value",
6381
+ "type": {
6382
+ "text": "Properties | undefined"
6383
+ },
6384
+ "attribute": "value"
6385
+ },
6386
+ {
6387
+ "kind": "field",
6388
+ "name": "bounds",
6389
+ "type": {
6390
+ "text": "BOUNDS | null"
6391
+ },
6392
+ "default": "null",
6393
+ "attribute": "bounds"
6394
+ },
6395
+ {
6396
+ "kind": "field",
6397
+ "name": "selected",
6398
+ "type": {
6399
+ "text": "Component[]"
6400
+ },
6401
+ "default": "[]",
6402
+ "attribute": "selected"
6403
+ },
6404
+ {
6405
+ "kind": "method",
6406
+ "name": "_onValueChange",
6407
+ "parameters": [
6408
+ {
6409
+ "name": "e",
6410
+ "type": {
6411
+ "text": "Event"
6412
+ }
6413
+ }
6414
+ ],
6415
+ "inheritedFrom": {
6416
+ "name": "AbstractProperty",
6417
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6418
+ }
6419
+ },
6420
+ {
6421
+ "kind": "method",
6422
+ "name": "_hasTextProperty",
6423
+ "parameters": [
6424
+ {
6425
+ "name": "selected",
6426
+ "type": {
6427
+ "text": "Component[]"
6428
+ }
6429
+ }
6430
+ ]
6431
+ },
6432
+ {
6433
+ "kind": "method",
6434
+ "name": "_hasProperties",
6435
+ "parameters": [
6436
+ {
6437
+ "name": "selected",
6438
+ "type": {
6439
+ "text": "Component[]"
6440
+ }
6441
+ }
6442
+ ]
6443
+ },
6444
+ {
6445
+ "kind": "method",
6446
+ "name": "_isIdentifiable",
6447
+ "parameters": [
6448
+ {
6449
+ "name": "selected",
6450
+ "type": {
6451
+ "text": "Component[]"
6452
+ }
6453
+ }
6454
+ ]
6455
+ },
6456
+ {
6457
+ "kind": "method",
6458
+ "name": "_isClassIdentifiable",
6459
+ "parameters": [
6460
+ {
6461
+ "name": "selected",
6462
+ "type": {
6463
+ "text": "Component[]"
6464
+ }
6465
+ }
6466
+ ]
6467
+ },
6468
+ {
6469
+ "kind": "method",
6470
+ "name": "_isLine",
6471
+ "parameters": [
6472
+ {
6473
+ "name": "selected",
6474
+ "type": {
6475
+ "text": "Component[]"
6476
+ }
6477
+ }
6478
+ ]
6479
+ },
6480
+ {
6481
+ "kind": "method",
6482
+ "name": "_is3dish",
6483
+ "parameters": [
6484
+ {
6485
+ "name": "selected",
6486
+ "type": {
6487
+ "text": "Component[]"
6488
+ }
6489
+ }
6490
+ ]
6491
+ },
6492
+ {
6493
+ "kind": "method",
6494
+ "name": "_getValueFromEventTarget",
6495
+ "parameters": [
6496
+ {
6497
+ "name": "element",
6498
+ "type": {
6499
+ "text": "HTMLElement"
6500
+ }
6501
+ }
6502
+ ],
6503
+ "inheritedFrom": {
6504
+ "name": "AbstractProperty",
6505
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6506
+ }
6507
+ },
6508
+ {
6509
+ "kind": "method",
6510
+ "name": "_onAfterValueChange",
6511
+ "parameters": [
6512
+ {
6513
+ "name": "key",
6514
+ "type": {
6515
+ "text": "string"
6516
+ }
6517
+ },
6518
+ {
6519
+ "name": "value",
6520
+ "type": {
6521
+ "text": "any"
6522
+ }
6523
+ }
6524
+ ],
6525
+ "inheritedFrom": {
6526
+ "name": "AbstractProperty",
6527
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6528
+ }
6529
+ }
6530
+ ],
6531
+ "events": [
6532
+ {
6533
+ "name": "bounds-change",
6534
+ "type": {
6535
+ "text": "CustomEvent"
6536
+ }
6537
+ },
6538
+ {
6539
+ "name": "property-change",
6540
+ "type": {
6541
+ "text": "CustomEvent"
6542
+ },
6543
+ "inheritedFrom": {
6544
+ "name": "AbstractProperty",
6545
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6546
+ }
6547
+ }
6548
+ ],
6549
+ "attributes": [
6550
+ {
6551
+ "name": "value",
6552
+ "type": {
6553
+ "text": "Properties | undefined"
6554
+ },
6555
+ "fieldName": "value"
6556
+ },
6557
+ {
6558
+ "name": "bounds",
6559
+ "type": {
6560
+ "text": "BOUNDS | null"
6561
+ },
6562
+ "default": "null",
6563
+ "fieldName": "bounds"
6564
+ },
6565
+ {
6566
+ "name": "selected",
6567
+ "type": {
6568
+ "text": "Component[]"
6569
+ },
6570
+ "default": "[]",
6571
+ "fieldName": "selected"
6572
+ }
6573
+ ],
6574
+ "superclass": {
6575
+ "name": "AbstractProperty",
6576
+ "module": "/src/modeller/property-sidebar/abstract-property"
6577
+ }
6578
+ }
6579
+ ],
6580
+ "exports": [
6581
+ {
6582
+ "kind": "js",
6583
+ "name": "PropertyShapes",
6584
+ "declaration": {
6585
+ "name": "PropertyShapes",
6586
+ "module": "src/modeller/property-sidebar/shapes/shapes.ts"
6587
+ }
6588
+ }
6589
+ ]
6590
+ },
6591
6591
  {
6592
6592
  "kind": "javascript-module",
6593
6593
  "path": "src/modeller/property-sidebar/styles/styles.ts",
@@ -6632,6 +6632,18 @@
6632
6632
  },
6633
6633
  "default": "false"
6634
6634
  },
6635
+ {
6636
+ "kind": "method",
6637
+ "name": "_isLine",
6638
+ "parameters": [
6639
+ {
6640
+ "name": "selected",
6641
+ "type": {
6642
+ "text": "Component[]"
6643
+ }
6644
+ }
6645
+ ]
6646
+ },
6635
6647
  {
6636
6648
  "kind": "method",
6637
6649
  "name": "_onValueChange",