@plone/volto 15.0.0-alpha.2 → 15.0.0-alpha.3
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,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.0.0-alpha.3 (2022-02-11)
|
|
4
|
+
|
|
5
|
+
### Bugfix
|
|
6
|
+
|
|
7
|
+
- Fix the upload image in contents view @iFlameing
|
|
8
|
+
- add "view" id to contact-form container for main content skiplink @ThomasKindermann
|
|
9
|
+
- Fix loading indicator positioning on Login form submit @sneridagh
|
|
10
|
+
|
|
11
|
+
### Internal
|
|
12
|
+
|
|
13
|
+
- Add new RawMaterial Volto websites in production @nzambello
|
|
14
|
+
|
|
3
15
|
## 15.0.0-alpha.2 (2022-02-10)
|
|
4
16
|
|
|
5
17
|
### Breaking
|
package/README.md
CHANGED
|
@@ -161,6 +161,7 @@ Volto is actively developed since 2017 and used in production since 2018 on the
|
|
|
161
161
|
- [EEA-IMSv4](https://www.eea.europa.eu/ims) (EEA Indicator Management System v4. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2021)
|
|
162
162
|
- [Memori](https://memori.ai/en) (Corporate website for Memori, startup specialising in technologies applied to the experience of memory through the development of Artificial Intelligences. Developed by [RawMaterial](https://rawmaterial.it/en), 2021)
|
|
163
163
|
- [TwinCreator](https://twincreator.com/en) (TwinCreator allows you to design and train multiple AI’s through simple conversation through NLP. Developed by [RawMaterial](https://rawmaterial.it/en), 2021)
|
|
164
|
+
- [MemoryTwin](https://memorytwin.com/en) (Product website, MemoryTwin allows you to create your personal artificial intelligence, able to remember and speak. Developed by [RawMaterial](https://rawmaterial.it/en), 2022)
|
|
164
165
|
|
|
165
166
|
Please create a new [issue](https://github.com/plone/volto/issues/new) or [pull request](https://github.com/plone/volto/pulls) to add your Volto-site here!
|
|
166
167
|
|
package/locales/volto.pot
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Plone\n"
|
|
4
|
-
"POT-Creation-Date: 2022-02-
|
|
4
|
+
"POT-Creation-Date: 2022-02-11T10:44:54.533Z\n"
|
|
5
5
|
"Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
6
6
|
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
7
7
|
"MIME-Version: 1.0\n"
|
package/package.json
CHANGED
|
@@ -267,7 +267,9 @@ class ContentsUploadModal extends Component {
|
|
|
267
267
|
<Table.Row className="upload-row" key={file.name}>
|
|
268
268
|
<Table.Cell>{file.name}</Table.Cell>
|
|
269
269
|
<Table.Cell>
|
|
270
|
-
|
|
270
|
+
{file.lastModifiedDate && (
|
|
271
|
+
<FormattedRelativeDate date={file.lastModifiedDate} />
|
|
272
|
+
)}
|
|
271
273
|
</Table.Cell>
|
|
272
274
|
<Table.Cell>
|
|
273
275
|
{filesize(file.size, { round: 0 })}
|
|
@@ -168,7 +168,7 @@ export class ContactFormComponent extends Component {
|
|
|
168
168
|
render() {
|
|
169
169
|
return (
|
|
170
170
|
<div id="contact-form">
|
|
171
|
-
<Container>
|
|
171
|
+
<Container id="view">
|
|
172
172
|
<Helmet title={this.props.intl.formatMessage(messages.contactForm)} />
|
|
173
173
|
{this.props.error && (
|
|
174
174
|
<Message
|
|
@@ -272,6 +272,7 @@ class Login extends Component {
|
|
|
272
272
|
<Button
|
|
273
273
|
basic
|
|
274
274
|
primary
|
|
275
|
+
icon
|
|
275
276
|
floated="right"
|
|
276
277
|
type="submit"
|
|
277
278
|
id="login-form-submit"
|
|
@@ -285,12 +286,13 @@ class Login extends Component {
|
|
|
285
286
|
<Button
|
|
286
287
|
basic
|
|
287
288
|
secondary
|
|
289
|
+
icon
|
|
290
|
+
floated="right"
|
|
288
291
|
id="login-form-cancel"
|
|
289
292
|
as={Link}
|
|
290
293
|
to="/"
|
|
291
294
|
aria-label={this.props.intl.formatMessage(messages.cancel)}
|
|
292
295
|
title={this.props.intl.formatMessage(messages.cancel)}
|
|
293
|
-
floated="right"
|
|
294
296
|
>
|
|
295
297
|
<Icon className="circled" name={clearSVG} size="30px" />
|
|
296
298
|
</Button>
|