neo.mjs 6.10.0 → 6.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='6.10.0'
23
+ * @member {String} version='6.10.1'
24
24
  */
25
- version: '6.10.0'
25
+ version: '6.10.1'
26
26
  }
27
27
 
28
28
  /**
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.10.0'
23
+ * @member {String} version='6.10.1'
24
24
  */
25
- version: '6.10.0'
25
+ version: '6.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": "6.10.0",
3
+ "version": "6.10.1",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -236,12 +236,12 @@ const DefaultConfig = {
236
236
  useVdomWorker: true,
237
237
  /**
238
238
  * buildScripts/injectPackageVersion.mjs will update this value
239
- * @default '6.10.0'
239
+ * @default '6.10.1'
240
240
  * @memberOf! module:Neo
241
241
  * @name config.version
242
242
  * @type String
243
243
  */
244
- version: '6.10.0'
244
+ version: '6.10.1'
245
245
  };
246
246
 
247
247
  Object.assign(DefaultConfig, {
@@ -8,6 +8,10 @@ import Base from '../../core/Base.mjs';
8
8
  * @material/mwc-button
9
9
  * @material/mwc-textfield
10
10
  *
11
+ * You also need to un-comment the related imports.
12
+ * Recommendation: Copy this file into your workspace (src/main/addon), adjust it there and add the custom addon
13
+ * into the neo-config.json of your app. E.g.: [..., "WS/Mwc"].
14
+ *
11
15
  * @class Neo.main.addon.Mwc
12
16
  * @extends Neo.core.Base
13
17
  * @singleton
@@ -55,10 +59,10 @@ class Mwc extends Base {
55
59
  import(
56
60
  /* webpackIgnore: true */
57
61
  'https://unpkg.com/@material/mwc-button@0.26.1/mwc-button.js?module'
58
- );
62
+ );
59
63
  } else {
60
64
  // dist/development & dist/production
61
- import('@material/mwc-button');
65
+ // import('@material/mwc-button'); // <= comment me in
62
66
  }
63
67
  }
64
68
 
@@ -70,10 +74,10 @@ class Mwc extends Base {
70
74
  import(
71
75
  /* webpackIgnore: true */
72
76
  'https://unpkg.com/@material/mwc-textfield@0.26.1/mwc-textfield.js?module'
73
- );
77
+ );
74
78
  } else {
75
79
  // dist/development & dist/production
76
- import('@material/mwc-textfield');
80
+ // import('@material/mwc-textfield'); // <= comment me in
77
81
  }
78
82
  }
79
83