-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
RichText & Docs: remove or rename undocumented functions and constants #14239
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,34 +4,30 @@ | |
import './store'; | ||
|
||
export { applyFormat } from './apply-format'; | ||
export { charAt } from './char-at'; | ||
export { concat } from './concat'; | ||
export { create } from './create'; | ||
export { getActiveFormat } from './get-active-format'; | ||
export { getActiveObject } from './get-active-object'; | ||
export { getSelectionEnd } from './get-selection-end'; | ||
export { getSelectionStart } from './get-selection-start'; | ||
export { getTextContent } from './get-text-content'; | ||
export { isCollapsed } from './is-collapsed'; | ||
export { isEmpty, isEmptyLine } from './is-empty'; | ||
export { isEmpty, isEmptyLine as __unstableIsEmptyLine } from './is-empty'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Renaming the symbol at this point to use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, maybe it's good to do that. But the reason it's marked unstable is that it was never meant to be exported. It's only used by the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
So, regarding this, there's nothing to be settled. We need to move |
||
export { join } from './join'; | ||
export { registerFormatType } from './register-format-type'; | ||
export { removeFormat } from './remove-format'; | ||
export { remove } from './remove'; | ||
export { replace } from './replace'; | ||
export { insert } from './insert'; | ||
export { insertLineBreak } from './insert-line-break'; | ||
export { insertLineSeparator } from './insert-line-separator'; | ||
export { insertLineSeparator as __unstableInsertLineSeparator } from './insert-line-separator'; | ||
export { insertObject } from './insert-object'; | ||
export { slice } from './slice'; | ||
export { split } from './split'; | ||
export { apply, toDom as unstableToDom } from './to-dom'; | ||
export { apply as __unstableApply, toDom as __unstableToDom } from './to-dom'; | ||
export { toHTMLString } from './to-html-string'; | ||
export { toggleFormat } from './toggle-format'; | ||
export { LINE_SEPARATOR } from './special-characters'; | ||
export { LINE_SEPARATOR as __UNSTABLE_LINE_SEPARATOR } from './special-characters'; | ||
export { unregisterFormatType } from './unregister-format-type'; | ||
export { indentListItems } from './indent-list-items'; | ||
export { outdentListItems } from './outdent-list-items'; | ||
export { changeListType } from './change-list-type'; | ||
export { indentListItems as __unstableIndentListItems } from './indent-list-items'; | ||
export { outdentListItems as __unstableOutdentListItems } from './outdent-list-items'; | ||
export { changeListType as __unstableChangeListType } from './change-list-type'; | ||
export { updateFormats as __unstableUpdateFormats } from './update-formats'; | ||
export { getActiveFormats as __unstableGetActiveFormats } from './get-active-formats'; |
This file was deleted.
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.
❤️