@ctzhian/tiptap 1.7.2 → 1.7.4

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.
@@ -0,0 +1,6 @@
1
+ import { SvgIconProps } from "@mui/material";
2
+ import * as React from "react";
3
+ export declare const FlipHorizontal2LineIcon: {
4
+ (props: SvgIconProps): React.JSX.Element;
5
+ displayName: string;
6
+ };
@@ -0,0 +1,13 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import { SvgIcon } from "@mui/material";
3
+ import * as React from "react";
4
+ export var FlipHorizontal2LineIcon = function FlipHorizontal2LineIcon(props) {
5
+ return /*#__PURE__*/React.createElement(SvgIcon, _extends({
6
+ viewBox: "0 0 24 24",
7
+ version: "1.1",
8
+ xmlns: "http://www.w3.org/2000/svg"
9
+ }, props), /*#__PURE__*/React.createElement("path", {
10
+ d: "M5 19H19V5H5V19ZM3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4ZM10 8V11H14V8L18 12L14 16V13H10V16L6 12L10 8Z"
11
+ }));
12
+ };
13
+ FlipHorizontal2LineIcon.displayName = 'icon-flip-horizontal-2-line';
@@ -43,6 +43,7 @@ export { ErrorWarningFillIcon } from './error-warning-fill-icon';
43
43
  export { ExportLineIcon } from './export-line-icon';
44
44
  export { FileCopyLineIcon } from './file-copy-line-icon';
45
45
  export { FileUploadLineIcon } from './file-upload-line-icon';
46
+ export { FlipHorizontal2LineIcon } from './flip-horizontal-2-line-icon';
46
47
  export { FlowChartIcon } from './flow-chart-icon';
47
48
  export { Folder2LineIcon } from './folder-2-line-icon';
48
49
  export { FontColorIcon } from './font-color-icon';
@@ -114,6 +115,7 @@ export { StrikethroughIcon } from './strikethrough-icon';
114
115
  export { SubscriptIcon } from './subscript-icon';
115
116
  export { SuperscriptIcon } from './superscript-icon';
116
117
  export { Table2Icon } from './table-2-icon';
118
+ export { TableViewIcon } from './table-view-icon';
117
119
  export { TextIcon } from './text-icon';
118
120
  export { TextWrapIcon } from './text-wrap-icon';
119
121
  export { TitleIcon } from './title-icon';
@@ -46,6 +46,7 @@ export { ErrorWarningFillIcon } from "./error-warning-fill-icon";
46
46
  export { ExportLineIcon } from "./export-line-icon";
47
47
  export { FileCopyLineIcon } from "./file-copy-line-icon";
48
48
  export { FileUploadLineIcon } from "./file-upload-line-icon";
49
+ export { FlipHorizontal2LineIcon } from "./flip-horizontal-2-line-icon";
49
50
  export { FlowChartIcon } from "./flow-chart-icon";
50
51
  export { Folder2LineIcon } from "./folder-2-line-icon";
51
52
  export { FontColorIcon } from "./font-color-icon";
@@ -117,6 +118,7 @@ export { StrikethroughIcon } from "./strikethrough-icon";
117
118
  export { SubscriptIcon } from "./subscript-icon";
118
119
  export { SuperscriptIcon } from "./superscript-icon";
119
120
  export { Table2Icon } from "./table-2-icon";
121
+ export { TableViewIcon } from "./table-view-icon";
120
122
  export { TextIcon } from "./text-icon";
121
123
  export { TextWrapIcon } from "./text-wrap-icon";
122
124
  export { TitleIcon } from "./title-icon";
@@ -0,0 +1,6 @@
1
+ import { SvgIconProps } from "@mui/material";
2
+ import * as React from "react";
3
+ export declare const TableViewIcon: {
4
+ (props: SvgIconProps): React.JSX.Element;
5
+ displayName: string;
6
+ };
@@ -0,0 +1,13 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+ import { SvgIcon } from "@mui/material";
3
+ import * as React from "react";
4
+ export var TableViewIcon = function TableViewIcon(props) {
5
+ return /*#__PURE__*/React.createElement(SvgIcon, _extends({
6
+ viewBox: "0 0 24 24",
7
+ version: "1.1",
8
+ xmlns: "http://www.w3.org/2000/svg"
9
+ }, props), /*#__PURE__*/React.createElement("path", {
10
+ d: "M3 3C2.44772 3 2 3.44772 2 4V20C2 20.5523 2.44772 21 3 21H21C21.5523 21 22 20.5523 22 20V4C22 3.44772 21.5523 3 21 3H3ZM8 5V8H4V5H8ZM4 14V10H8V14H4ZM4 16H8V19H4V16ZM10 16H20V19H10V16ZM20 14H10V10H20V14ZM20 5V8H10V5H20Z"
11
+ }));
12
+ };
13
+ TableViewIcon.displayName = 'icon-table-view';
@@ -95,7 +95,7 @@ var LinkViewWrapper = function LinkViewWrapper(_ref) {
95
95
  };
96
96
  var handleDeleteLink = function handleDeleteLink() {
97
97
  editor.commands.deleteNode(node.type);
98
- editor.commands.insertContent(attrs.title || attrs.href);
98
+ editor.chain().insertContent(attrs.title || attrs.href).focus().run();
99
99
  };
100
100
  var handleCopyLink = useCallback( /*#__PURE__*/function () {
101
101
  var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(event) {
@@ -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;
@@ -28,9 +28,6 @@ export var AudioExtension = function AudioExtension(props) {
28
28
  },
29
29
  addAttributes: function addAttributes() {
30
30
  return {
31
- class: {
32
- default: 'audio-wrapper'
33
- },
34
31
  src: {
35
32
  default: null,
36
33
  parseHTML: function parseHTML(element) {
@@ -1,4 +1,4 @@
1
1
  import { UploadFunction } from "../../type";
2
2
  export declare const FileHandlerExtension: (props: {
3
3
  onUpload?: UploadFunction;
4
- }) => import("@tiptap/core").Extension<Omit<import("@tiptap/extension-file-handler").FileHandlePluginOptions, "editor" | "key">, any>;
4
+ }) => import("@tiptap/core").Extension<Omit<import("@tiptap/extension-file-handler").FileHandlePluginOptions, "key" | "editor">, any>;
@@ -57,7 +57,7 @@ export var InlineLinkExtension = Node.create({
57
57
  },
58
58
  addOptions: function addOptions() {
59
59
  return {
60
- autolink: true,
60
+ autolink: false,
61
61
  linkOnPaste: false,
62
62
  protocols: [],
63
63
  defaultProtocol: 'http',
@@ -1,10 +1,15 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
3
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
4
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
2
5
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
6
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
7
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
8
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
9
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ import { getFileType } from "../../util";
7
11
  import { InputRule, mergeAttributes, Node } from '@tiptap/core';
12
+ import { Plugin, PluginKey } from '@tiptap/pm/state';
8
13
  import { ReactNodeViewRenderer } from '@tiptap/react';
9
14
  import VideoViewWrapper from "../component/Video";
10
15
  export var VideoExtension = function VideoExtension(props) {
@@ -193,6 +198,128 @@ export var VideoExtension = function VideoExtension(props) {
193
198
  onError: props.onError
194
199
  }));
195
200
  });
201
+ },
202
+ addProseMirrorPlugins: function addProseMirrorPlugins() {
203
+ var _this4 = this;
204
+ return [new Plugin({
205
+ key: new PluginKey('videoPasteHandler'),
206
+ props: {
207
+ handlePaste: function handlePaste(view, event) {
208
+ var _event$clipboardData;
209
+ if (!props.onUpload) return false;
210
+ var items = Array.from(((_event$clipboardData = event.clipboardData) === null || _event$clipboardData === void 0 ? void 0 : _event$clipboardData.items) || []);
211
+ var videoFiles = items.map(function (item) {
212
+ return item.getAsFile();
213
+ }).filter(function (file) {
214
+ return file !== null && getFileType(file) === 'video';
215
+ });
216
+ if (videoFiles.length === 0) return false;
217
+ var from = view.state.selection.from;
218
+ var editor = _this4.editor;
219
+ var findNodePosition = function findNodePosition(typeName, tempId) {
220
+ var targetPos = null;
221
+ editor.state.doc.descendants(function (node, position) {
222
+ if (node.type.name === typeName && node.attrs.tempId === tempId) {
223
+ targetPos = position;
224
+ return false;
225
+ }
226
+ return undefined;
227
+ });
228
+ return targetPos;
229
+ };
230
+ _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
231
+ var _loop, i;
232
+ return _regeneratorRuntime().wrap(function _callee$(_context2) {
233
+ while (1) switch (_context2.prev = _context2.next) {
234
+ case 0:
235
+ if (props.onUpload) {
236
+ _context2.next = 2;
237
+ break;
238
+ }
239
+ return _context2.abrupt("return");
240
+ case 2:
241
+ _loop = /*#__PURE__*/_regeneratorRuntime().mark(function _loop() {
242
+ var file, tempId, insertPosition, progressPos, url, chain, _progressPos, _chain;
243
+ return _regeneratorRuntime().wrap(function _loop$(_context) {
244
+ while (1) switch (_context.prev = _context.next) {
245
+ case 0:
246
+ file = videoFiles[i];
247
+ tempId = "upload-".concat(Date.now(), "-").concat(i);
248
+ insertPosition = from + i;
249
+ _context.prev = 3;
250
+ editor.chain().insertContentAt(insertPosition, {
251
+ type: 'uploadProgress',
252
+ attrs: {
253
+ fileName: file.name,
254
+ fileType: 'video',
255
+ progress: 0,
256
+ tempId: tempId
257
+ }
258
+ }).focus().run();
259
+ progressPos = findNodePosition('uploadProgress', tempId);
260
+ _context.next = 8;
261
+ return props.onUpload(file, function (progressEvent) {
262
+ var progressValue = progressEvent.progress;
263
+ editor.chain().updateUploadProgress(tempId, progressValue).focus().run();
264
+ });
265
+ case 8:
266
+ url = _context.sent;
267
+ editor.chain().removeUploadProgress(tempId).focus().run();
268
+ chain = editor.chain().focus();
269
+ if (progressPos !== null) {
270
+ chain.setTextSelection(progressPos);
271
+ }
272
+ chain.setVideo({
273
+ src: url,
274
+ width: 760,
275
+ controls: true,
276
+ autoplay: false
277
+ }).run();
278
+ _context.next = 23;
279
+ break;
280
+ case 15:
281
+ _context.prev = 15;
282
+ _context.t0 = _context["catch"](3);
283
+ console.error('视频上传失败:', _context.t0);
284
+ editor.chain().removeUploadProgress(tempId).focus().run();
285
+ _progressPos = findNodePosition('uploadProgress', tempId);
286
+ _chain = editor.chain().focus();
287
+ if (_progressPos !== null) {
288
+ _chain.setTextSelection(_progressPos);
289
+ }
290
+ _chain.setVideo({
291
+ src: '',
292
+ width: 760,
293
+ controls: true,
294
+ autoplay: false
295
+ }).run();
296
+ case 23:
297
+ case "end":
298
+ return _context.stop();
299
+ }
300
+ }, _loop, null, [[3, 15]]);
301
+ });
302
+ i = 0;
303
+ case 4:
304
+ if (!(i < videoFiles.length)) {
305
+ _context2.next = 9;
306
+ break;
307
+ }
308
+ return _context2.delegateYield(_loop(), "t0", 6);
309
+ case 6:
310
+ i++;
311
+ _context2.next = 4;
312
+ break;
313
+ case 9:
314
+ case "end":
315
+ return _context2.stop();
316
+ }
317
+ }, _callee);
318
+ }))();
319
+ return true;
320
+ }
321
+ }
322
+ })];
196
323
  }
197
324
  });
198
325
  };
package/dist/index.css CHANGED
@@ -359,8 +359,8 @@
359
359
  max-width: 100%;
360
360
  table-layout: fixed;
361
361
  overflow: hidden;
362
- background-color: var(--mui-palette-background-paper);
363
362
  caption-side: top;
363
+ background-color: var(--mui-palette-background-paper);
364
364
  border-left: 1px dotted var(--mui-palette-divider);
365
365
  }
366
366
 
@@ -449,23 +449,27 @@
449
449
 
450
450
  /* 表格包装器样式 */
451
451
  .tiptap.ProseMirror .tableWrapper {
452
+ width: 100%;
452
453
  overflow-x: auto;
453
454
  margin: 20px 0;
454
455
  }
455
456
 
456
457
  /* 表格滚动条样式 */
457
458
  .tiptap.ProseMirror .tableWrapper::-webkit-scrollbar {
458
- height: 2px;
459
+ height: 5px;
460
+ cursor: pointer;
459
461
  }
460
462
 
461
463
  .tiptap.ProseMirror .tableWrapper::-webkit-scrollbar-track {
462
464
  background: var(--mui-palette-divider);
463
465
  border-radius: 4px;
466
+ cursor: pointer;
464
467
  }
465
468
 
466
469
  .tiptap.ProseMirror .tableWrapper::-webkit-scrollbar-thumb {
467
470
  background: var(--mui-palette-text-disabled);
468
471
  border-radius: 4px;
472
+ cursor: pointer;
469
473
  }
470
474
 
471
475
  /* youtube */
@@ -519,7 +523,7 @@
519
523
 
520
524
  /* placeholder */
521
525
  .tiptap.ProseMirror .cq-details[data-placeholder]::before,
522
- .tiptap.ProseMirror .table-row[data-placeholder]::before,
526
+ .tiptap.ProseMirror table *[data-placeholder]::before,
523
527
  .tiptap.ProseMirror li p[data-placeholder]::before {
524
528
  display: none;
525
529
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctzhian/tiptap",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
4
4
  "description": "基于 Tiptap 二次开发的编辑器组件",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",