Skip to content

Commit 45c360a

Browse files
authored
Merge pull request #533 from acelaya-forks/feature/fa-7
Update to FownAwesome 7
2 parents acdfdfc + 20c29ac commit 45c360a

27 files changed

+91
-104
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
8+
## [1.1.0] - 2025-07-28
9+
### Added
10+
* *Nothing*
11+
12+
### Changed
13+
* Update to FontAwesome 7
14+
15+
### Deprecated
16+
* *Nothing*
17+
18+
### Removed
19+
* *Nothing*
20+
21+
### Fixed
22+
* *Nothing*
23+
24+
725
## [1.0.1] - 2025-06-22
826
### Added
927
* *Nothing*

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.53.1-noble
1+
FROM mcr.microsoft.com/playwright:v1.54.1-noble
22

33
ENV NODE_VERSION 22.14
44
ENV TINI_VERSION v0.19.0

package-lock.json

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
"clsx": "^2.1.1"
3636
},
3737
"peerDependencies": {
38-
"@fortawesome/fontawesome-common-types": "^6.7.2",
39-
"@fortawesome/fontawesome-free": "^6.7.2",
40-
"@fortawesome/fontawesome-svg-core": "^6.7.2",
41-
"@fortawesome/free-regular-svg-icons": "^6.7.2",
42-
"@fortawesome/free-solid-svg-icons": "^6.7.2",
43-
"@fortawesome/react-fontawesome": "^0.2.2",
38+
"@fortawesome/fontawesome-common-types": "^7.0.0",
39+
"@fortawesome/fontawesome-free": "^7.0.0",
40+
"@fortawesome/fontawesome-svg-core": "^7.0.0",
41+
"@fortawesome/free-regular-svg-icons": "^7.0.0",
42+
"@fortawesome/free-solid-svg-icons": "^7.0.0",
43+
"@fortawesome/react-fontawesome": "^0.2.3",
4444
"react": "^19.1",
4545
"react-dom": "^19.1",
4646
"react-router": "^7.0.2",

src/content/Listbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import clsx from 'clsx';
1+
import { clsx } from 'clsx';
22
import type { ReactNode, RefObject } from 'react';
33
import { useCallback, useEffect, useState } from 'react';
44
import type { CardProps } from '../surfaces';

src/content/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import clsx from 'clsx';
1+
import { clsx } from 'clsx';
22
import type { FC, HTMLProps, PropsWithChildren, ReactNode } from 'react';
33
import { createContext, useContext } from 'react';
44
import type { Size } from '../types';

src/feedback/CardModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import clsx from 'clsx';
1+
import { clsx } from 'clsx';
22
import type { FC, FormEvent, ReactNode } from 'react';
33
import { useCallback, useEffect, useRef, useState } from 'react';
44
import { Button, CloseButton } from '../form';

src/feedback/ModalDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import clsx from 'clsx';
1+
import { clsx } from 'clsx';
22
import type { FC, HTMLProps } from 'react';
33
import { useEffect , useRef } from 'react';
44
import { createPortal } from 'react-dom';

src/form/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import clsx from 'clsx';
1+
import { clsx } from 'clsx';
22
import type { HTMLProps, PropsWithChildren } from 'react';
33
import { forwardRef } from 'react';
44
import type { LinkProps } from 'react-router';

src/form/CloseButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { faClose } from '@fortawesome/free-solid-svg-icons';
22
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
3-
import clsx from 'clsx';
3+
import { clsx } from 'clsx';
44
import type { HTMLProps } from 'react';
55
import { forwardRef } from 'react';
66
import type { Size } from '../types';

0 commit comments

Comments
 (0)