| ... | ... |
@@ -6,6 +6,9 @@ import './components/card/luumicore-card.js'; |
| 6 | 6 |
import './components/list/luumicore-list.js'; |
| 7 | 7 |
import './components/list/luumicore-list-item.js'; |
| 8 | 8 |
|
| 9 |
+// Winzer Portal Components |
|
| 10 |
+import './components/winzer-app.js'; |
|
| 11 |
+ |
|
| 9 | 12 |
console.log('luumiCORE Core Bundle initialized');
|
| 10 | 13 |
|
| 11 | 14 |
// Example component (kept for reference, can be removed if not needed) |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,27 @@ |
| 1 |
+import { LitElement, html, css } from 'lit';
|
|
| 2 |
+import '../css/main.css'; |
|
| 3 |
+ |
|
| 4 |
+// Import components |
|
| 5 |
+import './components/card/luumicore-card.js'; |
|
| 6 |
+import './components/list/luumicore-list.js'; |
|
| 7 |
+import './components/list/luumicore-list-item.js'; |
|
| 8 |
+ |
|
| 9 |
+console.log('luumiCORE Core Bundle initialized');
|
|
| 10 |
+ |
|
| 11 |
+// Example component (kept for reference, can be removed if not needed) |
|
| 12 |
+export class LuumicoreElement extends LitElement {
|
|
| 13 |
+ static styles = css` |
|
| 14 |
+ :host {
|
|
| 15 |
+ display: block; |
|
| 16 |
+ padding: 16px; |
|
| 17 |
+ color: var(--luumicore-text-color, black); |
|
| 18 |
+ border: 1px solid var(--luumicore-primary, blue); |
|
| 19 |
+ } |
|
| 20 |
+ `; |
|
| 21 |
+ |
|
| 22 |
+ render() {
|
|
| 23 |
+ return html`<p>Hello from luumiCORE!</p>`; |
|
| 24 |
+ } |
|
| 25 |
+} |
|
| 26 |
+ |
|
| 27 |
+customElements.define('luumicore-element', LuumicoreElement);
|