neo.mjs 4.0.12 → 4.0.13
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.
|
@@ -24,10 +24,7 @@ class MainContainerController extends Component {
|
|
|
24
24
|
let me = this;
|
|
25
25
|
|
|
26
26
|
if (!me.dialog) {
|
|
27
|
-
import(
|
|
28
|
-
/* webpackChunkName: 'examples/model/dialog/EditUserDialog' */
|
|
29
|
-
'./EditUserDialog.mjs'
|
|
30
|
-
).then(module => {
|
|
27
|
+
import('./EditUserDialog.mjs').then(module => {
|
|
31
28
|
me.dialog = Neo.create({
|
|
32
29
|
module : module.default,
|
|
33
30
|
animateTargetId: me.getReference('edit-user-button').id,
|
package/package.json
CHANGED
|
@@ -501,7 +501,6 @@
|
|
|
501
501
|
{"id" : 498, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000498.jpg"},
|
|
502
502
|
{"id" : 499, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000499.jpg"},
|
|
503
503
|
{"id" : 500, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000500.jpg"},
|
|
504
|
-
|
|
505
504
|
{"id" : 501, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000501.jpg"},
|
|
506
505
|
{"id" : 502, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000502.jpg"},
|
|
507
506
|
{"id" : 503, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000503.jpg"},
|
|
@@ -602,4 +601,4 @@
|
|
|
602
601
|
{"id" : 599, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000599.jpg"},
|
|
603
602
|
{"id" : 600, "firstname" : "John", "lastname" : "Doe", "isOnline" : false, "image" : "ai_images/000600.jpg"}
|
|
604
603
|
]
|
|
605
|
-
}
|
|
604
|
+
}
|
|
@@ -51,6 +51,11 @@
|
|
|
51
51
|
position: relative;
|
|
52
52
|
|
|
53
53
|
&.neo-panel {
|
|
54
|
+
.neo-footer-toolbar {
|
|
55
|
+
border : none;
|
|
56
|
+
border-top: 1px solid v(dialog-border-color);
|
|
57
|
+
}
|
|
58
|
+
|
|
54
59
|
.neo-header-toolbar {
|
|
55
60
|
border : none;
|
|
56
61
|
border-bottom: 1px solid v(dialog-border-color);
|
|
@@ -84,4 +89,4 @@
|
|
|
84
89
|
}
|
|
85
90
|
}
|
|
86
91
|
}
|
|
87
|
-
}
|
|
92
|
+
}
|