ninegrid2 6.595.0 → 6.597.0
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/dist/TestGrid.js +25 -0
- package/dist/bundle.cjs.js +35 -54555
- package/dist/bundle.esm.js +34 -54553
- package/dist/index copy.js +191 -0
- package/dist/index.js +5 -178
- package/dist/index2.js +18 -0
- package/dist/index3.js +191 -0
- package/package.json +1 -1
- package/rollup.config.js +2 -1
- package/src/TestGrid.js +25 -0
- package/src/index.js +5 -178
- package/src/index3.js +191 -0
package/dist/TestGrid.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export class TestGrid extends HTMLElement
|
|
2
|
+
{
|
|
3
|
+
constructor() {
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
connectedCallback() {
|
|
7
|
+
|
|
8
|
+
this.innerHTML = `
|
|
9
|
+
<span>111</span>
|
|
10
|
+
`;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
disconnectedCallback() {
|
|
14
|
+
//console.log("Custom element removed from page.");
|
|
15
|
+
//this.data.clear();
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
adoptedCallback() {
|
|
19
|
+
//console.log("Custom element moved to new page.");
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
//export { NineGridContainer };
|
|
24
|
+
|
|
25
|
+
customElements.define("test-grid", TestGrid);
|