@teamix/pro 1.5.11-beta.2 → 1.5.11
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/dist/pro.css +1 -1
- package/dist/pro.js +53 -38
- package/dist/pro.min.css +1 -1
- package/dist/pro.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/table/components/ToolBar/FilterColumnIcon.js +28 -23
- package/es/table/components/ToolBar/RefreshIcon.js +3 -3
- package/es/table/index.js +19 -8
- package/es/table/typing.d.ts +2 -2
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/table/components/ToolBar/FilterColumnIcon.js +27 -22
- package/lib/table/components/ToolBar/RefreshIcon.js +3 -3
- package/lib/table/index.js +18 -7
- package/lib/table/typing.d.ts +2 -2
- package/package.json +1 -1
- package/es/table/utils/cloneDeep.d.ts +0 -28
- package/es/table/utils/cloneDeep.js +0 -1578
- package/lib/table/utils/cloneDeep.d.ts +0 -28
- package/lib/table/utils/cloneDeep.js +0 -1585
@@ -1,28 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* lodash (Custom Build) <https://lodash.com/>
|
3
|
-
* Build: `lodash modularize exports="npm" -o ./`
|
4
|
-
* Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
5
|
-
* Released under MIT license <https://lodash.com/license>
|
6
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
7
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
8
|
-
*/
|
9
|
-
/**
|
10
|
-
* This method is like `_.clone` except that it recursively clones `value`.
|
11
|
-
*
|
12
|
-
* @static
|
13
|
-
* @memberOf _
|
14
|
-
* @since 1.0.0
|
15
|
-
* @category Lang
|
16
|
-
* @param {*} value The value to recursively clone.
|
17
|
-
* @returns {*} Returns the deep cloned value.
|
18
|
-
* @see _.clone
|
19
|
-
* @example
|
20
|
-
*
|
21
|
-
* var objects = [{ 'a': 1 }, { 'b': 2 }];
|
22
|
-
*
|
23
|
-
* var deep = _.cloneDeep(objects);
|
24
|
-
* console.log(deep[0] === objects[0]);
|
25
|
-
* // => false
|
26
|
-
*/
|
27
|
-
declare function cloneDeep(value: any): any;
|
28
|
-
export default cloneDeep;
|