File tree 4 files changed +23
-2
lines changed
4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @karesztrk/webcomponent-base" ,
3
- "version" : " 1.0.8 " ,
3
+ "version" : " 1.0.10 " ,
4
4
"exports" : {
5
5
"." : " ./src/index.js"
6
6
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @karesztrk/webcomponent-base" ,
3
3
"repository" : " https://github.com/karesztrk/webcomponent-base" ,
4
- "version" : " 1.0.9 " ,
4
+ "version" : " 1.0.10 " ,
5
5
"description" : " " ,
6
6
"type" : " module" ,
7
7
"types" : " ./types/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -73,6 +73,22 @@ class LightElement extends HTMLElement {
73
73
const names = Object . getOwnPropertyNames ( o ) ;
74
74
return names . includes ( /** @type {string } */ ( name ) ) ;
75
75
}
76
+
77
+ /**
78
+ * Given a selector, if the target element exists, it will be replace its children with the template instance.
79
+ * If the target element doesn't exist, the template will be appended as a new child.
80
+ * @param {string } selector
81
+ * @param {HTMLElement } template
82
+ * @returns {void }
83
+ */
84
+ addTemplate ( selector , template ) {
85
+ const target = this . querySelector ( selector ) ;
86
+ if ( target ) {
87
+ target . replaceChildren ( ...template . children ) ;
88
+ } else {
89
+ this . appendChild ( template ) ;
90
+ }
91
+ }
76
92
}
77
93
78
94
export default LightElement ;
Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ declare module '@karesztrk/webcomponent-base' {
21
21
getTemplate ( id : string ) : Node | undefined ;
22
22
23
23
isOwnProperty ( name : unknown ) : boolean ;
24
+ /**
25
+ * Given a selector, if the target element exists, it will be replace its children with the template instance.
26
+ * If the target element doesn't exist, the template will be appended as a new child.
27
+ * */
28
+ addTemplate ( selector : string , template : HTMLElement ) : void ;
24
29
}
25
30
export default ShadowElement ;
26
31
/**
You can’t perform that action at this time.
0 commit comments