ronds-metadata 1.3.1 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
package/es/api/index.d.ts CHANGED
@@ -18,9 +18,8 @@ export default class Api implements IAPI {
18
18
  GetEnumDataByUrl(url: string, method: 'get' | 'post', body?: any): Promise<any>;
19
19
  GetGraphStatus(data: any): Promise<{
20
20
  data: {
21
- instStatus: {};
22
- execInfo: {};
23
- status: string;
21
+ statusList: any[];
22
+ status: number;
24
23
  };
25
24
  }>;
26
25
  StopGraphRun(data: any): Promise<{
package/es/api/index.js CHANGED
@@ -5,7 +5,7 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
5
5
  /*
6
6
  * @Author:wangxian
7
7
  * @Date: 2021-09-18 14:15:04
8
- * @LastEditTime: 2023-08-22 17:22:47
8
+ * @LastEditTime: 2023-08-30 09:08:24
9
9
  */
10
10
  import { guid, md5 } from '../utils';
11
11
  import { addInterceptor, HttpHelper } from '../framework/http';
@@ -200,30 +200,27 @@ var Api = /*#__PURE__*/function () {
200
200
  key: "GetGraphStatus",
201
201
  value: function () {
202
202
  var _GetGraphStatus = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee6(data) {
203
- var nodes, _execInfo, _instStatus, i, obj;
203
+ var nodes, _execInfo, i, obj;
204
204
  return _regeneratorRuntime.wrap(function _callee6$(_context6) {
205
205
  while (1) switch (_context6.prev = _context6.next) {
206
206
  case 0:
207
207
  idx++;
208
208
  nodes = data.nodes;
209
- _execInfo = {};
210
- _instStatus = {};
209
+ _execInfo = [];
211
210
  for (i = 0; i < nodes.length; i++) {
212
211
  obj = {
213
- jobStatus: idx === 2 ? 'success' : 'running',
214
- id: nodes[i].id
212
+ nodeStatus: idx === 2 ? 'success' : 'running',
213
+ nodeId: nodes[i].id
215
214
  };
216
- _execInfo[nodes[i].id] = obj;
217
- _instStatus[nodes[i].id] = idx === 2 ? 'success' : 'running';
215
+ _execInfo.push(obj);
218
216
  }
219
217
  return _context6.abrupt("return", {
220
218
  data: {
221
- instStatus: _instStatus,
222
- execInfo: _execInfo,
223
- status: idx === 2 ? 'default' : 'running'
219
+ statusList: _execInfo,
220
+ status: idx === 2 ? 0 : 1
224
221
  }
225
222
  });
226
- case 6:
223
+ case 5:
227
224
  case "end":
228
225
  return _context6.stop();
229
226
  }
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
3
3
  /*
4
4
  * @Author: wangxian
5
5
  * @Date: 2022-05-24 08:50:16
6
- * @LastEditTime: 2023-08-22 17:15:13
6
+ * @LastEditTime: 2023-08-30 09:12:32
7
7
  */
8
8
  import { GlobalOutlined } from '@ant-design/icons';
9
9
  import { filter, map } from 'rxjs/operators';
@@ -26,9 +26,12 @@ var NodeElement = function NodeElement(props) {
26
26
  var sub = gDPGraph && gDPGraph.factory$.executionStatus.pipe(filter(function (x) {
27
27
  return !!x;
28
28
  }), map(function (x) {
29
- return x.execInfo;
29
+ return x.statusList;
30
30
  })).subscribe(function (v) {
31
- setNodeStatus(v);
31
+ var _status = v.find(function (it) {
32
+ return it.nodeId === id;
33
+ });
34
+ setNodeStatus(_status);
32
35
  });
33
36
  return function () {
34
37
  sub.unsubscribe();
@@ -51,10 +54,10 @@ var NodeElement = function NodeElement(props) {
51
54
  }, /*#__PURE__*/React.createElement("div", {
52
55
  className: "name",
53
56
  title: name
54
- }, name), nodeStatus && nodeStatus[id] && nodeStatus[id].jobStatus && /*#__PURE__*/React.createElement(NodeStatus, {
57
+ }, name), nodeStatus && (nodeStatus === null || nodeStatus === void 0 ? void 0 : nodeStatus.nodeStatus) && /*#__PURE__*/React.createElement(NodeStatus, {
55
58
  onClick: onStatusClick,
56
59
  className: "statusIcon",
57
- status: nodeStatus[id].jobStatus
60
+ status: nodeStatus.nodeStatus
58
61
  }))));
59
62
  };
60
63
  export default NodeElement;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  interface Props {
3
3
  className?: string;
4
- status: 'success' | 'fail' | 'running' | 'ready' | 'trend';
4
+ status: 'success' | 'fail' | 'running' | 'trend';
5
5
  onClick?: (e: any) => void;
6
6
  }
7
7
  export declare const NodeStatus: React.FC<Props>;
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * @Author: wangxian
3
3
  * @Date: 2023-08-22 14:00:47
4
- * @LastEditTime: 2023-08-22 17:15:20
4
+ * @LastEditTime: 2023-08-29 14:14:49
5
5
  */
6
6
  import React from 'react';
7
7
  import { CheckCircleOutlined, CloseCircleOutlined, SyncOutlined, LineChartOutlined } from '@ant-design/icons';
@@ -69,14 +69,14 @@ declare class DPGraph extends GraphCore<BaseNode, BaseEdge> {
69
69
  clearGraphCells: () => void;
70
70
  onMoveNodes(movedNodes: any[]): Promise<void>;
71
71
  updateEdgeStatus: () => void;
72
- runGraph: () => Promise<{
72
+ runGraph: (debugId?: string) => Promise<{
73
73
  success: boolean;
74
74
  }>;
75
- loadExecutionStatus: () => Promise<void>;
76
- stopRunGraph: () => Promise<any>;
75
+ loadExecutionStatus: (debugId?: string) => Promise<void>;
76
+ stopRunGraph: (debugId?: string) => Promise<any>;
77
77
  dispose(): void;
78
78
  }
79
79
  export declare let gDPGraph: DPGraph;
80
80
  export default DPGraph;
81
81
  export declare const useDPGraph: (graphData?: NDPGraph.GraphData) => DPGraph;
82
- export declare const useUnmountDPGraph: () => void;
82
+ export declare const useUnmountDPGraph: (dispose: boolean) => void;
@@ -13,7 +13,7 @@ import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
13
13
  /*
14
14
  * @Author: wangxian
15
15
  * @Date: 2022-05-24 14:31:01
16
- * @LastEditTime: 2023-08-25 16:03:31
16
+ * @LastEditTime: 2023-08-30 09:09:43
17
17
  */
18
18
  import _regeneratorRuntime from "@babel/runtime/regenerator";
19
19
  import produce from 'immer';
@@ -274,12 +274,11 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
274
274
  var _assertThisInitialize = _assertThisInitialized(_this),
275
275
  graph = _assertThisInitialize.graph;
276
276
  var executionStatus = _this.factory$.executionStatus.getValue();
277
- var instStatus = executionStatus.instStatus;
278
- var nodeIds = Object.keys(instStatus);
279
- var runningNodeIds = nodeIds.filter(function (id) {
280
- return instStatus[id] === 'running';
277
+ var statusList = executionStatus.statusList;
278
+ var runningNodeIds = statusList.filter(function (it) {
279
+ return it.nodeStatus === 'running';
281
280
  }).map(function (i) {
282
- return i.toString();
281
+ return i.nodeId.toString();
283
282
  });
284
283
  _this.updateEdges(function (edges) {
285
284
  edges.forEach(function (edge) {
@@ -289,7 +288,6 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
289
288
  if (!view) {
290
289
  return;
291
290
  }
292
- // view!.addClass('edgeProcessing');
293
291
  if (runningNodeIds.includes(nodeId.toString())) {
294
292
  view.addClass('edgeProcessing');
295
293
  } else {
@@ -300,104 +298,123 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
300
298
  }
301
299
  };
302
300
  // 运行画布或节点
303
- _this.runGraph = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
304
- return _regeneratorRuntime.wrap(function _callee2$(_context2) {
305
- while (1) switch (_context2.prev = _context2.next) {
306
- case 0:
307
- _context2.prev = 0;
308
- _this.factory$.running.next(true);
309
- _this.loadExecutionStatus(); // 发起执行状态查询
310
- return _context2.abrupt("return", {
311
- success: true
312
- });
313
- case 6:
314
- _context2.prev = 6;
315
- _context2.t0 = _context2["catch"](0);
316
- console.error("\u6267\u884C\u5931\u8D25", _context2.t0);
317
- return _context2.abrupt("return", {
318
- success: false
319
- });
320
- case 10:
321
- case "end":
322
- return _context2.stop();
323
- }
324
- }, _callee2, null, [[0, 6]]);
325
- }));
301
+ _this.runGraph = /*#__PURE__*/function () {
302
+ var _ref4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(debugId) {
303
+ return _regeneratorRuntime.wrap(function _callee2$(_context2) {
304
+ while (1) switch (_context2.prev = _context2.next) {
305
+ case 0:
306
+ _context2.prev = 0;
307
+ _this.factory$.running.next(true);
308
+ _this.loadExecutionStatus(debugId); // 发起执行状态查询
309
+ return _context2.abrupt("return", {
310
+ success: true
311
+ });
312
+ case 6:
313
+ _context2.prev = 6;
314
+ _context2.t0 = _context2["catch"](0);
315
+ console.error("\u6267\u884C\u5931\u8D25", _context2.t0);
316
+ return _context2.abrupt("return", {
317
+ success: false
318
+ });
319
+ case 10:
320
+ case "end":
321
+ return _context2.stop();
322
+ }
323
+ }, _callee2, null, [[0, 6]]);
324
+ }));
325
+ return function (_x2) {
326
+ return _ref4.apply(this, arguments);
327
+ };
328
+ }();
326
329
  // 获取执行状态
327
- _this.loadExecutionStatus = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4() {
328
- var _this$queryStatusSub;
329
- var server;
330
- return _regeneratorRuntime.wrap(function _callee4$(_context4) {
331
- while (1) switch (_context4.prev = _context4.next) {
332
- case 0:
333
- (_this$queryStatusSub = _this.queryStatusSub) === null || _this$queryStatusSub === void 0 ? void 0 : _this$queryStatusSub.unsubscribe();
334
- // 每三秒查询一次执行状态
335
- server = new MetadataService();
336
- _this.queryStatusSub = timer(0, 5000).subscribe( /*#__PURE__*/function () {
337
- var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3(resPromise) {
338
- var execStatusRes, status, _this$queryStatusSub2;
339
- return _regeneratorRuntime.wrap(function _callee3$(_context3) {
340
- while (1) switch (_context3.prev = _context3.next) {
341
- case 0:
342
- _context3.next = 2;
343
- return server.GetGraphStatus(_this.factory$.dpGraph.getValue());
344
- case 2:
345
- execStatusRes = _context3.sent;
346
- _this.factory$.executionStatus.next(execStatusRes.data);
347
- _this.updateEdgeStatus();
348
- // 执行完成时停止查询状态
349
- status = execStatusRes.data.status;
350
- if (status === 'default') {
351
- _this.factory$.running.next(false);
352
- server.StopGraphRun({});
353
- (_this$queryStatusSub2 = _this.queryStatusSub) === null || _this$queryStatusSub2 === void 0 ? void 0 : _this$queryStatusSub2.unsubscribe();
354
- } else {
355
- _this.factory$.running.next(true);
356
- }
357
- case 7:
358
- case "end":
359
- return _context3.stop();
360
- }
361
- }, _callee3);
362
- }));
363
- return function (_x2) {
364
- return _ref6.apply(this, arguments);
365
- };
366
- }());
367
- case 3:
368
- case "end":
369
- return _context4.stop();
370
- }
371
- }, _callee4);
372
- }));
330
+ _this.loadExecutionStatus = /*#__PURE__*/function () {
331
+ var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4(debugId) {
332
+ var _this$queryStatusSub;
333
+ var server;
334
+ return _regeneratorRuntime.wrap(function _callee4$(_context4) {
335
+ while (1) switch (_context4.prev = _context4.next) {
336
+ case 0:
337
+ (_this$queryStatusSub = _this.queryStatusSub) === null || _this$queryStatusSub === void 0 ? void 0 : _this$queryStatusSub.unsubscribe();
338
+ // 每三秒查询一次执行状态
339
+ server = new MetadataService();
340
+ _this.queryStatusSub = timer(0, 5000).subscribe( /*#__PURE__*/function () {
341
+ var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3(resPromise) {
342
+ var execStatusRes, status, _this$queryStatusSub2;
343
+ return _regeneratorRuntime.wrap(function _callee3$(_context3) {
344
+ while (1) switch (_context3.prev = _context3.next) {
345
+ case 0:
346
+ _context3.next = 2;
347
+ return server.GetGraphStatus(_objectSpread({
348
+ debugId: debugId
349
+ }, _this.factory$.dpGraph.getValue()));
350
+ case 2:
351
+ execStatusRes = _context3.sent;
352
+ _this.factory$.executionStatus.next(execStatusRes.data);
353
+ _this.updateEdgeStatus();
354
+ // 执行完成时停止查询状态
355
+ status = execStatusRes.data.status;
356
+ if (status === 0) {
357
+ _this.factory$.running.next(false);
358
+ server.StopGraphRun({
359
+ debugId: debugId
360
+ });
361
+ (_this$queryStatusSub2 = _this.queryStatusSub) === null || _this$queryStatusSub2 === void 0 ? void 0 : _this$queryStatusSub2.unsubscribe();
362
+ } else {
363
+ _this.factory$.running.next(true);
364
+ }
365
+ case 7:
366
+ case "end":
367
+ return _context3.stop();
368
+ }
369
+ }, _callee3);
370
+ }));
371
+ return function (_x4) {
372
+ return _ref6.apply(this, arguments);
373
+ };
374
+ }());
375
+ case 3:
376
+ case "end":
377
+ return _context4.stop();
378
+ }
379
+ }, _callee4);
380
+ }));
381
+ return function (_x3) {
382
+ return _ref5.apply(this, arguments);
383
+ };
384
+ }();
373
385
  // 停止实验的执行
374
- _this.stopRunGraph = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5() {
375
- var server, stopRes;
376
- return _regeneratorRuntime.wrap(function _callee5$(_context5) {
377
- while (1) switch (_context5.prev = _context5.next) {
378
- case 0:
379
- _context5.prev = 0;
380
- server = new MetadataService();
381
- _context5.next = 4;
382
- return server.StopGraphRun({});
383
- case 4:
384
- stopRes = _context5.sent;
385
- _this.factory$.running.next(false);
386
- _this.loadExecutionStatus(); // 发起执行状态查询
387
- return _context5.abrupt("return", stopRes);
388
- case 10:
389
- _context5.prev = 10;
390
- _context5.t0 = _context5["catch"](0);
391
- console.error("\u505C\u6B62\u5931\u8D25", _context5.t0);
392
- return _context5.abrupt("return", {
393
- success: false
394
- });
395
- case 14:
396
- case "end":
397
- return _context5.stop();
398
- }
399
- }, _callee5, null, [[0, 10]]);
400
- }));
386
+ _this.stopRunGraph = /*#__PURE__*/function () {
387
+ var _ref7 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5(debugId) {
388
+ var server, stopRes;
389
+ return _regeneratorRuntime.wrap(function _callee5$(_context5) {
390
+ while (1) switch (_context5.prev = _context5.next) {
391
+ case 0:
392
+ _context5.prev = 0;
393
+ server = new MetadataService();
394
+ _context5.next = 4;
395
+ return server.StopGraphRun({});
396
+ case 4:
397
+ stopRes = _context5.sent;
398
+ _this.factory$.running.next(false);
399
+ _this.loadExecutionStatus(debugId); // 发起执行状态查询
400
+ return _context5.abrupt("return", stopRes);
401
+ case 10:
402
+ _context5.prev = 10;
403
+ _context5.t0 = _context5["catch"](0);
404
+ console.error("\u505C\u6B62\u5931\u8D25", _context5.t0);
405
+ return _context5.abrupt("return", {
406
+ success: false
407
+ });
408
+ case 14:
409
+ case "end":
410
+ return _context5.stop();
411
+ }
412
+ }, _callee5, null, [[0, 10]]);
413
+ }));
414
+ return function (_x5) {
415
+ return _ref7.apply(this, arguments);
416
+ };
417
+ }();
401
418
  _this.initialize(_graphData);
402
419
  return _this;
403
420
  }
@@ -431,7 +448,7 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
431
448
  }
432
449
  }, _callee6, this, [[1, 7]]);
433
450
  }));
434
- function initialize(_x3) {
451
+ function initialize(_x6) {
435
452
  return _initialize.apply(this, arguments);
436
453
  }
437
454
  return initialize;
@@ -450,7 +467,7 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
450
467
  }
451
468
  }, _callee7, this);
452
469
  }));
453
- function loadDPGraph(_x4) {
470
+ function loadDPGraph(_x7) {
454
471
  return _loadDPGraph.apply(this, arguments);
455
472
  }
456
473
  return loadDPGraph;
@@ -630,7 +647,7 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
630
647
  }
631
648
  }, _callee10, this);
632
649
  }));
633
- function onConnectNode(_x5) {
650
+ function onConnectNode(_x8) {
634
651
  return _onConnectNode.apply(this, arguments);
635
652
  }
636
653
  return onConnectNode;
@@ -777,7 +794,7 @@ var DPGraph = /*#__PURE__*/function (_GraphCore) {
777
794
  }
778
795
  }, _callee11, this);
779
796
  }));
780
- function onMoveNodes(_x6) {
797
+ function onMoveNodes(_x9) {
781
798
  return _onMoveNodes.apply(this, arguments);
782
799
  }
783
800
  return onMoveNodes;
@@ -797,10 +814,12 @@ export var useDPGraph = function useDPGraph(graphData) {
797
814
  gDPGraph = new DPGraph(graphData);
798
815
  return gDPGraph;
799
816
  };
800
- export var useUnmountDPGraph = function useUnmountDPGraph() {
817
+ export var useUnmountDPGraph = function useUnmountDPGraph(dispose) {
801
818
  React.useEffect(function () {
802
819
  return function () {
803
- gDPGraph.dispose();
820
+ if (dispose) {
821
+ gDPGraph.dispose();
822
+ }
804
823
  };
805
- }, []);
824
+ }, [dispose]);
806
825
  };
@@ -7,6 +7,10 @@ interface IDynamicPortsProps {
7
7
  * 渲染图结构
8
8
  */
9
9
  defaultValue?: NDPGraph.GraphData;
10
+ /**
11
+ * 离开销毁
12
+ */
13
+ dispose?: boolean;
10
14
  /**
11
15
  * 图更新事件
12
16
  */
@@ -19,6 +23,10 @@ interface IDynamicPortsProps {
19
23
  * 节点选中事件
20
24
  */
21
25
  onStatusClick?: (data: any) => void;
26
+ /**
27
+ * dag停止运行
28
+ */
29
+ onStopGraph?: () => void;
22
30
  /**
23
31
  * 获取实例
24
32
  */
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
3
3
  /*
4
4
  * @Author: wangxian
5
5
  * @Date: 2022-05-16 18:53:31
6
- * @LastEditTime: 2023-08-22 17:06:28
6
+ * @LastEditTime: 2023-08-30 08:50:08
7
7
  */
8
8
  import React from 'react';
9
9
  import { filter } from 'rxjs';
@@ -18,8 +18,11 @@ import ContextMenu from './comps/ContextMenu';
18
18
  import { GraphHandler } from './comps/GraphHandler';
19
19
  var DynamicPorts = function DynamicPorts(props) {
20
20
  var defaultValue = props.defaultValue,
21
+ _props$dispose = props.dispose,
22
+ dispose = _props$dispose === void 0 ? true : _props$dispose,
21
23
  onChange = props.onChange,
22
24
  onNodeSelect = props.onNodeSelect,
25
+ onStopGraph = props.onStopGraph,
23
26
  onStatusClick = props.onStatusClick,
24
27
  getDPGraphInstance = props.getDPGraphInstance;
25
28
  var divRef = React.useRef(null);
@@ -31,7 +34,7 @@ var DynamicPorts = function DynamicPorts(props) {
31
34
  var dpGraphRef = React.useRef();
32
35
  var firstLoadRef = React.useRef(true);
33
36
  // 处理画布卸载
34
- useUnmountDPGraph();
37
+ useUnmountDPGraph(dispose);
35
38
  var resizeSensorRef = React.useRef(null);
36
39
  var onResizeStrategy = function onResizeStrategy() {
37
40
  var _dpGraphRef$current, _dpGraphRef$current2;
@@ -68,6 +71,12 @@ var DynamicPorts = function DynamicPorts(props) {
68
71
  _dpGraph.factory$.statusClick.subscribe(function (v) {
69
72
  onStatusClick && onStatusClick(v);
70
73
  });
74
+ // 停止调试的回调
75
+ _dpGraph.factory$.running.subscribe(function (v) {
76
+ if (!v) {
77
+ onStopGraph && onStopGraph();
78
+ }
79
+ });
71
80
  getDPGraphInstance && getDPGraphInstance(_dpGraph);
72
81
  firstLoadRef.current = false;
73
82
  }
@@ -63,14 +63,10 @@ export declare namespace NDPGraph {
63
63
  [key: string]: any;
64
64
  }
65
65
  interface ExecutionStatus {
66
- instStatus: InstStatus;
67
- execInfo: ExecInfo;
66
+ statusList: {
67
+ nodeId: string;
68
+ nodeStatus: string;
69
+ }[];
68
70
  status: string;
69
71
  }
70
- interface InstStatus {
71
- [k: string]: string;
72
- }
73
- interface ExecInfo {
74
- [k: string]: any;
75
- }
76
72
  }
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * @Author: wangxian
3
3
  * @Date: 2022-05-24 16:10:46
4
- * @LastEditTime: 2023-08-22 15:25:07
4
+ * @LastEditTime: 2023-08-30 08:55:55
5
5
  */
6
6
  export {};
@@ -0,0 +1,5 @@
1
+ import type { FC } from 'react';
2
+ import '@milkdown/theme-nord/style.css';
3
+ import './index.less';
4
+ export declare const MilkdownEditor: FC;
5
+ export declare const MdEditor2: () => JSX.Element;
@@ -0,0 +1,25 @@
1
+ import React from "react";
2
+ /*
3
+ * @Author: wangxian
4
+ * @Date: 2023-08-29 09:09:04
5
+ * @LastEditTime: 2023-08-29 11:17:36
6
+ */
7
+ import { defaultValueCtx, Editor, rootCtx } from '@milkdown/core';
8
+ import { Milkdown, MilkdownProvider, useEditor } from '@milkdown/react';
9
+ import { commonmark } from '@milkdown/preset-commonmark';
10
+ import { nord } from '@milkdown/theme-nord';
11
+ import '@milkdown/theme-nord/style.css';
12
+ import './index.less';
13
+ export var MilkdownEditor = function MilkdownEditor() {
14
+ useEditor(function (root) {
15
+ return Editor.make().config(function (ctx) {
16
+ ctx.set(rootCtx, root);
17
+ ctx.set(defaultValueCtx, markdown);
18
+ }).config(nord).use(commonmark);
19
+ }, []);
20
+ return /*#__PURE__*/React.createElement(Milkdown, null);
21
+ };
22
+ export var MdEditor2 = function MdEditor2() {
23
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(MilkdownProvider, null, /*#__PURE__*/React.createElement(MilkdownEditor, null)));
24
+ };
25
+ var markdown = "> You're scared of a world where you're needed. # \u51B2\u51FB\u6307\u6807\u9A8C\u8BC1V3\n\n## \u4E00\u3001\u603B\u7ED3\n\n\u672C\u6B21**\u51B2\u51FB\u6307\u6807\u9A8C\u8BC1V3(V1\u7248\u672C)**\u5171\u8BA1\u4EFF\u771F**1**\u4E2A\u6848\u4F8B\uFF0C\u4EA7\u751F**1**\u6761\u62A5\u8B66\uFF0C\u5305\u542B**204**\u6761\u62A5\u8B66\u8BE6\u60C5\u3002\n\n\u5728**\u662F\u5426\u6709\u6548**\u8BC4\u4EF7\u7EF4\u5EA6\u4E2D\uFF1A**\u662F**\u517182\u6761\uFF0C\u5360\u6BD441.84%\uFF1B**\u5426**\u5171114\u6761\uFF0C\u5360\u6BD458.16%\uFF1B\n\n| \u8BC4\u4EF7\u7EF4\u5EA6 | \u603B\u6570 | \u5360\u6BD4 |\n| --- | --- | --- |\n| \u662F | 82 | 41.84% |\n| \u5426 | 114 | 58.16% |\n\n\u5728**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\u8BC4\u4EF7\u7EF4\u5EA6\u4E2D\uFF1A**\u51B2\u51FB\u5224\u65AD\u6709\u8BEF**\u51716\u6761\uFF0C\u5360\u6BD43.06%\uFF1B**\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF**\u517161\u6761\uFF0C\u5360\u6BD431.12%\uFF1B**\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF**\u51715\u6761\uFF0C\u5360\u6BD42.55%\uFF1B**\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002**\u517134\u6761\uFF0C\u5360\u6BD417.35%\uFF1B**\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002**\u51718\u6761\uFF0C\u5360\u6BD44.08%\uFF1B**\u7A7A**\u517182\u6761\uFF0C\u5360\u6BD441.84%\uFF1B\n\n| \u8BC4\u4EF7\u7EF4\u5EA6 | \u603B\u6570 | \u5360\u6BD4 |\n| --- | --- | --- |\n| \u51B2\u51FB\u5224\u65AD\u6709\u8BEF | 6 | 3.06% |\n| \u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF | 61 | 31.12% |\n| \u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF | 5 | 2.55% |\n| \u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002 | 34 | 17.35% |\n| \u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002 | 8 | 4.08% |\n| \u7A7A | 82 | 41.84% |\n\n**\u603B\u4F53\u6765\u770B\uFF0C\u62A5\u8B66\u6709\u6548\u6027\uFF1A______**\n\n## \u4E8C\u3001\u5177\u4F53\u5206\u6790\n\n### 1\u3001\u77F3\u8111\u6CB9\u5206\u79BB\u5854\u9876\u56DE\u6D41\u6CF51134-P-0406A(2474)\n\n**pid**\uFF1Anull\n\n**\u62A5\u8B66\u65F6\u523B**\uFF1Anull\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u5B58\u5728\u8F6C\u9891\u95F4\u9694\u7684\u51B2\u51FB\uFF0C\u51B2\u51FB\u7A0D\u5F31\uFF0C\u672A\u8BC6\u522B\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/21e55b9e-d0b2-4c93-b39d-8f1d77a535fa)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u5468\u671F\u6027\u4E0D\u660E\u663E\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/7963d26b-0dc4-45c7-9464-1513dfaa3804)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u4F4E\u9891\u6270\u52A8\uFF0C\u5468\u671F\u660E\u663E\u672A\u8BC6\u522B\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/2005fb45-913b-4332-9086-05a7b9c33179)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u504F\u4F4E\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/31f7ef2e-e126-4642-a5ad-9e56bb66854f)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u504F\u4F4E\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/5331ed8c-fb6f-48f0-b1d7-2f59e65c6cd1)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u4F4E\u9891\u6270\u52A8\uFF0C\u5468\u671F\u663E\u8457\uFF0C\u672A\u8BC6\u522B\u3002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u590D\u5236\u8BA1\u7B97\u504F\u9AD8\uFF0C\u4EE5\u4E0B\u65B9\u6CE2\u5F62\u4E3A\u4E3B\uFF0C\u57FA\u5E26\u4E0E\u5CF0\u503C\u76F8\u5DEE\u7A0D\u5927\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/ec5efcd9-9e97-4725-a97f-d1c666abc292)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u590D\u5236\u5224\u65AD\u504F\u4F4E\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/cb7f61c2-094d-4322-a105-bc643410df5f)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u4F4E\u9891\u51B2\u51FB\u663E\u8457\uFF0C\u5468\u671F\u6027\u660E\u663E\u672A\u8BC6\u522B\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/1fcb1ff1-4cee-4ba4-85f6-4511728137a4)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5224\u65AD\u7A0D\u9AD8\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u6027\u660E\u663E\u672A\u8BC6\u522B\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/ec17603b-b3b6-43e8-abd3-001390aeabe3)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5E45\u503C\u8BC6\u522B\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c53996ff-2386-4812-b511-4c53bae1b1bb)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5224\u65AD\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/89f6f649-2f77-4178-bb23-a783e033b438)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u6027\u4E0D\u663E\u8457\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/8b6106b6-8c9c-4c6b-8748-fa081853599c)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E0D\u5BF9\u79F0\uFF0C\u51B2\u51FB\u5E45\u503C\u5224\u65AD\u6709\u8BEF\u3002![](http://172.16.4.253:8087/phm/label-web/image/download/6c46aec7-0aa8-4d93-8daa-480bbe3f2877)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u4F4E\u9891\u6270\u52A8\uFF0C\u5468\u671F\u6027\u8F83\u597D\uFF0C\u672A\u8BC6\u522B\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/5821130a-fb77-4328-8fc7-eb549f7f88d3)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/1a59f624-1f1c-4489-b019-a663822dead6)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u8BC6\u522B\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/7bccf441-feab-4dd4-8d3b-e732b887a575)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/3e6081bf-f220-4cb2-b5f5-4ecd7ac145fc)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\u3002![](http://172.16.4.253:8087/phm/label-web/image/download/01eae751-06b5-4c14-9bff-54fd21d22178)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/de16633d-b25a-4e07-9e4d-db3a4a7e378b)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/9cbdecb0-cdba-4c02-8dec-0e59b8775e5d)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/16814d15-7216-4030-8d35-3f137cb439c3)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/da2ccb12-6836-470d-8b18-4c7f1638b3d1)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/dc63f99c-0ad5-42ae-a562-9cc71b45483f)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u5224\u65AD\u6709\u8BEF![](http://172.16.4.253:8087/phm/label-web/image/download/da6f25e0-15a3-4222-b7af-58f455bb3f4e)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/bfad8180-62be-498f-a2bb-9754bc17a895)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/be1f0624-a2d7-4cf0-ae90-88820a6b42cd)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/fc2dec9f-8d57-4ee8-b771-073c6c6c3913)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u6027\u672A\u8BC6\u522B\uFF0C\u51B2\u51FB\u5CF0\u503C\u8BC6\u522B\u504F\u4F4E\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/f84c63b4-4763-4467-98a2-b98417a5d9d4)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/3da6615c-5a30-4bdb-9921-6917cc35e637)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u57FA\u5E26\u504F\u9AD8\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c3e6311f-1a55-49bf-8250-e704fdd6e2b3)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u6027\u8BC6\u522B\u6709\u8BEF\uFF0C\u4E14\u8F74\u627F\u5916\u5708\u51B2\u51FB\u8BC6\u522B\u6210\u8F6C\u9891\u95F4\u9694\u7684\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c45885b0-4938-4f9d-8120-737f9c052569)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/85cfdae6-dd43-44b9-b47d-63e13189623b)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u8F83\u5DEE\uFF0C\u4E3A\u975E\u5468\u671F\u6027\u5468\u671F\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/4f64631e-098e-4004-b7bd-8d15972819cd)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\uFF0C\u5C06100Hz\u5DE6\u53F3\u7684\u51B2\u51FB\u8BC6\u522B\u6210\u8F6C\u9891\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/02d6fe38-2a81-4ac6-87b0-f41abff494d1)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/e21be0e1-72e9-45c1-9df5-260a40b9130a)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u9891\u7387\u4E3A\u53F6\u7247\u901A\u8FC7\u9891\u7387\u51B2\u51FB\uFF08149Hz\u5DE6\u53F3\uFF09\uFF0C\u6307\u6807\u8BC6\u522B\u621076Hz\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/1e6eeb3c-456c-43cd-8c2a-3b9d2b220a06)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/d0948017-d3b3-4248-b13d-59625c7a3805)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5E45\u503C\u504F\u9AD8\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/85f2d6a6-1c31-4882-9749-10965a4203ef)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u51B2\u51FB\u6CE2\u5F62\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/db8448f1-084b-4450-b37e-850024146387)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5E45\u503C\u504F\u9AD8\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/3e605491-c0ef-4a1c-9775-9192fa680384)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u572810Hz\u5DE6\u53F3\uFF0C\u6307\u6807\u8BC6\u522B\u4E3A18Hz\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/ecc7939c-e42b-4208-b262-339296735a47)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5E45\u503C\u504F\u9AD8\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c0a9363b-580c-4277-a0b6-3f3595f00675)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u5E45\u503C\u504F\u9AD8\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/8d417162-311f-4312-b21c-720abff059cb)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002 \n![](http://172.16.4.253:8087/phm/label-web/image/download/83f48b8d-4a30-4608-a11d-9137aafa50e6)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/490f0fe9-5545-47af-a80f-5f0d562c9d86)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u663E\u793A\u4E3A\u5468\u671F\u6027\u8F6C\u9891\u95F4\u9694\u51B2\u51FB\uFF0C\u6307\u6807\u8BC6\u522B\u4E3A\u975E\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/12134bd8-f229-4a89-873f-839dbf172cc0)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u4E3A7.5Hz\uFF0C\u6307\u6807\u8BA1\u7B97\u4E3A41.54Hz\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/ff67b4ff-ac72-447d-a84b-5db7c0d62f83)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/06ca38e6-b024-4376-b1c0-58e90eba8ceb)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/0ef86e68-5be9-436e-82dd-7e71162c6da9)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/8f56f824-76c6-45aa-bd57-848f07eab61b)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c95e3953-27fe-431d-9c2f-c06da59fbe42)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/51339f63-36ce-419c-ad3c-542d60dde401)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/1d0fdebe-c65c-432a-94c2-0c2cd9a6bcf3)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u4E3A\u5468\u671F\u6027\u51B2\u51FB\uFF0C\u51B2\u51FB\u9891\u7387\u4E3A50Hz\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/3e4a6418-c8c8-47aa-bfbf-ab5efe08fbb3)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c716bf26-7a29-4e0e-8c52-4669ecf963eb)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/04b15c73-4cd1-4ac2-9c88-bca67def6c9a)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u8F83\u5DEE\uFF0C\u4E3A\u975E\u5468\u671F\u6027\u5468\u671F\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/9cea309b-a299-4bd1-ab16-85e200a78444)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u51B2\u51FB\u4E3A\u5468\u671F\u6027\u51B2\u51FB\uFF0C\u51B2\u51FB\u95F4\u9694\u4E3A\u5916\u5708\u7F3A\u9677\u9891\u7387\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/518ebfe5-20a7-424f-942e-94d17331aeea)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/542ce5d0-913f-4999-9286-bf6c19f18545)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u51B2\u51FB\u4E3A\u5468\u671F\u6027\u51B2\u51FB\uFF0C\u51B2\u51FB\u95F4\u9694\u4E3A\u5916\u5708\u7F3A\u9677\u9891\u7387\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/1df99528-dfb5-4660-8700-45c9fe1df5ea)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/c983c663-f73f-4b3b-86af-c7a67192c532)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\uFF0C\u6CE2\u5F62\u51B2\u51FB\u63A5\u8FD1\u53F6\u7247\u901A\u8FC7\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/b209c95f-d4b6-419c-ab11-c0577d0773c0)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/578a844f-9446-4f93-b956-a127b6ac2a35)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u9891\u7387\u5728130Hz\u5DE6\u53F3\uFF0C\u6307\u6807\u8BC6\u522B\u4E3A66Hz\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/778530dd-ee87-46d5-8912-ccdb5fff98ea)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/39b188ac-2140-4dd2-b8ba-590ae9bc67ec)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/d8ed6c60-4212-4bb3-a5f9-e96cc0f156ca)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/f88a896f-10aa-4f7d-b223-da2e184312d5)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u51B2\u51FB\u4E3A\u975E\u5468\u671F\u6027\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/f59bd3c3-66f3-4240-9910-930830c08ff1)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u5B58\u5728\u51B2\u51FB\u7279\u5F81\uFF0C\u6307\u6807\u8BC6\u522B\u4E3A\u65E0\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/963ec099-e6a3-4512-a544-b769d261855a)\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/9ed02cb0-1e05-4721-8058-901e62034efd)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u6CE2\u5F62\u5B58\u5728\u51B2\u51FB\u7279\u5F81\uFF0C\u6307\u6807\u8BC6\u522B\u4E3A\u65E0\u51B2\u51FB\u3002\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/88403943-b543-4778-a1a8-e4c806fa7062)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/e7fcc27a-57c1-47c8-b32f-898c2bfbd7e7)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/e514e832-a50a-43e3-8e78-52934e7ce41d)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u672A\u89C1\u660E\u663E\u51B2\u51FB\u7279\u5F81![](http://172.16.4.253:8087/phm/label-web/image/download/578494b2-9f85-4f51-991f-93ddfd01c0c7)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/e4a9809c-eef8-4a61-8c9d-4ca4e4a873b5)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/705006eb-a42c-4a30-aa91-62353a14b8e4)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/b727c820-4318-4545-9f34-0e173e8d81de)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/56fd5177-6c10-42ed-8aca-34118dc5a1fe)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8![](http://172.16.4.253:8087/phm/label-web/image/download/eede5a9f-5790-4e1a-b342-46cdbf8e72d7)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/07328be9-7493-4381-a065-e6d9e286bd86)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\n\n![](http://172.16.4.253:8087/phm/label-web/image/download/be14f0bb-317d-4a56-9842-ea678e09a53d)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/90782db9-1b10-4dd0-bfdd-3c6e07c702bc)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/e549a661-08bc-44fc-878f-e4b71a637df2)\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u662F\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5CF0\u503C\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u51B2\u51FB\u5CF0\u503C\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/c89b1969-ba2f-4bcf-8581-9065d6ccdd97)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u6027\u5224\u65AD\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u5468\u671F\u8BC6\u522B\u6709\u8BEF\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u5468\u671F\u4E3A67Hz\uFF0C\u8BC6\u522B\u6709\u8BEF![](http://172.16.4.253:8087/phm/label-web/image/download/aac2faea-2c8e-4b67-a329-b06d13eee51e)\n\n**\u901A\u7528\u673A\u6CF5\u51B2\u51FB\u6307\u6807\u8BC4\u4EF7**\uFF1A\u51B2\u51FB\u57FA\u5E26\u5224\u65AD\u4E0D\u5408\u9002\n\n**\u662F\u5426\u6709\u6548**\uFF1A\u5426\n\n**\u8BF4\u660E**\uFF1A\n\n\u57FA\u5E26\u504F\u9AD8\u3001\u5CF0\u503C\u504F\u4F4E![](http://172.16.4.253:8087/phm/label-web/image/download/5f53c863-5947-4a7d-9a17-abf54e1a1e3b)\n\n";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.3.1",
4
+ "version": "1.3.3",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",
@@ -36,6 +36,13 @@
36
36
  "@antv/x6-react-shape": "^1.6.0",
37
37
  "@babel/helper-create-regexp-features-plugin": "^7.12.13",
38
38
  "@babel/runtime": "^7.11.2",
39
+ "@milkdown/core": "^7.3.0",
40
+ "@milkdown/ctx": "^7.3.0",
41
+ "@milkdown/preset-commonmark": "^7.3.0",
42
+ "@milkdown/prose": "^7.3.0",
43
+ "@milkdown/react": "^7.3.0",
44
+ "@milkdown/theme-nord": "^7.3.0",
45
+ "@milkdown/transformer": "^7.3.0",
39
46
  "@popperjs/core": "^2.4.4",
40
47
  "@types/file-saver": "^2.0.5",
41
48
  "@types/markdown-it": "^12.2.3",