lexical 0.1.4 → 0.1.8
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/AutoLinkNode.js +9 -1
- package/CodeHighlightNode.js +9 -3
- package/CodeNode.js +9 -5
- package/HashtagNode.js +9 -3
- package/HeadingNode.js +9 -3
- package/Lexical.dev.js +7638 -0
- package/Lexical.js +9 -143
- package/Lexical.prod.js +153 -0
- package/LexicalAutoLinkNode.dev.js +58 -0
- package/LexicalAutoLinkNode.prod.js +7 -0
- package/LexicalCodeHighlightNode.dev.js +100 -0
- package/LexicalCodeHighlightNode.prod.js +9 -0
- package/LexicalCodeNode.dev.js +173 -0
- package/LexicalCodeNode.prod.js +11 -0
- package/LexicalExtendedNode.js +9 -0
- package/LexicalExtendedNodes.dev.js +32 -0
- package/LexicalExtendedNodes.prod.js +8 -0
- package/LexicalHashtagNode.dev.js +111 -0
- package/LexicalHashtagNode.prod.js +9 -0
- package/LexicalHeadingNode.dev.js +100 -0
- package/LexicalHeadingNode.prod.js +9 -0
- package/LexicalLinkNode.dev.js +115 -0
- package/LexicalLinkNode.prod.js +9 -0
- package/LexicalOverflowNode.dev.js +67 -0
- package/LexicalOverflowNode.js +9 -0
- package/LexicalOverflowNode.prod.js +8 -0
- package/LexicalQuoteNode.dev.js +86 -0
- package/LexicalQuoteNode.prod.js +9 -0
- package/LexicalTableCellNode.dev.js +81 -0
- package/LexicalTableCellNode.prod.js +9 -0
- package/LexicalTableNode.dev.js +638 -0
- package/LexicalTableNode.prod.js +21 -0
- package/LexicalTableRowNode.dev.js +76 -0
- package/LexicalTableRowNode.prod.js +8 -0
- package/LinkNode.js +9 -3
- package/QuoteNode.js +9 -3
- package/README.md +102 -4
- package/TableCellNode.js +9 -3
- package/TableNode.js +9 -10
- package/TableRowNode.js +9 -2
- package/package.json +2 -2
- package/ListItemNode.js +0 -8
- package/ListNode.js +0 -5
- package/ParagraphNode.js +0 -3
package/AutoLinkNode.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
'use strict'
|
|
8
|
+
const LexicalAutoLinkNode = process.env.NODE_ENV === 'development' ? require('./LexicalAutoLinkNode.dev.js') : require('./LexicalAutoLinkNode.prod.js')
|
|
9
|
+
module.exports = LexicalAutoLinkNode;
|
package/CodeHighlightNode.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
'use strict'
|
|
8
|
+
const LexicalCodeHighlightNode = process.env.NODE_ENV === 'development' ? require('./LexicalCodeHighlightNode.dev.js') : require('./LexicalCodeHighlightNode.prod.js')
|
|
9
|
+
module.exports = LexicalCodeHighlightNode;
|
package/CodeNode.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
'use strict'
|
|
8
|
+
const LexicalCodeNode = process.env.NODE_ENV === 'development' ? require('./LexicalCodeNode.dev.js') : require('./LexicalCodeNode.prod.js')
|
|
9
|
+
module.exports = LexicalCodeNode;
|
package/HashtagNode.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
'use strict'
|
|
8
|
+
const LexicalHashtagNode = process.env.NODE_ENV === 'development' ? require('./LexicalHashtagNode.dev.js') : require('./LexicalHashtagNode.prod.js')
|
|
9
|
+
module.exports = LexicalHashtagNode;
|
package/HeadingNode.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
'use strict'
|
|
8
|
+
const LexicalHeadingNode = process.env.NODE_ENV === 'development' ? require('./LexicalHeadingNode.dev.js') : require('./LexicalHeadingNode.prod.js')
|
|
9
|
+
module.exports = LexicalHeadingNode;
|