native-document 1.0.227 → 1.0.229

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-document",
3
- "version": "1.0.227",
3
+ "version": "1.0.229",
4
4
  "description": "A reactive JavaScript framework that preserves native DOM simplicity without sacrificing modern features",
5
5
  "author": "AfroCodeur <https://github.com/afrocodeur>",
6
6
  "license": "MIT",
@@ -164,6 +164,7 @@ HasListItem.prototype.from = function(source, builder) {
164
164
  return args[0];
165
165
  }
166
166
  const item = builder(...args);
167
+ item.$description.value = args[0];
167
168
  item.$parent = this;
168
169
  return item;
169
170
  };