neo.mjs 8.17.0 → 8.17.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
CHANGED
package/package.json
CHANGED
@@ -62,18 +62,18 @@
|
|
62
62
|
}
|
63
63
|
}
|
64
64
|
|
65
|
-
&:hover {
|
66
|
-
.neo-grid-cell {
|
67
|
-
background-color: var(--grid-cell-background-color-hover);
|
68
|
-
}
|
69
|
-
}
|
70
|
-
|
71
65
|
&.neo-even {
|
72
66
|
.neo-grid-cell {
|
73
67
|
background-color: var(--grid-container-cell-background-color-even);
|
74
68
|
}
|
75
69
|
}
|
76
70
|
|
71
|
+
&:hover {
|
72
|
+
.neo-grid-cell {
|
73
|
+
background-color: var(--grid-cell-background-color-hover);
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
77
|
// selection.RowModel
|
78
78
|
&.neo-selected {
|
79
79
|
.neo-grid-cell {
|
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.17.
|
265
|
+
* @default '8.17.1'
|
266
266
|
* @memberOf! module:Neo
|
267
267
|
* @name config.version
|
268
268
|
* @type String
|
269
269
|
*/
|
270
|
-
version: '8.17.
|
270
|
+
version: '8.17.1'
|
271
271
|
};
|
272
272
|
|
273
273
|
Object.assign(DefaultConfig, {
|
@@ -68,8 +68,6 @@ class ScrollSync extends Base {
|
|
68
68
|
* @param {Boolean} twoWay=true Sync the target's scroll state back to the source node
|
69
69
|
*/
|
70
70
|
register({direction='vertical', fromId, id, toId, twoWay=true}) {
|
71
|
-
console.log('register', direction, fromId, id, toId, twoWay);
|
72
|
-
|
73
71
|
let me = this;
|
74
72
|
|
75
73
|
me.addScrollListener(fromId, toId, direction);
|