interaqt 0.7.0 → 0.7.2
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/dist/index.js.map +1 -1
- package/dist/runtime/Controller.d.ts +3 -3
- package/dist/runtime/Controller.d.ts.map +1 -1
- package/dist/runtime/boolExpression.d.ts +0 -1
- package/dist/runtime/boolExpression.d.ts.map +1 -1
- package/dist/runtime/computations/Custom.d.ts +1 -1
- package/dist/runtime/computations/Custom.d.ts.map +1 -1
- package/package.json +8 -16
package/dist/index.js
CHANGED
|
@@ -8021,9 +8021,9 @@ class At {
|
|
|
8021
8021
|
}
|
|
8022
8022
|
return {};
|
|
8023
8023
|
}
|
|
8024
|
-
getInitialValue() {
|
|
8024
|
+
getInitialValue(t) {
|
|
8025
8025
|
if (this.getInitialValueCallback)
|
|
8026
|
-
return this.getInitialValueCallback.call(this.controller);
|
|
8026
|
+
return this.getInitialValueCallback.call(this.controller, t);
|
|
8027
8027
|
}
|
|
8028
8028
|
async compute(...t) {
|
|
8029
8029
|
if (this.computeCallback) {
|