From f53499090cddf9edea6569490e90ac608b528bcd Mon Sep 17 00:00:00 2001 From: Tom Pietsch Date: Thu, 2 May 2024 23:03:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20released=20new=20version=201.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 2 +- .gitignore | 2 +- .npmignore | 2 +- .prettierignore | 2 +- LICENSE.md | 2 +- README.md | 18 +++++++++--------- index.html | 2 +- .../ExpandableGrid/ExpandableGrid.tsx | 2 +- lib/components/ExpandableGrid/index.ts | 2 +- lib/hooks/useElementWidth.ts | 2 +- lib/main.ts | 2 +- lib/vite-env.d.ts | 2 +- package.json | 14 +++++++------- src/examples/Gallery/index.tsx | 2 +- src/examples/Simple/index.tsx | 2 +- src/stories/GalleryExample.stories.ts | 2 +- src/stories/SimpleExample.stories.ts | 2 +- src/stories/Welcome.mdx | 6 +++--- src/vite-env.d.ts | 2 +- vite.config.ts | 2 +- 20 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.eslintignore b/.eslintignore index 4c08b6d..549ecac 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,4 @@ -# Copyright 2024 Tom Pietsch +# Copyright 2024 Temmi Pietsch # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the “Software”), to deal in diff --git a/.gitignore b/.gitignore index 7c87368..2f608cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# Copyright 2024 Tom Pietsch +# Copyright 2024 Temmi Pietsch # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the “Software”), to deal in diff --git a/.npmignore b/.npmignore index 6358084..e0940fb 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,4 @@ -# Copyright 2024 Tom Pietsch +# Copyright 2024 Temmi Pietsch # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the “Software”), to deal in diff --git a/.prettierignore b/.prettierignore index 5821884..a0c50ae 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,4 @@ -# Copyright 2024 Tom Pietsch +# Copyright 2024 Temmi Pietsch # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the “Software”), to deal in diff --git a/LICENSE.md b/LICENSE.md index c109ac9..361d31c 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright 2024 Tom Pietsch +Copyright 2024 Temmi Pietsch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in diff --git a/README.md b/README.md index 8a7a326..f591e29 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# react-expandable-grid - [![npm](https://img.shields.io/npm/v/@tomxpcvx/react-expandable-grid.svg?color=%2345bf17&style=popout)](https://www.npmjs.com/package/@tomxpcvx/react-expandable-grid) +# react-expandable-grid - [![npm](https://img.shields.io/npm/v/@temmiland/react-expandable-grid.svg?color=%2345bf17&style=popout)](https://www.npmjs.com/package/@temmiland/react-expandable-grid) react-expandable-grid is a simple-to-use component designed to create grids with an expanding detail view. It provides an easy solution for quickly setting up galleries and portfolios in your React applications. With this component, when a user clicks on an element of your choice, a preview window opens up, displaying a larger (or smaller, depending on the settings) area where you can customize and showcase your content as desired. @@ -29,12 +29,12 @@ Trying it out is always simpler than just reading about it. Take a look at the d ## Demo -You can reach the Demo here: [`https://ghp.pietsch.earth/react-expandable-grid`](https://ghp.pietsch.earth/react-expandable-grid) +You can reach the Demo here: [`https://demo.temmi.land/react-expandable-grid`](https://demo.temmi.land/react-expandable-grid) To try it locally, run: ```bash -git clone git@github.com:tomxpcvx/react-expandable-grid.git +git clone git@github.com:temmiland/react-expandable-grid.git cd react-expandable-grid bun i bun run dev @@ -47,12 +47,12 @@ Then open [`localhost:6006`](http://localhost:6006) in a browser. A straightforward method for using react-expandable-grid involves installing it from the NPM registry and integrating it into your React build process. ```bash -bun i @tomxpcvx/react-expandable-grid +bun i @temmiland/react-expandable-grid # or for those living under a rock :D -npm i @tomxpcvx/react-expandable-grid -pnpm i @tomxpcvx/react-expandable-grid -yarn i @tomxpcvx/react-expandable-grid +npm i @temmiland/react-expandable-grid +pnpm i @temmiland/react-expandable-grid +yarn i @temmiland/react-expandable-grid ``` ## Usage @@ -120,7 +120,7 @@ To build, watch and serve the examples (which will also watch the component sour ### (MIT License) ```text -Copyright 2024 Tom Pietsch +Copyright 2024 Temmi Pietsch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in diff --git a/index.html b/index.html index e044850..fbc6c53 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@