-
-
Notifications
You must be signed in to change notification settings - Fork 20
fix(deps): update dependency slate to v0.117.0 #321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/slate-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/github56/react-jsonschema-form-material-ui/Hs2ysdSCyLVctXMYWMxQcYe1KVur |
262dc98
to
d112e89
Compare
d112e89
to
e6f627b
Compare
e6f627b
to
fb55a75
Compare
fb55a75
to
8d331f9
Compare
8d331f9
to
ffa064e
Compare
ffa064e
to
40a6c42
Compare
19d9e45
to
f09cd72
Compare
f09cd72
to
d639a75
Compare
d639a75
to
de24a08
Compare
de24a08
to
d42acee
Compare
d42acee
to
86cceda
Compare
86cceda
to
74b3b38
Compare
74b3b38
to
4ef8eb3
Compare
4ef8eb3
to
1eeaf21
Compare
1eeaf21
to
fa5759f
Compare
fa5759f
to
df6b343
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.47.9
->0.117.0
Release Notes
ianstormtaylor/slate (slate)
v0.117.0
Compare Source
Minor Changes
c56a98fd
Thanks @felixfeng33! - - RemoveignoreNonSelectable
option from positions,before,after,nodes.Patch Changes
9862ae71
Thanks @joblolin95! - Handle backspace correctly for grapheme clusters in Burmese, Hindi, Khmer, Malayalam, Oriya, Punjabi, Tamil, and Telugu.v0.116.0
Compare Source
Minor Changes
fb87646e
Thanks @12joan! - - Implement experimental chunking optimization (disabled by default, see https://docs.slatejs.org/walkthroughs/09-performance).useElement
anduseElementIf
hooks to get the current element.decorate
function is changed.decorate
is a pure function of the node passed into it. Depending on the node's parent may result in decorations not being recomputed when you expect them to be.decorate
function to work on the node's parent instead.decorate
function decorates acode-line
based on the parentcode-block
's language, decorate thecode-block
instead.slate-react
, the decorations of all siblings were recomputed when one sibling was modified.slate-dom
version to0.116.0
.useSlateWithV
hookuseSlate
,useSelected
and decorations to reduce re-renders.v0.115.1
Compare Source
Patch Changes
293aca9c
Thanks @12joan! - Handle backspace correctly for grapheme clusters in Bengaliv0.114.0
Compare Source
Patch Changes
0fde537b
Thanks @12joan! - Fix: Deleting backward by a line misses 1 character (belated changeset for #5827)v0.113.0
Compare Source
v0.112.0
Compare Source
Minor Changes
5a1c728c
Thanks @yf-yang! - Addmerge
optional function to decorations and change related type signatures toDecoratedRange
. Now developers can specify how two decoration object with the same key but different value are merged together if they overlap"Patch Changes
4bc552f7
Thanks @ahoisl! - Keep data in normalization when blocks are not allowedv0.110.2
Compare Source
Patch Changes
#5737
cd21bb1f
Thanks @WindRunnerMax! - fix: sync built-in state on undo when editor is unfocused#5727
335c5418
Thanks @hernansartorio! - Call unref on pathRefs created for move_node to remove memory leakv0.103.0
Compare Source
Minor Changes
d271c4be
Thanks @felixfeng33! - Add ashouldMergeNodesRemovePrevNode
editor method to control whenTransforms.mergeNodes
should remove the previous node rather than carrying out a merge operation.Patch Changes
4470f370
Thanks @JohnCosta27! - MakingnormalizeNode
capable of normalizing erronous nodes, making slate more resilient.v0.102.0
Compare Source
Minor Changes
3aaf3b51
Thanks @mainhanu! - Transform.insertNodes & Transform.insertFragment performance optimizev0.101.5
Compare Source
Patch Changes
8ba3a9c0
Thanks @GeneralChauhan! - Punctuation Mark "+" Support Addedv0.101.4
Compare Source
Patch Changes
a374895b
Thanks @Kaporos! - Fix firefox double-click marks issuev0.101.1
Compare Source
Patch Changes
91400a8e
Thanks @YaoKaiLun! - Fix the 'select' parameter of the insertNodes function has been overriddenv0.100.0
Compare Source
Minor Changes
c4c14882
Thanks @dylans! - Update dependencies to React 18, Node 20, TS 5.2, etc.v0.94.1
Compare Source
Patch Changes
01f0210b
Thanks @zbeyens! -Editor.insertFragment
,Editor.insertNode
,Editor.insertText
now acceptoptions
.For all insert methods, the default location is now the editor selection if
at
is not defined, or the end of document ifeditor.selection
is not defined.v0.94.0
Compare Source
Minor Changes
#5307
3243c7e3
Thanks @zbeyens! - New Features:Editor
andTransforms
methods now calleditor
methods. For example:Transforms.insertBreak
now callseditor.insertBreak
.editor.setNodes
now callssetNodes
, an exported function that implements the default editor behavior.editor.setNodes
with your own implementation.Editor.setNodes
oreditor.setNodes
in your code, and both will use your overridden behavior.The
editor
object now has many more methods:Note:
getMarks
is an exception, as there is alreadyeditor.marks
that stores the current marks.Transforms.insertText
has not been moved toeditor
yet: there is already aneditor.insertText
method with extended behavior. This may change in a future release, but this release is trying to avoid any breaking changes.editor.insertText
has a new argument (third):options?: TextInsertTextOptions
to matchTransforms.insertText
.Bug Fixes:
Patch Changes
bc945eb1
Thanks @Moerphy! - Correct core normalization that could cause wrong nodes to be removedv0.93.0
Compare Source
Minor Changes
#5374
b52e08b0
Thanks @12joan! - - AddisSelectable
toeditor
(default true). A non-selectable element is skipped over when navigating using arrow keys.ignoreNonSelectable
toEditor.nodes
,Editor.positions
,Editor.after
andEditor.before
(default false)Transforms.move
ignores non-selectable elements#5374
b52e08b0
Thanks @12joan! - - AddisElementReadOnly
toeditor
. A read-only element behaves much like a void with regard to selection and deletion, but renders itschildren
the same as any other non-void node.v0.91.4
Compare Source
Patch Changes
b94254d6
Thanks @etrepum! - Fix to ensure that the latest versions of onChange and renderPlaceholder are usedv0.91.3
Compare Source
Patch Changes
11adbf96
Thanks @alex-vladut! - Allow pasting plain text into editable voidsv0.91.1
Compare Source
Patch Changes
6fa4b954
Thanks @YaoKaiLun! - Fix the cursor jump to an unexpected position after deleting in androidv0.90.0
Compare Source
Patch Changes
9c4097a2
Thanks @kylemclean! - Revert to using inline styles for default editor stylesv0.88.1
Compare Source
Patch Changes
36203b3f
Thanks @ppiotrowicz! - Fixed Editor.above method that always returned undefined with Point locationv0.87.0
Compare Source
Minor Changes
96b7fcdb
Thanks @kylemclean! - Use stylesheet for default styles on Editable componentsv0.86.0
Compare Source
Patch Changes
#5189
fbc9838f
Thanks @SmilinBrian! - Add hanging option to unsetNodes so it matches setNodes#5193
6909a8f7
Thanks @SmilinBrian! - Stops Editor.unhangRange() from adjusting the range in some cases when it was not actually hanging#5186
e416d00b
Thanks @SmilinBrian! - Report marks applied to a markableVoid if selection is collapsedv0.85.0
Compare Source
Patch Changes
#5135
346f6572
Thanks @SmilinBrian! - Allow void elements to receive marks via markableVoid()#5168
3c49ff28
Thanks @i-artist! - Fixed above method that failed to get parentEntry when selection was rangev0.84.0
Compare Source
Minor Changes
a2184d86
Thanks @mainhanu! - transform.delete and transform.insertFragment performance optimizev0.82.1
Compare Source
Patch Changes
#5084
50de780b
Thanks @BitPhinix! - Fix selection handling with slow flush in mark placeholders on android, fix auto-capitalize after placeholder#5091
e18879e7
Thanks @e1himself! - FixwithReact()
function type definitionv0.82.0
Compare Source
Minor Changes
#5041
9bc0b613
Thanks @bryanph! - - Introduces auseSlateSelection
hook that triggers whenever the selection changes.useSlateWithV
hook that includes the version counter which can be used to prevent re-renders#4988
fbab6331
Thanks @BitPhinix! - Android input handling rewrite, replace composition insert prefixes with decoration based mark placeholdersv0.81.3
Compare Source
v0.81.1
Compare Source
Patch Changes
9ae37287
Thanks @tithanayut! - Fix deleteBackward behavior for Thai script where deleting N character(s) backward should deleteN code point(s) instead of an entire grapheme cluster
v0.81.0
Compare Source
Minor Changes
fe13a8f9
Thanks @alexandercampbell! - Add new Slate.Scrubber interface to allow scrubbing end user data from exceptiontext. The default behavior remains unchanged.
v0.80.0
Compare Source
Patch Changes
92c5730a
Thanks @jasonphillips! - Revert #4876 & #4910 to restore original decorations behaviorv0.78.0
Compare Source
Minor Changes
3b7a1bf7
Thanks @dylans! - Added types for options and common string literals, thanks @JoshuaKGoldbergv0.77.2
Compare Source
Patch Changes
5b51e87d
Thanks @BitPhinix! - Fix double insert in anchor element decorationsv0.77.0
Compare Source
Patch Changes
c39c8082
Thanks @ahoisl! - Fix pointRef leaks caused by not unref'ingv0.76.1
Compare Source
Patch Changes
#4923
08d5a12c
Thanks @BitPhinix! - Call keyDown handler while composing#4920
f6b7ca1f
Thanks @adri1wald! - fix useFocused hook in react >= 17#4914
aff67312
Thanks @sennpang! - Fixed Triple click selection and copy&paste in read-only mode#4919
7de7cdcf
Thanks @BitPhinix! - Restore user selection after applying beforeinput with target range#4922
9892cf0f
Thanks @BitPhinix! - Make Slate component onChange optionalv0.76.0
Compare Source
Minor Changes
#4873
20acca4b
Thanks @bryanph! - A different behavior for inserting a soft break with shift+enter is quite common in rich text editors. Right now you have to do this in onKeyDown which is not so nice. This adds a separate insertSoftBreak method on the editor instance that gets called when a soft break is inserted. This maintains the current default behavior for backwards compatibility (it just splits the block). But at least you can easily overwrite it now.If you rely on overwriting editor.insertBreak for extra behavior for soft breaks this might be a breaking change for you and you should overwrite editor.insertSoftBreak instead.
Patch Changes
#4901
5ef346fe
Thanks @bryanph! - Fixes a bug where nodes remounted on split_node and merge_node#4885
07669dca
Thanks @ryanmitts! - toSlatePoint should not consider a selection within a void node if the void node isn't in the editor itself.Prior to this fix, a nested Slate editor inside a void node in a parent editor would not allow you to start typing text in a blank editor state correctly. After the first character insertion, the selection would jump back to the start of the nested editor.
#4910
2a8d86f1
Thanks @jasonphillips! - Fix decorations applied across nested elementsv0.75.0
Compare Source
Patch Changes
970523f
(970523f
) Thanks @zhugexinxin! - feat: add custom compare node propsv0.73.1
Compare Source
Patch Changes
33be22f3
Thanks @TheSpyder! - Reverted #4804 as it triggered an exception when inserting text with multi-block selectionv0.73.0
Compare Source
Patch Changes
100448d5
Thanks @BitPhinix! - Render void spacer in readonly modev0.72.8
Compare Source
Patch Changes
6d62abc1
Thanks @dylans! - - Revert #4749, DOM & Slate selection are mismatchingv0.72.3
Compare Source
Patch Changes
205d4b7e
Thanks @e1himself! - Add tests for Editor.unhangRange() behaviorv0.72.0
Compare Source
Minor Changes
8bc6a464
Thanks @ttitoo! - Fix CJK IME (e.g. Chinese or Japanese) double inputPatch Changes
#4706
6d194077
Thanks @BitPhinix! - Update android restoreDOM to use partial dom restoring#4707
c020ca23
Thanks @ahoisl! - fix: add 'readonly' dependency for onDragStart callbackv0.71.0
Compare Source
Minor Changes
e5380655
Thanks @matthewkeil! - Support SSR for autoCorrect, spellCheck and autoCapitalize.Fixes prop mismatch between server and client.
Removes the need to add
v0.70.0
Minor Changes
5818aca5
Thanks @oliger! - Fix issue with unicode 1.1 smileys followed by a variation selector.Patch Changes
e0f41514
Thanks @e1himself! - Improve typescript type ofprops
argument ofTransforms.setNodes()
v0.66.5
Compare Source
Patch Changes
37d60c58
Thanks @clauderic! - Only apply FirefoxtoSlatePoint()
offset fix when the cloned contents end in\n\n
instead of just\n
.v0.66.2
Compare Source
Patch Changes
0da12c17
Thanks @steve-codaio! - Fix setNodes when called with 'split' and a collapsed rangev0.66.1
Compare Source
Patch Changes
#4518
6ec399d4
Thanks @TheSpyder! - Fixed flaw in deep-equal algorithm when dealing with nested mark objects#4511
2af6868d
Thanks @dylans! - update release process for yarn 3#4516
59ca7a8f
Thanks @dylans! - another attempt to get the automated changeset workflow working againv0.66.0
Compare Source
Minor Changes
25afbd43
Thanks @bkrausz! - Use native character insertion to fix browser/OS text featuresPatch Changes
#4475
c1433f56
Thanks @skogsmaskin! - [slate-react]: fix selection bugs when multiple editors share value#4132
48b71294
Thanks @ulion! - Make onDomSelectionChange trigger after onClick.#4493
3dd74dd5
Thanks @dylans! - Update error message for useSlate#4450
220f2d2c
Thanks @neko-neko! - Changed so that the onKeyDown event do not fired while IME converting.#4452
935b3a79
Thanks @dylans! - double ime fix for qq browser#4500
50bb3d7e
Thanks @tubbo! - Upgradeis-plain-object
to v5.0.0#4480
e51566ad
Thanks @imdbsd! - Add key for Children SelectedContext.Provider#4454
d06706c9
Thanks @imdbsd! - Fix to read fragment from data-slate-fragment when application/x-slate-fragment is missing#4460
ace397f9
Thanks @dylans! - fix double character insertion regression due to unnecessary memo#4451
8e4120ae
Thanks @githoniel! - fix IME double input with editor mark#4503
2065c5bd
Thanks @bytrangle! - Fix incorrect selection when triple clicking blocks in Editable component#4433
a1f925bd
Thanks @imdbsd! - Fix copy-paste a slate fragment on android editable#4365
906e5af1
Thanks @samarsault! - fix a bug where element selections were not captured by useSelected#4342
834ce348
Thanks @imdbsd! - Fix editor mark is not inserted on androidv0.65.3
Compare Source
Patch Changes
#4175
bde6e804
Thanks @gyh9457! - Fixed a bug in the memoization logic for the leaves of text nodes.#4394
01889807
Thanks @jaked! - fix bug where decorate is not called on immediate children of editor#4049
6c844227
Thanks @ulion! - Fix ios chrome ime double input issue.#4427
3f69a9f3
Thanks @ben10code! - Fix crash when unmounting an editor rendered within a React portal. The issue was arising at unmount time, becausegetRootNode
returned the dettached portal node and it is not an instance ofDocument
orShadowRoot
. As a fix,getDocumentOrShadowRoot
has been refactored to return a root node instead of throwing. In sum, this patch fixes a regression bug introduced by #3749/#4369
c217dbb5
Thanks @thesunny! - Scroll when inserting new text will now scroll parent scrollables#4333
e0776c5c
Thanks @dylans! - Allow setFragmentData to work without copy/paste or DnD data structure#4421
237edc6e
Thanks @jaked! - fix decorate bug (#4277) without adding extra layers of render tree#4347
46c8871c
Thanks @aiwenar! - Re-render leaf when new properties were added to it#4352
4b373dc2
Thanks @hueyhe! - Do not display placeholder when composingv0.63.0
Compare Source
Patch Changes
#4238
c14e1fbc
Thanks @clauderic! - Fix duplicated content and other bugs related to drag and drop handling#4237
623960a7
Thanks @dylans! - Fixed text insertion logic to prevent crashing in newer Firefox versions.v0.62.1
Patch Changes
#4118
6a137633
Thanks @kamilkazmierczak! - Improved detection of legacy browsers that don't have properbeforeinput
support.#4190
ea2eefef
Thanks @juliankrispel! - Added arenderPlaceholder
prop to the<Editable>
component for customizing how placeholders are rendered.#4157
de5cc7e5
Thanks @githoniel! - Fixed a bug when syncing the selection for IME-based editing.#4158
ea6dc089
Thanks @githoniel! - Fixed a bug that resulted in doubly-input characters when using an IME.#4211
1c32b97d
Thanks @clauderic! - Collapse expanded selection before handlingmoveWordBackward
(alt + left
) andmoveWordForward
(alt + right
) hotkeys.#4219
737aaa9c
Thanks @juliankrispel! - Fixes error that occurs when Editor is rendered inside iframev0.61.3
Compare Source
v0.61.0
Compare Source
v0.60.17
Compare Source
v0.60.11
Compare Source
v0.60.9
Compare Source
v0.60.8
Compare Source
v0.60.4
Compare Source
v0.60.3
Compare Source
v0.60.2
Compare Source
v0.60.1
Compare Source
v0.60.0
Compare Source
v0.59.0
Compare Source
v0.58.4
Compare Source
v0.58.3
Compare Source
v0.58.1
Compare Source
v0.58.0
Compare Source
v0.57.3
Compare Source
v0.57.2
Compare Source
v0.57.1
Compare Source
v0.57.0
Compare Source
[
v0.56.1
](https://redirect.github.com/ianstormtaylor/slate/coConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.