next-recomponents 1.6.99 → 1.7.0
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/index.tsx +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -173,4 +173,4 @@ interface CalendarProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputE
|
|
|
173
173
|
}
|
|
174
174
|
declare function MyCalendar({ enabledDates, onChange, defaultValue, className, ...otherProps }: CalendarProps): react_jsx_runtime.JSX.Element | null;
|
|
175
175
|
|
|
176
|
-
export { Alert, Button, Container, Form, Input, Modal, MyCalendar, Pre, Select, Table, TextArea, regularExpresions, useDates, useExcel, useResources };
|
|
176
|
+
export { Alert, Button, Container, Form, Input, Modal, MyCalendar, Pre, Select, Table, Table as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useResources };
|
package/dist/index.d.ts
CHANGED
|
@@ -173,4 +173,4 @@ interface CalendarProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputE
|
|
|
173
173
|
}
|
|
174
174
|
declare function MyCalendar({ enabledDates, onChange, defaultValue, className, ...otherProps }: CalendarProps): react_jsx_runtime.JSX.Element | null;
|
|
175
175
|
|
|
176
|
-
export { Alert, Button, Container, Form, Input, Modal, MyCalendar, Pre, Select, Table, TextArea, regularExpresions, useDates, useExcel, useResources };
|
|
176
|
+
export { Alert, Button, Container, Form, Input, Modal, MyCalendar, Pre, Select, Table, Table as TableEventProps, TextArea, regularExpresions, useDates, useExcel, useResources };
|
package/dist/index.js
CHANGED
|
@@ -2978,6 +2978,7 @@ __export(index_exports, {
|
|
|
2978
2978
|
Pre: () => pre_default,
|
|
2979
2979
|
Select: () => Select,
|
|
2980
2980
|
Table: () => Table,
|
|
2981
|
+
TableEventProps: () => Table,
|
|
2981
2982
|
TextArea: () => TextArea,
|
|
2982
2983
|
regularExpresions: () => regular_expresions_default,
|
|
2983
2984
|
useDates: () => useDates,
|
|
@@ -44562,6 +44563,7 @@ function MyCalendar(_a) {
|
|
|
44562
44563
|
Pre,
|
|
44563
44564
|
Select,
|
|
44564
44565
|
Table,
|
|
44566
|
+
TableEventProps,
|
|
44565
44567
|
TextArea,
|
|
44566
44568
|
regularExpresions,
|
|
44567
44569
|
useDates,
|
package/dist/index.mjs
CHANGED
|
@@ -44555,6 +44555,7 @@ export {
|
|
|
44555
44555
|
pre_default as Pre,
|
|
44556
44556
|
Select,
|
|
44557
44557
|
Table,
|
|
44558
|
+
Table as TableEventProps,
|
|
44558
44559
|
TextArea,
|
|
44559
44560
|
regular_expresions_default as regularExpresions,
|
|
44560
44561
|
useDates,
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED