@ctlyst.id/internal-ui 5.6.5 → 5.6.7
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.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +741 -736
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +80 -75
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ export { Accordion, AccordionButton, AccordionButtonProps, AccordionIcon, Accord
|
|
|
5
5
|
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
6
6
|
import { SystemStyleObject, HTMLChakraProps, ThemingProps, ColorMode } from '@chakra-ui/system';
|
|
7
7
|
import * as React$1 from 'react';
|
|
8
|
-
import React__default, { PropsWithChildren, ReactNode, FC } from 'react';
|
|
8
|
+
import React__default, { PropsWithChildren, ElementType, ReactNode, FC } from 'react';
|
|
9
9
|
import * as _tanstack_react_table from '@tanstack/react-table';
|
|
10
10
|
import { ColumnDef, RowSelectionState, OnChangeFn, SortingState, ColumnPinningState, RowSelectionInstance, Row } from '@tanstack/react-table';
|
|
11
11
|
import { DatePickerProps } from 'react-datepicker';
|
|
@@ -136,7 +136,7 @@ interface BreadCrumbParentProps {
|
|
|
136
136
|
}
|
|
137
137
|
interface BreadCrumbProps {
|
|
138
138
|
title: string;
|
|
139
|
-
children?:
|
|
139
|
+
children?: React__default.ReactNode;
|
|
140
140
|
parents?: BreadCrumbParentProps[];
|
|
141
141
|
className?: string;
|
|
142
142
|
disableHome?: boolean;
|
|
@@ -144,8 +144,9 @@ interface BreadCrumbProps {
|
|
|
144
144
|
backButton?: () => void;
|
|
145
145
|
hideTitle?: boolean;
|
|
146
146
|
homeButton?: () => void;
|
|
147
|
+
as?: ElementType;
|
|
147
148
|
}
|
|
148
|
-
declare const BreadCrumb:
|
|
149
|
+
declare const BreadCrumb: React__default.FC<BreadCrumbProps>;
|
|
149
150
|
|
|
150
151
|
type ButtonProps = ButtonProps$1;
|
|
151
152
|
declare const Button: _chakra_ui_react.ComponentWithAs<"button", ButtonProps$1>;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { Accordion, AccordionButton, AccordionButtonProps, AccordionIcon, Accord
|
|
|
5
5
|
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
6
6
|
import { SystemStyleObject, HTMLChakraProps, ThemingProps, ColorMode } from '@chakra-ui/system';
|
|
7
7
|
import * as React$1 from 'react';
|
|
8
|
-
import React__default, { PropsWithChildren, ReactNode, FC } from 'react';
|
|
8
|
+
import React__default, { PropsWithChildren, ElementType, ReactNode, FC } from 'react';
|
|
9
9
|
import * as _tanstack_react_table from '@tanstack/react-table';
|
|
10
10
|
import { ColumnDef, RowSelectionState, OnChangeFn, SortingState, ColumnPinningState, RowSelectionInstance, Row } from '@tanstack/react-table';
|
|
11
11
|
import { DatePickerProps } from 'react-datepicker';
|
|
@@ -136,7 +136,7 @@ interface BreadCrumbParentProps {
|
|
|
136
136
|
}
|
|
137
137
|
interface BreadCrumbProps {
|
|
138
138
|
title: string;
|
|
139
|
-
children?:
|
|
139
|
+
children?: React__default.ReactNode;
|
|
140
140
|
parents?: BreadCrumbParentProps[];
|
|
141
141
|
className?: string;
|
|
142
142
|
disableHome?: boolean;
|
|
@@ -144,8 +144,9 @@ interface BreadCrumbProps {
|
|
|
144
144
|
backButton?: () => void;
|
|
145
145
|
hideTitle?: boolean;
|
|
146
146
|
homeButton?: () => void;
|
|
147
|
+
as?: ElementType;
|
|
147
148
|
}
|
|
148
|
-
declare const BreadCrumb:
|
|
149
|
+
declare const BreadCrumb: React__default.FC<BreadCrumbProps>;
|
|
149
150
|
|
|
150
151
|
type ButtonProps = ButtonProps$1;
|
|
151
152
|
declare const Button: _chakra_ui_react.ComponentWithAs<"button", ButtonProps$1>;
|