@ctzhian/tiptap 1.12.0 → 1.12.1
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/Editor/demo.js
CHANGED
|
@@ -177,7 +177,6 @@ var CodeBlockView = function CodeBlockView(props) {
|
|
|
177
177
|
}
|
|
178
178
|
})) : /*#__PURE__*/React.createElement(Box, {
|
|
179
179
|
sx: {
|
|
180
|
-
py: 0.5,
|
|
181
180
|
flex: 1,
|
|
182
181
|
fontSize: '0.875rem',
|
|
183
182
|
color: 'text.auxiliary',
|
|
@@ -300,7 +299,6 @@ var CodeBlockView = function CodeBlockView(props) {
|
|
|
300
299
|
flexItem: true,
|
|
301
300
|
sx: {
|
|
302
301
|
height: '1.25rem',
|
|
303
|
-
m: 0.5,
|
|
304
302
|
alignSelf: 'center',
|
|
305
303
|
borderColor: 'divider'
|
|
306
304
|
}
|
|
@@ -7,6 +7,6 @@ export interface UploadProgressAttributes {
|
|
|
7
7
|
tempId: string;
|
|
8
8
|
}
|
|
9
9
|
export declare const getFileIcon: (fileType: string) => React.JSX.Element;
|
|
10
|
-
export declare const getFileTypeText: (fileType: string) => "图片" | "
|
|
10
|
+
export declare const getFileTypeText: (fileType: string) => "图片" | "文件" | "音频" | "视频";
|
|
11
11
|
declare const UploadProgressView: React.FC<NodeViewProps>;
|
|
12
12
|
export default UploadProgressView;
|
package/dist/index.css
CHANGED