@ceed/ads 1.40.1 → 1.41.1

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
@@ -415,13 +415,17 @@ var IconButton_default = IconButton;
415
415
  var import_react5 = require("react");
416
416
  function useControlledState(controlledValue, defaultValue, onChange) {
417
417
  const { current: isControlled } = (0, import_react5.useRef)(controlledValue !== void 0);
418
- const [internalValue, setInternalValue] = (0, import_react5.useState)(controlledValue ?? defaultValue);
419
- const displayValue = isControlled ? controlledValue : internalValue;
418
+ const [internalValue, setInternalValue] = (0, import_react5.useState)(controlledValue !== void 0 ? controlledValue : defaultValue);
419
+ const hasWarnedRef = (0, import_react5.useRef)(false);
420
420
  (0, import_react5.useEffect)(() => {
421
- if (isControlled) {
422
- setInternalValue(controlledValue);
423
- }
421
+ if (false) return;
422
+ if (hasWarnedRef.current || isControlled === (controlledValue !== void 0)) return;
423
+ hasWarnedRef.current = true;
424
+ console.warn(
425
+ isControlled ? "useControlledState: A component is changing a controlled input to be uncontrolled. Pass `null` instead of `undefined` to keep it controlled with an empty value." : "useControlledState: A component is changing an uncontrolled input to be controlled. Pass `null` instead of `undefined` for the initial empty value to make it controlled from the first render."
426
+ );
424
427
  }, [isControlled, controlledValue]);
428
+ const displayValue = isControlled ? controlledValue : internalValue;
425
429
  const handleChange = (0, import_react5.useCallback)(
426
430
  (value) => {
427
431
  const newValue = typeof value === "function" ? value(displayValue) : value;
@@ -528,6 +532,7 @@ var AutocompleteListBox = import_react6.default.forwardRef((props, ref) => {
528
532
  )
529
533
  ))));
530
534
  });
535
+ var EMPTY_MULTIPLE_VALUE = [];
531
536
  var autocompleteDeleteSize = {
532
537
  sm: "20px",
533
538
  md: "24px",
@@ -570,9 +575,9 @@ function Autocomplete(props) {
570
575
  className,
571
576
  ...innerProps
572
577
  } = props;
573
- const [_value, setValue] = useControlledState(
578
+ const [rawValue, setValue] = useControlledState(
574
579
  props.value,
575
- props.defaultValue || "",
580
+ props.defaultValue ?? null,
576
581
  (0, import_react6.useCallback)(
577
582
  (value2) => onChange?.({
578
583
  target: {
@@ -583,6 +588,7 @@ function Autocomplete(props) {
583
588
  [onChange, props.name]
584
589
  )
585
590
  );
591
+ const _value = rawValue ?? (props.multiple ? EMPTY_MULTIPLE_VALUE : "");
586
592
  const options = (0, import_react6.useMemo)(
587
593
  () => props.options.map((option) => {
588
594
  if (typeof option !== "object") {
@@ -643,7 +649,7 @@ function Autocomplete(props) {
643
649
  (event, value2) => {
644
650
  const newValue = value2;
645
651
  const _value2 = Array.isArray(newValue) ? newValue.map((value3) => value3.value) : newValue?.value;
646
- setValue(_value2);
652
+ setValue(_value2 ?? null);
647
653
  if (Array.isArray(newValue) && newValue.map((value3) => optionMap.get(value3.value)) || optionMap.get(newValue?.value)) {
648
654
  onChangeComplete?.({
649
655
  ...event,
@@ -1965,6 +1971,10 @@ var Input = import_react18.default.forwardRef((props, ref) => {
1965
1971
  onChange,
1966
1972
  name,
1967
1973
  type,
1974
+ // NOTE: value/defaultValue는 아래에서 직접 다루므로 innerProps 스프레드에서 제외한다.
1975
+ // defaultValue가 스프레드에 남으면 항상 정의되는 value와 함께 DOM input에 도달해 React가 경고한다.
1976
+ value: valueProp,
1977
+ defaultValue: defaultValueProp,
1968
1978
  // NOTE: 스타일 관련된 props는 최상위 엘리먼트에 적용한다.
1969
1979
  sx,
1970
1980
  className,
@@ -1977,8 +1987,8 @@ var Input = import_react18.default.forwardRef((props, ref) => {
1977
1987
  }
1978
1988
  const [passwordVisible, setPasswordVisible] = (0, import_react18.useState)(false);
1979
1989
  const [value, setValue] = useControlledState(
1980
- props.value,
1981
- props.defaultValue,
1990
+ valueProp,
1991
+ defaultValueProp ?? null,
1982
1992
  (0, import_react18.useCallback)(
1983
1993
  (value2) => {
1984
1994
  onChange?.({
@@ -1997,8 +2007,9 @@ var Input = import_react18.default.forwardRef((props, ref) => {
1997
2007
  setValue(e.target.value);
1998
2008
  };
1999
2009
  const handleClear = () => {
2000
- setValue(props.defaultValue || "");
2010
+ setValue(defaultValueProp || "");
2001
2011
  };
2012
+ const displayValue = valueProp !== void 0 ? valueProp : value;
2002
2013
  const handleTogglePasswordVisibility = () => {
2003
2014
  setPasswordVisible((prev) => !prev);
2004
2015
  };
@@ -2008,7 +2019,7 @@ var Input = import_react18.default.forwardRef((props, ref) => {
2008
2019
  const input = /* @__PURE__ */ import_react18.default.createElement(
2009
2020
  MotionInput,
2010
2021
  {
2011
- value,
2022
+ value: displayValue ?? "",
2012
2023
  name,
2013
2024
  onChange: handleChange,
2014
2025
  required,
@@ -2029,7 +2040,7 @@ var Input = import_react18.default.forwardRef((props, ref) => {
2029
2040
  "aria-label": passwordVisible ? "Hide password" : "Show password"
2030
2041
  },
2031
2042
  passwordVisible ? /* @__PURE__ */ import_react18.default.createElement(import_VisibilityOff.default, null) : /* @__PURE__ */ import_react18.default.createElement(import_Visibility.default, null)
2032
- )) : null : enableClearable ? /* @__PURE__ */ import_react18.default.createElement(Stack_default, { gap: 1, direction: "row" }, innerProps.endDecorator, value && /* @__PURE__ */ import_react18.default.createElement(
2043
+ )) : null : enableClearable ? /* @__PURE__ */ import_react18.default.createElement(Stack_default, { gap: 1, direction: "row" }, innerProps.endDecorator, displayValue && /* @__PURE__ */ import_react18.default.createElement(
2033
2044
  IconButton_default,
2034
2045
  {
2035
2046
  onMouseDown: (e) => e.preventDefault(),
@@ -2267,7 +2278,7 @@ var CurrencyInput = import_react19.default.forwardRef(function CurrencyInput2(in
2267
2278
  const { symbol, thousandSeparator, decimalSeparator, placeholder, fixedDecimalScale, decimalScale } = useCurrencySetting(props);
2268
2279
  const [_value, setValue] = useControlledState(
2269
2280
  props.value,
2270
- props.defaultValue,
2281
+ props.defaultValue ?? null,
2271
2282
  (0, import_react19.useCallback)((value2) => onChange?.({ target: { name, value: value2 } }), [onChange, name])
2272
2283
  );
2273
2284
  const value = (0, import_react19.useMemo)(() => {
@@ -2282,22 +2293,17 @@ var CurrencyInput = import_react19.default.forwardRef(function CurrencyInput2(in
2282
2293
  }
2283
2294
  return props.max;
2284
2295
  }, [props.max, useMinorUnit, decimalScale]);
2285
- const [isOverLimit, setIsOverLimit] = (0, import_react19.useState)(!!max && !!value && value > max);
2296
+ const isOverLimit = (0, import_react19.useMemo)(() => max != null && value != null && value > max, [max, value]);
2286
2297
  const handleChange = (0, import_react19.useCallback)(
2287
2298
  (event) => {
2288
2299
  if (event.target.value === "") {
2289
- setValue(void 0);
2300
+ setValue(null);
2290
2301
  return;
2291
2302
  }
2292
2303
  const amount = useMinorUnit ? Number(decimalSeparator ? event.target.value?.replace(decimalSeparator, "") : event.target.value) : Number(event.target.value);
2293
- if (!!max && Number(event.target.value) > max) {
2294
- setIsOverLimit(true);
2295
- } else {
2296
- setIsOverLimit(false);
2297
- }
2298
2304
  setValue(amount);
2299
2305
  },
2300
- [decimalSeparator, max, useMinorUnit, setValue]
2306
+ [decimalSeparator, useMinorUnit, setValue]
2301
2307
  );
2302
2308
  return /* @__PURE__ */ import_react19.default.createElement(
2303
2309
  CurrencyInputRoot,
@@ -2975,11 +2981,15 @@ var DatePicker = (0, import_react21.forwardRef)((inProps, ref) => {
2975
2981
  } = props;
2976
2982
  const innerRef = (0, import_react21.useRef)(null);
2977
2983
  const buttonRef = (0, import_react21.useRef)(null);
2978
- const [value, setValue] = useControlledState(
2984
+ const [rawValue, setValue] = useControlledState(
2979
2985
  props.value,
2980
- props.defaultValue || "",
2981
- (0, import_react21.useCallback)((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
2986
+ props.defaultValue ?? null,
2987
+ (0, import_react21.useCallback)(
2988
+ (value2) => onChange?.({ target: { name: props.name, value: value2 ?? "" } }),
2989
+ [props.name, onChange]
2990
+ )
2982
2991
  );
2992
+ const value = rawValue ?? "";
2983
2993
  const isAlphabeticDisplay = hasAlphabeticMonth(displayFormat);
2984
2994
  const [displayValue, setDisplayValue] = (0, import_react21.useState)(
2985
2995
  () => value ? formatValueString(parseDate(value, format), displayFormat, locale) : ""
@@ -4693,7 +4703,8 @@ function Component(props, apiRef) {
4693
4703
  const totalSize = virtualizer.getTotalSize();
4694
4704
  const virtualizedItems = virtualizer.getVirtualItems();
4695
4705
  const showNoRowsOverlay = !loading && rowCount === 0;
4696
- const totalColCount = Math.max(1, columns.length + (checkboxSelection ? 1 : 0));
4706
+ const showFillerColumn = columns.length > 0 && columns.every((c) => !!c.width);
4707
+ const totalColCount = Math.max(1, columns.length + (checkboxSelection ? 1 : 0) + (showFillerColumn ? 1 : 0));
4697
4708
  const getRowClickHandler = (0, import_react29.useCallback)(
4698
4709
  (row, rowId) => (e) => {
4699
4710
  onRowClick?.({ row, rowId }, e);
@@ -4884,7 +4895,7 @@ function Component(props, apiRef) {
4884
4895
  minWidth: c.minWidth ?? "50px"
4885
4896
  }
4886
4897
  }
4887
- ))), /* @__PURE__ */ import_react29.default.createElement("thead", null, processedColumnGroups && processedColumnGroups.groups.length > 0 && processedColumnGroups.groups.map((levelGroups, level) => /* @__PURE__ */ import_react29.default.createElement("tr", { key: `group-level-${level}` }, checkboxSelection && level === 0 && /* @__PURE__ */ import_react29.default.createElement(
4898
+ )), showFillerColumn && /* @__PURE__ */ import_react29.default.createElement("col", { style: { minWidth: 0 } })), /* @__PURE__ */ import_react29.default.createElement("thead", null, processedColumnGroups && processedColumnGroups.groups.length > 0 && processedColumnGroups.groups.map((levelGroups, level) => /* @__PURE__ */ import_react29.default.createElement("tr", { key: `group-level-${level}` }, checkboxSelection && level === 0 && /* @__PURE__ */ import_react29.default.createElement(
4888
4899
  "th",
4889
4900
  {
4890
4901
  rowSpan: processedColumnGroups.maxLevel + 2,
@@ -4913,7 +4924,13 @@ function Component(props, apiRef) {
4913
4924
  },
4914
4925
  group.headerName ?? group.groupId
4915
4926
  ), emptyCells > 0 && Array.from({ length: emptyCells }).map((_2, i) => /* @__PURE__ */ import_react29.default.createElement("th", { key: `empty-between-${level}-${groupIndex}-${i}`, colSpan: 1 })));
4916
- }))), /* @__PURE__ */ import_react29.default.createElement("tr", null, (!processedColumnGroups || processedColumnGroups.groups.length === 0) && checkboxSelection && /* @__PURE__ */ import_react29.default.createElement(
4927
+ }), showFillerColumn && level === 0 && /* @__PURE__ */ import_react29.default.createElement(
4928
+ "th",
4929
+ {
4930
+ "aria-hidden": "true",
4931
+ rowSpan: processedColumnGroups.maxLevel + 2
4932
+ }
4933
+ ))), /* @__PURE__ */ import_react29.default.createElement("tr", null, (!processedColumnGroups || processedColumnGroups.groups.length === 0) && checkboxSelection && /* @__PURE__ */ import_react29.default.createElement(
4917
4934
  "th",
4918
4935
  {
4919
4936
  style: {
@@ -4936,7 +4953,7 @@ function Component(props, apiRef) {
4936
4953
  ...c
4937
4954
  }
4938
4955
  )
4939
- )))), /* @__PURE__ */ import_react29.default.createElement(
4956
+ )), showFillerColumn && (!processedColumnGroups || processedColumnGroups.groups.length === 0) && /* @__PURE__ */ import_react29.default.createElement("th", { "aria-hidden": "true" }))), /* @__PURE__ */ import_react29.default.createElement(
4940
4957
  VirtualizedTableBody,
4941
4958
  {
4942
4959
  ref: tableBodyRef,
@@ -5035,7 +5052,8 @@ function Component(props, apiRef) {
5035
5052
  editMode,
5036
5053
  noWrap: props.noWrap
5037
5054
  }
5038
- )
5055
+ ),
5056
+ showFillerColumn && /* @__PURE__ */ import_react29.default.createElement("td", { "aria-hidden": "true" })
5039
5057
  );
5040
5058
  })
5041
5059
  ), Footer && /* @__PURE__ */ import_react29.default.createElement(Footer, null))
@@ -5264,11 +5282,15 @@ var DateRangePicker = (0, import_react30.forwardRef)((inProps, ref) => {
5264
5282
  } = props;
5265
5283
  const innerRef = (0, import_react30.useRef)(null);
5266
5284
  const buttonRef = (0, import_react30.useRef)(null);
5267
- const [value, setValue] = useControlledState(
5285
+ const [rawValue, setValue] = useControlledState(
5268
5286
  props.value,
5269
- props.defaultValue || "",
5270
- (0, import_react30.useCallback)((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
5287
+ props.defaultValue ?? null,
5288
+ (0, import_react30.useCallback)(
5289
+ (value2) => onChange?.({ target: { name: props.name, value: value2 ?? "" } }),
5290
+ [props.name, onChange]
5291
+ )
5271
5292
  );
5293
+ const value = rawValue ?? "";
5272
5294
  const isAlphabeticDisplay = hasAlphabeticMonth2(displayFormat);
5273
5295
  const [displayValue, setDisplayValue] = (0, import_react30.useState)(
5274
5296
  () => value ? formatValueString2(parseDates(value, format), displayFormat, locale) : ""
@@ -5616,6 +5638,7 @@ var import_react34 = __toESM(require("react"));
5616
5638
  var import_Search = __toESM(require("@mui/icons-material/Search"));
5617
5639
  var import_joy44 = require("@mui/joy");
5618
5640
  var import_react_virtual3 = require("@tanstack/react-virtual");
5641
+ var EMPTY_VALUE = [];
5619
5642
  function LabelWithTooltip(props) {
5620
5643
  const { label, size } = props;
5621
5644
  const labelContentRef = (0, import_react34.useRef)(null);
@@ -5663,11 +5686,12 @@ function FilterableCheckboxGroup(inProps) {
5663
5686
  } = props;
5664
5687
  const [searchTerm, setSearchTerm] = (0, import_react34.useState)("");
5665
5688
  const [sortedOptions, setSortedOptions] = (0, import_react34.useState)(options);
5666
- const [internalValue, setInternalValue] = useControlledState(
5689
+ const [rawValue, setInternalValue] = useControlledState(
5667
5690
  value,
5668
- value ?? [],
5669
- (0, import_react34.useCallback)((newValue) => onChange?.(newValue), [onChange])
5691
+ value ?? EMPTY_VALUE,
5692
+ (0, import_react34.useCallback)((newValue) => onChange?.(newValue ?? []), [onChange])
5670
5693
  );
5694
+ const internalValue = rawValue ?? EMPTY_VALUE;
5671
5695
  const parentRef = (0, import_react34.useRef)(null);
5672
5696
  const isInitialSortRef = (0, import_react34.useRef)(false);
5673
5697
  const prevOptionsRef = (0, import_react34.useRef)([...options]);
@@ -6202,11 +6226,15 @@ var MonthRangePicker = (0, import_react39.forwardRef)((inProps, ref) => {
6202
6226
  const isAlphabeticDisplay = hasAlphabeticMonth3(displayFormat);
6203
6227
  const innerRef = (0, import_react39.useRef)(null);
6204
6228
  const buttonRef = (0, import_react39.useRef)(null);
6205
- const [value, setValue] = useControlledState(
6229
+ const [rawValue, setValue] = useControlledState(
6206
6230
  props.value,
6207
- props.defaultValue || "",
6208
- (0, import_react39.useCallback)((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
6231
+ props.defaultValue ?? null,
6232
+ (0, import_react39.useCallback)(
6233
+ (value2) => onChange?.({ target: { name: props.name, value: value2 ?? "" } }),
6234
+ [props.name, onChange]
6235
+ )
6209
6236
  );
6237
+ const value = rawValue ?? "";
6210
6238
  const [displayValue, setDisplayValue] = (0, import_react39.useState)(
6211
6239
  () => value ? formatValueString3(parseDates2(value), displayFormat, locale) : ""
6212
6240
  );
@@ -6433,7 +6461,7 @@ function CurrencyInput3(props) {
6433
6461
  const [internalValue, setInternalValue] = useControlledState(value, value, onChange);
6434
6462
  const handleCurrencyChange = (0, import_react41.useCallback)(
6435
6463
  (event) => {
6436
- const newValue = event.target.value;
6464
+ const newValue = event.target.value ?? void 0;
6437
6465
  setInternalValue(newValue);
6438
6466
  },
6439
6467
  [setInternalValue]
@@ -6466,7 +6494,7 @@ function CurrencyRange(props) {
6466
6494
  const maxValue = internalValue?.[1];
6467
6495
  const handleMinChange = (0, import_react42.useCallback)(
6468
6496
  (event) => {
6469
- const newMinValue = event.target.value;
6497
+ const newMinValue = event.target.value ?? void 0;
6470
6498
  const currentMaxValue = maxValue;
6471
6499
  if (newMinValue !== void 0 && currentMaxValue !== void 0) {
6472
6500
  setInternalValue([newMinValue, currentMaxValue]);
@@ -6480,7 +6508,7 @@ function CurrencyRange(props) {
6480
6508
  );
6481
6509
  const handleMaxChange = (0, import_react42.useCallback)(
6482
6510
  (event) => {
6483
- const newMaxValue = event.target.value;
6511
+ const newMaxValue = event.target.value ?? void 0;
6484
6512
  const currentMinValue = minValue;
6485
6513
  if (currentMinValue !== void 0 && newMaxValue !== void 0) {
6486
6514
  setInternalValue([currentMinValue, newMaxValue]);
@@ -6586,34 +6614,30 @@ var PercentageInput = import_react43.default.forwardRef(
6586
6614
  } = props;
6587
6615
  const [_value, setValue] = useControlledState(
6588
6616
  props.value,
6589
- props.defaultValue,
6617
+ props.defaultValue ?? null,
6590
6618
  (0, import_react43.useCallback)((value2) => onChange?.({ target: { name, value: value2 } }), [onChange, name])
6591
6619
  );
6592
- const [internalError, setInternalError] = (0, import_react43.useState)(
6593
- max && _value && _value > max || min && _value && _value < min
6594
- );
6595
6620
  const value = (0, import_react43.useMemo)(() => {
6596
6621
  if (_value && useMinorUnit) {
6597
6622
  return _value / Math.pow(10, maxDecimalScale);
6598
6623
  }
6599
6624
  return _value;
6600
6625
  }, [_value, useMinorUnit, maxDecimalScale]);
6626
+ const internalError = (0, import_react43.useMemo)(
6627
+ () => value != null && (max != null && value > max || min != null && value < min),
6628
+ [max, min, value]
6629
+ );
6601
6630
  const handleChange = (0, import_react43.useCallback)(
6602
6631
  (event) => {
6603
6632
  if (event.target.value === "") {
6604
- setValue(void 0);
6633
+ setValue(null);
6605
6634
  return;
6606
6635
  }
6607
6636
  const originalAmount = Number(event.target.value);
6608
- if (min && originalAmount < min || max && originalAmount > max) {
6609
- setInternalError(true);
6610
- } else {
6611
- setInternalError(false);
6612
- }
6613
6637
  const amount = useMinorUnit ? padDecimal(originalAmount, maxDecimalScale) : originalAmount;
6614
6638
  setValue(amount);
6615
6639
  },
6616
- [setValue, useMinorUnit, maxDecimalScale, min, max]
6640
+ [setValue, useMinorUnit, maxDecimalScale]
6617
6641
  );
6618
6642
  return /* @__PURE__ */ import_react43.default.createElement(
6619
6643
  PercentageInputRoot,
@@ -6666,7 +6690,7 @@ var PercentageInput3 = ({
6666
6690
  PercentageInput,
6667
6691
  {
6668
6692
  value: _value,
6669
- onChange: (event) => setValue(event.target.value),
6693
+ onChange: (event) => setValue(event.target.value ?? void 0),
6670
6694
  useMinorUnit,
6671
6695
  maxDecimalScale,
6672
6696
  min,
@@ -6690,7 +6714,7 @@ function PercentageRange(props) {
6690
6714
  const maxValue = internalValue?.[1];
6691
6715
  const handleMinChange = (0, import_react45.useCallback)(
6692
6716
  (event) => {
6693
- const newMinValue = event.target.value;
6717
+ const newMinValue = event.target.value ?? void 0;
6694
6718
  const currentMaxValue = maxValue;
6695
6719
  if (newMinValue !== void 0) {
6696
6720
  setInternalValue([newMinValue, currentMaxValue || null]);
@@ -6702,7 +6726,7 @@ function PercentageRange(props) {
6702
6726
  );
6703
6727
  const handleMaxChange = (0, import_react45.useCallback)(
6704
6728
  (event) => {
6705
- const newMaxValue = event.target.value;
6729
+ const newMaxValue = event.target.value ?? void 0;
6706
6730
  const currentMinValue = minValue;
6707
6731
  if (newMaxValue !== void 0) {
6708
6732
  setInternalValue([currentMinValue || null, newMaxValue]);
@@ -6756,7 +6780,7 @@ function Autocomplete2(props) {
6756
6780
  const autocompleteValue = typeof internalValue === "string" || typeof internalValue === "number" ? String(internalValue) : void 0;
6757
6781
  const handleChange = (0, import_react46.useCallback)(
6758
6782
  (event) => {
6759
- const val = event.target.value;
6783
+ const val = event.target.value ?? void 0;
6760
6784
  if (val) {
6761
6785
  const numVal = Number(val);
6762
6786
  setInternalValue(!isNaN(numVal) && isFinite(numVal) ? numVal : val);
@@ -7544,11 +7568,15 @@ var MonthPicker = (0, import_react52.forwardRef)((inProps, ref) => {
7544
7568
  } = props;
7545
7569
  const innerRef = (0, import_react52.useRef)(null);
7546
7570
  const buttonRef = (0, import_react52.useRef)(null);
7547
- const [value, setValue, isControlled] = useControlledState(
7571
+ const [rawValue, setValue, isControlled] = useControlledState(
7548
7572
  props.value,
7549
- props.defaultValue || "",
7550
- (0, import_react52.useCallback)((value2) => onChange?.({ target: { name: props.name, value: value2 } }), [props.name, onChange])
7573
+ props.defaultValue ?? null,
7574
+ (0, import_react52.useCallback)(
7575
+ (value2) => onChange?.({ target: { name: props.name, value: value2 ?? "" } }),
7576
+ [props.name, onChange]
7577
+ )
7551
7578
  );
7579
+ const value = rawValue ?? "";
7552
7580
  const getFormattedDisplayValue = (0, import_react52.useCallback)(
7553
7581
  (inputValue) => {
7554
7582
  if (!inputValue) return "";