Merge pull request #3090 from Abderahman88/patch-2693

[react-calendar] Fix error on deleting calendar event
This commit is contained in:
Hugo Bernier 2022-11-07 10:02:26 -05:00 committed by GitHub
commit 163a891137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 443 additions and 150 deletions

View File

@ -145,6 +145,7 @@ Version|Date|Comments
1.0.14|October 16, 2021|Resolve unhandled exception that happens clicking on recurrent events
1.0.15|November 22, 2021|Fix All Day event issue that makes All Day events date expanded to another day instead of being full day event.
1.0.16|December 21, 2021|Upgraded to SPFx 1.12.1
1.0.17|October 25, 2022|Fixed issue deleting events (#2693)
## Minimal Path to Awesome

View File

@ -9,7 +9,7 @@
"This Web Part allows you to manage events in a calendar. Uses a list of existing calendars on any website. The location and name of the list and the dates of the events to be displayed are defined in the properties of the web part."
],
"creationDateTime": "2020-12-04",
"updateDateTime": "2021-12-21",
"updateDateTime": "2022-10-25",
"products": [
"SharePoint"
],

View File

@ -3,7 +3,7 @@
"solution": {
"name": "react-calendar-client-side-solution",
"id": "3a13208b-3874-4036-9262-4edd22e88187",
"version": "1.0.12.0",
"version": "1.0.17.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false

File diff suppressed because it is too large Load Diff

View File

@ -40,7 +40,6 @@
"react-big-calendar": "^0.24.6",
"react-dom": "16.9.0",
"react-draft-wysiwyg": "^1.13.2",
"spfx-uifabric-themes": "^0.6.0",
"string-format": "^2.0.0",
"typescript": "^3.2.4",
"xml2js": "^0.4.19"
@ -69,6 +68,7 @@
"gulp-stylelint": "^8.0.0",
"jest": "^23.6.0",
"karma-junit-reporter": "^1.2.0",
"spfx-uifabric-themes": "^0.6.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.5.4",

View File

@ -315,7 +315,7 @@ export default class Calendar extends React.Component<ICalendarProps, ICalendarS
*/
public render(): React.ReactElement<ICalendarProps> {
return (
<Customizer {...FluentCustomizations}>
<Customizer>
<div className={styles.calendar} style={{ backgroundColor: 'white', padding: '20px' }}>