Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to @nextcloud/vue@8 #396

Merged
merged 6 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,001 changes: 1,168 additions & 833 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@nextcloud/capabilities": "^1.1.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/vue": "^7.12.6",
"@nextcloud/vue": "^8.0.0-beta.9",
"core-js": "^3.33.1",
"electron-squirrel-startup": "^1.0.0",
"floating-vue": "^1.0.0-beta.19",
Expand Down
4 changes: 2 additions & 2 deletions src/authentication/renderer/authentication.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/

// We need to use a copy of default styles here because we do not have real server styles before login on the server
import '../../shared/assets/default/css/default.css'
import '../../shared/assets/default/css/server.css'
import '../../shared/assets/default/default.css'
import '../../shared/assets/default/server.css'

import Vue from 'vue'
import AuthenticationApp from './AuthenticationApp.vue'
Expand Down
6 changes: 4 additions & 2 deletions src/help/renderer/HelpApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
Source Code: <a :href="$options.packageInfo.repository" class="link" target="_blank">{{ $options.packageInfo.repository }}</a>
</li>
</ul>
<textarea class="about__report"
:value="report"
<NcTextArea :value="report"
rows="11"
readonly
class="about__report"
@focus="$event.target.setSelectionRange(0, -1)" />
<p>
<NcButton type="secondary" wide @click="close">
Expand All @@ -55,7 +55,8 @@

<script>
import MdiWindowClose from 'vue-material-design-icons/WindowClose.vue'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'

Check failure on line 58 in src/help/renderer/HelpApp.vue

View workflow job for this annotation

GitHub Actions / eslint

Missing file extension "mjs" for "@nextcloud/vue/dist/Components/NcButton.js"
import NcTextArea from '@nextcloud/vue/dist/Components/NcTextArea.js'

Check failure on line 59 in src/help/renderer/HelpApp.vue

View workflow job for this annotation

GitHub Actions / eslint

Missing file extension "mjs" for "@nextcloud/vue/dist/Components/NcTextArea.js"

import { appData } from '../../app/AppData.js'

Expand All @@ -65,6 +66,7 @@
components: {
MdiWindowClose,
NcButton,
NcTextArea,
},

inheritAttrs: false,
Expand Down
4 changes: 2 additions & 2 deletions src/help/renderer/help.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import '../../shared/assets/default/css/default.css'
import '../../shared/assets/default/css/server.css'
import '../../shared/assets/default/default.css'
import '../../shared/assets/default/server.css'

import Vue from 'vue'
import HelpApp from './HelpApp.vue'
Expand Down
78 changes: 0 additions & 78 deletions src/shared/assets/default/css/default.css

This file was deleted.

Loading
Loading