@microsoft/fast-router 1.0.0-alpha.22 → 1.0.0-alpha.24
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": "Fri, 16 Jun 2023 18:17:13 GMT",
|
|
6
|
+
"tag": "@microsoft/fast-router_v1.0.0-alpha.24",
|
|
7
|
+
"version": "1.0.0-alpha.24",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "chhol@microsoft.com",
|
|
12
|
+
"package": "@microsoft/fast-router",
|
|
13
|
+
"commit": "ca0e62ee8d05f72d1d8c1ad66bd6eea8e3f0a4eb",
|
|
14
|
+
"comment": "update prettier and eslint-config-prettier versions"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"prerelease": [
|
|
18
|
+
{
|
|
19
|
+
"author": "beachball",
|
|
20
|
+
"package": "@microsoft/fast-router",
|
|
21
|
+
"comment": "Bump @microsoft/fast-element to v2.0.0-beta.24",
|
|
22
|
+
"commit": "8250aa8352940584ff443b550ee756d49f01c478"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"date": "Tue, 28 Mar 2023 22:14:10 GMT",
|
|
29
|
+
"tag": "@microsoft/fast-router_v1.0.0-alpha.23",
|
|
30
|
+
"version": "1.0.0-alpha.23",
|
|
31
|
+
"comments": {
|
|
32
|
+
"prerelease": [
|
|
33
|
+
{
|
|
34
|
+
"author": "beachball",
|
|
35
|
+
"package": "@microsoft/fast-router",
|
|
36
|
+
"comment": "Bump @microsoft/fast-element to v2.0.0-beta.23",
|
|
37
|
+
"commit": "032285c2bf0311f9f44cbc875b40696fc8f62857"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
4
42
|
{
|
|
5
43
|
"date": "Sat, 11 Mar 2023 00:09:49 GMT",
|
|
6
44
|
"tag": "@microsoft/fast-router_v1.0.0-alpha.22",
|
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 Fri, 16 Jun 2023 18:17:13 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.0.0-alpha.24
|
|
8
|
+
|
|
9
|
+
Fri, 16 Jun 2023 18:17:13 GMT
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- Bump @microsoft/fast-element to v2.0.0-beta.24
|
|
14
|
+
|
|
15
|
+
## 1.0.0-alpha.23
|
|
16
|
+
|
|
17
|
+
Tue, 28 Mar 2023 22:14:10 GMT
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- Bump @microsoft/fast-element to v2.0.0-beta.23
|
|
22
|
+
|
|
7
23
|
## 1.0.0-alpha.22
|
|
8
24
|
|
|
9
25
|
Sat, 11 Mar 2023 00:09:49 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.24",
|
|
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.24"
|
|
84
84
|
}
|
|
85
85
|
}
|