@brightspace-ui/labs 2.40.5 → 2.41.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/package.json
CHANGED
|
@@ -13,7 +13,7 @@ First, define and instantiate your own Reactive Store:
|
|
|
13
13
|
```js
|
|
14
14
|
// my-store.js
|
|
15
15
|
|
|
16
|
-
import ReactiveStore from '@brightspace-ui/labs/
|
|
16
|
+
import ReactiveStore from '@brightspace-ui/labs/utilities/reactive-store.js';
|
|
17
17
|
|
|
18
18
|
// Define your store with its reactive properties
|
|
19
19
|
class MyStore extends ReactiveStore {
|
|
@@ -100,7 +100,7 @@ Like the basic usage example, you'll first define and instantiate your own React
|
|
|
100
100
|
```js
|
|
101
101
|
// my-store.js
|
|
102
102
|
|
|
103
|
-
import ReactiveStore from '@brightspace-ui/labs/
|
|
103
|
+
import ReactiveStore from '@brightspace-ui/labs/utilities/reactive-store.js';
|
|
104
104
|
|
|
105
105
|
// Define your store with its reactive properties
|
|
106
106
|
class MyStore extends ReactiveStore {
|
|
@@ -239,7 +239,7 @@ Similar to other uses, you'll first define and instantiate your own Reactive Sto
|
|
|
239
239
|
```js
|
|
240
240
|
// my-store.js
|
|
241
241
|
|
|
242
|
-
import ReactiveStore from '@brightspace-ui/labs/
|
|
242
|
+
import ReactiveStore from '@brightspace-ui/labs/utilities/reactive-store.js';
|
|
243
243
|
|
|
244
244
|
// Define your store with its reactive properties
|
|
245
245
|
class MyStore extends ReactiveStore {
|