Kaynağa Gözat

更新依赖

ZaiZai 6 ay önce
ebeveyn
işleme
7872fe3991

+ 7 - 7
package.json

@@ -13,27 +13,27 @@
         "lint:fix": "eslint . --fix"
     },
     "dependencies": {
-        "axios": "^1.7.3",
+        "axios": "^1.7.4",
         "crypto-js": "^4.2.0",
         "dayjs": "^1.11.12",
         "echarts": "^5.5.1",
-        "element-plus": "^2.7.8",
-        "hc-vue3-ui": "^4.1.5",
+        "element-plus": "^2.8.0",
+        "hc-vue3-ui": "^4.1.6",
         "js-base64": "^3.7.7",
         "js-fast-way": "^0.5.6",
         "js-md5": "^0.8.3",
         "js-web-screen-shot": "^1.9.9-rc.20",
         "nprogress": "^0.2.0",
-        "pinia": "^2.2.1",
+        "pinia": "^2.2.2",
         "split.js": "^1.6.5",
-        "vue": "3.4.36",
+        "vue": "3.4.38",
         "vue-router": "^4.4.3",
         "vuedraggable": "^4.1.0"
     },
     "devDependencies": {
         "@unocss/eslint-config": "^0.58.9",
         "@vitejs/plugin-vue": "^5.1.2",
-        "@vue/compiler-sfc": "^3.4.36",
+        "@vue/compiler-sfc": "^3.4.38",
         "archiver": "^7.0.1",
         "autoprefixer": "^10.4.20",
         "eslint": "^8.56.0",
@@ -41,7 +41,7 @@
         "sass": "^1.77.8",
         "unocss": "^0.58.9",
         "unocss-preset-extra": "0.5.3",
-        "vite": "^5.3.5",
+        "vite": "^5.4.1",
         "z-element-plus": "^1.1.4"
     }
 }

Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/index.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-color-picker.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-date-picker.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-drawer.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-mention.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-radio.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-tabs.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/el-upload.css


Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
public/plugins/element-plus/theme-chalk/index.css


+ 5 - 0
public/plugins/element-plus/theme-chalk/src/color-picker.scss

@@ -19,6 +19,11 @@ $color-picker-size: map.merge($common-component-size, $color-picker-size);
   border: 1px solid getCssVar('border-color', 'lighter');
   box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
   z-index: 1;
+
+  &:focus-visible {
+    outline: 2px solid getCssVar('color-primary');
+    outline-offset: 1px;
+  }
 }
 
 @mixin bar-background($side: right) {

+ 25 - 0
public/plugins/element-plus/theme-chalk/src/common/var.scss

@@ -851,6 +851,31 @@ $segmented: map.merge(
   $segmented
 );
 
+// Mention
+// css3 var in packages/theme-chalk/src/mention.scss
+$mention: () !default;
+$mention: map.merge(
+  (
+    'font-size': getCssVar('font-size-base'),
+    'bg-color': getCssVar('bg-color', 'overlay'),
+    'shadow': getCssVar('box-shadow-light'),
+    'border': 1px solid getCssVar('border-color-light'),
+    'option-color': getCssVar('text-color-regular'),
+    'option-height': 34px,
+    'option-min-width': 100px,
+    'option-hover-background': getCssVar('fill-color', 'light'),
+    'option-selected-color': getCssVar('color-primary'),
+    'option-disabled-color': getCssVar('text-color-placeholder'),
+    'option-loading-color': getCssVar('text-color-secondary'),
+    'option-loading-padding': 10px 0,
+    'max-height': 174px,
+    'padding': 6px 0,
+    'header-padding': 10px,
+    'footer-padding': 10px,
+  ),
+  $mention
+);
+
 // Table
 // css3 var in packages/theme-chalk/src/table.scss
 $table: () !default;

+ 24 - 17
public/plugins/element-plus/theme-chalk/src/date-picker/month-table.scss

@@ -12,23 +12,26 @@
     padding: 8px 0;
     cursor: pointer;
     position: relative;
-    & div {
+
+    @include b(date-table-cell) {
       height: 48px;
       padding: 6px 0;
       box-sizing: border-box;
     }
+
     &.today {
-      .cell {
+      .#{$namespace}-date-table-cell__text {
         color: getCssVar('color-primary');
         font-weight: bold;
       }
-      &.start-date .cell,
-      &.end-date .cell {
+
+      &.start-date .#{$namespace}-date-table-cell__text,
+      &.end-date .#{$namespace}-date-table-cell__text {
         color: $color-white;
       }
     }
 
-    &.disabled .cell {
+    &.disabled .#{$namespace}-date-table-cell__text {
       background-color: getCssVar('fill-color', 'light');
       cursor: not-allowed;
       color: getCssVar('text-color', 'placeholder');
@@ -38,7 +41,7 @@
       }
     }
 
-    .cell {
+    @include b(date-table-cell__text) {
       width: 54px;
       height: 36px;
       display: block;
@@ -49,57 +52,61 @@
       position: absolute;
       left: 50%;
       transform: translateX(-50%);
+
       &:hover {
         color: getCssVar('datepicker-hover-text-color');
       }
     }
 
-    &.in-range div {
+    &.in-range .#{$namespace}-date-table-cell {
       background-color: getCssVar('datepicker-inrange-bg-color');
+
       &:hover {
         background-color: getCssVar('datepicker-inrange-hover-bg-color');
       }
     }
-    &.start-date div,
-    &.end-date div {
+
+    &.start-date .#{$namespace}-date-table-cell,
+    &.end-date .#{$namespace}-date-table-cell {
       color: $color-white;
     }
 
-    &.start-date .cell,
-    &.end-date .cell {
+    &.start-date .#{$namespace}-date-table-cell__text,
+    &.end-date .#{$namespace}-date-table-cell__text {
       color: $color-white;
       background-color: getCssVar('datepicker-active-color');
     }
 
-    &.start-date div {
+    &.start-date .#{$namespace}-date-table-cell {
       margin-left: 3px;
       border-top-left-radius: 24px;
       border-bottom-left-radius: 24px;
     }
 
-    &.end-date div {
+    &.end-date .#{$namespace}-date-table-cell {
       margin-right: 3px;
       border-top-right-radius: 24px;
       border-bottom-right-radius: 24px;
     }
 
-    &.current:not(.disabled) div {
+    &.current:not(.disabled) .#{$namespace}-date-table-cell {
       border-radius: 24px;
       margin-left: 3px;
       margin-right: 3px;
     }
 
-    &.current:not(.disabled) .cell {
+    &.current:not(.disabled) .#{$namespace}-date-table-cell__text {
       color: $color-white;
       background-color: getCssVar('datepicker-active-color');
     }
 
     &:focus-visible {
       outline: none;
-      .cell {
+
+      .#{$namespace}-date-table-cell__text {
         outline: 2px solid getCssVar('datepicker-active-color');
         outline-offset: 1px;
       }
     }
   }
-}
+}

+ 41 - 12
public/plugins/element-plus/theme-chalk/src/date-picker/year-table.scss

@@ -17,20 +17,25 @@
     cursor: pointer;
     position: relative;
 
-    & div {
+    @include b(date-table-cell) {
       height: 48px;
       padding: 6px 0;
       box-sizing: border-box;
     }
 
     &.today {
-      .cell {
+      .#{$namespace}-date-table-cell__text {
         color: getCssVar('color', 'primary');
         font-weight: bold;
       }
+
+      &.start-date .#{$namespace}-date-table-cell__text,
+      &.end-date .#{$namespace}-date-table-cell__text {
+        color: $color-white;
+      }
     }
 
-    &.disabled .cell {
+    &.disabled .#{$namespace}-date-table-cell__text {
       background-color: getCssVar('fill-color', 'light');
       cursor: not-allowed;
       color: getCssVar('text-color', 'placeholder');
@@ -40,8 +45,8 @@
       }
     }
 
-    .cell {
-      width: 54px;
+    @include b(date-table-cell__text) {
+      width: 60px;
       height: 36px;
       display: block;
       line-height: 36px;
@@ -57,23 +62,47 @@
       }
     }
 
-    &.current:not(.disabled) div {
-      border-radius: 24px;
-      margin-left: 3px;
-      margin-right: 3px;
+    &.in-range .#{$namespace}-date-table-cell {
+      background-color: getCssVar('datepicker-inrange-bg-color');
+
+      &:hover {
+        background-color: getCssVar('datepicker-inrange-hover-bg-color');
+      }
     }
 
-    &.current:not(.disabled) .cell {
+    &.start-date .#{$namespace}-date-table-cell,
+    &.end-date .#{$namespace}-date-table-cell {
+      color: $color-white;
+    }
+
+    &.start-date .#{$namespace}-date-table-cell__text,
+    &.end-date .#{$namespace}-date-table-cell__text {
+      color: $color-white;
+      background-color: getCssVar('datepicker-active-color');
+    }
+
+    &.start-date .#{$namespace}-date-table-cell {
+      border-top-left-radius: 24px;
+      border-bottom-left-radius: 24px;
+    }
+
+    &.end-date .#{$namespace}-date-table-cell {
+      border-top-right-radius: 24px;
+      border-bottom-right-radius: 24px;
+    }
+
+    &.current:not(.disabled) .#{$namespace}-date-table-cell__text {
       color: $color-white;
       background-color: getCssVar('datepicker-active-color');
     }
 
     &:focus-visible {
       outline: none;
-      .cell {
+
+      .#{$namespace}-date-table-cell__text {
         outline: 2px solid getCssVar('datepicker-active-color');
         outline-offset: 1px;
       }
     }
   }
-}
+}

+ 1 - 6
public/plugins/element-plus/theme-chalk/src/drawer.scss

@@ -127,12 +127,7 @@ $directions: rtl, ltr, ttb, btt;
 
   &-enter-from,
   &-leave-to {
-    opacity: 0;
-  }
-
-  &-enter-to,
-  &-leave-from {
-    opacity: 1;
+    background-color: transparent !important;
   }
 
   &-enter-from,

+ 1 - 0
public/plugins/element-plus/theme-chalk/src/index.scss

@@ -107,3 +107,4 @@
 @use './anchor.scss';
 @use './anchor-link.scss';
 @use './segmented.scss';
+@use './mention.scss';

+ 90 - 0
public/plugins/element-plus/theme-chalk/src/mention.scss

@@ -0,0 +1,90 @@
+@use 'sass:map';
+
+@use 'mixins/mixins' as *;
+@use 'mixins/var' as *;
+@use 'common/var' as *;
+
+@include b(mention) {
+  position: relative;
+  width: 100%;
+
+  @include e(popper) {
+    @include picker-popper(
+      map.get($mention, 'bg-color'),
+      map.get($mention, 'border'),
+      map.get($mention, 'shadow')
+    );
+  }
+
+}
+
+@include b(mention-dropdown) {
+
+  @include set-component-css-var('mention', $mention);
+
+  @include e(item) {
+    font-size: getCssVar('mention-font-size');
+    padding: 0 20px;
+    position: relative;
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    color: getCssVar('mention-option-color');
+    height: getCssVar('mention-option-height');
+    line-height: getCssVar('mention-option-height');
+    box-sizing: border-box;
+    min-width: getCssVar('mention-option-min-width');
+    cursor: pointer;
+
+    @include when(hovering) {
+      background-color: getCssVar('mention-option-hover-background');
+    }
+
+    @include when(selected) {
+      color: getCssVar('mention-option-selected-color');
+      font-weight: bold;
+    }
+
+    @include when(disabled) {
+      color: getCssVar('mention-option-disabled-color');
+      cursor: not-allowed;
+      background-color: unset;
+    }
+  }
+}
+
+@include b(mention-dropdown) {
+  z-index: calc(#{getCssVar('index-top')} + 1);
+  border-radius: getCssVar('border-radius-base');
+  box-sizing: border-box;
+}
+
+@include b(mention-dropdown__loading) {
+  padding: 10px 0;
+  margin: 0;
+  text-align: center;
+  color: getCssVar('mention-option-loading-color');
+  font-size: 12px;
+  min-width: getCssVar('mention-option-min-width');
+}
+
+@include b(mention-dropdown__wrap) {
+  max-height: getCssVar('mention-max-height');
+}
+
+@include b(mention-dropdown__list) {
+  list-style: none;
+  padding: getCssVar('mention-padding');
+  margin: 0;
+  box-sizing: border-box;
+}
+
+@include b(mention-dropdown__header) {
+  padding: getCssVar('mention-header-padding');
+  border-bottom: getCssVar('mention-border');
+}
+
+@include b(mention-dropdown__footer) {
+  padding: getCssVar('mention-footer-padding');
+  border-top: getCssVar('mention-border');
+}

+ 1 - 1
public/plugins/element-plus/theme-chalk/src/radio.scss

@@ -30,7 +30,7 @@ $radio-font-size: map.merge(
   outline: none;
   font-size: getCssVar('font-size', 'base');
   user-select: none;
-  margin-right: 32px;
+  margin-right: 30px;
   height: map.get($radio-height, 'default');
 
   @each $size in (large, small) {

+ 31 - 35
public/plugins/element-plus/theme-chalk/src/tabs.scss

@@ -3,6 +3,7 @@
 
 @include b(tabs) {
   @include set-component-css-var('tabs', $tabs);
+  display: flex;
 
   @include e(header) {
     padding: 0;
@@ -176,6 +177,29 @@
   @include e(content) {
     overflow: hidden;
     position: relative;
+    flex-grow: 1;
+  }
+  @include m((top, bottom)) {
+    > .#{$namespace}-tabs__header {
+      .#{$namespace}-tabs__item:nth-child(2) {
+        padding-left: 0;
+      }
+      .#{$namespace}-tabs__item:last-child {
+        padding-right: 0;
+      }
+    }
+
+    &.#{$namespace}-tabs--border-card,
+    &.#{$namespace}-tabs--card {
+      > .#{$namespace}-tabs__header {
+        .#{$namespace}-tabs__item:nth-child(2) {
+          padding-left: 20px;
+        }
+        .#{$namespace}-tabs__item:last-child {
+          padding-right: 20px;
+        }
+      }
+    }
   }
   @include m(card) {
     > .#{$namespace}-tabs__header {
@@ -292,40 +316,9 @@
       margin-left: 0;
     }
   }
-  @include m((top, bottom)) {
-    .#{$namespace}-tabs__item.is-top:nth-child(2),
-    .#{$namespace}-tabs__item.is-bottom:nth-child(2) {
-      padding-left: 0;
-    }
-    .#{$namespace}-tabs__item.is-top:last-child,
-    .#{$namespace}-tabs__item.is-bottom:last-child {
-      padding-right: 0;
-    }
-
-    &.#{$namespace}-tabs--border-card,
-    &.#{$namespace}-tabs--card,
-    .#{$namespace}-tabs--left,
-    .#{$namespace}-tabs--right {
-      > .#{$namespace}-tabs__header {
-        .#{$namespace}-tabs__item:nth-child(2) {
-          padding-left: 20px;
-
-          &:not(.is-active).is-closable:hover {
-            padding-left: 13px;
-          }
-        }
-
-        .#{$namespace}-tabs__item:last-child {
-          padding-right: 20px;
-
-          &:not(.is-active).is-closable:hover {
-            padding-right: 13px;
-          }
-        }
-      }
-    }
-  }
   @include m(bottom) {
+    flex-direction: column;
+
     .#{$namespace}-tabs__header.is-bottom {
       margin-bottom: 0;
       margin-top: 10px;
@@ -422,8 +415,9 @@
     }
   }
   @include m(left) {
+    flex-direction: row-reverse;
+
     .#{$namespace}-tabs__header.is-left {
-      float: left;
       margin-bottom: 0;
       margin-right: 10px;
     }
@@ -506,7 +500,6 @@
   }
   @include m(right) {
     .#{$namespace}-tabs__header.is-right {
-      float: right;
       margin-bottom: 0;
       margin-left: 10px;
     }
@@ -577,6 +570,9 @@
       }
     }
   }
+  @include m(top) {
+    flex-direction: column-reverse;
+  }
 }
 
 .slideInRight-transition,

+ 27 - 0
public/plugins/element-plus/theme-chalk/src/upload.scss

@@ -29,6 +29,33 @@
   cursor: pointer;
   outline: none;
 
+  @include when(disabled){
+    cursor: not-allowed;
+    &:focus{
+      border-color: getCssVar('border-color', 'darker');
+      color: inherit;
+      .#{$namespace}-upload-dragger{
+        border-color: getCssVar('border-color', 'darker');
+      }
+    }
+    .#{$namespace}-upload-dragger {
+      cursor: not-allowed;
+      background-color: getCssVar('disabled-bg-color');
+
+      .#{bem('upload', 'text')} {
+        color: getCssVar('text-color-placeholder');
+
+        em {
+          color: getCssVar('disabled-text-color');
+        }
+      }
+
+      &:hover{
+        border-color: getCssVar('border-color', 'darker');
+      }
+    }
+  }
+
   @include e(input) {
     display: none;
   }

+ 0 - 0
public/plugins/element-plus/v2.7.8 → public/plugins/element-plus/v2.8.0


+ 1 - 1
public/version.json

@@ -1,3 +1,3 @@
 {
-  "value": "20240815110722"
+  "value": "20240815180344"
 }

+ 100 - 91
yarn.lock

@@ -970,90 +970,90 @@
   resolved "http://39.108.216.210:9000/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
   integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
 
-"@vue/compiler-core@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/compiler-core/-/compiler-core-3.4.36.tgz#4e28dfcbaa8a85e135f7a94c44372b6d52329e42"
-  integrity sha512-qBkndgpwFKdupmOPoiS10i7oFdN7a+4UNDlezD0GlQ1kuA1pNrscg9g12HnB5E8hrWSuEftRsbJhL1HI2zpJhg==
+"@vue/compiler-core@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/compiler-core/-/compiler-core-3.4.38.tgz#326dfe3c92fa2b0f1dc9b39a948a231980253496"
+  integrity sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==
   dependencies:
     "@babel/parser" "^7.24.7"
-    "@vue/shared" "3.4.36"
-    entities "^5.0.0"
+    "@vue/shared" "3.4.38"
+    entities "^4.5.0"
     estree-walker "^2.0.2"
     source-map-js "^1.2.0"
 
-"@vue/compiler-dom@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/compiler-dom/-/compiler-dom-3.4.36.tgz#32f5f65d1fb242211df2ddc65a336779cd8b974c"
-  integrity sha512-eEIjy4GwwZTFon/Y+WO8tRRNGqylaRlA79T1RLhUpkOzJ7EtZkkb8MurNfkqY6x6Qiu0R7ESspEF7GkPR/4yYg==
+"@vue/compiler-dom@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz#90348fac1130e0bbd408b650635cb626b3b9df06"
+  integrity sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==
   dependencies:
-    "@vue/compiler-core" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/compiler-core" "3.4.38"
+    "@vue/shared" "3.4.38"
 
-"@vue/compiler-sfc@3.4.36", "@vue/compiler-sfc@^3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/compiler-sfc/-/compiler-sfc-3.4.36.tgz#887809183a273dc0ef8337d5e84ef6a781727ccc"
-  integrity sha512-rhuHu7qztt/rNH90dXPTzhB7hLQT2OC4s4GrPVqmzVgPY4XBlfWmcWzn4bIPEWNImt0CjO7kfHAf/1UXOtx3vw==
+"@vue/compiler-sfc@3.4.38", "@vue/compiler-sfc@^3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz#954c3f6777bbbcca28771ba59b795f12f76ef188"
+  integrity sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==
   dependencies:
     "@babel/parser" "^7.24.7"
-    "@vue/compiler-core" "3.4.36"
-    "@vue/compiler-dom" "3.4.36"
-    "@vue/compiler-ssr" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/compiler-core" "3.4.38"
+    "@vue/compiler-dom" "3.4.38"
+    "@vue/compiler-ssr" "3.4.38"
+    "@vue/shared" "3.4.38"
     estree-walker "^2.0.2"
     magic-string "^0.30.10"
     postcss "^8.4.40"
     source-map-js "^1.2.0"
 
-"@vue/compiler-ssr@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/compiler-ssr/-/compiler-ssr-3.4.36.tgz#5881f9303ad6a4fdf04fb4238ebb483caf040707"
-  integrity sha512-Wt1zyheF0zVvRJyhY74uxQbnkXV2Le/JPOrAxooR4rFYKC7cFr+cRqW6RU3cM/bsTy7sdZ83IDuy/gLPSfPGng==
+"@vue/compiler-ssr@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz#9ded18f6d9c8b2440039a58492cfff36fa1a7774"
+  integrity sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==
   dependencies:
-    "@vue/compiler-dom" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/compiler-dom" "3.4.38"
+    "@vue/shared" "3.4.38"
 
 "@vue/devtools-api@^6.6.3":
   version "6.6.3"
   resolved "http://39.108.216.210:9000/@vue/devtools-api/-/devtools-api-6.6.3.tgz#b23a588154cba8986bba82b6e1d0248bde3fd1a0"
   integrity sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==
 
-"@vue/reactivity@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/reactivity/-/reactivity-3.4.36.tgz#f0797308b1639db7f303e91fdd20577ad538a817"
-  integrity sha512-wN1aoCwSoqrt1yt8wO0gc13QaC+Vk1o6AoSt584YHNnz6TGDhh1NCMUYgAnvp4HEIkLdGsaC1bvu/P+wpoDEXw==
+"@vue/reactivity@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/reactivity/-/reactivity-3.4.38.tgz#ec2d549f4b831cd03d0baabf7d77e840b8536000"
+  integrity sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==
   dependencies:
-    "@vue/shared" "3.4.36"
+    "@vue/shared" "3.4.38"
 
-"@vue/runtime-core@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/runtime-core/-/runtime-core-3.4.36.tgz#7d956671800b2567deebf4a5f92cb476404dfa94"
-  integrity sha512-9+TR14LAVEerZWLOm/N/sG2DVYhrH2bKgFrbH/FVt/Q8Jdw4OtdcGMRC6Tx8VAo0DA1eqAqrZaX0fbOaOxxZ4A==
+"@vue/runtime-core@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/runtime-core/-/runtime-core-3.4.38.tgz#bead9085e9a1c5a446e27d74ffb450f9261cf097"
+  integrity sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==
   dependencies:
-    "@vue/reactivity" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/reactivity" "3.4.38"
+    "@vue/shared" "3.4.38"
 
-"@vue/runtime-dom@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/runtime-dom/-/runtime-dom-3.4.36.tgz#e4eeeba2cb2b9645de45eebd023939a35fff5e30"
-  integrity sha512-2Qe2fKkLxgZBVvHrG0QMNLL4bsx7Ae88pyXebY2WnQYABpOnGYvA+axMbcF9QwM4yxnsv+aELbC0eiNVns7mGw==
+"@vue/runtime-dom@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz#52678ba0b85f94400a0a9c8dd23ddef4dd65657d"
+  integrity sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==
   dependencies:
-    "@vue/reactivity" "3.4.36"
-    "@vue/runtime-core" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/reactivity" "3.4.38"
+    "@vue/runtime-core" "3.4.38"
+    "@vue/shared" "3.4.38"
     csstype "^3.1.3"
 
-"@vue/server-renderer@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/server-renderer/-/server-renderer-3.4.36.tgz#352138e6a31a5eeabcbb75e66f6919f607f8c870"
-  integrity sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==
+"@vue/server-renderer@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/server-renderer/-/server-renderer-3.4.38.tgz#457401ef2b0f969156702061e56915acecc9fe2c"
+  integrity sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==
   dependencies:
-    "@vue/compiler-ssr" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/compiler-ssr" "3.4.38"
+    "@vue/shared" "3.4.38"
 
-"@vue/shared@3.4.36":
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/@vue/shared/-/shared-3.4.36.tgz#7551f41684966acb6a307152b49a8308e7f69203"
-  integrity sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==
+"@vue/shared@3.4.38":
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/@vue/shared/-/shared-3.4.38.tgz#552a6770098bfd556fa3e2c686c9d3b4f4cd94c2"
+  integrity sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==
 
 "@vueuse/core@^9.1.0":
   version "9.13.0"
@@ -1204,10 +1204,10 @@ autoprefixer@^10.4.20:
     picocolors "^1.0.1"
     postcss-value-parser "^4.2.0"
 
-axios@^1.7.3:
-  version "1.7.3"
-  resolved "http://39.108.216.210:9000/axios/-/axios-1.7.3.tgz#a1125f2faf702bc8e8f2104ec3a76fab40257d85"
-  integrity sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==
+axios@^1.7.4:
+  version "1.7.4"
+  resolved "http://39.108.216.210:9000/axios/-/axios-1.7.4.tgz#4c8ded1b43683c8dd362973c393f3ede24052aa2"
+  integrity sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==
   dependencies:
     follow-redirects "^1.15.6"
     form-data "^4.0.0"
@@ -1553,10 +1553,10 @@ electron-to-chromium@^1.5.4:
   resolved "http://39.108.216.210:9000/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz#cd477c830dd6fca41fbd5465c1ff6ce08ac22343"
   integrity sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==
 
-element-plus@^2.7.8:
-  version "2.7.8"
-  resolved "http://39.108.216.210:9000/element-plus/-/element-plus-2.7.8.tgz#5de53bbcb455653a27b43418e3569a22ead59866"
-  integrity sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==
+element-plus@^2.8.0:
+  version "2.8.0"
+  resolved "http://39.108.216.210:9000/element-plus/-/element-plus-2.8.0.tgz#122685f9f1e01784f511dd4858fe005677ad1b95"
+  integrity sha512-7ngapVlVlQAjocVqD4MUKvKXlBneT9DSDk2mmBOSLRFWNm/HLDT15ozmsvUBfy18sajnyUeSIHTtINE8gfrGMg==
   dependencies:
     "@ctrl/tinycolor" "^3.4.1"
     "@element-plus/icons-vue" "^2.3.1"
@@ -1584,10 +1584,10 @@ emoji-regex@^9.2.2:
   resolved "http://39.108.216.210:9000/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
   integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
 
-entities@^5.0.0:
-  version "5.0.0"
-  resolved "http://39.108.216.210:9000/entities/-/entities-5.0.0.tgz#b2ab51fe40d995817979ec79dd621154c3c0f62b"
-  integrity sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==
+entities@^4.5.0:
+  version "4.5.0"
+  resolved "http://39.108.216.210:9000/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+  integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
 
 esbuild@^0.21.3:
   version "0.21.5"
@@ -1982,19 +1982,19 @@ has-flag@^4.0.0:
   resolved "http://39.108.216.210:9000/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
   integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
 
-hc-vue3-ui@^4.1.5:
-  version "4.1.5"
-  resolved "http://39.108.216.210:9000/hc-vue3-ui/-/hc-vue3-ui-4.1.5.tgz#a2e0310678d1568f0ad2e12439434682efdff382"
-  integrity sha512-eFDKqhp0g1urOD0tO5nq+IEtPNl/sble6bahjRN6N7k+i9znS8XSC1T+o9bpVsIqyxqaFTJKn9/R9I+gNXq3kw==
+hc-vue3-ui@^4.1.6:
+  version "4.1.6"
+  resolved "http://39.108.216.210:9000/hc-vue3-ui/-/hc-vue3-ui-4.1.6.tgz#8997a29c818a009e3436b8ed9cad269fe3776b6c"
+  integrity sha512-g3GTPNcoH9NblPCSqki1aKpHaW7CPqOwMGDBqgxhAtvZU0lD7xaV86zINyTeYiVNTszOow+1Jea2Hl25LTeUHQ==
   dependencies:
-    axios "^1.7.3"
+    axios "^1.7.4"
     dayjs "^1.11.12"
     js-base64 "^3.7.7"
     js-fast-way "^0.5.6"
     js-md5 "^0.8.3"
     sortablejs "^1.15.1"
     split.js "^1.6.5"
-    vue "3.4.36"
+    vue "3.4.38"
 
 html2canvas@1.4.1:
   version "1.4.1"
@@ -2507,10 +2507,10 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
   resolved "http://39.108.216.210:9000/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
   integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
 
-pinia@^2.2.1:
-  version "2.2.1"
-  resolved "http://39.108.216.210:9000/pinia/-/pinia-2.2.1.tgz#7cf860f6a23981c23e58605cee45496ce46d15d1"
-  integrity sha512-ltEU3xwiz5ojVMizdP93AHi84Rtfz0+yKd8ud75hr9LVyWX2alxp7vLbY1kFm7MXFmHHr/9B08Xf8Jj6IHTEiQ==
+pinia@^2.2.2:
+  version "2.2.2"
+  resolved "http://39.108.216.210:9000/pinia/-/pinia-2.2.2.tgz#dcf576c9a778187d1542c5e6a9f8b8cd5b6aea14"
+  integrity sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA==
   dependencies:
     "@vue/devtools-api" "^6.6.3"
     vue-demi "^0.14.10"
@@ -2537,7 +2537,7 @@ postcss-value-parser@^4.2.0:
   resolved "http://39.108.216.210:9000/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
   integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
 
-postcss@^8.4.38, postcss@^8.4.39, postcss@^8.4.40:
+postcss@^8.4.38, postcss@^8.4.40:
   version "8.4.40"
   resolved "http://39.108.216.210:9000/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8"
   integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==
@@ -2546,6 +2546,15 @@ postcss@^8.4.38, postcss@^8.4.39, postcss@^8.4.40:
     picocolors "^1.0.1"
     source-map-js "^1.2.0"
 
+postcss@^8.4.41:
+  version "8.4.41"
+  resolved "http://39.108.216.210:9000/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
+  integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
+  dependencies:
+    nanoid "^3.3.7"
+    picocolors "^1.0.1"
+    source-map-js "^1.2.0"
+
 prelude-ls@^1.2.1:
   version "1.2.1"
   resolved "http://39.108.216.210:9000/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
@@ -3002,13 +3011,13 @@ utrie@^1.0.2:
   dependencies:
     base64-arraybuffer "^1.0.2"
 
-vite@^5.3.5:
-  version "5.3.5"
-  resolved "http://39.108.216.210:9000/vite/-/vite-5.3.5.tgz#b847f846fb2b6cb6f6f4ed50a830186138cb83d8"
-  integrity sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==
+vite@^5.4.1:
+  version "5.4.1"
+  resolved "http://39.108.216.210:9000/vite/-/vite-5.4.1.tgz#2aa72370de824d23f53658affd807e4c9905b058"
+  integrity sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA==
   dependencies:
     esbuild "^0.21.3"
-    postcss "^8.4.39"
+    postcss "^8.4.41"
     rollup "^4.13.0"
   optionalDependencies:
     fsevents "~2.3.3"
@@ -3038,16 +3047,16 @@ vue-router@^4.4.3:
   dependencies:
     "@vue/devtools-api" "^6.6.3"
 
-vue@3.4.36:
-  version "3.4.36"
-  resolved "http://39.108.216.210:9000/vue/-/vue-3.4.36.tgz#b2d9af110c8e9afdf08f4eec0d9196949877447c"
-  integrity sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==
+vue@3.4.38:
+  version "3.4.38"
+  resolved "http://39.108.216.210:9000/vue/-/vue-3.4.38.tgz#0ccbb64ed03ef3c4ab73e540793290b18e7c4236"
+  integrity sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==
   dependencies:
-    "@vue/compiler-dom" "3.4.36"
-    "@vue/compiler-sfc" "3.4.36"
-    "@vue/runtime-dom" "3.4.36"
-    "@vue/server-renderer" "3.4.36"
-    "@vue/shared" "3.4.36"
+    "@vue/compiler-dom" "3.4.38"
+    "@vue/compiler-sfc" "3.4.38"
+    "@vue/runtime-dom" "3.4.38"
+    "@vue/server-renderer" "3.4.38"
+    "@vue/shared" "3.4.38"
 
 vuedraggable@^4.1.0:
   version "4.1.0"

Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor