@nuralyui/label 0.0.1 → 0.0.2
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/index.d.ts +2 -0
- package/index.d.ts.map +1 -0
- package/index.js +2 -0
- package/index.js.map +1 -0
- package/label.component.js +2 -2
- package/label.component.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
ADDED
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/label/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
|
package/index.js
ADDED
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/label/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC","sourcesContent":["export * from './label.component.js';"]}
|
package/label.component.js
CHANGED
|
@@ -5,8 +5,8 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
7
|
import { html, LitElement } from "lit";
|
|
8
|
-
import { customElement, property } from "lit/decorators";
|
|
9
|
-
import styles from "./label.style";
|
|
8
|
+
import { customElement, property } from "lit/decorators.js";
|
|
9
|
+
import styles from "./label.style.js";
|
|
10
10
|
let HyTextLabel = class HyTextLabel extends LitElement {
|
|
11
11
|
constructor() {
|
|
12
12
|
super(...arguments);
|
package/label.component.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.component.js","sourceRoot":"","sources":["../../../src/components/label/label.component.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AACvC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"label.component.js","sourceRoot":"","sources":["../../../src/components/label/label.component.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AACvC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,MAAM,MAAM,kBAAkB,CAAC;AAGtC,IAAa,WAAW,GAAxB,MAAa,WAAY,SAAQ,UAAU;IAA3C;;QAII,UAAK,GAAC,EAAE,CAAA;IAaZ,CAAC;IATY,MAAM;QAEX,OAAO,IAAI,CAAA;;;;SAIV,CAAA;IAEL,CAAC;CACJ,CAAA;AAhBkB,kBAAM,GAAC,MAAM,CAAA;AAG5B;IADA,QAAQ,EAAE;0CACF;AAJC,WAAW;IADvB,aAAa,CAAC,UAAU,CAAC;GACb,WAAW,CAiBvB;SAjBY,WAAW","sourcesContent":["import { html, LitElement } from \"lit\";\nimport { customElement, property } from \"lit/decorators.js\";\nimport styles from \"./label.style.js\";\n\n@customElement('hy-label')\nexport class HyTextLabel extends LitElement{\n static override styles=styles\n\n @property()\n value=''\n\n\n\n override render(){\n\n return html` \n <label>\n <slot></slot>\n </label>\n `\n\n }\n}"]}
|