Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/93474 add datum of melding #658

Merged
merged 2 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 0 additions & 49 deletions src/components/HolidayRental/HolidayRental.tsx

This file was deleted.

19 changes: 0 additions & 19 deletions src/components/HolidayRental/VakantieverhuurReportInformation.ts

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/HolidayRental/components/HolidayRentalReport.tsx

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/HolidayRental/components/Report.tsx

This file was deleted.

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions src/components/HolidayRental/tests/HolidayRental.test.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ export default (report: RentalReport) => ({
"Check out": <DateDisplay date={ report?.eindDatum } />,
"Gasten": report?.gasten,
"Gewijzigd": report?.isAangepast ? "Ja" : "Nee",
"Verwijderd": report?.isVerwijderd ? "Ja" : "Nee"
"Verwijderd": report?.isVerwijderd ? "Ja" : "Nee",
"Aangemaakt op": <DateDisplay date={ report?.gemaaktOp } />
})
1 change: 1 addition & 0 deletions src/components/HolidayRentalReports/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export type RentalReport = {
gasten: number
isAangepast: Boolean
isVerwijderd: Boolean
gemaaktOp: string // date-time
}
4 changes: 0 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type CaseEvent from "./components/EventsTimeline/CaseEvent"
import type Permit from "./components/PermitsOverview/Permit"
import type PermitType from "./components/PermitsSynopsis/PermitType"
import type VakantieverhuurReportInformation from "./components/HolidayRental/VakantieverhuurReportInformation"
import type { RentalReport } from "./components/HolidayRentalReports/types"
import type { DefinitionListData } from "./components/Data/DefinitionList/DefinitionList"
import type { ColumnType, Sorting } from "./components/Data/Table/types"
Expand All @@ -12,7 +11,6 @@ import DayDisplay from "./components/DayDisplay/DayDisplay"
import DefinitionList from "./components/Data/DefinitionList/DefinitionList"
import EventsTimeline from "./components/EventsTimeline/EventsTimeline"
import FinancialDisplay from "./components/FinancialDisplay/FinancialDisplay"
import HolidayRental from "./components/HolidayRental/HolidayRental"
import HolidayRentalReports from "./components/HolidayRentalReports/HolidayRentalReports"
import List from "./components/Data/List/List"
import LoadingRows from "./components/Data/components/LoadingRows"
Expand All @@ -33,7 +31,6 @@ export type {
CaseEvent,
Permit,
PermitType,
VakantieverhuurReportInformation,
RentalReport,
DefinitionListData,
ColumnType,
Expand All @@ -50,7 +47,6 @@ export {
EventsTimeline,
FinancialDisplay,
getValidPermits,
HolidayRental,
HolidayRentalReports,
Icons,
isValidDate,
Expand Down
25 changes: 0 additions & 25 deletions src/stories/HolidayRental.stories.tsx

This file was deleted.

Loading