web-manager 4.0.21 → 4.0.22
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/modules/bindings.js +6 -3
- package/package.json +1 -1
package/dist/modules/bindings.js
CHANGED
|
@@ -43,10 +43,13 @@ class Bindings {
|
|
|
43
43
|
this._executeAction(element, action, expression, context);
|
|
44
44
|
});
|
|
45
45
|
|
|
46
|
-
//
|
|
47
|
-
|
|
46
|
+
// Remove skeleton loader class first to trigger transition
|
|
47
|
+
element.classList.remove('wm-binding-skeleton');
|
|
48
|
+
|
|
49
|
+
// Add bound class after a brief delay to allow for smooth animation (0.25s)
|
|
50
|
+
setTimeout(() => {
|
|
48
51
|
element.classList.add('wm-bound');
|
|
49
|
-
}
|
|
52
|
+
}, 250);
|
|
50
53
|
});
|
|
51
54
|
}
|
|
52
55
|
|
package/package.json
CHANGED