mirror of
https://github.com/lingble/twenty.git
synced 2025-10-31 20:57:55 +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,
|
"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",
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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" />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
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/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",
|
||||||
|
|||||||
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