adata-ui 0.3.9 → 0.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.3.3",
3
+ "version": "0.3.6",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.3.9",
3
+ "version": "0.3.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
package/public/index.html CHANGED
@@ -1,17 +1,17 @@
1
- <!DOCTYPE html>
2
- <html lang="">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- <link rel="icon" href="<%= BASE_URL %>logo.svg">
8
- <title>Adata UI</title>
9
- </head>
10
- <body>
11
- <noscript>
12
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
- </noscript>
14
- <div id="app"></div>
15
- <!-- built files will be auto injected -->
16
- </body>
17
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ <link rel="icon" href="<%= BASE_URL %>logo.svg">
8
+ <title>Adata UI</title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
+ </noscript>
14
+ <div id="app"></div>
15
+ <!-- built files will be auto injected -->
16
+ </body>
17
+ </html>
package/src/App.vue CHANGED
@@ -1,16 +1,20 @@
1
1
  <template>
2
2
  <div id="app">
3
- <a-not-found/>
4
- <a-forbidden/>
5
- <a-unavailable/>
6
- <a-bad-gateway/>
7
3
 
4
+ <a-header active-tab-key="" login-url="" mode=""></a-header>
5
+
6
+ <Footer/>
8
7
  </div>
9
8
  </template>
10
9
 
11
10
  <script>
11
+ import Footer from "@/components/Footer/Footer";
12
+
12
13
  export default {
13
14
  name: "App",
15
+ components: {
16
+ Footer
17
+ }
14
18
  };
15
19
  </script>
16
20
 
@@ -20,5 +24,6 @@ export default {
20
24
  -webkit-font-smoothing: antialiased;
21
25
  -moz-osx-font-smoothing: grayscale;
22
26
  color: #2c3e50;
27
+
23
28
  }
24
29
  </style>
@@ -1,7 +1,6 @@
1
1
  *:focus {
2
2
  outline: none;
3
3
  }
4
-
5
4
  .adt-text-block {
6
5
  $self: &;
7
6
  position: relative;
@@ -194,8 +194,9 @@ export default {
194
194
  align-items: center;
195
195
  gap: 40px;
196
196
  @media only screen and (max-width: 820px) {
197
+ margin: 0 16px;
197
198
  height: 100%;
198
- margin: 24px 16px 0;
199
+ margin-top: 24px;
199
200
  }
200
201
 
201
202
  &__images {