adata-ui 0.1.5 → 0.1.6

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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -3,12 +3,15 @@ import AButton from './Button/BaseButton'
3
3
  import ATextField from './TextField/TextField'
4
4
  import APasswordField from './PasswordField/PasswordField'
5
5
  import AAlert from './Alert/Alert'
6
-
6
+ import AHeader from './Header/Header'
7
+ import AFooter from './Footer/Footer'
7
8
  const Components = {
8
9
  AButton,
9
10
  ATextField,
10
11
  APasswordField,
11
- AAlert
12
+ AAlert,
13
+ AHeader,
14
+ AFooter
12
15
  };
13
16
 
14
17
  Object.keys(Components).forEach(name => {
@@ -36,9 +36,6 @@ export default {
36
36
  el.style.right = "0";
37
37
  el.style.background = "#fff";
38
38
  },
39
- enter: function (el) {
40
- // el.style.width = el.scrollHeight + "px"; Can be justified to make transition smoother
41
- },
42
39
  afterEnter: function (el) {
43
40
  el.style.height = "100vh";
44
41
  el.style.width = "100vw";