@sikka/hawa 0.27.21-next → 0.27.23-next
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/alert/index.d.mts +0 -1
- package/dist/alert/index.d.ts +0 -1
- package/dist/alert/index.js +0 -1
- package/dist/alert/index.js.map +1 -1
- package/dist/alert/index.mjs +0 -1
- package/dist/alert/index.mjs.map +1 -1
- package/dist/avatar/index.d.mts +1 -0
- package/dist/avatar/index.d.ts +1 -0
- package/dist/avatar/index.js +2 -1
- package/dist/avatar/index.js.map +1 -1
- package/dist/avatar/index.mjs +2 -1
- package/dist/avatar/index.mjs.map +1 -1
- package/dist/blocks/auth/index.js +1 -2
- package/dist/blocks/auth/index.mjs +1 -2
- package/dist/blocks/index.js +1 -2
- package/dist/blocks/index.mjs +1 -1
- package/dist/{chunk-F56X3EW2.mjs → chunk-5UYZN5SQ.mjs} +1 -2
- package/dist/elements/index.d.mts +2 -1
- package/dist/elements/index.d.ts +2 -1
- package/dist/elements/index.js +3 -3
- package/dist/elements/index.mjs +3 -2
- package/dist/fileDropzone/index.js +0 -1
- package/dist/fileDropzone/index.js.map +1 -1
- package/dist/fileDropzone/index.mjs +0 -1
- package/dist/fileDropzone/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/dist/phoneInput/index.d.mts +1 -0
- package/dist/phoneInput/index.d.ts +1 -0
- package/dist/phoneInput/index.js +8 -8
- package/dist/phoneInput/index.js.map +1 -1
- package/dist/phoneInput/index.mjs +8 -8
- package/dist/phoneInput/index.mjs.map +1 -1
- package/package.json +6 -6
@@ -3,6 +3,13 @@
|
|
3
3
|
// elements/phoneInput/PhoneInput.tsx
|
4
4
|
import React5, { useState, useRef, useEffect } from "react";
|
5
5
|
|
6
|
+
// util/index.ts
|
7
|
+
import { clsx } from "clsx";
|
8
|
+
import { twMerge } from "tailwind-merge";
|
9
|
+
function cn(...inputs) {
|
10
|
+
return twMerge(clsx(inputs));
|
11
|
+
}
|
12
|
+
|
6
13
|
// countries.ts
|
7
14
|
var countries = [
|
8
15
|
{
|
@@ -1696,13 +1703,6 @@ var countries = [
|
|
1696
1703
|
];
|
1697
1704
|
var countries_default = countries;
|
1698
1705
|
|
1699
|
-
// util/index.ts
|
1700
|
-
import { clsx } from "clsx";
|
1701
|
-
import { twMerge } from "tailwind-merge";
|
1702
|
-
function cn(...inputs) {
|
1703
|
-
return twMerge(clsx(inputs));
|
1704
|
-
}
|
1705
|
-
|
1706
1706
|
// elements/label/Label.tsx
|
1707
1707
|
import * as React2 from "react";
|
1708
1708
|
|
@@ -2060,7 +2060,7 @@ var PhoneInput = ({ labelProps, ...props }) => {
|
|
2060
2060
|
onChange: handleInputChange,
|
2061
2061
|
value: phoneNumber,
|
2062
2062
|
type: "tel",
|
2063
|
-
placeholder:
|
2063
|
+
placeholder: props.placeholder
|
2064
2064
|
}
|
2065
2065
|
))), /* @__PURE__ */ React5.createElement(
|
2066
2066
|
"p",
|