neo.mjs 8.10.0 → 8.10.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.10.0'
23
+ * @member {String} version='8.10.1'
24
24
  */
25
- version: '8.10.0'
25
+ version: '8.10.1'
26
26
  }
27
27
 
28
28
  /**
@@ -16,7 +16,7 @@
16
16
  "@type": "Organization",
17
17
  "name": "Neo.mjs"
18
18
  },
19
- "datePublished": "2025-01-26",
19
+ "datePublished": "2025-01-27",
20
20
  "publisher": {
21
21
  "@type": "Organization",
22
22
  "name": "Neo.mjs"
@@ -107,7 +107,7 @@ class FooterContainer extends Container {
107
107
  }, {
108
108
  module: Component,
109
109
  cls : ['neo-version'],
110
- html : 'v8.10.0'
110
+ html : 'v8.10.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.10.0'
23
+ * @member {String} version='8.10.1'
24
24
  */
25
- version: '8.10.0'
25
+ version: '8.10.1'
26
26
  }
27
27
 
28
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "8.10.0",
3
+ "version": "8.10.1",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -21,10 +21,10 @@ If you move quickly, you might reach 20,000 or 30,000 delta updates per second.
21
21
  second — but we've never actually hit the limit.
22
22
 
23
23
  <pre data-neo>
24
- import Base from '../container/Base.mjs';
25
- import Helix from '../component/Helix.mjs';
24
+ import Container from '../container/Base.mjs';
25
+ import Helix from '../component/Helix.mjs';
26
26
 
27
- class MainView extends Base {
27
+ class MainView extends Container {
28
28
  static config = {
29
29
  className: 'Benefits.speed.MainView',
30
30
  layout : 'fit',
@@ -65,7 +65,7 @@
65
65
  .neo-button-glyph {
66
66
  color : var(--button-glyph-color);
67
67
  font-size : 12px;
68
- margin : 0 6px 0 0;
68
+ margin : var(--button-glyph-margin);
69
69
  pointer-events: none;
70
70
  z-index : 2;
71
71
  }
@@ -9,8 +9,6 @@
9
9
 
10
10
  .neo-table-row {
11
11
  .neo-table-cell {
12
- position: relative;
13
-
14
12
  &.neo-is-modified {
15
13
  &:after {
16
14
  border-color: transparent var(--table-cell-ismodified-color) transparent transparent;
@@ -147,7 +147,7 @@
147
147
  .neo-button {
148
148
  &.icon-left {
149
149
  .neo-button-glyph {
150
- margin: 0 6px 0 0;
150
+ margin: var(--button-glyph-margin);
151
151
  }
152
152
  }
153
153
  }
@@ -29,6 +29,7 @@ $text-color : #bbb;
29
29
  --button-glyph-color-active : #{$text-color};
30
30
  --button-glyph-color-disabled : #{$text-color};
31
31
  --button-glyph-color-hover : #{$text-color};
32
+ --button-glyph-margin : 1px 6px 0 0;
32
33
  --button-height : initial;
33
34
  --button-margin : 2px;
34
35
  --button-opacity-disabled : var(--neo-disabled-opacity);
@@ -28,6 +28,7 @@ $text-color : #1c60a0;
28
28
  --button-glyph-color-active : #{$text-color};
29
29
  --button-glyph-color-disabled : #{$text-color};
30
30
  --button-glyph-color-hover : #{$text-color};
31
+ --button-glyph-margin : 1px 6px 0 0;
31
32
  --button-height : initial;
32
33
  --button-margin : 2px;
33
34
  --button-opacity-disabled : var(--neo-disabled-opacity);
@@ -39,6 +39,7 @@
39
39
  --button-glyph-color-hover : var(--sem-color-text-neutral-reversed);
40
40
  --button-glyph-color-active : var(--sem-color-text-neutral-reversed);
41
41
  --button-glyph-color-disabled : var(--sem-color-text-neutral-disabled);
42
+ --button-glyph-margin : 1px 6px 0 0;
42
43
 
43
44
  --button-background-image : none;
44
45
  --button-background-gradient-end : #323536;
@@ -262,12 +262,12 @@ const DefaultConfig = {
262
262
  useVdomWorker: true,
263
263
  /**
264
264
  * buildScripts/injectPackageVersion.mjs will update this value
265
- * @default '8.10.0'
265
+ * @default '8.10.1'
266
266
  * @memberOf! module:Neo
267
267
  * @name config.version
268
268
  * @type String
269
269
  */
270
- version: '8.10.0'
270
+ version: '8.10.1'
271
271
  };
272
272
 
273
273
  Object.assign(DefaultConfig, {