File tree 8 files changed +432
-181
lines changed
8 files changed +432
-181
lines changed Original file line number Diff line number Diff line change 9
9
"docs:watch" : " typedoc --options ./typedoc.config.json --watch"
10
10
},
11
11
"devDependencies" : {
12
- "typedoc" : " ^0.26.7 " ,
12
+ "typedoc" : " ^0.26.10 " ,
13
13
"typedoc-github-wiki-theme" : " ^2.0.0" ,
14
14
"typedoc-gitlab-wiki-theme" : " ^2.0.1" ,
15
15
"typedoc-plugin-markdown" : " ^4.2.7" ,
16
16
"typedoc-plugin-markdown-pages" : " ^0.3.0" ,
17
- "typedoc-plugin-mdn-links" : " ^3.2.12 " ,
18
- "typescript" : " ^5.6.2 "
17
+ "typedoc-plugin-mdn-links" : " ^3.3.4 " ,
18
+ "typescript" : " ^5.6.3 "
19
19
},
20
20
"engines" : {
21
21
"node" : " >= 18"
Original file line number Diff line number Diff line change 21
21
"concurrently" : " ^9.0.1" ,
22
22
"prettier" : " ^3.0.3" ,
23
23
"prettier-plugin-ember-template-tag" : " ^2.0.0" ,
24
- "release-plan" : " ^0.9.2 "
24
+ "release-plan" : " ^0.10.0 "
25
25
},
26
26
"volta" : {
27
27
"node" : " 20.11.1" ,
Original file line number Diff line number Diff line change 97
97
"prettier-plugin-ember-template-tag" : " ^2.0.0" ,
98
98
"rollup" : " ^4.21.3" ,
99
99
"rollup-plugin-copy" : " ^3.5.0" ,
100
- "typescript" : " ^5.6.2 "
100
+ "typescript" : " ^5.6.3 "
101
101
},
102
102
"publishConfig" : {
103
103
"registry" : " https://registry.npmjs.org"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { trackedFunction } from './function.ts';
6
6
* Reactively load an Image with access to loading / error state.
7
7
*
8
8
* Usage in a component
9
- * ```gjs
9
+ * ```js
10
10
* import { ReactiveImage } from 'reactiveweb/image';
11
11
* <template>
12
12
* {{#let (ReactiveImage 'https://path.to.image') as |state|}}
Original file line number Diff line number Diff line change 8
8
*
9
9
* As a result, tracked data should not be set within `sync`.
10
10
* Example usage of when you may want to use `sync`
11
- * ```gjs
11
+ * ```js
12
12
* import { sync } from 'reactiveweb/sync';
13
13
* import { fn } from '@ember/helper';
14
14
*
24
24
* `sync` does autotrack, so accessing tracked data within the function passed to sync
25
25
* will cause updates to be re-synced.
26
26
*
27
- * ```gjs
27
+ * ```js
28
28
* import { sync } from 'reactiveweb/sync';
29
29
* import { fn } from '@ember/helper';
30
30
*
53
53
* since auto-tracking is synchronous, but the probability is non-0.
54
54
*
55
55
* Example of detaching from auto-tracking:
56
- * ```gjs
56
+ * ```js
57
57
* import { sync } from 'reactiveweb/sync';
58
58
*
59
59
* class Demo extends Component {
Original file line number Diff line number Diff line change 87
87
"stylelint-config-standard" : " ^36.0.1" ,
88
88
"stylelint-prettier" : " ^5.0.2" ,
89
89
"tracked-built-ins" : " ^3.3.0" ,
90
- "typescript" : " ^5.6.2 " ,
90
+ "typescript" : " ^5.6.3 " ,
91
91
"webpack" : " ^5.89.0"
92
92
},
93
93
"engines" : {
Original file line number Diff line number Diff line change 88
88
"stylelint-config-standard" : " ^36.0.1" ,
89
89
"stylelint-prettier" : " ^5.0.2" ,
90
90
"tracked-built-ins" : " ^3.3.0" ,
91
- "typescript" : " ^5.6.2 " ,
91
+ "typescript" : " ^5.6.3 " ,
92
92
"webpack" : " ^5.89.0"
93
93
},
94
94
"engines" : {
You can’t perform that action at this time.
0 commit comments