From a060814ca0c393cf5019a84e58bfeaca800b0cc1 Mon Sep 17 00:00:00 2001 From: inokawa <48897392+inokawa@users.noreply.github.com> Date: Tue, 18 Jul 2023 19:46:34 +0900 Subject: [PATCH] 0.4.3 --- docs/API.md | 14 +++++------ docs/interfaces/CustomCellComponentProps.md | 4 ++-- docs/interfaces/CustomItemComponentProps.md | 4 ++-- docs/interfaces/CustomWindowComponentProps.md | 10 ++++---- docs/interfaces/VGridHandle.md | 12 +++++----- docs/interfaces/VGridProps.md | 24 +++++++++---------- docs/interfaces/VListHandle.md | 12 +++++----- docs/interfaces/VListProps.md | 24 +++++++++---------- docs/interfaces/WVListProps.md | 22 ++++++++--------- package-lock.json | 4 ++-- package.json | 2 +- 11 files changed, 66 insertions(+), 66 deletions(-) diff --git a/docs/API.md b/docs/API.md index 5758f06e9..49620fc4d 100644 --- a/docs/API.md +++ b/docs/API.md @@ -91,7 +91,7 @@ Virtualized list component controlled by the window scrolling. See [WVListProps] #### Defined in -[src/react/WVList.tsx:153](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L153) +[src/react/WVList.tsx:99](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L99) ## Type Aliases @@ -101,7 +101,7 @@ Virtualized list component controlled by the window scrolling. See [WVListProps] #### Defined in -[src/react/VList.tsx:31](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L31) +[src/react/VList.tsx:28](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L28) ___ @@ -111,7 +111,7 @@ ___ #### Defined in -[src/react/VGrid.tsx:38](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L38) +[src/react/VGrid.tsx:37](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L37) ___ @@ -121,17 +121,17 @@ ___ #### Defined in -[src/react/DefaultWindow.tsx:9](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L9) +[src/react/Window.tsx:9](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L9) ___ ### CustomWindowComponent -Ƭ **CustomWindowComponent**: typeof `DefaultWindow` +Ƭ **CustomWindowComponent**: typeof `Window` #### Defined in -[src/react/DefaultWindow.tsx:63](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L63) +[src/react/Window.tsx:63](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L63) ___ @@ -141,4 +141,4 @@ ___ #### Defined in -[src/react/ListItem.tsx:23](https://github.com/inokawa/virtua/blob/579892c/src/react/ListItem.tsx#L23) +[src/react/ListItem.tsx:23](https://github.com/inokawa/virtua/blob/321db41/src/react/ListItem.tsx#L23) diff --git a/docs/interfaces/CustomCellComponentProps.md b/docs/interfaces/CustomCellComponentProps.md index d848215a6..4bd87347e 100644 --- a/docs/interfaces/CustomCellComponentProps.md +++ b/docs/interfaces/CustomCellComponentProps.md @@ -17,7 +17,7 @@ Props of customized cell component for [VGrid](../API.md#vgrid). #### Defined in -[src/react/VGrid.tsx:34](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L34) +[src/react/VGrid.tsx:33](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L33) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/react/VGrid.tsx:35](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L35) +[src/react/VGrid.tsx:34](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L34) diff --git a/docs/interfaces/CustomItemComponentProps.md b/docs/interfaces/CustomItemComponentProps.md index 27d7e25b6..04bf45478 100644 --- a/docs/interfaces/CustomItemComponentProps.md +++ b/docs/interfaces/CustomItemComponentProps.md @@ -17,7 +17,7 @@ Props of customized item component for [VList](../API.md#vlist). #### Defined in -[src/react/ListItem.tsx:19](https://github.com/inokawa/virtua/blob/579892c/src/react/ListItem.tsx#L19) +[src/react/ListItem.tsx:19](https://github.com/inokawa/virtua/blob/321db41/src/react/ListItem.tsx#L19) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/react/ListItem.tsx:20](https://github.com/inokawa/virtua/blob/579892c/src/react/ListItem.tsx#L20) +[src/react/ListItem.tsx:20](https://github.com/inokawa/virtua/blob/321db41/src/react/ListItem.tsx#L20) diff --git a/docs/interfaces/CustomWindowComponentProps.md b/docs/interfaces/CustomWindowComponentProps.md index 93752d14c..94ceb58ec 100644 --- a/docs/interfaces/CustomWindowComponentProps.md +++ b/docs/interfaces/CustomWindowComponentProps.md @@ -22,7 +22,7 @@ Renderable item elements. #### Defined in -[src/react/DefaultWindow.tsx:22](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L22) +[src/react/Window.tsx:22](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L22) ___ @@ -34,7 +34,7 @@ Attributes that should be passed to the scrollable element. #### Defined in -[src/react/DefaultWindow.tsx:26](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L26) +[src/react/Window.tsx:26](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L26) ___ @@ -46,7 +46,7 @@ Total height of items. It's undefined if component is not vertically scrollable. #### Defined in -[src/react/DefaultWindow.tsx:30](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L30) +[src/react/Window.tsx:30](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L30) ___ @@ -58,7 +58,7 @@ Total width of items. It's undefined if component is not horizontally scrollable #### Defined in -[src/react/DefaultWindow.tsx:34](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L34) +[src/react/Window.tsx:34](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L34) ___ @@ -70,4 +70,4 @@ Currently component is scrolling or not. #### Defined in -[src/react/DefaultWindow.tsx:38](https://github.com/inokawa/virtua/blob/579892c/src/react/DefaultWindow.tsx#L38) +[src/react/Window.tsx:38](https://github.com/inokawa/virtua/blob/321db41/src/react/Window.tsx#L38) diff --git a/docs/interfaces/VGridHandle.md b/docs/interfaces/VGridHandle.md index d7cdd984d..b936561d2 100644 --- a/docs/interfaces/VGridHandle.md +++ b/docs/interfaces/VGridHandle.md @@ -37,7 +37,7 @@ Scroll to the item specified by index. #### Defined in -[src/react/VGrid.tsx:202](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L202) +[src/react/VGrid.tsx:151](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L151) ___ @@ -60,7 +60,7 @@ Scroll to the given offset. #### Defined in -[src/react/VGrid.tsx:208](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L208) +[src/react/VGrid.tsx:157](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L157) ___ @@ -83,7 +83,7 @@ Scroll by the given offset. #### Defined in -[src/react/VGrid.tsx:214](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L214) +[src/react/VGrid.tsx:163](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L163) ## Properties @@ -95,7 +95,7 @@ Get current scrollTop or scrollLeft. #### Defined in -[src/react/VGrid.tsx:188](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L188) +[src/react/VGrid.tsx:137](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L137) ___ @@ -107,7 +107,7 @@ Get current scrollHeight or scrollWidth. #### Defined in -[src/react/VGrid.tsx:192](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L192) +[src/react/VGrid.tsx:141](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L141) ___ @@ -119,4 +119,4 @@ Get current offsetHeight or offsetWidth. #### Defined in -[src/react/VGrid.tsx:196](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L196) +[src/react/VGrid.tsx:145](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L145) diff --git a/docs/interfaces/VGridProps.md b/docs/interfaces/VGridProps.md index d64c3bcda..6bf35fdab 100644 --- a/docs/interfaces/VGridProps.md +++ b/docs/interfaces/VGridProps.md @@ -108,7 +108,7 @@ A function to create elements rendered by this component. #### Defined in -[src/react/VGrid.tsx:224](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L224) +[src/react/VGrid.tsx:173](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L173) ___ @@ -120,7 +120,7 @@ Total row length of grid. #### Defined in -[src/react/VGrid.tsx:237](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L237) +[src/react/VGrid.tsx:186](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L186) ___ @@ -132,7 +132,7 @@ Total column length of grid. #### Defined in -[src/react/VGrid.tsx:241](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L241) +[src/react/VGrid.tsx:190](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L190) ___ @@ -148,7 +148,7 @@ Cell height hint for unmeasured items. It's recommended to specify this prop if #### Defined in -[src/react/VGrid.tsx:246](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L246) +[src/react/VGrid.tsx:195](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L195) ___ @@ -164,7 +164,7 @@ Cell width hint for unmeasured items. It's recommended to specify this prop if i #### Defined in -[src/react/VGrid.tsx:251](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L251) +[src/react/VGrid.tsx:200](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L200) ___ @@ -180,7 +180,7 @@ Number of items to render above/below the visible bounds of the grid. You can in #### Defined in -[src/react/VGrid.tsx:256](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L256) +[src/react/VGrid.tsx:205](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L205) ___ @@ -192,7 +192,7 @@ If set, the specified amount of rows will be mounted in the initial rendering re #### Defined in -[src/react/VGrid.tsx:260](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L260) +[src/react/VGrid.tsx:209](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L209) ___ @@ -204,7 +204,7 @@ If set, the specified amount of cols will be mounted in the initial rendering re #### Defined in -[src/react/VGrid.tsx:264](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L264) +[src/react/VGrid.tsx:213](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L213) ___ @@ -216,7 +216,7 @@ You have to set true if you use this component under `direction: rtl` style. #### Defined in -[src/react/VGrid.tsx:268](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L268) +[src/react/VGrid.tsx:217](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L217) ___ @@ -228,11 +228,11 @@ Customized element type for scrollable element. This element will get [CustomWin **`Default Value`** -DefaultWindow +Window #### Defined in -[src/react/VGrid.tsx:273](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L273) +[src/react/VGrid.tsx:222](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L222) ___ @@ -248,7 +248,7 @@ Customized element type for cell element. This element will get [CustomCellCompo #### Defined in -[src/react/VGrid.tsx:278](https://github.com/inokawa/virtua/blob/579892c/src/react/VGrid.tsx#L278) +[src/react/VGrid.tsx:227](https://github.com/inokawa/virtua/blob/321db41/src/react/VGrid.tsx#L227) ___ diff --git a/docs/interfaces/VListHandle.md b/docs/interfaces/VListHandle.md index 673f66683..f1251f119 100644 --- a/docs/interfaces/VListHandle.md +++ b/docs/interfaces/VListHandle.md @@ -36,7 +36,7 @@ Scroll to the item specified by index. #### Defined in -[src/react/VList.tsx:109](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L109) +[src/react/VList.tsx:54](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L54) ___ @@ -58,7 +58,7 @@ Scroll to the given offset. #### Defined in -[src/react/VList.tsx:114](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L114) +[src/react/VList.tsx:59](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L59) ___ @@ -80,7 +80,7 @@ Scroll by the given offset. #### Defined in -[src/react/VList.tsx:119](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L119) +[src/react/VList.tsx:64](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L64) ## Properties @@ -92,7 +92,7 @@ Get current scrollTop or scrollLeft. #### Defined in -[src/react/VList.tsx:96](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L96) +[src/react/VList.tsx:41](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L41) ___ @@ -104,7 +104,7 @@ Get current scrollHeight or scrollWidth. #### Defined in -[src/react/VList.tsx:100](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L100) +[src/react/VList.tsx:45](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L45) ___ @@ -116,4 +116,4 @@ Get current offsetHeight or offsetWidth. #### Defined in -[src/react/VList.tsx:104](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L104) +[src/react/VList.tsx:49](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L49) diff --git a/docs/interfaces/VListProps.md b/docs/interfaces/VListProps.md index 9c67dc51c..a95c9fab2 100644 --- a/docs/interfaces/VListProps.md +++ b/docs/interfaces/VListProps.md @@ -92,7 +92,7 @@ Elements rendered by this component. #### Defined in -[src/react/VList.tsx:129](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L129) +[src/react/VList.tsx:74](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L74) ___ @@ -108,7 +108,7 @@ Number of items to render above/below the visible bounds of the list. You can in #### Defined in -[src/react/VList.tsx:134](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L134) +[src/react/VList.tsx:79](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L79) ___ @@ -123,7 +123,7 @@ Item size hint for unmeasured items. It will help to reduce scroll jump when ite #### Defined in -[src/react/VList.tsx:141](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L141) +[src/react/VList.tsx:86](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L86) ___ @@ -135,7 +135,7 @@ If set, the specified amount of items will be mounted in the initial rendering r #### Defined in -[src/react/VList.tsx:145](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L145) +[src/react/VList.tsx:90](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L90) ___ @@ -147,7 +147,7 @@ If true, rendered as a horizontally scrollable list. Otherwise rendered as a ver #### Defined in -[src/react/VList.tsx:149](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L149) +[src/react/VList.tsx:94](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L94) ___ @@ -162,7 +162,7 @@ Scroll modes that should be set in certain situations. #### Defined in -[src/react/VList.tsx:156](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L156) +[src/react/VList.tsx:101](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L101) ___ @@ -174,11 +174,11 @@ Customized element type for scrollable element. This element will get [CustomWin **`Default Value`** -DefaultWindow +Window #### Defined in -[src/react/VList.tsx:161](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L161) +[src/react/VList.tsx:106](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L106) ___ @@ -194,7 +194,7 @@ Customized element type for item element. This element will get [CustomItemCompo #### Defined in -[src/react/VList.tsx:166](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L166) +[src/react/VList.tsx:111](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L111) ___ @@ -220,7 +220,7 @@ Callback invoked whenever scroll offset changes. #### Defined in -[src/react/VList.tsx:171](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L171) +[src/react/VList.tsx:116](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L116) ___ @@ -240,7 +240,7 @@ Callback invoked when scrolling stops. #### Defined in -[src/react/VList.tsx:175](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L175) +[src/react/VList.tsx:120](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L120) ___ @@ -269,7 +269,7 @@ Callback invoked when visible items range changes. #### Defined in -[src/react/VList.tsx:179](https://github.com/inokawa/virtua/blob/579892c/src/react/VList.tsx#L179) +[src/react/VList.tsx:124](https://github.com/inokawa/virtua/blob/321db41/src/react/VList.tsx#L124) ___ diff --git a/docs/interfaces/WVListProps.md b/docs/interfaces/WVListProps.md index 8e1d70161..ce4c4a66c 100644 --- a/docs/interfaces/WVListProps.md +++ b/docs/interfaces/WVListProps.md @@ -91,7 +91,7 @@ Elements rendered by this component. #### Defined in -[src/react/WVList.tsx:91](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L91) +[src/react/WVList.tsx:37](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L37) ___ @@ -107,7 +107,7 @@ Number of items to render above/below the visible bounds of the list. You can in #### Defined in -[src/react/WVList.tsx:96](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L96) +[src/react/WVList.tsx:42](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L42) ___ @@ -122,7 +122,7 @@ Item size hint for unmeasured items. It will help to reduce scroll jump when ite #### Defined in -[src/react/WVList.tsx:103](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L103) +[src/react/WVList.tsx:49](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L49) ___ @@ -134,7 +134,7 @@ If set, the specified amount of items will be mounted in the initial rendering r #### Defined in -[src/react/WVList.tsx:107](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L107) +[src/react/WVList.tsx:53](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L53) ___ @@ -146,7 +146,7 @@ If true, rendered as a horizontally scrollable list. Otherwise rendered as a ver #### Defined in -[src/react/WVList.tsx:111](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L111) +[src/react/WVList.tsx:57](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L57) ___ @@ -158,11 +158,11 @@ Customized element type for scrollable element. This element will get [CustomWin **`Default Value`** -DefaultWindow +Window #### Defined in -[src/react/WVList.tsx:116](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L116) +[src/react/WVList.tsx:62](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L62) ___ @@ -178,7 +178,7 @@ Customized element type for item element. This element will get [CustomItemCompo #### Defined in -[src/react/WVList.tsx:121](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L121) +[src/react/WVList.tsx:67](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L67) ___ @@ -204,7 +204,7 @@ Callback invoked whenever scroll offset changes. #### Defined in -[src/react/WVList.tsx:126](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L126) +[src/react/WVList.tsx:72](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L72) ___ @@ -224,7 +224,7 @@ Callback invoked when scrolling stops. #### Defined in -[src/react/WVList.tsx:130](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L130) +[src/react/WVList.tsx:76](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L76) ___ @@ -253,7 +253,7 @@ Callback invoked when visible items range changes. #### Defined in -[src/react/WVList.tsx:134](https://github.com/inokawa/virtua/blob/579892c/src/react/WVList.tsx#L134) +[src/react/WVList.tsx:80](https://github.com/inokawa/virtua/blob/321db41/src/react/WVList.tsx#L80) ___ diff --git a/package-lock.json b/package-lock.json index affbc91a8..660f35c39 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "virtua", - "version": "0.4.2", + "version": "0.4.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "virtua", - "version": "0.4.2", + "version": "0.4.3", "license": "MIT", "devDependencies": { "@babel/plugin-transform-react-pure-annotations": "7.18.6", diff --git a/package.json b/package.json index 199dc3ce9..c849de18e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "virtua", - "version": "0.4.2", + "version": "0.4.3", "description": "A zero-config, fast and small (~3kB) virtual list and grid component for React.", "main": "lib/index.js", "module": "lib/index.mjs",