-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tiptap 노드 및 마크 전체 리팩토링 #1111
tiptap 노드 및 마크 전체 리팩토링 #1111
Conversation
Your org requires the Graphite merge queue for merging into mainAdd the label “:rocket:” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. You must have a Graphite account in order to use the merge queue. Sign up using this link. |
Current dependencies on/for this PR:
This stack of pull requests is managed by Graphite. |
배포가 끝나면 아래 주소에서 프리뷰를 확인할 수 있어요.
|
5dc7e5b
to
d40821d
Compare
80f3a10
to
a578571
Compare
d40821d
to
c8e40da
Compare
ae7d7c6
to
26638b5
Compare
1974b9d
to
6ca5c8e
Compare
0b0118d
to
4511335
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ce7c8f8
to
24485da
Compare
24485da
to
827d616
Compare
827d616
to
aaa70dc
Compare
aaa70dc
to
936f577
Compare
936f577
to
e888154
Compare
e888154
to
6aba523
Compare
6aba523
to
04c6356
Compare
Merge activity
|
팁탭 노드 및 마크 등 관련 코드 전체 에디터 리뉴얼에 맞게 리팩토링함 **주요 변경사항** - `prose.css` 파일을 통해 스타일링하던 부분들을 이제 각 노드/마크/익스텐션에서 바로 스타일을 적용하도록 함 - `letter_spacing`, `line_height`, `text_align` 익스텐션을 deprecate하고 `paragraph`의 attribute로 옮김 (`heading`이 사라져서 `paragraph`에만 적용하면 됨) - `font_family` 익스텐션을 deprecate하고 `font_family` 마크로 재구현함 (이제 인라인으로 적용 가능) - `horizontalRule` 노드를 deprecate하고 `horizontal_rule` 노드로 재구현함 (네이밍 이슈) - `heading` 노드를 deprecate함 (이제 `paragraph` 노드로 처리 가능) - `paragraph`의 `level` attribute를 deprecate함 (이제 폰트 크기를 임의로 설정 가능) - `text_color` 마크를 deprecate하고 `font_color` 마크로 재구현함 (이제 프리셋 컬러 이름이 아닌 hex code를 입력받음) - `font_size` 마크를 신규로 추가함 (이제 폰트 크기를 인라인으로 변경 가능) - 기타 자잘한 코드 수정 및 개선
04c6356
to
9f95331
Compare
팁탭 노드 및 마크 등 관련 코드 전체 에디터 리뉴얼에 맞게 리팩토링함
주요 변경사항
prose.css
파일을 통해 스타일링하던 부분들을 이제 각 노드/마크/익스텐션에서 바로 스타일을 적용하도록 함letter_spacing
,line_height
,text_align
익스텐션을 deprecate하고paragraph
의 attribute로 옮김 (heading
이 사라져서paragraph
에만 적용하면 됨)font_family
익스텐션을 deprecate하고font_family
마크로 재구현함 (이제 인라인으로 적용 가능)horizontalRule
노드를 deprecate하고horizontal_rule
노드로 재구현함 (네이밍 이슈)heading
노드를 deprecate함 (이제paragraph
노드로 처리 가능)paragraph
의level
attribute를 deprecate함 (이제 폰트 크기를 임의로 설정 가능)text_color
마크를 deprecate하고font_color
마크로 재구현함 (이제 프리셋 컬러 이름이 아닌 hex code를 입력받음)font_size
마크를 신규로 추가함 (이제 폰트 크기를 인라인으로 변경 가능)