lexical 0.33.1-nightly.20250704.0 → 0.33.1-nightly.20250708.0
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/Lexical.dev.js +11 -1
- package/Lexical.dev.mjs +11 -1
- package/Lexical.prod.js +1 -1
- package/Lexical.prod.mjs +1 -1
- package/LexicalSelection.d.ts +6 -0
- package/package.json +1 -1
package/Lexical.dev.js
CHANGED
|
@@ -5939,6 +5939,16 @@ class RangeSelection {
|
|
|
5939
5939
|
this.dirty = true;
|
|
5940
5940
|
}
|
|
5941
5941
|
|
|
5942
|
+
/**
|
|
5943
|
+
* Sets the value of the format property on the Selection
|
|
5944
|
+
*
|
|
5945
|
+
* @param format - the format to set at the value of the format property.
|
|
5946
|
+
*/
|
|
5947
|
+
setFormat(format) {
|
|
5948
|
+
this.format = format;
|
|
5949
|
+
this.dirty = true;
|
|
5950
|
+
}
|
|
5951
|
+
|
|
5942
5952
|
/**
|
|
5943
5953
|
* Sets the value of the style property on the Selection
|
|
5944
5954
|
*
|
|
@@ -10741,7 +10751,7 @@ class LexicalEditor {
|
|
|
10741
10751
|
};
|
|
10742
10752
|
}
|
|
10743
10753
|
}
|
|
10744
|
-
LexicalEditor.version = "0.33.1-nightly.
|
|
10754
|
+
LexicalEditor.version = "0.33.1-nightly.20250708.0+dev.cjs";
|
|
10745
10755
|
|
|
10746
10756
|
let pendingNodeToClone = null;
|
|
10747
10757
|
function setPendingNodeToClone(pendingNode) {
|
package/Lexical.dev.mjs
CHANGED
|
@@ -5937,6 +5937,16 @@ class RangeSelection {
|
|
|
5937
5937
|
this.dirty = true;
|
|
5938
5938
|
}
|
|
5939
5939
|
|
|
5940
|
+
/**
|
|
5941
|
+
* Sets the value of the format property on the Selection
|
|
5942
|
+
*
|
|
5943
|
+
* @param format - the format to set at the value of the format property.
|
|
5944
|
+
*/
|
|
5945
|
+
setFormat(format) {
|
|
5946
|
+
this.format = format;
|
|
5947
|
+
this.dirty = true;
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5940
5950
|
/**
|
|
5941
5951
|
* Sets the value of the style property on the Selection
|
|
5942
5952
|
*
|
|
@@ -10739,7 +10749,7 @@ class LexicalEditor {
|
|
|
10739
10749
|
};
|
|
10740
10750
|
}
|
|
10741
10751
|
}
|
|
10742
|
-
LexicalEditor.version = "0.33.1-nightly.
|
|
10752
|
+
LexicalEditor.version = "0.33.1-nightly.20250708.0+dev.esm";
|
|
10743
10753
|
|
|
10744
10754
|
let pendingNodeToClone = null;
|
|
10745
10755
|
function setPendingNodeToClone(pendingNode) {
|