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.
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/portal/index.html +1 -1
- package/apps/portal/view/home/FooterContainer.mjs +1 -1
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +1 -1
- package/resources/data/deck/learnneo/pages/benefits/Speed.md +3 -3
- package/resources/scss/src/button/Base.scss +1 -1
- package/resources/scss/src/table/View.scss +0 -2
- package/resources/scss/src/toolbar/Base.scss +1 -1
- package/resources/scss/theme-dark/button/Base.scss +1 -0
- package/resources/scss/theme-light/button/Base.scss +1 -0
- package/resources/scss/theme-neo-light/button/Base.scss +1 -0
- package/src/DefaultConfig.mjs +2 -2
package/apps/ServiceWorker.mjs
CHANGED
package/apps/portal/index.html
CHANGED
package/package.json
CHANGED
@@ -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
|
25
|
-
import Helix
|
24
|
+
import Container from '../container/Base.mjs';
|
25
|
+
import Helix from '../component/Helix.mjs';
|
26
26
|
|
27
|
-
class MainView extends
|
27
|
+
class MainView extends Container {
|
28
28
|
static config = {
|
29
29
|
className: 'Benefits.speed.MainView',
|
30
30
|
layout : 'fit',
|
@@ -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;
|
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.10.
|
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.
|
270
|
+
version: '8.10.1'
|
271
271
|
};
|
272
272
|
|
273
273
|
Object.assign(DefaultConfig, {
|