apostrophe 2.220.7 → 2.220.9
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.220.9 (2022-02-04)
|
|
4
|
+
|
|
5
|
+
## Fixes
|
|
6
|
+
|
|
7
|
+
* Worked around bug preventing proper translation of the "Selected" message in certain modal operations. Thanks to [stepanjakl](https://github.com/stepanjakl).
|
|
8
|
+
|
|
9
|
+
## 2.220.8 (2022-01-20)
|
|
10
|
+
|
|
11
|
+
## Fixes
|
|
12
|
+
|
|
13
|
+
* Fixes overflowing issue in the editor modals when adding multiple options to an area. This used to cause a scroll to appear and the user had to scroll to see all the options.
|
|
14
|
+
* In the editor modal if there was an area with multiple items added (enough to make the page scrollable) when the user wanted to add another item another scroll bar would appear besides the already existing one and the user had to scroll to see all the options.
|
|
15
|
+
* Fixes i18n processing of a login throttling error message.
|
|
16
|
+
|
|
3
17
|
## 2.220.7 (2021-10-13)
|
|
4
18
|
|
|
5
19
|
## Fixes
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<select name="batch-operation" class="apos-field-input apos-field-input--small apos-field-input-select apos-manage-batch-operations-select">
|
|
9
9
|
{% for operation in operations %}
|
|
10
10
|
<option value="{{ operation.name }}">
|
|
11
|
-
{{ __ns('apostrophe', '%s Selected', operation.label) }} (0)
|
|
11
|
+
{{ __ns('apostrophe', ' %s Selected', operation.label) }} (0)
|
|
12
12
|
</option>
|
|
13
13
|
{% endfor %}
|
|
14
14
|
</select>
|
package/package.json
CHANGED
package/test/package.json
CHANGED
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"body-parser": "^1.19.0",
|
|
10
10
|
"cheerio": "^1.0.0-rc.10",
|
|
11
11
|
"chokidar": "^3.5.1",
|
|
12
|
-
"cli-progress": "^
|
|
12
|
+
"cli-progress": "^2.1.1",
|
|
13
13
|
"connect-flash": "^0.1.1",
|
|
14
14
|
"connect-multiparty": "^2.2.0",
|
|
15
15
|
"cookie-parser": "^1.4.5",
|
|
16
16
|
"credential": "^2.0.0",
|
|
17
17
|
"cuid": "^1.3.8",
|
|
18
|
-
"deep-get-set": "^
|
|
18
|
+
"deep-get-set": "^0.1.1",
|
|
19
19
|
"diff": "^4.0.1",
|
|
20
20
|
"emulate-mongo-2-driver": "^1.2.3",
|
|
21
21
|
"express": "^4.17.1",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"tinycolor2": "^1.4.1",
|
|
58
58
|
"uglify-js": "^2.8.29",
|
|
59
59
|
"underscore.string": "^3.3.5",
|
|
60
|
-
"uploadfs": "^1.
|
|
60
|
+
"uploadfs": "^1.17.2",
|
|
61
61
|
"xregexp": "^2.0.0",
|
|
62
62
|
"yargs": "^3.32.0",
|
|
63
63
|
"apostrophe": "^2.0.0"
|