1- class InsertHTMLComponent extends HTMLElement {
1+ class InsertHTMLElement extends HTMLElement {
22 constructor ( htmlPath ) {
33 super ( ) ;
44 this . htmlPath = htmlPath ;
@@ -17,13 +17,13 @@ class InsertHTMLComponent extends HTMLElement {
1717 }
1818}
1919
20- class AboutComponent extends InsertHTMLComponent {
20+ class AboutElement extends InsertHTMLElement {
2121 constructor ( ) {
2222 super ( "components/about.html" ) ;
2323 }
2424}
2525
26- class InChIToolsComponent extends InsertHTMLComponent {
26+ class InChIToolsElement extends InsertHTMLElement {
2727 constructor ( ) {
2828 super ( "components/inchi-tools.html" ) ;
2929 }
@@ -36,7 +36,7 @@ class InChIToolsComponent extends InsertHTMLComponent {
3636 }
3737}
3838
39- class RInChIToolsComponent extends InsertHTMLComponent {
39+ class RInChIToolsElement extends InsertHTMLElement {
4040 constructor ( ) {
4141 super ( "components/rinchi-tools.html" ) ;
4242 }
@@ -49,7 +49,7 @@ class RInChIToolsComponent extends InsertHTMLComponent {
4949 }
5050}
5151
52- class InChIVersionSelection extends HTMLElement {
52+ class InChIVersionSelectionElement extends HTMLElement {
5353 constructor ( ) {
5454 super ( ) ;
5555 this . onVersionChange = new Function ( this . getAttribute ( "onVersionChange" ) ) ;
@@ -90,7 +90,7 @@ class InChIVersionSelection extends HTMLElement {
9090 }
9191}
9292
93- class InChIOptionsComponent extends HTMLElement {
93+ class InChIOptionsElement extends HTMLElement {
9494 constructor ( ) {
9595 super ( ) ;
9696 }
@@ -203,7 +203,7 @@ class InChIOptionsComponent extends HTMLElement {
203203 ) ;
204204 }
205205}
206- class InChIOptions106Component extends InChIOptionsComponent {
206+ class InChIOptions106Element extends InChIOptionsElement {
207207 constructor ( ) {
208208 super ( ) ;
209209 this . componentPaths = [
@@ -212,7 +212,7 @@ class InChIOptions106Component extends InChIOptionsComponent {
212212 ] ;
213213 }
214214}
215- class InChIOptions107Component extends InChIOptionsComponent {
215+ class InChIOptions107Element extends InChIOptionsElement {
216216 constructor ( ) {
217217 super ( ) ;
218218 this . componentPaths = [
@@ -221,7 +221,7 @@ class InChIOptions107Component extends InChIOptionsComponent {
221221 ] ;
222222 }
223223}
224- class InChIOptions107MoInComponent extends InChIOptionsComponent {
224+ class InChIOptions107MoInElement extends InChIOptionsElement {
225225 constructor ( ) {
226226 super ( ) ;
227227 this . componentPaths = [
@@ -232,10 +232,10 @@ class InChIOptions107MoInComponent extends InChIOptionsComponent {
232232 }
233233}
234234
235- customElements . define ( "inchi-about-component " , AboutComponent ) ;
236- customElements . define ( "inchi-inchi-tools-component " , InChIToolsComponent ) ;
237- customElements . define ( "inchi-rinchi-tools-component " , RInChIToolsComponent ) ;
238- customElements . define ( "inchi-inchi- version-selection" , InChIVersionSelection ) ;
239- customElements . define ( "inchi-options-106" , InChIOptions106Component ) ;
240- customElements . define ( "inchi-options-107" , InChIOptions107Component ) ;
241- customElements . define ( "inchi-options-107-moin" , InChIOptions107MoInComponent ) ;
235+ customElements . define ( "inchi-about" , AboutElement ) ;
236+ customElements . define ( "inchi-inchi-tools" , InChIToolsElement ) ;
237+ customElements . define ( "inchi-rinchi-tools" , RInChIToolsElement ) ;
238+ customElements . define ( "inchi-version-selection" , InChIVersionSelectionElement ) ;
239+ customElements . define ( "inchi-options-106" , InChIOptions106Element ) ;
240+ customElements . define ( "inchi-options-107" , InChIOptions107Element ) ;
241+ customElements . define ( "inchi-options-107-moin" , InChIOptions107MoInElement ) ;
0 commit comments