Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
},
"type": "module",
"dependencies": {
"@lucide/vue": "1.16.0",
"bootstrap": "5.3.8",
"date-fns": "4.3.0",
"lucide-vue-next": "1.0.0",
"marked": "18.0.4",
"vue": "3.5.34",
"vue-i18n": "11.4.4",
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</template>

<script>
import { CircleUserRound, Home, Info, Layers, Lock, LogOut, Settings, Shield, Star } from 'lucide-vue-next'
import { CircleUserRound, Home, Info, Layers, Lock, LogOut, Settings, Shield, Star } from '@lucide/vue'
import ThemeToggle from './ThemeToggle.vue'
import Notification from './Notification.vue'

Expand Down
4 changes: 2 additions & 2 deletions src_assets/common/assets/web/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<script>
import { reactive } from 'vue'
import { AlertCircle, AlertTriangle, CheckCircle, Info } from 'lucide-vue-next'
import { AlertCircle, AlertTriangle, CheckCircle, Info } from '@lucide/vue'

/**
* Singleton reactive notification state shared across the app instance.
Expand Down Expand Up @@ -57,7 +57,7 @@ function pushKey(type, messageKey, titleKey) {
}

/**
* Map a Bootstrap color variant to its corresponding lucide-vue-next icon name.
* Map a Bootstrap color variant to its corresponding @lucide/vue icon name.
*
* @param {'danger'|'warning'|'success'|'info'} type - Bootstrap color variant.
* @returns {string} The lucide icon component name.
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/ResourceCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import {
BookOpen,
FileText,
Globe,
} from 'lucide-vue-next'
} from '@lucide/vue'
import SimpleIcon from './SimpleIcon.vue'

export default {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/ThemeToggle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
Sunrise,
Trees,
Waves,
} from 'lucide-vue-next'
} from '@lucide/vue'
onMounted(() => {
loadAutoTheme()
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ <h5 class="modal-title">{{ fileBrowserTitle || $t('file_browser.title') }}</h5>
Terminal,
Trash2,
X,
} from 'lucide-vue-next'
} from '@lucide/vue'

const app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ <h1 class="my-4">{{ $t('config.configuration') }}</h1>
Settings,
Sliders,
Volume2,
} from 'lucide-vue-next'
} from '@lucide/vue'

const app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/configs/tabs/General.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Shield,
Trash2,
Undo,
} from 'lucide-vue-next'
} from '@lucide/vue'
const props = defineProps({
platform: String,
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/configs/tabs/Network.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { computed, ref } from 'vue'
import {
Info,
TriangleAlert,
} from 'lucide-vue-next'
} from '@lucide/vue'
import Checkbox from "../../Checkbox.vue";
const props = defineProps([
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { ref } from 'vue'
import { Trash2 } from 'lucide-vue-next'
import { Trash2 } from '@lucide/vue'
import PlatformLayout from '../../../PlatformLayout.vue'
import Checkbox from "../../../Checkbox.vue";

Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/featured.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ <h5 class="card-title mb-1">{{ app.name }}</h5>
Smartphone,
Star,
Tv,
} from 'lucide-vue-next'
} from '@lucide/vue'

const app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h5 class="mb-0">{{ githubVersion.release.name }}</h5>
Info,
CheckCircle,
Download
} from 'lucide-vue-next'
} from '@lucide/vue'

// Configure marked to allow HTML
marked.setOptions({
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1 class="h3 mb-3">{{ $t('logout.logged_out') }}</h1>
<script type="module">
import { createApp } from 'vue'
import { initApp } from './init'
import { LogIn } from 'lucide-vue-next'
import { LogIn } from '@lucide/vue'

const app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/password.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h4>{{ $t('password.new_creds') }}</h4>
import { initApp } from './init'
import Navbar from './Navbar.vue'
import { apiFetch } from './fetch_utils'
import { Save } from 'lucide-vue-next'
import { Save } from '@lucide/vue'

const app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/pin.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h1 class="my-4 text-center">{{ $t('pin.pin_pairing') }}</h1>
Forward,
Hash,
Monitor,
} from 'lucide-vue-next'
} from '@lucide/vue'

let app = createApp({
components: {
Expand Down
2 changes: 1 addition & 1 deletion src_assets/common/assets/web/troubleshooting.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h2 id="logs">{{ $t('troubleshooting.logs') }}</h2>
Search,
Trash2,
XCircle,
} from 'lucide-vue-next'
} from '@lucide/vue'

const app = createApp({
components: {
Expand Down
Loading