next-recomponents 2.0.55 → 2.0.57

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
@@ -280,4 +280,17 @@ interface TableProps {
280
280
 
281
281
  declare function TableAdvanced(tableProps: TableProps): react_jsx_runtime.JSX.Element | null;
282
282
 
283
- export { Alert, Button, Container, DocumentViewer, Form, Input, Modal, MyCalendar, Pre, Select, Table, Table3, TableAdvanced, type TableButtonProps, type TableButtonProps as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useFormValues, usePopup, useResources };
283
+ interface TabContainerProps {
284
+ children: ReactNode;
285
+ labelMaxWidth?: number;
286
+ currentIndex?: number;
287
+ }
288
+ declare function TabContainer({ children, labelMaxWidth, currentIndex, }: TabContainerProps): react_jsx_runtime.JSX.Element;
289
+ interface TabItemProps {
290
+ label: string;
291
+ children: ReactNode;
292
+ disabled?: boolean;
293
+ }
294
+ declare function TabItem({ children }: TabItemProps): react_jsx_runtime.JSX.Element;
295
+
296
+ export { Alert, Button, Container, DocumentViewer, Form, Input, Modal, MyCalendar, Pre, Select, TabContainer, TabItem, Table, Table3, TableAdvanced, type TableButtonProps, type TableButtonProps as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useFormValues, usePopup, useResources };
package/dist/index.d.ts CHANGED
@@ -280,4 +280,17 @@ interface TableProps {
280
280
 
281
281
  declare function TableAdvanced(tableProps: TableProps): react_jsx_runtime.JSX.Element | null;
282
282
 
283
- export { Alert, Button, Container, DocumentViewer, Form, Input, Modal, MyCalendar, Pre, Select, Table, Table3, TableAdvanced, type TableButtonProps, type TableButtonProps as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useFormValues, usePopup, useResources };
283
+ interface TabContainerProps {
284
+ children: ReactNode;
285
+ labelMaxWidth?: number;
286
+ currentIndex?: number;
287
+ }
288
+ declare function TabContainer({ children, labelMaxWidth, currentIndex, }: TabContainerProps): react_jsx_runtime.JSX.Element;
289
+ interface TabItemProps {
290
+ label: string;
291
+ children: ReactNode;
292
+ disabled?: boolean;
293
+ }
294
+ declare function TabItem({ children }: TabItemProps): react_jsx_runtime.JSX.Element;
295
+
296
+ export { Alert, Button, Container, DocumentViewer, Form, Input, Modal, MyCalendar, Pre, Select, TabContainer, TabItem, Table, Table3, TableAdvanced, type TableButtonProps, type TableButtonProps as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useFormValues, usePopup, useResources };