mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-03-22 11:55:17 +00:00
upgraded
This commit is contained in:
parent
8d306cc70c
commit
44e786f854
8
web/dist/assets/index-79ca9eb1.css
vendored
8
web/dist/assets/index-79ca9eb1.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
8
web/dist/assets/index-d2ec24c3.css
vendored
Normal file
8
web/dist/assets/index-d2ec24c3.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LoLLMS WebUI - Welcome</title>
|
||||
<script type="module" crossorigin src="/assets/index-ce8f854c.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-79ca9eb1.css">
|
||||
<script type="module" crossorigin src="/assets/index-b8261e28.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-d2ec24c3.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -19,7 +19,9 @@
|
||||
<hr
|
||||
class=" mt-1 w-96 h-1 mx-auto my-2 md:my-2 dark:bg-bg-dark-tone-panel bg-bg-light-tone-panel border-0 rounded ">
|
||||
<p class="text-2xl">Welcome</p>
|
||||
<span class="text-2xl font-bold ml-4">Loading ...</span>
|
||||
<div role="status" class="text-center w-full display: flex; flex-row align-items: center;">
|
||||
<p class="text-2xl animate-pulse">Loading ...</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@ -278,9 +280,9 @@
|
||||
|
||||
|
||||
<style scoped>
|
||||
.red-svg path {
|
||||
fill: red;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.slide-right-enter-active {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
@ -1760,7 +1760,58 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- EXTENSIONS ZOO -->
|
||||
<div
|
||||
class="flex flex-col mb-2 rounded-lg bg-bg-light-tone dark:bg-bg-dark-tone hover:bg-bg-light-tone-panel hover:dark:bg-bg-dark-tone-panel duration-150 shadow-lg">
|
||||
<div class="flex flex-row p-3 items-center">
|
||||
<button @click.stop="ezc_collapsed = !ezc_collapsed"
|
||||
class="text-2xl hover:text-primary p-2 -m-2 text-left w-full flex items-center">
|
||||
<div v-show="ezc_collapsed" ><i data-feather='chevron-right'></i></div>
|
||||
<div v-show="!ezc_collapsed" ><i data-feather='chevron-down'></i></div>
|
||||
<h3 class="text-lg font-semibold cursor-pointer select-none mr-2">
|
||||
Extensions zoo</h3>
|
||||
<div v-if="configFile.extensions" class="mr-2">|</div>
|
||||
<div v-if="configFile.extensions"
|
||||
class=" text-base font-semibold cursor-pointer select-none items-center flex flex-row">
|
||||
<!-- LIST -->
|
||||
<div class="flex -space-x-4 items-center " v-if="mountedExtensions.length > 0">
|
||||
<!-- ITEM -->
|
||||
<div class="relative hover:-translate-y-2 duration-300 hover:z-10 shrink-0 "
|
||||
v-for="(item, index) in mountedExtensions" :key="index + '-' + item.name"
|
||||
ref="mountedExtensions">
|
||||
<div class="group items-center flex flex-row">
|
||||
<button @click.stop="onPersonalitySelected(item)">
|
||||
<img :src="bUrl + item.avatar" @error="personalityImgPlacehodler"
|
||||
class="w-8 h-8 rounded-full object-fill text-red-700 border-2 active:scale-90 group-hover:border-secondary "
|
||||
:class="configFile.active_personality_id == configFile.personalities.indexOf(item.full_path) ? 'border-secondary' : 'border-transparent z-0'"
|
||||
:title="item.name">
|
||||
</button>
|
||||
<button @click.stop="unmountPersonality (item)">
|
||||
|
||||
<span
|
||||
class="hidden group-hover:block top-0 left-7 absolute active:scale-90 bg-bg-light dark:bg-bg-dark rounded-full border-2 border-transparent"
|
||||
title="Unmount personality">
|
||||
<!-- UNMOUNT BUTTON -->
|
||||
<svg aria-hidden="true" class="w-4 h-4 text-red-600 hover:text-red-500 "
|
||||
fill="currentColor" viewBox="0 0 20 20"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd"
|
||||
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
|
||||
clip-rule="evenodd"></path>
|
||||
</svg>
|
||||
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
<div :class="{ 'hidden': ezc_collapsed }" class="flex flex-col mb-2 px-3 pb-0">
|
||||
</div>
|
||||
</div>
|
||||
<!-- MODEL CONFIGURATION -->
|
||||
<div
|
||||
class="flex flex-col mb-2 p-3 rounded-lg bg-bg-light-tone dark:bg-bg-dark-tone hover:bg-bg-light-tone-panel hover:dark:bg-bg-dark-tone-panel duration-150 shadow-lg">
|
||||
|
Loading…
x
Reference in New Issue
Block a user