@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 ADDED
@@ -0,0 +1,2 @@
1
+ export * from './label.component.js';
2
+ //# sourceMappingURL=index.d.ts.map
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
@@ -0,0 +1,2 @@
1
+ export * from './label.component.js';
2
+ //# sourceMappingURL=index.js.map
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';"]}
@@ -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);
@@ -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,gBAAgB,CAAC;AACzD,OAAO,MAAM,MAAM,eAAe,CAAC;AAGnC,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\";\nimport styles from \"./label.style\";\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}"]}
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}"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuralyui/label",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",