barook-ui-library 0.1.16 → 0.1.18

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 CHANGED
@@ -5,7 +5,7 @@ export { ListItemAvatarProps, ListItemButtonProps, ListItemIconProps, ListItemPr
5
5
  import * as _mui_system from '@mui/system';
6
6
  import { StandardCSSProperties } from '@mui/system';
7
7
  import * as react from 'react';
8
- import { PropsWithChildren, ReactNode, Dispatch, SetStateAction, ElementType, JSX, Ref } from 'react';
8
+ import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, ElementType, JSX, Ref } from 'react';
9
9
  import * as _mui_types from '@mui/types';
10
10
  import { OverridableComponent } from '@mui/types';
11
11
  import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
@@ -337,4 +337,22 @@ type RadioGroupKitProps = {
337
337
  } & Omit<RadioProps, "checked" | "onChange">;
338
338
  declare function Radio({ checked, ...rest }: RadioGroupKitProps): react_jsx_runtime.JSX.Element;
339
339
 
340
- export { AppThemeProvider, AutoCompleteField, type AutoCompleteFieldProps, Avatar, Backdrop, Badge, BottomSheet, type BottomSheetProps, Box, Button, Card, CardContent, CheckBox, Chip, CircularProgress, ContainedTab, ContainedTabs, Container, DatePickerBottomSheet, type DatePickerBottomSheetProps, DatePickerField, Dialog, type DialogProps, Divider, DotProgress, DrawerMui, ExcelButton, type ExtendedTypographyProps, Grid, HelperText, HelperTextContent, type HelperTextContentProps, type HelperTextProps, IconButton, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Menu, MenuItem, Modal, MultiSelectField, MultiSelectRadioField, Notification, NumberInputField, type NumberInputFieldProps, type OptionsType, OtpField, Paper, PasswordField, PhoneInputField, type PhoneInputFieldProps, PriceView, Radio, RadioBox, SearchField, type SearchFieldProps, SelectDialog, type SelectDialogProps, SelectField, type SelectFieldProps, type SelectOption, Skeleton, Slider, Stack, StepperContainer, SvgIcon, Tab, Tabs, TextField, type TextFieldProps, Tooltip, Typography };
340
+ type CardField = {
341
+ title: string;
342
+ className?: string;
343
+ value?: string;
344
+ test?: react__default.ReactNode;
345
+ };
346
+ type CardColumn = {
347
+ fields: CardField[];
348
+ };
349
+ type CardTableProps = {
350
+ title?: string;
351
+ subtitle?: string;
352
+ logo?: react__default.ReactNode;
353
+ columns: CardColumn[];
354
+ iconDetail?: react__default.ReactNode;
355
+ };
356
+ declare const CardTable: ({ title, subtitle, logo, columns, iconDetail, }: CardTableProps) => react_jsx_runtime.JSX.Element;
357
+
358
+ export { AppThemeProvider, AutoCompleteField, type AutoCompleteFieldProps, Avatar, Backdrop, Badge, BottomSheet, type BottomSheetProps, Box, Button, Card, CardContent, CardTable, CheckBox, Chip, CircularProgress, ContainedTab, ContainedTabs, Container, DatePickerBottomSheet, type DatePickerBottomSheetProps, DatePickerField, Dialog, type DialogProps, Divider, DotProgress, DrawerMui, ExcelButton, type ExtendedTypographyProps, Grid, HelperText, HelperTextContent, type HelperTextContentProps, type HelperTextProps, IconButton, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Menu, MenuItem, Modal, MultiSelectField, MultiSelectRadioField, Notification, NumberInputField, type NumberInputFieldProps, type OptionsType, OtpField, Paper, PasswordField, PhoneInputField, type PhoneInputFieldProps, PriceView, Radio, RadioBox, SearchField, type SearchFieldProps, SelectDialog, type SelectDialogProps, SelectField, type SelectFieldProps, type SelectOption, Skeleton, Slider, Stack, StepperContainer, SvgIcon, Tab, Tabs, TextField, type TextFieldProps, Tooltip, Typography };
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ export { ListItemAvatarProps, ListItemButtonProps, ListItemIconProps, ListItemPr
5
5
  import * as _mui_system from '@mui/system';
6
6
  import { StandardCSSProperties } from '@mui/system';
7
7
  import * as react from 'react';
8
- import { PropsWithChildren, ReactNode, Dispatch, SetStateAction, ElementType, JSX, Ref } from 'react';
8
+ import react__default, { PropsWithChildren, ReactNode, Dispatch, SetStateAction, ElementType, JSX, Ref } from 'react';
9
9
  import * as _mui_types from '@mui/types';
10
10
  import { OverridableComponent } from '@mui/types';
11
11
  import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
@@ -337,4 +337,22 @@ type RadioGroupKitProps = {
337
337
  } & Omit<RadioProps, "checked" | "onChange">;
338
338
  declare function Radio({ checked, ...rest }: RadioGroupKitProps): react_jsx_runtime.JSX.Element;
339
339
 
340
- export { AppThemeProvider, AutoCompleteField, type AutoCompleteFieldProps, Avatar, Backdrop, Badge, BottomSheet, type BottomSheetProps, Box, Button, Card, CardContent, CheckBox, Chip, CircularProgress, ContainedTab, ContainedTabs, Container, DatePickerBottomSheet, type DatePickerBottomSheetProps, DatePickerField, Dialog, type DialogProps, Divider, DotProgress, DrawerMui, ExcelButton, type ExtendedTypographyProps, Grid, HelperText, HelperTextContent, type HelperTextContentProps, type HelperTextProps, IconButton, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Menu, MenuItem, Modal, MultiSelectField, MultiSelectRadioField, Notification, NumberInputField, type NumberInputFieldProps, type OptionsType, OtpField, Paper, PasswordField, PhoneInputField, type PhoneInputFieldProps, PriceView, Radio, RadioBox, SearchField, type SearchFieldProps, SelectDialog, type SelectDialogProps, SelectField, type SelectFieldProps, type SelectOption, Skeleton, Slider, Stack, StepperContainer, SvgIcon, Tab, Tabs, TextField, type TextFieldProps, Tooltip, Typography };
340
+ type CardField = {
341
+ title: string;
342
+ className?: string;
343
+ value?: string;
344
+ test?: react__default.ReactNode;
345
+ };
346
+ type CardColumn = {
347
+ fields: CardField[];
348
+ };
349
+ type CardTableProps = {
350
+ title?: string;
351
+ subtitle?: string;
352
+ logo?: react__default.ReactNode;
353
+ columns: CardColumn[];
354
+ iconDetail?: react__default.ReactNode;
355
+ };
356
+ declare const CardTable: ({ title, subtitle, logo, columns, iconDetail, }: CardTableProps) => react_jsx_runtime.JSX.Element;
357
+
358
+ export { AppThemeProvider, AutoCompleteField, type AutoCompleteFieldProps, Avatar, Backdrop, Badge, BottomSheet, type BottomSheetProps, Box, Button, Card, CardContent, CardTable, CheckBox, Chip, CircularProgress, ContainedTab, ContainedTabs, Container, DatePickerBottomSheet, type DatePickerBottomSheetProps, DatePickerField, Dialog, type DialogProps, Divider, DotProgress, DrawerMui, ExcelButton, type ExtendedTypographyProps, Grid, HelperText, HelperTextContent, type HelperTextContentProps, type HelperTextProps, IconButton, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Menu, MenuItem, Modal, MultiSelectField, MultiSelectRadioField, Notification, NumberInputField, type NumberInputFieldProps, type OptionsType, OtpField, Paper, PasswordField, PhoneInputField, type PhoneInputFieldProps, PriceView, Radio, RadioBox, SearchField, type SearchFieldProps, SelectDialog, type SelectDialogProps, SelectField, type SelectFieldProps, type SelectOption, Skeleton, Slider, Stack, StepperContainer, SvgIcon, Tab, Tabs, TextField, type TextFieldProps, Tooltip, Typography };