@nuralyui/checkbox 0.0.2 → 0.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuralyui/checkbox",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/react.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { HyCheckBox } from './checkbox.component.js';
2
+ export declare const HyCheckbox: import("@lit-labs/react").ReactWebComponent<HyCheckBox, {
3
+ change: string;
4
+ }>;
5
+ //# sourceMappingURL=react.d.ts.map
package/react.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../../../src/components/checkbox/react.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAErD,eAAO,MAAM,UAAU;;EAOrB,CAAC"}
package/react.js ADDED
@@ -0,0 +1,12 @@
1
+ import { createComponent } from '@lit-labs/react';
2
+ import * as React from 'react';
3
+ import { HyCheckBox } from './checkbox.component.js';
4
+ export const HyCheckbox = createComponent({
5
+ tagName: 'hy-checkbox',
6
+ elementClass: HyCheckBox,
7
+ react: React,
8
+ events: {
9
+ change: 'change',
10
+ },
11
+ });
12
+ //# sourceMappingURL=react.js.map
package/react.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.js","sourceRoot":"","sources":["../../../src/components/checkbox/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAErD,MAAM,CAAC,MAAM,UAAU,GAAG,eAAe,CAAC;IACxC,OAAO,EAAE,aAAa;IACtB,YAAY,EAAE,UAAU;IACxB,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE;QACN,MAAM,EAAE,QAAQ;KACjB;CACF,CAAC,CAAC","sourcesContent":["import { createComponent } from '@lit-labs/react';\nimport * as React from 'react';\nimport { HyCheckBox } from './checkbox.component.js';\n\nexport const HyCheckbox = createComponent({\n tagName: 'hy-checkbox',\n elementClass: HyCheckBox,\n react: React,\n events: {\n change: 'change',\n },\n});\n"]}