@useloops/design-system 1.4.92 → 1.4.94
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 +6 -6
- package/dist/index.d.ts +3 -1
- package/dist/index.js +6 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ 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';
|
|
10
11
|
import { InputFieldBaseProps as InputFieldBaseProps$1 } from 'WebCore/InputFieldBase';
|
|
11
12
|
import * as _emotion_styled from '@emotion/styled';
|
|
12
13
|
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
@@ -543,11 +544,12 @@ interface RankProps extends Omit<SortableListProps<any>, 'renderItem'> {
|
|
|
543
544
|
}
|
|
544
545
|
declare const Rank: FunctionComponent<RankProps>;
|
|
545
546
|
|
|
546
|
-
type RichTextFieldProps = InputFieldBaseProps$1 & {
|
|
547
|
+
type RichTextFieldProps = Omit<InputFieldBaseProps$1, 'value'> & {
|
|
547
548
|
internalChange?: () => void;
|
|
548
549
|
minHeight?: number;
|
|
549
550
|
minWidth?: number;
|
|
550
551
|
maxHeight?: number;
|
|
552
|
+
value: Content;
|
|
551
553
|
};
|
|
552
554
|
declare const RichTextField: FunctionComponent<RichTextFieldProps>;
|
|
553
555
|
|