Skip to content

Commit

Permalink
chore(deps): bump calendar-js to 8.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
st3iny committed Jun 17, 2024
1 parent c0ce263 commit c310389
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 13 deletions.
73 changes: 65 additions & 8 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.0",
"@nextcloud/calendar-availability-vue": "^2.2.1",
"@nextcloud/calendar-js": "^7.0.0",
"@nextcloud/calendar-js": "^8.0.0",
"@nextcloud/cdav-library": "^1.4.0",
"@nextcloud/dialogs": "^5.3.2",
"@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.12.0",
"@nextcloud/vue-dashboard": "^2.0.1",
"autosize": "^6.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'

Check warning on line 21 in src/components/Shared/TimezoneSelect.vue

View check run for this annotation

Codecov / codecov/patch

src/components/Shared/TimezoneSelect.vue#L21

Added line #L21 was not covered by tests
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 @@ -8,9 +8,9 @@ import logger from '../utils/logger.js'
import {
createEvent,
getParserManager,
getTimezoneManager,
DateTimeValue,
} from '@nextcloud/calendar-js'
import { getTimezoneManager } from '@nextcloud/timezones'

const state = {
calendarObjects: {},
Expand Down
3 changes: 2 additions & 1 deletion src/store/calendars.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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 c310389

Please sign in to comment.