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.
package/apps/ServiceWorker.mjs
CHANGED
package/package.json
CHANGED
package/src/DefaultConfig.mjs
CHANGED
@@ -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.
|
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.
|
244
|
+
version: '6.10.1'
|
245
245
|
};
|
246
246
|
|
247
247
|
Object.assign(DefaultConfig, {
|
package/src/main/addon/Mwc.mjs
CHANGED
@@ -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
|
|