@fmsim/board 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/custom-elements.json
CHANGED
|
@@ -3572,6 +3572,390 @@
|
|
|
3572
3572
|
}
|
|
3573
3573
|
]
|
|
3574
3574
|
},
|
|
3575
|
+
{
|
|
3576
|
+
"kind": "javascript-module",
|
|
3577
|
+
"path": "src/modeller/property-sidebar/abstract-property.ts",
|
|
3578
|
+
"declarations": [
|
|
3579
|
+
{
|
|
3580
|
+
"kind": "class",
|
|
3581
|
+
"description": "",
|
|
3582
|
+
"name": "AbstractProperty",
|
|
3583
|
+
"members": [
|
|
3584
|
+
{
|
|
3585
|
+
"kind": "method",
|
|
3586
|
+
"name": "_onValueChange",
|
|
3587
|
+
"parameters": [
|
|
3588
|
+
{
|
|
3589
|
+
"name": "e",
|
|
3590
|
+
"type": {
|
|
3591
|
+
"text": "Event"
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
]
|
|
3595
|
+
},
|
|
3596
|
+
{
|
|
3597
|
+
"kind": "method",
|
|
3598
|
+
"name": "_getValueFromEventTarget",
|
|
3599
|
+
"parameters": [
|
|
3600
|
+
{
|
|
3601
|
+
"name": "element",
|
|
3602
|
+
"type": {
|
|
3603
|
+
"text": "HTMLElement"
|
|
3604
|
+
}
|
|
3605
|
+
}
|
|
3606
|
+
]
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
"kind": "method",
|
|
3610
|
+
"name": "_onAfterValueChange",
|
|
3611
|
+
"parameters": [
|
|
3612
|
+
{
|
|
3613
|
+
"name": "key",
|
|
3614
|
+
"type": {
|
|
3615
|
+
"text": "string"
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"name": "value",
|
|
3620
|
+
"type": {
|
|
3621
|
+
"text": "any"
|
|
3622
|
+
}
|
|
3623
|
+
}
|
|
3624
|
+
]
|
|
3625
|
+
}
|
|
3626
|
+
],
|
|
3627
|
+
"events": [
|
|
3628
|
+
{
|
|
3629
|
+
"name": "property-change",
|
|
3630
|
+
"type": {
|
|
3631
|
+
"text": "CustomEvent"
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
],
|
|
3635
|
+
"superclass": {
|
|
3636
|
+
"name": "LitElement",
|
|
3637
|
+
"package": "lit"
|
|
3638
|
+
},
|
|
3639
|
+
"customElement": true
|
|
3640
|
+
}
|
|
3641
|
+
],
|
|
3642
|
+
"exports": [
|
|
3643
|
+
{
|
|
3644
|
+
"kind": "js",
|
|
3645
|
+
"name": "AbstractProperty",
|
|
3646
|
+
"declaration": {
|
|
3647
|
+
"name": "AbstractProperty",
|
|
3648
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
3649
|
+
}
|
|
3650
|
+
}
|
|
3651
|
+
]
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
"kind": "javascript-module",
|
|
3655
|
+
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
3656
|
+
"declarations": [
|
|
3657
|
+
{
|
|
3658
|
+
"kind": "variable",
|
|
3659
|
+
"name": "PropertySharedStyle",
|
|
3660
|
+
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } .icon-only-label.letterSpacing { background-position: 100% -1594px; } `"
|
|
3661
|
+
}
|
|
3662
|
+
],
|
|
3663
|
+
"exports": [
|
|
3664
|
+
{
|
|
3665
|
+
"kind": "js",
|
|
3666
|
+
"name": "PropertySharedStyle",
|
|
3667
|
+
"declaration": {
|
|
3668
|
+
"name": "PropertySharedStyle",
|
|
3669
|
+
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
3670
|
+
}
|
|
3671
|
+
}
|
|
3672
|
+
]
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"kind": "javascript-module",
|
|
3676
|
+
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
3677
|
+
"declarations": [
|
|
3678
|
+
{
|
|
3679
|
+
"kind": "class",
|
|
3680
|
+
"description": "",
|
|
3681
|
+
"name": "PropertySidebar",
|
|
3682
|
+
"members": [
|
|
3683
|
+
{
|
|
3684
|
+
"kind": "field",
|
|
3685
|
+
"name": "scene",
|
|
3686
|
+
"type": {
|
|
3687
|
+
"text": "Scene | null"
|
|
3688
|
+
},
|
|
3689
|
+
"default": "null",
|
|
3690
|
+
"attribute": "scene"
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
"kind": "field",
|
|
3694
|
+
"name": "bounds",
|
|
3695
|
+
"type": {
|
|
3696
|
+
"text": "any"
|
|
3697
|
+
},
|
|
3698
|
+
"default": "{}",
|
|
3699
|
+
"attribute": "bounds"
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"kind": "field",
|
|
3703
|
+
"name": "model",
|
|
3704
|
+
"type": {
|
|
3705
|
+
"text": "Model | null"
|
|
3706
|
+
},
|
|
3707
|
+
"default": "{}",
|
|
3708
|
+
"attribute": "model"
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"kind": "field",
|
|
3712
|
+
"name": "selected",
|
|
3713
|
+
"type": {
|
|
3714
|
+
"text": "Component[]"
|
|
3715
|
+
},
|
|
3716
|
+
"default": "[]",
|
|
3717
|
+
"attribute": "selected"
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"kind": "field",
|
|
3721
|
+
"name": "specificProps",
|
|
3722
|
+
"type": {
|
|
3723
|
+
"text": "any"
|
|
3724
|
+
},
|
|
3725
|
+
"attribute": "specificProps"
|
|
3726
|
+
},
|
|
3727
|
+
{
|
|
3728
|
+
"kind": "field",
|
|
3729
|
+
"name": "tabName",
|
|
3730
|
+
"type": {
|
|
3731
|
+
"text": "string | null"
|
|
3732
|
+
},
|
|
3733
|
+
"default": "'specific'",
|
|
3734
|
+
"attribute": "tabName"
|
|
3735
|
+
},
|
|
3736
|
+
{
|
|
3737
|
+
"kind": "field",
|
|
3738
|
+
"name": "collapsed",
|
|
3739
|
+
"type": {
|
|
3740
|
+
"text": "boolean"
|
|
3741
|
+
},
|
|
3742
|
+
"default": "false",
|
|
3743
|
+
"attribute": "collapsed"
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"kind": "field",
|
|
3747
|
+
"name": "fonts",
|
|
3748
|
+
"type": {
|
|
3749
|
+
"text": "any[]"
|
|
3750
|
+
},
|
|
3751
|
+
"default": "[]",
|
|
3752
|
+
"attribute": "fonts"
|
|
3753
|
+
},
|
|
3754
|
+
{
|
|
3755
|
+
"kind": "field",
|
|
3756
|
+
"name": "propertyEditor",
|
|
3757
|
+
"type": {
|
|
3758
|
+
"text": "any[]"
|
|
3759
|
+
},
|
|
3760
|
+
"default": "[]",
|
|
3761
|
+
"attribute": "propertyEditor"
|
|
3762
|
+
},
|
|
3763
|
+
{
|
|
3764
|
+
"kind": "field",
|
|
3765
|
+
"name": "propertyTarget",
|
|
3766
|
+
"type": {
|
|
3767
|
+
"text": "Component | null"
|
|
3768
|
+
},
|
|
3769
|
+
"default": "null"
|
|
3770
|
+
},
|
|
3771
|
+
{
|
|
3772
|
+
"kind": "field",
|
|
3773
|
+
"name": "scopedElements",
|
|
3774
|
+
"static": true,
|
|
3775
|
+
"readonly": true
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
"kind": "method",
|
|
3779
|
+
"name": "_onPropertyChanged",
|
|
3780
|
+
"parameters": [
|
|
3781
|
+
{
|
|
3782
|
+
"name": "e",
|
|
3783
|
+
"type": {
|
|
3784
|
+
"text": "CustomEvent"
|
|
3785
|
+
}
|
|
3786
|
+
}
|
|
3787
|
+
]
|
|
3788
|
+
},
|
|
3789
|
+
{
|
|
3790
|
+
"kind": "method",
|
|
3791
|
+
"name": "_onBoundsChanged",
|
|
3792
|
+
"parameters": [
|
|
3793
|
+
{
|
|
3794
|
+
"name": "e",
|
|
3795
|
+
"type": {
|
|
3796
|
+
"text": "CustomEvent"
|
|
3797
|
+
}
|
|
3798
|
+
}
|
|
3799
|
+
]
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"kind": "method",
|
|
3803
|
+
"name": "_onChangedByScene"
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"kind": "method",
|
|
3807
|
+
"name": "_setPropertyTargetAsDefault"
|
|
3808
|
+
},
|
|
3809
|
+
{
|
|
3810
|
+
"kind": "method",
|
|
3811
|
+
"name": "_onCollapsed",
|
|
3812
|
+
"parameters": [
|
|
3813
|
+
{
|
|
3814
|
+
"name": "collapsed",
|
|
3815
|
+
"type": {
|
|
3816
|
+
"text": "boolean"
|
|
3817
|
+
}
|
|
3818
|
+
}
|
|
3819
|
+
]
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
"kind": "method",
|
|
3823
|
+
"name": "_onSceneChanged"
|
|
3824
|
+
},
|
|
3825
|
+
{
|
|
3826
|
+
"kind": "method",
|
|
3827
|
+
"name": "_onSelectedChanged",
|
|
3828
|
+
"parameters": [
|
|
3829
|
+
{
|
|
3830
|
+
"name": "after",
|
|
3831
|
+
"type": {
|
|
3832
|
+
"text": "Component[]"
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"kind": "method",
|
|
3839
|
+
"name": "_setPropertyTarget",
|
|
3840
|
+
"parameters": [
|
|
3841
|
+
{
|
|
3842
|
+
"name": "newTarget",
|
|
3843
|
+
"type": {
|
|
3844
|
+
"text": "Component | null"
|
|
3845
|
+
}
|
|
3846
|
+
}
|
|
3847
|
+
]
|
|
3848
|
+
},
|
|
3849
|
+
{
|
|
3850
|
+
"kind": "method",
|
|
3851
|
+
"name": "_setBounds",
|
|
3852
|
+
"parameters": [
|
|
3853
|
+
{
|
|
3854
|
+
"name": "bounds",
|
|
3855
|
+
"type": {
|
|
3856
|
+
"text": "BOUNDS"
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3859
|
+
]
|
|
3860
|
+
}
|
|
3861
|
+
],
|
|
3862
|
+
"attributes": [
|
|
3863
|
+
{
|
|
3864
|
+
"name": "scene",
|
|
3865
|
+
"type": {
|
|
3866
|
+
"text": "Scene | null"
|
|
3867
|
+
},
|
|
3868
|
+
"default": "null",
|
|
3869
|
+
"fieldName": "scene"
|
|
3870
|
+
},
|
|
3871
|
+
{
|
|
3872
|
+
"name": "bounds",
|
|
3873
|
+
"type": {
|
|
3874
|
+
"text": "any"
|
|
3875
|
+
},
|
|
3876
|
+
"default": "{}",
|
|
3877
|
+
"fieldName": "bounds"
|
|
3878
|
+
},
|
|
3879
|
+
{
|
|
3880
|
+
"name": "model",
|
|
3881
|
+
"type": {
|
|
3882
|
+
"text": "Model | null"
|
|
3883
|
+
},
|
|
3884
|
+
"default": "{}",
|
|
3885
|
+
"fieldName": "model"
|
|
3886
|
+
},
|
|
3887
|
+
{
|
|
3888
|
+
"name": "selected",
|
|
3889
|
+
"type": {
|
|
3890
|
+
"text": "Component[]"
|
|
3891
|
+
},
|
|
3892
|
+
"default": "[]",
|
|
3893
|
+
"fieldName": "selected"
|
|
3894
|
+
},
|
|
3895
|
+
{
|
|
3896
|
+
"name": "specificProps",
|
|
3897
|
+
"type": {
|
|
3898
|
+
"text": "any"
|
|
3899
|
+
},
|
|
3900
|
+
"fieldName": "specificProps"
|
|
3901
|
+
},
|
|
3902
|
+
{
|
|
3903
|
+
"name": "tabName",
|
|
3904
|
+
"type": {
|
|
3905
|
+
"text": "string | null"
|
|
3906
|
+
},
|
|
3907
|
+
"default": "'specific'",
|
|
3908
|
+
"fieldName": "tabName"
|
|
3909
|
+
},
|
|
3910
|
+
{
|
|
3911
|
+
"name": "collapsed",
|
|
3912
|
+
"type": {
|
|
3913
|
+
"text": "boolean"
|
|
3914
|
+
},
|
|
3915
|
+
"default": "false",
|
|
3916
|
+
"fieldName": "collapsed"
|
|
3917
|
+
},
|
|
3918
|
+
{
|
|
3919
|
+
"name": "fonts",
|
|
3920
|
+
"type": {
|
|
3921
|
+
"text": "any[]"
|
|
3922
|
+
},
|
|
3923
|
+
"default": "[]",
|
|
3924
|
+
"fieldName": "fonts"
|
|
3925
|
+
},
|
|
3926
|
+
{
|
|
3927
|
+
"name": "propertyEditor",
|
|
3928
|
+
"type": {
|
|
3929
|
+
"text": "any[]"
|
|
3930
|
+
},
|
|
3931
|
+
"default": "[]",
|
|
3932
|
+
"fieldName": "propertyEditor"
|
|
3933
|
+
}
|
|
3934
|
+
],
|
|
3935
|
+
"mixins": [
|
|
3936
|
+
{
|
|
3937
|
+
"name": "ScopedElementsMixin",
|
|
3938
|
+
"package": "@open-wc/scoped-elements"
|
|
3939
|
+
}
|
|
3940
|
+
],
|
|
3941
|
+
"superclass": {
|
|
3942
|
+
"name": "LitElement",
|
|
3943
|
+
"package": "lit"
|
|
3944
|
+
},
|
|
3945
|
+
"customElement": true
|
|
3946
|
+
}
|
|
3947
|
+
],
|
|
3948
|
+
"exports": [
|
|
3949
|
+
{
|
|
3950
|
+
"kind": "js",
|
|
3951
|
+
"name": "PropertySidebar",
|
|
3952
|
+
"declaration": {
|
|
3953
|
+
"name": "PropertySidebar",
|
|
3954
|
+
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
3955
|
+
}
|
|
3956
|
+
}
|
|
3957
|
+
]
|
|
3958
|
+
},
|
|
3575
3959
|
{
|
|
3576
3960
|
"kind": "javascript-module",
|
|
3577
3961
|
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
@@ -4306,368 +4690,224 @@
|
|
|
4306
4690
|
},
|
|
4307
4691
|
{
|
|
4308
4692
|
"kind": "javascript-module",
|
|
4309
|
-
"path": "src/modeller/property-sidebar/
|
|
4310
|
-
"declarations": [
|
|
4311
|
-
{
|
|
4312
|
-
"kind": "class",
|
|
4313
|
-
"description": "",
|
|
4314
|
-
"name": "AbstractProperty",
|
|
4315
|
-
"members": [
|
|
4316
|
-
{
|
|
4317
|
-
"kind": "method",
|
|
4318
|
-
"name": "_onValueChange",
|
|
4319
|
-
"parameters": [
|
|
4320
|
-
{
|
|
4321
|
-
"name": "e",
|
|
4322
|
-
"type": {
|
|
4323
|
-
"text": "Event"
|
|
4324
|
-
}
|
|
4325
|
-
}
|
|
4326
|
-
]
|
|
4327
|
-
},
|
|
4328
|
-
{
|
|
4329
|
-
"kind": "method",
|
|
4330
|
-
"name": "_getValueFromEventTarget",
|
|
4331
|
-
"parameters": [
|
|
4332
|
-
{
|
|
4333
|
-
"name": "element",
|
|
4334
|
-
"type": {
|
|
4335
|
-
"text": "HTMLElement"
|
|
4336
|
-
}
|
|
4337
|
-
}
|
|
4338
|
-
]
|
|
4339
|
-
},
|
|
4340
|
-
{
|
|
4341
|
-
"kind": "method",
|
|
4342
|
-
"name": "_onAfterValueChange",
|
|
4343
|
-
"parameters": [
|
|
4344
|
-
{
|
|
4345
|
-
"name": "key",
|
|
4346
|
-
"type": {
|
|
4347
|
-
"text": "string"
|
|
4348
|
-
}
|
|
4349
|
-
},
|
|
4350
|
-
{
|
|
4351
|
-
"name": "value",
|
|
4352
|
-
"type": {
|
|
4353
|
-
"text": "any"
|
|
4354
|
-
}
|
|
4355
|
-
}
|
|
4356
|
-
]
|
|
4357
|
-
}
|
|
4358
|
-
],
|
|
4359
|
-
"events": [
|
|
4360
|
-
{
|
|
4361
|
-
"name": "property-change",
|
|
4362
|
-
"type": {
|
|
4363
|
-
"text": "CustomEvent"
|
|
4364
|
-
}
|
|
4365
|
-
}
|
|
4366
|
-
],
|
|
4367
|
-
"superclass": {
|
|
4368
|
-
"name": "LitElement",
|
|
4369
|
-
"package": "lit"
|
|
4370
|
-
},
|
|
4371
|
-
"customElement": true
|
|
4372
|
-
}
|
|
4373
|
-
],
|
|
4374
|
-
"exports": [
|
|
4375
|
-
{
|
|
4376
|
-
"kind": "js",
|
|
4377
|
-
"name": "AbstractProperty",
|
|
4378
|
-
"declaration": {
|
|
4379
|
-
"name": "AbstractProperty",
|
|
4380
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4381
|
-
}
|
|
4382
|
-
}
|
|
4383
|
-
]
|
|
4384
|
-
},
|
|
4385
|
-
{
|
|
4386
|
-
"kind": "javascript-module",
|
|
4387
|
-
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
4388
|
-
"declarations": [
|
|
4389
|
-
{
|
|
4390
|
-
"kind": "variable",
|
|
4391
|
-
"name": "PropertySharedStyle",
|
|
4392
|
-
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } .icon-only-label.letterSpacing { background-position: 100% -1594px; } `"
|
|
4393
|
-
}
|
|
4394
|
-
],
|
|
4395
|
-
"exports": [
|
|
4396
|
-
{
|
|
4397
|
-
"kind": "js",
|
|
4398
|
-
"name": "PropertySharedStyle",
|
|
4399
|
-
"declaration": {
|
|
4400
|
-
"name": "PropertySharedStyle",
|
|
4401
|
-
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
4402
|
-
}
|
|
4403
|
-
}
|
|
4404
|
-
]
|
|
4405
|
-
},
|
|
4406
|
-
{
|
|
4407
|
-
"kind": "javascript-module",
|
|
4408
|
-
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
4693
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
4409
4694
|
"declarations": [
|
|
4410
4695
|
{
|
|
4411
4696
|
"kind": "class",
|
|
4412
4697
|
"description": "",
|
|
4413
|
-
"name": "
|
|
4698
|
+
"name": "SceneInspector",
|
|
4414
4699
|
"members": [
|
|
4415
4700
|
{
|
|
4416
4701
|
"kind": "field",
|
|
4417
4702
|
"name": "scene",
|
|
4418
4703
|
"type": {
|
|
4419
|
-
"text": "Scene |
|
|
4704
|
+
"text": "Scene | undefined"
|
|
4420
4705
|
},
|
|
4421
|
-
"default": "null",
|
|
4422
4706
|
"attribute": "scene"
|
|
4423
4707
|
},
|
|
4424
4708
|
{
|
|
4425
4709
|
"kind": "field",
|
|
4426
|
-
"name": "
|
|
4427
|
-
"type": {
|
|
4428
|
-
"text": "any"
|
|
4429
|
-
},
|
|
4430
|
-
"default": "{}",
|
|
4431
|
-
"attribute": "bounds"
|
|
4432
|
-
},
|
|
4433
|
-
{
|
|
4434
|
-
"kind": "field",
|
|
4435
|
-
"name": "model",
|
|
4436
|
-
"type": {
|
|
4437
|
-
"text": "Model | null"
|
|
4438
|
-
},
|
|
4439
|
-
"default": "{}",
|
|
4440
|
-
"attribute": "model"
|
|
4441
|
-
},
|
|
4442
|
-
{
|
|
4443
|
-
"kind": "field",
|
|
4444
|
-
"name": "selected",
|
|
4710
|
+
"name": "searchText",
|
|
4445
4711
|
"type": {
|
|
4446
|
-
"text": "
|
|
4712
|
+
"text": "string"
|
|
4447
4713
|
},
|
|
4448
|
-
"
|
|
4449
|
-
"
|
|
4714
|
+
"privacy": "private",
|
|
4715
|
+
"default": "''"
|
|
4450
4716
|
},
|
|
4451
4717
|
{
|
|
4452
4718
|
"kind": "field",
|
|
4453
|
-
"name": "
|
|
4719
|
+
"name": "_extendedMap",
|
|
4454
4720
|
"type": {
|
|
4455
4721
|
"text": "any"
|
|
4456
4722
|
},
|
|
4457
|
-
"
|
|
4458
|
-
},
|
|
4459
|
-
{
|
|
4460
|
-
"kind": "field",
|
|
4461
|
-
"name": "tabName",
|
|
4462
|
-
"type": {
|
|
4463
|
-
"text": "string | null"
|
|
4464
|
-
},
|
|
4465
|
-
"default": "'specific'",
|
|
4466
|
-
"attribute": "tabName"
|
|
4723
|
+
"privacy": "private"
|
|
4467
4724
|
},
|
|
4468
4725
|
{
|
|
4469
4726
|
"kind": "field",
|
|
4470
|
-
"name": "
|
|
4727
|
+
"name": "show",
|
|
4471
4728
|
"type": {
|
|
4472
4729
|
"text": "boolean"
|
|
4473
4730
|
},
|
|
4474
|
-
"
|
|
4475
|
-
"
|
|
4476
|
-
},
|
|
4477
|
-
{
|
|
4478
|
-
"kind": "field",
|
|
4479
|
-
"name": "fonts",
|
|
4480
|
-
"type": {
|
|
4481
|
-
"text": "any[]"
|
|
4482
|
-
},
|
|
4483
|
-
"default": "[]",
|
|
4484
|
-
"attribute": "fonts"
|
|
4731
|
+
"privacy": "private",
|
|
4732
|
+
"default": "false"
|
|
4485
4733
|
},
|
|
4486
4734
|
{
|
|
4487
4735
|
"kind": "field",
|
|
4488
|
-
"name": "
|
|
4736
|
+
"name": "count",
|
|
4489
4737
|
"type": {
|
|
4490
|
-
"text": "
|
|
4738
|
+
"text": "number"
|
|
4491
4739
|
},
|
|
4492
|
-
"
|
|
4493
|
-
"
|
|
4740
|
+
"privacy": "private",
|
|
4741
|
+
"default": "-1"
|
|
4494
4742
|
},
|
|
4495
4743
|
{
|
|
4496
|
-
"kind": "
|
|
4497
|
-
"name": "
|
|
4498
|
-
"
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4744
|
+
"kind": "method",
|
|
4745
|
+
"name": "disconnectScene",
|
|
4746
|
+
"parameters": [
|
|
4747
|
+
{
|
|
4748
|
+
"name": "scene",
|
|
4749
|
+
"optional": true,
|
|
4750
|
+
"type": {
|
|
4751
|
+
"text": "Scene"
|
|
4752
|
+
}
|
|
4753
|
+
}
|
|
4754
|
+
]
|
|
4502
4755
|
},
|
|
4503
4756
|
{
|
|
4504
|
-
"kind": "
|
|
4505
|
-
"name": "
|
|
4506
|
-
"static": true,
|
|
4507
|
-
"readonly": true
|
|
4757
|
+
"kind": "method",
|
|
4758
|
+
"name": "refresh"
|
|
4508
4759
|
},
|
|
4509
4760
|
{
|
|
4510
4761
|
"kind": "method",
|
|
4511
|
-
"name": "
|
|
4762
|
+
"name": "_onclick",
|
|
4512
4763
|
"parameters": [
|
|
4513
4764
|
{
|
|
4514
4765
|
"name": "e",
|
|
4515
4766
|
"type": {
|
|
4516
|
-
"text": "
|
|
4767
|
+
"text": "MouseEvent"
|
|
4517
4768
|
}
|
|
4518
4769
|
}
|
|
4519
4770
|
]
|
|
4520
4771
|
},
|
|
4521
4772
|
{
|
|
4522
4773
|
"kind": "method",
|
|
4523
|
-
"name": "
|
|
4774
|
+
"name": "_ondblclick",
|
|
4524
4775
|
"parameters": [
|
|
4525
4776
|
{
|
|
4526
4777
|
"name": "e",
|
|
4527
4778
|
"type": {
|
|
4528
|
-
"text": "
|
|
4779
|
+
"text": "MouseEvent"
|
|
4529
4780
|
}
|
|
4530
4781
|
}
|
|
4531
4782
|
]
|
|
4532
4783
|
},
|
|
4533
4784
|
{
|
|
4534
|
-
"kind": "
|
|
4535
|
-
"name": "
|
|
4536
|
-
|
|
4537
|
-
{
|
|
4538
|
-
"kind": "method",
|
|
4539
|
-
"name": "_setPropertyTargetAsDefault"
|
|
4785
|
+
"kind": "field",
|
|
4786
|
+
"name": "extendedMap",
|
|
4787
|
+
"readonly": true
|
|
4540
4788
|
},
|
|
4541
4789
|
{
|
|
4542
4790
|
"kind": "method",
|
|
4543
|
-
"name": "
|
|
4791
|
+
"name": "getNodeHandleClass",
|
|
4544
4792
|
"parameters": [
|
|
4545
4793
|
{
|
|
4546
|
-
"name": "
|
|
4794
|
+
"name": "component",
|
|
4547
4795
|
"type": {
|
|
4548
|
-
"text": "
|
|
4796
|
+
"text": "Component"
|
|
4549
4797
|
}
|
|
4550
4798
|
}
|
|
4551
4799
|
]
|
|
4552
4800
|
},
|
|
4553
4801
|
{
|
|
4554
4802
|
"kind": "method",
|
|
4555
|
-
"name": "
|
|
4803
|
+
"name": "isExtended",
|
|
4804
|
+
"parameters": [
|
|
4805
|
+
{
|
|
4806
|
+
"name": "component",
|
|
4807
|
+
"type": {
|
|
4808
|
+
"text": "Component"
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4811
|
+
]
|
|
4556
4812
|
},
|
|
4557
4813
|
{
|
|
4558
4814
|
"kind": "method",
|
|
4559
|
-
"name": "
|
|
4815
|
+
"name": "toggleExtended",
|
|
4560
4816
|
"parameters": [
|
|
4561
4817
|
{
|
|
4562
|
-
"name": "
|
|
4818
|
+
"name": "component",
|
|
4563
4819
|
"type": {
|
|
4564
|
-
"text": "Component
|
|
4820
|
+
"text": "Component"
|
|
4565
4821
|
}
|
|
4566
4822
|
}
|
|
4567
4823
|
]
|
|
4568
4824
|
},
|
|
4569
4825
|
{
|
|
4570
4826
|
"kind": "method",
|
|
4571
|
-
"name": "
|
|
4827
|
+
"name": "toggleHidden",
|
|
4572
4828
|
"parameters": [
|
|
4573
4829
|
{
|
|
4574
|
-
"name": "
|
|
4830
|
+
"name": "component",
|
|
4575
4831
|
"type": {
|
|
4576
|
-
"text": "Component
|
|
4832
|
+
"text": "Component"
|
|
4577
4833
|
}
|
|
4578
4834
|
}
|
|
4579
4835
|
]
|
|
4580
4836
|
},
|
|
4581
4837
|
{
|
|
4582
4838
|
"kind": "method",
|
|
4583
|
-
"name": "
|
|
4839
|
+
"name": "selectComponent",
|
|
4584
4840
|
"parameters": [
|
|
4585
4841
|
{
|
|
4586
|
-
"name": "
|
|
4842
|
+
"name": "component",
|
|
4587
4843
|
"type": {
|
|
4588
|
-
"text": "
|
|
4844
|
+
"text": "Component"
|
|
4845
|
+
}
|
|
4846
|
+
},
|
|
4847
|
+
{
|
|
4848
|
+
"name": "append",
|
|
4849
|
+
"default": "false",
|
|
4850
|
+
"type": {
|
|
4851
|
+
"text": "boolean"
|
|
4589
4852
|
}
|
|
4590
4853
|
}
|
|
4591
4854
|
]
|
|
4592
|
-
}
|
|
4593
|
-
],
|
|
4594
|
-
"attributes": [
|
|
4595
|
-
{
|
|
4596
|
-
"name": "scene",
|
|
4597
|
-
"type": {
|
|
4598
|
-
"text": "Scene | null"
|
|
4599
|
-
},
|
|
4600
|
-
"default": "null",
|
|
4601
|
-
"fieldName": "scene"
|
|
4602
|
-
},
|
|
4603
|
-
{
|
|
4604
|
-
"name": "bounds",
|
|
4605
|
-
"type": {
|
|
4606
|
-
"text": "any"
|
|
4607
|
-
},
|
|
4608
|
-
"default": "{}",
|
|
4609
|
-
"fieldName": "bounds"
|
|
4610
|
-
},
|
|
4611
|
-
{
|
|
4612
|
-
"name": "model",
|
|
4613
|
-
"type": {
|
|
4614
|
-
"text": "Model | null"
|
|
4615
|
-
},
|
|
4616
|
-
"default": "{}",
|
|
4617
|
-
"fieldName": "model"
|
|
4618
|
-
},
|
|
4619
|
-
{
|
|
4620
|
-
"name": "selected",
|
|
4621
|
-
"type": {
|
|
4622
|
-
"text": "Component[]"
|
|
4623
|
-
},
|
|
4624
|
-
"default": "[]",
|
|
4625
|
-
"fieldName": "selected"
|
|
4626
|
-
},
|
|
4627
|
-
{
|
|
4628
|
-
"name": "specificProps",
|
|
4629
|
-
"type": {
|
|
4630
|
-
"text": "any"
|
|
4631
|
-
},
|
|
4632
|
-
"fieldName": "specificProps"
|
|
4633
|
-
},
|
|
4634
|
-
{
|
|
4635
|
-
"name": "tabName",
|
|
4636
|
-
"type": {
|
|
4637
|
-
"text": "string | null"
|
|
4638
|
-
},
|
|
4639
|
-
"default": "'specific'",
|
|
4640
|
-
"fieldName": "tabName"
|
|
4641
|
-
},
|
|
4642
|
-
{
|
|
4643
|
-
"name": "collapsed",
|
|
4644
|
-
"type": {
|
|
4645
|
-
"text": "boolean"
|
|
4646
|
-
},
|
|
4647
|
-
"default": "false",
|
|
4648
|
-
"fieldName": "collapsed"
|
|
4649
4855
|
},
|
|
4650
4856
|
{
|
|
4651
|
-
"
|
|
4652
|
-
"
|
|
4653
|
-
|
|
4857
|
+
"kind": "method",
|
|
4858
|
+
"name": "shouldBeShown",
|
|
4859
|
+
"return": {
|
|
4860
|
+
"type": {
|
|
4861
|
+
"text": "boolean"
|
|
4862
|
+
}
|
|
4654
4863
|
},
|
|
4655
|
-
"
|
|
4656
|
-
|
|
4864
|
+
"parameters": [
|
|
4865
|
+
{
|
|
4866
|
+
"name": "component",
|
|
4867
|
+
"type": {
|
|
4868
|
+
"text": "Component"
|
|
4869
|
+
}
|
|
4870
|
+
},
|
|
4871
|
+
{
|
|
4872
|
+
"name": "counting",
|
|
4873
|
+
"default": "false",
|
|
4874
|
+
"type": {
|
|
4875
|
+
"text": "boolean"
|
|
4876
|
+
}
|
|
4877
|
+
}
|
|
4878
|
+
]
|
|
4657
4879
|
},
|
|
4658
4880
|
{
|
|
4659
|
-
"
|
|
4660
|
-
"
|
|
4661
|
-
|
|
4881
|
+
"kind": "method",
|
|
4882
|
+
"name": "renderComponent",
|
|
4883
|
+
"return": {
|
|
4884
|
+
"type": {
|
|
4885
|
+
"text": "TemplateResult"
|
|
4886
|
+
}
|
|
4662
4887
|
},
|
|
4663
|
-
"
|
|
4664
|
-
|
|
4888
|
+
"parameters": [
|
|
4889
|
+
{
|
|
4890
|
+
"name": "component",
|
|
4891
|
+
"type": {
|
|
4892
|
+
"text": "Component"
|
|
4893
|
+
}
|
|
4894
|
+
},
|
|
4895
|
+
{
|
|
4896
|
+
"name": "depth",
|
|
4897
|
+
"type": {
|
|
4898
|
+
"text": "number"
|
|
4899
|
+
}
|
|
4900
|
+
}
|
|
4901
|
+
]
|
|
4665
4902
|
}
|
|
4666
4903
|
],
|
|
4667
|
-
"
|
|
4904
|
+
"attributes": [
|
|
4668
4905
|
{
|
|
4669
|
-
"name": "
|
|
4670
|
-
"
|
|
4906
|
+
"name": "scene",
|
|
4907
|
+
"type": {
|
|
4908
|
+
"text": "Scene | undefined"
|
|
4909
|
+
},
|
|
4910
|
+
"fieldName": "scene"
|
|
4671
4911
|
}
|
|
4672
4912
|
],
|
|
4673
4913
|
"superclass": {
|
|
@@ -4680,10 +4920,10 @@
|
|
|
4680
4920
|
"exports": [
|
|
4681
4921
|
{
|
|
4682
4922
|
"kind": "js",
|
|
4683
|
-
"name": "
|
|
4923
|
+
"name": "SceneInspector",
|
|
4684
4924
|
"declaration": {
|
|
4685
|
-
"name": "
|
|
4686
|
-
"module": "src/modeller/property-sidebar/
|
|
4925
|
+
"name": "SceneInspector",
|
|
4926
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
4687
4927
|
}
|
|
4688
4928
|
}
|
|
4689
4929
|
]
|
|
@@ -5205,246 +5445,6 @@
|
|
|
5205
5445
|
}
|
|
5206
5446
|
]
|
|
5207
5447
|
},
|
|
5208
|
-
{
|
|
5209
|
-
"kind": "javascript-module",
|
|
5210
|
-
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
5211
|
-
"declarations": [
|
|
5212
|
-
{
|
|
5213
|
-
"kind": "class",
|
|
5214
|
-
"description": "",
|
|
5215
|
-
"name": "SceneInspector",
|
|
5216
|
-
"members": [
|
|
5217
|
-
{
|
|
5218
|
-
"kind": "field",
|
|
5219
|
-
"name": "scene",
|
|
5220
|
-
"type": {
|
|
5221
|
-
"text": "Scene | undefined"
|
|
5222
|
-
},
|
|
5223
|
-
"attribute": "scene"
|
|
5224
|
-
},
|
|
5225
|
-
{
|
|
5226
|
-
"kind": "field",
|
|
5227
|
-
"name": "searchText",
|
|
5228
|
-
"type": {
|
|
5229
|
-
"text": "string"
|
|
5230
|
-
},
|
|
5231
|
-
"privacy": "private",
|
|
5232
|
-
"default": "''"
|
|
5233
|
-
},
|
|
5234
|
-
{
|
|
5235
|
-
"kind": "field",
|
|
5236
|
-
"name": "_extendedMap",
|
|
5237
|
-
"type": {
|
|
5238
|
-
"text": "any"
|
|
5239
|
-
},
|
|
5240
|
-
"privacy": "private"
|
|
5241
|
-
},
|
|
5242
|
-
{
|
|
5243
|
-
"kind": "field",
|
|
5244
|
-
"name": "show",
|
|
5245
|
-
"type": {
|
|
5246
|
-
"text": "boolean"
|
|
5247
|
-
},
|
|
5248
|
-
"privacy": "private",
|
|
5249
|
-
"default": "false"
|
|
5250
|
-
},
|
|
5251
|
-
{
|
|
5252
|
-
"kind": "field",
|
|
5253
|
-
"name": "count",
|
|
5254
|
-
"type": {
|
|
5255
|
-
"text": "number"
|
|
5256
|
-
},
|
|
5257
|
-
"privacy": "private",
|
|
5258
|
-
"default": "-1"
|
|
5259
|
-
},
|
|
5260
|
-
{
|
|
5261
|
-
"kind": "method",
|
|
5262
|
-
"name": "disconnectScene",
|
|
5263
|
-
"parameters": [
|
|
5264
|
-
{
|
|
5265
|
-
"name": "scene",
|
|
5266
|
-
"optional": true,
|
|
5267
|
-
"type": {
|
|
5268
|
-
"text": "Scene"
|
|
5269
|
-
}
|
|
5270
|
-
}
|
|
5271
|
-
]
|
|
5272
|
-
},
|
|
5273
|
-
{
|
|
5274
|
-
"kind": "method",
|
|
5275
|
-
"name": "refresh"
|
|
5276
|
-
},
|
|
5277
|
-
{
|
|
5278
|
-
"kind": "method",
|
|
5279
|
-
"name": "_onclick",
|
|
5280
|
-
"parameters": [
|
|
5281
|
-
{
|
|
5282
|
-
"name": "e",
|
|
5283
|
-
"type": {
|
|
5284
|
-
"text": "MouseEvent"
|
|
5285
|
-
}
|
|
5286
|
-
}
|
|
5287
|
-
]
|
|
5288
|
-
},
|
|
5289
|
-
{
|
|
5290
|
-
"kind": "method",
|
|
5291
|
-
"name": "_ondblclick",
|
|
5292
|
-
"parameters": [
|
|
5293
|
-
{
|
|
5294
|
-
"name": "e",
|
|
5295
|
-
"type": {
|
|
5296
|
-
"text": "MouseEvent"
|
|
5297
|
-
}
|
|
5298
|
-
}
|
|
5299
|
-
]
|
|
5300
|
-
},
|
|
5301
|
-
{
|
|
5302
|
-
"kind": "field",
|
|
5303
|
-
"name": "extendedMap",
|
|
5304
|
-
"readonly": true
|
|
5305
|
-
},
|
|
5306
|
-
{
|
|
5307
|
-
"kind": "method",
|
|
5308
|
-
"name": "getNodeHandleClass",
|
|
5309
|
-
"parameters": [
|
|
5310
|
-
{
|
|
5311
|
-
"name": "component",
|
|
5312
|
-
"type": {
|
|
5313
|
-
"text": "Component"
|
|
5314
|
-
}
|
|
5315
|
-
}
|
|
5316
|
-
]
|
|
5317
|
-
},
|
|
5318
|
-
{
|
|
5319
|
-
"kind": "method",
|
|
5320
|
-
"name": "isExtended",
|
|
5321
|
-
"parameters": [
|
|
5322
|
-
{
|
|
5323
|
-
"name": "component",
|
|
5324
|
-
"type": {
|
|
5325
|
-
"text": "Component"
|
|
5326
|
-
}
|
|
5327
|
-
}
|
|
5328
|
-
]
|
|
5329
|
-
},
|
|
5330
|
-
{
|
|
5331
|
-
"kind": "method",
|
|
5332
|
-
"name": "toggleExtended",
|
|
5333
|
-
"parameters": [
|
|
5334
|
-
{
|
|
5335
|
-
"name": "component",
|
|
5336
|
-
"type": {
|
|
5337
|
-
"text": "Component"
|
|
5338
|
-
}
|
|
5339
|
-
}
|
|
5340
|
-
]
|
|
5341
|
-
},
|
|
5342
|
-
{
|
|
5343
|
-
"kind": "method",
|
|
5344
|
-
"name": "toggleHidden",
|
|
5345
|
-
"parameters": [
|
|
5346
|
-
{
|
|
5347
|
-
"name": "component",
|
|
5348
|
-
"type": {
|
|
5349
|
-
"text": "Component"
|
|
5350
|
-
}
|
|
5351
|
-
}
|
|
5352
|
-
]
|
|
5353
|
-
},
|
|
5354
|
-
{
|
|
5355
|
-
"kind": "method",
|
|
5356
|
-
"name": "selectComponent",
|
|
5357
|
-
"parameters": [
|
|
5358
|
-
{
|
|
5359
|
-
"name": "component",
|
|
5360
|
-
"type": {
|
|
5361
|
-
"text": "Component"
|
|
5362
|
-
}
|
|
5363
|
-
},
|
|
5364
|
-
{
|
|
5365
|
-
"name": "append",
|
|
5366
|
-
"default": "false",
|
|
5367
|
-
"type": {
|
|
5368
|
-
"text": "boolean"
|
|
5369
|
-
}
|
|
5370
|
-
}
|
|
5371
|
-
]
|
|
5372
|
-
},
|
|
5373
|
-
{
|
|
5374
|
-
"kind": "method",
|
|
5375
|
-
"name": "shouldBeShown",
|
|
5376
|
-
"return": {
|
|
5377
|
-
"type": {
|
|
5378
|
-
"text": "boolean"
|
|
5379
|
-
}
|
|
5380
|
-
},
|
|
5381
|
-
"parameters": [
|
|
5382
|
-
{
|
|
5383
|
-
"name": "component",
|
|
5384
|
-
"type": {
|
|
5385
|
-
"text": "Component"
|
|
5386
|
-
}
|
|
5387
|
-
},
|
|
5388
|
-
{
|
|
5389
|
-
"name": "counting",
|
|
5390
|
-
"default": "false",
|
|
5391
|
-
"type": {
|
|
5392
|
-
"text": "boolean"
|
|
5393
|
-
}
|
|
5394
|
-
}
|
|
5395
|
-
]
|
|
5396
|
-
},
|
|
5397
|
-
{
|
|
5398
|
-
"kind": "method",
|
|
5399
|
-
"name": "renderComponent",
|
|
5400
|
-
"return": {
|
|
5401
|
-
"type": {
|
|
5402
|
-
"text": "TemplateResult"
|
|
5403
|
-
}
|
|
5404
|
-
},
|
|
5405
|
-
"parameters": [
|
|
5406
|
-
{
|
|
5407
|
-
"name": "component",
|
|
5408
|
-
"type": {
|
|
5409
|
-
"text": "Component"
|
|
5410
|
-
}
|
|
5411
|
-
},
|
|
5412
|
-
{
|
|
5413
|
-
"name": "depth",
|
|
5414
|
-
"type": {
|
|
5415
|
-
"text": "number"
|
|
5416
|
-
}
|
|
5417
|
-
}
|
|
5418
|
-
]
|
|
5419
|
-
}
|
|
5420
|
-
],
|
|
5421
|
-
"attributes": [
|
|
5422
|
-
{
|
|
5423
|
-
"name": "scene",
|
|
5424
|
-
"type": {
|
|
5425
|
-
"text": "Scene | undefined"
|
|
5426
|
-
},
|
|
5427
|
-
"fieldName": "scene"
|
|
5428
|
-
}
|
|
5429
|
-
],
|
|
5430
|
-
"superclass": {
|
|
5431
|
-
"name": "LitElement",
|
|
5432
|
-
"package": "lit"
|
|
5433
|
-
},
|
|
5434
|
-
"customElement": true
|
|
5435
|
-
}
|
|
5436
|
-
],
|
|
5437
|
-
"exports": [
|
|
5438
|
-
{
|
|
5439
|
-
"kind": "js",
|
|
5440
|
-
"name": "SceneInspector",
|
|
5441
|
-
"declaration": {
|
|
5442
|
-
"name": "SceneInspector",
|
|
5443
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
5444
|
-
}
|
|
5445
|
-
}
|
|
5446
|
-
]
|
|
5447
|
-
},
|
|
5448
5448
|
{
|
|
5449
5449
|
"kind": "javascript-module",
|
|
5450
5450
|
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|