@bigbinary/neetoui 3.5.14 → 3.5.17
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/CHANGELOG.md +12 -0
- package/formik.js +3 -3
- package/index.d.ts +4 -3
- package/index.js +5 -5
- package/layouts.js +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ export type PageLoaderProps = { text?: string } & React.DetailedHTMLProps<
|
|
|
279
279
|
export interface PaginationProps {
|
|
280
280
|
pageSize: number;
|
|
281
281
|
count: number;
|
|
282
|
-
navigate
|
|
282
|
+
navigate?: (toPage: number) => void;
|
|
283
283
|
pageNo?: number;
|
|
284
284
|
siblingCount?: number;
|
|
285
285
|
className?: string;
|
|
@@ -418,6 +418,7 @@ export interface TooltipProps {
|
|
|
418
418
|
interactive?: boolean;
|
|
419
419
|
hideAfter?: number;
|
|
420
420
|
hideOnTargetExit?: boolean;
|
|
421
|
+
[key: string]: any;
|
|
421
422
|
}
|
|
422
423
|
|
|
423
424
|
export type TypographyProps = {
|
|
@@ -492,8 +493,8 @@ export const Tab: React.FC<TabProps> & {
|
|
|
492
493
|
|
|
493
494
|
type ToastrFunction = (
|
|
494
495
|
message: React.ReactNode,
|
|
495
|
-
buttonLabel
|
|
496
|
-
onClick
|
|
496
|
+
buttonLabel?: React.ReactNode,
|
|
497
|
+
onClick?: () => void
|
|
497
498
|
) => void;
|
|
498
499
|
|
|
499
500
|
export const Toastr: {
|