@microsoft/fast-router 1.0.0-alpha.23 → 1.0.0-alpha.25
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.json +38 -0
- package/CHANGELOG.md +17 -1
- package/dist/esm/commands.js +4 -2
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/fast-router",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Sat, 12 Aug 2023 00:26:36 GMT",
|
|
6
|
+
"tag": "@microsoft/fast-router_v1.0.0-alpha.25",
|
|
7
|
+
"version": "1.0.0-alpha.25",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "beachball",
|
|
12
|
+
"package": "@microsoft/fast-router",
|
|
13
|
+
"comment": "Bump @microsoft/fast-element to v2.0.0-beta.25",
|
|
14
|
+
"commit": "2297004e14386b5a689ba96361f8d8eebee69cd8"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 16 Jun 2023 18:17:13 GMT",
|
|
21
|
+
"tag": "@microsoft/fast-router_v1.0.0-alpha.24",
|
|
22
|
+
"version": "1.0.0-alpha.24",
|
|
23
|
+
"comments": {
|
|
24
|
+
"none": [
|
|
25
|
+
{
|
|
26
|
+
"author": "chhol@microsoft.com",
|
|
27
|
+
"package": "@microsoft/fast-router",
|
|
28
|
+
"commit": "ca0e62ee8d05f72d1d8c1ad66bd6eea8e3f0a4eb",
|
|
29
|
+
"comment": "update prettier and eslint-config-prettier versions"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"prerelease": [
|
|
33
|
+
{
|
|
34
|
+
"author": "beachball",
|
|
35
|
+
"package": "@microsoft/fast-router",
|
|
36
|
+
"comment": "Bump @microsoft/fast-element to v2.0.0-beta.24",
|
|
37
|
+
"commit": "8250aa8352940584ff443b550ee756d49f01c478"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
4
42
|
{
|
|
5
43
|
"date": "Tue, 28 Mar 2023 22:14:10 GMT",
|
|
6
44
|
"tag": "@microsoft/fast-router_v1.0.0-alpha.23",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
# Change Log - @microsoft/fast-router
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 12 Aug 2023 00:26:36 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.0.0-alpha.25
|
|
8
|
+
|
|
9
|
+
Sat, 12 Aug 2023 00:26:36 GMT
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- Bump @microsoft/fast-element to v2.0.0-beta.25
|
|
14
|
+
|
|
15
|
+
## 1.0.0-alpha.24
|
|
16
|
+
|
|
17
|
+
Fri, 16 Jun 2023 18:17:13 GMT
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- Bump @microsoft/fast-element to v2.0.0-beta.24
|
|
22
|
+
|
|
7
23
|
## 1.0.0-alpha.23
|
|
8
24
|
|
|
9
25
|
Tue, 28 Mar 2023 22:14:10 GMT
|
package/dist/esm/commands.js
CHANGED
|
@@ -161,10 +161,12 @@ export class Render {
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
else if (element instanceof HTMLElement) {
|
|
164
|
-
definition.factory = factory =
|
|
164
|
+
definition.factory = factory =
|
|
165
|
+
factoryFromElementInstance(element);
|
|
165
166
|
}
|
|
166
167
|
else {
|
|
167
|
-
definition.factory = factory =
|
|
168
|
+
definition.factory = factory =
|
|
169
|
+
factoryFromElementName(element);
|
|
168
170
|
}
|
|
169
171
|
return factory.create();
|
|
170
172
|
});
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@microsoft/fast-router",
|
|
3
3
|
"description": "A web-components-based router.",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.25",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"karma-sourcemap-loader": "^0.3.7",
|
|
70
70
|
"karma-webpack": "^5.0.0",
|
|
71
71
|
"mocha": "^7.1.2",
|
|
72
|
-
"prettier": "2.
|
|
72
|
+
"prettier": "2.8.8",
|
|
73
73
|
"source-map": "^0.7.3",
|
|
74
74
|
"source-map-loader": "^0.2.4",
|
|
75
75
|
"ts-loader": "^7.0.2",
|
|
@@ -80,6 +80,6 @@
|
|
|
80
80
|
"webpack-cli": "^4.9.2"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@microsoft/fast-element": "^2.0.0-beta.
|
|
83
|
+
"@microsoft/fast-element": "^2.0.0-beta.25"
|
|
84
84
|
}
|
|
85
85
|
}
|