@bricks-toolkit/toolkit 0.1.17 → 0.1.18

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.
@@ -213,7 +213,8 @@ var Phone = react.forwardRef(
213
213
  });
214
214
  const isControlled = value !== void 0;
215
215
  const currentPhone = isControlled ? value : internalPhone;
216
- const activeCountry = COUNTRIES.find((c) => c.dialCode === currentPhone.countryCode) ?? COUNTRIES[0];
216
+ const effectiveCountryCode = currentPhone.countryCode || defaultCountryCode;
217
+ const activeCountry = COUNTRIES.find((c) => c.dialCode === effectiveCountryCode) ?? COUNTRIES[0];
217
218
  const mergedState = errorMessage || internalError ? "error" : stateProp;
218
219
  const currentMessage = errorMessage || internalError || successMessage || warningMessage || helperText;
219
220
  const triggerChange = (newValue) => {
@@ -309,7 +310,7 @@ var Phone = react.forwardRef(
309
310
  ),
310
311
  children: [
311
312
  showFlag && activeCountry && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "mr-1.5 text-base sm:text-lg opacity-90", children: activeCountry.flag }),
312
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium", children: activeCountry?.dialCode ?? defaultCountryCode }),
313
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium", children: activeCountry?.dialCode || defaultCountryCode }),
313
314
  /* @__PURE__ */ jsxRuntime.jsx(
314
315
  solid.ChevronDownIcon,
315
316
  {
@@ -211,7 +211,8 @@ var Phone = forwardRef(
211
211
  });
212
212
  const isControlled = value !== void 0;
213
213
  const currentPhone = isControlled ? value : internalPhone;
214
- const activeCountry = COUNTRIES.find((c) => c.dialCode === currentPhone.countryCode) ?? COUNTRIES[0];
214
+ const effectiveCountryCode = currentPhone.countryCode || defaultCountryCode;
215
+ const activeCountry = COUNTRIES.find((c) => c.dialCode === effectiveCountryCode) ?? COUNTRIES[0];
215
216
  const mergedState = errorMessage || internalError ? "error" : stateProp;
216
217
  const currentMessage = errorMessage || internalError || successMessage || warningMessage || helperText;
217
218
  const triggerChange = (newValue) => {
@@ -307,7 +308,7 @@ var Phone = forwardRef(
307
308
  ),
308
309
  children: [
309
310
  showFlag && activeCountry && /* @__PURE__ */ jsx("span", { className: "mr-1.5 text-base sm:text-lg opacity-90", children: activeCountry.flag }),
310
- /* @__PURE__ */ jsx("span", { className: "text-sm font-medium", children: activeCountry?.dialCode ?? defaultCountryCode }),
311
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-medium", children: activeCountry?.dialCode || defaultCountryCode }),
311
312
  /* @__PURE__ */ jsx(
312
313
  ChevronDownIcon,
313
314
  {
package/dist/index.cjs CHANGED
@@ -16,7 +16,7 @@ var chunkS7VEND5Z_cjs = require('./chunk-S7VEND5Z.cjs');
16
16
  var chunk56ILK7Y4_cjs = require('./chunk-56ILK7Y4.cjs');
17
17
  var chunkNRZIXK35_cjs = require('./chunk-NRZIXK35.cjs');
18
18
  var chunk5RKET2JO_cjs = require('./chunk-5RKET2JO.cjs');
19
- var chunk4GCC6FV4_cjs = require('./chunk-4GCC6FV4.cjs');
19
+ var chunkDOKSG7AW_cjs = require('./chunk-DOKSG7AW.cjs');
20
20
  var chunkVRZFAKSV_cjs = require('./chunk-VRZFAKSV.cjs');
21
21
  var chunk7R5JRJ2W_cjs = require('./chunk-7R5JRJ2W.cjs');
22
22
  var chunkOEU5VG3D_cjs = require('./chunk-OEU5VG3D.cjs');
@@ -697,7 +697,7 @@ Object.defineProperty(exports, "PasswordInput", {
697
697
  });
698
698
  Object.defineProperty(exports, "Phone", {
699
699
  enumerable: true,
700
- get: function () { return chunk4GCC6FV4_cjs.Phone; }
700
+ get: function () { return chunkDOKSG7AW_cjs.Phone; }
701
701
  });
702
702
  Object.defineProperty(exports, "RadioButton", {
703
703
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -14,7 +14,7 @@ export { Skeleton, SkeletonAvatar, SkeletonCard, SkeletonTable, SkeletonText } f
14
14
  export { MultiSelect } from './chunk-JKPNJ4PZ.mjs';
15
15
  export { OtpInput } from './chunk-RYWDZHKG.mjs';
16
16
  export { PasswordInput } from './chunk-446OJWC6.mjs';
17
- export { Phone } from './chunk-E6HGGSXQ.mjs';
17
+ export { Phone } from './chunk-ZCLNSMIW.mjs';
18
18
  export { RadioButton } from './chunk-DN2GFJF4.mjs';
19
19
  export { Select } from './chunk-TIVSMCXZ.mjs';
20
20
  export { Pagination, Table } from './chunk-7364SUK6.mjs';
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var chunk4GCC6FV4_cjs = require('../chunk-4GCC6FV4.cjs');
3
+ var chunkDOKSG7AW_cjs = require('../chunk-DOKSG7AW.cjs');
4
4
  require('../chunk-L5VQZZVR.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "Phone", {
9
9
  enumerable: true,
10
- get: function () { return chunk4GCC6FV4_cjs.Phone; }
10
+ get: function () { return chunkDOKSG7AW_cjs.Phone; }
11
11
  });
@@ -1,2 +1,2 @@
1
- export { Phone } from '../chunk-E6HGGSXQ.mjs';
1
+ export { Phone } from '../chunk-ZCLNSMIW.mjs';
2
2
  import '../chunk-OCPFOFJ4.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bricks-toolkit/toolkit",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Micro-modularized, fully independent, type-safe UI component library",
5
5
  "license": "MIT",
6
6
  "author": "ITProfound",