@me1a/ui 1.0.1 → 1.0.2
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/hook-form/index.d.ts +2 -0
- package/dist/hook-form/rhf-editor.d.ts +2 -1
- package/dist/index.cjs.js +151 -143
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +78250 -29497
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +7 -0
- package/dist/utils/highlight.d.ts +6 -0
- package/package.json +2 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './rhf-select';
|
|
2
2
|
export * from './rhf-checkbox';
|
|
3
3
|
export { default as RHFSwitch } from './rhf-switch';
|
|
4
|
+
export { default as RHFEditor } from './rhf-editor';
|
|
4
5
|
export { default as RHFSlider } from './rhf-slider';
|
|
5
6
|
export { default as RHFTextField } from './rhf-text-field';
|
|
6
7
|
export { default as RHFRadioGroup } from './rhf-radio-group';
|
|
7
8
|
export { default as FormProvider } from './form-provider';
|
|
9
|
+
export * from 'react-hook-form';
|
|
@@ -2,6 +2,7 @@ import { EditorProps } from '../editor';
|
|
|
2
2
|
|
|
3
3
|
interface Props extends EditorProps {
|
|
4
4
|
name: string;
|
|
5
|
+
label?: string;
|
|
5
6
|
}
|
|
6
|
-
export default function RHFEditor({ name, helperText, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function RHFEditor({ name, label, helperText, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|