Compare commits

...

3 Commits

Author SHA1 Message Date
Douglas Barone
0b09d098fd Update package versions to 3.8.5 2024-01-19 11:13:51 -04:00
Douglas Barone
850fb06792 Update chart.js and vue-chartjs versions 2024-01-19 11:13:38 -04:00
Douglas Barone
925e53a098 Revert chart.js version to 3.7.0 2024-01-19 11:04:16 -04:00
6 changed files with 22 additions and 22 deletions

View File

@ -1,12 +1,12 @@
{
"name": "ifms-pti-svr",
"version": "3.8.4",
"version": "3.8.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ifms-pti-svr",
"version": "3.8.4",
"version": "3.8.5",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.1",

View File

@ -1,6 +1,6 @@
{
"name": "ifms-pti-svr",
"version": "3.8.4",
"version": "3.8.5",
"description": "Servidor do Portal de TI do IFMS",
"main": "src/index.js",
"prisma": {

22
web/package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "ifms-pti",
"version": "3.8.4",
"version": "3.8.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ifms-pti",
"version": "3.8.4",
"version": "3.8.5",
"dependencies": {
"@mdi/font": "^7.3.67",
"apollo-link-ws": "^1.0.20",
@ -21,7 +21,7 @@
"validator": "^13.7.0",
"vue": "^2.7.15",
"vue-apollo": "^3.1.1",
"vue-chartjs": "^4.1.2",
"vue-chartjs": "^5.3.0",
"vue-json-pretty": "^1.9.3",
"vue-router": "^3.6.5",
"vue-the-mask": "^0.11.1",
@ -20752,12 +20752,12 @@
}
},
"node_modules/vue-chartjs": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-4.1.2.tgz",
"integrity": "sha512-QSggYjeFv/L4jFSBQpX8NzrAvX0B+Ha6nDgxkTG8tEXxYOOTwKI4phRLe+B4f+REnkmg7hgPY24R0cixZJyXBg==",
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-5.3.0.tgz",
"integrity": "sha512-8XqX0JU8vFZ+WA2/knz4z3ThClduni2Nm0BMe2u0mXgTfd9pXrmJ07QBI+WAij5P/aPmPMX54HCE1seWL37ZdQ==",
"peerDependencies": {
"chart.js": "^3.7.0",
"vue": "^3.0.0-0 || ^2.6.0"
"chart.js": "^4.1.1",
"vue": "^3.0.0-0 || ^2.7.0"
}
},
"node_modules/vue-cli-plugin-apollo": {
@ -37989,9 +37989,9 @@
}
},
"vue-chartjs": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-4.1.2.tgz",
"integrity": "sha512-QSggYjeFv/L4jFSBQpX8NzrAvX0B+Ha6nDgxkTG8tEXxYOOTwKI4phRLe+B4f+REnkmg7hgPY24R0cixZJyXBg==",
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-5.3.0.tgz",
"integrity": "sha512-8XqX0JU8vFZ+WA2/knz4z3ThClduni2Nm0BMe2u0mXgTfd9pXrmJ07QBI+WAij5P/aPmPMX54HCE1seWL37ZdQ==",
"requires": {}
},
"vue-cli-plugin-apollo": {

View File

@ -1,6 +1,6 @@
{
"name": "ifms-pti",
"version": "3.8.4",
"version": "3.8.5",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
@ -22,7 +22,7 @@
"validator": "^13.7.0",
"vue": "^2.7.15",
"vue-apollo": "^3.1.1",
"vue-chartjs": "^4.1.2",
"vue-chartjs": "^5.3.0",
"vue-json-pretty": "^1.9.3",
"vue-router": "^3.6.5",
"vue-the-mask": "^0.11.1",

View File

@ -1,7 +1,7 @@
<template>
<LineChart
:chart-options="chartOptions"
:chart-data="chartData"
:options="chartOptions"
:data="chartData"
:chart-id="chartId"
:dataset-id-key="datasetIdKey"
:plugins="plugins"
@ -13,7 +13,7 @@
</template>
<script>
import { Line as LineChart } from 'vue-chartjs/legacy'
import { Line as LineChart } from 'vue-chartjs'
import colors from 'vuetify/lib/util/colors'
import { Chart as ChartJS, registerables } from 'chart.js'

View File

@ -1,8 +1,8 @@
<template>
<LineChart
v-if="stats"
:chart-options="chartOptions"
:chart-data="chartData"
:options="chartOptions"
:data="chartData"
:chart-id="chartId"
:dataset-id-key="datasetIdKey"
:plugins="plugins"
@ -14,7 +14,7 @@
</template>
<script>
import { Line as LineChart } from 'vue-chartjs/legacy'
import { Line as LineChart } from 'vue-chartjs'
import 'chartjs-adapter-date-fns'
import colors from 'vuetify/lib/util/colors'