@useloops/design-system 1.4.106 → 1.4.107
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/esm/index.js +4 -4
- package/dist/index.d.ts +1 -2
- package/dist/index.js +4 -4
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { Theme as Theme$1 } from '@mui/material/styles';
|
|
|
7
7
|
import * as _mui_system from '@mui/system';
|
|
8
8
|
import { SxProps as SxProps$1, Theme as Theme$2 } from '@mui/system';
|
|
9
9
|
import { UniqueIdentifier } from '@dnd-kit/core';
|
|
10
|
-
import { Content } from '@tiptap/core/src/types';
|
|
11
10
|
import * as _emotion_styled from '@emotion/styled';
|
|
12
11
|
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
13
12
|
import { SubmitHandler } from 'react-hook-form';
|
|
@@ -594,7 +593,7 @@ type RichTextFieldProps = Omit<InputFieldBaseProps, 'value'> & {
|
|
|
594
593
|
minHeight?: number;
|
|
595
594
|
minWidth?: number;
|
|
596
595
|
maxHeight?: number;
|
|
597
|
-
value:
|
|
596
|
+
value: string;
|
|
598
597
|
};
|
|
599
598
|
declare const RichTextField: FunctionComponent<RichTextFieldProps>;
|
|
600
599
|
|