@omicronenergy/oscd-scl-dialogs 0.0.7 → 0.0.8
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 +7 -0
- package/README.md +123 -1
- package/custom-elements.json +409 -80
- package/dist/OscdSclDialogs.d.ts +21 -3
- package/dist/OscdSclDialogs.js +129 -9
- package/dist/OscdSclDialogs.js.map +1 -1
- package/dist/OscdTextEditor.d.ts +41 -0
- package/dist/OscdTextEditor.js +222 -0
- package/dist/OscdTextEditor.js.map +1 -0
- package/dist/scripts/update-readme.js +28 -5
- package/dist/scripts/update-readme.js.map +1 -1
- package/dist/wizards/ldevice.js +4 -2
- package/dist/wizards/ldevice.js.map +1 -1
- package/dist/wizards/ln0.js +2 -2
- package/dist/wizards/ln0.js.map +1 -1
- package/package.json +31 -22
- package/dist/demo/demo-editor-plugin.d.ts +0 -18
- package/dist/demo/demo-editor-plugin.js +0 -199
- package/dist/demo/demo-editor-plugin.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.8](https://github.com/OMICRONEnergyOSS/oscd-scl-dialogs/compare/oscd-scl-dialogs-v0.0.7...oscd-scl-dialogs-v0.0.8) (2026-02-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add "show as SCL Snippet" feature to dialog ([9b7b8b4](https://github.com/OMICRONEnergyOSS/oscd-scl-dialogs/commit/9b7b8b4ec2d7dd1c7ea9e864062fe124e2da53cd))
|
|
9
|
+
|
|
3
10
|
## [0.0.7](https://github.com/OMICRONEnergyOSS/oscd-scl-dialogs/compare/oscd-scl-dialogs-v0.0.6...oscd-scl-dialogs-v0.0.7) (2026-02-09)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -1,3 +1,125 @@
|
|
|
1
1
|
# wizard-dialog
|
|
2
2
|
|
|
3
|
-
This is a component allowing you to add a dialog to edit or create SCL elements. Be aware that not all SCL
|
|
3
|
+
This is a component allowing you to add a dialog to edit or create SCL elements. Be aware that not all SCL elements are yet covered and the the existing dialog masks are not tested directly.
|
|
4
|
+
|
|
5
|
+
Currently supported Tag matrix
|
|
6
|
+
|
|
7
|
+
| Tag Name | Supports Create | Supports Edit |
|
|
8
|
+
|-------------|----------------|----------------|
|
|
9
|
+
| AccessControl | ❌ | ❌ |
|
|
10
|
+
| AccessPoint | ❌ | ❌ |
|
|
11
|
+
| Address | ❌ | ❌ |
|
|
12
|
+
| Association | ❌ | ❌ |
|
|
13
|
+
| Authentication | ❌ | ❌ |
|
|
14
|
+
| Bay | ✅ | ✅ |
|
|
15
|
+
| BDA | ❌ | ✅ |
|
|
16
|
+
| BitRate | ❌ | ❌ |
|
|
17
|
+
| ClientLN | ❌ | ❌ |
|
|
18
|
+
| ClientServices | ❌ | ❌ |
|
|
19
|
+
| CommProt | ❌ | ❌ |
|
|
20
|
+
| Communication | ❌ | ❌ |
|
|
21
|
+
| ConductingEquipment | ✅ | ✅ |
|
|
22
|
+
| ConfDataSet | ❌ | ❌ |
|
|
23
|
+
| ConfLdName | ❌ | ❌ |
|
|
24
|
+
| ConfLNs | ❌ | ❌ |
|
|
25
|
+
| ConfLogControl | ❌ | ❌ |
|
|
26
|
+
| ConfReportControl | ❌ | ❌ |
|
|
27
|
+
| ConfSG | ❌ | ❌ |
|
|
28
|
+
| ConfSigRef | ❌ | ❌ |
|
|
29
|
+
| ConnectedAP | ✅ | ✅ |
|
|
30
|
+
| DA | ✅ | ✅ |
|
|
31
|
+
| DAType | ❌ | ❌ |
|
|
32
|
+
| DO | ✅ | ✅ |
|
|
33
|
+
| DOI | ❌ | ❌ |
|
|
34
|
+
| DOType | ✅ | ❌ |
|
|
35
|
+
| DataObjectDirectory | ❌ | ❌ |
|
|
36
|
+
| DataSet | ❌ | ❌ |
|
|
37
|
+
| DataSetDirectory | ❌ | ❌ |
|
|
38
|
+
| DataTypeTemplates | ❌ | ❌ |
|
|
39
|
+
| DynAssociation | ❌ | ❌ |
|
|
40
|
+
| DynDataSet | ❌ | ❌ |
|
|
41
|
+
| EnumType | ✅ | ❌ |
|
|
42
|
+
| EnumVal | ✅ | ✅ |
|
|
43
|
+
| EqFunction | ✅ | ✅ |
|
|
44
|
+
| EqSubFunction | ✅ | ✅ |
|
|
45
|
+
| ExtRef | ❌ | ❌ |
|
|
46
|
+
| FileHandling | ❌ | ❌ |
|
|
47
|
+
| Function | ✅ | ✅ |
|
|
48
|
+
| GeneralEquipment | ✅ | ✅ |
|
|
49
|
+
| GetCBValues | ❌ | ❌ |
|
|
50
|
+
| GetDataObjectDefinition | ❌ | ❌ |
|
|
51
|
+
| GetDataSetValue | ❌ | ❌ |
|
|
52
|
+
| GetDirectory | ❌ | ❌ |
|
|
53
|
+
| GOOSE | ❌ | ❌ |
|
|
54
|
+
| GOOSESecurity | ❌ | ❌ |
|
|
55
|
+
| GSE | ❌ | ✅ |
|
|
56
|
+
| GSEDir | ❌ | ❌ |
|
|
57
|
+
| GSESettings | ❌ | ❌ |
|
|
58
|
+
| GSSE | ❌ | ❌ |
|
|
59
|
+
| Header | ❌ | ❌ |
|
|
60
|
+
| History | ❌ | ❌ |
|
|
61
|
+
| Hitem | ❌ | ❌ |
|
|
62
|
+
| IED | ✅ | ✅ |
|
|
63
|
+
| IEDName | ❌ | ❌ |
|
|
64
|
+
| Inputs | ❌ | ❌ |
|
|
65
|
+
| IssuerName | ❌ | ❌ |
|
|
66
|
+
| KDC | ❌ | ❌ |
|
|
67
|
+
| LDevice | ✅ | ✅ |
|
|
68
|
+
| LN | ✅ | ✅ |
|
|
69
|
+
| LN0 | ❌ | ✅ |
|
|
70
|
+
| LNode | ✅ | ❌ |
|
|
71
|
+
| LNodeType | ✅ | ❌ |
|
|
72
|
+
| Line | ✅ | ✅ |
|
|
73
|
+
| Log | ❌ | ❌ |
|
|
74
|
+
| LogControl | ❌ | ❌ |
|
|
75
|
+
| LogSettings | ❌ | ❌ |
|
|
76
|
+
| MaxTime | ❌ | ❌ |
|
|
77
|
+
| McSecurity | ❌ | ❌ |
|
|
78
|
+
| MinTime | ❌ | ❌ |
|
|
79
|
+
| NeutralPoint | ❌ | ❌ |
|
|
80
|
+
| P | ❌ | ❌ |
|
|
81
|
+
| PhysConn | ❌ | ❌ |
|
|
82
|
+
| PowerTransformer | ✅ | ✅ |
|
|
83
|
+
| Private | ❌ | ❌ |
|
|
84
|
+
| Process | ✅ | ✅ |
|
|
85
|
+
| ProtNs | ❌ | ❌ |
|
|
86
|
+
| Protocol | ❌ | ❌ |
|
|
87
|
+
| ReadWrite | ❌ | ❌ |
|
|
88
|
+
| RedProt | ❌ | ❌ |
|
|
89
|
+
| ReportControl | ❌ | ❌ |
|
|
90
|
+
| ReportSettings | ❌ | ❌ |
|
|
91
|
+
| RptEnabled | ❌ | ❌ |
|
|
92
|
+
| SamplesPerSec | ❌ | ❌ |
|
|
93
|
+
| SecPerSamples | ❌ | ❌ |
|
|
94
|
+
| SCL | ❌ | ❌ |
|
|
95
|
+
| SDI | ❌ | ❌ |
|
|
96
|
+
| SDO | ✅ | ✅ |
|
|
97
|
+
| Server | ❌ | ❌ |
|
|
98
|
+
| ServerAt | ❌ | ❌ |
|
|
99
|
+
| Services | ❌ | ❌ |
|
|
100
|
+
| SetDataSetValue | ❌ | ❌ |
|
|
101
|
+
| SettingControl | ❌ | ❌ |
|
|
102
|
+
| SettingGroups | ❌ | ❌ |
|
|
103
|
+
| SGEdit | ❌ | ❌ |
|
|
104
|
+
| SmpRate | ❌ | ❌ |
|
|
105
|
+
| SMV | ❌ | ✅ |
|
|
106
|
+
| SmvOpts | ❌ | ❌ |
|
|
107
|
+
| SMVsc | ❌ | ❌ |
|
|
108
|
+
| SMVSecurity | ❌ | ❌ |
|
|
109
|
+
| SMVSettings | ❌ | ❌ |
|
|
110
|
+
| SubEquipment | ✅ | ✅ |
|
|
111
|
+
| SubFunction | ✅ | ✅ |
|
|
112
|
+
| SubNetwork | ✅ | ✅ |
|
|
113
|
+
| Subject | ❌ | ❌ |
|
|
114
|
+
| Substation | ✅ | ✅ |
|
|
115
|
+
| SupSubscription | ❌ | ❌ |
|
|
116
|
+
| TapChanger | ✅ | ✅ |
|
|
117
|
+
| Text | ✅ | ✅ |
|
|
118
|
+
| TimerActivatedControl | ❌ | ❌ |
|
|
119
|
+
| TimeSyncProt | ❌ | ❌ |
|
|
120
|
+
| TransformerWinding | ✅ | ✅ |
|
|
121
|
+
| Val | ❌ | ❌ |
|
|
122
|
+
| ValueHandling | ❌ | ❌ |
|
|
123
|
+
| Voltage | ❌ | ❌ |
|
|
124
|
+
| VoltageLevel | ✅ | ✅ |
|
|
125
|
+
|