react-better-html 1.1.8 → 1.1.10

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 (3) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +29 -0
  3. package/package.json +5 -7
package/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 krissvv
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,3 +1,32 @@
1
1
  # react-better-html
2
2
 
3
3
  A component library for react that is as close to plane html as possible
4
+
5
+ ![npm](https://img.shields.io/npm/v/react-calendar.svg)
6
+ ![NPM Version](https://img.shields.io/npm/v/react-better-html)
7
+ ![GitHub Repo stars](https://img.shields.io/github/stars/krissvv/react-better-html?style=flat)
8
+ ![GitHub package.json version](https://img.shields.io/github/package-json/v/krissvv/react-better-html)
9
+ ![NPM Type Definitions](https://img.shields.io/npm/types/react-better-html)<br/>
10
+ ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/krissvv/react-better-html/deploy.yml)
11
+ ![GitHub last commit](https://img.shields.io/github/last-commit/krissvv/react-better-html)
12
+ ![NPM Downloads](https://img.shields.io/npm/dm/react-better-html)<br/>
13
+ ![NPM License](https://img.shields.io/npm/l/react-better-html)<br/>
14
+ ![React dep](https://img.shields.io/badge/React-v19-9b6499)
15
+
16
+ ## Requirements
17
+
18
+ - [React](https://react.dev) version 19.0 or above.
19
+
20
+ The library uses [styles-components](https://styled-components.com) under the hood to create all of the components in the library. `styles-components` is a peer dependency and will be installed automatically when downloading the `react-better-html`.
21
+
22
+ ## Installation
23
+
24
+ To install `react-better-html` run the following command in your project directory:
25
+
26
+ ```bash
27
+ npm install react-better-html
28
+ ```
29
+
30
+ ## Problems?
31
+
32
+ Ask for help on [Stack Overflow](https://stackoverflow.com/questions/ask), on our [GitHub repository](https://github.com/krissvv/react-better-html/issues/new) or contact the contributors.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-better-html",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "A component library for react that is as close to plane html as possible",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -16,7 +16,7 @@
16
16
  "type": "git",
17
17
  "url": "git+https://github.com/krissvv/react-better-html.git"
18
18
  },
19
- "homepage": "https://github.com/krissvv/react-better-html",
19
+ "homepage": "https://krissvv.github.io/react-better-html",
20
20
  "bugs": {
21
21
  "url": "https://github.com/krissvv/react-better-html/issues"
22
22
  },
@@ -33,13 +33,11 @@
33
33
  "html",
34
34
  "better"
35
35
  ],
36
- "author": "Kristiyan Valchev (kriss.vv)",
37
- "license": "ISC",
38
- "dependencies": {
39
- "rimraf": "^6.0.1"
40
- },
36
+ "author": "Kristiyan Valchev (krissvv)",
37
+ "license": "MIT",
41
38
  "devDependencies": {
42
39
  "@types/react": "^19.0.10",
40
+ "rimraf": "^6.0.1",
43
41
  "typescript": "^5.5.3"
44
42
  },
45
43
  "peerDependencies": {