@me1a/ui 1.0.3 → 1.0.6
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/editor/styles.d.ts +4 -5
- package/dist/editor/types.d.ts +1 -1
- package/dist/hook-forms/rhf-select.d.ts +1 -15
- package/dist/index.cjs.js +125 -347
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +27772 -48056
- package/dist/index.es.js.map +1 -1
- package/package.json +5 -9
package/dist/editor/styles.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const StyledEditorToolbar: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
1
|
+
export declare const StyledEditor: import('@emotion/styled').StyledComponent<import('@mui/system').BoxOwnProps<import('@mui/material').Theme> & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
|
+
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
+
}, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
4
|
+
export declare const StyledEditorToolbar: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
package/dist/editor/types.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { TextFieldProps } from '@mui/material/TextField';
|
|
2
|
-
import { SelectProps } from '@mui/material/Select';
|
|
3
1
|
import { Theme, SxProps } from '@mui/material/styles';
|
|
2
|
+
import { TextFieldProps } from '@mui/material/TextField';
|
|
4
3
|
|
|
5
4
|
type RHFSelectProps = TextFieldProps & {
|
|
6
5
|
name: string;
|
|
@@ -10,17 +9,4 @@ type RHFSelectProps = TextFieldProps & {
|
|
|
10
9
|
PaperPropsSx?: SxProps<Theme>;
|
|
11
10
|
};
|
|
12
11
|
export declare function RHFSelect({ name, native, maxHeight, helperText, children, PaperPropsSx, ...other }: RHFSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
type RHFMultiSelectProps = SelectProps & {
|
|
14
|
-
name: string;
|
|
15
|
-
label?: string;
|
|
16
|
-
chip?: boolean;
|
|
17
|
-
checkbox?: boolean;
|
|
18
|
-
placeholder?: string;
|
|
19
|
-
helperText?: React.ReactNode;
|
|
20
|
-
options: {
|
|
21
|
-
label: string;
|
|
22
|
-
value: string;
|
|
23
|
-
}[];
|
|
24
|
-
};
|
|
25
|
-
export declare function RHFMultiSelect({ name, chip, label, options, checkbox, placeholder, helperText, sx, ...other }: RHFMultiSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
26
12
|
export {};
|