Skip to content

Commit

Permalink
Merge pull request #6050 from nextcloud/chore/deps/calendar-js-8.0.0
Browse files Browse the repository at this point in the history
chore(deps): bump calendar-js to 8.0.2
  • Loading branch information
st3iny authored Oct 15, 2024
2 parents faf4cd6 + a9568c2 commit 2b76024
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 28 deletions.
33 changes: 10 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@nextcloud/auth": "^2.3.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/calendar-availability-vue": "^2.2.4",
"@nextcloud/calendar-js": "^7.0.0",
"@nextcloud/calendar-js": "^8.0.2",
"@nextcloud/cdav-library": "^1.5.2",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/event-bus": "^3.3.1",
Expand All @@ -57,6 +57,7 @@
"@nextcloud/logger": "^3.0.2",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/timezones": "^0.1.1",
"@nextcloud/vue": "^8.18.0",
"autosize": "^6.0.1",
"color-convert": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Shared/TimezoneSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</template>

<script>
import { getReadableTimezoneName, getSortedTimezoneList } from '@nextcloud/calendar-js'
import { getReadableTimezoneName, getSortedTimezoneList } from '@nextcloud/timezones'
import { NcSelect } from '@nextcloud/vue'
import { translate as t } from '@nextcloud/l10n'
Expand Down
2 changes: 1 addition & 1 deletion src/services/timezoneDataProviderService.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getTimezoneManager } from '@nextcloud/calendar-js'
import { getTimezoneManager } from '@nextcloud/timezones'

const timezoneManager = getTimezoneManager()
let initialized = false
Expand Down
2 changes: 1 addition & 1 deletion src/store/calendarObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import logger from '../utils/logger.js'
import {
createEvent,
getParserManager,
getTimezoneManager,
DateTimeValue,
} from '@nextcloud/calendar-js'
import useFetchedTimeRangesStore from './fetchedTimeRanges.js'
import useCalendarsStore from './calendars.js'
import { defineStore } from 'pinia'
import useCalendarObjectInstanceStore from './calendarObjectInstance.js'
import Vue from 'vue'
import { getTimezoneManager } from '@nextcloud/timezones'

export default defineStore('calendarObjects', {
state: () => {
Expand Down
3 changes: 2 additions & 1 deletion src/store/calendars.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import pLimit from 'p-limit'
import { uidToHexColor } from '../utils/color.js'
import { translate as t } from '@nextcloud/l10n'
import getTimezoneManager from '../services/timezoneDataProviderService.js'
import { CalendarComponent, Timezone, TimezoneComponent } from '@nextcloud/calendar-js'
import { CalendarComponent, TimezoneComponent } from '@nextcloud/calendar-js'
import { Timezone } from '@nextcloud/timezones'
import {
CALDAV_BIRTHDAY_CALENDAR,
IMPORT_STAGE_IMPORTING,
Expand Down

0 comments on commit 2b76024

Please sign in to comment.