Skip to content

Commit

Permalink
Merge branch 'release/1.1.26'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jan 7, 2024
2 parents fa71abc + 16fedd2 commit d909396
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 75 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.1.26] - 2024-01-07

### Bug Fixes

- Update class name orders on some of components

## [1.1.25] - 2024-01-07

### Miscellaneous Tasks
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-lingui-template",
"version": "1.1.25",
"version": "1.1.26",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -15,9 +15,9 @@
"dependencies": {
"@headlessui/react": "1.7.17",
"@heroicons/react": "2.1.1",
"@lingui/core": "4.5.0",
"@lingui/core": "4.7.0",
"@lingui/detect-locale": "4.7.0",
"@lingui/react": "4.5.0",
"@lingui/react": "4.7.0",
"autoprefixer": "10.4.16",
"clsx": "2.1.0",
"cssnano": "6.0.3",
Expand All @@ -35,7 +35,7 @@
"@lingui/conf": "4.7.0",
"@lingui/format-po": "4.7.0",
"@lingui/loader": "4.7.0",
"@lingui/macro": "4.5.0",
"@lingui/macro": "4.7.0",
"@lingui/swc-plugin": "4.0.4",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
Expand Down
90 changes: 20 additions & 70 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/locale-switcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function LocaleSwitcher({ className }: LocalSwitcherProps) {
leaveFrom="transform opacity-100 scale-100"
leaveTo="transform opacity-0 scale-95"
>
<Menu.Items className="absolute z-10 mt-2 w-32 rounded-md border border-gray-900 ring-1 ring-black/5 focus:outline-none ltr:right-0 ltr:origin-top-right rtl:left-0 rtl:origin-top-left dark:border-white">
<Menu.Items className="absolute z-10 mt-2 w-32 rounded-md border border-gray-900 ring-1 ring-black/5 focus:outline-none dark:border-white ltr:right-0 ltr:origin-top-right rtl:left-0 rtl:origin-top-left">
<div className="py-1">
{availableLocales.map((locale) => (
<Menu.Item key={locale}>
Expand Down

0 comments on commit d909396

Please sign in to comment.