File tree Expand file tree Collapse file tree 3 files changed +52
-1
lines changed Expand file tree Collapse file tree 3 files changed +52
-1
lines changed Original file line number Diff line number Diff line change 8
8
"changesets" : [
9
9
" eighty-mirrors-drive" ,
10
10
" lemon-lies-visit" ,
11
+ " nine-drinks-walk" ,
11
12
" perfect-camels-carry" ,
12
13
" thin-eagles-study"
13
14
]
Original file line number Diff line number Diff line change 1
1
# astro-portabletext
2
2
3
+ ## 0.9.0-next.4
4
+
5
+ ### Minor Changes
6
+
7
+ - f95c9da: ** BREAKING CHANGE** ` astro-portabletext/components `
8
+
9
+ - Removed ` BlockProps ` type
10
+
11
+ ``` diff
12
+ - import type { BlockProps } from "astro-portabletext/components";
13
+ + import type { Block, Props as $ } from "astro-portabletext/types";
14
+ ```
15
+
16
+ ```js
17
+ // type BlockProps = $<Block>;
18
+ ```
19
+
20
+ - Removed `ListProps` type
21
+
22
+ ```diff
23
+ - import type { ListProps } from "astro-portabletext/components";
24
+ + import type { List, Props as $ } from "astro-portabletext/types";
25
+ ```
26
+
27
+ ```js
28
+ // type ListProps = $<List>;
29
+ ```
30
+
31
+ - Removed `ListItemProps` type
32
+
33
+ ```diff
34
+ - import type { ListItemProps } from "astro-portabletext/components";
35
+ + import type { ListItem, Props as $ } from "astro-portabletext/types";
36
+ ```
37
+
38
+ ```js
39
+ // type ListItemProps = $<ListItem>;
40
+ ```
41
+
42
+ - Removed `MarkProps` type
43
+
44
+ ```diff
45
+ - import type { MarkProps } from "astro-portabletext/components";
46
+ + import type { Mark, Props as $ } from "astro-portabletext/types";
47
+ ```
48
+
49
+ ```js
50
+ // type MarkProps = $<Mark<{...}>>;
51
+ ```
52
+
3
53
# # 0.9.0-next.3
4
54
5
55
# ## Minor Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " astro-portabletext" ,
3
- "version" : " 0.9.0-next.3 " ,
3
+ "version" : " 0.9.0-next.4 " ,
4
4
"type" : " module" ,
5
5
"description" : " Render Portable Text with Astro" ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments