Yarn upgrade (#2749)

* yarn upgrade front and docs

* upgrade yarn server

* Revert change not needed
This commit is contained in:
Félix Malfait
2023-11-28 16:48:02 +01:00
committed by GitHub
parent 8f03ba88a7
commit aeccc87ac5
11 changed files with 7242 additions and 7571 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@
"private": true, "private": true,
"dependencies": { "dependencies": {
"@air/react-drag-to-select": "^5.0.8", "@air/react-drag-to-select": "^5.0.8",
"@apollo/client": "3.7.17", "@apollo/client": "^3.7.17",
"@blocknote/core": "^0.8.2", "@blocknote/core": "^0.8.2",
"@blocknote/react": "^0.8.2", "@blocknote/react": "^0.8.2",
"@chakra-ui/accordion": "^2.3.0", "@chakra-ui/accordion": "^2.3.0",

View File

@@ -136,7 +136,7 @@ export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
[ [
errorLink, errorLink,
authLink, authLink,
...(extraLinks ? extraLinks : []), ...(extraLinks || []),
isDebugMode ? logger : null, isDebugMode ? logger : null,
retryLink, retryLink,
httpLink, httpLink,

View File

@@ -219,7 +219,7 @@ export const ValidationStep = <T extends string>({
onRowsChange={updateRow} onRowsChange={updateRow}
columns={columns} columns={columns}
selectedRows={selectedRows} selectedRows={selectedRows}
onSelectedRowsChange={setSelectedRows} onSelectedRowsChange={setSelectedRows as any} // TODO: replace 'any'
components={{ components={{
noRowsFallback: ( noRowsFallback: (
<StyledNoRowsContainer> <StyledNoRowsContainer>
@@ -235,4 +235,5 @@ export const ValidationStep = <T extends string>({
<ContinueButton onContinue={onContinue} title="Confirm" /> <ContinueButton onContinue={onContinue} title="Confirm" />
</> </>
); );
}; };

View File

@@ -714,7 +714,6 @@ export {
IconBrandMercedes, IconBrandMercedes,
IconBrandMessenger, IconBrandMessenger,
IconBrandMeta, IconBrandMeta,
IconBrandMicrosoftTeams,
IconBrandMinecraft, IconBrandMinecraft,
IconBrandMiniprogram, IconBrandMiniprogram,
IconBrandMixpanel, IconBrandMixpanel,
@@ -813,6 +812,7 @@ export {
IconBrandTabler, IconBrandTabler,
IconBrandTailwind, IconBrandTailwind,
IconBrandTaobao, IconBrandTaobao,
IconBrandTeams,
IconBrandTed, IconBrandTed,
IconBrandTelegram, IconBrandTelegram,
IconBrandTerraform, IconBrandTerraform,

View File

@@ -11,7 +11,7 @@ type TimingProfilerProps = {
export const TimingProfiler = ({ id, children }: TimingProfilerProps) => { export const TimingProfiler = ({ id, children }: TimingProfilerProps) => {
const handleRender = ( const handleRender = (
id: string, id: string,
phase: 'mount' | 'update', phase: 'mount' | 'update' | 'nested-update',
actualDuration: number, actualDuration: number,
baseDuration: number, baseDuration: number,
startTime: number, startTime: number,

View File

@@ -60,17 +60,16 @@ export const castAsIntegerOrNull = (
return null; return null;
} }
if (isString(probableNumberOrNull)) {
if (probableNumberOrNull === '') { if (probableNumberOrNull === '') {
return null; return null;
} }
return +probableNumberOrNull;
}
if (isNumber(probableNumberOrNull)) { if (isNumber(probableNumberOrNull)) {
return probableNumberOrNull; return probableNumberOrNull;
} }
if (isString(probableNumberOrNull)) {
return +probableNumberOrNull;
}
return null; return null;
}; };

View File

@@ -50,17 +50,17 @@ export const castAsPositiveIntegerOrNull = (
return null; return null;
} }
if (isString(probablePositiveNumberOrNull)) {
if (probablePositiveNumberOrNull === '') { if (probablePositiveNumberOrNull === '') {
return null; return null;
} }
return +probablePositiveNumberOrNull;
}
if (isNumber(probablePositiveNumberOrNull)) { if (isNumber(probablePositiveNumberOrNull)) {
return probablePositiveNumberOrNull; return probablePositiveNumberOrNull;
} }
if (isString(probablePositiveNumberOrNull)) {
return +probablePositiveNumberOrNull;
}
return null; return null;
}; };

File diff suppressed because it is too large Load Diff

View File

@@ -35,12 +35,12 @@
"@aws-sdk/client-s3": "^3.363.0", "@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/credential-providers": "^3.363.0", "@aws-sdk/credential-providers": "^3.363.0",
"@graphql-tools/schema": "^10.0.0", "@graphql-tools/schema": "^10.0.0",
"@graphql-yoga/nestjs": "^2.1.0", "@graphql-yoga/nestjs": "2.1.0",
"@nestjs/apollo": "^11.0.5", "@nestjs/apollo": "^11.0.5",
"@nestjs/common": "^9.0.0", "@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.3.2", "@nestjs/config": "^2.3.2",
"@nestjs/core": "^9.0.0", "@nestjs/core": "^9.0.0",
"@nestjs/graphql": "^12.0.8", "@nestjs/graphql": "12.0.8",
"@nestjs/jwt": "^10.0.3", "@nestjs/jwt": "^10.0.3",
"@nestjs/passport": "^9.0.3", "@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.0.0", "@nestjs/platform-express": "^9.0.0",
@@ -48,8 +48,8 @@
"@nestjs/terminus": "^9.2.2", "@nestjs/terminus": "^9.2.2",
"@nestjs/typeorm": "^10.0.0", "@nestjs/typeorm": "^10.0.0",
"@ptc-org/nestjs-query-core": "^4.2.0", "@ptc-org/nestjs-query-core": "^4.2.0",
"@ptc-org/nestjs-query-graphql": "^4.2.0", "@ptc-org/nestjs-query-graphql": "4.2.0",
"@ptc-org/nestjs-query-typeorm": "^4.2.1-alpha.2", "@ptc-org/nestjs-query-typeorm": "4.2.1-alpha.2",
"@sentry/node": "^7.66.0", "@sentry/node": "^7.66.0",
"@sentry/tracing": "^7.66.0", "@sentry/tracing": "^7.66.0",
"@types/lodash.camelcase": "^4.3.7", "@types/lodash.camelcase": "^4.3.7",

File diff suppressed because it is too large Load Diff