@povio/ui 3.4.0-rc.4 → 3.4.0-rc.6

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.
Files changed (263) hide show
  1. package/dist/components/Breadcrumbs/Breadcrumbs.js +13 -4
  2. package/dist/components/Menu/Menu.js +1 -1
  3. package/dist/components/Menu/MenuDesktop.js +1 -1
  4. package/dist/components/Menu/MenuItem.js +6 -3
  5. package/dist/components/Menu/MenuMobile.js +6 -3
  6. package/dist/components/Menu/MenuPopover.js +1 -1
  7. package/dist/components/buttons/IconButton/IconButton.js +1 -1
  8. package/dist/components/buttons/PillButton/PillButton.js +3 -3
  9. package/dist/components/buttons/PillButton/pillButton.cva.d.ts +1 -1
  10. package/dist/components/buttons/SplitButton/SplitButton.js +3 -3
  11. package/dist/components/buttons/TextButton/TextButton.js +1 -1
  12. package/dist/components/buttons/ToggleButton/ToggleButton.js +1 -1
  13. package/dist/components/buttons/shared/buttonContent.cva.d.ts +1 -1
  14. package/dist/components/inputs/Checkbox/Checkbox.js +1 -1
  15. package/dist/components/inputs/Checkbox/CheckboxCheckmark.js +2 -3
  16. package/dist/components/inputs/Checkbox/CheckboxGroup.js +1 -1
  17. package/dist/components/inputs/DateTime/DatePicker/DatePicker.d.ts +1 -0
  18. package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +2 -1
  19. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.d.ts +1 -0
  20. package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +2 -1
  21. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.d.ts +1 -0
  22. package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +2 -1
  23. package/dist/components/inputs/DateTime/TimePicker/TimePicker.d.ts +1 -0
  24. package/dist/components/inputs/DateTime/TimePicker/TimePicker.js +196 -191
  25. package/dist/components/inputs/DateTime/shared/CalendarHeader.js +13 -9
  26. package/dist/components/inputs/DateTime/shared/CalendarSelectHeader.js +7 -11
  27. package/dist/components/inputs/DateTime/shared/DatePickerInput.d.ts +2 -1
  28. package/dist/components/inputs/DateTime/shared/DatePickerInput.js +2 -2
  29. package/dist/components/inputs/DateTime/shared/DateSegmentItem.js +1 -1
  30. package/dist/components/inputs/DateTime/shared/DateTimeDialog.js +1 -1
  31. package/dist/components/inputs/DateTime/shared/MonthPicker.js +1 -1
  32. package/dist/components/inputs/DateTime/shared/RangeCalendar.js +1 -1
  33. package/dist/components/inputs/DateTime/shared/TimeField.js +1 -1
  34. package/dist/components/inputs/DateTime/shared/TimePickerForm.js +3 -4
  35. package/dist/components/inputs/DateTime/shared/TimePickerInput.d.ts +2 -1
  36. package/dist/components/inputs/DateTime/shared/TimePickerInput.js +46 -44
  37. package/dist/components/inputs/DateTime/shared/YearPicker.js +1 -1
  38. package/dist/components/inputs/DateTime/shared/datePickerTodayIcon.js +46 -1
  39. package/dist/components/inputs/DateTime/shared/useFirefoxDateSegmentSelectionGuard.js +1 -1
  40. package/dist/components/inputs/File/FileUpload.js +1 -1
  41. package/dist/components/inputs/File/FileUploadContainer.js +1 -1
  42. package/dist/components/inputs/File/InputUpload.js +1 -1
  43. package/dist/components/inputs/File/shared/FileCard.js +1 -1
  44. package/dist/components/inputs/File/shared/FileCardList.js +1 -1
  45. package/dist/components/inputs/File/shared/FileUploadContent.js +1 -1
  46. package/dist/components/inputs/File/shared/FileUploadContentEmpty.js +5 -2
  47. package/dist/components/inputs/File/shared/FileUploadContentError.js +8 -5
  48. package/dist/components/inputs/File/shared/FileUploadContentFilled.js +8 -5
  49. package/dist/components/inputs/File/shared/FileUploadContentLoading.js +7 -4
  50. package/dist/components/inputs/File/shared/InputUploadContent.js +3 -3
  51. package/dist/components/inputs/File/shared/InputUploadFilled.js +3 -3
  52. package/dist/components/inputs/FormField/FormField.js +1 -1
  53. package/dist/components/inputs/FormField/FormFieldError.js +1 -1
  54. package/dist/components/inputs/FormField/FormFieldHeader.js +4 -3
  55. package/dist/components/inputs/FormField/FormFieldHeaderClose.js +6 -3
  56. package/dist/components/inputs/FormField/FormFieldHelper.js +1 -1
  57. package/dist/components/inputs/FormField/FormFieldLabel.js +1 -1
  58. package/dist/components/inputs/Input/NumberInput/NumberInput.js +89 -87
  59. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.d.ts +2 -1
  60. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeField.js +264 -253
  61. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.d.ts +1 -0
  62. package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +5 -4
  63. package/dist/components/inputs/Input/PasswordInput/PasswordInput.js +3 -4
  64. package/dist/components/inputs/Input/TextArea/TextArea.d.ts +1 -0
  65. package/dist/components/inputs/Input/TextArea/TextArea.js +99 -98
  66. package/dist/components/inputs/Input/TextInput/TextInput.js +92 -90
  67. package/dist/components/inputs/Input/shared/InputContent.d.ts +2 -1
  68. package/dist/components/inputs/Input/shared/InputContent.js +49 -47
  69. package/dist/components/inputs/Inputs/Form.js +1 -1
  70. package/dist/components/inputs/Inputs/InputItem.js +1 -1
  71. package/dist/components/inputs/Inputs/Inputs.js +1 -1
  72. package/dist/components/inputs/RadioGroup/RadioGroup.js +1 -1
  73. package/dist/components/inputs/Selection/Autocomplete/Autocomplete.js +1 -1
  74. package/dist/components/inputs/Selection/Autocomplete/QueryAutocomplete.js +1 -1
  75. package/dist/components/inputs/Selection/Select/QuerySelect.js +1 -1
  76. package/dist/components/inputs/Selection/Select/Select.js +1 -1
  77. package/dist/components/inputs/Selection/shared/SelectBase.d.ts +1 -0
  78. package/dist/components/inputs/Selection/shared/SelectBase.js +1 -1
  79. package/dist/components/inputs/Selection/shared/SelectDesktop.js +55 -53
  80. package/dist/components/inputs/Selection/shared/SelectInput.d.ts +2 -2
  81. package/dist/components/inputs/Selection/shared/SelectInput.js +56 -54
  82. package/dist/components/inputs/Selection/shared/SelectInputTags.js +1 -1
  83. package/dist/components/inputs/Selection/shared/SelectListBoxItem.js +1 -1
  84. package/dist/components/inputs/Selection/shared/SelectListBoxItemSelectAll.js +1 -1
  85. package/dist/components/inputs/Selection/shared/SelectListBoxLoadingItem.js +1 -1
  86. package/dist/components/inputs/Selection/shared/SelectListBoxSelectionBar.js +1 -1
  87. package/dist/components/inputs/Selection/shared/SelectMobile.js +7 -3
  88. package/dist/components/inputs/Selection/shared/StaticSelectTrailingContent.js +6 -3
  89. package/dist/components/inputs/Skeleton/InputFrame.d.ts +1 -0
  90. package/dist/components/inputs/Skeleton/InputFrame.js +2 -2
  91. package/dist/components/inputs/Slider/Slider.js +1 -1
  92. package/dist/components/inputs/TextEditor/TextEditor.js +1 -1
  93. package/dist/components/inputs/TextEditor/Toolbar/ColorPicker.js +1 -1
  94. package/dist/components/inputs/TextEditor/Toolbar/ColorPickerDropdown.js +4 -3
  95. package/dist/components/inputs/TextEditor/Toolbar/HyperlinkAction.js +3 -3
  96. package/dist/components/inputs/TextEditor/Toolbar/TextAlignSelect.js +6 -9
  97. package/dist/components/inputs/TextEditor/Toolbar/TextColorSelect.js +5 -4
  98. package/dist/components/inputs/TextEditor/Toolbar/TextEditorToolbar.js +1 -1
  99. package/dist/components/inputs/TextEditor/Toolbar/TextHighlightSelect.js +9 -6
  100. package/dist/components/inputs/TextEditor/Toolbar/TextListActions.js +4 -5
  101. package/dist/components/inputs/TextEditor/Toolbar/TextMarksActions.js +6 -9
  102. package/dist/components/inputs/TextEditor/Toolbar/TextStyleSelect.js +1 -1
  103. package/dist/components/inputs/Toggle/Toggle.js +1 -1
  104. package/dist/components/inputs/shared/CheckContent.js +1 -1
  105. package/dist/components/inputs/shared/InputClear.js +7 -4
  106. package/dist/components/inputs/shared/TooltipWrapper.d.ts +1 -1
  107. package/dist/components/inputs/shared/TooltipWrapper.js +1 -1
  108. package/dist/components/inputs/shared/form.binding.js +1 -1
  109. package/dist/components/inputs/shared/input.cva.js +1 -1
  110. package/dist/components/inputs/shared/useStaticInputHandoff.js +64 -38
  111. package/dist/components/navigation/Accordion/AccordionItem.js +5 -2
  112. package/dist/components/navigation/Stepper/StepperItem.js +6 -3
  113. package/dist/components/navigation/Stepper/StepperSeparator.js +1 -1
  114. package/dist/components/overlays/BottomSheet/BottomSheet.js +1 -1
  115. package/dist/components/overlays/BottomSheet/BottomSheetHeader.js +6 -3
  116. package/dist/components/overlays/Drawer/Drawer.js +1 -1
  117. package/dist/components/overlays/Modal/Modal.js +2 -2
  118. package/dist/components/overlays/Tooltip/Tooltip.js +14 -5
  119. package/dist/components/overlays/Tooltip/TooltipEllipsis.js +1 -1
  120. package/dist/components/segment/Segment.js +1 -1
  121. package/dist/components/segment/SegmentItem.js +1 -1
  122. package/dist/components/shared/pagination/PaginationList.js +6 -9
  123. package/dist/components/status/Loader/Loader.js +1 -1
  124. package/dist/components/status/Toast/Toast.js +1 -1
  125. package/dist/components/status/Toast/useToast.js +1 -1
  126. package/dist/components/table/ColumnConfig.js +1 -1
  127. package/dist/components/table/PaginatedTable.js +1 -1
  128. package/dist/components/table/Table.js +148 -40
  129. package/dist/components/text/Link/Link.js +1 -1
  130. package/dist/components/text/Pill/Pill.js +5 -2
  131. package/dist/components/text/Tag/Tag.js +5 -2
  132. package/dist/config/link.context.js +1 -1
  133. package/dist/config/router.context.js +1 -1
  134. package/dist/config/uiConfig.context.js +13 -6
  135. package/dist/config/uiOverrides.context.js +1 -1
  136. package/dist/hooks/useFilters.js +1 -1
  137. package/dist/hooks/useForm.js +1 -1
  138. package/dist/hooks/useIntersectionObserver.js +1 -1
  139. package/dist/hooks/useLocalStorage.js +1 -1
  140. package/dist/hooks/usePagination.js +1 -1
  141. package/dist/hooks/useScrollableListBox.js +1 -1
  142. package/dist/hooks/useSorting.js +1 -1
  143. package/dist/hooks/useStateAndRef.js +1 -1
  144. package/dist/hooks/useTableColumnConfig.js +1 -1
  145. package/dist/index.js +1 -40
  146. package/dist/node_modules/.pnpm/react-icons-sprite@1.1.1_lucide-react@1.28.0_react@19.2.3__react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/react-icons-sprite/dist/icon.js +15 -0
  147. package/dist/react-icons-sprite-4cbd6962.svg +1 -0
  148. package/dist/rhf/Inputs.js +1 -1
  149. package/dist/rhf.d.ts +0 -39
  150. package/dist/tanstack.d.ts +0 -39
  151. package/dist/tanstack.js +1 -40
  152. package/package.json +2 -1
  153. package/dist/assets/icons/Account.d.ts +0 -2
  154. package/dist/assets/icons/AlignCenter.d.ts +0 -2
  155. package/dist/assets/icons/AlignCenter.js +0 -30
  156. package/dist/assets/icons/AlignLeft.d.ts +0 -2
  157. package/dist/assets/icons/AlignLeft.js +0 -30
  158. package/dist/assets/icons/AlignLeftRight.d.ts +0 -2
  159. package/dist/assets/icons/AlignLeftRight.js +0 -30
  160. package/dist/assets/icons/AlignRight.d.ts +0 -2
  161. package/dist/assets/icons/AlignRight.js +0 -30
  162. package/dist/assets/icons/ArrowDropDown.d.ts +0 -2
  163. package/dist/assets/icons/ArrowDropDown.js +0 -30
  164. package/dist/assets/icons/ArrowDropUp.d.ts +0 -2
  165. package/dist/assets/icons/ArrowDropUp.js +0 -30
  166. package/dist/assets/icons/ArrowLeft.d.ts +0 -2
  167. package/dist/assets/icons/ArrowLeft.js +0 -30
  168. package/dist/assets/icons/ArrowRight.d.ts +0 -2
  169. package/dist/assets/icons/ArrowRight.js +0 -30
  170. package/dist/assets/icons/Board.d.ts +0 -2
  171. package/dist/assets/icons/Bold.d.ts +0 -2
  172. package/dist/assets/icons/Bold.js +0 -30
  173. package/dist/assets/icons/BulletedList.d.ts +0 -2
  174. package/dist/assets/icons/BulletedList.js +0 -30
  175. package/dist/assets/icons/Calendar.d.ts +0 -2
  176. package/dist/assets/icons/Calendar.js +0 -32
  177. package/dist/assets/icons/Check.d.ts +0 -2
  178. package/dist/assets/icons/Check.js +0 -32
  179. package/dist/assets/icons/CheckCircle.d.ts +0 -2
  180. package/dist/assets/icons/CheckCircle.js +0 -30
  181. package/dist/assets/icons/CheckboxCheckmark.d.ts +0 -2
  182. package/dist/assets/icons/CheckboxCheckmark.js +0 -33
  183. package/dist/assets/icons/CheckboxIndeterminate.d.ts +0 -2
  184. package/dist/assets/icons/CheckboxIndeterminate.js +0 -33
  185. package/dist/assets/icons/ChevronDown.d.ts +0 -2
  186. package/dist/assets/icons/ChevronDown.js +0 -32
  187. package/dist/assets/icons/ChevronLeft.d.ts +0 -2
  188. package/dist/assets/icons/ChevronLeft.js +0 -32
  189. package/dist/assets/icons/ChevronRight.d.ts +0 -2
  190. package/dist/assets/icons/ChevronRight.js +0 -32
  191. package/dist/assets/icons/ChevronUp.d.ts +0 -2
  192. package/dist/assets/icons/ChevronUp.js +0 -32
  193. package/dist/assets/icons/ChevronsLeft.d.ts +0 -2
  194. package/dist/assets/icons/ChevronsLeft.js +0 -32
  195. package/dist/assets/icons/ChevronsRight.d.ts +0 -2
  196. package/dist/assets/icons/ChevronsRight.js +0 -32
  197. package/dist/assets/icons/Clock.d.ts +0 -2
  198. package/dist/assets/icons/Clock.js +0 -30
  199. package/dist/assets/icons/Close.d.ts +0 -2
  200. package/dist/assets/icons/Close.js +0 -30
  201. package/dist/assets/icons/DateTime.d.ts +0 -2
  202. package/dist/assets/icons/DateTime.js +0 -39
  203. package/dist/assets/icons/DragIndicator.d.ts +0 -2
  204. package/dist/assets/icons/DragIndicator.js +0 -30
  205. package/dist/assets/icons/Edit.d.ts +0 -2
  206. package/dist/assets/icons/Emoji.d.ts +0 -2
  207. package/dist/assets/icons/File.d.ts +0 -2
  208. package/dist/assets/icons/File.js +0 -32
  209. package/dist/assets/icons/Grid.d.ts +0 -2
  210. package/dist/assets/icons/Highlight.d.ts +0 -2
  211. package/dist/assets/icons/Highlight.js +0 -30
  212. package/dist/assets/icons/HighlightOn.d.ts +0 -6
  213. package/dist/assets/icons/HighlightOn.js +0 -55
  214. package/dist/assets/icons/Home.d.ts +0 -2
  215. package/dist/assets/icons/Home.js +0 -30
  216. package/dist/assets/icons/Image.d.ts +0 -2
  217. package/dist/assets/icons/ImageError.d.ts +0 -2
  218. package/dist/assets/icons/Info.d.ts +0 -2
  219. package/dist/assets/icons/Info.js +0 -41
  220. package/dist/assets/icons/Italic.d.ts +0 -2
  221. package/dist/assets/icons/Italic.js +0 -30
  222. package/dist/assets/icons/Link.d.ts +0 -2
  223. package/dist/assets/icons/Link.js +0 -30
  224. package/dist/assets/icons/Loader.d.ts +0 -2
  225. package/dist/assets/icons/MapPin.d.ts +0 -2
  226. package/dist/assets/icons/Menu.d.ts +0 -2
  227. package/dist/assets/icons/Menu.js +0 -30
  228. package/dist/assets/icons/Minus.d.ts +0 -2
  229. package/dist/assets/icons/MoreHoriz.d.ts +0 -2
  230. package/dist/assets/icons/NumberedList.d.ts +0 -2
  231. package/dist/assets/icons/NumberedList.js +0 -30
  232. package/dist/assets/icons/Pause.d.ts +0 -2
  233. package/dist/assets/icons/Plus.d.ts +0 -2
  234. package/dist/assets/icons/PointerHorizontal.d.ts +0 -2
  235. package/dist/assets/icons/PointerHorizontal.js +0 -30
  236. package/dist/assets/icons/PointerVertical.d.ts +0 -2
  237. package/dist/assets/icons/PointerVertical.js +0 -30
  238. package/dist/assets/icons/Retry.d.ts +0 -2
  239. package/dist/assets/icons/Search.d.ts +0 -2
  240. package/dist/assets/icons/Search.js +0 -30
  241. package/dist/assets/icons/Send.d.ts +0 -2
  242. package/dist/assets/icons/Send.js +0 -32
  243. package/dist/assets/icons/Share.d.ts +0 -2
  244. package/dist/assets/icons/Slash.d.ts +0 -2
  245. package/dist/assets/icons/Strikethrough.d.ts +0 -2
  246. package/dist/assets/icons/Strikethrough.js +0 -30
  247. package/dist/assets/icons/TextColor.d.ts +0 -6
  248. package/dist/assets/icons/TextColor.js +0 -52
  249. package/dist/assets/icons/Today.d.ts +0 -2
  250. package/dist/assets/icons/Today.js +0 -30
  251. package/dist/assets/icons/Trash.d.ts +0 -2
  252. package/dist/assets/icons/Underlined.d.ts +0 -2
  253. package/dist/assets/icons/Underlined.js +0 -32
  254. package/dist/assets/icons/Upload.d.ts +0 -2
  255. package/dist/assets/icons/Upload.js +0 -39
  256. package/dist/assets/icons/User.d.ts +0 -2
  257. package/dist/assets/icons/Visibility.d.ts +0 -2
  258. package/dist/assets/icons/Visibility.js +0 -30
  259. package/dist/assets/icons/VisibilityOff.d.ts +0 -2
  260. package/dist/assets/icons/VisibilityOff.js +0 -30
  261. package/dist/assets/icons/WarningFilled.d.ts +0 -2
  262. package/dist/assets/icons/WarningFilled.js +0 -32
  263. package/dist/assets/icons/WarningOutlined.d.ts +0 -2
@@ -7,20 +7,20 @@ import { TooltipWrapper } from "../../shared/TooltipWrapper.js";
7
7
  import { InputFrame } from "../../Skeleton/InputFrame.js";
8
8
  import { useStaticInputHandoff } from "../../shared/useStaticInputHandoff.js";
9
9
  import { InputContent } from "../shared/InputContent.js";
10
- import { c } from "react/compiler-runtime";
11
10
  import { jsx } from "react/jsx-runtime";
12
11
  import { clsx } from "clsx";
13
12
  import { useEffect, useRef, useState } from "react";
14
13
  import { Input } from "react-aria-components";
14
+ import { c } from "react/compiler-runtime";
15
15
  import { useFocusVisible, useTextField } from "react-aria";
16
16
  import { mergeRefs } from "@react-aria/utils";
17
17
  //#region src/components/inputs/Input/TextInput/TextInput.tsx
18
18
  var TextInputBase = (props) => {
19
- const $ = c(84);
19
+ const $ = c(85);
20
20
  const ui = UIConfig.useConfig();
21
21
  const inputBaseCva = UIOverrides.useCva("input.baseCva", inputBaseDefinition);
22
22
  const inputRef = useRef(null);
23
- const { ref, inputClassName, label, tooltipText, helperText, isRequired, rightContent, isDisabled, isDirty, headerClassName, errorClassName, isHeaderHidden, error, className, unit, isLoading, action, leadingIcon, trailingIcon, value, onChange, onBlur, as: asProp, hideLabel: hideLabelProp, variant: variantProp, size: sizeProp, isClearable: isClearableProp, autoFocusOnMount, ...rest } = props;
23
+ const { ref, inputClassName, label, tooltipText, helperText, isRequired, rightContent, isDisabled, isDirty, headerClassName, errorClassName, isHeaderHidden, error, className, unit, isLoading, action, leadingIcon, trailingIcon, value, onChange, onBlur, as: asProp, hideLabel: hideLabelProp, variant: variantProp, size: sizeProp, isClearable: isClearableProp, isClearableIfDisabled, autoFocusOnMount, ...rest } = props;
24
24
  const as = asProp ?? ui.input.as;
25
25
  const hideLabel = hideLabelProp ?? ui.input.hideLabel;
26
26
  const variant = variantProp ?? ui.input.variant;
@@ -87,7 +87,7 @@ var TextInputBase = (props) => {
87
87
  } else t3 = $[15];
88
88
  const formFieldProps = t3;
89
89
  let t4;
90
- if ($[16] !== action || $[17] !== inputValue || $[18] !== isClearable || $[19] !== isDisabled || $[20] !== isLoading || $[21] !== leadingIcon || $[22] !== onBlur || $[23] !== onChange || $[24] !== trailingIcon || $[25] !== unit) {
90
+ if ($[16] !== action || $[17] !== inputValue || $[18] !== isClearable || $[19] !== isClearableIfDisabled || $[20] !== isDisabled || $[21] !== isLoading || $[22] !== leadingIcon || $[23] !== onBlur || $[24] !== onChange || $[25] !== trailingIcon || $[26] !== unit) {
91
91
  t4 = {
92
92
  unit,
93
93
  isLoading,
@@ -96,6 +96,7 @@ var TextInputBase = (props) => {
96
96
  leadingIcon,
97
97
  trailingIcon,
98
98
  isClearable,
99
+ isClearableIfDisabled,
99
100
  value: inputValue,
100
101
  onChange,
101
102
  onBlur
@@ -103,19 +104,20 @@ var TextInputBase = (props) => {
103
104
  $[16] = action;
104
105
  $[17] = inputValue;
105
106
  $[18] = isClearable;
106
- $[19] = isDisabled;
107
- $[20] = isLoading;
108
- $[21] = leadingIcon;
109
- $[22] = onBlur;
110
- $[23] = onChange;
111
- $[24] = trailingIcon;
112
- $[25] = unit;
113
- $[26] = t4;
114
- } else t4 = $[26];
107
+ $[19] = isClearableIfDisabled;
108
+ $[20] = isDisabled;
109
+ $[21] = isLoading;
110
+ $[22] = leadingIcon;
111
+ $[23] = onBlur;
112
+ $[24] = onChange;
113
+ $[25] = trailingIcon;
114
+ $[26] = unit;
115
+ $[27] = t4;
116
+ } else t4 = $[27];
115
117
  const inputContentProps = t4;
116
118
  const t5 = hideLabel || isHeaderHidden;
117
119
  let t6;
118
- if ($[27] !== headerClassName || $[28] !== helperText || $[29] !== isDisabled || $[30] !== isRequired || $[31] !== label || $[32] !== labelProps || $[33] !== rightContent || $[34] !== t5 || $[35] !== tooltipText) {
120
+ if ($[28] !== headerClassName || $[29] !== helperText || $[30] !== isDisabled || $[31] !== isRequired || $[32] !== label || $[33] !== labelProps || $[34] !== rightContent || $[35] !== t5 || $[36] !== tooltipText) {
119
121
  t6 = {
120
122
  label,
121
123
  tooltipText,
@@ -127,17 +129,17 @@ var TextInputBase = (props) => {
127
129
  className: headerClassName,
128
130
  labelProps
129
131
  };
130
- $[27] = headerClassName;
131
- $[28] = helperText;
132
- $[29] = isDisabled;
133
- $[30] = isRequired;
134
- $[31] = label;
135
- $[32] = labelProps;
136
- $[33] = rightContent;
137
- $[34] = t5;
138
- $[35] = tooltipText;
139
- $[36] = t6;
140
- } else t6 = $[36];
132
+ $[28] = headerClassName;
133
+ $[29] = helperText;
134
+ $[30] = isDisabled;
135
+ $[31] = isRequired;
136
+ $[32] = label;
137
+ $[33] = labelProps;
138
+ $[34] = rightContent;
139
+ $[35] = t5;
140
+ $[36] = tooltipText;
141
+ $[37] = t6;
142
+ } else t6 = $[37];
141
143
  const headerProps = t6;
142
144
  const dataIsDisabled = isDisabled || void 0;
143
145
  const T0 = TooltipWrapper;
@@ -145,12 +147,12 @@ var TextInputBase = (props) => {
145
147
  const T1 = FormField;
146
148
  const t8 = as === "inline" && "h-full";
147
149
  let t9;
148
- if ($[37] !== className || $[38] !== t8) {
150
+ if ($[38] !== className || $[39] !== t8) {
149
151
  t9 = clsx("group w-full", t8, className);
150
- $[37] = className;
151
- $[38] = t8;
152
- $[39] = t9;
153
- } else t9 = $[39];
152
+ $[38] = className;
153
+ $[39] = t8;
154
+ $[40] = t9;
155
+ } else t9 = $[40];
154
156
  const t10 = as === "inline" ? -1 : void 0;
155
157
  const t11 = value === "" || value === null || value === void 0 || void 0;
156
158
  const t12 = isRequired || void 0;
@@ -160,35 +162,35 @@ var TextInputBase = (props) => {
160
162
  ...rest
161
163
  }), inputClassName);
162
164
  let t14;
163
- if ($[40] === Symbol.for("react.memo_cache_sentinel")) {
165
+ if ($[41] === Symbol.for("react.memo_cache_sentinel")) {
164
166
  t14 = () => inputRef.current?.focus();
165
- $[40] = t14;
166
- } else t14 = $[40];
167
+ $[41] = t14;
168
+ } else t14 = $[41];
167
169
  const t15 = value === "" || value === null || value === void 0 || void 0;
168
170
  const t16 = isRequired || void 0;
169
171
  let t17;
170
- if ($[41] !== ref) {
172
+ if ($[42] !== ref) {
171
173
  t17 = mergeRefs(ref, inputRef);
172
- $[41] = ref;
173
- $[42] = t17;
174
- } else t17 = $[42];
174
+ $[42] = ref;
175
+ $[43] = t17;
176
+ } else t17 = $[43];
175
177
  const t18 = value === "" || value === null || value === void 0 || void 0;
176
178
  const t19 = !(value === "" || value === null || value === void 0) || void 0;
177
179
  const t20 = isDirty || void 0;
178
180
  const t21 = isRequired || void 0;
179
181
  const t22 = as === "floating" ? "\xA0" : inputProps.placeholder;
180
182
  let t23;
181
- if ($[43] !== inputProps || $[44] !== isFocusVisible) {
183
+ if ($[44] !== inputProps || $[45] !== isFocusVisible) {
182
184
  t23 = (e) => {
183
185
  inputProps.onFocus?.(e);
184
186
  if (isFocusVisible) e.target.select();
185
187
  };
186
- $[43] = inputProps;
187
- $[44] = isFocusVisible;
188
- $[45] = t23;
189
- } else t23 = $[45];
188
+ $[44] = inputProps;
189
+ $[45] = isFocusVisible;
190
+ $[46] = t23;
191
+ } else t23 = $[46];
190
192
  let t24;
191
- if ($[46] !== dataIsDisabled || $[47] !== inputProps || $[48] !== t17 || $[49] !== t18 || $[50] !== t19 || $[51] !== t20 || $[52] !== t21 || $[53] !== t22 || $[54] !== t23) {
193
+ if ($[47] !== dataIsDisabled || $[48] !== inputProps || $[49] !== t17 || $[50] !== t18 || $[51] !== t19 || $[52] !== t20 || $[53] !== t21 || $[54] !== t22 || $[55] !== t23) {
192
194
  t24 = /* @__PURE__ */ jsx(Input, {
193
195
  ...inputProps,
194
196
  ref: t17,
@@ -201,19 +203,19 @@ var TextInputBase = (props) => {
201
203
  className: "w-full bg-transparent outline-none",
202
204
  onFocus: t23
203
205
  });
204
- $[46] = dataIsDisabled;
205
- $[47] = inputProps;
206
- $[48] = t17;
207
- $[49] = t18;
208
- $[50] = t19;
209
- $[51] = t20;
210
- $[52] = t21;
211
- $[53] = t22;
212
- $[54] = t23;
213
- $[55] = t24;
214
- } else t24 = $[55];
206
+ $[47] = dataIsDisabled;
207
+ $[48] = inputProps;
208
+ $[49] = t17;
209
+ $[50] = t18;
210
+ $[51] = t19;
211
+ $[52] = t20;
212
+ $[53] = t21;
213
+ $[54] = t22;
214
+ $[55] = t23;
215
+ $[56] = t24;
216
+ } else t24 = $[56];
215
217
  let t25;
216
- if ($[56] !== as || $[57] !== headerProps || $[58] !== inputContentProps || $[59] !== size || $[60] !== t24) {
218
+ if ($[57] !== as || $[58] !== headerProps || $[59] !== inputContentProps || $[60] !== size || $[61] !== t24) {
217
219
  t25 = /* @__PURE__ */ jsx(InputContent, {
218
220
  ...inputContentProps,
219
221
  headerProps,
@@ -221,15 +223,15 @@ var TextInputBase = (props) => {
221
223
  size,
222
224
  children: t24
223
225
  });
224
- $[56] = as;
225
- $[57] = headerProps;
226
- $[58] = inputContentProps;
227
- $[59] = size;
228
- $[60] = t24;
229
- $[61] = t25;
230
- } else t25 = $[61];
226
+ $[57] = as;
227
+ $[58] = headerProps;
228
+ $[59] = inputContentProps;
229
+ $[60] = size;
230
+ $[61] = t24;
231
+ $[62] = t25;
232
+ } else t25 = $[62];
231
233
  let t26;
232
- if ($[62] !== dataIsDisabled || $[63] !== t13 || $[64] !== t15 || $[65] !== t16 || $[66] !== t25) {
234
+ if ($[63] !== dataIsDisabled || $[64] !== t13 || $[65] !== t15 || $[66] !== t16 || $[67] !== t25) {
233
235
  t26 = /* @__PURE__ */ jsx("div", {
234
236
  className: t13,
235
237
  onClick: t14,
@@ -238,15 +240,15 @@ var TextInputBase = (props) => {
238
240
  "data-is-disabled": dataIsDisabled,
239
241
  children: t25
240
242
  });
241
- $[62] = dataIsDisabled;
242
- $[63] = t13;
243
- $[64] = t15;
244
- $[65] = t16;
245
- $[66] = t25;
246
- $[67] = t26;
247
- } else t26 = $[67];
243
+ $[63] = dataIsDisabled;
244
+ $[64] = t13;
245
+ $[65] = t15;
246
+ $[66] = t16;
247
+ $[67] = t25;
248
+ $[68] = t26;
249
+ } else t26 = $[68];
248
250
  let t27;
249
- if ($[68] !== T1 || $[69] !== as || $[70] !== formFieldProps || $[71] !== labelProps || $[72] !== t10 || $[73] !== t11 || $[74] !== t12 || $[75] !== t26 || $[76] !== t9) {
251
+ if ($[69] !== T1 || $[70] !== as || $[71] !== formFieldProps || $[72] !== labelProps || $[73] !== t10 || $[74] !== t11 || $[75] !== t12 || $[76] !== t26 || $[77] !== t9) {
250
252
  t27 = /* @__PURE__ */ jsx(T1, {
251
253
  ...formFieldProps,
252
254
  as,
@@ -257,32 +259,32 @@ var TextInputBase = (props) => {
257
259
  "data-is-required": t12,
258
260
  children: t26
259
261
  });
260
- $[68] = T1;
261
- $[69] = as;
262
- $[70] = formFieldProps;
263
- $[71] = labelProps;
264
- $[72] = t10;
265
- $[73] = t11;
266
- $[74] = t12;
267
- $[75] = t26;
268
- $[76] = t9;
269
- $[77] = t27;
270
- } else t27 = $[77];
262
+ $[69] = T1;
263
+ $[70] = as;
264
+ $[71] = formFieldProps;
265
+ $[72] = labelProps;
266
+ $[73] = t10;
267
+ $[74] = t11;
268
+ $[75] = t12;
269
+ $[76] = t26;
270
+ $[77] = t9;
271
+ $[78] = t27;
272
+ } else t27 = $[78];
271
273
  let t28;
272
- if ($[78] !== T0 || $[79] !== as || $[80] !== error || $[81] !== t27 || $[82] !== t7) {
274
+ if ($[79] !== T0 || $[80] !== as || $[81] !== error || $[82] !== t27 || $[83] !== t7) {
273
275
  t28 = /* @__PURE__ */ jsx(T0, {
274
276
  as,
275
277
  error,
276
278
  triggerTabIndex: t7,
277
279
  children: t27
278
280
  });
279
- $[78] = T0;
280
- $[79] = as;
281
- $[80] = error;
282
- $[81] = t27;
283
- $[82] = t7;
284
- $[83] = t28;
285
- } else t28 = $[83];
281
+ $[79] = T0;
282
+ $[80] = as;
283
+ $[81] = error;
284
+ $[82] = t27;
285
+ $[83] = t7;
286
+ $[84] = t28;
287
+ } else t28 = $[84];
286
288
  return t28;
287
289
  };
288
290
  var TextInputInner = (t0) => {
@@ -16,6 +16,7 @@ export interface InputContentProps {
16
16
  leadingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
17
17
  trailingIcon?: FC<SVGProps<SVGSVGElement>> | ReactElement;
18
18
  isClearable?: boolean;
19
+ isClearableIfDisabled?: boolean;
19
20
  value?: string | number | null;
20
21
  onChange?: (value: string) => void;
21
22
  onBlur?: (e: FocusEvent<HTMLInputElement>) => void;
@@ -24,5 +25,5 @@ export interface InputContentProps {
24
25
  interface InputContentComponentProps extends InputContentProps, InputVariantProps {
25
26
  children: ReactNode;
26
27
  }
27
- export declare const InputContent: ({ leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, value, onChange, onBlur, children, headerProps, as, size, }: InputContentComponentProps) => import("react/jsx-runtime").JSX.Element;
28
+ export declare const InputContent: ({ leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, isClearableIfDisabled, value, onChange, onBlur, children, headerProps, as, size, }: InputContentComponentProps) => import("react/jsx-runtime").JSX.Element;
28
29
  export {};
@@ -5,14 +5,14 @@ import { InlineIconButton } from "../../../buttons/InlineIconButton/InlineIconBu
5
5
  import { FormFieldLabel } from "../../FormField/FormFieldLabel.js";
6
6
  import { inputContentWrapperDefinition, inputSizeDefinition } from "../../shared/input.cva.js";
7
7
  import { InputClear } from "../../shared/InputClear.js";
8
- import { c } from "react/compiler-runtime";
9
8
  import { jsx, jsxs } from "react/jsx-runtime";
10
9
  import { clsx } from "clsx";
11
10
  import { isValidElement } from "react";
11
+ import { c } from "react/compiler-runtime";
12
12
  //#region src/components/inputs/Input/shared/InputContent.tsx
13
13
  var InputContent = (t0) => {
14
- const $ = c(64);
15
- const { leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, value, onChange, onBlur, children, headerProps, as, size } = t0;
14
+ const $ = c(66);
15
+ const { leadingIcon: LeadingIcon, trailingIcon: TrailingIcon, unit, isLoading, isDisabled, action, isClearable, isClearableIfDisabled, value, onChange, onBlur, children, headerProps, as, size } = t0;
16
16
  const typographyCva = UIOverrides.useCva("typography.cva", typographyDefinition);
17
17
  const inputSizeCva = UIOverrides.useCva("input.sizeCva", inputSizeDefinition);
18
18
  const inputContentWrapperCva = UIOverrides.useCva("input.contentWrapperCva", inputContentWrapperDefinition);
@@ -30,7 +30,7 @@ var InputContent = (t0) => {
30
30
  $[3] = t2;
31
31
  } else t2 = $[3];
32
32
  const isTrailingIconElement = t2;
33
- const showClear = value != null && value !== "" && !isDisabled;
33
+ const showClear = value != null && value !== "" && (!isDisabled || isClearableIfDisabled === true);
34
34
  const t3 = as === "inline" && "h-full";
35
35
  let t4;
36
36
  if ($[4] !== as || $[5] !== inputSizeCva || $[6] !== size || $[7] !== t3) {
@@ -111,8 +111,8 @@ var InputContent = (t0) => {
111
111
  $[34] = t10;
112
112
  } else t10 = $[34];
113
113
  let t11;
114
- if ($[35] !== isClearable || $[36] !== onBlur || $[37] !== onChange || $[38] !== showClear) {
115
- t11 = isClearable && /* @__PURE__ */ jsx(InputClear, {
114
+ if ($[35] !== isClearable || $[36] !== isClearableIfDisabled || $[37] !== isDisabled || $[38] !== onBlur || $[39] !== onChange || $[40] !== showClear) {
115
+ t11 = isClearable && (!isDisabled || isClearableIfDisabled === true) && /* @__PURE__ */ jsx(InputClear, {
116
116
  onClear: () => {
117
117
  onChange?.("");
118
118
  onBlur?.({ target: { value: "" } });
@@ -120,13 +120,15 @@ var InputContent = (t0) => {
120
120
  show: showClear
121
121
  });
122
122
  $[35] = isClearable;
123
- $[36] = onBlur;
124
- $[37] = onChange;
125
- $[38] = showClear;
126
- $[39] = t11;
127
- } else t11 = $[39];
123
+ $[36] = isClearableIfDisabled;
124
+ $[37] = isDisabled;
125
+ $[38] = onBlur;
126
+ $[39] = onChange;
127
+ $[40] = showClear;
128
+ $[41] = t11;
129
+ } else t11 = $[41];
128
130
  let t12;
129
- if ($[40] !== typographyCva || $[41] !== unit) {
131
+ if ($[42] !== typographyCva || $[43] !== unit) {
130
132
  t12 = unit && /* @__PURE__ */ jsx("span", {
131
133
  className: typographyCva({
132
134
  size: "label-2",
@@ -136,21 +138,21 @@ var InputContent = (t0) => {
136
138
  }),
137
139
  children: unit
138
140
  });
139
- $[40] = typographyCva;
140
- $[41] = unit;
141
- $[42] = t12;
142
- } else t12 = $[42];
141
+ $[42] = typographyCva;
142
+ $[43] = unit;
143
+ $[44] = t12;
144
+ } else t12 = $[44];
143
145
  let t13;
144
- if ($[43] !== isLoading) {
146
+ if ($[45] !== isLoading) {
145
147
  t13 = isLoading && /* @__PURE__ */ jsx("div", {
146
148
  className: "inline-flex",
147
149
  children: /* @__PURE__ */ jsx(Loader, {})
148
150
  });
149
- $[43] = isLoading;
150
- $[44] = t13;
151
- } else t13 = $[44];
151
+ $[45] = isLoading;
152
+ $[46] = t13;
153
+ } else t13 = $[46];
152
154
  let t14;
153
- if ($[45] !== action || $[46] !== isDisabled || $[47] !== isLoading) {
155
+ if ($[47] !== action || $[48] !== isDisabled || $[49] !== isLoading) {
154
156
  t14 = !isLoading && action && /* @__PURE__ */ jsx(InlineIconButton, {
155
157
  color: "secondary",
156
158
  icon: action.icon,
@@ -161,22 +163,22 @@ var InputContent = (t0) => {
161
163
  className: clsx("border-0!", action.className),
162
164
  "data-static-press-action": ""
163
165
  });
164
- $[45] = action;
165
- $[46] = isDisabled;
166
- $[47] = isLoading;
167
- $[48] = t14;
168
- } else t14 = $[48];
166
+ $[47] = action;
167
+ $[48] = isDisabled;
168
+ $[49] = isLoading;
169
+ $[50] = t14;
170
+ } else t14 = $[50];
169
171
  let t15;
170
- if ($[49] !== TrailingIcon || $[50] !== action || $[51] !== isLoading || $[52] !== isTrailingIconElement) {
172
+ if ($[51] !== TrailingIcon || $[52] !== action || $[53] !== isLoading || $[54] !== isTrailingIconElement) {
171
173
  t15 = !isLoading && !action && TrailingIcon && (isTrailingIconElement ? TrailingIcon : /* @__PURE__ */ jsx(TrailingIcon, { className: "size-6 text-interactive-text-secondary-idle" }));
172
- $[49] = TrailingIcon;
173
- $[50] = action;
174
- $[51] = isLoading;
175
- $[52] = isTrailingIconElement;
176
- $[53] = t15;
177
- } else t15 = $[53];
174
+ $[51] = TrailingIcon;
175
+ $[52] = action;
176
+ $[53] = isLoading;
177
+ $[54] = isTrailingIconElement;
178
+ $[55] = t15;
179
+ } else t15 = $[55];
178
180
  let t16;
179
- if ($[54] !== t10 || $[55] !== t11 || $[56] !== t12 || $[57] !== t13 || $[58] !== t14 || $[59] !== t15) {
181
+ if ($[56] !== t10 || $[57] !== t11 || $[58] !== t12 || $[59] !== t13 || $[60] !== t14 || $[61] !== t15) {
180
182
  t16 = /* @__PURE__ */ jsxs("div", {
181
183
  className: t10,
182
184
  children: [
@@ -187,24 +189,24 @@ var InputContent = (t0) => {
187
189
  t15
188
190
  ]
189
191
  });
190
- $[54] = t10;
191
- $[55] = t11;
192
- $[56] = t12;
193
- $[57] = t13;
194
- $[58] = t14;
195
- $[59] = t15;
196
- $[60] = t16;
197
- } else t16 = $[60];
192
+ $[56] = t10;
193
+ $[57] = t11;
194
+ $[58] = t12;
195
+ $[59] = t13;
196
+ $[60] = t14;
197
+ $[61] = t15;
198
+ $[62] = t16;
199
+ } else t16 = $[62];
198
200
  let t17;
199
- if ($[61] !== t16 || $[62] !== t9) {
201
+ if ($[63] !== t16 || $[64] !== t9) {
200
202
  t17 = /* @__PURE__ */ jsxs("div", {
201
203
  className: "flex w-full items-center gap-input-gap-input-text-to-elements",
202
204
  children: [t9, t16]
203
205
  });
204
- $[61] = t16;
205
- $[62] = t9;
206
- $[63] = t17;
207
- } else t17 = $[63];
206
+ $[63] = t16;
207
+ $[64] = t9;
208
+ $[65] = t17;
209
+ } else t17 = $[65];
208
210
  return t17;
209
211
  };
210
212
  //#endregion
@@ -2,8 +2,8 @@ import { StringUtils } from "../../../utils/string.utils.js";
2
2
  import { ZodUtils } from "../../../utils/zod.utils.js";
3
3
  import { getDefaultInputComponentType } from "../../../helpers/dynamicInputs.js";
4
4
  import { InputItem } from "./InputItem.js";
5
- import { c } from "react/compiler-runtime";
6
5
  import { jsx } from "react/jsx-runtime";
6
+ import { c } from "react/compiler-runtime";
7
7
  import { z } from "zod";
8
8
  //#region src/components/inputs/Inputs/Form.tsx
9
9
  var createFieldComponent = (field, schemaKeyType, form) => {
@@ -16,8 +16,8 @@ import { QuerySelect } from "../Selection/Select/QuerySelect.js";
16
16
  import { Slider } from "../Slider/Slider.js";
17
17
  import { Toggle } from "../Toggle/Toggle.js";
18
18
  import { Segment } from "../../segment/Segment.js";
19
- import { c } from "react/compiler-runtime";
20
19
  import { jsx } from "react/jsx-runtime";
20
+ import { c } from "react/compiler-runtime";
21
21
  //#region src/components/inputs/Inputs/InputItem.tsx
22
22
  var componentRegistry = {
23
23
  toggle: Toggle,
@@ -1,6 +1,6 @@
1
1
  import { InputItem } from "./InputItem.js";
2
- import { c } from "react/compiler-runtime";
3
2
  import { jsx } from "react/jsx-runtime";
3
+ import { c } from "react/compiler-runtime";
4
4
  //#region src/components/inputs/Inputs/Inputs.tsx
5
5
  function Inputs(t0) {
6
6
  const $ = c(9);
@@ -6,10 +6,10 @@ import { FormFieldLabel } from "../FormField/FormFieldLabel.js";
6
6
  import { FormField } from "../FormField/FormField.js";
7
7
  import { inputBaseDefinition, inputSizeDefinition } from "../shared/input.cva.js";
8
8
  import { radioContentClassName, radioContentRowDefinition, radioContentWrapperDefinition, radioDefinition, radioIndicatorClass, radioTypography } from "./radio.cva.js";
9
- import { c } from "react/compiler-runtime";
10
9
  import { jsx, jsxs } from "react/jsx-runtime";
11
10
  import { clsx } from "clsx";
12
11
  import { Radio, RadioGroup } from "react-aria-components";
12
+ import { c } from "react/compiler-runtime";
13
13
  import { useLabel } from "react-aria";
14
14
  import { mergeRefs } from "@react-aria/utils";
15
15
  //#region src/components/inputs/RadioGroup/RadioGroup.tsx
@@ -7,10 +7,10 @@ import { selectInputTagsContentWrapperDefinition } from "../shared/selectInput.c
7
7
  import { SelectBase } from "../shared/SelectBase.js";
8
8
  import { StaticSelectTrailingContent } from "../shared/StaticSelectTrailingContent.js";
9
9
  import { getStaticSelectValue } from "../shared/staticSelect.utils.js";
10
- import { c } from "react/compiler-runtime";
11
10
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
12
11
  import { clsx } from "clsx";
13
12
  import { useRef, useState } from "react";
13
+ import { c } from "react/compiler-runtime";
14
14
  import { mergeRefs } from "@react-aria/utils";
15
15
  //#region src/components/inputs/Selection/Autocomplete/Autocomplete.tsx
16
16
  function AutocompleteInner(t0) {
@@ -3,9 +3,9 @@ import { FieldController } from "../../shared/form.binding.js";
3
3
  import { Autocomplete } from "./Autocomplete.js";
4
4
  import { getQueryItems, getSelectionIdsToResolve } from "../shared/querySelect.utils.js";
5
5
  import { useQueryAutocomplete } from "../../../../hooks/useQueryAutocomplete.js";
6
- import { c } from "react/compiler-runtime";
7
6
  import { jsx } from "react/jsx-runtime";
8
7
  import { useState } from "react";
8
+ import { c } from "react/compiler-runtime";
9
9
  import { mergeRefs } from "@react-aria/utils";
10
10
  //#region src/components/inputs/Selection/Autocomplete/QueryAutocomplete.tsx
11
11
  var LoadedQueryAutocompleteContent = ({ query, queryParams, queryOptions, queryMap, resolveSelectedItemsWithIds, isQueryEnabledInitially = false, leadingContent, ...props }) => {
@@ -3,9 +3,9 @@ import { FieldController } from "../../shared/form.binding.js";
3
3
  import { Select } from "./Select.js";
4
4
  import { getQueryItems, getSelectionIdsToResolve } from "../shared/querySelect.utils.js";
5
5
  import { useQueryAutocomplete } from "../../../../hooks/useQueryAutocomplete.js";
6
- import { c } from "react/compiler-runtime";
7
6
  import { jsx } from "react/jsx-runtime";
8
7
  import { useState } from "react";
8
+ import { c } from "react/compiler-runtime";
9
9
  import { mergeRefs } from "@react-aria/utils";
10
10
  //#region src/components/inputs/Selection/Select/QuerySelect.tsx
11
11
  var LoadedQuerySelectContent = ({ query, queryParams, queryOptions, queryMap, resolveSelectedItemsWithIds, isQueryEnabledInitially = false, ...props }) => {
@@ -8,10 +8,10 @@ import { selectInputTagsContentWrapperDefinition } from "../shared/selectInput.c
8
8
  import { SelectBase } from "../shared/SelectBase.js";
9
9
  import { StaticSelectTrailingContent } from "../shared/StaticSelectTrailingContent.js";
10
10
  import { getStaticSelectValue } from "../shared/staticSelect.utils.js";
11
- import { c } from "react/compiler-runtime";
12
11
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
13
12
  import { clsx } from "clsx";
14
13
  import { useRef, useState } from "react";
14
+ import { c } from "react/compiler-runtime";
15
15
  import { mergeRefs } from "@react-aria/utils";
16
16
  //#region src/components/inputs/Selection/Select/Select.tsx
17
17
  function SelectInner(t0) {
@@ -14,6 +14,7 @@ export type SelectBaseProps<TKey extends Key = Key, TInitialSelectItem = Default
14
14
  hideSearchIcon?: boolean;
15
15
  isSearchable?: boolean;
16
16
  isClearable?: boolean;
17
+ isClearableIfDisabled?: boolean;
17
18
  isClientSearchDisabled?: boolean;
18
19
  ignoreInputValueFiltering?: boolean;
19
20
  ignoreTriggerWidth?: boolean;
@@ -3,8 +3,8 @@ import { useBreakpoint } from "../../../../hooks/useBreakpoint.js";
3
3
  import { SelectContext } from "./select.context.js";
4
4
  import { SelectDesktop } from "./SelectDesktop.js";
5
5
  import { SelectMobile } from "./SelectMobile.js";
6
- import { c } from "react/compiler-runtime";
7
6
  import { jsx } from "react/jsx-runtime";
7
+ import { c } from "react/compiler-runtime";
8
8
  //#region src/components/inputs/Selection/shared/SelectBase.tsx
9
9
  var SelectBase = (dProps) => {
10
10
  const $ = c(21);