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.
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/portal/view/home/FooterContainer.mjs +1 -1
- package/examples/ServiceWorker.mjs +2 -2
- package/examples/grid/bigData/ControlsContainer.mjs +4 -2
- package/package.json +1 -1
- package/resources/scss/src/examples/grid/bigData/ControlsContainer.scss +37 -26
- package/src/DefaultConfig.mjs +2 -2
package/apps/ServiceWorker.mjs
CHANGED
@@ -22,11 +22,13 @@ class ControlsContainer extends Container {
|
|
22
22
|
*/
|
23
23
|
items: [{
|
24
24
|
ntype : 'button',
|
25
|
-
cls : ['
|
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: '
|
92
|
+
layout: {ntype: 'fit'},
|
91
93
|
/**
|
92
94
|
* @member {String} tag='aside'
|
93
95
|
*/
|
package/package.json
CHANGED
@@ -1,38 +1,49 @@
|
|
1
1
|
.neo-examples-bigdata-controls-container {
|
2
|
-
border
|
3
|
-
bottom
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
-
.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
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
|
}
|
package/src/DefaultConfig.mjs
CHANGED
@@ -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.
|
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.
|
270
|
+
version: '8.20.1'
|
271
271
|
};
|
272
272
|
|
273
273
|
Object.assign(DefaultConfig, {
|