Skip to content

Commit d0f45c2

Browse files
committed
fix: Revert some non exported ones
Signed-off-by: Julius Härtl <jus@bitgrid.net>
1 parent 0319323 commit d0f45c2

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

apps/comments/src/components/Comment.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
import { getCurrentUser } from '@nextcloud/auth'
105105
import moment from '@nextcloud/moment'
106106
107-
import { NcActionButton, NcActions, NcActionSeparator, NcAvatar, NcButton, NcRichContenteditable, RichEditorMixin } from '@nextcloud/vue'
107+
import { NcActionButton, NcActions, NcActionSeparator, NcAvatar, NcButton, NcRichContenteditable, richEditor } from '@nextcloud/vue'
108108
import ArrowRight from 'vue-material-design-icons/ArrowRight'
109109
110110
import Moment from './Moment'

apps/dashboard/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import Vue from 'vue'
2424
import DashboardApp from './DashboardApp.vue'
2525
import { translate as t } from '@nextcloud/l10n'
26-
import { VTooltip } from '@nextcloud/vue'
26+
import { Tooltip as VTooltip } from '@nextcloud/vue'
2727
import { getRequestToken } from '@nextcloud/auth'
2828

2929
// eslint-disable-next-line camelcase

apps/dav/src/views/Availability.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ import {
4747
findScheduleInboxAvailability,
4848
getEmptySlots,
4949
saveScheduleInboxAvailability,
50-
} from '../service/CalendarService'
50+
} from '../service/CalendarService.js'
5151
import {
5252
enableUserStatusAutomation,
5353
disableUserStatusAutomation,
54-
} from '../service/PreferenceService'
55-
import { NcButton, NcCheckboxRadioSwitch, NcSettingsSection, NcTimezonePicker } from '@nextcloud/vue'
54+
} from '../service/PreferenceService.js'
55+
import { NcButton, NcCheckboxRadioSwitch, NcSettingsSection } from '@nextcloud/vue'
56+
import NcTimezonePicker from '@nextcloud/vue/dist/Components/NcTimezonePicker'
5657
5758
export default {
5859
name: 'Availability',

apps/files/src/views/Settings.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@
7070
</template>
7171

7272
<script>
73-
import { NcAppSettingsDialog, NcAppSettingsSection, NcCheckboxRadioSwitch, NcInputField } from '@nextcloud/vue'
73+
import { NcAppSettingsDialog, NcAppSettingsSection, NcCheckboxRadioSwitch } from '@nextcloud/vue'
74+
import NcInputField from '@nextcloud/vue/dist/components/NcInputField'
7475
import Clipboard from 'vue-material-design-icons/Clipboard.vue'
7576
import Setting from '../components/Setting.vue'
7677

apps/workflowengine/src/components/Checks/FileSystemTag.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
-->
2222

2323
<template>
24-
<MultiselectTags v-model="newValue"
24+
<NcMultiselectTags v-model="newValue"
2525
:multiple="false"
2626
@input="update" />
2727
</template>
2828

2929
<script>
30-
import { MultiselectTags } from '@nextcloud/vue'
30+
import { NcMultiselectTags } from '@nextcloud/vue'
3131
3232
export default {
3333
name: 'FileSystemTag',
3434
components: {
35-
MultiselectTags,
35+
NcMultiselectTags,
3636
},
3737
props: {
3838
value: {

core/src/components/UnifiedSearch/SearchResult.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</template>
6060

6161
<script>
62-
import { NcHighlight } from '@nextcloud/vue'
62+
import NcHighlight from '@nextcloud/vue/dist/Components/NcHighlight'
6363
6464
export default {
6565
name: 'SearchResult',

0 commit comments

Comments
 (0)