-
-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
250 additions
and
160 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
} | ||
], | ||
"license": "MIT", | ||
"version": "18.0.0-alpha.27", | ||
"version": "18.0.0-alpha.28", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:plone/volto.git" | ||
|
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
5 changes: 5 additions & 0 deletions
5
packages/volto/types/components/manage/Blocks/Search/widgets/SelectMetadataField.d.ts
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,5 +1,10 @@ | ||
declare const _default: { | ||
(props: any): import("react/jsx-runtime").JSX.Element; | ||
/** | ||
* Property types. | ||
* @property {Object} propTypes Property types. | ||
* @static | ||
*/ | ||
displayName: string; | ||
}; | ||
export default _default; |
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
8 changes: 6 additions & 2 deletions
8
packages/volto/types/components/manage/Controlpanels/Controlpanels.d.ts
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,2 +1,6 @@ | ||
declare const _default: any; | ||
export default _default; | ||
/** | ||
* Controlpanels container class. | ||
*/ | ||
export default function Controlpanels({ location }: { | ||
location: any; | ||
}): import("react/jsx-runtime").JSX.Element; |
4 changes: 2 additions & 2 deletions
4
packages/volto/types/components/manage/Controlpanels/Relations/RelationsListing.d.ts
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
36 changes: 2 additions & 34 deletions
36
packages/volto/types/components/manage/Widgets/RecurrenceWidget/SelectInput.d.ts
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,34 +1,2 @@ | ||
export default SelectInput; | ||
/** | ||
* SelectInput component class. | ||
* @function SelectInput | ||
* @returns {string} Markup of the component. | ||
*/ | ||
declare function SelectInput({ name, disabled, options, value, onChange }: { | ||
name: any; | ||
disabled: any; | ||
options: any; | ||
value: any; | ||
onChange: any; | ||
}): string; | ||
declare namespace SelectInput { | ||
namespace propTypes { | ||
let name: any; | ||
let options: any; | ||
let disabled: any; | ||
let value: any; | ||
let onChange: any; | ||
} | ||
namespace defaultProps { | ||
let name_1: string; | ||
export { name_1 as name }; | ||
let options_1: any[]; | ||
export { options_1 as options }; | ||
let disabled_1: boolean; | ||
export { disabled_1 as disabled }; | ||
let value_1: any; | ||
export { value_1 as value }; | ||
let onChange_1: any; | ||
export { onChange_1 as onChange }; | ||
} | ||
} | ||
declare const _default: any; | ||
export default _default; |
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
Oops, something went wrong.