@micropermit/client-angular 0.2.13 → 0.3.1
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/bundles/micropermit-client-angular.umd.js +16 -2
- package/bundles/micropermit-client-angular.umd.js.map +1 -1
- package/bundles/micropermit-client-angular.umd.min.js +1 -1
- package/bundles/micropermit-client-angular.umd.min.js.map +1 -1
- package/esm2015/lib/links/linkfield.js +14 -3
- package/esm5/lib/links/linkfield.js +17 -3
- package/fesm2015/micropermit-client-angular.js +13 -2
- package/fesm2015/micropermit-client-angular.js.map +1 -1
- package/fesm5/micropermit-client-angular.js +16 -2
- package/fesm5/micropermit-client-angular.js.map +1 -1
- package/lib/links/linkfield.d.ts +1 -0
- package/micropermit-client-angular.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -890,13 +890,15 @@
|
|
|
890
890
|
return this.valueSubj;
|
|
891
891
|
}
|
|
892
892
|
else {
|
|
893
|
-
|
|
893
|
+
/** @type {?} */
|
|
894
|
+
var valueSubj_1 = new rxjs.ReplaySubject(1);
|
|
895
|
+
this.valueSubj = valueSubj_1;
|
|
894
896
|
return rxjs.defer((/**
|
|
895
897
|
* @return {?}
|
|
896
898
|
*/
|
|
897
899
|
function () {
|
|
898
900
|
_this.initWithObs(null, null).subscribe();
|
|
899
|
-
return
|
|
901
|
+
return valueSubj_1;
|
|
900
902
|
}));
|
|
901
903
|
}
|
|
902
904
|
};
|
|
@@ -950,6 +952,18 @@
|
|
|
950
952
|
this.valueSubj = null;
|
|
951
953
|
this._getPromise = null;
|
|
952
954
|
};
|
|
955
|
+
/**
|
|
956
|
+
* @return {?}
|
|
957
|
+
*/
|
|
958
|
+
LinkField.prototype.copyUninitialized = /**
|
|
959
|
+
* @return {?}
|
|
960
|
+
*/
|
|
961
|
+
function () {
|
|
962
|
+
/** @type {?} */
|
|
963
|
+
var copy = this.copy();
|
|
964
|
+
copy.uninitialize();
|
|
965
|
+
return copy;
|
|
966
|
+
};
|
|
953
967
|
/**
|
|
954
968
|
* @return {?}
|
|
955
969
|
*/
|