-
-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into components-header
* main: (28 commits) Bump vite from 5.1.5 to 5.1.7 (#5946) Fix pt_BR translation of invalid email message (#5953) Fix markup shortcuts for bold, italic and strikethough fix (#5606) Release 18.0.0-alpha.27 Release @plone/types 1.0.0-alpha.10 Improve color widget picker and types (#5948) Enhanced navigation reducer in Volto (#5817) Release 18.0.0-alpha.26 Rename news item Release @plone/slate 18.0.0-alpha.11 Release @plone/registry 1.5.5 Release @plone/types 1.0.0-alpha.9 docs: Cleanup obsolete EEA projects and update info about EEA main website (#5943) Bump vite from 5.1.4 to 5.1.5 (#5942) Add a new label `needs: triage` to new bug reports (#5940) Fix redirect of `https://sustainability.eionet.europa.eu` to `https:/… (#5941) Does not show borders in addon block inputs (#5898) Fix edge case in search options mangling when the options are false-ish (#5869) Add additional parameters to ContentsUploadModal to be reusable in different scenarios (#5881) fix(slate): fix insert/remove element edgecase bug in slate (#5926) ...
- Loading branch information
Showing
51 changed files
with
1,039 additions
and
373 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update `vite` to 5.1.5. @davisagli |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update `vite` to 5.1.5. @davisagli |
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,112 @@ | ||
export interface WidgetsConfigById { | ||
schema: React.ComponentType; | ||
subjects: React.ComponentType; | ||
query: React.ComponentType; | ||
recurrence: React.ComponentType; | ||
remoteUrl: React.ComponentType; | ||
id: React.ComponentType; | ||
site_logo: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigByWidget { | ||
textarea: React.ComponentType; | ||
datetime: React.ComponentType; | ||
date: React.ComponentType; | ||
password: React.ComponentType; | ||
file: React.ComponentType; | ||
align: React.ComponentType; | ||
buttons: React.ComponentType; | ||
url: React.ComponentType; | ||
internal_url: React.ComponentType; | ||
email: React.ComponentType; | ||
array: React.ComponentType; | ||
token: React.ComponentType; | ||
query: React.ComponentType; | ||
query_sort_on: React.ComponentType; | ||
querystring: React.ComponentType; | ||
object_browser: React.ComponentType; | ||
object: React.ComponentType; | ||
object_list: React.ComponentType; | ||
vocabularyterms: React.ComponentType; | ||
image_size: React.ComponentType; | ||
select_querystring_field: React.ComponentType; | ||
autocomplete: React.ComponentType; | ||
color_picker: React.ComponentType; | ||
select: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigByVocabulary { | ||
'plone.app.vocabularies.Catalog': React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigByFactory { | ||
'Relation List': React.ComponentType; | ||
'Relation Choice': React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigByType { | ||
boolean: React.ComponentType; | ||
array: React.ComponentType; | ||
object: React.ComponentType; | ||
datetime: React.ComponentType; | ||
date: React.ComponentType; | ||
password: React.ComponentType; | ||
number: React.ComponentType; | ||
integer: React.ComponentType; | ||
id: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigViewById { | ||
file: React.ComponentType; | ||
image: React.ComponentType; | ||
relatedItems: React.ComponentType; | ||
subjects: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigViewByWidget { | ||
array: React.ComponentType; | ||
boolean: React.ComponentType; | ||
choices: React.ComponentType; | ||
date: React.ComponentType; | ||
datetime: React.ComponentType; | ||
description: React.ComponentType; | ||
email: React.ComponentType; | ||
file: React.ComponentType; | ||
image: React.ComponentType; | ||
password: React.ComponentType; | ||
relation: React.ComponentType; | ||
richtext: React.ComponentType; | ||
string: React.ComponentType; | ||
tags: React.ComponentType; | ||
textarea: React.ComponentType; | ||
title: React.ComponentType; | ||
url: React.ComponentType; | ||
internal_url: React.ComponentType; | ||
object: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigViewByType { | ||
array: React.ComponentType; | ||
boolean: React.ComponentType; | ||
} | ||
|
||
export interface WidgetsConfigViews { | ||
getWidget: React.ComponentType; | ||
default: React.ComponentType; | ||
id: WidgetsConfigViewById; | ||
widget: WidgetsConfigViewByWidget; | ||
vocabulary: {}; | ||
choices: React.ComponentType; | ||
type: WidgetsConfigViewByType; | ||
} | ||
|
||
export interface WidgetsConfig { | ||
default: React.ComponentType; | ||
id: { | ||
schema: React.ComponentType; | ||
subjects: React.ComponentType; | ||
query: React.ComponentType; | ||
recurrence: React.ComponentType; | ||
remoteUrl: React.ComponentType; | ||
id: React.ComponentType; | ||
site_logo: React.ComponentType; | ||
}; | ||
widget: { | ||
textarea: React.ComponentType; | ||
datetime: React.ComponentType; | ||
date: React.ComponentType; | ||
password: React.ComponentType; | ||
file: React.ComponentType; | ||
align: React.ComponentType; | ||
buttons: React.ComponentType; | ||
url: React.ComponentType; | ||
internal_url: React.ComponentType; | ||
email: React.ComponentType; | ||
array: React.ComponentType; | ||
token: React.ComponentType; | ||
query: React.ComponentType; | ||
query_sort_on: React.ComponentType; | ||
querystring: React.ComponentType; | ||
object_browser: React.ComponentType; | ||
object: React.ComponentType; | ||
object_list: React.ComponentType; | ||
vocabularyterms: React.ComponentType; | ||
image_size: React.ComponentType; | ||
select_querystring_field: React.ComponentType; | ||
autocomplete: React.ComponentType; | ||
color_picker: React.ComponentType; | ||
select: React.ComponentType; | ||
}; | ||
vocabulary: { | ||
'plone.app.vocabularies.Catalog': React.ComponentType; | ||
}; | ||
factory: { | ||
'Relation List': React.ComponentType; | ||
'Relation Choice': React.ComponentType; | ||
}; | ||
id: WidgetsConfigById; | ||
widget: WidgetsConfigByWidget; | ||
vocabulary: WidgetsConfigByVocabulary; | ||
factory: WidgetsConfigByFactory; | ||
choices: React.ComponentType; | ||
type: { | ||
boolean: React.ComponentType; | ||
array: React.ComponentType; | ||
object: React.ComponentType; | ||
datetime: React.ComponentType; | ||
date: React.ComponentType; | ||
password: React.ComponentType; | ||
number: React.ComponentType; | ||
integer: React.ComponentType; | ||
id: React.ComponentType; | ||
}; | ||
views: { | ||
getWidget: React.ComponentType; | ||
default: React.ComponentType; | ||
id: { | ||
file: React.ComponentType; | ||
image: React.ComponentType; | ||
relatedItems: React.ComponentType; | ||
subjects: React.ComponentType; | ||
}; | ||
widget: { | ||
array: React.ComponentType; | ||
boolean: React.ComponentType; | ||
choices: React.ComponentType; | ||
date: React.ComponentType; | ||
datetime: React.ComponentType; | ||
description: React.ComponentType; | ||
email: React.ComponentType; | ||
file: React.ComponentType; | ||
image: React.ComponentType; | ||
password: React.ComponentType; | ||
relation: React.ComponentType; | ||
relations: React.ComponentType; | ||
richtext: React.ComponentType; | ||
string: React.ComponentType; | ||
tags: React.ComponentType; | ||
textarea: React.ComponentType; | ||
title: React.ComponentType; | ||
url: React.ComponentType; | ||
internal_url: React.ComponentType; | ||
object: React.ComponentType; | ||
}; | ||
vocabulary: {}; | ||
choices: React.ComponentType; | ||
type: { | ||
array: React.ComponentType; | ||
boolean: React.ComponentType; | ||
}; | ||
}; | ||
type: WidgetsConfigByType; | ||
views: WidgetsConfigViews; | ||
} |
Oops, something went wrong.