@microsoft/fast-element 2.5.0 → 2.6.0
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 +16 -1
- package/CHANGELOG.md +10 -2
- package/dist/dts/observable.d.ts +5 -0
- package/dist/esm/observable.js +5 -0
- package/package.json +5 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@microsoft/fast-element",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Wed,
|
|
5
|
+
"date": "Wed, 06 Aug 2025 07:14:41 GMT",
|
|
6
|
+
"version": "2.6.0",
|
|
7
|
+
"tag": "@microsoft/fast-element_v2.6.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
12
|
+
"package": "@microsoft/fast-element",
|
|
13
|
+
"commit": "4d33380afbfa3157cbcc69f4f39511e9a0bcd530",
|
|
14
|
+
"comment": "Add observervable export path"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 16 Jul 2025 22:43:52 GMT",
|
|
6
21
|
"version": "2.5.0",
|
|
7
22
|
"tag": "@microsoft/fast-element_v2.5.0",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @microsoft/fast-element
|
|
2
2
|
|
|
3
|
-
<!-- This log was last generated on Wed,
|
|
3
|
+
<!-- This log was last generated on Wed, 06 Aug 2025 07:14:41 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.6.0
|
|
8
|
+
|
|
9
|
+
Wed, 06 Aug 2025 07:14:41 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add observervable export path (7559015+janechu@users.noreply.github.com)
|
|
14
|
+
|
|
7
15
|
## 2.5.0
|
|
8
16
|
|
|
9
|
-
Wed, 16 Jul 2025 22:43:
|
|
17
|
+
Wed, 16 Jul 2025 22:43:52 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Observable exports for easy access to the Observable API
|
|
3
|
+
*/
|
|
4
|
+
export { Accessor, Expression, ExecutionContext, ExpressionController, ExpressionObserver, ExpressionNotifier, Observable, observable, ObservationRecord, SourceLifetime, volatile, } from "./observation/observable.js";
|
|
5
|
+
export { Notifier, PropertyChangeNotifier, Subscriber, SubscriberSet, } from "./observation/notifier.js";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Observable exports for easy access to the Observable API
|
|
3
|
+
*/
|
|
4
|
+
export { ExecutionContext, Observable, observable, SourceLifetime, volatile, } from "./observation/observable.js";
|
|
5
|
+
export { PropertyChangeNotifier, SubscriberSet, } from "./observation/notifier.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/fast-element",
|
|
3
3
|
"description": "A library for constructing Web Components",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.6.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft",
|
|
7
7
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -86,6 +86,10 @@
|
|
|
86
86
|
"types": "./dist/dts/dom-policy.d.ts",
|
|
87
87
|
"default": "./dist/esm/dom-policy.js"
|
|
88
88
|
},
|
|
89
|
+
"./observable.js": {
|
|
90
|
+
"types": "./dist/dts/observation/observable.d.ts",
|
|
91
|
+
"default": "./dist/esm/observation/observable.js"
|
|
92
|
+
},
|
|
89
93
|
"./package.json": "./package.json"
|
|
90
94
|
},
|
|
91
95
|
"unpkg": "dist/fast-element.min.js",
|