Skip to content

Commit ecd57cf

Browse files
authored
Merge pull request #43 from pheralb/next
🚀 v1.2.9 + Website: React-Router v7 + Tailwind CSS v4 + shadcn/ui Support + Open with v0
2 parents 327e57d + 6c7bc43 commit ecd57cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3583
-6699
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: library
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Install Node.js
2323
uses: actions/setup-node@v4

.github/workflows/publish-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: 📦 Publish
22

33
on:
4-
workflow_dispatch:
5-
release:
4+
release:
65
types: [published]
76

87
concurrency: ${{ github.workflow }}-${{ github.ref }}
@@ -16,7 +15,7 @@ jobs:
1615
working-directory: library
1716
steps:
1817
- name: Checkout Repo
19-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
2019

2120
- name: Install Node.js
2221
uses: actions/setup-node@v4
@@ -37,7 +36,7 @@ jobs:
3736
runs-on: ubuntu-latest
3837
steps:
3938
- name: Checkout Repo
40-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4140

4241
- name: Install Node.js
4342
uses: actions/setup-node@v4

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
# Turbo =>
1+
# Turbo
22
.turbo
33

4-
# Dependencies =>
4+
# Dependencies
55
node_modules
66
pnpm-lock.json
77
yarn.lock
88

9-
# Optional npm cache directory =>
9+
# Optional npm cache directory
1010
.npm
1111

12-
# Build folder =>
12+
# Build folder
1313
build
1414

15-
# Remix =>
15+
# Remix
1616
.cache
1717
.env
1818
.vercel
1919
.output
2020
api
21+
.react-router
2122

2223
/build/
2324
/public/build

library/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ This is a monorepo project created with:
114114
**For library:**
115115

116116
- [SWC](https://swc.rs/) - Rust-based platform for the Web.
117-
- [React 18](https://reactjs.org/) - A JavaScript library for building user interfaces.
117+
- [React 19](https://reactjs.org/) - A JavaScript library for building user interfaces.
118118
- [Typescript](https://www.typescriptlang.org/) - TypeScript is JavaScript with syntax for types.
119119

120120
**For website:**
121121

122-
- [Remix](https://remix.run/) - Create modern, resilient user experiences with web fundamentals.
122+
- [React Router v7](https://reactrouter.com/) - Create modern, resilient user experiences with web fundamentals.
123123
- [Typescript](https://www.typescriptlang.org/) - TypeScript is JavaScript with syntax for types.
124124
- [Tailwind CSS](https://tailwindcss.com/) - A utility-first CSS framework for rapidly building custom designs.
125-
- [tailwindcss-animate](https://github.com/jamiebuilds/tailwindcss-animate) - A Tailwind CSS plugin for creating beautiful animations.
125+
- [tw-animate-css](https://github.com/Wombosvideo/tw-animate-css) - A collection of Tailwind CSS v4.0 utilities for creating beautiful animations.
126126
- [shadcn/ui + Radix UI](https://ui.shadcn.com/) - An opinionated toast component for React.
127127
- [Sonner](https://sonner.emilkowal.ski/) - An opinionated toast component for React.
128128

library/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-symbols/icons",
3-
"version": "1.2.8",
3+
"version": "1.2.9",
44
"description": "Symbols icons by Miguel Solorio for React",
55
"author": "@pheralb_",
66
"license": "MIT",
@@ -52,14 +52,14 @@
5252
"typecheck": "tsc --noEmit"
5353
},
5454
"devDependencies": {
55-
"@swc/cli": "0.5.2",
56-
"@swc/core": "1.10.4",
57-
"@types/react": "18.3.18",
58-
"@types/react-dom": "18.3.5",
59-
"react": "18.3.1",
60-
"react-dom": "18.3.1",
61-
"tsup": "8.3.5",
62-
"typescript": "5.7.2"
55+
"@swc/cli": "0.7.3",
56+
"@swc/core": "1.11.24",
57+
"@types/react": "19.1.2",
58+
"@types/react-dom": "19.1.3",
59+
"react": "19.1.0",
60+
"react-dom": "19.1.0",
61+
"tsup": "8.4.0",
62+
"typescript": "5.8.3"
6363
},
6464
"peerDependencies": {
6565
"react": ">= 16.8",

library/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ export { default as GoRed } from "./library/goRed.js";
206206
export { default as GoYellow } from "./library/goYellow.js";
207207
export { default as NestDecorator } from "./library/nestDecorator.js";
208208
export { default as NestMiddleware } from "./library/nestMiddleware.js";
209+
export { default as Commitlint } from "./library/commitlint.js";
209210

210211
// Folders =>
211212

library/src/library/commitlint.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const Commitlint: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
d="M3.8272 4V9.10112H5.47703V4H3.8272ZM15.3915 5.70037C13.9777 5.70057 12.6011 6.16681 11.4636 7.03073C10.326 7.89466 9.48741 9.11083 9.07065 10.5009L7.13051 12.5L9.07155 14.4972C9.90512 17.2772 12.4176 19.3006 15.3915 19.3006C19.0434 19.3006 22 16.2575 22 12.5C22 8.74251 19.0425 5.70037 15.3915 5.70037ZM18.0688 9.1676L19.29 10.6938L14.2941 15.8324L11.4012 12.5861L12.6206 11.3315L14.2932 13.0524L18.0688 9.1676ZM4.65257 10.7996C3.74438 10.7996 3 11.5646 3 12.5C2.99982 12.8366 3.09667 13.1656 3.27828 13.4456C3.4599 13.7255 3.71813 13.9437 4.0203 14.0726C4.32247 14.2014 4.65501 14.2352 4.97583 14.1696C5.29666 14.104 5.59137 13.9419 5.82267 13.7039C6.05396 13.466 6.21146 13.1627 6.27523 12.8326C6.339 12.5025 6.30618 12.1604 6.18092 11.8494C6.05566 11.5385 5.84359 11.2728 5.57154 11.086C5.29948 10.8991 4.97967 10.7994 4.65257 10.7996ZM3.8272 15.8989V21H5.47794V15.8989H3.8272Z"
12+
fill="#009688"
13+
/>
14+
</svg>
15+
);
16+
17+
export default Commitlint;

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"release": "turbo build --filter=@react-symbols/website^... && changeset publish"
2323
},
2424
"devDependencies": {
25-
"@changesets/cli": "2.27.9",
26-
"@types/node": "22.8.1",
27-
"prettier": "3.3.3",
28-
"prettier-plugin-tailwindcss": "0.6.8",
25+
"@changesets/cli": "2.29.2",
26+
"@types/node": "22.15.3",
27+
"prettier": "3.5.3",
28+
"prettier-plugin-tailwindcss": "0.6.11",
2929
"turbo": "latest"
3030
},
3131
"engines": {

0 commit comments

Comments
 (0)