@bricks-toolkit/toolkit 0.1.16 → 0.1.17

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.
@@ -202,9 +202,15 @@ var Phone = react.forwardRef(
202
202
  const [isOpen, setIsOpen] = react.useState(false);
203
203
  const [searchTerm, setSearchTerm] = react.useState("");
204
204
  const dropdownRef = react.useRef(null);
205
- const [internalPhone, setInternalPhone] = react.useState(
206
- defaultValue ?? { countryCode: defaultCountryCode, phoneNumber: "" }
207
- );
205
+ const [internalPhone, setInternalPhone] = react.useState(() => {
206
+ if (defaultValue) {
207
+ return {
208
+ countryCode: defaultValue.countryCode || defaultCountryCode,
209
+ phoneNumber: defaultValue.phoneNumber || ""
210
+ };
211
+ }
212
+ return { countryCode: defaultCountryCode, phoneNumber: "" };
213
+ });
208
214
  const isControlled = value !== void 0;
209
215
  const currentPhone = isControlled ? value : internalPhone;
210
216
  const activeCountry = COUNTRIES.find((c) => c.dialCode === currentPhone.countryCode) ?? COUNTRIES[0];
@@ -200,9 +200,15 @@ var Phone = forwardRef(
200
200
  const [isOpen, setIsOpen] = useState(false);
201
201
  const [searchTerm, setSearchTerm] = useState("");
202
202
  const dropdownRef = useRef(null);
203
- const [internalPhone, setInternalPhone] = useState(
204
- defaultValue ?? { countryCode: defaultCountryCode, phoneNumber: "" }
205
- );
203
+ const [internalPhone, setInternalPhone] = useState(() => {
204
+ if (defaultValue) {
205
+ return {
206
+ countryCode: defaultValue.countryCode || defaultCountryCode,
207
+ phoneNumber: defaultValue.phoneNumber || ""
208
+ };
209
+ }
210
+ return { countryCode: defaultCountryCode, phoneNumber: "" };
211
+ });
206
212
  const isControlled = value !== void 0;
207
213
  const currentPhone = isControlled ? value : internalPhone;
208
214
  const activeCountry = COUNTRIES.find((c) => c.dialCode === currentPhone.countryCode) ?? COUNTRIES[0];
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 chunkTBI5ZOJJ_cjs = require('./chunk-TBI5ZOJJ.cjs');
19
+ var chunk4GCC6FV4_cjs = require('./chunk-4GCC6FV4.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 chunkTBI5ZOJJ_cjs.Phone; }
700
+ get: function () { return chunk4GCC6FV4_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-AGAOODRL.mjs';
17
+ export { Phone } from './chunk-E6HGGSXQ.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 chunkTBI5ZOJJ_cjs = require('../chunk-TBI5ZOJJ.cjs');
3
+ var chunk4GCC6FV4_cjs = require('../chunk-4GCC6FV4.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 chunkTBI5ZOJJ_cjs.Phone; }
10
+ get: function () { return chunk4GCC6FV4_cjs.Phone; }
11
11
  });
@@ -1,2 +1,2 @@
1
- export { Phone } from '../chunk-AGAOODRL.mjs';
1
+ export { Phone } from '../chunk-E6HGGSXQ.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.16",
3
+ "version": "0.1.17",
4
4
  "description": "Micro-modularized, fully independent, type-safe UI component library",
5
5
  "license": "MIT",
6
6
  "author": "ITProfound",