mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 07:13:08 -05:00
Release v2.2.5
This commit is contained in:
parent
efdff6c71b
commit
8bee51683b
8 changed files with 17 additions and 11 deletions
|
@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file, starting fr
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.2.5] - 2023-11-08
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Return focus to the editor after undo/redo.
|
||||||
|
|
||||||
## [2.2.4] - 2023-10-24
|
## [2.2.4] - 2023-10-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
4
dist/squire-raw.js
vendored
4
dist/squire-raw.js
vendored
|
@ -2765,7 +2765,7 @@
|
||||||
});
|
});
|
||||||
this.fireEvent("input");
|
this.fireEvent("input");
|
||||||
}
|
}
|
||||||
return this;
|
return this.focus();
|
||||||
}
|
}
|
||||||
redo() {
|
redo() {
|
||||||
const undoIndex = this._undoIndex;
|
const undoIndex = this._undoIndex;
|
||||||
|
@ -2783,7 +2783,7 @@
|
||||||
});
|
});
|
||||||
this.fireEvent("input");
|
this.fireEvent("input");
|
||||||
}
|
}
|
||||||
return this;
|
return this.focus();
|
||||||
}
|
}
|
||||||
// --- Get and set data
|
// --- Get and set data
|
||||||
getRoot() {
|
getRoot() {
|
||||||
|
|
4
dist/squire-raw.mjs
vendored
4
dist/squire-raw.mjs
vendored
|
@ -2762,7 +2762,7 @@ var Squire = class {
|
||||||
});
|
});
|
||||||
this.fireEvent("input");
|
this.fireEvent("input");
|
||||||
}
|
}
|
||||||
return this;
|
return this.focus();
|
||||||
}
|
}
|
||||||
redo() {
|
redo() {
|
||||||
const undoIndex = this._undoIndex;
|
const undoIndex = this._undoIndex;
|
||||||
|
@ -2780,7 +2780,7 @@ var Squire = class {
|
||||||
});
|
});
|
||||||
this.fireEvent("input");
|
this.fireEvent("input");
|
||||||
}
|
}
|
||||||
return this;
|
return this.focus();
|
||||||
}
|
}
|
||||||
// --- Get and set data
|
// --- Get and set data
|
||||||
getRoot() {
|
getRoot() {
|
||||||
|
|
2
dist/squire.js
vendored
2
dist/squire.js
vendored
File diff suppressed because one or more lines are too long
4
dist/squire.js.map
vendored
4
dist/squire.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/squire.mjs
vendored
2
dist/squire.mjs
vendored
File diff suppressed because one or more lines are too long
4
dist/squire.mjs.map
vendored
4
dist/squire.mjs.map
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "squire-rte",
|
"name": "squire-rte",
|
||||||
"version": "2.2.4",
|
"version": "2.2.5",
|
||||||
"description": "Squire is an HTML5 rich text editor, which provides powerful cross-browser normalisation, whilst being supremely lightweight and flexible.",
|
"description": "Squire is an HTML5 rich text editor, which provides powerful cross-browser normalisation, whilst being supremely lightweight and flexible.",
|
||||||
"main": "dist/squire.mjs",
|
"main": "dist/squire.mjs",
|
||||||
"types": "dist/types/Squire.d.ts",
|
"types": "dist/types/Squire.d.ts",
|
||||||
|
|
Loading…
Reference in a new issue