mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 12:22:29 +00:00
Yarn upgrade (#2749)
* yarn upgrade front and docs * upgrade yarn server * Revert change not needed
This commit is contained in:
4168
docs/yarn.lock
4168
docs/yarn.lock
File diff suppressed because it is too large
Load Diff
@@ -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",
|
||||
|
||||
@@ -136,7 +136,7 @@ export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
|
||||
[
|
||||
errorLink,
|
||||
authLink,
|
||||
...(extraLinks ? extraLinks : []),
|
||||
...(extraLinks || []),
|
||||
isDebugMode ? logger : null,
|
||||
retryLink,
|
||||
httpLink,
|
||||
|
||||
@@ -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" />
|
||||
</>
|
||||
);
|
||||
|
||||
};
|
||||
|
||||
@@ -714,7 +714,6 @@ export {
|
||||
IconBrandMercedes,
|
||||
IconBrandMessenger,
|
||||
IconBrandMeta,
|
||||
IconBrandMicrosoftTeams,
|
||||
IconBrandMinecraft,
|
||||
IconBrandMiniprogram,
|
||||
IconBrandMixpanel,
|
||||
@@ -813,6 +812,7 @@ export {
|
||||
IconBrandTabler,
|
||||
IconBrandTailwind,
|
||||
IconBrandTaobao,
|
||||
IconBrandTeams,
|
||||
IconBrandTed,
|
||||
IconBrandTelegram,
|
||||
IconBrandTerraform,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
5603
front/yarn.lock
5603
front/yarn.lock
File diff suppressed because it is too large
Load Diff
@@ -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",
|
||||
|
||||
5000
server/yarn.lock
5000
server/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user