Skip to content

Commit 09f5e49

Browse files
committed
chore: update version and changelog
1 parent 4e63599 commit 09f5e49

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @crob/react-stack-grid
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- README update
8+
39
## 1.0.1
410

511
### Patch Changes

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ See the [demo](https://react-stack-grid.crobert.dev/) for a live example of Stac
1717
## Installation
1818

1919
```bash
20-
npm install react-stack-grid
20+
npm install @crob/react-stack-grid
2121
# or
22-
yarn add react-stack-grid
22+
yarn add @crob/react-stack-grid
2323
```
2424

2525
## Usage
2626

2727
### Basic Usage
2828

2929
```tsx
30-
import { StackGrid } from 'react-stack-grid';
30+
import { StackGrid } from '@crob/react-stack-grid';
3131

3232
interface Item {
3333
id: number;
@@ -66,7 +66,7 @@ const YourComponent = () => {
6666
You can manually trigger a reflow of the grid using a ref:
6767

6868
```tsx
69-
import { StackGrid, StackGridRef } from 'react-stack-grid';
69+
import { StackGrid, StackGridRef } from '@crob/react-stack-grid';
7070
import { useRef } from 'react';
7171

7272
const YourComponent = () => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crob/react-stack-grid",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A responsive and dynamic stack grid component for React, designed to make it easy and efficient to create dynamic, responsive grid layouts. It automatically arranges items based on the available container width, ensuring a visually appealing presentation on all devices.",
55
"type": "module",
66
"main": "dist/cjs/index.js",

0 commit comments

Comments
 (0)