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/dist/adata-ui.common.js +4474 -772
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +4474 -772
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +1 -1
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/index.js +5 -2
- package/src/components/transitions/VerticalMobileToggle.vue +0 -3
package/package.json
CHANGED
package/src/components/index.js
CHANGED
|
@@ -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";
|