generated from 8iq/nodejs-hackathon-boilerplate-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(condo): INFRA-499 bump typescript to v5. Bump compiler target to …
…ES6. Bump storybook to v7 (#5215) * fix(condo): INFRA-499 fixed types in AcquiringReceipt.tsx * fix(condo): INFRA-499 fixed using withIntl in _app.tsx * fix(condo): INFRA-499 mutations.utils.js moved to ts * fix(condo): INFRA-499 fixed types in PaymentsTab.tsx * fix(condo): INFRA-499 fixed types in Header.tsx * fix(condo): INFRA-499 fixed types in GraphQlSearchInputWithCheckAll.tsx * fix(condo): INFRA-499 fixed types in ImagesUploadList.tsx * fix(condo): INFRA-499 fixed types in ImportWrapper * fix(condo): INFRA-499 fixed types in useContactExportToExcelTask * fix(condo): INFRA-499 fixed types in SetupTelegramNotificationsBanner * fix(condo): INFRA-499 refactored filters * fix(condo): INFRA-499 fixed types in ContactOption.tsx * fix(condo): INFRA-499 fixed types in NewContactFields.tsx * fix(condo): INFRA-499 fixed types in NotResidentFields.tsx * fix(condo): INFRA-499 fixed types in MarketplacePaymentsContent.tsx * fix(condo): INFRA-499 fixed types in ConnectModal.tsx * fix(condo): INFRA-499 fixed types in AppLabelTag.tsx * fix(condo): INFRA-499 fixed types and exports in BaseEmployeeRoleForm.tsx * fix(condo): INFRA-499 fixed types in OrganizationSelect.tsx * fix(condo): INFRA-499 fixed types in ticket sources * fix(condo): INFRA-499 fixed types in ShareTicketModal.tsx * fix(condo): INFRA-499 fixed types in forgot.tsx * fix(condo): INFRA-499 fixed types in index.tsx * fix(condo): INFRA-499 fixed types in user view page * fix(condo): INFRA-499 fixed types in AppCard * feat(condo): INFRA-499 bump typescript to v5 * feat(condo): INFRA-499 upgrade target of compiler to ES6 * feat(ui): INFRA-499 bump typescript to v5 * fix(ui): INFRA-499 fixed type errors * fix(ui): INFRA-499 fixed type errors * feat(ui): INFRA-499 bump storybook from v6 to v7 * fix(ui): INFRA-499 fixed types in stories * fix(condo): INFRA-499 fixed exports * feat(ui): INFRA-499 replaced deprecated types * feat(condo): INFRA-499 removed unnecessary ts-ignore * fix(condo): INFRA-499 fixed types * feat(address-service): INFRA-499 bump typescript to v5. Upgraded compiler target to ES6 * feat(condo): INFRA-499 removed deprecated const * feat(dev-portal): INFRA-499 bump typescript to v5. Upgraded compiler target to ES6 * feat(miniapp): INFRA-499 bump typescript to v5. Upgraded compiler target to ES6 * feat(bridge): INFRA-499 bump typescript to v5. Upgraded compiler target to ES6 * feat(codegen): INFRA-499 bump typescript to v5. Upgraded compiler target to ES6 * fix(next): INFRA-499 fixed type errors * fix(tsconfig): INFRA-499 Upgraded compiler target to ES6 * feat(condo): INFRA-499 updated submodules * feat(condo): INFRA-499 updated yarn.lock * feat(dev-portal): INFRA-499 bump ts-node to 10.9.2(latest) * feat(icons): INFRA-499 bump ts-node to 10.9.2(latest). Bump typescript to v5 * feat(condo): INFRA-499 updated submodules * feat(condo): INFRA-499 updated yarn.lock * feat(condo): INFRA-499 updated submodules to master
- Loading branch information
Showing
116 changed files
with
5,307 additions
and
3,785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"target": "ES6", | ||
"lib": [ | ||
"dom", | ||
"dom.iterable", | ||
|
Submodule announcement-generator
updated
from b80a12 to 59df30
Submodule asterix_bot
updated
from 9d487e to 0056f4
Submodule callcenter
updated
from e53814 to 663363
Submodule condo-news-sharing-greendom
updated
from 1e2755 to 61600c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import { PaymentStatusType } from '@app/condo/schema' | ||
import get from 'lodash/get' | ||
import React, { CSSProperties } from 'react' | ||
|
||
|
@@ -6,11 +7,11 @@ import { useOrganization } from '@open-condo/next/organization' | |
import { Typography } from '@open-condo/ui' | ||
|
||
import PaymentsTable from '@condo/domains/acquiring/components/payments/PaymentsTable' | ||
import { PAYMENT_DONE_STATUS, PAYMENT_WITHDRAWN_STATUS } from '@condo/domains/acquiring/constants/payment' | ||
import { Payment } from '@condo/domains/acquiring/utils/clientSchema' | ||
import { BasicEmptyListView } from '@condo/domains/common/components/EmptyListView' | ||
import { Loader } from '@condo/domains/common/components/Loader' | ||
|
||
|
||
const SEARCHING_DINO_IMG = 'dino/[email protected]' | ||
const IMG_STYLES: CSSProperties = { marginBottom: 24 } | ||
const TEXT_GAP = 16 | ||
|
@@ -26,7 +27,7 @@ export const PaymentsTab: React.FC = () => { | |
const { objs: anyPayments, loading: anyPaymentsLoading, error: anyPaymentsError } = Payment.useObjects({ | ||
where: { | ||
organization: { id: orgId }, | ||
status_in: [PAYMENT_WITHDRAWN_STATUS, PAYMENT_DONE_STATUS], | ||
status_in: [PaymentStatusType.Withdrawn, PaymentStatusType.Done], | ||
invoice_is_null: true, | ||
}, | ||
first: 1, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.