@mixd-id/web-scaffold 0.1.2301231327 → 0.1.2301231328

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.2301231327",
4
+ "version": "0.1.2301231328",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -33,7 +33,7 @@
33
33
  "express": "^4.18.1",
34
34
  "file-type": "^18.2.1",
35
35
  "glob": "^8.0.3",
36
- "lodash-es": "^4.17.21",
36
+ "lodash": "^4.17.21",
37
37
  "md5": "^2.3.0",
38
38
  "nprogress": "^0.2.0",
39
39
  "pinia": "^2.0.14",
@@ -189,7 +189,7 @@
189
189
 
190
190
  <script>
191
191
 
192
- import throttle from "lodash-es/throttle";
192
+ import throttle from "lodash/throttle";
193
193
 
194
194
  export default{
195
195
 
@@ -180,7 +180,7 @@
180
180
 
181
181
  <script>
182
182
 
183
- import throttle from "lodash-es/throttle";
183
+ import throttle from "lodash/throttle";
184
184
  import { parseBoolean } from "../utils/helpers.mjs";
185
185
 
186
186
  export default{
@@ -21,7 +21,7 @@
21
21
 
22
22
  <script>
23
23
 
24
- import throttle from "lodash-es/throttle";
24
+ import throttle from "lodash/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-es/throttle";
69
+ import throttle from "lodash/throttle";
70
70
  import dayjs from "dayjs";
71
71
 
72
72
  const _DEFAULT_COLUMN_WIDTH = '100px'
package/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {defineAsyncComponent, ref} from "vue"
2
2
  import {observeInit} from './utils/helpers.mjs'
3
- import throttle from "lodash-es/throttle"
3
+ import throttle from "lodash/throttle"
4
4
 
5
5
  const calculateIsMobile = () => {
6
6
  if(typeof window === 'undefined') return false