@plantandgo/web-components 2.1.6 → 2.1.8
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 +1 -1
- package/types/index.d.ts +5 -1
- package/wc/web-components.es.js +3 -0
- package/wc/web-components.js +7 -7
- package/wc/web-components.umd.js +7 -7
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './web-components';
|
|
2
|
+
export * from './components/CustomButton/CustomButton';
|
|
3
|
+
export * from './components/CustomInput/CustomInput';
|
|
4
|
+
export declare const CUSTOM_BUTTON_TAG = "custom-button";
|
|
5
|
+
export declare const CUSTOM_INPUT_TAG = "custom-input";
|
package/wc/web-components.es.js
CHANGED
|
@@ -43598,7 +43598,10 @@ const F_ = qb(O_, {
|
|
|
43598
43598
|
}
|
|
43599
43599
|
});
|
|
43600
43600
|
customElements.define("custom-input", F_);
|
|
43601
|
+
const q_ = "custom-button", H_ = "custom-input";
|
|
43601
43602
|
export {
|
|
43603
|
+
q_ as CUSTOM_BUTTON_TAG,
|
|
43604
|
+
H_ as CUSTOM_INPUT_TAG,
|
|
43602
43605
|
T_ as CustomButton,
|
|
43603
43606
|
N_ as CustomButtonWC,
|
|
43604
43607
|
D_ as CustomInput,
|