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.
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.27.0'
23
+ * @member {String} version='6.28.0'
24
24
  */
25
- version: '6.27.0'
25
+ version: '6.28.0'
26
26
  }
27
27
 
28
28
  /**
@@ -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'}
@@ -39,7 +39,11 @@ class PageSectionsContainer extends Container {
39
39
  /**
40
40
  * @member {Object} layout={ntype:'vbox'}
41
41
  */
42
- layout: {ntype: 'vbox'}
42
+ layout: {ntype: 'vbox'},
43
+ /**
44
+ * @member {String} tag='aside'
45
+ */
46
+ tag: 'aside'
43
47
  }
44
48
 
45
49
  /**
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.27.0'
23
+ * @member {String} version='6.28.0'
24
24
  */
25
- version: '6.27.0'
25
+ version: '6.28.0'
26
26
  }
27
27
 
28
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "6.27.0",
3
+ "version": "6.28.0",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
Binary file
@@ -17,6 +17,7 @@
17
17
  @media (max-width: 640px) {
18
18
  .sidenav-container {
19
19
  box-shadow: 0 5px 10px rgba(0,0,0,.3);
20
+ height : 100%;
20
21
  left : -350px;
21
22
  overflow : visible;
22
23
  position : fixed;
@@ -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;
@@ -260,12 +260,12 @@ const DefaultConfig = {
260
260
  useVdomWorker: true,
261
261
  /**
262
262
  * buildScripts/injectPackageVersion.mjs will update this value
263
- * @default '6.27.0'
263
+ * @default '6.28.0'
264
264
  * @memberOf! module:Neo
265
265
  * @name config.version
266
266
  * @type String
267
267
  */
268
- version: '6.27.0'
268
+ version: '6.28.0'
269
269
  };
270
270
 
271
271
  Object.assign(DefaultConfig, {