|
1 |
| -export { |
2 |
| - trackedArray, |
3 |
| - trackedObject, |
4 |
| - trackedWeakSet, |
5 |
| - trackedSet, |
6 |
| - trackedMap, |
7 |
| - trackedWeakMap, |
8 |
| -} from '@glimmer/validator'; |
9 |
| - |
10 | 1 | /**
|
11 | 2 | * The `@ember/reactive` package contains common reactive utilities
|
12 | 3 | * for tracking values and creating reactive data structures.
|
@@ -56,6 +47,7 @@ export {
|
56 | 47 | * @returns {Array} A tracked array that updates reactively
|
57 | 48 | * @public
|
58 | 49 | */
|
| 50 | +export { trackedArray } from '@glimmer/validator'; |
59 | 51 |
|
60 | 52 | /**
|
61 | 53 | * A utility for creating tracked objects, copying the original data so that
|
@@ -98,6 +90,7 @@ export {
|
98 | 90 | * @returns {Object} A tracked object that updates reactively
|
99 | 91 | * @public
|
100 | 92 | */
|
| 93 | +export { trackedObject } from '@glimmer/validator'; |
101 | 94 |
|
102 | 95 | /**
|
103 | 96 | * A utility for creating tracked sets, copying the original data so that
|
@@ -141,6 +134,7 @@ export {
|
141 | 134 | * @returns {Set} A tracked Set that updates reactively
|
142 | 135 | * @public
|
143 | 136 | */
|
| 137 | +export { trackedSet } from '@glimmer/validator'; |
144 | 138 |
|
145 | 139 | /**
|
146 | 140 | * A utility for creating tracked weak sets, copying the original data so that
|
@@ -181,6 +175,7 @@ export {
|
181 | 175 | * @returns {WeakSet} A tracked WeakSet that updates reactively
|
182 | 176 | * @public
|
183 | 177 | */
|
| 178 | +export { trackedWeakSet } from '@glimmer/validator'; |
184 | 179 |
|
185 | 180 | /**
|
186 | 181 | * A utility for creating tracked maps, copying the original data so that
|
@@ -224,6 +219,7 @@ export {
|
224 | 219 | * @returns {Map} A tracked Map that updates reactively
|
225 | 220 | * @public
|
226 | 221 | */
|
| 222 | +export { trackedMap } from '@glimmer/validator'; |
227 | 223 |
|
228 | 224 | /**
|
229 | 225 | * A utility for creating tracked weak maps, copying the original data so that
|
@@ -264,3 +260,4 @@ export {
|
264 | 260 | * @returns {WeakMap} A tracked WeakMap that updates reactively
|
265 | 261 | * @public
|
266 | 262 | */
|
| 263 | +export { trackedWeakMap } from '@glimmer/validator'; |
0 commit comments