mtxuilib 0.0.566 → 0.0.577
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/components/common/tiptap/TiptapEditor.d.ts +2 -2
- package/dist/esm/misc/MtErrorBoundary.d.ts +1 -2
- package/dist/esm/registry/default/ui/resizable.d.ts +2 -12
- package/dist/esm/registry/new-york/ui/resizable.d.ts +2 -12
- package/dist/esm/ui/novel/tailwind/advanced-editor.d.ts +2 -2
- package/dist/esm/ui/resizable.d.ts +2 -12
- package/dist/esm/ui/ui-mt/skeleton/skeleton-card.d.ts +1 -1
- package/dist/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/esm/store/app.atoms.d.ts +0 -4
- package/dist/esm/store/app.atoms.js +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { EditorEvents } from '@tiptap/react';
|
|
3
3
|
export declare const TiptapEditorV1: (props: {
|
|
4
|
-
value?: string
|
|
5
|
-
onUpdate?: (
|
|
4
|
+
value?: string;
|
|
5
|
+
onUpdate?: (props: EditorEvents['update']) => void;
|
|
6
6
|
}) => import("react").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react/experimental" />
|
|
2
1
|
import { Component, ErrorInfo, ReactNode } from "react";
|
|
3
2
|
interface Props {
|
|
4
3
|
children: ReactNode;
|
|
@@ -12,6 +11,6 @@ export declare class MtErrorBoundary extends Component<Props, State> {
|
|
|
12
11
|
state: State;
|
|
13
12
|
static getDerivedStateFromError(error: Error): State;
|
|
14
13
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
15
|
-
render(): string | number | boolean | import("react").JSX.Element | Iterable<ReactNode> | Promise<import("react").AwaitedReactNode> | null | undefined;
|
|
14
|
+
render(): string | number | bigint | boolean | import("react").JSX.Element | Iterable<ReactNode> | Promise<import("react").AwaitedReactNode> | null | undefined;
|
|
16
15
|
}
|
|
17
16
|
export default MtErrorBoundary;
|
|
@@ -19,17 +19,7 @@ declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<imp
|
|
|
19
19
|
} & {
|
|
20
20
|
children?: import("react").ReactNode;
|
|
21
21
|
} & import("react").RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
|
|
22
|
-
declare const ResizableHandle: ({ withHandle, className, ...props }:
|
|
23
|
-
|
|
24
|
-
disabled?: boolean | undefined;
|
|
25
|
-
id?: string | null | undefined;
|
|
26
|
-
onDragging?: ResizablePrimitive.PanelResizeHandleOnDragging | undefined;
|
|
27
|
-
style?: import("react").CSSProperties | undefined;
|
|
28
|
-
tabIndex?: number | undefined;
|
|
29
|
-
tagName?: keyof HTMLElementTagNameMap | undefined;
|
|
30
|
-
} & {
|
|
31
|
-
children?: import("react").ReactNode;
|
|
32
|
-
} & {
|
|
33
|
-
withHandle?: boolean | undefined;
|
|
22
|
+
declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
23
|
+
withHandle?: boolean;
|
|
34
24
|
}) => import("react").JSX.Element;
|
|
35
25
|
export { ResizablePanelGroup, ResizablePanel, ResizableHandle };
|
|
@@ -19,17 +19,7 @@ declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<imp
|
|
|
19
19
|
} & {
|
|
20
20
|
children?: import("react").ReactNode;
|
|
21
21
|
} & import("react").RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
|
|
22
|
-
declare const ResizableHandle: ({ withHandle, className, ...props }:
|
|
23
|
-
|
|
24
|
-
disabled?: boolean | undefined;
|
|
25
|
-
id?: string | null | undefined;
|
|
26
|
-
onDragging?: ResizablePrimitive.PanelResizeHandleOnDragging | undefined;
|
|
27
|
-
style?: import("react").CSSProperties | undefined;
|
|
28
|
-
tabIndex?: number | undefined;
|
|
29
|
-
tagName?: keyof HTMLElementTagNameMap | undefined;
|
|
30
|
-
} & {
|
|
31
|
-
children?: import("react").ReactNode;
|
|
32
|
-
} & {
|
|
33
|
-
withHandle?: boolean | undefined;
|
|
22
|
+
declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
23
|
+
withHandle?: boolean;
|
|
34
24
|
}) => import("react").JSX.Element;
|
|
35
25
|
export { ResizablePanelGroup, ResizablePanel, ResizableHandle };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type JSONContent } from "../novel/src/components";
|
|
3
3
|
export declare const TailwindAdvancedEditor: (props: {
|
|
4
|
-
onValueChange?: (
|
|
5
|
-
content?: JSONContent | null
|
|
4
|
+
onValueChange?: (content: any) => void;
|
|
5
|
+
content?: JSONContent | null;
|
|
6
6
|
}) => import("react").JSX.Element | null;
|
|
@@ -19,17 +19,7 @@ declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<imp
|
|
|
19
19
|
} & {
|
|
20
20
|
children?: import("react").ReactNode;
|
|
21
21
|
} & import("react").RefAttributes<ResizablePrimitive.ImperativePanelHandle>>;
|
|
22
|
-
declare const ResizableHandle: ({ withHandle, className, ...props }:
|
|
23
|
-
|
|
24
|
-
disabled?: boolean | undefined;
|
|
25
|
-
id?: string | null | undefined;
|
|
26
|
-
onDragging?: ResizablePrimitive.PanelResizeHandleOnDragging | undefined;
|
|
27
|
-
style?: import("react").CSSProperties | undefined;
|
|
28
|
-
tabIndex?: number | undefined;
|
|
29
|
-
tagName?: keyof HTMLElementTagNameMap | undefined;
|
|
30
|
-
} & {
|
|
31
|
-
children?: import("react").ReactNode;
|
|
32
|
-
} & {
|
|
33
|
-
withHandle?: boolean | undefined;
|
|
22
|
+
declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
23
|
+
withHandle?: boolean;
|
|
34
24
|
}) => import("react").JSX.Element;
|
|
35
25
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|