quickflex 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
1
  # React QuickFlex
2
2
 
3
- `quickflex` is a lightweight, customizable Flexbox component built with React and Emotion. It simplifies the usage of Flexbox in your React applications by providing an easy-to-use component with flexible options.
3
+ **QuickFlex** is a **lightweight, customizable Flexbox layout component** for **React** built with **TypeScript** and **Emotion**. It simplifies building responsive layouts by providing a **flexible, declarative API** for all Flexbox properties.
4
4
 
5
5
  ## Features
6
6
 
7
- - Simple, declarative API to manage Flexbox layouts
8
- - Full control over flex properties (`justify`, `align`, `direction`, `wrap`, `gap`)
9
- - Written in TypeScript, with full type safety
10
- - Lightweight and fast, optimized for performance
11
- - Easily extendable with `className` or inline `style` props
12
- - Not dependent on any CSS libraries or frameworks
7
+ - Declarative React API for Flexbox layouts
8
+ - Full control over flex properties: `justify`, `align`, `direction`, `wrap`, `gap`
9
+ - Written in **TypeScript** with full type safety
10
+ - Lightweight and fast, optimized for performance
11
+ - Easily extendable via `className` or inline `style`
12
+ - No dependency on CSS frameworks
13
13
 
14
14
  ## Installation
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickflex",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,11 +9,12 @@
9
9
  "build": "rollup -c"
10
10
  },
11
11
  "keywords": [
12
+ "react",
13
+ "react-flex",
12
14
  "css",
13
15
  "flex",
14
16
  "flexbox",
15
17
  "layout",
16
- "react",
17
18
  "emotion",
18
19
  "ui-components",
19
20
  "flex-layout"