@elliemae/ds-shared 1.61.10 → 1.61.13
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/cjs/Animations/BaseAnimation.js.map +1 -1
- package/cjs/Animations/Grow.js.map +1 -1
- package/cjs/Animations/GrowRight.js.map +1 -1
- package/cjs/CheckableGroup.js.map +1 -1
- package/cjs/DeferRenderAfterComputation.js.map +1 -1
- package/cjs/FocusGroup/FocusGrid.js.map +1 -1
- package/cjs/FocusGroup/FocusGroup.js.map +1 -1
- package/cjs/FocusGroup/FocusGroupManager.js.map +1 -1
- package/cjs/FocusGroup/focusGroupManagerHoc.js.map +1 -1
- package/cjs/FocusGroup/useFocusGroupItem.js.map +1 -1
- package/cjs/FocusGroup/utils/getNextCellPosition.js.map +1 -1
- package/cjs/GroupContext/Group.js.map +1 -1
- package/cjs/GroupContext/GroupItem.js.map +1 -1
- package/cjs/ScrollSync/ScrollSync.js.map +1 -1
- package/cjs/ScrollSync/ScrollSyncPane.js.map +1 -1
- package/cjs/ScrollSync/ScrollSyncProvider.js.map +1 -1
- package/cjs/ScrollSync/useScrollSync.js.map +1 -1
- package/cjs/createDataInstance/createInstancePlugin.js.map +1 -1
- package/cjs/createDataInstance/createInstanceRef.js.map +1 -1
- package/cjs/createDataInstance/utils.js.map +1 -1
- package/cjs/defer-render-hoc/index.js.map +1 -1
- package/cjs/toolbar/ToolbarProvider.js.map +1 -1
- package/cjs/useDataGrid/VolatileRowsListener.js.map +1 -1
- package/cjs/useDataGrid/initColumnDefinition.js.map +1 -1
- package/cjs/useDataGrid/useDataGrid.js.map +1 -1
- package/cjs/useDataList/recordIterator.js.map +1 -1
- package/cjs/useDataList/useDataList.js.map +1 -1
- package/cjs/utils.js.map +1 -1
- package/cjs/virtualization/AutoHeightList.js.map +1 -1
- package/cjs/virtualization/FluidHeightList.js.map +1 -1
- package/cjs/virtualization/index.js.map +1 -1
- package/esm/Animations/BaseAnimation.js.map +1 -1
- package/esm/Animations/Grow.js.map +1 -1
- package/esm/Animations/GrowRight.js.map +1 -1
- package/esm/CheckableGroup.js.map +1 -1
- package/esm/DeferRenderAfterComputation.js.map +1 -1
- package/esm/FocusGroup/FocusGrid.js.map +1 -1
- package/esm/FocusGroup/FocusGroup.js.map +1 -1
- package/esm/FocusGroup/FocusGroupManager.js.map +1 -1
- package/esm/FocusGroup/focusGroupManagerHoc.js.map +1 -1
- package/esm/FocusGroup/useFocusGroupItem.js.map +1 -1
- package/esm/FocusGroup/utils/getNextCellPosition.js.map +1 -1
- package/esm/GroupContext/Group.js.map +1 -1
- package/esm/GroupContext/GroupItem.js.map +1 -1
- package/esm/ScrollSync/ScrollSync.js.map +1 -1
- package/esm/ScrollSync/ScrollSyncPane.js.map +1 -1
- package/esm/ScrollSync/ScrollSyncProvider.js.map +1 -1
- package/esm/ScrollSync/useScrollSync.js.map +1 -1
- package/esm/createDataInstance/createInstancePlugin.js.map +1 -1
- package/esm/createDataInstance/createInstanceRef.js.map +1 -1
- package/esm/createDataInstance/utils.js.map +1 -1
- package/esm/defer-render-hoc/index.js.map +1 -1
- package/esm/toolbar/ToolbarProvider.js.map +1 -1
- package/esm/useDataGrid/VolatileRowsListener.js.map +1 -1
- package/esm/useDataGrid/initColumnDefinition.js.map +1 -1
- package/esm/useDataGrid/useDataGrid.js.map +1 -1
- package/esm/useDataList/recordIterator.js.map +1 -1
- package/esm/useDataList/useDataList.js.map +1 -1
- package/esm/utils.js.map +1 -1
- package/esm/virtualization/AutoHeightList.js.map +1 -1
- package/esm/virtualization/FluidHeightList.js.map +1 -1
- package/esm/virtualization/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AutoHeightList.js","sources":["../../../src/virtualization/AutoHeightList.tsx"],"sourcesContent":["import React, { forwardRef, useRef } from 'react';\nimport { FixedSizeList as List } from 'react-window';\nimport { cx, useWindowScrollerList, mergeRefs } from '@elliemae/ds-utilities';\n\nexport const AutoHeightList = forwardRef(\n (\n {\n itemCount,\n className,\n innerRef,\n itemData,\n itemKey,\n itemSize,\n outerRef,\n component: ListComponent = List,\n ...otherProps\n },\n ref,\n ) => {\n const listRef = useRef();\n const outerListRef = useRef();\n\n useWindowScrollerList({\n listInstance: listRef,\n outerListRef,\n });\n\n return (\n <ListComponent\n {...otherProps}\n ref={mergeRefs(ref, listRef)}\n className={cx(className, 'window-scroller-override')}\n height={window.innerHeight}\n innerRef={innerRef}\n itemCount={itemCount}\n itemData={itemData}\n itemKey={itemKey}\n itemSize={itemSize}\n outerRef={mergeRefs(outerListRef, outerRef)}\n overscanCount={10}\n useIsScrolling\n />\n );\n },\n);\n"],"names":["AutoHeightList","forwardRef","ref","itemCount","className","innerRef","itemData","itemKey","itemSize","outerRef","component","ListComponent","List","otherProps","listRef","useRef","outerListRef","useWindowScrollerList","listInstance","mergeRefs","cx","window","innerHeight"],"mappings":";;;;;;;IAIaA,cAAc,gBAAGC,UAAU,CACtC,gBAYEC,GAZF,EAaK;
|
|
1
|
+
{"version":3,"file":"AutoHeightList.js","sources":["../../../src/virtualization/AutoHeightList.tsx"],"sourcesContent":["import React, { forwardRef, useRef } from 'react';\nimport { FixedSizeList as List } from 'react-window';\nimport { cx, useWindowScrollerList, mergeRefs } from '@elliemae/ds-utilities';\n\nexport const AutoHeightList = forwardRef(\n (\n {\n itemCount,\n className,\n innerRef,\n itemData,\n itemKey,\n itemSize,\n outerRef,\n component: ListComponent = List,\n ...otherProps\n },\n ref,\n ) => {\n const listRef = useRef();\n const outerListRef = useRef();\n\n useWindowScrollerList({\n listInstance: listRef,\n outerListRef,\n });\n\n return (\n <ListComponent\n {...otherProps}\n ref={mergeRefs(ref, listRef)}\n className={cx(className, 'window-scroller-override')}\n height={window.innerHeight}\n innerRef={innerRef}\n itemCount={itemCount}\n itemData={itemData}\n itemKey={itemKey}\n itemSize={itemSize}\n outerRef={mergeRefs(outerListRef, outerRef)}\n overscanCount={10}\n useIsScrolling\n />\n );\n },\n);\n"],"names":["AutoHeightList","forwardRef","ref","itemCount","className","innerRef","itemData","itemKey","itemSize","outerRef","component","ListComponent","List","otherProps","listRef","useRef","outerListRef","useWindowScrollerList","listInstance","mergeRefs","cx","window","innerHeight"],"mappings":";;;;;;;IAIaA,cAAc,gBAAGC,UAAU,CACtC,gBAYEC,GAZF,EAaK;EAAA,IAXDC,SAWC,QAXDA,SAWC;MAVDC,SAUC,QAVDA,SAUC;MATDC,QASC,QATDA,QASC;MARDC,QAQC,QARDA,QAQC;MAPDC,OAOC,QAPDA,OAOC;MANDC,QAMC,QANDA,QAMC;MALDC,QAKC,QALDA,QAKC;4BAJDC,SAIC;MAJUC,aAIV,+BAJ0BC,aAI1B;MAHEC,UAGF;;EACH,IAAMC,OAAO,GAAGC,MAAM,EAAtB;EACA,IAAMC,YAAY,GAAGD,MAAM,EAA3B;EAEAE,qBAAqB,CAAC;IACpBC,YAAY,EAAEJ,OADM;IAEpBE,YAAY,EAAZA;GAFmB,CAArB;EAKA,oBACE,oBAAC,aAAD,eACMH,UADN;IAEE,GAAG,EAAEM,SAAS,CAACjB,GAAD,EAAMY,OAAN,CAFhB;IAGE,SAAS,EAAEM,EAAE,CAAChB,SAAD,EAAY,0BAAZ,CAHf;IAIE,MAAM,EAAEiB,MAAM,CAACC,WAJjB;IAKE,QAAQ,EAAEjB,QALZ;IAME,SAAS,EAAEF,SANb;IAOE,QAAQ,EAAEG,QAPZ;IAQE,OAAO,EAAEC,OARX;IASE,QAAQ,EAAEC,QATZ;IAUE,QAAQ,EAAEW,SAAS,CAACH,YAAD,EAAeP,QAAf,CAVrB;IAWE,aAAa,EAAE,EAXjB;IAYE,cAAc;KAblB;AAgBD,CAvCqC;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FluidHeightList.js","sources":["../../../src/virtualization/FluidHeightList.tsx"],"sourcesContent":["import React, { forwardRef } from 'react';\nimport AutoSizer from 'react-virtualized-auto-sizer';\n\nexport const FluidHeightList = forwardRef(\n ({ component: Component, ...props }, ref) => (\n <AutoSizer disableWidth>\n {({ height: fluidHeight }) => (\n <Component\n {...props}\n ref={ref}\n height={fluidHeight - 32} // taking in count the margins of the list\n />\n )}\n </AutoSizer>\n ),\n);\n"],"names":["FluidHeightList","forwardRef","ref","Component","component","props","fluidHeight","height"],"mappings":";;;;;;IAGaA,eAAe,gBAAGC,UAAU,CACvC,gBAAqCC,GAArC;
|
|
1
|
+
{"version":3,"file":"FluidHeightList.js","sources":["../../../src/virtualization/FluidHeightList.tsx"],"sourcesContent":["import React, { forwardRef } from 'react';\nimport AutoSizer from 'react-virtualized-auto-sizer';\n\nexport const FluidHeightList = forwardRef(\n ({ component: Component, ...props }, ref) => (\n <AutoSizer disableWidth>\n {({ height: fluidHeight }) => (\n <Component\n {...props}\n ref={ref}\n height={fluidHeight - 32} // taking in count the margins of the list\n />\n )}\n </AutoSizer>\n ),\n);\n"],"names":["FluidHeightList","forwardRef","ref","Component","component","props","fluidHeight","height"],"mappings":";;;;;;IAGaA,eAAe,gBAAGC,UAAU,CACvC,gBAAqCC,GAArC;EAAA,IAAcC,SAAd,QAAGC,SAAH;MAA4BC,KAA5B;;EAAA,oBACE,oBAAC,SAAD;IAAW,YAAY;KACpB;IAAA,IAAWC,WAAX,SAAGC,MAAH;IAAA,oBACC,oBAAC,SAAD,eACMF,KADN;MAEE,GAAG,EAAEH,GAFP;MAGE,MAAM,EAAEI,WAAW,GAAG,EAHxB;;OADD;GADH,CADF;AAAA,CADuC;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/virtualization/index.tsx"],"sourcesContent":["import { FluidHeightList } from './FluidHeightList';\nimport { AutoHeightList } from './AutoHeightList';\n\nexport { FluidHeightList, AutoHeightList };\n\nexport function getVirtualListComponent({\n component: Component,\n fluid,\n height,\n autoHeight,\n}) {\n if (autoHeight) return AutoHeightList;\n if (fluid) return FluidHeightList;\n return Component;\n}\n"],"names":["getVirtualListComponent","Component","component","fluid","height","autoHeight","AutoHeightList","FluidHeightList"],"mappings":";;;;;;;;;;;AAKO,SAASA,uBAAT,OAKJ;
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/virtualization/index.tsx"],"sourcesContent":["import { FluidHeightList } from './FluidHeightList';\nimport { AutoHeightList } from './AutoHeightList';\n\nexport { FluidHeightList, AutoHeightList };\n\nexport function getVirtualListComponent({\n component: Component,\n fluid,\n height,\n autoHeight,\n}) {\n if (autoHeight) return AutoHeightList;\n if (fluid) return FluidHeightList;\n return Component;\n}\n"],"names":["getVirtualListComponent","Component","component","fluid","height","autoHeight","AutoHeightList","FluidHeightList"],"mappings":";;;;;;;;;;;AAKO,SAASA,uBAAT,OAKJ;MAJUC,SAIV,QAJDC,SAIC;MAHDC,KAGC,QAHDA,KAGC;WAFDC,MAEC;UADDC,UACC,QADDA;EAEA,IAAIA,UAAJ,EAAgB,OAAOC,cAAP;EAChB,IAAIH,KAAJ,EAAW,OAAOI,eAAP;EACX,OAAON,SAAP;AACD;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shared",
|
|
3
|
-
"version": "1.61.
|
|
3
|
+
"version": "1.61.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Ellie Mae - Dim Sum - Shared components and utilities",
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"directory": "dist"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@elliemae/ds-basic": "1.61.
|
|
24
|
-
"@elliemae/ds-utilities": "1.61.
|
|
23
|
+
"@elliemae/ds-basic": "1.61.13",
|
|
24
|
+
"@elliemae/ds-utilities": "1.61.13",
|
|
25
25
|
"hoist-non-react-statics": "~3.3.2",
|
|
26
26
|
"hotkeys-js": "~3.8.2",
|
|
27
27
|
"prop-types": "~15.7.2",
|