@mcurros2/microm 1.1.72-0 → 1.1.74-0
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.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AlertProps, DefaultMantineColor, Variants, StepperProps, MantineTheme, TextareaProps, TextInputProps, MantineNumberSize, MantineColor, PasswordInputProps, NotificationProps, CheckboxProps, ProgressProps, ButtonProps, ActionIconProps, NumberInputProps, ImageProps, MultiSelectProps, SelectItem, BadgeVariant, MantineSize, CardProps, OverlayProps, TransitionProps, AccordionProps, PinInputProps, SwitchProps, Radio, SelectProps, GroupProps, AvatarProps, AutocompleteItem, AutocompleteProps, DefaultProps, BadgeProps } from "@mantine/core";
|
|
2
|
-
import React, { JSXElementConstructor, ReactElement, ReactNode, PropsWithChildren, ComponentType, useState, Dispatch, SetStateAction, KeyboardEvent, CSSProperties, ComponentPropsWithoutRef
|
|
2
|
+
import React, { JSXElementConstructor, ReactElement, ReactNode, PropsWithChildren, ComponentType, useState, Dispatch, SetStateAction, KeyboardEvent, RefObject, CSSProperties, ComponentPropsWithoutRef } from "react";
|
|
3
3
|
import { hasLength, isInRange, isNotEmpty, matches, UseFormReturnType } from "@mantine/form";
|
|
4
4
|
import { LooseKeys } from "@mantine/form/lib/types";
|
|
5
5
|
import { IconProps } from "@tabler/icons-react";
|
|
@@ -1753,7 +1753,7 @@ export interface SearchFilterInputProps extends MultiSelectProps {
|
|
|
1753
1753
|
[x: string]: any;
|
|
1754
1754
|
}
|
|
1755
1755
|
export const SearchFilterInputDefaultProps: Partial<SearchFilterInputProps>;
|
|
1756
|
-
export
|
|
1756
|
+
export const SearchFilterInput: import("react").ForwardRefExoticComponent<Omit<SearchFilterInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
1757
1757
|
export function useFirstVisible(ref: React.RefObject<HTMLElement>, options?: IntersectionObserverInit): boolean;
|
|
1758
1758
|
export interface OpenFormProps {
|
|
1759
1759
|
entity: Entity<EntityDefinition>;
|
|
@@ -1957,6 +1957,7 @@ export interface UseDataGridToolbarFiltersProps {
|
|
|
1957
1957
|
filtersFormSize: MantineNumberSize;
|
|
1958
1958
|
visibleFilters?: string[];
|
|
1959
1959
|
initialColumnFilters?: ColumnsObject;
|
|
1960
|
+
filterInputRef: RefObject<HTMLInputElement>;
|
|
1960
1961
|
}
|
|
1961
1962
|
export function useDataGridToolbarFilters(props: UseDataGridToolbarFiltersProps): {
|
|
1962
1963
|
handleFilterButtonClick: (e: React.MouseEvent) => Promise<void>;
|