@mui/x-data-grid 5.6.1 → 5.7.0
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/CHANGELOG.md +71 -1
- package/DataGrid/DataGrid.js +10 -0
- package/DataGrid/useDataGridComponent.js +8 -2
- package/components/ErrorOverlay.js +8 -1
- package/components/GridLoadingOverlay.d.ts +4 -2
- package/components/GridLoadingOverlay.js +11 -2
- package/components/GridNoResultsOverlay.d.ts +3 -2
- package/components/GridNoRowsOverlay.d.ts +4 -2
- package/components/GridNoRowsOverlay.js +11 -2
- package/components/base/GridErrorHandler.js +6 -25
- package/components/cell/GridEditBooleanCell.js +1 -1
- package/components/cell/GridEditDateCell.js +1 -1
- package/components/cell/GridEditInputCell.js +66 -5
- package/components/cell/GridEditSingleSelectCell.js +76 -4
- package/components/columnHeaders/GridColumnHeaderTitle.d.ts +2 -2
- package/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
- package/components/columnHeaders/GridColumnHeaders.js +3 -1
- package/components/containers/GridOverlay.d.ts +9 -2
- package/components/containers/GridOverlay.js +11 -2
- package/components/containers/GridRootStyles.js +2 -2
- package/components/panel/GridColumnsPanel.d.ts +4 -1
- package/components/panel/GridColumnsPanel.js +3 -3
- package/components/panel/GridPanelWrapper.d.ts +1 -1
- package/components/panel/GridPreferencesPanel.js +4 -6
- package/hooks/core/preProcessing/gridPreProcessingApi.d.ts +11 -15
- package/hooks/core/preProcessing/useGridPreProcessing.d.ts +3 -0
- package/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
- package/hooks/core/preProcessing/useGridRegisterPreProcessor.d.ts +5 -2
- package/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +58 -0
- package/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
- package/hooks/core/strategyProcessing/index.d.ts +3 -0
- package/hooks/core/strategyProcessing/index.js +3 -0
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +4 -0
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +37 -0
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +114 -0
- package/hooks/core/useGridInitialization.js +2 -2
- package/hooks/features/columns/gridColumnsInterfaces.d.ts +6 -1
- package/hooks/features/columns/gridColumnsUtils.d.ts +12 -4
- package/hooks/features/columns/gridColumnsUtils.js +113 -29
- package/hooks/features/columns/useGridColumns.d.ts +1 -1
- package/hooks/features/columns/useGridColumns.js +79 -42
- package/hooks/features/editRows/useGridCellEditing.new.d.ts +4 -0
- package/hooks/features/editRows/useGridCellEditing.new.js +315 -0
- package/hooks/features/editRows/{useGridCellEditing.d.ts → useGridCellEditing.old.d.ts} +0 -0
- package/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
- package/hooks/features/editRows/useGridEditing.new.d.ts +6 -0
- package/hooks/features/editRows/useGridEditing.new.js +118 -0
- package/hooks/features/editRows/{useGridEditing.d.ts → useGridEditing.old.d.ts} +0 -0
- package/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
- package/hooks/features/editRows/useGridRowEditing.new.d.ts +4 -0
- package/hooks/features/editRows/useGridRowEditing.new.js +486 -0
- package/hooks/features/editRows/{useGridRowEditing.d.ts → useGridRowEditing.old.d.ts} +0 -0
- package/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
- package/hooks/features/filter/gridFilterState.d.ts +2 -5
- package/hooks/features/filter/useGridFilter.d.ts +1 -1
- package/hooks/features/filter/useGridFilter.js +21 -27
- package/hooks/features/focus/useGridFocus.d.ts +1 -1
- package/hooks/features/focus/useGridFocus.js +37 -1
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +5 -0
- package/hooks/features/rows/gridRowsState.d.ts +20 -5
- package/hooks/features/rows/useGridRows.d.ts +0 -3
- package/hooks/features/rows/useGridRows.js +63 -42
- package/hooks/features/rows/useGridRowsPreProcessors.d.ts +3 -0
- package/hooks/features/rows/useGridRowsPreProcessors.js +37 -0
- package/hooks/features/selection/useGridSelection.js +4 -0
- package/hooks/features/sorting/gridSortingState.d.ts +2 -5
- package/hooks/features/sorting/useGridSorting.js +7 -26
- package/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
- package/index.js +1 -1
- package/internals/index.d.ts +10 -7
- package/internals/index.js +4 -3
- package/legacy/DataGrid/DataGrid.js +10 -0
- package/legacy/DataGrid/useDataGridComponent.js +8 -2
- package/legacy/components/ErrorOverlay.js +8 -1
- package/legacy/components/GridLoadingOverlay.js +11 -2
- package/legacy/components/GridNoRowsOverlay.js +11 -2
- package/legacy/components/base/GridErrorHandler.js +3 -24
- package/legacy/components/cell/GridEditBooleanCell.js +2 -1
- package/legacy/components/cell/GridEditDateCell.js +2 -1
- package/legacy/components/cell/GridEditInputCell.js +66 -5
- package/legacy/components/cell/GridEditSingleSelectCell.js +83 -7
- package/legacy/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
- package/legacy/components/columnHeaders/GridColumnHeaders.js +3 -1
- package/legacy/components/containers/GridOverlay.js +11 -2
- package/legacy/components/containers/GridRootStyles.js +2 -2
- package/legacy/components/panel/GridColumnsPanel.js +3 -3
- package/legacy/components/panel/GridPreferencesPanel.js +4 -6
- package/legacy/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
- package/legacy/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
- package/legacy/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
- package/legacy/hooks/core/strategyProcessing/index.js +3 -0
- package/legacy/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
- package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +119 -0
- package/legacy/hooks/core/useGridInitialization.js +2 -2
- package/legacy/hooks/features/columns/gridColumnsUtils.js +117 -27
- package/legacy/hooks/features/columns/useGridColumns.js +80 -43
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +329 -0
- package/legacy/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
- package/legacy/hooks/features/editRows/useGridEditing.new.js +152 -0
- package/legacy/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +493 -0
- package/legacy/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
- package/legacy/hooks/features/filter/useGridFilter.js +21 -27
- package/legacy/hooks/features/focus/useGridFocus.js +37 -1
- package/legacy/hooks/features/rows/useGridRows.js +65 -44
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +36 -0
- package/legacy/hooks/features/selection/useGridSelection.js +4 -0
- package/legacy/hooks/features/sorting/useGridSorting.js +7 -26
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +4 -3
- package/legacy/locales/arSD.js +62 -58
- package/legacy/locales/faIR.js +26 -22
- package/legacy/locales/koKR.js +1 -1
- package/legacy/locales/plPL.js +30 -26
- package/legacy/models/events/gridEvents.js +2 -1
- package/legacy/models/gridEditRowModel.js +1 -0
- package/legacy/models/params/gridEditCellParams.js +34 -1
- package/legacy/models/params/gridRowParams.js +39 -1
- package/legacy/utils/cleanupTracking/TimerBasedCleanupTracking.js +5 -1
- package/legacy/utils/utils.js +150 -3
- package/locales/arSD.js +58 -58
- package/locales/faIR.js +22 -22
- package/locales/koKR.js +1 -1
- package/locales/plPL.js +26 -26
- package/models/api/gridApiCommon.d.ts +2 -2
- package/models/api/gridEditingApi.d.ts +125 -4
- package/models/api/gridFocusApi.d.ts +9 -0
- package/models/api/index.d.ts +1 -1
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/events/gridEventLookup.d.ts +11 -5
- package/models/events/gridEvents.d.ts +9 -2
- package/models/events/gridEvents.js +2 -1
- package/models/gridEditRowModel.d.ts +4 -3
- package/models/gridEditRowModel.js +1 -0
- package/models/params/gridCellParams.d.ts +10 -1
- package/models/params/gridEditCellParams.d.ts +50 -0
- package/models/params/gridEditCellParams.js +34 -1
- package/models/params/gridRowParams.d.ts +41 -1
- package/models/params/gridRowParams.js +39 -1
- package/models/props/DataGridProps.d.ts +13 -1
- package/modern/DataGrid/DataGrid.js +10 -0
- package/modern/DataGrid/useDataGridComponent.js +6 -2
- package/modern/components/ErrorOverlay.js +8 -1
- package/modern/components/GridLoadingOverlay.js +11 -2
- package/modern/components/GridNoRowsOverlay.js +11 -2
- package/modern/components/base/GridErrorHandler.js +1 -20
- package/modern/components/cell/GridEditBooleanCell.js +1 -1
- package/modern/components/cell/GridEditDateCell.js +1 -1
- package/modern/components/cell/GridEditInputCell.js +64 -5
- package/modern/components/cell/GridEditSingleSelectCell.js +72 -4
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
- package/modern/components/columnHeaders/GridColumnHeaders.js +3 -1
- package/modern/components/containers/GridOverlay.js +11 -2
- package/modern/components/containers/GridRootStyles.js +2 -2
- package/modern/components/panel/GridColumnsPanel.js +3 -3
- package/modern/components/panel/GridPreferencesPanel.js +3 -5
- package/modern/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
- package/modern/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
- package/modern/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
- package/modern/hooks/core/strategyProcessing/index.js +3 -0
- package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +112 -0
- package/modern/hooks/core/useGridInitialization.js +2 -2
- package/modern/hooks/features/columns/gridColumnsUtils.js +113 -27
- package/modern/hooks/features/columns/useGridColumns.js +74 -39
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +315 -0
- package/modern/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
- package/modern/hooks/features/editRows/useGridEditing.new.js +118 -0
- package/modern/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +484 -0
- package/modern/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
- package/modern/hooks/features/filter/useGridFilter.js +17 -27
- package/modern/hooks/features/focus/useGridFocus.js +37 -1
- package/modern/hooks/features/rows/useGridRows.js +63 -42
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +37 -0
- package/modern/hooks/features/selection/useGridSelection.js +4 -0
- package/modern/hooks/features/sorting/useGridSorting.js +7 -26
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
- package/modern/index.js +1 -1
- package/modern/internals/index.js +4 -3
- package/modern/locales/arSD.js +58 -58
- package/modern/locales/faIR.js +22 -22
- package/modern/locales/koKR.js +1 -1
- package/modern/locales/plPL.js +26 -26
- package/modern/models/events/gridEvents.js +2 -1
- package/modern/models/gridEditRowModel.js +1 -0
- package/modern/models/params/gridEditCellParams.js +34 -1
- package/modern/models/params/gridRowParams.js +39 -1
- package/modern/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
- package/modern/utils/utils.js +150 -3
- package/node/DataGrid/DataGrid.js +10 -0
- package/node/DataGrid/useDataGridComponent.js +11 -3
- package/node/components/ErrorOverlay.js +10 -1
- package/node/components/GridLoadingOverlay.js +10 -1
- package/node/components/GridNoRowsOverlay.js +10 -1
- package/node/components/base/GridErrorHandler.js +7 -30
- package/node/components/cell/GridEditBooleanCell.js +1 -1
- package/node/components/cell/GridEditDateCell.js +1 -1
- package/node/components/cell/GridEditInputCell.js +66 -5
- package/node/components/cell/GridEditSingleSelectCell.js +76 -4
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
- package/node/components/columnHeaders/GridColumnHeaders.js +3 -1
- package/node/components/containers/GridOverlay.js +10 -1
- package/node/components/containers/GridRootStyles.js +2 -2
- package/node/components/panel/GridColumnsPanel.js +3 -3
- package/node/components/panel/GridPreferencesPanel.js +4 -5
- package/node/hooks/core/preProcessing/useGridPreProcessing.js +4 -1
- package/node/hooks/core/preProcessing/useGridRegisterPreProcessor.js +3 -0
- package/node/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
- package/node/hooks/core/strategyProcessing/index.js +44 -0
- package/node/hooks/{features/sorting/useGridRegisterSortingMethod.js → core/strategyProcessing/useGridRegisterStrategyProcessor.js} +18 -9
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +135 -0
- package/node/hooks/core/useGridInitialization.js +2 -2
- package/node/hooks/features/columns/gridColumnsUtils.js +118 -31
- package/node/hooks/features/columns/useGridColumns.js +82 -41
- package/node/hooks/features/editRows/useGridCellEditing.new.js +334 -0
- package/node/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
- package/node/hooks/features/editRows/useGridEditing.new.js +142 -0
- package/node/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
- package/node/hooks/features/editRows/useGridRowEditing.new.js +499 -0
- package/node/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +6 -6
- package/node/hooks/features/filter/useGridFilter.js +21 -26
- package/node/hooks/features/focus/useGridFocus.js +40 -1
- package/node/hooks/features/rows/useGridRows.js +62 -41
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +46 -0
- package/node/hooks/features/selection/useGridSelection.js +4 -0
- package/node/hooks/features/sorting/useGridSorting.js +7 -26
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
- package/node/index.js +1 -1
- package/node/internals/index.js +29 -15
- package/node/locales/arSD.js +58 -58
- package/node/locales/faIR.js +22 -22
- package/node/locales/koKR.js +1 -1
- package/node/locales/plPL.js +26 -26
- package/node/models/events/gridEvents.js +2 -1
- package/node/models/gridEditRowModel.js +1 -0
- package/node/models/params/gridEditCellParams.js +37 -1
- package/node/models/params/gridRowParams.js +42 -1
- package/node/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
- package/node/utils/utils.js +152 -11
- package/package.json +1 -1
- package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +2 -0
- package/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
- package/utils/utils.d.ts +27 -2
- package/utils/utils.js +150 -3
- package/hooks/core/rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.d.ts +0 -35
- package/hooks/core/rowGroupsPreProcessing/index.d.ts +0 -2
- package/hooks/core/rowGroupsPreProcessing/index.js +0 -2
- package/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.d.ts +0 -3
- package/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -72
- package/hooks/features/filter/useGridRegisterFilteringMethod.d.ts +0 -4
- package/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
- package/hooks/features/sorting/useGridRegisterSortingMethod.d.ts +0 -4
- package/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
- package/legacy/hooks/core/rowGroupsPreProcessing/index.js +0 -2
- package/legacy/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -71
- package/legacy/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
- package/legacy/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
- package/legacy/lib/lodash/_DataView.js +0 -8
- package/legacy/lib/lodash/_Hash.js +0 -33
- package/legacy/lib/lodash/_ListCache.js +0 -33
- package/legacy/lib/lodash/_Map.js +0 -8
- package/legacy/lib/lodash/_MapCache.js +0 -33
- package/legacy/lib/lodash/_Promise.js +0 -8
- package/legacy/lib/lodash/_Set.js +0 -8
- package/legacy/lib/lodash/_SetCache.js +0 -28
- package/legacy/lib/lodash/_Stack.js +0 -28
- package/legacy/lib/lodash/_Symbol.js +0 -7
- package/legacy/lib/lodash/_Uint8Array.js +0 -7
- package/legacy/lib/lodash/_WeakMap.js +0 -8
- package/legacy/lib/lodash/_arrayFilter.js +0 -29
- package/legacy/lib/lodash/_arrayLikeKeys.js +0 -46
- package/legacy/lib/lodash/_arrayPush.js +0 -23
- package/legacy/lib/lodash/_arraySome.js +0 -26
- package/legacy/lib/lodash/_assocIndexOf.js +0 -25
- package/legacy/lib/lodash/_baseGetAllKeys.js +0 -22
- package/legacy/lib/lodash/_baseGetTag.js +0 -29
- package/legacy/lib/lodash/_baseIsArguments.js +0 -20
- package/legacy/lib/lodash/_baseIsEqual.js +0 -32
- package/legacy/lib/lodash/_baseIsEqualDeep.js +0 -85
- package/legacy/lib/lodash/_baseIsNative.js +0 -47
- package/legacy/lib/lodash/_baseIsTypedArray.js +0 -49
- package/legacy/lib/lodash/_baseKeys.js +0 -35
- package/legacy/lib/lodash/_baseTimes.js +0 -23
- package/legacy/lib/lodash/_baseUnary.js +0 -16
- package/legacy/lib/lodash/_cacheHas.js +0 -15
- package/legacy/lib/lodash/_coreJsData.js +0 -7
- package/legacy/lib/lodash/_equalArrays.js +0 -84
- package/legacy/lib/lodash/_equalByTag.js +0 -117
- package/legacy/lib/lodash/_equalObjects.js +0 -92
- package/legacy/lib/lodash/_freeGlobal.js +0 -6
- package/legacy/lib/lodash/_getAllKeys.js +0 -18
- package/legacy/lib/lodash/_getMapData.js +0 -18
- package/legacy/lib/lodash/_getNative.js +0 -19
- package/legacy/lib/lodash/_getRawTag.js +0 -50
- package/legacy/lib/lodash/_getSymbols.js +0 -32
- package/legacy/lib/lodash/_getTag.js +0 -64
- package/legacy/lib/lodash/_getValue.js +0 -15
- package/legacy/lib/lodash/_hashClear.js +0 -17
- package/legacy/lib/lodash/_hashDelete.js +0 -19
- package/legacy/lib/lodash/_hashGet.js +0 -34
- package/legacy/lib/lodash/_hashHas.js +0 -25
- package/legacy/lib/lodash/_hashSet.js +0 -25
- package/legacy/lib/lodash/_isIndex.js +0 -25
- package/legacy/lib/lodash/_isKeyable.js +0 -18
- package/legacy/lib/lodash/_isMasked.js +0 -23
- package/legacy/lib/lodash/_isPrototype.js +0 -19
- package/legacy/lib/lodash/_listCacheClear.js +0 -15
- package/legacy/lib/lodash/_listCacheDelete.js +0 -40
- package/legacy/lib/lodash/_listCacheGet.js +0 -20
- package/legacy/lib/lodash/_listCacheHas.js +0 -18
- package/legacy/lib/lodash/_listCacheSet.js +0 -29
- package/legacy/lib/lodash/_mapCacheClear.js +0 -23
- package/legacy/lib/lodash/_mapCacheDelete.js +0 -20
- package/legacy/lib/lodash/_mapCacheGet.js +0 -18
- package/legacy/lib/lodash/_mapCacheHas.js +0 -18
- package/legacy/lib/lodash/_mapCacheSet.js +0 -23
- package/legacy/lib/lodash/_mapToArray.js +0 -19
- package/legacy/lib/lodash/_nativeCreate.js +0 -7
- package/legacy/lib/lodash/_nativeKeys.js +0 -7
- package/legacy/lib/lodash/_nodeUtil.js +0 -25
- package/legacy/lib/lodash/_objectToString.js +0 -24
- package/legacy/lib/lodash/_overArg.js +0 -17
- package/legacy/lib/lodash/_root.js +0 -11
- package/legacy/lib/lodash/_setCacheAdd.js +0 -22
- package/legacy/lib/lodash/_setCacheHas.js +0 -16
- package/legacy/lib/lodash/_setToArray.js +0 -19
- package/legacy/lib/lodash/_stackClear.js +0 -17
- package/legacy/lib/lodash/_stackDelete.js +0 -19
- package/legacy/lib/lodash/_stackGet.js +0 -16
- package/legacy/lib/lodash/_stackHas.js +0 -16
- package/legacy/lib/lodash/_stackSet.js +0 -40
- package/legacy/lib/lodash/_toSource.js +0 -30
- package/legacy/lib/lodash/date.default.js +0 -4
- package/legacy/lib/lodash/date.js +0 -2
- package/legacy/lib/lodash/eq.js +0 -39
- package/legacy/lib/lodash/function.default.js +0 -4
- package/legacy/lib/lodash/function.js +0 -2
- package/legacy/lib/lodash/isArguments.js +0 -38
- package/legacy/lib/lodash/isArray.js +0 -27
- package/legacy/lib/lodash/isArrayLike.js +0 -35
- package/legacy/lib/lodash/isBuffer.js +0 -40
- package/legacy/lib/lodash/isDeepEqual.js +0 -45
- package/legacy/lib/lodash/isFunction.js +0 -40
- package/legacy/lib/lodash/isLength.js +0 -36
- package/legacy/lib/lodash/isObject.js +0 -36
- package/legacy/lib/lodash/isObjectLike.js +0 -33
- package/legacy/lib/lodash/isSymbol.js +0 -31
- package/legacy/lib/lodash/isTypedArray.js +0 -28
- package/legacy/lib/lodash/keys.js +0 -39
- package/legacy/lib/lodash/lang.default.js +0 -28
- package/legacy/lib/lodash/lang.js +0 -14
- package/legacy/lib/lodash/now.js +0 -25
- package/legacy/lib/lodash/object.default.js +0 -4
- package/legacy/lib/lodash/object.js +0 -2
- package/legacy/lib/lodash/stubArray.js +0 -25
- package/legacy/lib/lodash/stubFalse.js +0 -20
- package/legacy/lib/lodash/toNumber.js +0 -70
- package/legacy/lib/lodash/util.default.js +0 -6
- package/legacy/lib/lodash/util.js +0 -3
- package/lib/lodash/_DataView.d.ts +0 -2
- package/lib/lodash/_DataView.js +0 -8
- package/lib/lodash/_Hash.d.ts +0 -29
- package/lib/lodash/_Hash.js +0 -33
- package/lib/lodash/_ListCache.d.ts +0 -29
- package/lib/lodash/_ListCache.js +0 -33
- package/lib/lodash/_Map.d.ts +0 -2
- package/lib/lodash/_Map.js +0 -8
- package/lib/lodash/_MapCache.d.ts +0 -29
- package/lib/lodash/_MapCache.js +0 -33
- package/lib/lodash/_Promise.d.ts +0 -2
- package/lib/lodash/_Promise.js +0 -8
- package/lib/lodash/_Set.d.ts +0 -2
- package/lib/lodash/_Set.js +0 -8
- package/lib/lodash/_SetCache.d.ts +0 -28
- package/lib/lodash/_SetCache.js +0 -28
- package/lib/lodash/_Stack.d.ts +0 -32
- package/lib/lodash/_Stack.js +0 -28
- package/lib/lodash/_Symbol.d.ts +0 -3
- package/lib/lodash/_Symbol.js +0 -7
- package/lib/lodash/_Uint8Array.d.ts +0 -3
- package/lib/lodash/_Uint8Array.js +0 -7
- package/lib/lodash/_WeakMap.d.ts +0 -2
- package/lib/lodash/_WeakMap.js +0 -8
- package/lib/lodash/_arrayFilter.d.ts +0 -11
- package/lib/lodash/_arrayFilter.js +0 -29
- package/lib/lodash/_arrayLikeKeys.d.ts +0 -10
- package/lib/lodash/_arrayLikeKeys.js +0 -46
- package/lib/lodash/_arrayPush.d.ts +0 -10
- package/lib/lodash/_arrayPush.js +0 -23
- package/lib/lodash/_arraySome.d.ts +0 -12
- package/lib/lodash/_arraySome.js +0 -26
- package/lib/lodash/_assocIndexOf.d.ts +0 -10
- package/lib/lodash/_assocIndexOf.js +0 -25
- package/lib/lodash/_baseGetAllKeys.d.ts +0 -13
- package/lib/lodash/_baseGetAllKeys.js +0 -22
- package/lib/lodash/_baseGetTag.d.ts +0 -9
- package/lib/lodash/_baseGetTag.js +0 -29
- package/lib/lodash/_baseIsArguments.d.ts +0 -9
- package/lib/lodash/_baseIsArguments.js +0 -20
- package/lib/lodash/_baseIsEqual.d.ts +0 -16
- package/lib/lodash/_baseIsEqual.js +0 -32
- package/lib/lodash/_baseIsEqualDeep.d.ts +0 -16
- package/lib/lodash/_baseIsEqualDeep.js +0 -85
- package/lib/lodash/_baseIsNative.d.ts +0 -10
- package/lib/lodash/_baseIsNative.js +0 -47
- package/lib/lodash/_baseIsTypedArray.d.ts +0 -9
- package/lib/lodash/_baseIsTypedArray.js +0 -49
- package/lib/lodash/_baseKeys.d.ts +0 -9
- package/lib/lodash/_baseKeys.js +0 -35
- package/lib/lodash/_baseTimes.d.ts +0 -11
- package/lib/lodash/_baseTimes.js +0 -23
- package/lib/lodash/_baseUnary.d.ts +0 -9
- package/lib/lodash/_baseUnary.js +0 -16
- package/lib/lodash/_cacheHas.d.ts +0 -10
- package/lib/lodash/_cacheHas.js +0 -15
- package/lib/lodash/_coreJsData.d.ts +0 -3
- package/lib/lodash/_coreJsData.js +0 -7
- package/lib/lodash/_equalArrays.d.ts +0 -15
- package/lib/lodash/_equalArrays.js +0 -84
- package/lib/lodash/_equalByTag.d.ts +0 -19
- package/lib/lodash/_equalByTag.js +0 -117
- package/lib/lodash/_equalObjects.d.ts +0 -15
- package/lib/lodash/_equalObjects.js +0 -92
- package/lib/lodash/_freeGlobal.d.ts +0 -3
- package/lib/lodash/_freeGlobal.js +0 -5
- package/lib/lodash/_getAllKeys.d.ts +0 -9
- package/lib/lodash/_getAllKeys.js +0 -18
- package/lib/lodash/_getMapData.d.ts +0 -10
- package/lib/lodash/_getMapData.js +0 -18
- package/lib/lodash/_getNative.d.ts +0 -10
- package/lib/lodash/_getNative.js +0 -19
- package/lib/lodash/_getRawTag.d.ts +0 -9
- package/lib/lodash/_getRawTag.js +0 -50
- package/lib/lodash/_getSymbols.d.ts +0 -2
- package/lib/lodash/_getSymbols.js +0 -32
- package/lib/lodash/_getTag.d.ts +0 -10
- package/lib/lodash/_getTag.js +0 -64
- package/lib/lodash/_getValue.d.ts +0 -10
- package/lib/lodash/_getValue.js +0 -15
- package/lib/lodash/_hashClear.d.ts +0 -13
- package/lib/lodash/_hashClear.js +0 -17
- package/lib/lodash/_hashDelete.d.ts +0 -12
- package/lib/lodash/_hashDelete.js +0 -19
- package/lib/lodash/_hashGet.d.ts +0 -11
- package/lib/lodash/_hashGet.js +0 -34
- package/lib/lodash/_hashHas.d.ts +0 -11
- package/lib/lodash/_hashHas.js +0 -25
- package/lib/lodash/_hashSet.d.ts +0 -12
- package/lib/lodash/_hashSet.js +0 -25
- package/lib/lodash/_isIndex.d.ts +0 -10
- package/lib/lodash/_isIndex.js +0 -23
- package/lib/lodash/_isKeyable.d.ts +0 -9
- package/lib/lodash/_isKeyable.js +0 -15
- package/lib/lodash/_isMasked.d.ts +0 -9
- package/lib/lodash/_isMasked.js +0 -23
- package/lib/lodash/_isPrototype.d.ts +0 -9
- package/lib/lodash/_isPrototype.js +0 -19
- package/lib/lodash/_listCacheClear.d.ts +0 -13
- package/lib/lodash/_listCacheClear.js +0 -15
- package/lib/lodash/_listCacheDelete.d.ts +0 -11
- package/lib/lodash/_listCacheDelete.js +0 -40
- package/lib/lodash/_listCacheGet.d.ts +0 -11
- package/lib/lodash/_listCacheGet.js +0 -20
- package/lib/lodash/_listCacheHas.d.ts +0 -11
- package/lib/lodash/_listCacheHas.js +0 -18
- package/lib/lodash/_listCacheSet.d.ts +0 -12
- package/lib/lodash/_listCacheSet.js +0 -29
- package/lib/lodash/_mapCacheClear.d.ts +0 -18
- package/lib/lodash/_mapCacheClear.js +0 -23
- package/lib/lodash/_mapCacheDelete.d.ts +0 -11
- package/lib/lodash/_mapCacheDelete.js +0 -20
- package/lib/lodash/_mapCacheGet.d.ts +0 -11
- package/lib/lodash/_mapCacheGet.js +0 -18
- package/lib/lodash/_mapCacheHas.d.ts +0 -11
- package/lib/lodash/_mapCacheHas.js +0 -18
- package/lib/lodash/_mapCacheSet.d.ts +0 -12
- package/lib/lodash/_mapCacheSet.js +0 -23
- package/lib/lodash/_mapToArray.d.ts +0 -9
- package/lib/lodash/_mapToArray.js +0 -19
- package/lib/lodash/_nativeCreate.d.ts +0 -2
- package/lib/lodash/_nativeCreate.js +0 -7
- package/lib/lodash/_nativeKeys.d.ts +0 -2
- package/lib/lodash/_nativeKeys.js +0 -7
- package/lib/lodash/_nodeUtil.d.ts +0 -3
- package/lib/lodash/_nodeUtil.js +0 -24
- package/lib/lodash/_objectToString.d.ts +0 -9
- package/lib/lodash/_objectToString.js +0 -24
- package/lib/lodash/_overArg.d.ts +0 -10
- package/lib/lodash/_overArg.js +0 -17
- package/lib/lodash/_root.d.ts +0 -3
- package/lib/lodash/_root.js +0 -10
- package/lib/lodash/_setCacheAdd.d.ts +0 -12
- package/lib/lodash/_setCacheAdd.js +0 -22
- package/lib/lodash/_setCacheHas.d.ts +0 -11
- package/lib/lodash/_setCacheHas.js +0 -16
- package/lib/lodash/_setToArray.d.ts +0 -9
- package/lib/lodash/_setToArray.js +0 -19
- package/lib/lodash/_stackClear.d.ts +0 -14
- package/lib/lodash/_stackClear.js +0 -17
- package/lib/lodash/_stackDelete.d.ts +0 -24
- package/lib/lodash/_stackDelete.js +0 -19
- package/lib/lodash/_stackGet.d.ts +0 -11
- package/lib/lodash/_stackGet.js +0 -16
- package/lib/lodash/_stackHas.d.ts +0 -11
- package/lib/lodash/_stackHas.js +0 -16
- package/lib/lodash/_stackSet.d.ts +0 -28
- package/lib/lodash/_stackSet.js +0 -40
- package/lib/lodash/_toSource.d.ts +0 -9
- package/lib/lodash/_toSource.js +0 -30
- package/lib/lodash/date.d.ts +0 -2
- package/lib/lodash/date.default.d.ts +0 -5
- package/lib/lodash/date.default.js +0 -4
- package/lib/lodash/date.js +0 -2
- package/lib/lodash/eq.d.ts +0 -34
- package/lib/lodash/eq.js +0 -39
- package/lib/lodash/function.d.ts +0 -1
- package/lib/lodash/function.default.d.ts +0 -4
- package/lib/lodash/function.default.js +0 -4
- package/lib/lodash/function.js +0 -2
- package/lib/lodash/isArguments.d.ts +0 -2
- package/lib/lodash/isArguments.js +0 -38
- package/lib/lodash/isArray.d.ts +0 -25
- package/lib/lodash/isArray.js +0 -27
- package/lib/lodash/isArrayLike.d.ts +0 -27
- package/lib/lodash/isArrayLike.js +0 -35
- package/lib/lodash/isBuffer.d.ts +0 -19
- package/lib/lodash/isBuffer.js +0 -39
- package/lib/lodash/isDeepEqual.d.ts +0 -30
- package/lib/lodash/isDeepEqual.js +0 -45
- package/lib/lodash/isFunction.d.ts +0 -19
- package/lib/lodash/isFunction.js +0 -40
- package/lib/lodash/isLength.d.ts +0 -28
- package/lib/lodash/isLength.js +0 -36
- package/lib/lodash/isObject.d.ts +0 -27
- package/lib/lodash/isObject.js +0 -33
- package/lib/lodash/isObjectLike.d.ts +0 -26
- package/lib/lodash/isObjectLike.js +0 -31
- package/lib/lodash/isSymbol.d.ts +0 -19
- package/lib/lodash/isSymbol.js +0 -30
- package/lib/lodash/isTypedArray.d.ts +0 -19
- package/lib/lodash/isTypedArray.js +0 -28
- package/lib/lodash/keys.d.ts +0 -30
- package/lib/lodash/keys.js +0 -39
- package/lib/lodash/lang.d.ts +0 -14
- package/lib/lodash/lang.default.d.ts +0 -29
- package/lib/lodash/lang.default.js +0 -28
- package/lib/lodash/lang.js +0 -14
- package/lib/lodash/now.d.ts +0 -18
- package/lib/lodash/now.js +0 -25
- package/lib/lodash/object.d.ts +0 -2
- package/lib/lodash/object.default.d.ts +0 -5
- package/lib/lodash/object.default.js +0 -4
- package/lib/lodash/object.js +0 -2
- package/lib/lodash/stubArray.d.ts +0 -20
- package/lib/lodash/stubArray.js +0 -25
- package/lib/lodash/stubFalse.d.ts +0 -15
- package/lib/lodash/stubFalse.js +0 -20
- package/lib/lodash/toNumber.d.ts +0 -25
- package/lib/lodash/toNumber.js +0 -70
- package/lib/lodash/util.d.ts +0 -3
- package/lib/lodash/util.default.d.ts +0 -7
- package/lib/lodash/util.default.js +0 -6
- package/lib/lodash/util.js +0 -3
- package/modern/hooks/core/rowGroupsPreProcessing/index.js +0 -2
- package/modern/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -70
- package/modern/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
- package/modern/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
- package/modern/lib/lodash/_DataView.js +0 -8
- package/modern/lib/lodash/_Hash.js +0 -33
- package/modern/lib/lodash/_ListCache.js +0 -33
- package/modern/lib/lodash/_Map.js +0 -8
- package/modern/lib/lodash/_MapCache.js +0 -33
- package/modern/lib/lodash/_Promise.js +0 -8
- package/modern/lib/lodash/_Set.js +0 -8
- package/modern/lib/lodash/_SetCache.js +0 -28
- package/modern/lib/lodash/_Stack.js +0 -28
- package/modern/lib/lodash/_Symbol.js +0 -7
- package/modern/lib/lodash/_Uint8Array.js +0 -7
- package/modern/lib/lodash/_WeakMap.js +0 -8
- package/modern/lib/lodash/_arrayFilter.js +0 -29
- package/modern/lib/lodash/_arrayLikeKeys.js +0 -46
- package/modern/lib/lodash/_arrayPush.js +0 -23
- package/modern/lib/lodash/_arraySome.js +0 -26
- package/modern/lib/lodash/_assocIndexOf.js +0 -25
- package/modern/lib/lodash/_baseGetAllKeys.js +0 -22
- package/modern/lib/lodash/_baseGetTag.js +0 -29
- package/modern/lib/lodash/_baseIsArguments.js +0 -20
- package/modern/lib/lodash/_baseIsEqual.js +0 -32
- package/modern/lib/lodash/_baseIsEqualDeep.js +0 -85
- package/modern/lib/lodash/_baseIsNative.js +0 -47
- package/modern/lib/lodash/_baseIsTypedArray.js +0 -49
- package/modern/lib/lodash/_baseKeys.js +0 -35
- package/modern/lib/lodash/_baseTimes.js +0 -23
- package/modern/lib/lodash/_baseUnary.js +0 -16
- package/modern/lib/lodash/_cacheHas.js +0 -15
- package/modern/lib/lodash/_coreJsData.js +0 -7
- package/modern/lib/lodash/_equalArrays.js +0 -84
- package/modern/lib/lodash/_equalByTag.js +0 -117
- package/modern/lib/lodash/_equalObjects.js +0 -92
- package/modern/lib/lodash/_freeGlobal.js +0 -5
- package/modern/lib/lodash/_getAllKeys.js +0 -18
- package/modern/lib/lodash/_getMapData.js +0 -18
- package/modern/lib/lodash/_getNative.js +0 -19
- package/modern/lib/lodash/_getRawTag.js +0 -50
- package/modern/lib/lodash/_getSymbols.js +0 -32
- package/modern/lib/lodash/_getTag.js +0 -64
- package/modern/lib/lodash/_getValue.js +0 -15
- package/modern/lib/lodash/_hashClear.js +0 -17
- package/modern/lib/lodash/_hashDelete.js +0 -19
- package/modern/lib/lodash/_hashGet.js +0 -34
- package/modern/lib/lodash/_hashHas.js +0 -25
- package/modern/lib/lodash/_hashSet.js +0 -25
- package/modern/lib/lodash/_isIndex.js +0 -23
- package/modern/lib/lodash/_isKeyable.js +0 -15
- package/modern/lib/lodash/_isMasked.js +0 -23
- package/modern/lib/lodash/_isPrototype.js +0 -19
- package/modern/lib/lodash/_listCacheClear.js +0 -15
- package/modern/lib/lodash/_listCacheDelete.js +0 -40
- package/modern/lib/lodash/_listCacheGet.js +0 -20
- package/modern/lib/lodash/_listCacheHas.js +0 -18
- package/modern/lib/lodash/_listCacheSet.js +0 -29
- package/modern/lib/lodash/_mapCacheClear.js +0 -23
- package/modern/lib/lodash/_mapCacheDelete.js +0 -20
- package/modern/lib/lodash/_mapCacheGet.js +0 -18
- package/modern/lib/lodash/_mapCacheHas.js +0 -18
- package/modern/lib/lodash/_mapCacheSet.js +0 -23
- package/modern/lib/lodash/_mapToArray.js +0 -19
- package/modern/lib/lodash/_nativeCreate.js +0 -7
- package/modern/lib/lodash/_nativeKeys.js +0 -7
- package/modern/lib/lodash/_nodeUtil.js +0 -24
- package/modern/lib/lodash/_objectToString.js +0 -24
- package/modern/lib/lodash/_overArg.js +0 -17
- package/modern/lib/lodash/_root.js +0 -10
- package/modern/lib/lodash/_setCacheAdd.js +0 -22
- package/modern/lib/lodash/_setCacheHas.js +0 -16
- package/modern/lib/lodash/_setToArray.js +0 -19
- package/modern/lib/lodash/_stackClear.js +0 -17
- package/modern/lib/lodash/_stackDelete.js +0 -19
- package/modern/lib/lodash/_stackGet.js +0 -16
- package/modern/lib/lodash/_stackHas.js +0 -16
- package/modern/lib/lodash/_stackSet.js +0 -40
- package/modern/lib/lodash/_toSource.js +0 -30
- package/modern/lib/lodash/date.default.js +0 -4
- package/modern/lib/lodash/date.js +0 -2
- package/modern/lib/lodash/eq.js +0 -39
- package/modern/lib/lodash/function.default.js +0 -4
- package/modern/lib/lodash/function.js +0 -2
- package/modern/lib/lodash/isArguments.js +0 -38
- package/modern/lib/lodash/isArray.js +0 -27
- package/modern/lib/lodash/isArrayLike.js +0 -35
- package/modern/lib/lodash/isBuffer.js +0 -39
- package/modern/lib/lodash/isDeepEqual.js +0 -45
- package/modern/lib/lodash/isFunction.js +0 -40
- package/modern/lib/lodash/isLength.js +0 -36
- package/modern/lib/lodash/isObject.js +0 -33
- package/modern/lib/lodash/isObjectLike.js +0 -31
- package/modern/lib/lodash/isSymbol.js +0 -30
- package/modern/lib/lodash/isTypedArray.js +0 -28
- package/modern/lib/lodash/keys.js +0 -39
- package/modern/lib/lodash/lang.default.js +0 -28
- package/modern/lib/lodash/lang.js +0 -14
- package/modern/lib/lodash/now.js +0 -25
- package/modern/lib/lodash/object.default.js +0 -4
- package/modern/lib/lodash/object.js +0 -2
- package/modern/lib/lodash/stubArray.js +0 -25
- package/modern/lib/lodash/stubFalse.js +0 -20
- package/modern/lib/lodash/toNumber.js +0 -70
- package/modern/lib/lodash/util.default.js +0 -6
- package/modern/lib/lodash/util.js +0 -3
- package/node/hooks/core/rowGroupsPreProcessing/index.js +0 -31
- package/node/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -87
- package/node/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -24
- package/node/lib/lodash/_DataView.js +0 -20
- package/node/lib/lodash/_Hash.js +0 -48
- package/node/lib/lodash/_ListCache.js +0 -48
- package/node/lib/lodash/_Map.js +0 -20
- package/node/lib/lodash/_MapCache.js +0 -48
- package/node/lib/lodash/_Promise.js +0 -20
- package/node/lib/lodash/_Set.js +0 -20
- package/node/lib/lodash/_SetCache.js +0 -41
- package/node/lib/lodash/_Stack.js +0 -44
- package/node/lib/lodash/_Symbol.js +0 -18
- package/node/lib/lodash/_Uint8Array.js +0 -18
- package/node/lib/lodash/_WeakMap.js +0 -20
- package/node/lib/lodash/_arrayFilter.js +0 -35
- package/node/lib/lodash/_arrayLikeKeys.js +0 -62
- package/node/lib/lodash/_arrayPush.js +0 -29
- package/node/lib/lodash/_arraySome.js +0 -32
- package/node/lib/lodash/_assocIndexOf.js +0 -36
- package/node/lib/lodash/_baseGetAllKeys.js +0 -34
- package/node/lib/lodash/_baseGetTag.js +0 -42
- package/node/lib/lodash/_baseIsArguments.js +0 -32
- package/node/lib/lodash/_baseIsEqual.js +0 -44
- package/node/lib/lodash/_baseIsEqualDeep.js +0 -103
- package/node/lib/lodash/_baseIsNative.js +0 -61
- package/node/lib/lodash/_baseIsTypedArray.js +0 -62
- package/node/lib/lodash/_baseKeys.js +0 -47
- package/node/lib/lodash/_baseTimes.js +0 -29
- package/node/lib/lodash/_baseUnary.js +0 -22
- package/node/lib/lodash/_cacheHas.js +0 -21
- package/node/lib/lodash/_coreJsData.js +0 -18
- package/node/lib/lodash/_equalArrays.js +0 -97
- package/node/lib/lodash/_equalByTag.js +0 -133
- package/node/lib/lodash/_equalObjects.js +0 -103
- package/node/lib/lodash/_freeGlobal.js +0 -10
- package/node/lib/lodash/_getAllKeys.js +0 -31
- package/node/lib/lodash/_getMapData.js +0 -29
- package/node/lib/lodash/_getNative.js +0 -31
- package/node/lib/lodash/_getRawTag.js +0 -61
- package/node/lib/lodash/_getSymbols.js +0 -44
- package/node/lib/lodash/_getTag.js +0 -81
- package/node/lib/lodash/_getValue.js +0 -21
- package/node/lib/lodash/_hashClear.js +0 -28
- package/node/lib/lodash/_hashDelete.js +0 -25
- package/node/lib/lodash/_hashGet.js +0 -45
- package/node/lib/lodash/_hashHas.js +0 -36
- package/node/lib/lodash/_hashSet.js +0 -36
- package/node/lib/lodash/_isIndex.js +0 -28
- package/node/lib/lodash/_isKeyable.js +0 -21
- package/node/lib/lodash/_isMasked.js +0 -34
- package/node/lib/lodash/_isPrototype.js +0 -24
- package/node/lib/lodash/_listCacheClear.js +0 -21
- package/node/lib/lodash/_listCacheDelete.js +0 -51
- package/node/lib/lodash/_listCacheGet.js +0 -31
- package/node/lib/lodash/_listCacheHas.js +0 -29
- package/node/lib/lodash/_listCacheSet.js +0 -40
- package/node/lib/lodash/_mapCacheClear.js +0 -36
- package/node/lib/lodash/_mapCacheDelete.js +0 -31
- package/node/lib/lodash/_mapCacheGet.js +0 -29
- package/node/lib/lodash/_mapCacheHas.js +0 -29
- package/node/lib/lodash/_mapCacheSet.js +0 -34
- package/node/lib/lodash/_mapToArray.js +0 -25
- package/node/lib/lodash/_nativeCreate.js +0 -18
- package/node/lib/lodash/_nativeKeys.js +0 -18
- package/node/lib/lodash/_nodeUtil.js +0 -35
- package/node/lib/lodash/_objectToString.js +0 -29
- package/node/lib/lodash/_overArg.js +0 -23
- package/node/lib/lodash/_root.js +0 -21
- package/node/lib/lodash/_setCacheAdd.js +0 -27
- package/node/lib/lodash/_setCacheHas.js +0 -22
- package/node/lib/lodash/_setToArray.js +0 -25
- package/node/lib/lodash/_stackClear.js +0 -28
- package/node/lib/lodash/_stackDelete.js +0 -25
- package/node/lib/lodash/_stackGet.js +0 -22
- package/node/lib/lodash/_stackHas.js +0 -22
- package/node/lib/lodash/_stackSet.js +0 -53
- package/node/lib/lodash/_toSource.js +0 -35
- package/node/lib/lodash/date.default.js +0 -15
- package/node/lib/lodash/date.js +0 -23
- package/node/lib/lodash/eq.js +0 -45
- package/node/lib/lodash/function.default.js +0 -15
- package/node/lib/lodash/function.js +0 -23
- package/node/lib/lodash/isArguments.js +0 -50
- package/node/lib/lodash/isArray.js +0 -32
- package/node/lib/lodash/isArrayLike.js +0 -47
- package/node/lib/lodash/isBuffer.js +0 -51
- package/node/lib/lodash/isDeepEqual.js +0 -56
- package/node/lib/lodash/isFunction.js +0 -52
- package/node/lib/lodash/isLength.js +0 -41
- package/node/lib/lodash/isObject.js +0 -39
- package/node/lib/lodash/isObjectLike.js +0 -37
- package/node/lib/lodash/isSymbol.js +0 -42
- package/node/lib/lodash/isTypedArray.js +0 -41
- package/node/lib/lodash/keys.js +0 -52
- package/node/lib/lodash/lang.default.js +0 -51
- package/node/lib/lodash/lang.js +0 -119
- package/node/lib/lodash/now.js +0 -36
- package/node/lib/lodash/object.default.js +0 -15
- package/node/lib/lodash/object.js +0 -23
- package/node/lib/lodash/stubArray.js +0 -31
- package/node/lib/lodash/stubFalse.js +0 -26
- package/node/lib/lodash/toNumber.js +0 -82
- package/node/lib/lodash/util.default.js +0 -18
- package/node/lib/lodash/util.js +0 -31
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import SetCache from './_SetCache.js';
|
|
2
|
-
import arraySome from './_arraySome.js';
|
|
3
|
-
import cacheHas from './_cacheHas.js';
|
|
4
|
-
'use strict';
|
|
5
|
-
/** Used to compose bitmasks for value comparisons. */
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var COMPARE_PARTIAL_FLAG = 1,
|
|
9
|
-
COMPARE_UNORDERED_FLAG = 2;
|
|
10
|
-
/**
|
|
11
|
-
* A specialized version of `baseIsEqualDeep` for arrays with support for
|
|
12
|
-
* partial deep comparisons.
|
|
13
|
-
*
|
|
14
|
-
* @private
|
|
15
|
-
* @param {Array} array The array to compare.
|
|
16
|
-
* @param {Array} other The other array to compare.
|
|
17
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
18
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
19
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
20
|
-
* @param {Object} stack Tracks traversed `array` and `other` objects.
|
|
21
|
-
* @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
|
|
22
|
-
*/
|
|
23
|
-
|
|
24
|
-
function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
|
25
|
-
var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
|
|
26
|
-
arrLength = array.length,
|
|
27
|
-
othLength = other.length;
|
|
28
|
-
|
|
29
|
-
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
|
30
|
-
return false;
|
|
31
|
-
} // Assume cyclic values are equal.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
var stacked = stack.get(array);
|
|
35
|
-
|
|
36
|
-
if (stacked && stack.get(other)) {
|
|
37
|
-
return stacked == other;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
var index = -1,
|
|
41
|
-
result = true,
|
|
42
|
-
seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined;
|
|
43
|
-
stack.set(array, other);
|
|
44
|
-
stack.set(other, array); // Ignore non-index properties.
|
|
45
|
-
|
|
46
|
-
while (++index < arrLength) {
|
|
47
|
-
var arrValue = array[index],
|
|
48
|
-
othValue = other[index];
|
|
49
|
-
|
|
50
|
-
if (customizer) {
|
|
51
|
-
var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
if (compared !== undefined) {
|
|
55
|
-
if (compared) {
|
|
56
|
-
continue;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
result = false;
|
|
60
|
-
break;
|
|
61
|
-
} // Recursively compare arrays (susceptible to call stack limits).
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
if (seen) {
|
|
65
|
-
if (!arraySome(other, function (othValue, othIndex) {
|
|
66
|
-
if (!cacheHas(seen, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
|
|
67
|
-
return seen.push(othIndex);
|
|
68
|
-
}
|
|
69
|
-
})) {
|
|
70
|
-
result = false;
|
|
71
|
-
break;
|
|
72
|
-
}
|
|
73
|
-
} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
|
|
74
|
-
result = false;
|
|
75
|
-
break;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
stack['delete'](array);
|
|
80
|
-
stack['delete'](other);
|
|
81
|
-
return result;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
export default equalArrays;
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
import _Symbol from './_Symbol.js';
|
|
2
|
-
import Uint8Array from './_Uint8Array.js';
|
|
3
|
-
import eq from './eq.js';
|
|
4
|
-
import equalArrays from './_equalArrays.js';
|
|
5
|
-
import mapToArray from './_mapToArray.js';
|
|
6
|
-
import setToArray from './_setToArray.js';
|
|
7
|
-
'use strict';
|
|
8
|
-
/** Used to compose bitmasks for value comparisons. */
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var COMPARE_PARTIAL_FLAG = 1,
|
|
12
|
-
COMPARE_UNORDERED_FLAG = 2;
|
|
13
|
-
/** `Object#toString` result references. */
|
|
14
|
-
|
|
15
|
-
var boolTag = '[object Boolean]',
|
|
16
|
-
dateTag = '[object Date]',
|
|
17
|
-
errorTag = '[object Error]',
|
|
18
|
-
mapTag = '[object Map]',
|
|
19
|
-
numberTag = '[object Number]',
|
|
20
|
-
regexpTag = '[object RegExp]',
|
|
21
|
-
setTag = '[object Set]',
|
|
22
|
-
stringTag = '[object String]',
|
|
23
|
-
symbolTag = '[object Symbol]';
|
|
24
|
-
var arrayBufferTag = '[object ArrayBuffer]',
|
|
25
|
-
dataViewTag = '[object DataView]';
|
|
26
|
-
/** Used to convert symbols to primitives and strings. */
|
|
27
|
-
|
|
28
|
-
var symbolProto = _Symbol ? _Symbol.prototype : undefined,
|
|
29
|
-
symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
|
|
30
|
-
/**
|
|
31
|
-
* A specialized version of `baseIsEqualDeep` for comparing objects of
|
|
32
|
-
* the same `toStringTag`.
|
|
33
|
-
*
|
|
34
|
-
* **Note:** This function only supports comparing values with tags of
|
|
35
|
-
* `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.
|
|
36
|
-
*
|
|
37
|
-
* @private
|
|
38
|
-
* @param {Object} object The object to compare.
|
|
39
|
-
* @param {Object} other The other object to compare.
|
|
40
|
-
* @param {string} tag The `toStringTag` of the objects to compare.
|
|
41
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
42
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
43
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
44
|
-
* @param {Object} stack Tracks traversed `object` and `other` objects.
|
|
45
|
-
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
|
46
|
-
*/
|
|
47
|
-
|
|
48
|
-
function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
|
|
49
|
-
switch (tag) {
|
|
50
|
-
case dataViewTag:
|
|
51
|
-
if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {
|
|
52
|
-
return false;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
object = object.buffer;
|
|
56
|
-
other = other.buffer;
|
|
57
|
-
|
|
58
|
-
case arrayBufferTag:
|
|
59
|
-
if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array(object), new Uint8Array(other))) {
|
|
60
|
-
return false;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
return true;
|
|
64
|
-
|
|
65
|
-
case boolTag:
|
|
66
|
-
case dateTag:
|
|
67
|
-
case numberTag:
|
|
68
|
-
// Coerce booleans to `1` or `0` and dates to milliseconds.
|
|
69
|
-
// Invalid dates are coerced to `NaN`.
|
|
70
|
-
return eq(+object, +other);
|
|
71
|
-
|
|
72
|
-
case errorTag:
|
|
73
|
-
return object.name == other.name && object.message == other.message;
|
|
74
|
-
|
|
75
|
-
case regexpTag:
|
|
76
|
-
case stringTag:
|
|
77
|
-
// Coerce regexes to strings and treat strings, primitives and objects,
|
|
78
|
-
// as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring
|
|
79
|
-
// for more details.
|
|
80
|
-
return object == other + '';
|
|
81
|
-
|
|
82
|
-
case mapTag:
|
|
83
|
-
var convert = mapToArray;
|
|
84
|
-
|
|
85
|
-
case setTag:
|
|
86
|
-
var isPartial = bitmask & COMPARE_PARTIAL_FLAG;
|
|
87
|
-
convert || (convert = setToArray);
|
|
88
|
-
|
|
89
|
-
if (object.size != other.size && !isPartial) {
|
|
90
|
-
return false;
|
|
91
|
-
} // Assume cyclic values are equal.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
var stacked = stack.get(object);
|
|
95
|
-
|
|
96
|
-
if (stacked) {
|
|
97
|
-
return stacked == other;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
bitmask |= COMPARE_UNORDERED_FLAG; // Recursively compare objects (susceptible to call stack limits).
|
|
101
|
-
|
|
102
|
-
stack.set(object, other);
|
|
103
|
-
var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
|
|
104
|
-
stack['delete'](object);
|
|
105
|
-
return result;
|
|
106
|
-
|
|
107
|
-
case symbolTag:
|
|
108
|
-
if (symbolValueOf) {
|
|
109
|
-
return symbolValueOf.call(object) == symbolValueOf.call(other);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
return false;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export default equalByTag;
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
import getAllKeys from './_getAllKeys.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/** Used to compose bitmasks for value comparisons. */
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var COMPARE_PARTIAL_FLAG = 1;
|
|
7
|
-
/** Used for built-in method references. */
|
|
8
|
-
|
|
9
|
-
var objectProto = Object.prototype;
|
|
10
|
-
/** Used to check objects for own properties. */
|
|
11
|
-
|
|
12
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
13
|
-
/**
|
|
14
|
-
* A specialized version of `baseIsEqualDeep` for objects with support for
|
|
15
|
-
* partial deep comparisons.
|
|
16
|
-
*
|
|
17
|
-
* @private
|
|
18
|
-
* @param {Object} object The object to compare.
|
|
19
|
-
* @param {Object} other The other object to compare.
|
|
20
|
-
* @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
|
|
21
|
-
* @param {Function} customizer The function to customize comparisons.
|
|
22
|
-
* @param {Function} equalFunc The function to determine equivalents of values.
|
|
23
|
-
* @param {Object} stack Tracks traversed `object` and `other` objects.
|
|
24
|
-
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
|
25
|
-
*/
|
|
26
|
-
|
|
27
|
-
function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|
28
|
-
var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
|
|
29
|
-
objProps = getAllKeys(object),
|
|
30
|
-
objLength = objProps.length,
|
|
31
|
-
othProps = getAllKeys(other),
|
|
32
|
-
othLength = othProps.length;
|
|
33
|
-
|
|
34
|
-
if (objLength != othLength && !isPartial) {
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
var index = objLength;
|
|
39
|
-
|
|
40
|
-
while (index--) {
|
|
41
|
-
var key = objProps[index];
|
|
42
|
-
|
|
43
|
-
if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
|
|
44
|
-
return false;
|
|
45
|
-
}
|
|
46
|
-
} // Assume cyclic values are equal.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
var stacked = stack.get(object);
|
|
50
|
-
|
|
51
|
-
if (stacked && stack.get(other)) {
|
|
52
|
-
return stacked == other;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
var result = true;
|
|
56
|
-
stack.set(object, other);
|
|
57
|
-
stack.set(other, object);
|
|
58
|
-
var skipCtor = isPartial;
|
|
59
|
-
|
|
60
|
-
while (++index < objLength) {
|
|
61
|
-
key = objProps[index];
|
|
62
|
-
var objValue = object[key],
|
|
63
|
-
othValue = other[key];
|
|
64
|
-
|
|
65
|
-
if (customizer) {
|
|
66
|
-
var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack);
|
|
67
|
-
} // Recursively compare objects (susceptible to call stack limits).
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
if (!(compared === undefined ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {
|
|
71
|
-
result = false;
|
|
72
|
-
break;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
skipCtor || (skipCtor = key == 'constructor');
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
if (result && !skipCtor) {
|
|
79
|
-
var objCtor = object.constructor,
|
|
80
|
-
othCtor = other.constructor; // Non `Object` object instances with different constructors are not equal.
|
|
81
|
-
|
|
82
|
-
if (objCtor != othCtor && 'constructor' in object && 'constructor' in other && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) {
|
|
83
|
-
result = false;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
stack['delete'](object);
|
|
88
|
-
stack['delete'](other);
|
|
89
|
-
return result;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
export default equalObjects;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
/** Detect free variable `global` from Node.js. */
|
|
3
|
-
|
|
4
|
-
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
|
5
|
-
var freeGlobal = (typeof global === "undefined" ? "undefined" : _typeof(global)) == 'object' && global && global.Object === Object && global;
|
|
6
|
-
export default freeGlobal;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import baseGetAllKeys from './_baseGetAllKeys.js';
|
|
2
|
-
import getSymbols from './_getSymbols.js';
|
|
3
|
-
import keys from './keys.js';
|
|
4
|
-
'use strict';
|
|
5
|
-
/**
|
|
6
|
-
* Creates an array of own enumerable property names and symbols of `object`.
|
|
7
|
-
*
|
|
8
|
-
* @private
|
|
9
|
-
* @param {Object} object The object to query.
|
|
10
|
-
* @returns {Array} Returns the array of property names and symbols.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function getAllKeys(object) {
|
|
15
|
-
return baseGetAllKeys(object, keys, getSymbols);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export default getAllKeys;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import isKeyable from './_isKeyable.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/**
|
|
4
|
-
* Gets the data for `map`.
|
|
5
|
-
*
|
|
6
|
-
* @private
|
|
7
|
-
* @param {Object} map The map to query.
|
|
8
|
-
* @param {string} key The reference key.
|
|
9
|
-
* @returns {*} Returns the map data.
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
function getMapData(map, key) {
|
|
14
|
-
var data = map.__data__;
|
|
15
|
-
return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export default getMapData;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import baseIsNative from './_baseIsNative.js';
|
|
2
|
-
import getValue from './_getValue.js';
|
|
3
|
-
'use strict';
|
|
4
|
-
/**
|
|
5
|
-
* Gets the native function at `key` of `object`.
|
|
6
|
-
*
|
|
7
|
-
* @private
|
|
8
|
-
* @param {Object} object The object to query.
|
|
9
|
-
* @param {string} key The key of the method to get.
|
|
10
|
-
* @returns {*} Returns the function if it's native, else `undefined`.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function getNative(object, key) {
|
|
15
|
-
var value = getValue(object, key);
|
|
16
|
-
return baseIsNative(value) ? value : undefined;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export default getNative;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import _Symbol from './_Symbol.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/** Used for built-in method references. */
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var objectProto = Object.prototype;
|
|
7
|
-
/** Used to check objects for own properties. */
|
|
8
|
-
|
|
9
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
10
|
-
/**
|
|
11
|
-
* Used to resolve the
|
|
12
|
-
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
|
13
|
-
* of values.
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
var nativeObjectToString = objectProto.toString;
|
|
17
|
-
/** Built-in value references. */
|
|
18
|
-
|
|
19
|
-
var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
|
|
20
|
-
/**
|
|
21
|
-
* A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
|
|
22
|
-
*
|
|
23
|
-
* @private
|
|
24
|
-
* @param {*} value The value to query.
|
|
25
|
-
* @returns {string} Returns the raw `toStringTag`.
|
|
26
|
-
*/
|
|
27
|
-
|
|
28
|
-
function getRawTag(value) {
|
|
29
|
-
var isOwn = hasOwnProperty.call(value, symToStringTag),
|
|
30
|
-
tag = value[symToStringTag];
|
|
31
|
-
|
|
32
|
-
try {
|
|
33
|
-
value[symToStringTag] = undefined;
|
|
34
|
-
var unmasked = true;
|
|
35
|
-
} catch (e) {}
|
|
36
|
-
|
|
37
|
-
var result = nativeObjectToString.call(value);
|
|
38
|
-
|
|
39
|
-
if (unmasked) {
|
|
40
|
-
if (isOwn) {
|
|
41
|
-
value[symToStringTag] = tag;
|
|
42
|
-
} else {
|
|
43
|
-
delete value[symToStringTag];
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
return result;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export default getRawTag;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import arrayFilter from './_arrayFilter.js';
|
|
2
|
-
import stubArray from './stubArray.js';
|
|
3
|
-
'use strict';
|
|
4
|
-
/** Used for built-in method references. */
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var objectProto = Object.prototype;
|
|
8
|
-
/** Built-in value references. */
|
|
9
|
-
|
|
10
|
-
var propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
|
11
|
-
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
12
|
-
|
|
13
|
-
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
|
14
|
-
/**
|
|
15
|
-
* Creates an array of the own enumerable symbols of `object`.
|
|
16
|
-
*
|
|
17
|
-
* @private
|
|
18
|
-
* @param {Object} object The object to query.
|
|
19
|
-
* @returns {Array} Returns the array of symbols.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
var getSymbols = !nativeGetSymbols ? stubArray : function (object) {
|
|
23
|
-
if (object == null) {
|
|
24
|
-
return [];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
object = Object(object);
|
|
28
|
-
return arrayFilter(nativeGetSymbols(object), function (symbol) {
|
|
29
|
-
return propertyIsEnumerable.call(object, symbol);
|
|
30
|
-
});
|
|
31
|
-
};
|
|
32
|
-
export default getSymbols;
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import DataView from './_DataView.js';
|
|
2
|
-
import Map from './_Map.js';
|
|
3
|
-
import Promise from './_Promise.js';
|
|
4
|
-
import Set from './_Set.js';
|
|
5
|
-
import WeakMap from './_WeakMap.js';
|
|
6
|
-
import baseGetTag from './_baseGetTag.js';
|
|
7
|
-
import toSource from './_toSource.js';
|
|
8
|
-
'use strict';
|
|
9
|
-
/** `Object#toString` result references. */
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
var mapTag = '[object Map]',
|
|
13
|
-
objectTag = '[object Object]',
|
|
14
|
-
promiseTag = '[object Promise]',
|
|
15
|
-
setTag = '[object Set]',
|
|
16
|
-
weakMapTag = '[object WeakMap]';
|
|
17
|
-
var dataViewTag = '[object DataView]';
|
|
18
|
-
/** Used to detect maps, sets, and weakmaps. */
|
|
19
|
-
|
|
20
|
-
var dataViewCtorString = toSource(DataView),
|
|
21
|
-
mapCtorString = toSource(Map),
|
|
22
|
-
promiseCtorString = toSource(Promise),
|
|
23
|
-
setCtorString = toSource(Set),
|
|
24
|
-
weakMapCtorString = toSource(WeakMap);
|
|
25
|
-
/**
|
|
26
|
-
* Gets the `toStringTag` of `value`.
|
|
27
|
-
*
|
|
28
|
-
* @private
|
|
29
|
-
* @param {*} value The value to query.
|
|
30
|
-
* @returns {string} Returns the `toStringTag`.
|
|
31
|
-
*/
|
|
32
|
-
|
|
33
|
-
var getTag = baseGetTag; // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.
|
|
34
|
-
|
|
35
|
-
if (DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag || Map && getTag(new Map()) != mapTag || Promise && getTag(Promise.resolve()) != promiseTag || Set && getTag(new Set()) != setTag || WeakMap && getTag(new WeakMap()) != weakMapTag) {
|
|
36
|
-
getTag = function getTag(value) {
|
|
37
|
-
var result = baseGetTag(value),
|
|
38
|
-
Ctor = result == objectTag ? value.constructor : undefined,
|
|
39
|
-
ctorString = Ctor ? toSource(Ctor) : '';
|
|
40
|
-
|
|
41
|
-
if (ctorString) {
|
|
42
|
-
switch (ctorString) {
|
|
43
|
-
case dataViewCtorString:
|
|
44
|
-
return dataViewTag;
|
|
45
|
-
|
|
46
|
-
case mapCtorString:
|
|
47
|
-
return mapTag;
|
|
48
|
-
|
|
49
|
-
case promiseCtorString:
|
|
50
|
-
return promiseTag;
|
|
51
|
-
|
|
52
|
-
case setCtorString:
|
|
53
|
-
return setTag;
|
|
54
|
-
|
|
55
|
-
case weakMapCtorString:
|
|
56
|
-
return weakMapTag;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
return result;
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export default getTag;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
/**
|
|
3
|
-
* Gets the value at `key` of `object`.
|
|
4
|
-
*
|
|
5
|
-
* @private
|
|
6
|
-
* @param {Object} [object] The object to query.
|
|
7
|
-
* @param {string} key The key of the property to get.
|
|
8
|
-
* @returns {*} Returns the property value.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
function getValue(object, key) {
|
|
12
|
-
return object == null ? undefined : object[key];
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export default getValue;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import nativeCreate from './_nativeCreate.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/**
|
|
4
|
-
* Removes all key-value entries from the hash.
|
|
5
|
-
*
|
|
6
|
-
* @private
|
|
7
|
-
* @name clear
|
|
8
|
-
* @memberOf Hash
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
function hashClear() {
|
|
13
|
-
this.__data__ = nativeCreate ? nativeCreate(null) : {};
|
|
14
|
-
this.size = 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export default hashClear;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
/**
|
|
3
|
-
* Removes `key` and its value from the hash.
|
|
4
|
-
*
|
|
5
|
-
* @private
|
|
6
|
-
* @name delete
|
|
7
|
-
* @memberOf Hash
|
|
8
|
-
* @param {Object} hash The hash to modify.
|
|
9
|
-
* @param {string} key The key of the value to remove.
|
|
10
|
-
* @returns {boolean} Returns `true` if the entry was removed, else `false`.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
function hashDelete(key) {
|
|
14
|
-
var result = this.has(key) && delete this.__data__[key];
|
|
15
|
-
this.size -= result ? 1 : 0;
|
|
16
|
-
return result;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export default hashDelete;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import nativeCreate from './_nativeCreate.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/** Used to stand-in for `undefined` hash values. */
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|
7
|
-
/** Used for built-in method references. */
|
|
8
|
-
|
|
9
|
-
var objectProto = Object.prototype;
|
|
10
|
-
/** Used to check objects for own properties. */
|
|
11
|
-
|
|
12
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
13
|
-
/**
|
|
14
|
-
* Gets the hash value for `key`.
|
|
15
|
-
*
|
|
16
|
-
* @private
|
|
17
|
-
* @name get
|
|
18
|
-
* @memberOf Hash
|
|
19
|
-
* @param {string} key The key of the value to get.
|
|
20
|
-
* @returns {*} Returns the entry value.
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
function hashGet(key) {
|
|
24
|
-
var data = this.__data__;
|
|
25
|
-
|
|
26
|
-
if (nativeCreate) {
|
|
27
|
-
var result = data[key];
|
|
28
|
-
return result === HASH_UNDEFINED ? undefined : result;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
return hasOwnProperty.call(data, key) ? data[key] : undefined;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export default hashGet;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import nativeCreate from './_nativeCreate.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/** Used for built-in method references. */
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var objectProto = Object.prototype;
|
|
7
|
-
/** Used to check objects for own properties. */
|
|
8
|
-
|
|
9
|
-
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
10
|
-
/**
|
|
11
|
-
* Checks if a hash value for `key` exists.
|
|
12
|
-
*
|
|
13
|
-
* @private
|
|
14
|
-
* @name has
|
|
15
|
-
* @memberOf Hash
|
|
16
|
-
* @param {string} key The key of the entry to check.
|
|
17
|
-
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
|
18
|
-
*/
|
|
19
|
-
|
|
20
|
-
function hashHas(key) {
|
|
21
|
-
var data = this.__data__;
|
|
22
|
-
return nativeCreate ? data[key] !== undefined : hasOwnProperty.call(data, key);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export default hashHas;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import nativeCreate from './_nativeCreate.js';
|
|
2
|
-
'use strict';
|
|
3
|
-
/** Used to stand-in for `undefined` hash values. */
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|
7
|
-
/**
|
|
8
|
-
* Sets the hash `key` to `value`.
|
|
9
|
-
*
|
|
10
|
-
* @private
|
|
11
|
-
* @name set
|
|
12
|
-
* @memberOf Hash
|
|
13
|
-
* @param {string} key The key of the value to set.
|
|
14
|
-
* @param {*} value The value to set.
|
|
15
|
-
* @returns {Object} Returns the hash instance.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
function hashSet(key, value) {
|
|
19
|
-
var data = this.__data__;
|
|
20
|
-
this.size += this.has(key) ? 0 : 1;
|
|
21
|
-
data[key] = nativeCreate && value === undefined ? HASH_UNDEFINED : value;
|
|
22
|
-
return this;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export default hashSet;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
/** Used as references for various `Number` constants. */
|
|
3
|
-
|
|
4
|
-
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
|
5
|
-
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
6
|
-
/** Used to detect unsigned integer values. */
|
|
7
|
-
|
|
8
|
-
var reIsUint = /^(?:0|[1-9]\d*)$/;
|
|
9
|
-
/**
|
|
10
|
-
* Checks if `value` is a valid array-like index.
|
|
11
|
-
*
|
|
12
|
-
* @private
|
|
13
|
-
* @param {*} value The value to check.
|
|
14
|
-
* @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
|
|
15
|
-
* @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
function isIndex(value, length) {
|
|
19
|
-
var type = _typeof(value);
|
|
20
|
-
|
|
21
|
-
length = length == null ? MAX_SAFE_INTEGER : length;
|
|
22
|
-
return !!length && (type == 'number' || type != 'symbol' && reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export default isIndex;
|