react-simple-phone-input 1.0.5-beta → 1.0.6-beta
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/dist/cjs/index.js +4 -34
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/PhoneInput/PhoneInput.d.ts +3 -0
- package/dist/cjs/types/components/PhoneInput/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/esm/index.js +4 -34
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/PhoneInput/PhoneInput.d.ts +3 -0
- package/dist/esm/types/components/PhoneInput/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -1
- package/dist/index.d.ts +3 -7
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -2802,40 +2802,10 @@ function requireReact_development () {
|
|
|
2802
2802
|
|
|
2803
2803
|
var React = /*@__PURE__*/getDefaultExportFromCjs(react.exports);
|
|
2804
2804
|
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
if (!css || typeof document === 'undefined') { return; }
|
|
2810
|
-
|
|
2811
|
-
var head = document.head || document.getElementsByTagName('head')[0];
|
|
2812
|
-
var style = document.createElement('style');
|
|
2813
|
-
style.type = 'text/css';
|
|
2814
|
-
|
|
2815
|
-
if (insertAt === 'top') {
|
|
2816
|
-
if (head.firstChild) {
|
|
2817
|
-
head.insertBefore(style, head.firstChild);
|
|
2818
|
-
} else {
|
|
2819
|
-
head.appendChild(style);
|
|
2820
|
-
}
|
|
2821
|
-
} else {
|
|
2822
|
-
head.appendChild(style);
|
|
2823
|
-
}
|
|
2824
|
-
|
|
2825
|
-
if (style.styleSheet) {
|
|
2826
|
-
style.styleSheet.cssText = css;
|
|
2827
|
-
} else {
|
|
2828
|
-
style.appendChild(document.createTextNode(css));
|
|
2829
|
-
}
|
|
2830
|
-
}
|
|
2831
|
-
|
|
2832
|
-
var css_248z = ".siButton {\r\n font-size: 14px;\r\n background: red;\r\n border-radius: 4px;\r\n padding: 8px 15px;\r\n color: white;\r\n}";
|
|
2833
|
-
styleInject(css_248z);
|
|
2834
|
-
|
|
2835
|
-
const Button = ({ children, style, textStyle }) => {
|
|
2836
|
-
return (React.createElement("button", { className: "siButton", style: style },
|
|
2837
|
-
React.createElement("p", { style: textStyle }, children)));
|
|
2805
|
+
const PhoneInput = () => {
|
|
2806
|
+
return (React.createElement("div", null,
|
|
2807
|
+
React.createElement("img", { src: "https://lh3.googleusercontent.com/d/1otxg0vwa395hbgPco_CUExdgJPkIx-t4", width: 200, height: 200, alt: "helo" })));
|
|
2838
2808
|
};
|
|
2839
2809
|
|
|
2840
|
-
exports.
|
|
2810
|
+
exports.PhoneInput = PhoneInput;
|
|
2841
2811
|
//# sourceMappingURL=index.js.map
|