@plantandgo/web-components 2.1.4 → 2.1.6
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 +3 -3
- package/types/index.d.ts +1 -0
- package/types/web-components.d.ts +2 -1
- package/wc/web-components.es.js +6 -0
- package/wc/web-components.js +11 -11
- package/wc/web-components.umd.js +11 -11
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plantandgo/web-components",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./web-components.umd.js",
|
|
6
6
|
"module": "./web-components.es.js",
|
|
7
|
+
"types": "./types/index.d.ts",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"import": "./web-components.es.js",
|
|
10
11
|
"require": "./web-components.umd.js"
|
|
11
12
|
}
|
|
12
|
-
}
|
|
13
|
-
"types": "./types/index.d.ts"
|
|
13
|
+
}
|
|
14
14
|
}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare const CustomButtonWC: CustomElementConstructor;
|
|
2
|
+
export declare const CustomInputWC: CustomElementConstructor;
|
package/wc/web-components.es.js
CHANGED
|
@@ -43598,3 +43598,9 @@ const F_ = qb(O_, {
|
|
|
43598
43598
|
}
|
|
43599
43599
|
});
|
|
43600
43600
|
customElements.define("custom-input", F_);
|
|
43601
|
+
export {
|
|
43602
|
+
T_ as CustomButton,
|
|
43603
|
+
N_ as CustomButtonWC,
|
|
43604
|
+
D_ as CustomInput,
|
|
43605
|
+
F_ as CustomInputWC
|
|
43606
|
+
};
|