Merge pull request #34928 from nextcloud/backport/34868/stable25

[stable25] Update @nextcloud/dialogs and fix toasts styling
This commit is contained in:
John Molakvoæ 2022-11-23 10:21:20 +01:00 committed by GitHub
commit 5cd1e77dbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
63 changed files with 339 additions and 99 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

@ -4873,10 +4873,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;
@ -4891,6 +4893,7 @@ kbd {
background-color: transparent;
min-height: 0;
}
.toastify.dialogs .toast-undo-button.toast-close,
.toastify.dialogs .toast-close.toast-close {
text-indent: 0;
@ -4901,21 +4904,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,
@ -4923,24 +4929,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);
}
@ -4949,10 +4962,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 */
/* force layout to make sure the content element's height matches its contents' height */

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

242
package-lock.json generated
View file

@ -14,7 +14,7 @@
"@nextcloud/axios": "^1.10.0",
"@nextcloud/calendar-availability-vue": "^0.5.0-beta.4",
"@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",
@ -3613,9 +3613,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",
@ -3623,8 +3623,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": {
@ -3800,6 +3800,21 @@
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/password-confirmation/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/password-confirmation/node_modules/@nextcloud/event-bus": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-3.0.2.tgz",
@ -3826,6 +3841,18 @@
"node-gettext": "^3.0.0"
}
},
"node_modules/@nextcloud/password-confirmation/node_modules/@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"dependencies": {
"@types/jquery": "2.0.60"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/password-confirmation/node_modules/@nextcloud/vue": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-7.0.1.tgz",
@ -3866,6 +3893,11 @@
"npm": "^7.0.0 || ^8.0.0"
}
},
"node_modules/@nextcloud/password-confirmation/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/password-confirmation/node_modules/axios": {
"version": "0.27.2",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
@ -4006,6 +4038,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",
@ -4024,6 +4071,18 @@
"core-js": "^3.6.4"
}
},
"node_modules/@nextcloud/vue-dashboard/node_modules/@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"dependencies": {
"@types/jquery": "2.0.60"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"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",
@ -4061,6 +4120,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",
@ -4205,6 +4269,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",
@ -4231,6 +4310,23 @@
"node-gettext": "^3.0.0"
}
},
"node_modules/@nextcloud/vue/node_modules/@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"dependencies": {
"@types/jquery": "2.0.60"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"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/axios": {
"version": "0.27.2",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
@ -14966,6 +15062,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",
@ -14984,6 +15095,18 @@
"core-js": "^3.6.4"
}
},
"node_modules/nextcloud-vue-collections/node_modules/@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"dependencies": {
"@types/jquery": "2.0.60"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
},
"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",
@ -15021,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",
@ -22314,9 +22442,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",
@ -22461,6 +22589,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.2",
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-3.0.2.tgz",
@ -22483,6 +22622,14 @@
"node-gettext": "^3.0.0"
}
},
"@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@nextcloud/vue": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-7.0.1.tgz",
@ -22519,6 +22666,11 @@
"vue2-datepicker": "^3.11.0"
}
},
"@types/jquery": {
"version": "2.0.60",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.60.tgz",
"integrity": "sha512-izi6OBEVrAwaHiqWITjOPBbVtcKZKAXTocJqPZsAKA2lvmbpFEyPSAxgcqmisbiMYj9EvrooUEPLHQeQqVMWAg=="
},
"axios": {
"version": "0.27.2",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
@ -22665,6 +22817,17 @@
"core-js": "3.25.5"
}
},
"@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",
@ -22687,6 +22850,19 @@
"node-gettext": "^3.0.0"
}
},
"@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"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=="
},
"axios": {
"version": "0.27.2",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
@ -22726,6 +22902,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",
@ -22744,6 +22931,14 @@
"core-js": "^3.6.4"
}
},
"@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -22778,6 +22973,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",
@ -31082,6 +31282,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",
@ -31100,6 +31311,14 @@
"core-js": "^3.6.4"
}
},
"@nextcloud/typings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@nextcloud/typings/-/typings-1.5.0.tgz",
"integrity": "sha512-33GMGlajEccf+pKOgFas3DsrRQvEcFlAW6E8P9lVCPt+I4PngRqaF/JDYiRbIWRIkwo8fWbRwfQs37OShiDycQ==",
"requires": {
"@types/jquery": "2.0.60"
}
},
"@nextcloud/vue": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-3.10.2.tgz",
@ -31134,6 +31353,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

@ -34,7 +34,7 @@
"@nextcloud/axios": "^1.10.0",
"@nextcloud/calendar-availability-vue": "^0.5.0-beta.4",
"@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",