mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2026-03-20 22:39:25 +00:00
Compare commits
20 Commits
WIFI-2434
...
release/v1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a952a40eb5 | ||
|
|
6c0e5f959d | ||
|
|
4450a01397 | ||
|
|
5d3192e314 | ||
|
|
7ccebb107a | ||
|
|
42eaa86893 | ||
|
|
48f6a64790 | ||
|
|
879c97f44d | ||
|
|
01599ca670 | ||
|
|
1be788925e | ||
|
|
3697d0b4a9 | ||
|
|
a9655e25aa | ||
|
|
6bd8beb436 | ||
|
|
e023ef0569 | ||
|
|
8d93cf4f73 | ||
|
|
87b056967f | ||
|
|
d6d207c058 | ||
|
|
eab3476dbe | ||
|
|
ff5b6dc1fc | ||
|
|
40033efb61 |
@@ -3,9 +3,9 @@ export const COMPANY = 'Telecom Infra Project';
|
||||
|
||||
export const USER_FRIENDLY_RADIOS = {
|
||||
is2dot4GHz: '2.4GHz',
|
||||
is5GHz: '5GHz',
|
||||
is5GHzL: '5GHz (L)',
|
||||
is5GHzU: '5GHz (U)',
|
||||
is5GHz: '5GHz',
|
||||
};
|
||||
|
||||
export const ROUTES = {
|
||||
|
||||
@@ -75,7 +75,6 @@ const App = () => {
|
||||
<Helmet titleTemplate={`%s - ${COMPANY}`} defaultTitle={COMPANY}>
|
||||
<meta name="description" content={COMPANY} />
|
||||
</Helmet>
|
||||
|
||||
<Switch>
|
||||
<UnauthenticatedRoute exact path={ROUTES.login} component={Login} />
|
||||
<ProtectedRouteWithLayout exact path={ROUTES.root} component={RedirectToDashboard} />
|
||||
|
||||
@@ -14,6 +14,7 @@ import { AUTH_TOKEN } from 'constants/index';
|
||||
import { REFRESH_TOKEN } from 'graphql/mutations';
|
||||
import { getItem, setItem, removeItem } from 'utils/localStorage';
|
||||
import history from 'utils/history';
|
||||
import { ScrollToTop } from '@tip-wlan/wlan-cloud-ui-library';
|
||||
|
||||
const API_URI = process.env.NODE_ENV === 'production' ? window.REACT_APP_API : process.env.API;
|
||||
const MOUNT_NODE = document.getElementById('root');
|
||||
@@ -102,6 +103,7 @@ const render = () => {
|
||||
ReactDOM.render(
|
||||
<Router history={history}>
|
||||
<ApolloProvider client={client}>
|
||||
<ScrollToTop />
|
||||
<App />
|
||||
</ApolloProvider>
|
||||
</Router>,
|
||||
|
||||
@@ -1,3 +1,14 @@
|
||||
body {
|
||||
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:hover,
|
||||
input:-webkit-autofill:focus,
|
||||
input:-webkit-autofill:active,
|
||||
input:-webkit-autofill::first-line {
|
||||
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
|
||||
transition: color 9999s ease-out, background-color 9999s ease-out;
|
||||
font-size: 14px !important;
|
||||
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
|
||||
8
package-lock.json
generated
8
package-lock.json
generated
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wlan-cloud-ui",
|
||||
"version": "1.1.9",
|
||||
"version": "1.1.18",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@@ -2223,9 +2223,9 @@
|
||||
}
|
||||
},
|
||||
"@tip-wlan/wlan-cloud-ui-library": {
|
||||
"version": "1.1.14",
|
||||
"resolved": "https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/@tip-wlan/wlan-cloud-ui-library/-/@tip-wlan/wlan-cloud-ui-library-1.1.14.tgz",
|
||||
"integrity": "sha1-BRTU+IQ03oDQWJM5xGo+D+S49Kc="
|
||||
"version": "1.1.27",
|
||||
"resolved": "https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/@tip-wlan/wlan-cloud-ui-library/-/@tip-wlan/wlan-cloud-ui-library-1.1.27.tgz",
|
||||
"integrity": "sha1-riV+vGdlxZNNeMWunxrQ60NSAWw="
|
||||
},
|
||||
"@types/anymatch": {
|
||||
"version": "1.3.1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wlan-cloud-ui",
|
||||
"version": "1.1.9",
|
||||
"version": "1.1.18",
|
||||
"author": "ConnectUs",
|
||||
"description": "React Portal",
|
||||
"engines": {
|
||||
@@ -21,7 +21,7 @@
|
||||
"dependencies": {
|
||||
"@ant-design/icons": "^4.2.1",
|
||||
"@apollo/client": "^3.1.3",
|
||||
"@tip-wlan/wlan-cloud-ui-library": "^1.1.14",
|
||||
"@tip-wlan/wlan-cloud-ui-library": "^1.1.27",
|
||||
"antd": "^4.5.2",
|
||||
"apollo-upload-client": "^13.0.0",
|
||||
"graphql": "^15.5.0",
|
||||
|
||||
Reference in New Issue
Block a user