vsn 0.1.91 → 0.1.92
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/demo/vsn.js +2 -2
- package/dist/attributes/List.js +10 -8
- package/dist/attributes/List.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/vsn.min.js +2 -2
- package/package.json +1 -1
- package/src/attributes/List.ts +1 -1
- package/src/version.ts +1 -1
package/package.json
CHANGED
package/src/attributes/List.ts
CHANGED
|
@@ -123,7 +123,7 @@ export class List extends Attribute {
|
|
|
123
123
|
for (let i: number = 0; i < this.tags.length; i++) {
|
|
124
124
|
const tag: Tag = this.tags[i];
|
|
125
125
|
const listItem = tag.scope.get(this.listItemName);
|
|
126
|
-
if ([listItem, listItem.wrapped].indexOf(item) > -1) {
|
|
126
|
+
if ([listItem, listItem.data, listItem.wrapped].indexOf(item) > -1) {
|
|
127
127
|
tag.deconstruct();
|
|
128
128
|
tag.removeFromDOM();
|
|
129
129
|
this.tags.splice(i, 1);
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.
|
|
1
|
+
export const VERSION = '0.1.92';
|
|
2
2
|
|