Skip to content

Commit cf539c5

Browse files
authored
some dependency updates (#1768)
1 parent c181ede commit cf539c5

File tree

10 files changed

+4050
-6795
lines changed

10 files changed

+4050
-6795
lines changed

example/react-component-lib/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11661166
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11671167

11681168
```html
1169-
<!DOCTYPE html>
1169+
<!doctype html>
11701170
<html lang="en">
11711171
<head>
11721172
<meta property="og:title" content="__OG_TITLE__" />

example/react-localstorage/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11661166
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11671167

11681168
```html
1169-
<!DOCTYPE html>
1169+
<!doctype html>
11701170
<html lang="en">
11711171
<head>
11721172
<meta property="og:title" content="__OG_TITLE__" />

example/react/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11661166
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11671167

11681168
```html
1169-
<!DOCTYPE html>
1169+
<!doctype html>
11701170
<html lang="en">
11711171
<head>
11721172
<meta property="og:title" content="__OG_TITLE__" />

example/v9.x.x/react-fluent/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11491149
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11501150

11511151
```html
1152-
<!DOCTYPE html>
1152+
<!doctype html>
11531153
<html lang="en">
11541154
<head>
11551155
<meta property="og:title" content="__OG_TITLE__" />

example/v9.x.x/react-icu/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11491149
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11501150

11511151
```html
1152-
<!DOCTYPE html>
1152+
<!doctype html>
11531153
<html lang="en">
11541154
<head>
11551155
<meta property="og:title" content="__OG_TITLE__" />

example/v9.x.x/react/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ Note that the server will use a self-signed certificate, so your web browser wil
11491149
Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
11501150

11511151
```html
1152-
<!DOCTYPE html>
1152+
<!doctype html>
11531153
<html lang="en">
11541154
<head>
11551155
<meta property="og:title" content="__OG_TITLE__" />

icu.macro.d.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ declare module 'react-i18next/icu.macro' {
3333
? // support the standard properties of Plural
3434
PluralSubProps<Key, Ns>[P]
3535
: // this supports infinite $0={..} or $123={..}
36-
// technically it also supports $-1={..} and $2.3={..} but we don't need to
37-
// worry since that's invalid syntax.
38-
P extends `$${number}`
39-
? string | ReactElement
40-
: never;
36+
// technically it also supports $-1={..} and $2.3={..} but we don't need to
37+
// worry since that's invalid syntax.
38+
P extends `$${number}`
39+
? string | ReactElement
40+
: never;
4141
};
4242

4343
interface SelectSubProps {

index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ export type UseTranslationResponse<Ns extends Namespace, KPrefix> = [
9595
export type FallbackNs<Ns> = Ns extends undefined
9696
? _DefaultNamespace
9797
: Ns extends Namespace
98-
? Ns
99-
: _DefaultNamespace;
98+
? Ns
99+
: _DefaultNamespace;
100100

101101
export function useTranslation<
102102
Ns extends FlatNamespace | $Tuple<FlatNamespace> | undefined = undefined,

0 commit comments

Comments
 (0)