Merge pull request #34868 from nextcloud/fix/toasts-styling

Update @nextcloud/dialogs and fix toasts styling
This commit is contained in:
John Molakvoæ 2022-11-02 16:59:02 +01:00 committed by GitHub
commit 87f8f9ff1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 268 additions and 96 deletions

View file

@ -23,7 +23,7 @@
import Vue from 'vue'
import { getRequestToken } from '@nextcloud/auth'
import { translate as t } from '@nextcloud/l10n'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
import { loadState } from '@nextcloud/initial-state'
import AdminSettings from './components/AdminSettings'

View file

@ -20,7 +20,7 @@
import Vue from 'vue'
import { getRequestToken } from '@nextcloud/auth'
import { translate as t } from '@nextcloud/l10n'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
import PersonalSettings from './components/PersonalSettings'

View file

@ -24,7 +24,7 @@ import Vue from 'vue'
import { getRequestToken } from '@nextcloud/auth'
import { loadState } from '@nextcloud/initial-state'
import { translate as t } from '@nextcloud/l10n'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
import logger from './logger'

View file

@ -24,7 +24,7 @@ import Vue from 'vue'
import { getRequestToken } from '@nextcloud/auth'
import { loadState } from '@nextcloud/initial-state'
import { translate as t } from '@nextcloud/l10n'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
import AvatarSection from './components/PersonalInfo/AvatarSection.vue'
import DetailsSection from './components/PersonalInfo/DetailsSection.vue'

View file

@ -26,7 +26,7 @@ import api from './api'
import Vue from 'vue'
import { generateUrl } from '@nextcloud/router'
import { showError, showInfo } from '@nextcloud/dialogs'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
const state = {
apps: [],

View file

@ -23,7 +23,7 @@
import Vue from 'vue'
import { getRequestToken } from '@nextcloud/auth'
import { translate as t } from '@nextcloud/l10n'
import '@nextcloud/dialogs/styles/toast.scss'
import '@nextcloud/dialogs/dist/index.css'
import AdminSettings from './components/AdminSettings'

View file

@ -4859,10 +4859,12 @@ kbd {
display: flex;
align-items: center;
}
.toastify.dialogs .toast-undo-container {
display: flex;
align-items: center;
}
.toastify.dialogs .toast-undo-button,
.toastify.dialogs .toast-close {
position: static;
@ -4877,6 +4879,7 @@ kbd {
background-color: transparent;
min-height: 0;
}
.toastify.dialogs .toast-undo-button.toast-close,
.toastify.dialogs .toast-close.toast-close {
text-indent: 0;
@ -4887,21 +4890,24 @@ kbd {
font-size: 0;
/* dark theme overrides for Nextcloud 25 and later */
}
.toastify.dialogs .toast-undo-button.toast-close::before,
.toastify.dialogs .toast-close.toast-close::before {
background-image: url("./close.svg");
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxNiI+CiAgPHBhdGggZD0iTTE0IDEyLjNMMTIuMyAxNCA4IDkuNyAzLjcgMTQgMiAxMi4zIDYuMyA4IDIgMy43IDMuNyAyIDggNi4zIDEyLjMgMiAxNCAzLjcgOS43IDh6Ii8+Cjwvc3ZnPgo=");
content: " ";
filter: var(--background-invert-if-dark);
display: inline-block;
width: 16px;
height: 16px;
}
.toastify.dialogs .toast-undo-button.toast-undo-button,
.toastify.dialogs .toast-close.toast-undo-button {
margin: 3px;
height: calc(100% - 2 * 3px);
height: calc(100% - 6px);
margin-left: 12px;
}
.toastify.dialogs .toast-undo-button:hover, .toastify.dialogs .toast-undo-button:focus, .toastify.dialogs .toast-undo-button:active,
.toastify.dialogs .toast-close:hover,
.toastify.dialogs .toast-close:focus,
@ -4909,24 +4915,31 @@ kbd {
cursor: pointer;
opacity: 1;
}
.toastify.dialogs.toastify-top {
right: 10px;
}
.toastify.dialogs.toast-with-click {
cursor: pointer;
}
.toastify.dialogs.toast-error {
border-left: 3px solid var(--color-error);
}
.toastify.dialogs.toast-info {
border-left: 3px solid var(--color-primary);
}
.toastify.dialogs.toast-warning {
border-left: 3px solid var(--color-warning);
}
.toastify.dialogs.toast-success {
border-left: 3px solid var(--color-success);
}
.toastify.dialogs.toast-undo {
border-left: 3px solid var(--color-success);
}
@ -4935,10 +4948,12 @@ kbd {
.theme--dark .toastify.dialogs .toast-close {
/* close icon style */
}
.theme--dark .toastify.dialogs .toast-close.toast-close::before {
background-image: url("./close-dark.svg");
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxNiI+CiAgPHBhdGggZD0iTTE0IDEyLjNMMTIuMyAxNCA4IDkuNyAzLjcgMTQgMiAxMi4zIDYuMyA4IDIgMy43IDMuNyAyIDggNi4zIDEyLjMgMiAxNCAzLjcgOS43IDh6IiBzdHlsZT0iZmlsbC1vcGFjaXR5OjE7ZmlsbDojZmZmZmZmIi8+Cjwvc3ZnPgo=");
}
/*# sourceMappingURL=index.css.map */
#body-public {
/** don't apply content header padding on the base layout */
/* public footer */

File diff suppressed because one or more lines are too long

View file

@ -7,5 +7,6 @@
@import 'fixes.scss';
@import 'mobile.scss';
@import 'tooltip.scss';
@import '../../node_modules/@nextcloud/dialogs/styles/toast.scss';
// If you include .css, it will be imported as url
@import '../../node_modules/@nextcloud/dialogs/dist/index';
@import 'public.scss';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/core-common.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/core-login.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/core-main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/files-main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

174
package-lock.json generated
View file

@ -16,7 +16,7 @@
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/calendar-availability-vue": "^0.5.0-beta.3",
"@nextcloud/capabilities": "^1.0.4",
"@nextcloud/dialogs": "^3.1.4",
"@nextcloud/dialogs": "^4.0.0-beta.2",
"@nextcloud/event-bus": "^2.1.1",
"@nextcloud/files": "^2.1.0",
"@nextcloud/initial-state": "^1.2.1",
@ -3599,9 +3599,9 @@
}
},
"node_modules/@nextcloud/dialogs": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.1.4.tgz",
"integrity": "sha512-Jf/DWacCqPZDWroDkdOFuX+3AyHVWjy6JpkxAUNkmFPlKjNG8fGPRm/cdQIkqVqAnC+b1sUdMqH6N89Zdyks2Q==",
"version": "4.0.0-beta.2",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-4.0.0-beta.2.tgz",
"integrity": "sha512-vdMT/PIPzSYN+xNkYteyEXURx5w2epjUXTASuz/csDKDQNOSLPGpBw+ettcw8cmuUc5mPVl7Plafmfm2Kbnbmw==",
"dependencies": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
@ -3609,8 +3609,8 @@
"toastify-js": "^1.12.0"
},
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/dialogs/node_modules/@nextcloud/typings": {
@ -3913,6 +3913,21 @@
"vue": "^2.6.11"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"dependencies": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@nextcloud/event-bus": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.3.0.tgz",
@ -3931,6 +3946,14 @@
"core-js": "^3.6.4"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"dependencies": {
"@types/jquery": "2.0.60"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -3968,6 +3991,11 @@
"node": ">=10.0.0"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"node_modules/@nextcloud/vue-dashboard/node_modules/char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
@ -4100,6 +4128,21 @@
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/vue/node_modules/@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"dependencies": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/vue/node_modules/@nextcloud/event-bus": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-3.0.0.tgz",
@ -4126,6 +4169,19 @@
"node-gettext": "^3.0.0"
}
},
"node_modules/@nextcloud/vue/node_modules/@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"dependencies": {
"@types/jquery": "2.0.60"
}
},
"node_modules/@nextcloud/vue/node_modules/@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"node_modules/@nextcloud/vue/node_modules/emoji-mart-vue-fast": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz",
@ -15010,6 +15066,21 @@
"resolved": "https://registry.npmjs.org/@nextcloud/browserslist-config/-/browserslist-config-1.0.0.tgz",
"integrity": "sha512-f+sKpdLZXkODV+OY39K1M+Spmd4RgxmtEXmNn4Bviv4R7uBFHXuw+JX9ZdfDeOryfHjJ/TRQxQEp0GMpBwZFUw=="
},
"node_modules/nextcloud-vue-collections/node_modules/@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"dependencies": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/nextcloud-vue-collections/node_modules/@nextcloud/event-bus": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.3.0.tgz",
@ -15028,6 +15099,14 @@
"core-js": "^3.6.4"
}
},
"node_modules/nextcloud-vue-collections/node_modules/@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"dependencies": {
"@types/jquery": "2.0.60"
}
},
"node_modules/nextcloud-vue-collections/node_modules/@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -15065,6 +15144,11 @@
"node": ">=10.0.0"
}
},
"node_modules/nextcloud-vue-collections/node_modules/@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"node_modules/nextcloud-vue-collections/node_modules/char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
@ -22392,9 +22476,9 @@
}
},
"@nextcloud/dialogs": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.1.4.tgz",
"integrity": "sha512-Jf/DWacCqPZDWroDkdOFuX+3AyHVWjy6JpkxAUNkmFPlKjNG8fGPRm/cdQIkqVqAnC+b1sUdMqH6N89Zdyks2Q==",
"version": "4.0.0-beta.2",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-4.0.0-beta.2.tgz",
"integrity": "sha512-vdMT/PIPzSYN+xNkYteyEXURx5w2epjUXTASuz/csDKDQNOSLPGpBw+ettcw8cmuUc5mPVl7Plafmfm2Kbnbmw==",
"requires": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
@ -22667,6 +22751,17 @@
"tslib": "^2.4.0"
}
},
"@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"requires": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
}
},
"@nextcloud/event-bus": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-3.0.0.tgz",
@ -22689,6 +22784,19 @@
"node-gettext": "^3.0.0"
}
},
"@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"emoji-mart-vue-fast": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz",
@ -22719,6 +22827,17 @@
"vue": "^2.6.11"
},
"dependencies": {
"@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"requires": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
}
},
"@nextcloud/event-bus": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.3.0.tgz",
@ -22737,6 +22856,14 @@
"core-js": "^3.6.4"
}
},
"@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -22771,6 +22898,11 @@
"vue2-datepicker": "^3.6.3"
}
},
"@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
@ -31188,6 +31320,17 @@
"resolved": "https://registry.npmjs.org/@nextcloud/browserslist-config/-/browserslist-config-1.0.0.tgz",
"integrity": "sha512-f+sKpdLZXkODV+OY39K1M+Spmd4RgxmtEXmNn4Bviv4R7uBFHXuw+JX9ZdfDeOryfHjJ/TRQxQEp0GMpBwZFUw=="
},
"@nextcloud/dialogs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-3.2.0.tgz",
"integrity": "sha512-notaHF8LXPJINBbILCbRe+dgXnJPe7NQTIrN1vwfaGUSG9GUfEf+v367yyg2brCgV6ulE/HmNhYjTQwW5AqSJA==",
"requires": {
"@nextcloud/l10n": "^1.3.0",
"@nextcloud/typings": "^1.0.0",
"core-js": "^3.6.4",
"toastify-js": "^1.12.0"
}
},
"@nextcloud/event-bus": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.3.0.tgz",
@ -31206,6 +31349,14 @@
"core-js": "^3.6.4"
}
},
"@nextcloud/typings": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.4.3.tgz",
"integrity": "sha512-9Yc40alExKpHwNKdpZzULwb+Fz5HgEFKZvywXYK5QbR96Z7V5iI3Greu8MhmZErfUJ6zES7PHpz3S3jM1kdnUw==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -31240,6 +31391,11 @@
"vue2-datepicker": "^3.6.3"
}
},
"@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",

View file

@ -36,7 +36,7 @@
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/calendar-availability-vue": "^0.5.0-beta.3",
"@nextcloud/capabilities": "^1.0.4",
"@nextcloud/dialogs": "^3.1.4",
"@nextcloud/dialogs": "^4.0.0-beta.2",
"@nextcloud/event-bus": "^2.1.1",
"@nextcloud/files": "^2.1.0",
"@nextcloud/initial-state": "^1.2.1",