@chekinapp/ui 0.0.136 → 0.0.137

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/index.cjs CHANGED
@@ -15109,6 +15109,7 @@ var React59 = __toESM(require("react"), 1);
15109
15109
  var import_react_i18next36 = require("react-i18next");
15110
15110
 
15111
15111
  // src/dashboard/select-checkboxes/SelectCheckboxOption.tsx
15112
+ var import_lucide_react48 = require("lucide-react");
15112
15113
  var import_jsx_runtime165 = require("react/jsx-runtime");
15113
15114
  function SelectCheckboxOption(props) {
15114
15115
  const {
@@ -15122,7 +15123,7 @@ function SelectCheckboxOption(props) {
15122
15123
  onHover,
15123
15124
  innerRef
15124
15125
  } = props;
15125
- return /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
15126
+ return /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)(
15126
15127
  "button",
15127
15128
  {
15128
15129
  id,
@@ -15142,17 +15143,32 @@ function SelectCheckboxOption(props) {
15142
15143
  isSelected && "bg-[var(--chekin-color-surface-autocomplete)] font-semibold text-[var(--chekin-color-brand-blue)]",
15143
15144
  isDisabled && "cursor-not-allowed text-[var(--chekin-color-gray-2)]"
15144
15145
  ),
15145
- children: /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
15146
- /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "block break-words", children: option.label }),
15147
- option.description && /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "shrink-0 text-[12px] font-medium italic text-[var(--chekin-color-gray-1)]", children: option.description })
15148
- ] })
15146
+ children: [
15147
+ /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
15148
+ "span",
15149
+ {
15150
+ "aria-hidden": "true",
15151
+ "data-state": isSelected ? "checked" : "unchecked",
15152
+ className: cn(
15153
+ "checkbox__control pointer-events-none flex h-4 w-4 shrink-0 items-center justify-center rounded-sm border border-solid",
15154
+ isSelected ? "border-[var(--checkbox-checked-border)] bg-[var(--checkbox-checked-bg)] text-[var(--checkbox-check-color)]" : "border-[var(--checkbox-border)] bg-[var(--checkbox-bg)]",
15155
+ isDisabled && "opacity-50"
15156
+ ),
15157
+ children: isSelected && /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(import_lucide_react48.Check, { className: "checkbox__icon h-3 w-3" })
15158
+ }
15159
+ ),
15160
+ /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
15161
+ /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "block break-words", children: option.label }),
15162
+ option.description && /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "shrink-0 text-[12px] font-medium italic text-[var(--chekin-color-gray-1)]", children: option.description })
15163
+ ] })
15164
+ ]
15149
15165
  }
15150
15166
  );
15151
15167
  }
15152
15168
 
15153
15169
  // src/dashboard/select-checkboxes/CountTrigger.tsx
15154
15170
  var React58 = __toESM(require("react"), 1);
15155
- var import_lucide_react48 = require("lucide-react");
15171
+ var import_lucide_react49 = require("lucide-react");
15156
15172
  var import_react_i18next35 = require("react-i18next");
15157
15173
  var import_jsx_runtime166 = require("react/jsx-runtime");
15158
15174
  function createCountTrigger(opts) {
@@ -15219,7 +15235,7 @@ function createCountTrigger(opts) {
15219
15235
  leftIcon && /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { className: "pointer-events-none absolute left-0 top-0 flex h-full max-w-10 items-center justify-center text-[var(--chekin-color-gray-2)]", children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { className: "flex h-full w-10 items-center justify-center", children: leftIcon }) }),
15220
15236
  /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { id: valueId, className: "block min-w-0 flex-1 truncate text-left", children: display }),
15221
15237
  /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { className: "pointer-events-none flex items-center gap-2 text-[var(--chekin-color-gray-2)]", children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
15222
- import_lucide_react48.ChevronDown,
15238
+ import_lucide_react49.ChevronDown,
15223
15239
  {
15224
15240
  size: 16,
15225
15241
  className: cn(
@@ -15236,9 +15252,10 @@ function createCountTrigger(opts) {
15236
15252
  }
15237
15253
 
15238
15254
  // src/dashboard/select-checkboxes/SelectAllRow.tsx
15255
+ var import_lucide_react50 = require("lucide-react");
15239
15256
  var import_jsx_runtime167 = require("react/jsx-runtime");
15240
15257
  function SelectAllRow({ label, checked, disabled, onToggle }) {
15241
- return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
15258
+ return /* @__PURE__ */ (0, import_jsx_runtime167.jsxs)(
15242
15259
  "button",
15243
15260
  {
15244
15261
  type: "button",
@@ -15248,7 +15265,22 @@ function SelectAllRow({ label, checked, disabled, onToggle }) {
15248
15265
  "flex w-full items-center gap-3 border-0 border-b border-[#f2f4f8] bg-white px-4 py-[14px] text-left text-[16px] font-bold leading-5 text-[var(--chekin-color-brand-navy)] outline-none transition-colors hover:bg-[var(--chekin-color-surface-pressed)]",
15249
15266
  disabled && "cursor-default opacity-40"
15250
15267
  ),
15251
- children: /* @__PURE__ */ (0, import_jsx_runtime167.jsx)("span", { className: "flex-1", children: label })
15268
+ children: [
15269
+ /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
15270
+ "span",
15271
+ {
15272
+ "aria-hidden": "true",
15273
+ "data-state": checked ? "checked" : "unchecked",
15274
+ className: cn(
15275
+ "checkbox__control pointer-events-none flex h-4 w-4 shrink-0 items-center justify-center rounded-sm border border-solid",
15276
+ checked ? "border-[var(--checkbox-checked-border)] bg-[var(--checkbox-checked-bg)] text-[var(--checkbox-check-color)]" : "border-[var(--checkbox-border)] bg-[var(--checkbox-bg)]",
15277
+ disabled && "opacity-50"
15278
+ ),
15279
+ children: checked && /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(import_lucide_react50.Check, { className: "checkbox__icon h-3 w-3" })
15280
+ }
15281
+ ),
15282
+ /* @__PURE__ */ (0, import_jsx_runtime167.jsx)("span", { className: "flex-1", children: label })
15283
+ ]
15252
15284
  }
15253
15285
  );
15254
15286
  }
@@ -15661,7 +15693,7 @@ var Textarea = React61.forwardRef(function Textarea2({
15661
15693
 
15662
15694
  // src/dashboard/datepicker/Datepicker.tsx
15663
15695
  var React63 = __toESM(require("react"), 1);
15664
- var import_lucide_react49 = require("lucide-react");
15696
+ var import_lucide_react51 = require("lucide-react");
15665
15697
  var import_react_i18next38 = require("react-i18next");
15666
15698
 
15667
15699
  // src/airbnb-fields/datepicker/useDatePickerWheel.ts
@@ -16695,7 +16727,7 @@ var Datepicker = React63.forwardRef(
16695
16727
  children: [
16696
16728
  /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("span", { className: "block min-w-0 flex-1 truncate text-left", children: triggerText ?? (isWheelOpen ? mobilePlaceholder : null) }),
16697
16729
  /* @__PURE__ */ (0, import_jsx_runtime172.jsx)("span", { className: "pointer-events-none flex items-center gap-2 text-[var(--chekin-color-gray-2)]", children: /* @__PURE__ */ (0, import_jsx_runtime172.jsx)(
16698
- import_lucide_react49.ChevronDown,
16730
+ import_lucide_react51.ChevronDown,
16699
16731
  {
16700
16732
  size: 16,
16701
16733
  className: cn(
@@ -16790,7 +16822,7 @@ var Datepicker = React63.forwardRef(
16790
16822
  }
16791
16823
  ),
16792
16824
  /* @__PURE__ */ (0, import_jsx_runtime172.jsx)(
16793
- import_lucide_react49.ChevronDown,
16825
+ import_lucide_react51.ChevronDown,
16794
16826
  {
16795
16827
  size: 14,
16796
16828
  onMouseDown: (event) => {
@@ -17235,7 +17267,7 @@ function resolveRangeSelection({
17235
17267
  }
17236
17268
 
17237
17269
  // src/dashboard/date-range-picker/components/DateRangeInputs.tsx
17238
- var import_lucide_react50 = require("lucide-react");
17270
+ var import_lucide_react52 = require("lucide-react");
17239
17271
  var import_jsx_runtime173 = require("react/jsx-runtime");
17240
17272
  var DEFAULT_PLACEHOLDER = "00-00-0000";
17241
17273
  var inputBaseClass = "m-0 box-border h-full w-full min-w-0 border-0 bg-transparent text-[16px] font-medium leading-5 text-[var(--chekin-color-brand-navy)] outline-none placeholder:text-[var(--chekin-color-gray-1)]";
@@ -17357,7 +17389,7 @@ function DateRangeInputs({
17357
17389
  onClick: onReset,
17358
17390
  className: iconButtonClass,
17359
17391
  "aria-label": clearLabel,
17360
- children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(import_lucide_react50.SquareX, { size: 16, fill: "#9696b9", color: "#f8f8f8", strokeWidth: 1.8 })
17392
+ children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(import_lucide_react52.SquareX, { size: 16, fill: "#9696b9", color: "#f8f8f8", strokeWidth: 1.8 })
17361
17393
  }
17362
17394
  ),
17363
17395
  !readOnly && !hideCalendarIcon && /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(
@@ -17372,7 +17404,7 @@ function DateRangeInputs({
17372
17404
  focusedInput !== null || isOpen ? "text-[var(--chekin-color-brand-blue)]" : "text-[var(--chekin-color-gray-2)]"
17373
17405
  ),
17374
17406
  "aria-label": openCalendarLabel,
17375
- children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(import_lucide_react50.CalendarDays, { size: 18 })
17407
+ children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(import_lucide_react52.CalendarDays, { size: 18 })
17376
17408
  }
17377
17409
  )
17378
17410
  ] })
@@ -17943,7 +17975,7 @@ var TimePicker = React69.forwardRef(function TimePicker2({ format: formatName =
17943
17975
 
17944
17976
  // src/dashboard/file-input/FileInput.tsx
17945
17977
  var React70 = __toESM(require("react"), 1);
17946
- var import_lucide_react51 = require("lucide-react");
17978
+ var import_lucide_react53 = require("lucide-react");
17947
17979
  var import_react_i18next41 = require("react-i18next");
17948
17980
  var import_jsx_runtime178 = require("react/jsx-runtime");
17949
17981
  function defaultDownload(url) {
@@ -18057,7 +18089,7 @@ var FileInput = React70.forwardRef(function FileInput2({
18057
18089
  className: "inline-flex items-center gap-[7px] truncate border-0 bg-transparent p-0 text-[14px] font-medium text-[var(--chekin-color-brand-navy)] outline-none",
18058
18090
  children: [
18059
18091
  /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("span", { className: "truncate", children: resolvedDownloadLabel }),
18060
- /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react51.Download, { size: 15 })
18092
+ /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react53.Download, { size: 15 })
18061
18093
  ]
18062
18094
  }
18063
18095
  ) : /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("span", { className: "truncate text-[14px] font-medium text-[var(--chekin-color-brand-navy)]", children: value.name }),
@@ -18069,13 +18101,13 @@ var FileInput = React70.forwardRef(function FileInput2({
18069
18101
  onClick: handleClear,
18070
18102
  className: "ml-2 flex h-[15px] w-[15px] items-center justify-center rounded-[3px] border-0 bg-transparent p-0 text-[#9696b9] outline-none hover:shadow-[0_3px_3px_#0f477734]",
18071
18103
  "aria-label": t("remove_file"),
18072
- children: /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react51.SquareX, { size: 15, fill: "#9696b9", color: "#f8f8f8", strokeWidth: 1.8 })
18104
+ children: /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react53.SquareX, { size: 15, fill: "#9696b9", color: "#f8f8f8", strokeWidth: 1.8 })
18073
18105
  }
18074
18106
  )
18075
18107
  ]
18076
18108
  }
18077
18109
  ) : /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("span", { className: "block min-w-0 flex-1 truncate text-left text-[var(--chekin-color-gray-1)]", children: placeholder ?? "" }),
18078
- /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("span", { className: "ml-auto flex items-center gap-2 text-[var(--chekin-color-gray-2)]", children: /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react51.Paperclip, { size: 20 }) })
18110
+ /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("span", { className: "ml-auto flex items-center gap-2 text-[var(--chekin-color-gray-2)]", children: /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(import_lucide_react53.Paperclip, { size: 20 }) })
18079
18111
  ]
18080
18112
  }
18081
18113
  ),
@@ -18330,11 +18362,11 @@ LegacyTextarea.displayName = "LegacyTextarea";
18330
18362
 
18331
18363
  // src/airbnb-fields/datepicker/DatePicker.tsx
18332
18364
  var React73 = __toESM(require("react"), 1);
18333
- var import_lucide_react53 = require("lucide-react");
18365
+ var import_lucide_react55 = require("lucide-react");
18334
18366
 
18335
18367
  // src/airbnb-fields/field-trigger/FieldTrigger.tsx
18336
18368
  var React72 = __toESM(require("react"), 1);
18337
- var import_lucide_react52 = require("lucide-react");
18369
+ var import_lucide_react54 = require("lucide-react");
18338
18370
  var import_react_i18next42 = require("react-i18next");
18339
18371
  var import_jsx_runtime182 = require("react/jsx-runtime");
18340
18372
  var AirbnbFieldTrigger = React72.forwardRef(
@@ -18398,7 +18430,7 @@ var AirbnbFieldTrigger = React72.forwardRef(
18398
18430
  const resolvedTrailingAdornment = loading || trailingAdornment ? /* @__PURE__ */ (0, import_jsx_runtime182.jsxs)("span", { className: "flex items-center gap-2", children: [
18399
18431
  trailingAdornment,
18400
18432
  loading && /* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
18401
- import_lucide_react52.Loader2,
18433
+ import_lucide_react54.Loader2,
18402
18434
  {
18403
18435
  "aria-hidden": "true",
18404
18436
  className: "h-5 w-5 animate-spin text-[var(--chekin-color-gray-1)]"
@@ -18654,7 +18686,7 @@ var AirbnbDatePicker = React73.forwardRef(
18654
18686
  onClick: handleTriggerClick,
18655
18687
  onKeyDown: handleTriggerKeyDown,
18656
18688
  onBlur,
18657
- trailingAdornment: /* @__PURE__ */ (0, import_jsx_runtime183.jsx)(import_lucide_react53.Calendar, { className: "h-5 w-5 text-[#1F1F1B]", strokeWidth: 2 })
18689
+ trailingAdornment: /* @__PURE__ */ (0, import_jsx_runtime183.jsx)(import_lucide_react55.Calendar, { className: "h-5 w-5 text-[#1F1F1B]", strokeWidth: 2 })
18658
18690
  }
18659
18691
  ),
18660
18692
  /* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
@@ -18692,7 +18724,7 @@ AirbnbDatePicker.displayName = "AirbnbDatePicker";
18692
18724
 
18693
18725
  // src/airbnb-fields/input/Input.tsx
18694
18726
  var React74 = __toESM(require("react"), 1);
18695
- var import_lucide_react54 = require("lucide-react");
18727
+ var import_lucide_react56 = require("lucide-react");
18696
18728
  var import_react_i18next43 = require("react-i18next");
18697
18729
  var import_jsx_runtime184 = require("react/jsx-runtime");
18698
18730
  var getInputValue = (value) => value != null ? String(value) : "";
@@ -18857,7 +18889,7 @@ var AirbnbInput = React74.forwardRef(
18857
18889
  className: "absolute bottom-0 right-0 flex h-6 w-6 items-center justify-center border-0 bg-transparent p-0 text-[#7A8399] hover:text-[#1F1F1B] hover:opacity-85 disabled:cursor-not-allowed disabled:opacity-50",
18858
18890
  "aria-label": isPasswordRevealed ? t("hide_password") : t("show_password"),
18859
18891
  children: /* @__PURE__ */ (0, import_jsx_runtime184.jsx)(
18860
- import_lucide_react54.Eye,
18892
+ import_lucide_react56.Eye,
18861
18893
  {
18862
18894
  size: 18,
18863
18895
  "aria-hidden": "true",
@@ -18875,7 +18907,7 @@ AirbnbInput.displayName = "AirbnbInput";
18875
18907
 
18876
18908
  // src/airbnb-fields/phone-field/PhoneField.tsx
18877
18909
  var React80 = __toESM(require("react"), 1);
18878
- var import_lucide_react56 = require("lucide-react");
18910
+ var import_lucide_react58 = require("lucide-react");
18879
18911
 
18880
18912
  // src/airbnb-fields/select/Select.tsx
18881
18913
  var React79 = __toESM(require("react"), 1);
@@ -19224,7 +19256,7 @@ function AirbnbSelectMobileContent({
19224
19256
 
19225
19257
  // src/airbnb-fields/select/SelectTrigger.tsx
19226
19258
  var React75 = __toESM(require("react"), 1);
19227
- var import_lucide_react55 = require("lucide-react");
19259
+ var import_lucide_react57 = require("lucide-react");
19228
19260
  var import_jsx_runtime189 = require("react/jsx-runtime");
19229
19261
  var AirbnbSelectTrigger = React75.forwardRef(
19230
19262
  ({
@@ -19279,7 +19311,7 @@ var AirbnbSelectTrigger = React75.forwardRef(
19279
19311
  onKeyDown,
19280
19312
  onBlur,
19281
19313
  trailingAdornment: /* @__PURE__ */ (0, import_jsx_runtime189.jsx)(
19282
- import_lucide_react55.ChevronDown,
19314
+ import_lucide_react57.ChevronDown,
19283
19315
  {
19284
19316
  className: open ? "h-6 w-6 rotate-180 text-[#1F1F1B] transition-transform" : "h-6 w-6 text-[#1F1F1B] transition-transform"
19285
19317
  }
@@ -20063,7 +20095,7 @@ var AirbnbPhoneField = React80.forwardRef(
20063
20095
  children: [
20064
20096
  /* @__PURE__ */ (0, import_jsx_runtime191.jsx)("span", { children: valueLabel ?? codePlaceholder }),
20065
20097
  /* @__PURE__ */ (0, import_jsx_runtime191.jsx)(
20066
- import_lucide_react56.ChevronDown,
20098
+ import_lucide_react58.ChevronDown,
20067
20099
  {
20068
20100
  className: cn("h-5 w-5 transition-transform", open ? "rotate-180" : ""),
20069
20101
  strokeWidth: 2
@@ -20111,7 +20143,7 @@ AirbnbPhoneField.displayName = "AirbnbPhoneField";
20111
20143
 
20112
20144
  // src/airbnb-fields/searchable-select/SearchableSelect.tsx
20113
20145
  var React81 = __toESM(require("react"), 1);
20114
- var import_lucide_react57 = require("lucide-react");
20146
+ var import_lucide_react59 = require("lucide-react");
20115
20147
  var import_react_virtual3 = require("@tanstack/react-virtual");
20116
20148
  var import_react90 = require("react");
20117
20149
  var import_jsx_runtime192 = require("react/jsx-runtime");
@@ -20347,7 +20379,7 @@ var AirbnbSearchableSelectInternal = ({
20347
20379
  onKeyDown: handleTriggerKeyDown,
20348
20380
  onBlur,
20349
20381
  trailingAdornment: /* @__PURE__ */ (0, import_jsx_runtime192.jsx)(
20350
- import_lucide_react57.ChevronDown,
20382
+ import_lucide_react59.ChevronDown,
20351
20383
  {
20352
20384
  className: cn(
20353
20385
  "h-6 w-6 text-[#1F1F1B] transition-transform",
@@ -20445,7 +20477,7 @@ function AirbnbSearchableSelectContent({
20445
20477
  return /* @__PURE__ */ (0, import_jsx_runtime192.jsxs)("div", { className: "p-2", children: [
20446
20478
  /* @__PURE__ */ (0, import_jsx_runtime192.jsxs)("div", { className: "relative mb-2", children: [
20447
20479
  /* @__PURE__ */ (0, import_jsx_runtime192.jsx)(
20448
- import_lucide_react57.Search,
20480
+ import_lucide_react59.Search,
20449
20481
  {
20450
20482
  "aria-hidden": "true",
20451
20483
  className: "absolute left-4 top-1/2 h-5 w-5 -translate-y-1/2 text-[#9696B9]"
@@ -20555,13 +20587,13 @@ function getNextEnabledIndex(options, startIndex, step) {
20555
20587
  // src/airbnb-fields/search-input/SearchInput.tsx
20556
20588
  var React82 = __toESM(require("react"), 1);
20557
20589
  var import_react_i18next44 = require("react-i18next");
20558
- var import_lucide_react58 = require("lucide-react");
20590
+ var import_lucide_react60 = require("lucide-react");
20559
20591
  var import_jsx_runtime193 = require("react/jsx-runtime");
20560
20592
  var AirbnbSearchInput = React82.forwardRef(({ onReset, placeholder, wrapperClassName, ...props }, ref) => {
20561
20593
  const { t } = (0, import_react_i18next44.useTranslation)();
20562
20594
  const placeholderText = placeholder || t("search_property") + "...";
20563
20595
  return /* @__PURE__ */ (0, import_jsx_runtime193.jsxs)("div", { className: cn("input-wrapper relative", wrapperClassName), children: [
20564
- /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(import_lucide_react58.Search, { className: "absolute left-4 top-1/2 h-5 w-5 -translate-y-1/2 transform text-[#9696B9]" }),
20596
+ /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(import_lucide_react60.Search, { className: "absolute left-4 top-1/2 h-5 w-5 -translate-y-1/2 transform text-[#9696B9]" }),
20565
20597
  /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(
20566
20598
  "input",
20567
20599
  {
@@ -20587,7 +20619,7 @@ var AirbnbSearchInput = React82.forwardRef(({ onReset, placeholder, wrapperClass
20587
20619
  variant: "ghost",
20588
20620
  onClick: onReset,
20589
20621
  className: "absolute right-0 top-1/2 h-5 w-5 -translate-y-1/2 transform text-[#9696B9]",
20590
- children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(import_lucide_react58.X, { className: "h-5 w-5" })
20622
+ children: /* @__PURE__ */ (0, import_jsx_runtime193.jsx)(import_lucide_react60.X, { className: "h-5 w-5" })
20591
20623
  }
20592
20624
  )
20593
20625
  ] });
@@ -20597,7 +20629,7 @@ AirbnbSearchInput.displayName = "AirbnbSearchInput";
20597
20629
  // src/airbnb-fields/switch/Switch.tsx
20598
20630
  var React83 = __toESM(require("react"), 1);
20599
20631
  var SwitchPrimitives2 = __toESM(require("@radix-ui/react-switch"), 1);
20600
- var import_lucide_react59 = require("lucide-react");
20632
+ var import_lucide_react61 = require("lucide-react");
20601
20633
  var import_jsx_runtime194 = require("react/jsx-runtime");
20602
20634
  var AirbnbSwitch = React83.forwardRef(
20603
20635
  ({
@@ -20643,7 +20675,7 @@ var AirbnbSwitch = React83.forwardRef(
20643
20675
  "data-[state=checked]:translate-x-[12px] data-[state=unchecked]:translate-x-0"
20644
20676
  ),
20645
20677
  children: /* @__PURE__ */ (0, import_jsx_runtime194.jsx)(
20646
- import_lucide_react59.Check,
20678
+ import_lucide_react61.Check,
20647
20679
  {
20648
20680
  "aria-hidden": "true",
20649
20681
  className: "h-3 w-3 text-[#222222] opacity-0 transition-opacity duration-150 group-data-[state=checked]:opacity-100",