@konoma-development/react-components 0.2.12 → 0.2.14

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.
@@ -7555,7 +7555,7 @@ const IMaskInputFn = (props, ref) => React__default.createElement(IMaskInputClas
7555
7555
  const IMaskInput = React__default.forwardRef(IMaskInputFn);
7556
7556
 
7557
7557
  const baseClasses$b = {
7558
- controlClasses: "w-full h-10 rounded-krc-input px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none not-disabled:bg-white disabled:bg-secondary-50 disabled:text-secondary-400",
7558
+ controlClasses: "w-full h-10 rounded-krc-input px-3 py-2 outline-hidden placeholder:text-secondary-500 placeholder:text-sm text-secondary-900 text-sm disabled:pointer-events-none not-disabled:bg-white disabled:bg-secondary-50 disabled:text-secondary-900",
7559
7559
  wrapperClasses: "group flex flex-col gap-1",
7560
7560
  labelClasses: "flex flex-row justify-start text-sm font-medium text-secondary-900",
7561
7561
  iconLeftClasses: "absolute bottom-0 left-3 top-0 my-auto h-5 w-5 text-secondary-300",
@@ -22662,7 +22662,7 @@ function Table({
22662
22662
  const columnIndex = currentColumnsLeft.findIndex((col) => col.filterKey === triggeredFilter) >= 0 ? currentColumnsLeft.findIndex((col) => col.filterKey === triggeredFilter) : currentColumnsCenter.findIndex((col) => col.filterKey === triggeredFilter) >= 0 ? currentColumnsLeft.length + currentColumnsCenter.findIndex((col) => col.filterKey === triggeredFilter) : currentColumnsLeft.length + currentColumnsCenter.length + currentColumnsRight.findIndex((col) => col.filterKey === triggeredFilter);
22663
22663
  const columnElement = header.current?.children.item(columnIndex);
22664
22664
  if (columnElement) {
22665
- columnElement.scrollIntoView({ behavior: "smooth", block: "nearest", inline: "center" });
22665
+ columnElement.scrollIntoView({ behavior: "instant", block: "nearest", inline: "center" });
22666
22666
  }
22667
22667
  }, []);
22668
22668
  async function updateFilters(newFilters, triggeringFilterId) {