2015-04-25 05:46:15 +00:00
|
|
|
{
|
|
|
|
"name": "wagtail",
|
|
|
|
"version": "1.0.0",
|
2016-12-15 11:49:49 +00:00
|
|
|
"repository": "https://github.com/wagtail/wagtail",
|
2015-04-25 05:46:15 +00:00
|
|
|
"private": true,
|
2020-04-28 20:23:15 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
2020-05-28 00:33:36 +00:00
|
|
|
"browserslist": [
|
|
|
|
"Firefox ESR",
|
|
|
|
"ie 11",
|
|
|
|
"last 2 Chrome versions",
|
|
|
|
"last 2 ChromeAndroid versions",
|
|
|
|
"last 2 Edge versions",
|
|
|
|
"last 1 Firefox version",
|
|
|
|
"last 2 iOS versions",
|
|
|
|
"last 2 Safari versions"
|
|
|
|
],
|
2016-06-17 13:48:33 +00:00
|
|
|
"jest": {
|
2020-10-21 08:42:14 +00:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"json",
|
|
|
|
"node"
|
|
|
|
],
|
2020-12-21 14:58:12 +00:00
|
|
|
"moduleNameMapper": {
|
|
|
|
"jquery": "<rootDir>/wagtail/admin/static_src/wagtailadmin/js/vendor/jquery-3.5.1.min.js"
|
|
|
|
},
|
2020-10-21 08:42:14 +00:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.(js|ts|tsx)$": "ts-jest"
|
|
|
|
},
|
2018-01-19 16:02:49 +00:00
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/build/"
|
|
|
|
],
|
2020-05-22 07:44:23 +00:00
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/tests/"
|
|
|
|
],
|
2016-06-17 13:48:33 +00:00
|
|
|
"setupFiles": [
|
2017-12-20 10:14:41 +00:00
|
|
|
"./client/tests/adapter.js",
|
2017-02-12 15:29:56 +00:00
|
|
|
"./client/tests/stubs.js",
|
|
|
|
"./client/tests/mock-fetch.js"
|
2016-06-17 13:48:33 +00:00
|
|
|
],
|
|
|
|
"snapshotSerializers": [
|
|
|
|
"enzyme-to-json/serializer"
|
|
|
|
]
|
|
|
|
},
|
2015-04-25 05:46:15 +00:00
|
|
|
"devDependencies": {
|
2020-10-19 17:30:43 +00:00
|
|
|
"@types/react": "^16.9.53",
|
2020-10-20 23:51:09 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.5.0",
|
|
|
|
"@typescript-eslint/parser": "^4.5.0",
|
2020-06-03 18:01:01 +00:00
|
|
|
"@wagtail/stylelint-config-wagtail": "^0.1.1",
|
2020-06-03 11:06:12 +00:00
|
|
|
"autoprefixer": "^9.8.0",
|
2021-01-04 15:25:45 +00:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-06-03 11:06:12 +00:00
|
|
|
"cssnano": "^4.1.10",
|
2019-07-05 11:52:26 +00:00
|
|
|
"enzyme": "^3.9.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.9.1",
|
2017-12-20 10:14:41 +00:00
|
|
|
"enzyme-to-json": "^3.3.0",
|
2020-10-20 23:51:09 +00:00
|
|
|
"eslint": "^7.11.0",
|
|
|
|
"eslint-config-wagtail": "^0.1.1",
|
2017-04-10 19:34:15 +00:00
|
|
|
"eslint-import-resolver-webpack": "^0.8.1",
|
2016-02-26 21:10:54 +00:00
|
|
|
"eslint-plugin-import": "^1.8.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "^1.5.3",
|
2016-06-17 13:48:33 +00:00
|
|
|
"eslint-plugin-react": "^5.2.2",
|
2020-12-27 17:53:41 +00:00
|
|
|
"expose-loader": "^1.0.3",
|
2020-06-03 11:06:12 +00:00
|
|
|
"gulp": "^4.0.2",
|
2020-05-07 23:33:49 +00:00
|
|
|
"gulp-dart-sass": "^1.0.2",
|
2020-06-03 11:06:12 +00:00
|
|
|
"gulp-postcss": "^8.0.0",
|
2015-04-25 05:46:15 +00:00
|
|
|
"gulp-rename": "^1.2.2",
|
2020-05-28 00:33:36 +00:00
|
|
|
"gulp-size": "^3.0.0",
|
2017-12-20 10:14:41 +00:00
|
|
|
"gulp-sourcemaps": "~2.6.1",
|
|
|
|
"gulp-util": "~3.0.8",
|
2020-10-20 16:06:52 +00:00
|
|
|
"jest": "^26.6.0",
|
2018-11-28 11:35:21 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-01-17 02:17:41 +00:00
|
|
|
"postcss-custom-properties": "^10.0.0",
|
2019-04-24 13:07:39 +00:00
|
|
|
"react-axe": "^3.1.0",
|
2020-10-09 13:32:16 +00:00
|
|
|
"react-test-renderer": "^16.13.1",
|
2017-12-20 10:14:41 +00:00
|
|
|
"redux-mock-store": "^1.3.0",
|
2020-05-28 00:33:36 +00:00
|
|
|
"stylelint": "^13.5.0",
|
2020-10-21 08:42:14 +00:00
|
|
|
"ts-jest": "^26.4.1",
|
|
|
|
"ts-loader": "^8.0.6",
|
2020-10-20 23:51:09 +00:00
|
|
|
"typescript": "^4.0.3",
|
2020-12-27 17:53:41 +00:00
|
|
|
"webpack": "^5.11.0",
|
2020-10-21 10:33:31 +00:00
|
|
|
"webpack-cli": "^3.3.11"
|
2016-02-24 10:44:14 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-17 09:23:37 +00:00
|
|
|
"core-js": "^2.5.3",
|
2018-02-09 09:23:04 +00:00
|
|
|
"draft-js": "0.10.5",
|
Upgrade Draftail to v1.2.1. Fix #4985, adds more Markdown shortcuts (#5117)
This includes:
- [v1.0.0](https://github.com/springload/draftail/releases/tag/v1.0.0) (identical to v0.17.2)
- [v1.1.0](https://github.com/springload/draftail/releases/tag/v1.1.0) (contains fix for #4985)
- [v1.2.0](https://github.com/springload/draftail/releases/tag/v1.2.0)
- [v1.2.1](https://github.com/springload/draftail/releases/tag/v1.2.1) (fixes regression in v1.2.0)
Here is the combined CHANGELOG for what's relevant to Wagtail:
Bug fixes
~~~~~~~~~
- #4985 – Prevent crash when filtering pasted content whose last block is to be removed (e.g. unsupported image) ([#179](https://github.com/springload/draftail/issues/179)).
- Stop unnecessarily calling `onSave` in the editor’s `onBlur` ([#173](https://github.com/springload/draftail/issues/173)).
- Prevent crash in `DraftUtils.getEntitySelection`, when the provided entity key isn't valid (undefined, missing) ([#168](https://github.com/springload/draftail/pull/168)).
- Fix entity removal and editing not doing anything when the selection is backwards (right to left) ([#168](https://github.com/springload/draftail/pull/168)).
- Prevent the editor from crashing when copy-paste filtering removes all of its content (https://github.com/thibaudcolas/draftjs-filters/commit/652750f)
New features
~~~~~~~~~~~~
- Add support for Markdown shortcuts for inline styles, e.g. `**` for bold, `_` for italic, etc ([#134](https://github.com/springload/draftail/issues/134), [#187](https://github.com/springload/draftail/pull/187)). View the full list of [keyboard shortcuts](https://www.draftail.org/docs/keyboard-shortcuts).
New APIs
~~~~~~~~
- Add [`onFocus`](https://www.draftail.org/docs/api#managing-focus) and [`onBlur`](https://www.draftail.org/docs/api#managing-focus) props to use callbacks on those events. This can be useful for [form validation](https://www.draftail.org/docs/next/form-validation). [#170](https://github.com/springload/draftail/issues/170), [#174](https://github.com/springload/draftail/pull/174), thanks to [@TheSpicyMeatball](https://github.com/TheSpicyMeatball).
- Add [`plugins`](https://www.draftail.org/docs/plugins) API to support extensions of the editor using the [draft-js-plugins](https://github.com/draft-js-plugins/draft-js-plugins) architecture ([#83](https://github.com/springload/draftail/issues/83), [#171](https://github.com/springload/draftail/pull/171)).
- Add ability to disable or customise the editor toolbar with [`topToolbar`](https://www.draftail.org/docs/customising-toolbars).
- Add ability to add a toolbar below the editor with [`bottomToolbar`](https://www.draftail.org/docs/customising-toolbars).
- Add data reset parameter to `DraftUtils.resetBlockWithType()`.
- Enable list continuation on Enter for custom `*-list-item` blocks. All that’s required is for the block type to end with `-list-item`.
None of those API additions will be usable within Wagtail (at least without hacks) until corresponding rich text features APIs are built to allow their configuration. The last 2 additions would already be usable but they would only be useful when leveraging the other APIs.
2019-03-21 20:29:26 +00:00
|
|
|
"draftail": "^1.2.1",
|
2018-02-09 22:07:29 +00:00
|
|
|
"element-closest": "^2.0.2",
|
2017-12-20 10:14:41 +00:00
|
|
|
"focus-trap-react": "^3.1.0",
|
2021-01-17 02:17:41 +00:00
|
|
|
"postcss-calc": "^7.0.5",
|
2019-07-05 11:52:26 +00:00
|
|
|
"prop-types": "^15.6.2",
|
|
|
|
"react": "^16.4.0",
|
|
|
|
"react-dom": "^16.4.0",
|
2017-12-20 10:14:41 +00:00
|
|
|
"react-redux": "^5.0.6",
|
2020-05-28 00:33:36 +00:00
|
|
|
"react-streamfield": "^0.9.6",
|
2017-05-28 18:49:05 +00:00
|
|
|
"react-transition-group": "^1.1.3",
|
2019-07-05 11:52:26 +00:00
|
|
|
"redux": "^4.0.0",
|
|
|
|
"redux-thunk": "^2.3.0",
|
2017-12-20 10:14:41 +00:00
|
|
|
"whatwg-fetch": "^2.0.3"
|
2015-04-25 05:46:15 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-09-17 17:40:34 +00:00
|
|
|
"build": "npm run gulp:prod:build && npm run webpack:prod:build",
|
2016-04-21 21:31:50 +00:00
|
|
|
"dist": "NODE_ENV=production npm run build",
|
2017-09-17 17:40:34 +00:00
|
|
|
"watch": "npm-run-all --parallel gulp:dev:watch webpack:dev:watch",
|
2016-02-24 10:44:14 +00:00
|
|
|
"start": "npm run watch",
|
2017-09-17 17:40:34 +00:00
|
|
|
"gulp:dev:watch": "gulp watch",
|
|
|
|
"gulp:prod:build": "gulp build",
|
2020-10-21 10:33:31 +00:00
|
|
|
"webpack:dev:watch": "webpack --config ./client/webpack.config.js --mode development --progress --watch",
|
|
|
|
"webpack:prod:build": "webpack --config ./client/webpack.config.js --mode production",
|
2021-03-05 16:54:11 +00:00
|
|
|
"lint:js": "eslint --report-unused-disable-directives --max-warnings 16 ./client",
|
2017-08-18 00:28:38 +00:00
|
|
|
"lint:css": "stylelint **/*.scss",
|
2019-05-05 05:48:01 +00:00
|
|
|
"lint": "npm run lint:js && npm run lint:css",
|
2016-02-24 10:44:14 +00:00
|
|
|
"test": "npm run test:unit",
|
2016-06-17 13:48:33 +00:00
|
|
|
"test:unit": "jest",
|
|
|
|
"test:unit:watch": "jest --watch",
|
2018-08-07 22:52:18 +00:00
|
|
|
"test:unit:coverage": "jest --coverage"
|
2015-04-25 05:46:15 +00:00
|
|
|
}
|
2015-04-25 05:48:06 +00:00
|
|
|
}
|