@mixd-id/web-scaffold 0.1.2301231318 → 0.1.2301231320

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.2301231318",
4
+ "version": "0.1.2301231320",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -27,9 +27,7 @@
27
27
  "dayjs": "^1.11.2",
28
28
  "express": "^4.18.1",
29
29
  "glob": "^8.0.3",
30
- "lodash": "^4.17.21",
31
30
  "lodash-es": "^4.17.21",
32
- "lodash.throttle": "^4.1.1",
33
31
  "nprogress": "^0.2.0",
34
32
  "pinia": "^2.0.14",
35
33
  "prismjs": "^1.28.0",
@@ -1,6 +1,6 @@
1
1
  <template>
2
- <div :class="computedOuterClass">
3
- <img :class="computedClass" :src="actualSrc" ref="img" @click="onClick" :style="imageStyle"/>
2
+ <div :class="computedOuterClass" @click="onClick">
3
+ <img :class="computedClass" :src="actualSrc" ref="img" :style="imageStyle"/>
4
4
  <input v-if="Boolean(editable)" class="hidden" type="file" accept="image/*" ref="file" @change="onChange"/>
5
5
  <slot></slot>
6
6
  <div :class="$style.isLoading" v-if="isLoading">
@@ -179,7 +179,7 @@
179
179
 
180
180
  <script>
181
181
 
182
- import throttle from "lodash.throttle";
182
+ import throttle from "lodash-es/throttle";
183
183
 
184
184
  export default{
185
185
 
@@ -180,7 +180,7 @@
180
180
 
181
181
  <script>
182
182
 
183
- import throttle from "lodash.throttle";
183
+ import throttle from "lodash-es/throttle";
184
184
  import {parseBoolean} from "../helper";
185
185
 
186
186
  export default{
@@ -21,7 +21,7 @@
21
21
 
22
22
  <script>
23
23
 
24
- import throttle from "lodash.throttle"
24
+ import throttle from "lodash-es/throttle";
25
25
 
26
26
  export default{
27
27
 
@@ -66,7 +66,7 @@
66
66
 
67
67
  <script>
68
68
 
69
- import throttle from "lodash.throttle";
69
+ import throttle from "lodash-es/throttle";
70
70
  import dayjs from "dayjs";
71
71
 
72
72
  const _DEFAULT_COLUMN_WIDTH = '100px'