-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update dependency @portabletext/editor to ^2.13.0 #131
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
2
commits into
main
Choose a base branch
from
renovate/portabletext-editor-2.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
🦋 Changeset detectedLatest commit: c88a457 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
81f29cb
to
5e418ee
Compare
bb1e59e
to
b337654
Compare
17b1b9d
to
afd411f
Compare
916fe5f
to
5e04d8e
Compare
c324074
to
2899777
Compare
abed7d9
to
f64416a
Compare
9c5bddc
to
213ddd1
Compare
e3e7bb4
to
6b0e806
Compare
c2afd8e
to
48022d4
Compare
9d74ecf
to
1a54391
Compare
45f2573
to
c4a2dea
Compare
c3cdf74
to
86e6d13
Compare
79e3794
to
6a7e2bf
Compare
ce7fcee
to
9433462
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.
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
^2.6.9
->^2.13.0
Release Notes
portabletext/editor (@portabletext/editor)
v2.13.0
Compare Source
Minor Changes
5e87231
Thanks @christianhg! - feat(selectors): exportgetMarkState
in betaPatch Changes
#1676
b9744c9
Thanks @renovate! - fix(deps): update dependency debug to ^4.4.3#1684
27c50d0
Thanks @christianhg! - fix: useunit: 'character'
for deletion of inline objects#1684
ccd536e
Thanks @christianhg! - fix(delete
): respectunit: 'block'
option#1684
60b4164
Thanks @christianhg! - fix(getMarkState
): support block offsetsv2.12.3
Compare Source
Patch Changes
#1670
b23cdd1
Thanks @christianhg! - fix: allow consecutiveinsert.text
eventsUpdated dependencies [
b7997e1
]:v2.12.2
Compare Source
Patch Changes
#1664
7e57673
Thanks @renovate! - fix(deps): update dependency xstate to ^5.22.0#1668
a5886f3
Thanks @christianhg! - fix: issue with calculating "mark state"#1666
0fa420a
Thanks @christianhg! - fix: create undo steps if there is more than 1 action set#1668
52bf635
Thanks @christianhg! - fix: issue with Enter collapsing the selection on Firefoxv2.12.1
Compare Source
Patch Changes
#1662
0dbd421
Thanks @christianhg! - fix(behaviors): let empty action sets cancel native events#1662
d689f45
Thanks @christianhg! - fix: issue with reducing selection hanging on an empty linev2.12.0
Compare Source
Minor Changes
#1658
b9af25b
Thanks @christianhg! - feat: improveinsert.text
compositionAs part of the editors Core Behaviors,
insert.text
now triggersinsert.child
whenever themarks
on the given span should change. Thismeans, you can now
execute
insert.text
events to circumvent that Behavior. Orforward
/execute
insert.text
events frominsert.child
events.v2.11.0
Compare Source
Minor Changes
d1a28f3
Thanks @christianhg! - feat: allow sendingNativeBehaviorEvent
s to the editorv2.10.0
Compare Source
Minor Changes
#1640
74dc56a
Thanks @christianhg! - fix: raiseinsert.child
frominsert.(span|inline object)
insert.span
andinsert.inline object
now raiseinsert.child
internally.#1640
7cdcb11
Thanks @christianhg! - feat: addinsert.child
eventA new
insert.child
event can now be used to insert and select spans orinline objects at the current editor selection.
Patch Changes
#1654
6071455
Thanks @renovate! - fix(deps): update sanity monorepo to ^4.9.0#1640
52a3a72
Thanks @christianhg! - fix(block.set
): validatemarDefs
Adding
markDefs
to a text block usingblock.set
now validates themarkDefs
against the schema to make sure only known annotations are added.#1640
eaf3ff1
Thanks @christianhg! - fix: derive Snapshotselection
on demandIn some cases, the
selection
onsnapshot.context.selection
could beslightly out of sync. Now, the selection is derived on demand whenever a
Snapshot is requested.
#1640
9dbf915
Thanks @christianhg! - fix(behaviors): perform groups of raised or executed events without normalizationThis is useful if one event depends on a previous event. For example, raising
block.set
together withinsert.child
to add an annotation will happenwithout the editor normalizing the unused markDef away between the two events.
Updated dependencies [
6071455
]:v2.9.2
Compare Source
Patch Changes
8c0ee32
Thanks @christianhg! - fix(value sync): avoid throwing error when encountering invalid blockv2.9.1
Compare Source
Patch Changes
#1646
9ca66b7
Thanks @christianhg! - fix: avoid thrown error if the editor has been unmountedThe editor attempts to validate its selection upon unexpected DOM changes. However, in some cases, this logic might run after the editor has been unmounted and removed from the DOM. In this case an error would be thrown because no editor DOM node could be found. This error has now been suppressed as there is no need to surface it to the user.
v2.9.0
Compare Source
Minor Changes
#1644
4a87bb5
Thanks @christianhg! - feat: addselect.block
eventYou can now
send
,raise
,execute
andforward
select.block
events. Under the hood they convert intoselect
events. For convenience, you canselect
the block either at the'start'
or'end'
('start'
is default).Patch Changes
5c766f0
Thanks @christianhg! - fix(insert.blocks
): edge cases related to target selectionv2.8.4
Compare Source
Patch Changes
#1638
d7f34d4
Thanks @renovate! - fix(deps): update sanity monorepo to ^4.8.1#1641
97288ec
Thanks @christianhg! - fix: improve history stack heuristicsSending custom Behavior events will now create distinct steps in the history stack:
#1643
4ccb9ab
Thanks @christianhg! - fix:send
insideeffect
now has access tofocus
/blur
eventsUpdated dependencies [
d7f34d4
]:v2.8.3
Compare Source
Patch Changes
ff6aef7
]:v2.8.2
Compare Source
Patch Changes
b032b9e
Thanks @christianhg! - fix: raiseannotation.add
fromPortableTextEditor.addAnnotation
v2.8.1
Compare Source
Patch Changes
2b9d291
Thanks @christianhg! - fix(getSelectedValue
): avoid looping through valuev2.8.0
Compare Source
Minor Changes
#1623
760a68d
Thanks @christianhg! - feat(isActiveAnnotation
): add configurablemode
#1593
9db3c37
Thanks @christianhg! - feat: allow overlapping annotations through BehaviorsPatch Changes
#1623
d8b9bd0
Thanks @christianhg! - fix(`sliceBlocks`): parse blocks when slicing#1623
7874f53
Thanks @christianhg! - fix: remove unusedmarkDefs
when parsing blocks#1622
6539bfc
Thanks @renovate! - fix(deps): update sanity monorepo to ^4.6.1#1627
99adbd2
Thanks @renovate! - fix(deps): update dependency immer to ^10.1.3#1626
86d9cbb
Thanks @christianhg! - fix: improveinsert.span
by internally routing it throughinsert.block
#1626
9d59889
Thanks @christianhg! - fix: improveinsert.inline object
by internally routing it throughinsert.block
Updated dependencies [
6539bfc
]:v2.7.2
Compare Source
Patch Changes
24bd38d
]:v2.7.1
Compare Source
Patch Changes
#1619
1028284
Thanks @christianhg! - fix:react-hooks/refs
warnings#1619
1028284
Thanks @christianhg! - fix: makefocused
/selected
state inside spans consistentv2.7.0
Compare Source
Minor Changes
249f558
Thanks @stipsan! - Update React Compiler to RC3Patch Changes
ddf8f7e
Thanks @christianhg! - fix:isOverlappingSelection
edge caseConfiguration
📅 Schedule: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate using a curated preset maintained by
. View repository job log here