musae 1.0.3 → 1.0.5
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.
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { MarkdownProps } from "../../types/markdown";
|
|
3
|
-
|
|
3
|
+
interface Props extends MarkdownProps {
|
|
4
|
+
/**
|
|
5
|
+
* @description
|
|
6
|
+
* is in client, render html
|
|
7
|
+
*/
|
|
8
|
+
isInClient: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const Markdown: ({ value, className, style, isInClient }: Props) => Promise<React.JSX.Element>;
|
|
4
11
|
export default Markdown;
|
|
@@ -103,7 +103,6 @@ var useContextValue = function useContextValue(_ref2) {
|
|
|
103
103
|
var expandedKeys = React.useMemo(function () {
|
|
104
104
|
return new Set(_expandedKeys);
|
|
105
105
|
}, [_expandedKeys]);
|
|
106
|
-
console.log("selectedKeys====", selectedKeys);
|
|
107
106
|
// click handler
|
|
108
107
|
var click = React.useCallback(/*#__PURE__*/function () {
|
|
109
108
|
var _ref3 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee(key) {
|
|
@@ -101,7 +101,6 @@ var useContextValue = function useContextValue(_ref2) {
|
|
|
101
101
|
var expandedKeys = useMemo(function () {
|
|
102
102
|
return new Set(_expandedKeys);
|
|
103
103
|
}, [_expandedKeys]);
|
|
104
|
-
console.log("selectedKeys====", selectedKeys);
|
|
105
104
|
// click handler
|
|
106
105
|
var click = useCallback(/*#__PURE__*/function () {
|
|
107
106
|
var _ref3 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee(key) {
|
package/dist/styles.css
CHANGED
|
@@ -91,10 +91,6 @@
|
|
|
91
91
|
syntax: "*"; inherits: false;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
@property --borderBottomColor {
|
|
95
|
-
syntax: "*"; inherits: false;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
94
|
@property --joftei {
|
|
99
95
|
syntax: "*";
|
|
100
96
|
}
|
|
@@ -103,10 +99,6 @@
|
|
|
103
99
|
syntax: "*";
|
|
104
100
|
}
|
|
105
101
|
|
|
106
|
-
@property --163tekb {
|
|
107
|
-
syntax: "*";
|
|
108
|
-
}
|
|
109
|
-
|
|
110
102
|
:root, .musaex-5ghc8r {
|
|
111
103
|
--musaex-10wjusf: -1;
|
|
112
104
|
--musaex-1ktvdf5: 1;
|
|
@@ -205,6 +197,10 @@
|
|
|
205
197
|
--musaex-1mx1aa4: 1fr;
|
|
206
198
|
}
|
|
207
199
|
|
|
200
|
+
@property --borderBottomColor {
|
|
201
|
+
syntax: "*"; inherits: false;
|
|
202
|
+
}
|
|
203
|
+
|
|
208
204
|
@property --borderTopColor {
|
|
209
205
|
syntax: "*"; inherits: false;
|
|
210
206
|
}
|
|
@@ -249,6 +245,10 @@
|
|
|
249
245
|
syntax: "*"; inherits: false;
|
|
250
246
|
}
|
|
251
247
|
|
|
248
|
+
@property --163tekb {
|
|
249
|
+
syntax: "*";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
252
|
@property --imnen1 {
|
|
253
253
|
syntax: "*";
|
|
254
254
|
}
|
package/dist/types/markdown.d.ts
CHANGED