dummy-component-likitha 1.0.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.
File without changes
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=dummy-component-styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dummy-component-styles.js","sourceRoot":"","sources":["../src/dummy-component-styles.ts"],"names":[],"mappings":"","sourcesContent":[""]}
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class DummyComponent extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,15 @@
1
+ import { LitElement, html, css } from 'lit';
2
+ export class DummyComponent extends LitElement {
3
+ render() {
4
+ return html `<div>Hello Dummy Component 🚀</div>`;
5
+ }
6
+ }
7
+ DummyComponent.styles = css `
8
+ div {
9
+ padding: 20px;
10
+ background: #f4f4f4;
11
+ border-radius: 8px;
12
+ }
13
+ `;
14
+ customElements.define('dummy-component', DummyComponent);
15
+ //# sourceMappingURL=dummy-component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dummy-component.js","sourceRoot":"","sources":["../src/dummy-component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE5C,MAAM,OAAO,cAAe,SAAQ,UAAU;IAS5C,MAAM;QACJ,OAAO,IAAI,CAAA,qCAAqC,CAAC;IACnD,CAAC;;AAVM,qBAAM,GAAG,GAAG,CAAA;;;;;;GAMlB,CAAC;AAOJ,cAAc,CAAC,MAAM,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC","sourcesContent":["import { LitElement, html, css } from 'lit';\r\n\r\nexport class DummyComponent extends LitElement {\r\n static styles = css`\r\n div {\r\n padding: 20px;\r\n background: #f4f4f4;\r\n border-radius: 8px;\r\n }\r\n `;\r\n\r\n render() {\r\n return html`<div>Hello Dummy Component 🚀</div>`;\r\n }\r\n}\r\n\r\ncustomElements.define('dummy-component', DummyComponent);\r\n"]}
@@ -0,0 +1 @@
1
+ export { DummyComponent } from './dummy-component.js';
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export { DummyComponent } from './dummy-component.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC","sourcesContent":["export { DummyComponent } from './dummy-component.js';"]}
@@ -0,0 +1 @@
1
+ {"fileNames":[],"fileInfos":[],"root":[],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":199,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8},"errors":true,"version":"5.9.3"}
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "dummy-component-likitha",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": ["dist"],
9
+ "scripts": {
10
+ "build": "tsc"
11
+ },
12
+ "peerDependencies": {
13
+ "lit": "^3.0.0"
14
+ }
15
+ }