Skip to content

Commit

Permalink
fix: filerobot-image-editor
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Mar 22, 2024
1 parent 6c91016 commit bf3d20d
Show file tree
Hide file tree
Showing 9 changed files with 17,035 additions and 1,253 deletions.
6 changes: 3 additions & 3 deletions css/viewer-main.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion js/index-BXlIyGgR.mjs.map

This file was deleted.

4 changes: 2 additions & 2 deletions js/index-BXlIyGgR.mjs → js/index-BahqIHTU.mjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/index-BahqIHTU.mjs.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions js/vendor.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Included dependencies:

@babel/runtime
version: 7.24.0
version: 7.24.1
license: MIT

@emotion/is-prop-valid
Expand Down Expand Up @@ -89,11 +89,11 @@ version: 2.1.0
license: GPL-3.0-or-later

@nextcloud/router
version: 2.2.1
version: 2.1.2
license: GPL-3.0-or-later

@nextcloud/vue
version: 8.9.1
version: 8.11.1
license: AGPL-3.0

@nextcloud/vue-select
Expand Down Expand Up @@ -133,7 +133,7 @@ version: 6.0.1
license: MIT

axios
version: 1.6.7
version: 1.6.8
license: MIT

camelcase
Expand All @@ -149,7 +149,7 @@ version: 0.0.2
license: BSD-3-Clause

core-js
version: 3.36.0
version: 3.36.1
license: MIT

crypt
Expand All @@ -165,7 +165,7 @@ version: 2.0.0
license: MIT

dompurify
version: 3.0.9
version: 3.0.11
license: (MPL-2.0 OR Apache-2.0)

emoji-mart-vue-fast
Expand Down Expand Up @@ -201,7 +201,7 @@ version: 1.1.6
license: MIT

its-fine
version: 1.1.1
version: 1.1.2
license: MIT

konva
Expand Down Expand Up @@ -341,5 +341,5 @@ version: 3.11.1
license: MIT

webdav
version: 5.4.0
version: 5.5.0
license: MIT
250 changes: 135 additions & 115 deletions js/viewer-main.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.mjs.map

Large diffs are not rendered by default.

18,000 changes: 16,881 additions & 1,119 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/components/ImageEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<script>
import { basename, dirname, extname, join } from 'path'
import { emit } from '@nextcloud/event-bus'
import { Node } from '@nextcloud/files'
import { showError, showSuccess } from '@nextcloud/dialogs'
import axios from '@nextcloud/axios'
import { Node } from '@nextcloud/files'
import logger from '../services/logger.js'
import translations from '../models/editorTranslations.js'
Expand Down Expand Up @@ -72,16 +72,16 @@ export default {
palette: {
'bg-secondary': 'var(--color-main-background)',
'bg-primary': 'var(--color-background-dark)',
'bg-hover': 'var(--color-background-hover)',
'bg-stateless': 'var(--color-background-dark)',
// Accent
'accent-primary': 'var(--color-primary-element)',
// Use by the slider
'accent-stateless': 'var(--color-primary-element)',
'border-active-bottom': 'var(--color-primary-element)',
'icons-primary': 'var(--color-main-text)',
// Active state
'bg-primary-active': 'var(--color-background-dark)',
'bg-primary-hover': 'var(--color-background-hover)',
'accent-primary-active': 'var(--color-main-text)',
// Used by the save button
'accent-primary-hover': 'var(--color-primary-element)',
warning: 'var(--color-error)',
Expand Down

0 comments on commit bf3d20d

Please sign in to comment.