-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from vtex-apps/fix/navigation-avatars
Update navigation and avatars
- Loading branch information
Showing
15 changed files
with
93 additions
and
2,600 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"admin-example.navigation.label-group": "Example admins", | ||
"admin-example.navigation.label-details": "Example details", | ||
"admin-example.navigation.label-table": "Example table", | ||
"admin-example.navigation.search.kws": "test, mock, fake", | ||
"admin-example.navigation.details.search.kws": "details, mock, test, hello", | ||
"admin-example.navigation.table.search.kws": "table, mock, test, bye", | ||
"admin-example.hello-world": "Example Admin" | ||
"admin-example.hello-world": "Example Admin", | ||
"admin-example.details": "Details page" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"admin-example.navigation.label-group": "Admins de ejemplo", | ||
"admin-example.navigation.label-details": "Ejemplo de detalhes", | ||
"admin-example.navigation.label-table": "Ejemplo de tabela", | ||
"admin-example.navigation.search.kws": "teste, mock, fake", | ||
"admin-example.navigation.details.search.kws": "detalhe, mock, test, oi", | ||
"admin-example.navigation.table.search.kws": "tabela, mock, test, tchau", | ||
"admin-example.hello-world": "Admin de ejemplo" | ||
"admin-example.hello-world": "Admin de ejemplo", | ||
"admin-example.details": "Página de detalles" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"admin-example.navigation.label-group": "Admins de exemplo", | ||
"admin-example.navigation.label-details": "Exemplo de detalhes", | ||
"admin-example.navigation.label-group": "Admin de exemplo", | ||
"admin-example.navigation.label-table": "Exemplo de tabela", | ||
"admin-example.navigation.search.kws": "teste, mock, fake", | ||
"admin-example.navigation.details.search.kws": "detalhe, mock, test, oi", | ||
"admin-example.navigation.table.search.kws": "tabela, mock, test, tchau", | ||
"admin-example.hello-world": "Admin de exemplo" | ||
"admin-example.hello-world": "Admin de exemplo", | ||
"admin-example.details": "Admin detalhes" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,6 @@ | |
"lint-staged": "^10.2.2", | ||
"prettier": "^2.0.5", | ||
"typescript": "^3.8.3", | ||
"@vtex/danger": "^0.2.7" | ||
"vtex.render-runtime": "http://vtex.vtexassets.com/_v/public/typings/v1/[email protected]/public/@types/vtex.render-runtime" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
import React, { FC } from 'react' | ||
import { FormattedMessage } from 'react-intl' | ||
import { Layout, PageBlock, PageHeader } from 'vtex.styleguide' | ||
|
||
import './styles.global.css' | ||
|
||
const AdminExampleDetail: FC = () => { | ||
return <FormattedMessage id="admin-example.hello-world" /> | ||
const AdminExampleDetail: FC<Props> = ({ params }) => { | ||
return ( | ||
<Layout | ||
pageHeader={ | ||
<PageHeader title={<FormattedMessage id="admin-example.details" />} /> | ||
} | ||
> | ||
<PageBlock variation="full"> | ||
<div> | ||
Params: <pre>{JSON.stringify(params, null, 2)}</pre> | ||
</div> | ||
</PageBlock> | ||
</Layout> | ||
) | ||
} | ||
|
||
interface Props { | ||
params: any | ||
} | ||
|
||
export default AdminExampleDetail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,10 +247,10 @@ tslib@^1.9.3: | |
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" | ||
integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== | ||
|
||
typescript@^3.9.7: | ||
version "3.9.10" | ||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" | ||
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== | ||
[email protected]: | ||
version "3.9.7" | ||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" | ||
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== | ||
|
||
zen-observable-ts@^0.8.18: | ||
version "0.8.18" | ||
|
Oops, something went wrong.