update: lodash-es -> lodash

This commit is contained in:
yanmao 2021-12-29 02:53:42 +08:00
parent 0542a5343d
commit 1b98363e75
25 changed files with 42 additions and 34 deletions

View File

@ -37,7 +37,7 @@
eventemitter2 "^6.4.4" eventemitter2 "^6.4.4"
filesize "^6.3.0" filesize "^6.3.0"
is-hotkey "^0.2.0" is-hotkey "^0.2.0"
lodash-es "^4.17.21" lodash "^4.17.21"
ot-json0 "^1.1.0" ot-json0 "^1.1.0"
tinycolor2 "^1.4.2" tinycolor2 "^1.4.2"
@ -82,7 +82,7 @@
"@babel/runtime" "^7.13.10" "@babel/runtime" "^7.13.10"
ant-design-vue "^2.2.6" ant-design-vue "^2.2.6"
codemirror "^5.60.0" codemirror "^5.60.0"
lodash-es "^4.17.21" lodash "^4.17.21"
vue "^3.2.9" vue "^3.2.9"
"@aomao/plugin-file@^2.4.19": "@aomao/plugin-file@^2.4.19":
@ -341,7 +341,7 @@
"@babel/runtime" "^7.13.10" "@babel/runtime" "^7.13.10"
ant-design-vue "^2.2.6" ant-design-vue "^2.2.6"
keymaster "^1.6.2" keymaster "^1.6.2"
lodash-es "^4.17.21" lodash "^4.17.21"
tinycolor2 "^1.4.2" tinycolor2 "^1.4.2"
vue "^3.2.9" vue "^3.2.9"
@ -2151,7 +2151,7 @@ ant-design-vue@^2.2.6:
dom-align "^1.12.1" dom-align "^1.12.1"
dom-scroll-into-view "^2.0.0" dom-scroll-into-view "^2.0.0"
lodash "^4.17.21" lodash "^4.17.21"
lodash-es "^4.17.15" lodash "^4.17.15"
moment "^2.27.0" moment "^2.27.0"
omit.js "^2.0.0" omit.js "^2.0.0"
resize-observer-polyfill "^1.5.1" resize-observer-polyfill "^1.5.1"
@ -5691,9 +5691,9 @@ locate-path@^5.0.0:
dependencies: dependencies:
p-locate "^4.1.0" p-locate "^4.1.0"
lodash-es@^4.17.15, lodash-es@^4.17.21: lodash@^4.17.15, lodash@^4.17.21:
version "4.17.21" version "4.17.21"
resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
lodash.camelcase@^4.3.0: lodash.camelcase@^4.3.0:

View File

@ -28,7 +28,7 @@
"eventemitter2": "^6.4.4", "eventemitter2": "^6.4.4",
"filesize": "^6.3.0", "filesize": "^6.3.0",
"is-hotkey": "^0.2.0", "is-hotkey": "^0.2.0",
"lodash-es": "^4.17.21", "lodash": "^4.17.21",
"ot-json0": "^1.1.0", "ot-json0": "^1.1.0",
"tinycolor2": "^1.4.2" "tinycolor2": "^1.4.2"
}, },
@ -36,7 +36,7 @@
"@types/blueimp-md5": "^2.7.0", "@types/blueimp-md5": "^2.7.0",
"@types/diff-match-patch": "^1.0.32", "@types/diff-match-patch": "^1.0.32",
"@types/is-hotkey": "^0.1.2", "@types/is-hotkey": "^0.1.2",
"@types/lodash-es": "^4.17.4", "@types/lodash": "^4.17.4",
"@types/sharedb": "^1.0.14", "@types/sharedb": "^1.0.14",
"@types/tinycolor2": "^1.4.2" "@types/tinycolor2": "^1.4.2"
} }

View File

@ -1,4 +1,4 @@
import { merge } from 'lodash-es'; import { merge } from 'lodash';
import NodeModel, { Event, $ } from '../node'; import NodeModel, { Event, $ } from '../node';
import language from '../locales'; import language from '../locales';
import Change from '../change'; import Change from '../change';

View File

@ -1,4 +1,4 @@
import { cloneDeep, debounce } from 'lodash-es'; import { cloneDeep, debounce } from 'lodash';
import { Op } from 'sharedb'; import { Op } from 'sharedb';
import OTJSON from 'ot-json0'; import OTJSON from 'ot-json0';
import { Operation, TargetOp } from './types/ot'; import { Operation, TargetOp } from './types/ot';

View File

@ -1,4 +1,4 @@
import { merge } from 'lodash-es'; import { merge } from 'lodash';
import { LanguageInterface } from './types/language'; import { LanguageInterface } from './types/language';
/** /**

View File

@ -1,4 +1,4 @@
import { debounce, cloneDeep } from 'lodash-es'; import { debounce, cloneDeep } from 'lodash';
import { EventEmitter2 } from 'eventemitter2'; import { EventEmitter2 } from 'eventemitter2';
import { Doc, Op } from 'sharedb'; import { Doc, Op } from 'sharedb';
import { EngineInterface } from '../types/engine'; import { EngineInterface } from '../types/engine';

View File

@ -1,4 +1,4 @@
import { isEqual } from 'lodash-es'; import { isEqual } from 'lodash';
import { NodeInterface } from '../types/node'; import { NodeInterface } from '../types/node';
import { FOCUS, ANCHOR, CURSOR } from '../constants/selection'; import { FOCUS, ANCHOR, CURSOR } from '../constants/selection';
import { import {

View File

@ -1,4 +1,4 @@
import { cloneDeep } from 'lodash-es'; import { cloneDeep } from 'lodash';
import { getStyleMap } from '../utils'; import { getStyleMap } from '../utils';
import { DATA_ELEMENT } from '../constants'; import { DATA_ELEMENT } from '../constants';
import { import {

View File

@ -1,4 +1,4 @@
import { startsWith } from 'lodash-es'; import { startsWith } from 'lodash';
import { getDocument } from '../../utils'; import { getDocument } from '../../utils';
import { AjaxInterface, AjaxOptions, SetupOptions } from '../../types/request'; import { AjaxInterface, AjaxOptions, SetupOptions } from '../../types/request';
import { isFormData, toQueryString, urlAppend } from './utils'; import { isFormData, toQueryString, urlAppend } from './utils';

View File

@ -1,4 +1,4 @@
import { cloneDeep, isEqual, merge, omit } from 'lodash-es'; import { cloneDeep, isEqual, merge, omit } from 'lodash';
import { import {
NodeInterface, NodeInterface,
SchemaAttributes, SchemaAttributes,

View File

@ -1,5 +1,5 @@
import { EventEmitter2 } from 'eventemitter2'; import { EventEmitter2 } from 'eventemitter2';
import { debounce, throttle } from 'lodash-es'; import { debounce, throttle } from 'lodash';
import { DATA_ELEMENT, UI } from '../constants'; import { DATA_ELEMENT, UI } from '../constants';
import { NodeInterface } from '../types'; import { NodeInterface } from '../types';
import { $ } from '../node'; import { $ } from '../node';

View File

@ -24,7 +24,7 @@
"@babel/runtime": "^7.13.10", "@babel/runtime": "^7.13.10",
"ant-design-vue": "^2.2.6", "ant-design-vue": "^2.2.6",
"keymaster": "^1.6.2", "keymaster": "^1.6.2",
"lodash-es": "^4.17.21", "lodash": "^4.17.21",
"tinycolor2": "^1.4.2", "tinycolor2": "^1.4.2",
"vue": "^3.2.9" "vue": "^3.2.9"
}, },

View File

@ -12,7 +12,7 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { defineComponent } from 'vue' import { defineComponent } from 'vue'
import { omit } from 'lodash-es'; import { omit } from 'lodash';
import { collapseGroupProps } from '../../types' import { collapseGroupProps } from '../../types'
import AmCollapseItem from './item.vue' import AmCollapseItem from './item.vue'

View File

@ -17,7 +17,7 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { defineComponent, onMounted, onUnmounted, ref, reactive } from 'vue' import { defineComponent, onMounted, onUnmounted, ref, reactive } from 'vue'
import { merge, omit } from 'lodash-es'; import { merge, omit } from 'lodash';
import { isMobile } from '@aomao/engine' import { isMobile } from '@aomao/engine'
import { ToolbarButtonProps, CollapseItemProps, ToolbarColorProps, ToolbarDropdownProps, GroupDataProps, ToolbarCollapseGroupProps, toolbarProps } from '../types' import { ToolbarButtonProps, CollapseItemProps, ToolbarColorProps, ToolbarDropdownProps, GroupDataProps, ToolbarCollapseGroupProps, toolbarProps } from '../types'
import AmGroup from './group.vue' import AmGroup from './group.vue'

View File

@ -1,6 +1,6 @@
import { EngineInterface } from '@aomao/engine'; import { EngineInterface } from '@aomao/engine';
import { ExtractPropTypes, PropType, VNode } from 'vue'; import { ExtractPropTypes, PropType, VNode } from 'vue';
import { omit } from 'lodash-es'; import { omit } from 'lodash';
//命令 //命令
export type Command = export type Command =

View File

@ -25,13 +25,13 @@
"antd": "^4.12.3", "antd": "^4.12.3",
"classnames-es-ts": "^2.2.7", "classnames-es-ts": "^2.2.7",
"keymaster": "^1.6.2", "keymaster": "^1.6.2",
"lodash-es": "^4.17.21", "lodash": "^4.17.21",
"react": "^17.0.1", "react": "^17.0.1",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
"tinycolor2": "^1.4.2" "tinycolor2": "^1.4.2"
}, },
"devDependencies": { "devDependencies": {
"@types/keymaster": "^1.6.28", "@types/keymaster": "^1.6.28",
"@types/lodash-es": "^4.17.4" "@types/lodash": "^4.17.4"
} }
} }

View File

@ -1,4 +1,4 @@
import { merge, omit } from 'lodash-es'; import { merge, omit } from 'lodash';
import React, { import React, {
useCallback, useCallback,
useEffect, useEffect,

View File

@ -32,12 +32,12 @@
"@babel/runtime": "^7.13.10", "@babel/runtime": "^7.13.10",
"ant-design-vue": "^2.2.6", "ant-design-vue": "^2.2.6",
"codemirror": "^5.60.0", "codemirror": "^5.60.0",
"lodash-es": "^4.17.21", "lodash": "^4.17.21",
"vue": "^3.2.9" "vue": "^3.2.9"
}, },
"devDependencies": { "devDependencies": {
"@types/codemirror": "^5.60.0", "@types/codemirror": "^5.60.0",
"@types/lodash-es": "^4.17.4", "@types/lodash": "^4.17.4",
"@vue/compiler-sfc": "^3.2.9" "@vue/compiler-sfc": "^3.2.9"
} }
} }

View File

@ -1,5 +1,5 @@
import CodeMirror, { EditorConfiguration, Editor } from 'codemirror'; import CodeMirror, { EditorConfiguration, Editor } from 'codemirror';
import { debounce } from 'lodash-es'; import { debounce } from 'lodash';
import { import {
$, $,
EditorInterface, EditorInterface,

View File

@ -32,12 +32,12 @@
"@babel/runtime": "^7.13.10", "@babel/runtime": "^7.13.10",
"antd": "^4.14.1", "antd": "^4.14.1",
"codemirror": "^5.61.1", "codemirror": "^5.61.1",
"lodash-es": "^4.17.21", "lodash": "^4.17.21",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2" "react-dom": "^17.0.2"
}, },
"devDependencies": { "devDependencies": {
"@types/codemirror": "^5.60.0", "@types/codemirror": "^5.60.0",
"@types/lodash-es": "^4.17.4" "@types/lodash": "^4.17.4"
} }
} }

View File

@ -1,5 +1,5 @@
import CodeMirror, { EditorConfiguration, Editor } from 'codemirror'; import CodeMirror, { EditorConfiguration, Editor } from 'codemirror';
import { debounce } from 'lodash-es'; import { debounce } from 'lodash';
import { import {
$, $,
EditorInterface, EditorInterface,

View File

@ -25,6 +25,10 @@
}, },
"dependencies": { "dependencies": {
"@aomao/engine": "^2.7.3", "@aomao/engine": "^2.7.3",
"@babel/runtime": "^7.13.10" "@babel/runtime": "^7.13.10",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.4"
} }
} }

View File

@ -1,4 +1,4 @@
import debounce from 'lodash-es/debounce'; import debounce from 'lodash/debounce';
import { import {
$, $,
Card, Card,

View File

@ -24,6 +24,10 @@
"@aomao/engine": "^2.7.3", "@aomao/engine": "^2.7.3",
"@babel/runtime": "^7.13.10", "@babel/runtime": "^7.13.10",
"eventemitter2": "^6.4.4", "eventemitter2": "^6.4.4",
"tinycolor2": "^1.4.2" "tinycolor2": "^1.4.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.4"
} }
} }

View File

@ -4,7 +4,7 @@ import {
TableModelCol, TableModelCol,
TableModelEmptyCol, TableModelEmptyCol,
} from '../types'; } from '../types';
import isInteger from 'lodash-es/isInteger'; import isInteger from 'lodash/isInteger';
import { import {
$, $,
EDITABLE_SELECTOR, EDITABLE_SELECTOR,