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

Merge dev to epic/files-billing #1525

Merged
merged 27 commits into from
Sep 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1cff622
[Storage] Copy cid functionality (#1437)
RyRy79261 Aug 25, 2021
3e0ee70
[STORAGE] Rename file in bucket (#1471)
FSM1 Aug 25, 2021
58839c7
10min timeout for everyone (#1472)
Tbaut Aug 25, 2021
55251ae
Translated using Weblate (French) (#1478)
weblate Aug 30, 2021
03fc54a
add ui tests for search (#1479)
asnaith Aug 31, 2021
997e7d4
bump cypress to v8.3.1 (#1480)
asnaith Aug 31, 2021
161d0cd
Sharing feature explainer (#1477)
Tbaut Sep 2, 2021
8625789
Adding multi selects on mobile view with long press (#1470)
tanmoyAtb Sep 3, 2021
afbd421
bump to 1.18.5 (#1493)
Tbaut Sep 3, 2021
038228c
[Files] - New survey - Discord link and tiny fix (#1487)
Tbaut Sep 3, 2021
57f0feb
Translations update from Weblate (#1496)
weblate Sep 6, 2021
a56307b
update axios (#1498)
FSM1 Sep 6, 2021
fa325f5
Added docs link (#1497)
RyRy79261 Sep 7, 2021
2faecb6
upgrade (#1501)
Tbaut Sep 8, 2021
0852760
Published (#1503)
RyRy79261 Sep 13, 2021
4e2d70a
Add ui tests for file preview (#1489)
asnaith Sep 13, 2021
b70fdfa
Toasts refactor (#1495)
tanmoyAtb Sep 13, 2021
0fecdd8
Progress cancellations (#1500)
tanmoyAtb Sep 13, 2021
7d2c756
survey banner on safari fix (#1512)
tanmoyAtb Sep 13, 2021
0c731ad
fix what I broke (#1518)
Tbaut Sep 14, 2021
4732c0a
Change the survey to a call for a user interview (#1517)
Tbaut Sep 14, 2021
5ecfcce
bump cypress to v8.4 (#1521)
asnaith Sep 14, 2021
f376f59
Translations update from Weblate (#1522)
weblate Sep 14, 2021
3498d32
Adjusting login screen sizes. (#1519)
tanmoyAtb Sep 14, 2021
789e8c1
merge dev and fix conflicts
Tbaut Sep 14, 2021
6d7c91c
merge dev and fix conflicts
Tbaut Sep 14, 2021
f5d1db5
Revert "merge dev and fix conflicts"
Tbaut Sep 14, 2021
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ storybook-static
.DS_Store

# test artifacts
packages/files-ui/cypress/downloads/*
packages/files-ui/cypress/screenshots/*
packages/files-ui/cypress/videos/*
packages/files-ui/cypress/fixtures/storage
packages/storage-ui/cypress/downloads/*
packages/storage-ui/cypress/screenshots/*
packages/storage-ui/cypress/videos/*
packages/storage-ui/cypress/fixtures/storage
18 changes: 13 additions & 5 deletions packages/common-components/.storybook/contexts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createTheme, ThemeProvider } from "@chainsafe/common-theme"
import { createTheme, ThemeSwitcher } from "@chainsafe/common-theme"

const lightTheme = createTheme()
const darkTheme = createTheme()
Expand All @@ -7,11 +7,19 @@ export const contexts = [
{
icon: "box", // a icon displayed in the Storybook toolbar to control contextual props
title: "Themes", // an unique name of a contextual environment
components: [ThemeProvider],
components: [ThemeSwitcher],
params: [
// an array of params contains a set of predefined `props` for `components`
{ name: "Light Theme", props: { theme: lightTheme } },
{ name: "Dark Theme", props: { theme: darkTheme } },
{ name: "Light Theme",
props: {
themes: [lightTheme]
}
},
{ name: "Dark Theme",
props: {
themes: [darkTheme]
}
},
],
options: {
deep: true,
Expand All @@ -20,4 +28,4 @@ export const contexts = [
},
},
/* ... */ // multiple contexts setups are supported
]
]
2 changes: 1 addition & 1 deletion packages/common-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/common-components",
"version": "1.0.30",
"version": "1.0.31",
"description": "Chainsafe Common React Components",
"author": "Chainsafe Products Team",
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/common-components/src/Icons/svgs/close-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/common-components/src/Icons/svgs/cross.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 0 additions & 58 deletions packages/common-components/src/Toaster/ToastContainer.tsx

This file was deleted.

146 changes: 0 additions & 146 deletions packages/common-components/src/Toaster/Toaster.tsx

This file was deleted.

51 changes: 0 additions & 51 deletions packages/common-components/src/Toaster/ToasterContent.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions packages/common-components/src/Toaster/ToasterProvider.tsx

This file was deleted.

35 changes: 0 additions & 35 deletions packages/common-components/src/Toaster/ToasterWrapper.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions packages/common-components/src/Toaster/index.ts

This file was deleted.

Loading