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.
- package/README.md +7 -7
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# React QuickFlex
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
-
|
|
8
|
-
- Full control over flex properties
|
|
9
|
-
- Written in TypeScript
|
|
10
|
-
- Lightweight and fast, optimized for performance
|
|
11
|
-
- Easily extendable
|
|
12
|
-
-
|
|
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.
|
|
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"
|