@pnkx-lib/ui 1.0.2 → 1.0.3
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/types/index.d.ts +4 -1
- package/dist/types/ui.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
@@ -22,7 +22,6 @@ import { RangePickerProps } from 'antd/es/date-picker';
|
|
22
22
|
import * as React_2 from 'react';
|
23
23
|
import { ReactDatePickerProps } from 'react-datepicker';
|
24
24
|
import { ReactNode } from 'react';
|
25
|
-
import { RowCommon } from '../../../../../../../../../../src/interface/common';
|
26
25
|
import { SelectProps } from 'antd';
|
27
26
|
import { SkeletonProps as SkeletonProps_2 } from 'antd';
|
28
27
|
import { SwitchProps } from 'antd';
|
@@ -182,6 +181,10 @@ export declare interface RangePickerFieldProps extends Omit<RangePickerProps, "v
|
|
182
181
|
customStyleDatePicker?: string;
|
183
182
|
}
|
184
183
|
|
184
|
+
declare interface RowCommon {
|
185
|
+
[x: string]: any;
|
186
|
+
}
|
187
|
+
|
185
188
|
export declare const SearchFiltersForm: <T extends FieldValues = FieldValues>({ initialValues, renderFilterFields, onSubmit, onReset, classNamesContainer, classNameWrapperForm, hideDefaultSubmit, hideResetButton, }: SearchFiltersFormProps<T> & Partial<UseFormReturn<T>>) => JSX.Element;
|
186
189
|
|
187
190
|
export declare interface SearchFiltersFormProps<T extends FieldValues> {
|
package/dist/types/ui.d.ts
CHANGED
@@ -12,7 +12,6 @@ import { ModalProps } from 'antd';
|
|
12
12
|
import { ParagraphProps } from 'antd/es/typography/Paragraph';
|
13
13
|
import { PopoverProps as PopoverProps_2 } from 'antd';
|
14
14
|
import { ReactNode } from 'react';
|
15
|
-
import { RowCommon } from '../../../../../../../../../../src/interface/common';
|
16
15
|
import { SkeletonProps as SkeletonProps_2 } from 'antd';
|
17
16
|
import { TableProps } from 'antd/lib/table';
|
18
17
|
import { TabsProps as TabsProps_2 } from 'antd';
|
@@ -87,6 +86,10 @@ export declare type PopoverProps = PopoverProps_2;
|
|
87
86
|
|
88
87
|
export declare type PopoverPropsUnion = BaseProps_2 & PopoverProps;
|
89
88
|
|
89
|
+
declare interface RowCommon {
|
90
|
+
[x: string]: any;
|
91
|
+
}
|
92
|
+
|
90
93
|
export declare const SearchFiltersForm: <T extends FieldValues = FieldValues>({ initialValues, renderFilterFields, onSubmit, onReset, classNamesContainer, classNameWrapperForm, hideDefaultSubmit, hideResetButton, }: SearchFiltersFormProps<T> & Partial<UseFormReturn<T>>) => JSX.Element;
|
91
94
|
|
92
95
|
export declare interface SearchFiltersFormProps<T extends FieldValues> {
|