neo.mjs 8.20.0 → 8.20.1

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='8.20.0'
23
+ * @member {String} version='8.20.1'
24
24
  */
25
- version: '8.20.0'
25
+ version: '8.20.1'
26
26
  }
27
27
 
28
28
  /**
@@ -107,7 +107,7 @@ class FooterContainer extends Container {
107
107
  }, {
108
108
  module: Component,
109
109
  cls : ['neo-version'],
110
- html : 'v8.20.0'
110
+ html : 'v8.20.1'
111
111
  }]
112
112
  }],
113
113
  /**
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='8.20.0'
23
+ * @member {String} version='8.20.1'
24
24
  */
25
- version: '8.20.0'
25
+ version: '8.20.1'
26
26
  }
27
27
 
28
28
  /**
@@ -22,11 +22,13 @@ class ControlsContainer extends Container {
22
22
  */
23
23
  items: [{
24
24
  ntype : 'button',
25
- cls : ['sections-container-button'],
25
+ cls : ['controls-container-button'],
26
26
  handler: 'up.onControlsToggleButtonClick',
27
27
  iconCls: 'fas fa-bars'
28
28
  }, {
29
29
  module: Container,
30
+ cls : ['neo-examples-bigdata-controls-container-content'],
31
+ layout: 'vbox',
30
32
 
31
33
  itemDefaults: {
32
34
  module : ComboBox,
@@ -87,7 +89,7 @@ class ControlsContainer extends Container {
87
89
  /**
88
90
  * @member {Object} layout={ntype:'vbox'}
89
91
  */
90
- layout: {ntype: 'vbox'},
92
+ layout: {ntype: 'fit'},
91
93
  /**
92
94
  * @member {String} tag='aside'
93
95
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "8.20.0",
3
+ "version": "8.20.1",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,38 +1,49 @@
1
1
  .neo-examples-bigdata-controls-container {
2
- border : none; // reset the default 1px
3
- bottom : .5em;
4
- box-shadow : 0 5px 10px rgba(75,75,75,.3);
5
- display : block;
6
- flex-shrink : 0;
7
- min-width : 235px;
8
- overflow : visible;
9
- padding : .5em 1em;
10
- position : absolute;
11
- right : -235px;
12
- top : .5em;
13
- transition : right 250ms ease-out;
14
- width : 235px;
15
- z-index : 100;
2
+ border : none; // reset the default 1px
3
+ bottom : .5em;
4
+ display : block;
5
+ flex-shrink: 0;
6
+ min-width : 235px;
7
+ overflow : visible;
8
+ position : absolute;
9
+ right : -235px;
10
+ top : .5em;
11
+ transition : right 250ms ease-out;
12
+ width : 235px;
13
+ z-index : 100;
14
+
15
+ .neo-examples-bigdata-controls-container-content {
16
+ box-shadow: 0 5px 10px rgba(75,75,75,.3);
17
+ opacity : 0;
18
+ padding : .5em 1em;
19
+ transition: opacity 250ms ease-out;
20
+ }
16
21
 
17
22
  &.neo-expanded {
18
23
  right: 0;
24
+
25
+ .neo-examples-bigdata-controls-container-content {
26
+ opacity: 1;
27
+ }
19
28
  }
20
29
 
21
- .sections-container-button {
22
- //background-color: #fff;
23
- border-radius : 8px;
24
- box-shadow : 0 5px 10px rgba(75,75,75,.3);
25
- display : flex;
26
- height : 35px;
27
- min-width : 35px;
28
- position : absolute;
29
- left : -53px;
30
- top : .2em;
31
- width : 35px;
30
+ .controls-container-button {
31
+ border-radius: 8px;
32
+ box-shadow : 0 5px 10px rgba(75,75,75,.3);
33
+ display : flex;
34
+ height : 35px;
35
+ min-width : 35px;
36
+ position : absolute;
37
+ left : -53px;
38
+ top : .2em;
39
+ width : 35px;
32
40
 
33
41
  .neo-button-glyph {
34
- // color : #000; // required for mobile
35
42
  font-size: 13px;
36
43
  }
44
+
45
+ .neo-button-ripple-wrapper {
46
+ border-radius: 8px;
47
+ }
37
48
  }
38
49
  }
@@ -262,12 +262,12 @@ const DefaultConfig = {
262
262
  useVdomWorker: true,
263
263
  /**
264
264
  * buildScripts/injectPackageVersion.mjs will update this value
265
- * @default '8.20.0'
265
+ * @default '8.20.1'
266
266
  * @memberOf! module:Neo
267
267
  * @name config.version
268
268
  * @type String
269
269
  */
270
- version: '8.20.0'
270
+ version: '8.20.1'
271
271
  };
272
272
 
273
273
  Object.assign(DefaultConfig, {