@ctlyst.id/internal-ui 2.1.11 → 2.1.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +684 -649
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +366 -332
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -19,6 +19,10 @@ import * as axios from 'axios';
|
|
19
19
|
import { AxiosRequestConfig, AxiosInstance, AxiosResponse } from 'axios';
|
20
20
|
export { ThemeTypings } from '@chakra-ui/styled-system';
|
21
21
|
|
22
|
+
declare const AccordionEye: ({ position }: {
|
23
|
+
position?: 'left' | 'right';
|
24
|
+
}) => react_jsx_runtime.JSX.Element;
|
25
|
+
|
22
26
|
declare const AccordionIndicator: () => react_jsx_runtime.JSX.Element | null;
|
23
27
|
|
24
28
|
declare function CheckIcon(): react_jsx_runtime.JSX.Element;
|
@@ -226,6 +230,7 @@ interface TableStyleProps {
|
|
226
230
|
tableCell?: TableCellProps;
|
227
231
|
}
|
228
232
|
interface DataTableProps<T = unknown> extends BoxProps {
|
233
|
+
container?: BoxProps;
|
229
234
|
styles?: TableStyleProps;
|
230
235
|
columns: ColumnDef<T>[];
|
231
236
|
dataSource: T[] | undefined;
|
@@ -548,4 +553,4 @@ declare const ProviderContext: React__default.Context<ProviderContextObject>;
|
|
548
553
|
declare const useInternalUI: () => ProviderContextObject;
|
549
554
|
declare const Provider: FC<ProviderProps>;
|
550
555
|
|
551
|
-
export { AccordionIndicator, Alert, AlertAction, type AlertActionProps, AlertClose, type AlertCloseProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertStatus, AlertTitle, type AlertTitleProps, Anchor, type AnchorProps, Badge, type BadgeProps, BreadCrumb, type BreadCrumbParentProps, type BreadCrumbProps, Button, type ButtonProps, CardCustom as Card, type CardProps, CheckboxComponent as Checkbox, type CheckboxComponentProps, CheckboxGroupComponent as CheckboxGroup, type CheckboxGroupComponentProps, Chips, type ChipsProps, Counter, type CustomLoaderProps, _default as DataTable, type DataTableProps, type DataTableRefs, DatePickerMonth, type DatePickerMonthProps, Datepicker, type DatepickerProps, Dialog, type Environment, Field, type FieldProps, Header, type HeaderDataProps, type HeaderProps, InputAddonLeft, InputAddonRight, InputField, type InputFieldProps, Loader, type LoaderProps, Navigation as MainMenu, ModalBackButton, ModalBody, ModalCloseButton, ModalFooter, ModalHeader, MultiDatePickerMonth, type MultiDatePickerMonthProps, NavigationBar, type NavigationBarProps, type NavigationProps, Pagination, PaginationDetail, type PaginationDetailProps, PaginationFilter, type PaginationFilterProps, type PaginationProps, type Props, Provider, ProviderContext, Radio, RadioGroup, type RadioGroupComponentProps, type RadioProps, Rating, type RatingProps, Select, SelectAsync, SelectAsyncCreatable, type SelectAsyncCreatableProps, type SelectAsyncProps, SelectCreatable, type SelectCreatableProps, type SelectProps, Switch, type SwitchProps, Tab, type TableStyleProps, type TextAreaProps, TextareaField, type Theme, Uploader, type UploaderProps, type UploaderState, getTheme, theme, useAlertStyles, useDataTable, useFetcher, useInternalUI };
|
556
|
+
export { AccordionEye, AccordionIndicator, Alert, AlertAction, type AlertActionProps, AlertClose, type AlertCloseProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertStatus, AlertTitle, type AlertTitleProps, Anchor, type AnchorProps, Badge, type BadgeProps, BreadCrumb, type BreadCrumbParentProps, type BreadCrumbProps, Button, type ButtonProps, CardCustom as Card, type CardProps, CheckboxComponent as Checkbox, type CheckboxComponentProps, CheckboxGroupComponent as CheckboxGroup, type CheckboxGroupComponentProps, Chips, type ChipsProps, Counter, type CustomLoaderProps, _default as DataTable, type DataTableProps, type DataTableRefs, DatePickerMonth, type DatePickerMonthProps, Datepicker, type DatepickerProps, Dialog, type Environment, Field, type FieldProps, Header, type HeaderDataProps, type HeaderProps, InputAddonLeft, InputAddonRight, InputField, type InputFieldProps, Loader, type LoaderProps, Navigation as MainMenu, ModalBackButton, ModalBody, ModalCloseButton, ModalFooter, ModalHeader, MultiDatePickerMonth, type MultiDatePickerMonthProps, NavigationBar, type NavigationBarProps, type NavigationProps, Pagination, PaginationDetail, type PaginationDetailProps, PaginationFilter, type PaginationFilterProps, type PaginationProps, type Props, Provider, ProviderContext, Radio, RadioGroup, type RadioGroupComponentProps, type RadioProps, Rating, type RatingProps, Select, SelectAsync, SelectAsyncCreatable, type SelectAsyncCreatableProps, type SelectAsyncProps, SelectCreatable, type SelectCreatableProps, type SelectProps, Switch, type SwitchProps, Tab, type TableStyleProps, type TextAreaProps, TextareaField, type Theme, Uploader, type UploaderProps, type UploaderState, getTheme, theme, useAlertStyles, useDataTable, useFetcher, useInternalUI };
|
package/dist/index.d.ts
CHANGED
@@ -19,6 +19,10 @@ import * as axios from 'axios';
|
|
19
19
|
import { AxiosRequestConfig, AxiosInstance, AxiosResponse } from 'axios';
|
20
20
|
export { ThemeTypings } from '@chakra-ui/styled-system';
|
21
21
|
|
22
|
+
declare const AccordionEye: ({ position }: {
|
23
|
+
position?: 'left' | 'right';
|
24
|
+
}) => react_jsx_runtime.JSX.Element;
|
25
|
+
|
22
26
|
declare const AccordionIndicator: () => react_jsx_runtime.JSX.Element | null;
|
23
27
|
|
24
28
|
declare function CheckIcon(): react_jsx_runtime.JSX.Element;
|
@@ -226,6 +230,7 @@ interface TableStyleProps {
|
|
226
230
|
tableCell?: TableCellProps;
|
227
231
|
}
|
228
232
|
interface DataTableProps<T = unknown> extends BoxProps {
|
233
|
+
container?: BoxProps;
|
229
234
|
styles?: TableStyleProps;
|
230
235
|
columns: ColumnDef<T>[];
|
231
236
|
dataSource: T[] | undefined;
|
@@ -548,4 +553,4 @@ declare const ProviderContext: React__default.Context<ProviderContextObject>;
|
|
548
553
|
declare const useInternalUI: () => ProviderContextObject;
|
549
554
|
declare const Provider: FC<ProviderProps>;
|
550
555
|
|
551
|
-
export { AccordionIndicator, Alert, AlertAction, type AlertActionProps, AlertClose, type AlertCloseProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertStatus, AlertTitle, type AlertTitleProps, Anchor, type AnchorProps, Badge, type BadgeProps, BreadCrumb, type BreadCrumbParentProps, type BreadCrumbProps, Button, type ButtonProps, CardCustom as Card, type CardProps, CheckboxComponent as Checkbox, type CheckboxComponentProps, CheckboxGroupComponent as CheckboxGroup, type CheckboxGroupComponentProps, Chips, type ChipsProps, Counter, type CustomLoaderProps, _default as DataTable, type DataTableProps, type DataTableRefs, DatePickerMonth, type DatePickerMonthProps, Datepicker, type DatepickerProps, Dialog, type Environment, Field, type FieldProps, Header, type HeaderDataProps, type HeaderProps, InputAddonLeft, InputAddonRight, InputField, type InputFieldProps, Loader, type LoaderProps, Navigation as MainMenu, ModalBackButton, ModalBody, ModalCloseButton, ModalFooter, ModalHeader, MultiDatePickerMonth, type MultiDatePickerMonthProps, NavigationBar, type NavigationBarProps, type NavigationProps, Pagination, PaginationDetail, type PaginationDetailProps, PaginationFilter, type PaginationFilterProps, type PaginationProps, type Props, Provider, ProviderContext, Radio, RadioGroup, type RadioGroupComponentProps, type RadioProps, Rating, type RatingProps, Select, SelectAsync, SelectAsyncCreatable, type SelectAsyncCreatableProps, type SelectAsyncProps, SelectCreatable, type SelectCreatableProps, type SelectProps, Switch, type SwitchProps, Tab, type TableStyleProps, type TextAreaProps, TextareaField, type Theme, Uploader, type UploaderProps, type UploaderState, getTheme, theme, useAlertStyles, useDataTable, useFetcher, useInternalUI };
|
556
|
+
export { AccordionEye, AccordionIndicator, Alert, AlertAction, type AlertActionProps, AlertClose, type AlertCloseProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertStatus, AlertTitle, type AlertTitleProps, Anchor, type AnchorProps, Badge, type BadgeProps, BreadCrumb, type BreadCrumbParentProps, type BreadCrumbProps, Button, type ButtonProps, CardCustom as Card, type CardProps, CheckboxComponent as Checkbox, type CheckboxComponentProps, CheckboxGroupComponent as CheckboxGroup, type CheckboxGroupComponentProps, Chips, type ChipsProps, Counter, type CustomLoaderProps, _default as DataTable, type DataTableProps, type DataTableRefs, DatePickerMonth, type DatePickerMonthProps, Datepicker, type DatepickerProps, Dialog, type Environment, Field, type FieldProps, Header, type HeaderDataProps, type HeaderProps, InputAddonLeft, InputAddonRight, InputField, type InputFieldProps, Loader, type LoaderProps, Navigation as MainMenu, ModalBackButton, ModalBody, ModalCloseButton, ModalFooter, ModalHeader, MultiDatePickerMonth, type MultiDatePickerMonthProps, NavigationBar, type NavigationBarProps, type NavigationProps, Pagination, PaginationDetail, type PaginationDetailProps, PaginationFilter, type PaginationFilterProps, type PaginationProps, type Props, Provider, ProviderContext, Radio, RadioGroup, type RadioGroupComponentProps, type RadioProps, Rating, type RatingProps, Select, SelectAsync, SelectAsyncCreatable, type SelectAsyncCreatableProps, type SelectAsyncProps, SelectCreatable, type SelectCreatableProps, type SelectProps, Switch, type SwitchProps, Tab, type TableStyleProps, type TextAreaProps, TextareaField, type Theme, Uploader, type UploaderProps, type UploaderState, getTheme, theme, useAlertStyles, useDataTable, useFetcher, useInternalUI };
|