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

Bump date-fns from 2.30.0 to 4.0.0 #372

Closed
wants to merge 1 commit into from
Closed
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
84 changes: 52 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@
},
"dependencies": {
"d3": "7.8.5",
"date-fns": "^2.30.0",
"date-fns": "^4.0.0",
"lodash.debounce": "4.0.8"
},
"peerDependencies": {

Unchanged files with check annotations Beta

import { defaultHistogramChartOptions, HistogramBar, HistogramBarStyles, HistogramChartOptions, HistogramData, HistogramDataPoint, HistogramSelection } from '@/components/HistogramChart'
import { roundUpToIncrement } from '@/utilities/roundUpToIncrement'
import { sortByDateProperty } from '@/utilities/sortByDate'
import { randomId } from '@/components/Base'

Check warning on line 88 in src/components/HistogramChart/HistogramChart.vue

GitHub Actions / ESLint

`@/components/Base` import should occur before import of `@/components/HistogramChart`
type PointPosition = [x: number, y: number]
type SelectionStyles = { left: Pixels, right: Pixels }
import { computed, ref } from 'vue'
import { LineChartData, LineChartOptions, PointPosition } from '@/components/LineChart/types'
import { getCurve } from '@/utilities/getCurveFunction'
import { roundUpToIncrement } from '@/utilities/roundUpToIncrement'

Check warning on line 35 in src/components/LineChart/LineChart.vue

GitHub Actions / ESLint

Trailing spaces not allowed
import { randomId } from '@/components/Base'

Check warning on line 36 in src/components/LineChart/LineChart.vue

GitHub Actions / ESLint

`@/components/Base` import should occur before import of `@/components/LineChart/types`
const props = defineProps<{
data: LineChartData,
<template>

Check warning on line 1 in src/components/Timeline.vue

GitHub Actions / ESLint

Component name "Timeline" should always be multi-word
<div ref="container" class="timeline" @scroll="handleTimelineScroll">
<main ref="chart" class="timeline__viewport" :style="{ height: `${chartHeight}px` }">
<component
<template>

Check warning on line 1 in demo/views/Timeline.vue

GitHub Actions / ESLint

Component name "Timeline" should always be multi-word
<main class="timeline-view">
<p-content>
<div class="flex items-center gap-2">
</template>
<script lang="ts" setup>
import { endOfToday, endOfWeek, secondsInDay, secondsInHour, startOfToday, startOfWeek } from 'date-fns'

Check failure on line 23 in demo/views/ChartZoom.vue

GitHub Actions / Build

Module '"date-fns"' has no exported member 'secondsInDay'.

Check failure on line 23 in demo/views/ChartZoom.vue

GitHub Actions / Build

'"date-fns"' has no exported member named 'secondsInHour'. Did you mean 'secondsToHours'?
import { ref } from 'vue'
import ComponentPage from '../components/ComponentPage.vue'
import { DemoBarChartItem, generateBarChartData } from '../data'