@cgi-learning-hub/ui 1.14.0 → 1.15.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.cjs.js +133 -30668
- package/dist/index.d.ts +3 -3
- package/dist/index.es.js +2 -30529
- package/dist/src-jE7nLe9k.js +29565 -0
- package/dist/tiptap/index.cjs.js +2871 -0
- package/dist/tiptap/index.d.ts +46 -0
- package/dist/tiptap/index.es.js +2843 -0
- package/dist/tiptap/styles.css +621 -0
- package/dist/ui.css +87 -1
- package/package.json +32 -10
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Editor } from '@tiptap/react';
|
|
2
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
3
|
+
import { JSX } from 'react';
|
|
4
|
+
import { RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
declare type BaseProps = React.HTMLAttributes<HTMLDivElement>;
|
|
7
|
+
|
|
8
|
+
declare type BaseProps_2 = React.HTMLAttributes<HTMLDivElement>;
|
|
9
|
+
|
|
10
|
+
export declare const FormattingControls: {
|
|
11
|
+
({ editor }: FormattingControlsProps): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
declare interface FormattingControlsProps extends BaseProps {
|
|
16
|
+
editor: Editor;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export declare function Spacer({ orientation, size, style, ...props }: React.ComponentProps<"div"> & {
|
|
20
|
+
orientation?: SpacerOrientation;
|
|
21
|
+
size?: string | number;
|
|
22
|
+
}): JSX.Element;
|
|
23
|
+
|
|
24
|
+
export declare type SpacerOrientation = "horizontal" | "vertical";
|
|
25
|
+
|
|
26
|
+
export declare const Toolbar: ForwardRefExoticComponent<ToolbarProps & RefAttributes<HTMLDivElement>>;
|
|
27
|
+
|
|
28
|
+
export declare const ToolbarGroup: ForwardRefExoticComponent<BaseProps_2 & RefAttributes<HTMLDivElement>>;
|
|
29
|
+
|
|
30
|
+
declare interface ToolbarProps extends BaseProps_2 {
|
|
31
|
+
variant?: "floating" | "fixed";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export declare const ToolbarSeparator: {
|
|
35
|
+
(): JSX.Element;
|
|
36
|
+
displayName: string;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export { }
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
declare module "@mui/x-tree-view/TreeItem" {
|
|
43
|
+
interface TreeItemProps {
|
|
44
|
+
itemData?: CustomTreeViewItem;
|
|
45
|
+
}
|
|
46
|
+
}
|