1414 data-cy="assistantMenu">
1515 <NcActions :title =" t (' text' , ' Nextcloud Assistant' )" :type =" ' secondary' " >
1616 <template #icon >
17- <CreationIcon :size =" 20 " class="icon" />
17+ <CreationOutlineIcon :size =" 20 " class="icon" />
1818 </template >
1919 <NcActionButton
2020 v-for =" type in taskTypes "
2121 :key =" type .id "
2222 close-after-click
2323 @click =" openAssistantForm (type .id )" >
2424 <template #icon >
25- <PencilIcon v-if =" type .id == ' core:text2text' " :size =" 20 " />
25+ <PencilOutlineIcon
26+ v-if =" type .id == ' core:text2text' "
27+ :size =" 20 " />
2628 <FormatHeader1
2729 v-else-if =" type .id == ' core:text2text:headline' "
2830 :size =" 20 " />
3234 <TextShort
3335 v-else-if =" type .id == ' core:text2text:summary' "
3436 :size =" 20 " />
35- <CreationIcon v-else />
37+ <CreationOutlineIcon v-else />
3638 </template >
3739 {{ type.name }}
3840 </NcActionButton >
5254 close-after-click
5355 @click =" showTaskList = true " >
5456 <template #icon >
55- <CreationIcon :size =" 20 " />
57+ <CreationOutlineIcon :size =" 20 " />
5658 </template >
5759 {{ t('text', 'Show assistant results') }}
5860 </NcActionButton >
6870 <div class =" task-list" >
6971 <h4 v-if =" tasks.length > 0" >
7072 <span class =" assistant-bubble" >
71- <CreationIcon :size =" 16 " class="icon" />
73+ <CreationOutlineIcon :size =" 16 " class="icon" />
7274 <span >{{ t('text', 'Nextcloud Assistant') }}</span >
7375 </span >
7476 </h4 >
8486 {{ task.input.input }}
8587 </template >
8688 <template #icon >
87- <CheckCircleIcon
89+ <CheckCircleOutlineIcon
8890 v-if =" task .status === STATUS_SUCCESSFUL "
8991 :size =" 20 "
9092 class="icon-status--success" />
91- <ErrorIcon
93+ <ErrorOutlineIcon
9294 v-else-if =" task .status === STATUS_FAILED "
9395 :size =" 20 "
9496 class="icon-status--failed" />
113115 :title =" task .output .output "
114116 @click .stop =" () => openResult (task ) " >
115117 <template #icon >
116- <CreationIcon :size =" 20 " />
118+ <CreationOutlineIcon :size =" 20 " />
117119 </template >
118120 {{ t('text', 'Show result') }}
119121 </NcActionButton >
128130 </NcActionButton >
129131 <NcActionButton @click =" () => deleteTask (task ) " >
130132 <template #icon >
131- <DeleteIcon :size =" 20 " />
133+ <DeleteOutlineIcon :size =" 20 " />
132134 </template >
133135 {{ t('text', 'Delete task') }}
134136 </NcActionButton >
@@ -153,14 +155,14 @@ import NcListItem from '@nextcloud/vue/components/NcListItem'
153155import NcModal from ' @nextcloud/vue/components/NcModal'
154156import { posToDOMRect } from ' @tiptap/core'
155157import { FloatingMenu } from ' @tiptap/vue-2'
156- import ErrorIcon from ' vue-material-design-icons/AlertCircle .vue'
157- import CheckCircleIcon from ' vue-material-design-icons/CheckCircle .vue'
158+ import ErrorOutlineIcon from ' vue-material-design-icons/AlertCircleOutline .vue'
159+ import CheckCircleOutlineIcon from ' vue-material-design-icons/CheckCircleOutline .vue'
158160import ClipboardTextOutlineIcon from ' vue-material-design-icons/ClipboardTextOutline.vue'
159161import ClockOutline from ' vue-material-design-icons/ClockOutline.vue'
160- import CreationIcon from ' vue-material-design-icons/Creation .vue'
161- import DeleteIcon from ' vue-material-design-icons/Delete .vue'
162+ import CreationOutlineIcon from ' vue-material-design-icons/CreationOutline .vue'
163+ import DeleteOutlineIcon from ' vue-material-design-icons/DeleteOutline .vue'
162164import FormatHeader1 from ' vue-material-design-icons/FormatHeader1.vue'
163- import PencilIcon from ' vue-material-design-icons/Pencil .vue'
165+ import PencilOutlineIcon from ' vue-material-design-icons/PencilOutline .vue'
164166import Shuffle from ' vue-material-design-icons/Shuffle.vue'
165167import TextBoxPlusOutlineIcon from ' vue-material-design-icons/TextBoxPlusOutline.vue'
166168import TextShort from ' vue-material-design-icons/TextShort.vue'
@@ -186,13 +188,13 @@ export default {
186188 name: ' Assistant' ,
187189 components: {
188190 FloatingMenu,
189- ErrorIcon ,
190- CreationIcon ,
191+ ErrorOutlineIcon ,
192+ CreationOutlineIcon ,
191193 ClockOutline,
192- CheckCircleIcon ,
193- DeleteIcon ,
194+ CheckCircleOutlineIcon ,
195+ DeleteOutlineIcon ,
194196 TextBoxPlusOutlineIcon,
195- PencilIcon ,
197+ PencilOutlineIcon ,
196198 TextShort,
197199 FormatHeader1,
198200 Shuffle,
@@ -249,13 +251,13 @@ export default {
249251 }
250252
251253 if (this .tasks .filter ((t ) => t .status === STATUS_FAILED ).length > 0 ) {
252- return ErrorIcon
254+ return ErrorOutlineIcon
253255 }
254256
255257 if (
256258 this .tasks .filter ((t ) => t .status === STATUS_SUCCESSFUL ).length > 0
257259 ) {
258- return CheckCircleIcon
260+ return CheckCircleOutlineIcon
259261 }
260262
261263 return null
0 commit comments