@forge/bridge 2.2.0-next.0 → 2.2.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/CHANGELOG.md +18 -0
- package/out/view/createHistory.d.ts.map +1 -1
- package/out/view/createHistory.js +8 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/bridge
|
|
2
2
|
|
|
3
|
+
## 2.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 97ce1f3: update history.location in bridge when route changes
|
|
8
|
+
|
|
9
|
+
## 2.2.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 97ce1f3: update history.location in bridge when route changes
|
|
14
|
+
|
|
15
|
+
## 2.2.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 6fe6082: Ability to disable close on escape and overlay click for modals
|
|
20
|
+
|
|
3
21
|
## 2.2.0-next.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createHistory.d.ts","sourceRoot":"","sources":["../../src/view/createHistory.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIvC,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"createHistory.d.ts","sourceRoot":"","sources":["../../src/view/createHistory.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIvC,eAAO,MAAM,aAAa,QAAa,OAAO,CAAC,OAAO,CAOrD,CAAC"}
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createHistory = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
const bridge_1 = require("../bridge");
|
|
5
6
|
const callBridge = bridge_1.getCallBridge();
|
|
6
|
-
exports.createHistory = () => {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
exports.createHistory = () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
8
|
+
const history = yield callBridge('createHistory');
|
|
9
|
+
history.listen((location) => {
|
|
10
|
+
history.location = location;
|
|
11
|
+
});
|
|
12
|
+
return history;
|
|
13
|
+
});
|