@oicl/openbridge-webcomponents 0.0.13 → 0.0.14
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/CHANGELOG.md +11 -0
- package/__snapshots__/automation-button--damper-badges.png +0 -0
- package/__snapshots__/automation-button--damper-off.png +0 -0
- package/__snapshots__/automation-button--damper-on.png +0 -0
- package/__snapshots__/automation-button--motor-off.png +0 -0
- package/__snapshots__/automation-button--motor-on.png +0 -0
- package/__snapshots__/automation-button--switch-off.png +0 -0
- package/__snapshots__/automation-button--switch-on.png +0 -0
- package/__snapshots__/automation-button--three-way-valve-open-right.png +0 -0
- package/__snapshots__/automation-button--valve-alert.png +0 -0
- package/__snapshots__/automation-button--valve-badges.png +0 -0
- package/__snapshots__/automation-button--valve-closed.png +0 -0
- package/__snapshots__/automation-button--valve-open.png +0 -0
- package/__snapshots__/automation-button--valve-progress.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-bottom.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-left.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-right.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-top.png +0 -0
- package/__snapshots__/automation-tank--compact.png +0 -0
- package/__snapshots__/automation-tank--vertical-with-badges.png +0 -0
- package/__snapshots__/automation-tank--vertical.png +0 -0
- package/__snapshots__/line-corner-line--primary.png +0 -0
- package/__snapshots__/line-cross--primary.png +0 -0
- package/__snapshots__/line-direction--primary.png +0 -0
- package/__snapshots__/line-end-point-line--primary.png +0 -0
- package/__snapshots__/line-example--air.png +0 -0
- package/__snapshots__/line-example--connector.png +0 -0
- package/__snapshots__/line-example--electric.png +0 -0
- package/__snapshots__/line-example--fluid.png +0 -0
- package/__snapshots__/line-horizontal-line--primary.png +0 -0
- package/__snapshots__/line-overlap--primary.png +0 -0
- package/__snapshots__/line-three-way-line--primary.png +0 -0
- package/__snapshots__/line-vertical-line--primary.png +0 -0
- package/custom-elements.json +404 -379
- package/dist/automation/automation-button/automation-button.css.js +75 -0
- package/dist/automation/automation-button/automation-button.css.js.map +1 -1
- package/dist/automation/automation-button/automation-button.d.ts.map +1 -1
- package/dist/automation/automation-button/automation-button.js +46 -44
- package/dist/automation/automation-button/automation-button.js.map +1 -1
- package/dist/automation/automation-tank/automation-tank.css.js +2 -1
- package/dist/automation/automation-tank/automation-tank.css.js.map +1 -1
- package/dist/automation/corner-line/corner-line.d.ts.map +1 -1
- package/dist/automation/corner-line/corner-line.js +6 -0
- package/dist/automation/corner-line/corner-line.js.map +1 -1
- package/dist/automation/direction-line/direction-line.d.ts.map +1 -1
- package/dist/automation/direction-line/direction-line.js +5 -0
- package/dist/automation/direction-line/direction-line.js.map +1 -1
- package/dist/automation/end-point-line/end-point-line.d.ts.map +1 -1
- package/dist/automation/end-point-line/end-point-line.js +23 -0
- package/dist/automation/end-point-line/end-point-line.js.map +1 -1
- package/dist/automation/horizontal-line/horizontal-line.d.ts.map +1 -1
- package/dist/automation/horizontal-line/horizontal-line.js +2 -1
- package/dist/automation/horizontal-line/horizontal-line.js.map +1 -1
- package/dist/automation/line-cross/line-cross.d.ts.map +1 -1
- package/dist/automation/line-cross/line-cross.js +6 -0
- package/dist/automation/line-cross/line-cross.js.map +1 -1
- package/dist/automation/line-overlap/line-overlap.d.ts.map +1 -1
- package/dist/automation/line-overlap/line-overlap.js +6 -0
- package/dist/automation/line-overlap/line-overlap.js.map +1 -1
- package/dist/automation/three-way-line/three-way-line.d.ts.map +1 -1
- package/dist/automation/three-way-line/three-way-line.js +6 -0
- package/dist/automation/three-way-line/three-way-line.js.map +1 -1
- package/dist/automation/vertical-line/vertical-line.d.ts.map +1 -1
- package/dist/automation/vertical-line/vertical-line.js +2 -1
- package/dist/automation/vertical-line/vertical-line.js.map +1 -1
- package/dist/storybook-util.d.ts +2 -1
- package/dist/storybook-util.d.ts.map +1 -1
- package/dist/storybook-util.js +40 -0
- package/dist/storybook-util.js.map +1 -1
- package/package.json +1 -1
- package/src/automation/automation-button/automation-button.css +81 -0
- package/src/automation/automation-button/automation-button.stories.ts +2 -0
- package/src/automation/automation-button/automation-button.ts +61 -59
- package/src/automation/automation-readout/automation-readout.stories.ts +8 -31
- package/src/automation/automation-tank/automation-tank.css +2 -1
- package/src/automation/automation-tank/automation-tank.stories.ts +2 -8
- package/src/automation/corner-line/corner-line.stories.ts +2 -0
- package/src/automation/corner-line/corner-line.ts +6 -0
- package/src/automation/direction-line/direction-line.stories.ts +2 -0
- package/src/automation/direction-line/direction-line.ts +5 -0
- package/src/automation/end-point-line/end-point-line.stories.ts +2 -0
- package/src/automation/end-point-line/end-point-line.ts +23 -0
- package/src/automation/horizontal-line/horizontal-line.stories.ts +2 -0
- package/src/automation/horizontal-line/horizontal-line.ts +2 -1
- package/src/automation/line-cross/line-cross.stories.ts +2 -0
- package/src/automation/line-cross/line-cross.ts +6 -0
- package/src/automation/line-overlap/line-overlap.stories.ts +2 -0
- package/src/automation/line-overlap/line-overlap.ts +6 -0
- package/src/automation/line.stories.ts +4 -4
- package/src/automation/three-way-line/three-way-line.stories.ts +2 -0
- package/src/automation/three-way-line/three-way-line.ts +6 -0
- package/src/automation/vertical-line/vertical-line.stories.ts +2 -36
- package/src/automation/vertical-line/vertical-line.ts +2 -1
- package/src/storybook-util.ts +41 -1
package/custom-elements.json
CHANGED
|
@@ -48,6 +48,23 @@
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"kind": "function",
|
|
54
|
+
"name": "crossDecorator",
|
|
55
|
+
"return": {
|
|
56
|
+
"type": {
|
|
57
|
+
"text": "HTMLTemplateResult"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"parameters": [
|
|
61
|
+
{
|
|
62
|
+
"name": "story",
|
|
63
|
+
"type": {
|
|
64
|
+
"text": "() => unknown"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
]
|
|
51
68
|
}
|
|
52
69
|
],
|
|
53
70
|
"exports": [
|
|
@@ -66,6 +83,14 @@
|
|
|
66
83
|
"name": "iconIdToIconHtml",
|
|
67
84
|
"module": "src/storybook-util.ts"
|
|
68
85
|
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"kind": "js",
|
|
89
|
+
"name": "crossDecorator",
|
|
90
|
+
"declaration": {
|
|
91
|
+
"name": "crossDecorator",
|
|
92
|
+
"module": "src/storybook-util.ts"
|
|
93
|
+
}
|
|
69
94
|
}
|
|
70
95
|
]
|
|
71
96
|
},
|
|
@@ -38502,105 +38527,58 @@
|
|
|
38502
38527
|
},
|
|
38503
38528
|
{
|
|
38504
38529
|
"kind": "javascript-module",
|
|
38505
|
-
"path": "src/automation/
|
|
38530
|
+
"path": "src/automation/corner-line/corner-line.ts",
|
|
38506
38531
|
"declarations": [
|
|
38507
38532
|
{
|
|
38508
38533
|
"kind": "class",
|
|
38509
38534
|
"description": "",
|
|
38510
|
-
"name": "
|
|
38535
|
+
"name": "ObcCornerLine",
|
|
38511
38536
|
"members": [
|
|
38512
38537
|
{
|
|
38513
38538
|
"kind": "field",
|
|
38514
|
-
"name": "
|
|
38515
|
-
"type": {
|
|
38516
|
-
"text": "number"
|
|
38517
|
-
},
|
|
38518
|
-
"default": "0",
|
|
38519
|
-
"attribute": "value"
|
|
38520
|
-
},
|
|
38521
|
-
{
|
|
38522
|
-
"kind": "field",
|
|
38523
|
-
"name": "unit",
|
|
38524
|
-
"type": {
|
|
38525
|
-
"text": "string"
|
|
38526
|
-
},
|
|
38527
|
-
"default": "''",
|
|
38528
|
-
"attribute": "unit"
|
|
38529
|
-
},
|
|
38530
|
-
{
|
|
38531
|
-
"kind": "field",
|
|
38532
|
-
"name": "numberOfDigits",
|
|
38539
|
+
"name": "medium",
|
|
38533
38540
|
"type": {
|
|
38534
|
-
"text": "
|
|
38541
|
+
"text": "LineMedium"
|
|
38535
38542
|
},
|
|
38536
|
-
"
|
|
38537
|
-
"attribute": "numberOfDigits"
|
|
38543
|
+
"attribute": "medium"
|
|
38538
38544
|
},
|
|
38539
38545
|
{
|
|
38540
38546
|
"kind": "field",
|
|
38541
|
-
"name": "
|
|
38547
|
+
"name": "direction",
|
|
38542
38548
|
"type": {
|
|
38543
|
-
"text": "
|
|
38549
|
+
"text": "CornerLineDirectionType"
|
|
38544
38550
|
},
|
|
38545
|
-
"attribute": "
|
|
38551
|
+
"attribute": "direction"
|
|
38546
38552
|
},
|
|
38547
38553
|
{
|
|
38548
38554
|
"kind": "field",
|
|
38549
38555
|
"name": "lineType",
|
|
38550
38556
|
"type": {
|
|
38551
|
-
"text": "LineType
|
|
38557
|
+
"text": "LineType"
|
|
38552
38558
|
},
|
|
38553
|
-
"default": "undefined",
|
|
38554
38559
|
"attribute": "lineType"
|
|
38555
|
-
},
|
|
38556
|
-
{
|
|
38557
|
-
"kind": "method",
|
|
38558
|
-
"name": "getLineWidth",
|
|
38559
|
-
"return": {
|
|
38560
|
-
"type": {
|
|
38561
|
-
"text": "number"
|
|
38562
|
-
}
|
|
38563
|
-
}
|
|
38564
38560
|
}
|
|
38565
38561
|
],
|
|
38566
38562
|
"attributes": [
|
|
38567
38563
|
{
|
|
38568
|
-
"name": "
|
|
38569
|
-
"type": {
|
|
38570
|
-
"text": "number"
|
|
38571
|
-
},
|
|
38572
|
-
"default": "0",
|
|
38573
|
-
"fieldName": "value"
|
|
38574
|
-
},
|
|
38575
|
-
{
|
|
38576
|
-
"name": "unit",
|
|
38577
|
-
"type": {
|
|
38578
|
-
"text": "string"
|
|
38579
|
-
},
|
|
38580
|
-
"default": "''",
|
|
38581
|
-
"fieldName": "unit"
|
|
38582
|
-
},
|
|
38583
|
-
{
|
|
38584
|
-
"name": "numberOfDigits",
|
|
38564
|
+
"name": "medium",
|
|
38585
38565
|
"type": {
|
|
38586
|
-
"text": "
|
|
38566
|
+
"text": "LineMedium"
|
|
38587
38567
|
},
|
|
38588
|
-
"
|
|
38589
|
-
"fieldName": "numberOfDigits"
|
|
38568
|
+
"fieldName": "medium"
|
|
38590
38569
|
},
|
|
38591
38570
|
{
|
|
38592
|
-
"name": "
|
|
38571
|
+
"name": "direction",
|
|
38593
38572
|
"type": {
|
|
38594
|
-
"text": "
|
|
38573
|
+
"text": "CornerLineDirectionType"
|
|
38595
38574
|
},
|
|
38596
|
-
"fieldName": "
|
|
38575
|
+
"fieldName": "direction"
|
|
38597
38576
|
},
|
|
38598
38577
|
{
|
|
38599
38578
|
"name": "lineType",
|
|
38600
38579
|
"type": {
|
|
38601
|
-
"text": "LineType
|
|
38580
|
+
"text": "LineType"
|
|
38602
38581
|
},
|
|
38603
|
-
"default": "undefined",
|
|
38604
38582
|
"fieldName": "lineType"
|
|
38605
38583
|
}
|
|
38606
38584
|
],
|
|
@@ -38608,25 +38586,25 @@
|
|
|
38608
38586
|
"name": "LitElement",
|
|
38609
38587
|
"package": "lit"
|
|
38610
38588
|
},
|
|
38611
|
-
"tagName": "obc-
|
|
38589
|
+
"tagName": "obc-corner-line",
|
|
38612
38590
|
"customElement": true
|
|
38613
38591
|
}
|
|
38614
38592
|
],
|
|
38615
38593
|
"exports": [
|
|
38616
38594
|
{
|
|
38617
38595
|
"kind": "js",
|
|
38618
|
-
"name": "
|
|
38596
|
+
"name": "ObcCornerLine",
|
|
38619
38597
|
"declaration": {
|
|
38620
|
-
"name": "
|
|
38621
|
-
"module": "src/automation/
|
|
38598
|
+
"name": "ObcCornerLine",
|
|
38599
|
+
"module": "src/automation/corner-line/corner-line.ts"
|
|
38622
38600
|
}
|
|
38623
38601
|
},
|
|
38624
38602
|
{
|
|
38625
38603
|
"kind": "custom-element-definition",
|
|
38626
|
-
"name": "obc-
|
|
38604
|
+
"name": "obc-corner-line",
|
|
38627
38605
|
"declaration": {
|
|
38628
|
-
"name": "
|
|
38629
|
-
"module": "src/automation/
|
|
38606
|
+
"name": "ObcCornerLine",
|
|
38607
|
+
"module": "src/automation/corner-line/corner-line.ts"
|
|
38630
38608
|
}
|
|
38631
38609
|
}
|
|
38632
38610
|
]
|
|
@@ -38777,58 +38755,105 @@
|
|
|
38777
38755
|
},
|
|
38778
38756
|
{
|
|
38779
38757
|
"kind": "javascript-module",
|
|
38780
|
-
"path": "src/automation/
|
|
38758
|
+
"path": "src/automation/automation-readout/automation-readout.ts",
|
|
38781
38759
|
"declarations": [
|
|
38782
38760
|
{
|
|
38783
38761
|
"kind": "class",
|
|
38784
38762
|
"description": "",
|
|
38785
|
-
"name": "
|
|
38763
|
+
"name": "ObcAutomationReadout",
|
|
38786
38764
|
"members": [
|
|
38787
38765
|
{
|
|
38788
38766
|
"kind": "field",
|
|
38789
|
-
"name": "
|
|
38767
|
+
"name": "value",
|
|
38790
38768
|
"type": {
|
|
38791
|
-
"text": "
|
|
38769
|
+
"text": "number"
|
|
38792
38770
|
},
|
|
38793
|
-
"
|
|
38771
|
+
"default": "0",
|
|
38772
|
+
"attribute": "value"
|
|
38794
38773
|
},
|
|
38795
38774
|
{
|
|
38796
38775
|
"kind": "field",
|
|
38797
|
-
"name": "
|
|
38776
|
+
"name": "unit",
|
|
38798
38777
|
"type": {
|
|
38799
|
-
"text": "
|
|
38778
|
+
"text": "string"
|
|
38800
38779
|
},
|
|
38801
|
-
"
|
|
38780
|
+
"default": "''",
|
|
38781
|
+
"attribute": "unit"
|
|
38782
|
+
},
|
|
38783
|
+
{
|
|
38784
|
+
"kind": "field",
|
|
38785
|
+
"name": "numberOfDigits",
|
|
38786
|
+
"type": {
|
|
38787
|
+
"text": "number"
|
|
38788
|
+
},
|
|
38789
|
+
"default": "3",
|
|
38790
|
+
"attribute": "numberOfDigits"
|
|
38791
|
+
},
|
|
38792
|
+
{
|
|
38793
|
+
"kind": "field",
|
|
38794
|
+
"name": "position",
|
|
38795
|
+
"type": {
|
|
38796
|
+
"text": "AutomationReadoutPosition"
|
|
38797
|
+
},
|
|
38798
|
+
"attribute": "position"
|
|
38802
38799
|
},
|
|
38803
38800
|
{
|
|
38804
38801
|
"kind": "field",
|
|
38805
38802
|
"name": "lineType",
|
|
38806
38803
|
"type": {
|
|
38807
|
-
"text": "LineType"
|
|
38804
|
+
"text": "LineType | undefined"
|
|
38808
38805
|
},
|
|
38806
|
+
"default": "undefined",
|
|
38809
38807
|
"attribute": "lineType"
|
|
38808
|
+
},
|
|
38809
|
+
{
|
|
38810
|
+
"kind": "method",
|
|
38811
|
+
"name": "getLineWidth",
|
|
38812
|
+
"return": {
|
|
38813
|
+
"type": {
|
|
38814
|
+
"text": "number"
|
|
38815
|
+
}
|
|
38816
|
+
}
|
|
38810
38817
|
}
|
|
38811
38818
|
],
|
|
38812
38819
|
"attributes": [
|
|
38813
38820
|
{
|
|
38814
|
-
"name": "
|
|
38821
|
+
"name": "value",
|
|
38815
38822
|
"type": {
|
|
38816
|
-
"text": "
|
|
38823
|
+
"text": "number"
|
|
38817
38824
|
},
|
|
38818
|
-
"
|
|
38825
|
+
"default": "0",
|
|
38826
|
+
"fieldName": "value"
|
|
38819
38827
|
},
|
|
38820
38828
|
{
|
|
38821
|
-
"name": "
|
|
38829
|
+
"name": "unit",
|
|
38822
38830
|
"type": {
|
|
38823
|
-
"text": "
|
|
38831
|
+
"text": "string"
|
|
38824
38832
|
},
|
|
38825
|
-
"
|
|
38833
|
+
"default": "''",
|
|
38834
|
+
"fieldName": "unit"
|
|
38835
|
+
},
|
|
38836
|
+
{
|
|
38837
|
+
"name": "numberOfDigits",
|
|
38838
|
+
"type": {
|
|
38839
|
+
"text": "number"
|
|
38840
|
+
},
|
|
38841
|
+
"default": "3",
|
|
38842
|
+
"fieldName": "numberOfDigits"
|
|
38843
|
+
},
|
|
38844
|
+
{
|
|
38845
|
+
"name": "position",
|
|
38846
|
+
"type": {
|
|
38847
|
+
"text": "AutomationReadoutPosition"
|
|
38848
|
+
},
|
|
38849
|
+
"fieldName": "position"
|
|
38826
38850
|
},
|
|
38827
38851
|
{
|
|
38828
38852
|
"name": "lineType",
|
|
38829
38853
|
"type": {
|
|
38830
|
-
"text": "LineType"
|
|
38854
|
+
"text": "LineType | undefined"
|
|
38831
38855
|
},
|
|
38856
|
+
"default": "undefined",
|
|
38832
38857
|
"fieldName": "lineType"
|
|
38833
38858
|
}
|
|
38834
38859
|
],
|
|
@@ -38836,25 +38861,25 @@
|
|
|
38836
38861
|
"name": "LitElement",
|
|
38837
38862
|
"package": "lit"
|
|
38838
38863
|
},
|
|
38839
|
-
"tagName": "obc-
|
|
38864
|
+
"tagName": "obc-automation-readout",
|
|
38840
38865
|
"customElement": true
|
|
38841
38866
|
}
|
|
38842
38867
|
],
|
|
38843
38868
|
"exports": [
|
|
38844
38869
|
{
|
|
38845
38870
|
"kind": "js",
|
|
38846
|
-
"name": "
|
|
38871
|
+
"name": "ObcAutomationReadout",
|
|
38847
38872
|
"declaration": {
|
|
38848
|
-
"name": "
|
|
38849
|
-
"module": "src/automation/
|
|
38873
|
+
"name": "ObcAutomationReadout",
|
|
38874
|
+
"module": "src/automation/automation-readout/automation-readout.ts"
|
|
38850
38875
|
}
|
|
38851
38876
|
},
|
|
38852
38877
|
{
|
|
38853
38878
|
"kind": "custom-element-definition",
|
|
38854
|
-
"name": "obc-
|
|
38879
|
+
"name": "obc-automation-readout",
|
|
38855
38880
|
"declaration": {
|
|
38856
|
-
"name": "
|
|
38857
|
-
"module": "src/automation/
|
|
38881
|
+
"name": "ObcAutomationReadout",
|
|
38882
|
+
"module": "src/automation/automation-readout/automation-readout.ts"
|
|
38858
38883
|
}
|
|
38859
38884
|
}
|
|
38860
38885
|
]
|
|
@@ -38928,6 +38953,90 @@
|
|
|
38928
38953
|
}
|
|
38929
38954
|
]
|
|
38930
38955
|
},
|
|
38956
|
+
{
|
|
38957
|
+
"kind": "javascript-module",
|
|
38958
|
+
"path": "src/automation/end-point-line/end-point-line.ts",
|
|
38959
|
+
"declarations": [
|
|
38960
|
+
{
|
|
38961
|
+
"kind": "class",
|
|
38962
|
+
"description": "",
|
|
38963
|
+
"name": "ObcEndPointLine",
|
|
38964
|
+
"members": [
|
|
38965
|
+
{
|
|
38966
|
+
"kind": "field",
|
|
38967
|
+
"name": "medium",
|
|
38968
|
+
"type": {
|
|
38969
|
+
"text": "LineMedium"
|
|
38970
|
+
},
|
|
38971
|
+
"attribute": "medium"
|
|
38972
|
+
},
|
|
38973
|
+
{
|
|
38974
|
+
"kind": "field",
|
|
38975
|
+
"name": "direction",
|
|
38976
|
+
"type": {
|
|
38977
|
+
"text": "EndPointDirection"
|
|
38978
|
+
},
|
|
38979
|
+
"attribute": "direction"
|
|
38980
|
+
},
|
|
38981
|
+
{
|
|
38982
|
+
"kind": "field",
|
|
38983
|
+
"name": "lineType",
|
|
38984
|
+
"type": {
|
|
38985
|
+
"text": "LineType"
|
|
38986
|
+
},
|
|
38987
|
+
"attribute": "lineType"
|
|
38988
|
+
}
|
|
38989
|
+
],
|
|
38990
|
+
"attributes": [
|
|
38991
|
+
{
|
|
38992
|
+
"name": "medium",
|
|
38993
|
+
"type": {
|
|
38994
|
+
"text": "LineMedium"
|
|
38995
|
+
},
|
|
38996
|
+
"fieldName": "medium"
|
|
38997
|
+
},
|
|
38998
|
+
{
|
|
38999
|
+
"name": "direction",
|
|
39000
|
+
"type": {
|
|
39001
|
+
"text": "EndPointDirection"
|
|
39002
|
+
},
|
|
39003
|
+
"fieldName": "direction"
|
|
39004
|
+
},
|
|
39005
|
+
{
|
|
39006
|
+
"name": "lineType",
|
|
39007
|
+
"type": {
|
|
39008
|
+
"text": "LineType"
|
|
39009
|
+
},
|
|
39010
|
+
"fieldName": "lineType"
|
|
39011
|
+
}
|
|
39012
|
+
],
|
|
39013
|
+
"superclass": {
|
|
39014
|
+
"name": "LitElement",
|
|
39015
|
+
"package": "lit"
|
|
39016
|
+
},
|
|
39017
|
+
"tagName": "obc-end-point-line",
|
|
39018
|
+
"customElement": true
|
|
39019
|
+
}
|
|
39020
|
+
],
|
|
39021
|
+
"exports": [
|
|
39022
|
+
{
|
|
39023
|
+
"kind": "js",
|
|
39024
|
+
"name": "ObcEndPointLine",
|
|
39025
|
+
"declaration": {
|
|
39026
|
+
"name": "ObcEndPointLine",
|
|
39027
|
+
"module": "src/automation/end-point-line/end-point-line.ts"
|
|
39028
|
+
}
|
|
39029
|
+
},
|
|
39030
|
+
{
|
|
39031
|
+
"kind": "custom-element-definition",
|
|
39032
|
+
"name": "obc-end-point-line",
|
|
39033
|
+
"declaration": {
|
|
39034
|
+
"name": "ObcEndPointLine",
|
|
39035
|
+
"module": "src/automation/end-point-line/end-point-line.ts"
|
|
39036
|
+
}
|
|
39037
|
+
}
|
|
39038
|
+
]
|
|
39039
|
+
},
|
|
38931
39040
|
{
|
|
38932
39041
|
"kind": "javascript-module",
|
|
38933
39042
|
"path": "src/automation/horizontal-line/horizontal-line.ts",
|
|
@@ -39016,12 +39125,12 @@
|
|
|
39016
39125
|
},
|
|
39017
39126
|
{
|
|
39018
39127
|
"kind": "javascript-module",
|
|
39019
|
-
"path": "src/automation/
|
|
39128
|
+
"path": "src/automation/line-cross/line-cross.ts",
|
|
39020
39129
|
"declarations": [
|
|
39021
39130
|
{
|
|
39022
39131
|
"kind": "class",
|
|
39023
39132
|
"description": "",
|
|
39024
|
-
"name": "
|
|
39133
|
+
"name": "ObcLineCross",
|
|
39025
39134
|
"members": [
|
|
39026
39135
|
{
|
|
39027
39136
|
"kind": "field",
|
|
@@ -39031,14 +39140,6 @@
|
|
|
39031
39140
|
},
|
|
39032
39141
|
"attribute": "medium"
|
|
39033
39142
|
},
|
|
39034
|
-
{
|
|
39035
|
-
"kind": "field",
|
|
39036
|
-
"name": "direction",
|
|
39037
|
-
"type": {
|
|
39038
|
-
"text": "EndPointDirection"
|
|
39039
|
-
},
|
|
39040
|
-
"attribute": "direction"
|
|
39041
|
-
},
|
|
39042
39143
|
{
|
|
39043
39144
|
"kind": "field",
|
|
39044
39145
|
"name": "lineType",
|
|
@@ -39056,13 +39157,6 @@
|
|
|
39056
39157
|
},
|
|
39057
39158
|
"fieldName": "medium"
|
|
39058
39159
|
},
|
|
39059
|
-
{
|
|
39060
|
-
"name": "direction",
|
|
39061
|
-
"type": {
|
|
39062
|
-
"text": "EndPointDirection"
|
|
39063
|
-
},
|
|
39064
|
-
"fieldName": "direction"
|
|
39065
|
-
},
|
|
39066
39160
|
{
|
|
39067
39161
|
"name": "lineType",
|
|
39068
39162
|
"type": {
|
|
@@ -39075,37 +39169,37 @@
|
|
|
39075
39169
|
"name": "LitElement",
|
|
39076
39170
|
"package": "lit"
|
|
39077
39171
|
},
|
|
39078
|
-
"tagName": "obc-
|
|
39172
|
+
"tagName": "obc-line-cross",
|
|
39079
39173
|
"customElement": true
|
|
39080
39174
|
}
|
|
39081
39175
|
],
|
|
39082
39176
|
"exports": [
|
|
39083
39177
|
{
|
|
39084
39178
|
"kind": "js",
|
|
39085
|
-
"name": "
|
|
39179
|
+
"name": "ObcLineCross",
|
|
39086
39180
|
"declaration": {
|
|
39087
|
-
"name": "
|
|
39088
|
-
"module": "src/automation/
|
|
39181
|
+
"name": "ObcLineCross",
|
|
39182
|
+
"module": "src/automation/line-cross/line-cross.ts"
|
|
39089
39183
|
}
|
|
39090
39184
|
},
|
|
39091
39185
|
{
|
|
39092
39186
|
"kind": "custom-element-definition",
|
|
39093
|
-
"name": "obc-
|
|
39187
|
+
"name": "obc-line-cross",
|
|
39094
39188
|
"declaration": {
|
|
39095
|
-
"name": "
|
|
39096
|
-
"module": "src/automation/
|
|
39189
|
+
"name": "ObcLineCross",
|
|
39190
|
+
"module": "src/automation/line-cross/line-cross.ts"
|
|
39097
39191
|
}
|
|
39098
39192
|
}
|
|
39099
39193
|
]
|
|
39100
39194
|
},
|
|
39101
39195
|
{
|
|
39102
39196
|
"kind": "javascript-module",
|
|
39103
|
-
"path": "src/automation/line-
|
|
39197
|
+
"path": "src/automation/line-overlap/line-overlap.ts",
|
|
39104
39198
|
"declarations": [
|
|
39105
39199
|
{
|
|
39106
39200
|
"kind": "class",
|
|
39107
39201
|
"description": "",
|
|
39108
|
-
"name": "
|
|
39202
|
+
"name": "ObcLineOverlap",
|
|
39109
39203
|
"members": [
|
|
39110
39204
|
{
|
|
39111
39205
|
"kind": "field",
|
|
@@ -39144,37 +39238,37 @@
|
|
|
39144
39238
|
"name": "LitElement",
|
|
39145
39239
|
"package": "lit"
|
|
39146
39240
|
},
|
|
39147
|
-
"tagName": "obc-line-
|
|
39241
|
+
"tagName": "obc-line-overlap",
|
|
39148
39242
|
"customElement": true
|
|
39149
39243
|
}
|
|
39150
39244
|
],
|
|
39151
39245
|
"exports": [
|
|
39152
39246
|
{
|
|
39153
39247
|
"kind": "js",
|
|
39154
|
-
"name": "
|
|
39248
|
+
"name": "ObcLineOverlap",
|
|
39155
39249
|
"declaration": {
|
|
39156
|
-
"name": "
|
|
39157
|
-
"module": "src/automation/line-
|
|
39250
|
+
"name": "ObcLineOverlap",
|
|
39251
|
+
"module": "src/automation/line-overlap/line-overlap.ts"
|
|
39158
39252
|
}
|
|
39159
39253
|
},
|
|
39160
39254
|
{
|
|
39161
39255
|
"kind": "custom-element-definition",
|
|
39162
|
-
"name": "obc-line-
|
|
39256
|
+
"name": "obc-line-overlap",
|
|
39163
39257
|
"declaration": {
|
|
39164
|
-
"name": "
|
|
39165
|
-
"module": "src/automation/line-
|
|
39258
|
+
"name": "ObcLineOverlap",
|
|
39259
|
+
"module": "src/automation/line-overlap/line-overlap.ts"
|
|
39166
39260
|
}
|
|
39167
39261
|
}
|
|
39168
39262
|
]
|
|
39169
39263
|
},
|
|
39170
39264
|
{
|
|
39171
39265
|
"kind": "javascript-module",
|
|
39172
|
-
"path": "src/automation/line-
|
|
39266
|
+
"path": "src/automation/three-way-line/three-way-line.ts",
|
|
39173
39267
|
"declarations": [
|
|
39174
39268
|
{
|
|
39175
39269
|
"kind": "class",
|
|
39176
39270
|
"description": "",
|
|
39177
|
-
"name": "
|
|
39271
|
+
"name": "ObcThreeWayLine",
|
|
39178
39272
|
"members": [
|
|
39179
39273
|
{
|
|
39180
39274
|
"kind": "field",
|
|
@@ -39184,6 +39278,14 @@
|
|
|
39184
39278
|
},
|
|
39185
39279
|
"attribute": "medium"
|
|
39186
39280
|
},
|
|
39281
|
+
{
|
|
39282
|
+
"kind": "field",
|
|
39283
|
+
"name": "direction",
|
|
39284
|
+
"type": {
|
|
39285
|
+
"text": "ThreeWayLineDirection"
|
|
39286
|
+
},
|
|
39287
|
+
"attribute": "direction"
|
|
39288
|
+
},
|
|
39187
39289
|
{
|
|
39188
39290
|
"kind": "field",
|
|
39189
39291
|
"name": "lineType",
|
|
@@ -39201,6 +39303,13 @@
|
|
|
39201
39303
|
},
|
|
39202
39304
|
"fieldName": "medium"
|
|
39203
39305
|
},
|
|
39306
|
+
{
|
|
39307
|
+
"name": "direction",
|
|
39308
|
+
"type": {
|
|
39309
|
+
"text": "ThreeWayLineDirection"
|
|
39310
|
+
},
|
|
39311
|
+
"fieldName": "direction"
|
|
39312
|
+
},
|
|
39204
39313
|
{
|
|
39205
39314
|
"name": "lineType",
|
|
39206
39315
|
"type": {
|
|
@@ -39213,37 +39322,37 @@
|
|
|
39213
39322
|
"name": "LitElement",
|
|
39214
39323
|
"package": "lit"
|
|
39215
39324
|
},
|
|
39216
|
-
"tagName": "obc-line
|
|
39325
|
+
"tagName": "obc-three-way-line",
|
|
39217
39326
|
"customElement": true
|
|
39218
39327
|
}
|
|
39219
39328
|
],
|
|
39220
39329
|
"exports": [
|
|
39221
39330
|
{
|
|
39222
39331
|
"kind": "js",
|
|
39223
|
-
"name": "
|
|
39332
|
+
"name": "ObcThreeWayLine",
|
|
39224
39333
|
"declaration": {
|
|
39225
|
-
"name": "
|
|
39226
|
-
"module": "src/automation/line-
|
|
39334
|
+
"name": "ObcThreeWayLine",
|
|
39335
|
+
"module": "src/automation/three-way-line/three-way-line.ts"
|
|
39227
39336
|
}
|
|
39228
39337
|
},
|
|
39229
39338
|
{
|
|
39230
39339
|
"kind": "custom-element-definition",
|
|
39231
|
-
"name": "obc-line
|
|
39340
|
+
"name": "obc-three-way-line",
|
|
39232
39341
|
"declaration": {
|
|
39233
|
-
"name": "
|
|
39234
|
-
"module": "src/automation/line-
|
|
39342
|
+
"name": "ObcThreeWayLine",
|
|
39343
|
+
"module": "src/automation/three-way-line/three-way-line.ts"
|
|
39235
39344
|
}
|
|
39236
39345
|
}
|
|
39237
39346
|
]
|
|
39238
39347
|
},
|
|
39239
39348
|
{
|
|
39240
39349
|
"kind": "javascript-module",
|
|
39241
|
-
"path": "src/automation/valve-
|
|
39350
|
+
"path": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts",
|
|
39242
39351
|
"declarations": [
|
|
39243
39352
|
{
|
|
39244
39353
|
"kind": "class",
|
|
39245
39354
|
"description": "",
|
|
39246
|
-
"name": "
|
|
39355
|
+
"name": "ObcValveAnalogThreeWayIcon",
|
|
39247
39356
|
"members": [
|
|
39248
39357
|
{
|
|
39249
39358
|
"kind": "field",
|
|
@@ -39254,6 +39363,15 @@
|
|
|
39254
39363
|
"default": "0",
|
|
39255
39364
|
"attribute": "value"
|
|
39256
39365
|
},
|
|
39366
|
+
{
|
|
39367
|
+
"kind": "field",
|
|
39368
|
+
"name": "value2",
|
|
39369
|
+
"type": {
|
|
39370
|
+
"text": "number"
|
|
39371
|
+
},
|
|
39372
|
+
"default": "0",
|
|
39373
|
+
"attribute": "value2"
|
|
39374
|
+
},
|
|
39257
39375
|
{
|
|
39258
39376
|
"kind": "field",
|
|
39259
39377
|
"name": "closed",
|
|
@@ -39262,6 +39380,15 @@
|
|
|
39262
39380
|
},
|
|
39263
39381
|
"default": "false",
|
|
39264
39382
|
"attribute": "closed"
|
|
39383
|
+
},
|
|
39384
|
+
{
|
|
39385
|
+
"kind": "field",
|
|
39386
|
+
"name": "horisontal",
|
|
39387
|
+
"type": {
|
|
39388
|
+
"text": "boolean"
|
|
39389
|
+
},
|
|
39390
|
+
"default": "false",
|
|
39391
|
+
"attribute": "horisontal"
|
|
39265
39392
|
}
|
|
39266
39393
|
],
|
|
39267
39394
|
"attributes": [
|
|
@@ -39273,6 +39400,14 @@
|
|
|
39273
39400
|
"default": "0",
|
|
39274
39401
|
"fieldName": "value"
|
|
39275
39402
|
},
|
|
39403
|
+
{
|
|
39404
|
+
"name": "value2",
|
|
39405
|
+
"type": {
|
|
39406
|
+
"text": "number"
|
|
39407
|
+
},
|
|
39408
|
+
"default": "0",
|
|
39409
|
+
"fieldName": "value2"
|
|
39410
|
+
},
|
|
39276
39411
|
{
|
|
39277
39412
|
"name": "closed",
|
|
39278
39413
|
"type": {
|
|
@@ -39280,115 +39415,112 @@
|
|
|
39280
39415
|
},
|
|
39281
39416
|
"default": "false",
|
|
39282
39417
|
"fieldName": "closed"
|
|
39418
|
+
},
|
|
39419
|
+
{
|
|
39420
|
+
"name": "horisontal",
|
|
39421
|
+
"type": {
|
|
39422
|
+
"text": "boolean"
|
|
39423
|
+
},
|
|
39424
|
+
"default": "false",
|
|
39425
|
+
"fieldName": "horisontal"
|
|
39283
39426
|
}
|
|
39284
39427
|
],
|
|
39285
39428
|
"superclass": {
|
|
39286
39429
|
"name": "LitElement",
|
|
39287
39430
|
"package": "lit"
|
|
39288
39431
|
},
|
|
39289
|
-
"tagName": "obc-valve-analog-
|
|
39432
|
+
"tagName": "obc-valve-analog-three-way-icon",
|
|
39290
39433
|
"customElement": true
|
|
39291
39434
|
}
|
|
39292
39435
|
],
|
|
39293
39436
|
"exports": [
|
|
39294
39437
|
{
|
|
39295
39438
|
"kind": "js",
|
|
39296
|
-
"name": "
|
|
39439
|
+
"name": "ObcValveAnalogThreeWayIcon",
|
|
39297
39440
|
"declaration": {
|
|
39298
|
-
"name": "
|
|
39299
|
-
"module": "src/automation/valve-
|
|
39441
|
+
"name": "ObcValveAnalogThreeWayIcon",
|
|
39442
|
+
"module": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts"
|
|
39300
39443
|
}
|
|
39301
39444
|
},
|
|
39302
39445
|
{
|
|
39303
39446
|
"kind": "custom-element-definition",
|
|
39304
|
-
"name": "obc-valve-analog-
|
|
39447
|
+
"name": "obc-valve-analog-three-way-icon",
|
|
39305
39448
|
"declaration": {
|
|
39306
|
-
"name": "
|
|
39307
|
-
"module": "src/automation/valve-
|
|
39449
|
+
"name": "ObcValveAnalogThreeWayIcon",
|
|
39450
|
+
"module": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts"
|
|
39308
39451
|
}
|
|
39309
39452
|
}
|
|
39310
39453
|
]
|
|
39311
39454
|
},
|
|
39312
39455
|
{
|
|
39313
39456
|
"kind": "javascript-module",
|
|
39314
|
-
"path": "src/automation/
|
|
39457
|
+
"path": "src/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.ts",
|
|
39315
39458
|
"declarations": [
|
|
39316
39459
|
{
|
|
39317
39460
|
"kind": "class",
|
|
39318
39461
|
"description": "",
|
|
39319
|
-
"name": "
|
|
39462
|
+
"name": "ObcValveAnalogTwoWayIcon",
|
|
39320
39463
|
"members": [
|
|
39321
39464
|
{
|
|
39322
39465
|
"kind": "field",
|
|
39323
|
-
"name": "
|
|
39324
|
-
"type": {
|
|
39325
|
-
"text": "LineMedium"
|
|
39326
|
-
},
|
|
39327
|
-
"attribute": "medium"
|
|
39328
|
-
},
|
|
39329
|
-
{
|
|
39330
|
-
"kind": "field",
|
|
39331
|
-
"name": "direction",
|
|
39466
|
+
"name": "value",
|
|
39332
39467
|
"type": {
|
|
39333
|
-
"text": "
|
|
39468
|
+
"text": "number"
|
|
39334
39469
|
},
|
|
39335
|
-
"
|
|
39470
|
+
"default": "0",
|
|
39471
|
+
"attribute": "value"
|
|
39336
39472
|
},
|
|
39337
39473
|
{
|
|
39338
39474
|
"kind": "field",
|
|
39339
|
-
"name": "
|
|
39475
|
+
"name": "closed",
|
|
39340
39476
|
"type": {
|
|
39341
|
-
"text": "
|
|
39477
|
+
"text": "boolean"
|
|
39342
39478
|
},
|
|
39343
|
-
"
|
|
39479
|
+
"default": "false",
|
|
39480
|
+
"attribute": "closed"
|
|
39344
39481
|
}
|
|
39345
39482
|
],
|
|
39346
39483
|
"attributes": [
|
|
39347
39484
|
{
|
|
39348
|
-
"name": "
|
|
39349
|
-
"type": {
|
|
39350
|
-
"text": "LineMedium"
|
|
39351
|
-
},
|
|
39352
|
-
"fieldName": "medium"
|
|
39353
|
-
},
|
|
39354
|
-
{
|
|
39355
|
-
"name": "direction",
|
|
39485
|
+
"name": "value",
|
|
39356
39486
|
"type": {
|
|
39357
|
-
"text": "
|
|
39487
|
+
"text": "number"
|
|
39358
39488
|
},
|
|
39359
|
-
"
|
|
39489
|
+
"default": "0",
|
|
39490
|
+
"fieldName": "value"
|
|
39360
39491
|
},
|
|
39361
39492
|
{
|
|
39362
|
-
"name": "
|
|
39493
|
+
"name": "closed",
|
|
39363
39494
|
"type": {
|
|
39364
|
-
"text": "
|
|
39495
|
+
"text": "boolean"
|
|
39365
39496
|
},
|
|
39366
|
-
"
|
|
39497
|
+
"default": "false",
|
|
39498
|
+
"fieldName": "closed"
|
|
39367
39499
|
}
|
|
39368
39500
|
],
|
|
39369
39501
|
"superclass": {
|
|
39370
39502
|
"name": "LitElement",
|
|
39371
39503
|
"package": "lit"
|
|
39372
39504
|
},
|
|
39373
|
-
"tagName": "obc-
|
|
39505
|
+
"tagName": "obc-valve-analog-two-way-icon",
|
|
39374
39506
|
"customElement": true
|
|
39375
39507
|
}
|
|
39376
39508
|
],
|
|
39377
39509
|
"exports": [
|
|
39378
39510
|
{
|
|
39379
39511
|
"kind": "js",
|
|
39380
|
-
"name": "
|
|
39512
|
+
"name": "ObcValveAnalogTwoWayIcon",
|
|
39381
39513
|
"declaration": {
|
|
39382
|
-
"name": "
|
|
39383
|
-
"module": "src/automation/
|
|
39514
|
+
"name": "ObcValveAnalogTwoWayIcon",
|
|
39515
|
+
"module": "src/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.ts"
|
|
39384
39516
|
}
|
|
39385
39517
|
},
|
|
39386
39518
|
{
|
|
39387
39519
|
"kind": "custom-element-definition",
|
|
39388
|
-
"name": "obc-
|
|
39520
|
+
"name": "obc-valve-analog-two-way-icon",
|
|
39389
39521
|
"declaration": {
|
|
39390
|
-
"name": "
|
|
39391
|
-
"module": "src/automation/
|
|
39522
|
+
"name": "ObcValveAnalogTwoWayIcon",
|
|
39523
|
+
"module": "src/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.ts"
|
|
39392
39524
|
}
|
|
39393
39525
|
}
|
|
39394
39526
|
]
|
|
@@ -39479,113 +39611,6 @@
|
|
|
39479
39611
|
}
|
|
39480
39612
|
]
|
|
39481
39613
|
},
|
|
39482
|
-
{
|
|
39483
|
-
"kind": "javascript-module",
|
|
39484
|
-
"path": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts",
|
|
39485
|
-
"declarations": [
|
|
39486
|
-
{
|
|
39487
|
-
"kind": "class",
|
|
39488
|
-
"description": "",
|
|
39489
|
-
"name": "ObcValveAnalogThreeWayIcon",
|
|
39490
|
-
"members": [
|
|
39491
|
-
{
|
|
39492
|
-
"kind": "field",
|
|
39493
|
-
"name": "value",
|
|
39494
|
-
"type": {
|
|
39495
|
-
"text": "number"
|
|
39496
|
-
},
|
|
39497
|
-
"default": "0",
|
|
39498
|
-
"attribute": "value"
|
|
39499
|
-
},
|
|
39500
|
-
{
|
|
39501
|
-
"kind": "field",
|
|
39502
|
-
"name": "value2",
|
|
39503
|
-
"type": {
|
|
39504
|
-
"text": "number"
|
|
39505
|
-
},
|
|
39506
|
-
"default": "0",
|
|
39507
|
-
"attribute": "value2"
|
|
39508
|
-
},
|
|
39509
|
-
{
|
|
39510
|
-
"kind": "field",
|
|
39511
|
-
"name": "closed",
|
|
39512
|
-
"type": {
|
|
39513
|
-
"text": "boolean"
|
|
39514
|
-
},
|
|
39515
|
-
"default": "false",
|
|
39516
|
-
"attribute": "closed"
|
|
39517
|
-
},
|
|
39518
|
-
{
|
|
39519
|
-
"kind": "field",
|
|
39520
|
-
"name": "horisontal",
|
|
39521
|
-
"type": {
|
|
39522
|
-
"text": "boolean"
|
|
39523
|
-
},
|
|
39524
|
-
"default": "false",
|
|
39525
|
-
"attribute": "horisontal"
|
|
39526
|
-
}
|
|
39527
|
-
],
|
|
39528
|
-
"attributes": [
|
|
39529
|
-
{
|
|
39530
|
-
"name": "value",
|
|
39531
|
-
"type": {
|
|
39532
|
-
"text": "number"
|
|
39533
|
-
},
|
|
39534
|
-
"default": "0",
|
|
39535
|
-
"fieldName": "value"
|
|
39536
|
-
},
|
|
39537
|
-
{
|
|
39538
|
-
"name": "value2",
|
|
39539
|
-
"type": {
|
|
39540
|
-
"text": "number"
|
|
39541
|
-
},
|
|
39542
|
-
"default": "0",
|
|
39543
|
-
"fieldName": "value2"
|
|
39544
|
-
},
|
|
39545
|
-
{
|
|
39546
|
-
"name": "closed",
|
|
39547
|
-
"type": {
|
|
39548
|
-
"text": "boolean"
|
|
39549
|
-
},
|
|
39550
|
-
"default": "false",
|
|
39551
|
-
"fieldName": "closed"
|
|
39552
|
-
},
|
|
39553
|
-
{
|
|
39554
|
-
"name": "horisontal",
|
|
39555
|
-
"type": {
|
|
39556
|
-
"text": "boolean"
|
|
39557
|
-
},
|
|
39558
|
-
"default": "false",
|
|
39559
|
-
"fieldName": "horisontal"
|
|
39560
|
-
}
|
|
39561
|
-
],
|
|
39562
|
-
"superclass": {
|
|
39563
|
-
"name": "LitElement",
|
|
39564
|
-
"package": "lit"
|
|
39565
|
-
},
|
|
39566
|
-
"tagName": "obc-valve-analog-three-way-icon",
|
|
39567
|
-
"customElement": true
|
|
39568
|
-
}
|
|
39569
|
-
],
|
|
39570
|
-
"exports": [
|
|
39571
|
-
{
|
|
39572
|
-
"kind": "js",
|
|
39573
|
-
"name": "ObcValveAnalogThreeWayIcon",
|
|
39574
|
-
"declaration": {
|
|
39575
|
-
"name": "ObcValveAnalogThreeWayIcon",
|
|
39576
|
-
"module": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts"
|
|
39577
|
-
}
|
|
39578
|
-
},
|
|
39579
|
-
{
|
|
39580
|
-
"kind": "custom-element-definition",
|
|
39581
|
-
"name": "obc-valve-analog-three-way-icon",
|
|
39582
|
-
"declaration": {
|
|
39583
|
-
"name": "ObcValveAnalogThreeWayIcon",
|
|
39584
|
-
"module": "src/automation/valve-analog-three-way-icon/valve-analog-three-way-icon.ts"
|
|
39585
|
-
}
|
|
39586
|
-
}
|
|
39587
|
-
]
|
|
39588
|
-
},
|
|
39589
39614
|
{
|
|
39590
39615
|
"kind": "javascript-module",
|
|
39591
39616
|
"path": "src/components/alert-button/alert-button.ts",
|
|
@@ -41511,42 +41536,6 @@
|
|
|
41511
41536
|
}
|
|
41512
41537
|
]
|
|
41513
41538
|
},
|
|
41514
|
-
{
|
|
41515
|
-
"kind": "javascript-module",
|
|
41516
|
-
"path": "src/components/navigation-menu/navigation-menu.ts",
|
|
41517
|
-
"declarations": [
|
|
41518
|
-
{
|
|
41519
|
-
"kind": "class",
|
|
41520
|
-
"description": "",
|
|
41521
|
-
"name": "ObcNavigationMenu",
|
|
41522
|
-
"members": [],
|
|
41523
|
-
"superclass": {
|
|
41524
|
-
"name": "LitElement",
|
|
41525
|
-
"package": "lit"
|
|
41526
|
-
},
|
|
41527
|
-
"tagName": "obc-navigation-menu",
|
|
41528
|
-
"customElement": true
|
|
41529
|
-
}
|
|
41530
|
-
],
|
|
41531
|
-
"exports": [
|
|
41532
|
-
{
|
|
41533
|
-
"kind": "js",
|
|
41534
|
-
"name": "ObcNavigationMenu",
|
|
41535
|
-
"declaration": {
|
|
41536
|
-
"name": "ObcNavigationMenu",
|
|
41537
|
-
"module": "src/components/navigation-menu/navigation-menu.ts"
|
|
41538
|
-
}
|
|
41539
|
-
},
|
|
41540
|
-
{
|
|
41541
|
-
"kind": "custom-element-definition",
|
|
41542
|
-
"name": "obc-navigation-menu",
|
|
41543
|
-
"declaration": {
|
|
41544
|
-
"name": "ObcNavigationMenu",
|
|
41545
|
-
"module": "src/components/navigation-menu/navigation-menu.ts"
|
|
41546
|
-
}
|
|
41547
|
-
}
|
|
41548
|
-
]
|
|
41549
|
-
},
|
|
41550
41539
|
{
|
|
41551
41540
|
"kind": "javascript-module",
|
|
41552
41541
|
"path": "src/components/navigation-item/navigation-item.ts",
|
|
@@ -41639,6 +41628,42 @@
|
|
|
41639
41628
|
}
|
|
41640
41629
|
]
|
|
41641
41630
|
},
|
|
41631
|
+
{
|
|
41632
|
+
"kind": "javascript-module",
|
|
41633
|
+
"path": "src/components/navigation-menu/navigation-menu.ts",
|
|
41634
|
+
"declarations": [
|
|
41635
|
+
{
|
|
41636
|
+
"kind": "class",
|
|
41637
|
+
"description": "",
|
|
41638
|
+
"name": "ObcNavigationMenu",
|
|
41639
|
+
"members": [],
|
|
41640
|
+
"superclass": {
|
|
41641
|
+
"name": "LitElement",
|
|
41642
|
+
"package": "lit"
|
|
41643
|
+
},
|
|
41644
|
+
"tagName": "obc-navigation-menu",
|
|
41645
|
+
"customElement": true
|
|
41646
|
+
}
|
|
41647
|
+
],
|
|
41648
|
+
"exports": [
|
|
41649
|
+
{
|
|
41650
|
+
"kind": "js",
|
|
41651
|
+
"name": "ObcNavigationMenu",
|
|
41652
|
+
"declaration": {
|
|
41653
|
+
"name": "ObcNavigationMenu",
|
|
41654
|
+
"module": "src/components/navigation-menu/navigation-menu.ts"
|
|
41655
|
+
}
|
|
41656
|
+
},
|
|
41657
|
+
{
|
|
41658
|
+
"kind": "custom-element-definition",
|
|
41659
|
+
"name": "obc-navigation-menu",
|
|
41660
|
+
"declaration": {
|
|
41661
|
+
"name": "ObcNavigationMenu",
|
|
41662
|
+
"module": "src/components/navigation-menu/navigation-menu.ts"
|
|
41663
|
+
}
|
|
41664
|
+
}
|
|
41665
|
+
]
|
|
41666
|
+
},
|
|
41642
41667
|
{
|
|
41643
41668
|
"kind": "javascript-module",
|
|
41644
41669
|
"path": "src/components/notification-button/notification-button.ts",
|
|
@@ -41870,6 +41895,62 @@
|
|
|
41870
41895
|
}
|
|
41871
41896
|
]
|
|
41872
41897
|
},
|
|
41898
|
+
{
|
|
41899
|
+
"kind": "javascript-module",
|
|
41900
|
+
"path": "src/components/notification-message-item/notification-message-item.ts",
|
|
41901
|
+
"declarations": [
|
|
41902
|
+
{
|
|
41903
|
+
"kind": "class",
|
|
41904
|
+
"description": "",
|
|
41905
|
+
"name": "ObcNotificationMessageItem",
|
|
41906
|
+
"members": [
|
|
41907
|
+
{
|
|
41908
|
+
"kind": "field",
|
|
41909
|
+
"name": "time",
|
|
41910
|
+
"type": {
|
|
41911
|
+
"text": "string"
|
|
41912
|
+
},
|
|
41913
|
+
"default": "'2021-01-01T11:11:11.111Z'",
|
|
41914
|
+
"attribute": "time"
|
|
41915
|
+
}
|
|
41916
|
+
],
|
|
41917
|
+
"attributes": [
|
|
41918
|
+
{
|
|
41919
|
+
"name": "time",
|
|
41920
|
+
"type": {
|
|
41921
|
+
"text": "string"
|
|
41922
|
+
},
|
|
41923
|
+
"default": "'2021-01-01T11:11:11.111Z'",
|
|
41924
|
+
"fieldName": "time"
|
|
41925
|
+
}
|
|
41926
|
+
],
|
|
41927
|
+
"superclass": {
|
|
41928
|
+
"name": "LitElement",
|
|
41929
|
+
"package": "lit"
|
|
41930
|
+
},
|
|
41931
|
+
"tagName": "obc-notification-message-item",
|
|
41932
|
+
"customElement": true
|
|
41933
|
+
}
|
|
41934
|
+
],
|
|
41935
|
+
"exports": [
|
|
41936
|
+
{
|
|
41937
|
+
"kind": "js",
|
|
41938
|
+
"name": "ObcNotificationMessageItem",
|
|
41939
|
+
"declaration": {
|
|
41940
|
+
"name": "ObcNotificationMessageItem",
|
|
41941
|
+
"module": "src/components/notification-message-item/notification-message-item.ts"
|
|
41942
|
+
}
|
|
41943
|
+
},
|
|
41944
|
+
{
|
|
41945
|
+
"kind": "custom-element-definition",
|
|
41946
|
+
"name": "obc-notification-message-item",
|
|
41947
|
+
"declaration": {
|
|
41948
|
+
"name": "ObcNotificationMessageItem",
|
|
41949
|
+
"module": "src/components/notification-message-item/notification-message-item.ts"
|
|
41950
|
+
}
|
|
41951
|
+
}
|
|
41952
|
+
]
|
|
41953
|
+
},
|
|
41873
41954
|
{
|
|
41874
41955
|
"kind": "javascript-module",
|
|
41875
41956
|
"path": "src/components/rich-button/rich-button.ts",
|
|
@@ -42058,62 +42139,6 @@
|
|
|
42058
42139
|
}
|
|
42059
42140
|
]
|
|
42060
42141
|
},
|
|
42061
|
-
{
|
|
42062
|
-
"kind": "javascript-module",
|
|
42063
|
-
"path": "src/components/notification-message-item/notification-message-item.ts",
|
|
42064
|
-
"declarations": [
|
|
42065
|
-
{
|
|
42066
|
-
"kind": "class",
|
|
42067
|
-
"description": "",
|
|
42068
|
-
"name": "ObcNotificationMessageItem",
|
|
42069
|
-
"members": [
|
|
42070
|
-
{
|
|
42071
|
-
"kind": "field",
|
|
42072
|
-
"name": "time",
|
|
42073
|
-
"type": {
|
|
42074
|
-
"text": "string"
|
|
42075
|
-
},
|
|
42076
|
-
"default": "'2021-01-01T11:11:11.111Z'",
|
|
42077
|
-
"attribute": "time"
|
|
42078
|
-
}
|
|
42079
|
-
],
|
|
42080
|
-
"attributes": [
|
|
42081
|
-
{
|
|
42082
|
-
"name": "time",
|
|
42083
|
-
"type": {
|
|
42084
|
-
"text": "string"
|
|
42085
|
-
},
|
|
42086
|
-
"default": "'2021-01-01T11:11:11.111Z'",
|
|
42087
|
-
"fieldName": "time"
|
|
42088
|
-
}
|
|
42089
|
-
],
|
|
42090
|
-
"superclass": {
|
|
42091
|
-
"name": "LitElement",
|
|
42092
|
-
"package": "lit"
|
|
42093
|
-
},
|
|
42094
|
-
"tagName": "obc-notification-message-item",
|
|
42095
|
-
"customElement": true
|
|
42096
|
-
}
|
|
42097
|
-
],
|
|
42098
|
-
"exports": [
|
|
42099
|
-
{
|
|
42100
|
-
"kind": "js",
|
|
42101
|
-
"name": "ObcNotificationMessageItem",
|
|
42102
|
-
"declaration": {
|
|
42103
|
-
"name": "ObcNotificationMessageItem",
|
|
42104
|
-
"module": "src/components/notification-message-item/notification-message-item.ts"
|
|
42105
|
-
}
|
|
42106
|
-
},
|
|
42107
|
-
{
|
|
42108
|
-
"kind": "custom-element-definition",
|
|
42109
|
-
"name": "obc-notification-message-item",
|
|
42110
|
-
"declaration": {
|
|
42111
|
-
"name": "ObcNotificationMessageItem",
|
|
42112
|
-
"module": "src/components/notification-message-item/notification-message-item.ts"
|
|
42113
|
-
}
|
|
42114
|
-
}
|
|
42115
|
-
]
|
|
42116
|
-
},
|
|
42117
42142
|
{
|
|
42118
42143
|
"kind": "javascript-module",
|
|
42119
42144
|
"path": "src/components/scrollbar/scrollbar.ts",
|