@babelize/elements 1.0.0 → 1.0.2
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 +15 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
Open-source Localization UI components for React and Tailwind CSS.
|
|
9
9
|
<br />
|
|
10
|
-
|
|
10
|
+
Ready-to-use components for language switchers, locale pickers, translation widgets, and more — built by the community.
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
@@ -27,17 +27,29 @@
|
|
|
27
27
|
|
|
28
28
|
## What is Babelize Elements?
|
|
29
29
|
|
|
30
|
-
**Babelize Elements** is a community-built library of
|
|
30
|
+
**Babelize Elements** is a community-built library of **Localization UI components** for React and Tailwind CSS. Every localized app needs a language switcher, a locale picker, RTL-aware layouts, and pluralization UI — Elements turns that repetitive work into a shared, open-source toolbox.
|
|
31
31
|
|
|
32
|
-
- **
|
|
32
|
+
- **Easy to install** — `npm install @babelize/elements` and start using components immediately.
|
|
33
33
|
- **Localization-first** — pluralization, RTL, and locale data built into every component.
|
|
34
34
|
- **Accessible** — keyboard support, ARIA labels, and WCAG-aware markup.
|
|
35
35
|
- **Open source** — MIT-licensed, free forever, built by contributors like you.
|
|
36
36
|
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install @babelize/elements
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Documentation
|
|
44
|
+
|
|
45
|
+
Visit [elements.babelize.co](https://elements.babelize.co) for full documentation, guides, and component demos.
|
|
46
|
+
|
|
37
47
|
## Docs & Website
|
|
38
48
|
|
|
39
49
|
The landing page and component documentation live at [elements.babelize.co](https://elements.babelize.co), built with Next.js and [Fumadocs](https://fumadocs.dev).
|
|
40
50
|
|
|
51
|
+
### Local Development
|
|
52
|
+
|
|
41
53
|
```bash
|
|
42
54
|
bun install
|
|
43
55
|
bun run dev
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babelize/elements",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Open-source
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Open-source Localization UI components for React and Tailwind CSS.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/registry/components/index.js",
|