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,
"dependencies": {
"@air/react-drag-to-select": "^5.0.8",
"@apollo/client": "3.7.17",
"@apollo/client": "^3.7.17",
"@blocknote/core": "^0.8.2",
"@blocknote/react": "^0.8.2",
"@chakra-ui/accordion": "^2.3.0",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -50,17 +50,17 @@ export const castAsPositiveIntegerOrNull = (
return null;
}
if (probablePositiveNumberOrNull === '') {
return null;
if (isString(probablePositiveNumberOrNull)) {
if (probablePositiveNumberOrNull === '') {
return null;
}
return +probablePositiveNumberOrNull;
}
if (isNumber(probablePositiveNumberOrNull)) {
return probablePositiveNumberOrNull;
}
if (isString(probablePositiveNumberOrNull)) {
return +probablePositiveNumberOrNull;
}
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/credential-providers": "^3.363.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/common": "^9.0.0",
"@nestjs/config": "^2.3.2",
"@nestjs/core": "^9.0.0",
"@nestjs/graphql": "^12.0.8",
"@nestjs/graphql": "12.0.8",
"@nestjs/jwt": "^10.0.3",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.0.0",
@@ -48,8 +48,8 @@
"@nestjs/terminus": "^9.2.2",
"@nestjs/typeorm": "^10.0.0",
"@ptc-org/nestjs-query-core": "^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-graphql": "4.2.0",
"@ptc-org/nestjs-query-typeorm": "4.2.1-alpha.2",
"@sentry/node": "^7.66.0",
"@sentry/tracing": "^7.66.0",
"@types/lodash.camelcase": "^4.3.7",

File diff suppressed because it is too large Load Diff