neo.mjs 6.27.0 → 6.28.0
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/FlowOfExecution.eps +1603 -0
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/portal/view/about/Container.mjs +8 -0
- package/apps/portal/view/learn/PageSectionsContainer.mjs +5 -1
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +1 -1
- package/resources/images/team/Max.jpeg +0 -0
- package/resources/scss/src/apps/portal/learn/MainContainer.scss +1 -0
- package/resources/scss/src/apps/portal/learn/PageSectionsContainer.scss +7 -1
- package/src/DefaultConfig.mjs +2 -2
package/apps/ServiceWorker.mjs
CHANGED
@@ -48,6 +48,14 @@ class Container extends Base {
|
|
48
48
|
profileGitHub : 'https://github.com/Dinkh',
|
49
49
|
profileLinkedIn: 'https://www.linkedin.com/in/dinkheller/',
|
50
50
|
teamRole : 'Co-Founder & Core Team Member'
|
51
|
+
},{
|
52
|
+
module : MemberContainer,
|
53
|
+
location : 'Madison, Wisconsin',
|
54
|
+
name : 'Max Rahder',
|
55
|
+
picture : 'Max.jpeg',
|
56
|
+
profileGitHub : 'https://github.com/maxrahder/',
|
57
|
+
profileLinkedIn: 'https://www.linkedin.com/in/maxrahder/',
|
58
|
+
teamRole : 'Training'
|
51
59
|
}],
|
52
60
|
/**
|
53
61
|
* @member {Object} layout={ntype:'vbox',align:'start'}
|
package/package.json
CHANGED
Binary file
|
@@ -3,7 +3,9 @@
|
|
3
3
|
border : none; // reset the default 1px
|
4
4
|
display : block;
|
5
5
|
flex-shrink : 0;
|
6
|
+
height : 100%;
|
6
7
|
min-width : 250px;
|
8
|
+
overflow : visible;
|
7
9
|
position : fixed;
|
8
10
|
right : 0;
|
9
11
|
width : 250px;
|
@@ -18,10 +20,14 @@
|
|
18
20
|
display: none;
|
19
21
|
}
|
20
22
|
|
23
|
+
.topics-tree {
|
24
|
+
height : 100%;
|
25
|
+
padding-bottom: 8em;
|
26
|
+
}
|
27
|
+
|
21
28
|
@media (max-width: 1296px) {
|
22
29
|
background-color: #fff;
|
23
30
|
box-shadow : 0 5px 10px rgba(0,0,0,.3);
|
24
|
-
overflow : visible;
|
25
31
|
right : -250px;
|
26
32
|
transition : right 250ms ease-out;
|
27
33
|
z-index : 100;
|
package/src/DefaultConfig.mjs
CHANGED
@@ -260,12 +260,12 @@ const DefaultConfig = {
|
|
260
260
|
useVdomWorker: true,
|
261
261
|
/**
|
262
262
|
* buildScripts/injectPackageVersion.mjs will update this value
|
263
|
-
* @default '6.
|
263
|
+
* @default '6.28.0'
|
264
264
|
* @memberOf! module:Neo
|
265
265
|
* @name config.version
|
266
266
|
* @type String
|
267
267
|
*/
|
268
|
-
version: '6.
|
268
|
+
version: '6.28.0'
|
269
269
|
};
|
270
270
|
|
271
271
|
Object.assign(DefaultConfig, {
|