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

feat: Update cozy-bar from 15.0.0 to 16.0.1 #53

Merged
merged 8 commits into from
Nov 22, 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
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,26 @@
"@sentry/react": "7.118.0",
"classnames": "2.3.1",
"cozy-authentication": "2.10.10",
"cozy-bar": "^15.0.0",
"cozy-bar": "16.0.1",
"cozy-ci": "0.5.2",
"cozy-client": "^48.25.0",
"cozy-client": "51.3.0",
"cozy-client-js": "0.20.0",
"cozy-device-helper": "^2.5.0",
"cozy-devtools": "^1.2.1",
"cozy-doctypes": "1.85.4",
"cozy-flags": "3.0.1",
"cozy-flags": "4.6.1",
"cozy-harvest-lib": "^30.0.0",
"cozy-intent": "^2.18.0",
"cozy-intent": "2.29.1",
"cozy-keys-lib": "6.0.0",
"cozy-logger": "1.9.1",
"cozy-pouch-link": "^44.0.0",
"cozy-realtime": "4.6.0",
"cozy-scanner": "^7.0.0",
"cozy-scripts": "^8.2.0",
"cozy-sharing": "^16.0.0",
"cozy-stack-client": "^48.16.0",
"cozy-ui": "^111.12.0",
"cozy-stack-client": "51.0.0",
"cozy-ui": "113.3.0",
"cozy-viewer": "2.9.0",
"date-fns": "1.30.1",
"justified-layout": "2.1.2",
"kd-tree-javascript": "1.0.3",
Expand Down
8 changes: 3 additions & 5 deletions src/components/PushBanner/QuotaBanner.spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,13 @@ describe('QuotaBanner', () => {
useInstanceInfo.mockReturnValue({
context: {
data: {
attributes: {
enable_premium_links: enablePremiumLinks,
manager_url: 'http://mycozy.cloud'
}
enable_premium_links: enablePremiumLinks,
manager_url: 'http://mycozy.cloud'
}
},
instance: {
data: {
attributes: { uuid: hasUuid ? '123' : null }
uuid: hasUuid ? '123' : null
}
}
})
Expand Down
2 changes: 1 addition & 1 deletion src/photos/components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Nav, {
NavText,
genNavLinkForV6
} from 'cozy-ui/transpiled/react/Nav'
import CozyDevtools from 'cozy-client/dist/devtools'
import CozyDevtools from 'cozy-devtools'
import { ModalManager } from 'react-cozy-helpers'
import { isFlagshipApp } from 'cozy-device-helper'
import flag from 'cozy-flags'
Expand Down
12 changes: 7 additions & 5 deletions src/photos/components/PhotosViewer.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import React, { useMemo } from 'react'

import Viewer from 'cozy-ui/transpiled/react/Viewer'
import FooterActionButtons from 'cozy-ui/transpiled/react/Viewer/Footer/FooterActionButtons'
import ForwardOrDownloadButton from 'cozy-ui/transpiled/react/Viewer/Footer/ForwardOrDownloadButton'
import SharingButton from 'cozy-ui/transpiled/react/Viewer/Footer/Sharing'
import { useNavigate, useParams } from 'react-router-dom'

import Viewer, {
FooterActionButtons,
ForwardOrDownloadButton,
SharingButton
} from 'cozy-viewer'
import { useQuery } from 'cozy-client'

import { buildTimelineQuery, buildAlbumsQuery } from '../queries/queries'

export const TimelinePhotosViewer = () => {
Expand Down
1 change: 1 addition & 0 deletions src/photos/targets/browser/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'cozy-ui/dist/cozy-ui.utils.min.css'
import 'cozy-ui/transpiled/react/stylesheet.css'
import 'cozy-bar/dist/stylesheet.css'
import 'cozy-sharing/dist/stylesheet.css'
import 'cozy-viewer/dist/stylesheet.css'
import 'photos/styles/main.styl'

import React from 'react'
Expand Down
1 change: 1 addition & 0 deletions src/photos/targets/public/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'cozy-ui/dist/cozy-ui.min.css'
import 'cozy-ui/transpiled/react/stylesheet.css'
import 'cozy-bar/dist/stylesheet.css'
import 'cozy-sharing/dist/stylesheet.css'
import 'cozy-viewer/dist/stylesheet.css'
import 'photos/styles/main.styl'

import React from 'react'
Expand Down
Loading
Loading