@prosekit/react 0.0.10 → 0.0.11
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/_tsup-dts-rollup.d.ts +143 -0
- package/dist/prosekit-react-components-autocomplete-empty.d.ts +2 -11
- package/dist/prosekit-react-components-autocomplete-empty.js +5 -1
- package/dist/prosekit-react-components-autocomplete-item.d.ts +2 -11
- package/dist/prosekit-react-components-autocomplete-item.js +5 -1
- package/dist/prosekit-react-components-autocomplete-list.d.ts +2 -11
- package/dist/prosekit-react-components-autocomplete-list.js +5 -1
- package/dist/prosekit-react-components-autocomplete-popover.d.ts +3 -12
- package/dist/prosekit-react-components-autocomplete-popover.js +5 -1
- package/dist/prosekit-react-components-code-block-popover.d.ts +2 -11
- package/dist/prosekit-react-components-code-block-popover.js +5 -1
- package/dist/prosekit-react-components-combo-box-input.d.ts +2 -11
- package/dist/prosekit-react-components-combo-box-input.js +5 -1
- package/dist/prosekit-react-components-combo-box-item.d.ts +2 -11
- package/dist/prosekit-react-components-combo-box-item.js +5 -1
- package/dist/prosekit-react-components-combo-box-list.d.ts +2 -11
- package/dist/prosekit-react-components-combo-box-list.js +5 -1
- package/dist/prosekit-react-components-combo-box.d.ts +2 -11
- package/dist/prosekit-react-components-combo-box.js +5 -1
- package/dist/prosekit-react.d.ts +5 -21
- package/package.json +7 -7
@@ -0,0 +1,143 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
|
3
|
+
import { AutocompleteEmptyProps as AutocompleteEmptyProps_2 } from '@prosekit/lit/components/autocomplete-empty';
|
4
|
+
import { AutocompleteItemProps as AutocompleteItemProps_2 } from '@prosekit/lit/components/autocomplete-item';
|
5
|
+
import { AutocompleteListProps as AutocompleteListProps_2 } from '@prosekit/lit/components/autocomplete-list';
|
6
|
+
import { AutocompletePopoverProps as AutocompletePopoverProps_2 } from '@prosekit/lit/components/autocomplete-popover';
|
7
|
+
import { CodeBlockPopoverProps as CodeBlockPopoverProps_2 } from '@prosekit/lit/components/code-block-popover';
|
8
|
+
import { ComboBoxInputProps as ComboBoxInputProps_2 } from '@prosekit/lit/components/combo-box-input';
|
9
|
+
import { ComboBoxItemProps as ComboBoxItemProps_2 } from '@prosekit/lit/components/combo-box-item';
|
10
|
+
import { ComboBoxListProps as ComboBoxListProps_2 } from '@prosekit/lit/components/combo-box-list';
|
11
|
+
import { ComboBoxProps as ComboBoxProps_2 } from '@prosekit/lit/components/combo-box';
|
12
|
+
import { ComponentType } from 'react';
|
13
|
+
import { Context } from 'react';
|
14
|
+
import { Editor } from '@prosekit/core';
|
15
|
+
import { Extension } from '@prosekit/core';
|
16
|
+
import { Keymap } from '@prosekit/core';
|
17
|
+
import { Options } from 'tsup';
|
18
|
+
import { PopoverOptions } from '@prosekit/lit/components/autocomplete-popover';
|
19
|
+
import { default as React_2 } from 'react';
|
20
|
+
import type { SimplifyUnion } from '@prosekit/core';
|
21
|
+
import { UserProjectConfigExport } from 'vitest/dist/config.js';
|
22
|
+
|
23
|
+
declare const AutocompleteEmpty: ComponentType<AutocompleteEmptyProps>;
|
24
|
+
export { AutocompleteEmpty }
|
25
|
+
export { AutocompleteEmpty as AutocompleteEmpty_alias_1 }
|
26
|
+
|
27
|
+
declare type AutocompleteEmptyProps = SimplifyUnion<{
|
28
|
+
className?: string;
|
29
|
+
children?: React_2.ReactNode;
|
30
|
+
} & AutocompleteEmptyProps_2>;
|
31
|
+
export { AutocompleteEmptyProps }
|
32
|
+
export { AutocompleteEmptyProps as AutocompleteEmptyProps_alias_1 }
|
33
|
+
|
34
|
+
declare const AutocompleteItem: ComponentType<AutocompleteItemProps>;
|
35
|
+
export { AutocompleteItem }
|
36
|
+
export { AutocompleteItem as AutocompleteItem_alias_1 }
|
37
|
+
|
38
|
+
declare type AutocompleteItemProps = SimplifyUnion<{
|
39
|
+
className?: string;
|
40
|
+
children?: React_2.ReactNode;
|
41
|
+
} & AutocompleteItemProps_2>;
|
42
|
+
export { AutocompleteItemProps }
|
43
|
+
export { AutocompleteItemProps as AutocompleteItemProps_alias_1 }
|
44
|
+
|
45
|
+
declare const AutocompleteList: ComponentType<AutocompleteListProps>;
|
46
|
+
export { AutocompleteList }
|
47
|
+
export { AutocompleteList as AutocompleteList_alias_1 }
|
48
|
+
|
49
|
+
declare type AutocompleteListProps = SimplifyUnion<{
|
50
|
+
className?: string;
|
51
|
+
children?: React_2.ReactNode;
|
52
|
+
} & AutocompleteListProps_2>;
|
53
|
+
export { AutocompleteListProps }
|
54
|
+
export { AutocompleteListProps as AutocompleteListProps_alias_1 }
|
55
|
+
|
56
|
+
declare const AutocompletePopover: ComponentType<AutocompletePopoverProps>;
|
57
|
+
export { AutocompletePopover }
|
58
|
+
export { AutocompletePopover as AutocompletePopover_alias_1 }
|
59
|
+
|
60
|
+
declare type AutocompletePopoverProps = SimplifyUnion<{
|
61
|
+
className?: string;
|
62
|
+
children?: React_2.ReactNode;
|
63
|
+
} & AutocompletePopoverProps_2>;
|
64
|
+
export { AutocompletePopoverProps }
|
65
|
+
export { AutocompletePopoverProps as AutocompletePopoverProps_alias_1 }
|
66
|
+
|
67
|
+
export declare const CodeBlockPopover: ComponentType<CodeBlockPopoverProps>;
|
68
|
+
|
69
|
+
export declare type CodeBlockPopoverProps = SimplifyUnion<{
|
70
|
+
className?: string;
|
71
|
+
children?: React_2.ReactNode;
|
72
|
+
} & CodeBlockPopoverProps_2>;
|
73
|
+
|
74
|
+
export declare const ComboBox: ComponentType<ComboBoxProps>;
|
75
|
+
|
76
|
+
export declare const ComboBoxInput: ComponentType<ComboBoxInputProps>;
|
77
|
+
|
78
|
+
export declare type ComboBoxInputProps = SimplifyUnion<{
|
79
|
+
className?: string;
|
80
|
+
children?: React_2.ReactNode;
|
81
|
+
} & ComboBoxInputProps_2>;
|
82
|
+
|
83
|
+
export declare const ComboBoxItem: ComponentType<ComboBoxItemProps>;
|
84
|
+
|
85
|
+
export declare type ComboBoxItemProps = SimplifyUnion<{
|
86
|
+
className?: string;
|
87
|
+
children?: React_2.ReactNode;
|
88
|
+
} & ComboBoxItemProps_2>;
|
89
|
+
|
90
|
+
export declare const ComboBoxList: ComponentType<ComboBoxListProps>;
|
91
|
+
|
92
|
+
export declare type ComboBoxListProps = SimplifyUnion<{
|
93
|
+
className?: string;
|
94
|
+
children?: React_2.ReactNode;
|
95
|
+
} & ComboBoxListProps_2>;
|
96
|
+
|
97
|
+
export declare type ComboBoxProps = SimplifyUnion<{
|
98
|
+
className?: string;
|
99
|
+
children?: React_2.ReactNode;
|
100
|
+
} & ComboBoxProps_2>;
|
101
|
+
|
102
|
+
export declare const default_alias: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
|
103
|
+
|
104
|
+
export declare const default_alias_1: UserProjectConfigExport;
|
105
|
+
|
106
|
+
export declare interface EditorContext {
|
107
|
+
editor: Editor;
|
108
|
+
}
|
109
|
+
|
110
|
+
export declare const editorContext: Context<EditorContext | null>;
|
111
|
+
|
112
|
+
export { PopoverOptions }
|
113
|
+
|
114
|
+
declare const ProseKit: ComponentType<ProseKitProps>;
|
115
|
+
export { ProseKit }
|
116
|
+
export { ProseKit as ProseKit_alias_1 }
|
117
|
+
|
118
|
+
declare interface ProseKitProps {
|
119
|
+
editor: Editor;
|
120
|
+
children?: React_2.ReactNode;
|
121
|
+
}
|
122
|
+
export { ProseKitProps }
|
123
|
+
export { ProseKitProps as ProseKitProps_alias_1 }
|
124
|
+
|
125
|
+
declare function useEditor<E extends Extension = any>(): Editor<E>;
|
126
|
+
export { useEditor }
|
127
|
+
export { useEditor as useEditor_alias_1 }
|
128
|
+
|
129
|
+
declare function useExtension({ extension }: UseExtensionProps): void;
|
130
|
+
export { useExtension }
|
131
|
+
export { useExtension as useExtension_alias_1 }
|
132
|
+
|
133
|
+
declare interface UseExtensionProps<T extends Extension = Extension> {
|
134
|
+
extension: T;
|
135
|
+
}
|
136
|
+
|
137
|
+
declare function useKeymap({ keymap }: {
|
138
|
+
keymap: Keymap;
|
139
|
+
}): void;
|
140
|
+
export { useKeymap }
|
141
|
+
export { useKeymap as useKeymap_alias_1 }
|
142
|
+
|
143
|
+
export { }
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type AutocompleteEmptyProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & AutocompleteEmptyProps$1>;
|
9
|
-
declare const AutocompleteEmpty: ComponentType<AutocompleteEmptyProps>;
|
10
|
-
|
11
|
-
export { AutocompleteEmpty, AutocompleteEmptyProps };
|
1
|
+
export { AutocompleteEmpty_alias_1 as AutocompleteEmpty } from './_tsup-dts-rollup';
|
2
|
+
export { AutocompleteEmptyProps_alias_1 as AutocompleteEmptyProps } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var AutocompleteEmptyComponent = createComponent({
|
|
9
9
|
displayName: "AutocompleteEmptyComponent"
|
10
10
|
});
|
11
11
|
var AutocompleteEmpty = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
AutocompleteEmptyComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
AutocompleteEmpty
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type AutocompleteItemProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & AutocompleteItemProps$1>;
|
9
|
-
declare const AutocompleteItem: ComponentType<AutocompleteItemProps>;
|
10
|
-
|
11
|
-
export { AutocompleteItem, AutocompleteItemProps };
|
1
|
+
export { AutocompleteItem_alias_1 as AutocompleteItem } from './_tsup-dts-rollup';
|
2
|
+
export { AutocompleteItemProps_alias_1 as AutocompleteItemProps } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var AutocompleteItemComponent = createComponent({
|
|
9
9
|
displayName: "AutocompleteItemComponent"
|
10
10
|
});
|
11
11
|
var AutocompleteItem = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
AutocompleteItemComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
AutocompleteItem
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type AutocompleteListProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & AutocompleteListProps$1>;
|
9
|
-
declare const AutocompleteList: ComponentType<AutocompleteListProps>;
|
10
|
-
|
11
|
-
export { AutocompleteList, AutocompleteListProps };
|
1
|
+
export { AutocompleteList_alias_1 as AutocompleteList } from './_tsup-dts-rollup';
|
2
|
+
export { AutocompleteListProps_alias_1 as AutocompleteListProps } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var AutocompleteListComponent = createComponent({
|
|
9
9
|
displayName: "AutocompleteListComponent"
|
10
10
|
});
|
11
11
|
var AutocompleteList = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
AutocompleteListComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
AutocompleteList
|
@@ -1,12 +1,3 @@
|
|
1
|
-
|
2
|
-
export {
|
3
|
-
|
4
|
-
import React, { ComponentType } from 'react';
|
5
|
-
|
6
|
-
type AutocompletePopoverProps = SimplifyUnion<{
|
7
|
-
className?: string;
|
8
|
-
children?: React.ReactNode;
|
9
|
-
} & AutocompletePopoverProps$1>;
|
10
|
-
declare const AutocompletePopover: ComponentType<AutocompletePopoverProps>;
|
11
|
-
|
12
|
-
export { AutocompletePopover, AutocompletePopoverProps };
|
1
|
+
export { PopoverOptions } from './_tsup-dts-rollup';
|
2
|
+
export { AutocompletePopover_alias_1 as AutocompletePopover } from './_tsup-dts-rollup';
|
3
|
+
export { AutocompletePopoverProps_alias_1 as AutocompletePopoverProps } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var AutocompletePopoverComponent = createComponent({
|
|
9
9
|
displayName: "AutocompletePopoverComponent"
|
10
10
|
});
|
11
11
|
var AutocompletePopover = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
AutocompletePopoverComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
AutocompletePopover
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type CodeBlockPopoverProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & CodeBlockPopoverProps$1>;
|
9
|
-
declare const CodeBlockPopover: ComponentType<CodeBlockPopoverProps>;
|
10
|
-
|
11
|
-
export { CodeBlockPopover, CodeBlockPopoverProps };
|
1
|
+
export { CodeBlockPopoverProps } from './_tsup-dts-rollup';
|
2
|
+
export { CodeBlockPopover } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var CodeBlockPopoverComponent = createComponent({
|
|
9
9
|
displayName: "CodeBlockPopoverComponent"
|
10
10
|
});
|
11
11
|
var CodeBlockPopover = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
CodeBlockPopoverComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
CodeBlockPopover
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type ComboBoxInputProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & ComboBoxInputProps$1>;
|
9
|
-
declare const ComboBoxInput: ComponentType<ComboBoxInputProps>;
|
10
|
-
|
11
|
-
export { ComboBoxInput, ComboBoxInputProps };
|
1
|
+
export { ComboBoxInputProps } from './_tsup-dts-rollup';
|
2
|
+
export { ComboBoxInput } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var ComboBoxInputComponent = createComponent({
|
|
9
9
|
displayName: "ComboBoxInputComponent"
|
10
10
|
});
|
11
11
|
var ComboBoxInput = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
ComboBoxInputComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
ComboBoxInput
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type ComboBoxItemProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & ComboBoxItemProps$1>;
|
9
|
-
declare const ComboBoxItem: ComponentType<ComboBoxItemProps>;
|
10
|
-
|
11
|
-
export { ComboBoxItem, ComboBoxItemProps };
|
1
|
+
export { ComboBoxItemProps } from './_tsup-dts-rollup';
|
2
|
+
export { ComboBoxItem } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var ComboBoxItemComponent = createComponent({
|
|
9
9
|
displayName: "ComboBoxItemComponent"
|
10
10
|
});
|
11
11
|
var ComboBoxItem = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
ComboBoxItemComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
ComboBoxItem
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type ComboBoxListProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & ComboBoxListProps$1>;
|
9
|
-
declare const ComboBoxList: ComponentType<ComboBoxListProps>;
|
10
|
-
|
11
|
-
export { ComboBoxList, ComboBoxListProps };
|
1
|
+
export { ComboBoxListProps } from './_tsup-dts-rollup';
|
2
|
+
export { ComboBoxList } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var ComboBoxListComponent = createComponent({
|
|
9
9
|
displayName: "ComboBoxListComponent"
|
10
10
|
});
|
11
11
|
var ComboBoxList = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
ComboBoxListComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
ComboBoxList
|
@@ -1,11 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
import React, { ComponentType } from 'react';
|
4
|
-
|
5
|
-
type ComboBoxProps = SimplifyUnion<{
|
6
|
-
className?: string;
|
7
|
-
children?: React.ReactNode;
|
8
|
-
} & ComboBoxProps$1>;
|
9
|
-
declare const ComboBox: ComponentType<ComboBoxProps>;
|
10
|
-
|
11
|
-
export { ComboBox, ComboBoxProps };
|
1
|
+
export { ComboBoxProps } from './_tsup-dts-rollup';
|
2
|
+
export { ComboBox } from './_tsup-dts-rollup';
|
@@ -9,7 +9,11 @@ var ComboBoxComponent = createComponent({
|
|
9
9
|
displayName: "ComboBoxComponent"
|
10
10
|
});
|
11
11
|
var ComboBox = (props) => {
|
12
|
-
return React.createElement(
|
12
|
+
return React.createElement(
|
13
|
+
ComboBoxComponent,
|
14
|
+
// The type in @lit-labs/react is not compatible to React.ReactNode
|
15
|
+
props
|
16
|
+
);
|
13
17
|
};
|
14
18
|
export {
|
15
19
|
ComboBox
|
package/dist/prosekit-react.d.ts
CHANGED
@@ -1,21 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
children?: React.ReactNode;
|
7
|
-
}
|
8
|
-
declare const ProseKit: ComponentType<ProseKitProps>;
|
9
|
-
|
10
|
-
declare function useEditor<E extends Extension = any>(): Editor<E>;
|
11
|
-
|
12
|
-
interface UseExtensionProps<T extends Extension = Extension> {
|
13
|
-
extension: T;
|
14
|
-
}
|
15
|
-
declare function useExtension({ extension }: UseExtensionProps): void;
|
16
|
-
|
17
|
-
declare function useKeymap({ keymap }: {
|
18
|
-
keymap: Keymap;
|
19
|
-
}): void;
|
20
|
-
|
21
|
-
export { ProseKit, ProseKitProps, useEditor, useExtension, useKeymap };
|
1
|
+
export { ProseKit } from './_tsup-dts-rollup';
|
2
|
+
export { ProseKitProps } from './_tsup-dts-rollup';
|
3
|
+
export { useEditor } from './_tsup-dts-rollup';
|
4
|
+
export { useExtension } from './_tsup-dts-rollup';
|
5
|
+
export { useKeymap } from './_tsup-dts-rollup';
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prosekit/react",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.11",
|
5
5
|
"private": false,
|
6
6
|
"author": {
|
7
7
|
"name": "ocavue",
|
@@ -80,9 +80,9 @@
|
|
80
80
|
"dist"
|
81
81
|
],
|
82
82
|
"dependencies": {
|
83
|
-
"@lit-labs/react": "^2.0.
|
84
|
-
"@prosekit/core": "^0.0.
|
85
|
-
"@prosekit/lit": "^0.0.
|
83
|
+
"@lit-labs/react": "^2.0.2",
|
84
|
+
"@prosekit/core": "^0.0.8",
|
85
|
+
"@prosekit/lit": "^0.0.11"
|
86
86
|
},
|
87
87
|
"peerDependencies": {
|
88
88
|
"react": ">= 17.0.0",
|
@@ -98,13 +98,13 @@
|
|
98
98
|
},
|
99
99
|
"devDependencies": {
|
100
100
|
"@prosekit/dev": "*",
|
101
|
-
"@types/react": "^18.2.
|
101
|
+
"@types/react": "^18.2.21",
|
102
102
|
"@types/react-dom": "^18.2.7",
|
103
103
|
"react": "^18.2.0",
|
104
104
|
"react-dom": "^18.2.0",
|
105
105
|
"tsup": "^7.2.0",
|
106
|
-
"typescript": "^5.
|
107
|
-
"vitest": "^0.34.
|
106
|
+
"typescript": "^5.2.2",
|
107
|
+
"vitest": "^0.34.3"
|
108
108
|
},
|
109
109
|
"scripts": {
|
110
110
|
"build:tsup": "tsup",
|