@segmentify/ui 0.0.55 → 0.0.56

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.
@@ -42087,7 +42087,7 @@ const D2e = ({ disabled: e, value: t, options: n, onChange: r }) => {
42087
42087
  /* @__PURE__ */ b(VK, { value: o, onValueChange: a, placeholder: "Search country..." }),
42088
42088
  /* @__PURE__ */ b(GK, { children: /* @__PURE__ */ ie(F2e, { ref: i, className: "ui:h-72", children: [
42089
42089
  /* @__PURE__ */ b(jK, { children: "No country found." }),
42090
- /* @__PURE__ */ b(WK, { children: n.map(
42090
+ /* @__PURE__ */ b(WK, { children: n.filter((c) => o ? c.label.toLowerCase().includes(o.toLowerCase()) : !0).map(
42091
42091
  ({ value: c, label: d }) => c ? /* @__PURE__ */ b(
42092
42092
  z2e,
42093
42093
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@segmentify/ui",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
4
4
  "description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -109,7 +109,7 @@
109
109
  "prettier": "3.7.4",
110
110
  "react": "^19.2.0",
111
111
  "react-dom": "^19.2.0",
112
- "react-hook-form": "7.69.0",
112
+ "react-hook-form": "7.71.2",
113
113
  "recharts": "2.15.4",
114
114
  "sonner": "^2.0.7",
115
115
  "storybook": "^10.1.10",
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- import * as RPNInput from 'react-phone-number-input';
3
- type PhoneInputProps = Omit<React.ComponentProps<'input'>, 'onChange' | 'value' | 'ref'> & Omit<RPNInput.Props<typeof RPNInput.default>, 'onChange'> & {
4
- onChange?: (value: RPNInput.Value) => void;
5
- };
6
- declare const PhoneInput: React.ForwardRefExoticComponent<PhoneInputProps>;
7
- export { PhoneInput };
@@ -1 +0,0 @@
1
- export declare const usePopupLayerZIndex: () => number | undefined;