@lemonadejs/dropdown 3.1.6 → 3.1.7
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -664,8 +664,8 @@ if (!Modal && typeof (require) === 'function') {
|
|
|
664
664
|
lazyloading = lazyLoading(self);
|
|
665
665
|
// Process the data
|
|
666
666
|
setData();
|
|
667
|
-
//
|
|
668
|
-
if (self.value) {
|
|
667
|
+
// Set value
|
|
668
|
+
if (typeof(self.value) !== 'undefined') {
|
|
669
669
|
setValue(self.value);
|
|
670
670
|
}
|
|
671
671
|
// Focus out of the component
|
package/package.json
CHANGED
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"javascript plugins"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"lemonadejs": "^4.1.
|
|
17
|
+
"lemonadejs": "^4.1.1",
|
|
18
18
|
"@lemonadejs/modal": "^2.7.1"
|
|
19
19
|
},
|
|
20
20
|
"main": "dist/index.js",
|
|
21
21
|
"types": "dist/index.d.ts",
|
|
22
|
-
"version": "3.1.
|
|
22
|
+
"version": "3.1.7"
|
|
23
23
|
}
|