@mantine/tiptap 5.8.0 → 5.8.2
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/cjs/RichTextEditor.js +1 -1
- package/cjs/RichTextEditor.js.map +1 -1
- package/cjs/controls/controls.js +3 -3
- package/cjs/controls/controls.js.map +1 -1
- package/cjs/labels.js +2 -1
- package/cjs/labels.js.map +1 -1
- package/esm/RichTextEditor.js +2 -2
- package/esm/RichTextEditor.js.map +1 -1
- package/esm/controls/controls.js +3 -3
- package/esm/controls/controls.js.map +1 -1
- package/esm/labels.js +2 -1
- package/esm/labels.js.map +1 -1
- package/lib/RichTextEditor.d.ts +1 -1
- package/lib/RichTextEditor.d.ts.map +1 -1
- package/lib/controls/controls.d.ts +1 -1
- package/lib/controls/controls.d.ts.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/labels.d.ts +2 -0
- package/lib/labels.d.ts.map +1 -1
- package/package.json +4 -4
package/cjs/RichTextEditor.js
CHANGED
|
@@ -92,7 +92,7 @@ RichTextEditor.ControlsGroup = ControlsGroup.ControlsGroup;
|
|
|
92
92
|
RichTextEditor.Toolbar = Toolbar.Toolbar;
|
|
93
93
|
RichTextEditor.Bold = controls.BoldControl;
|
|
94
94
|
RichTextEditor.Italic = controls.ItalicControl;
|
|
95
|
-
RichTextEditor.Strikethrough = controls.
|
|
95
|
+
RichTextEditor.Strikethrough = controls.StrikeThroughControl;
|
|
96
96
|
RichTextEditor.Underline = controls.UnderlineControl;
|
|
97
97
|
RichTextEditor.ClearFormatting = controls.ClearFormattingControl;
|
|
98
98
|
RichTextEditor.H1 = controls.H1Control;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RichTextEditor.js","sources":["../src/RichTextEditor.tsx"],"sourcesContent":["/* eslint-disable react/no-unused-prop-types */\nimport React, { useMemo } from 'react';\nimport {\n Box,\n useComponentDefaultProps,\n DefaultProps,\n Selectors,\n StylesApiProvider,\n} from '@mantine/core';\nimport { Editor } from '@tiptap/react';\nimport { RichTextEditorProvider } from './RichTextEditor.context';\nimport * as controls from './controls';\nimport { Content, ContentStylesNames } from './Content/Content';\nimport { Control, ControlStylesNames } from './controls/Control/Control';\nimport { ControlsGroup, ControlsGroupStylesNames } from './controls/ControlsGroup/ControlsGroup';\nimport { Toolbar, ToolbarStylesNames } from './Toolbar/Toolbar';\nimport { LinkControlStylesNames } from './controls/LinkControl/LinkControl';\nimport { DEFAULT_LABELS, RichTextEditorLabels } from './labels';\nimport useStyles from './RichTextEditor.styles';\n\nexport type RichTextEditorStylesNames =\n | Selectors<typeof useStyles>\n | ContentStylesNames\n | ControlStylesNames\n | ControlsGroupStylesNames\n | ToolbarStylesNames\n | LinkControlStylesNames;\n\nexport interface RichTextEditorProps\n extends DefaultProps<RichTextEditorStylesNames>,\n React.ComponentPropsWithoutRef<'div'> {\n /** Tiptap editor instance */\n editor: Editor;\n\n /** Determines whether code highlight styles should be added, true by default */\n withCodeHighlightStyles?: boolean;\n\n /** Determines whether typography styles should be added, true by default */\n withTypographyStyles?: boolean;\n\n /** Labels that are used in controls */\n labels?: Partial<RichTextEditorLabels>;\n\n /** Child editor components */\n children: React.ReactNode;\n}\n\nconst defaultProps: Partial<RichTextEditorProps> = {\n withCodeHighlightStyles: true,\n withTypographyStyles: true,\n};\n\nexport function RichTextEditor(props: RichTextEditorProps) {\n const {\n editor,\n children,\n className,\n labels,\n withCodeHighlightStyles,\n withTypographyStyles,\n classNames,\n styles,\n unstyled,\n ...others\n } = useComponentDefaultProps('RichTextEditor', defaultProps, props);\n const { classes, cx } = useStyles(null, { name: 'RichTextEditor', classNames, styles, unstyled });\n const mergedLabels = useMemo(() => ({ ...DEFAULT_LABELS, ...labels }), [labels]);\n\n return (\n <StylesApiProvider classNames={classNames} styles={styles} unstyled={unstyled}>\n <RichTextEditorProvider\n value={{ editor, labels: mergedLabels, withCodeHighlightStyles, withTypographyStyles }}\n >\n <Box className={cx(classes.root, className)} {...others}>\n {children}\n </Box>\n </RichTextEditorProvider>\n </StylesApiProvider>\n );\n}\n\n// Generic components\nRichTextEditor.Content = Content;\nRichTextEditor.Control = Control;\nRichTextEditor.ControlsGroup = ControlsGroup;\nRichTextEditor.Toolbar = Toolbar;\n\n// Controls components\nRichTextEditor.Bold = controls.BoldControl;\nRichTextEditor.Italic = controls.ItalicControl;\nRichTextEditor.Strikethrough = controls.
|
|
1
|
+
{"version":3,"file":"RichTextEditor.js","sources":["../src/RichTextEditor.tsx"],"sourcesContent":["/* eslint-disable react/no-unused-prop-types */\nimport React, { useMemo } from 'react';\nimport {\n Box,\n useComponentDefaultProps,\n DefaultProps,\n Selectors,\n StylesApiProvider,\n} from '@mantine/core';\nimport { Editor } from '@tiptap/react';\nimport { RichTextEditorProvider } from './RichTextEditor.context';\nimport * as controls from './controls';\nimport { Content, ContentStylesNames } from './Content/Content';\nimport { Control, ControlStylesNames } from './controls/Control/Control';\nimport { ControlsGroup, ControlsGroupStylesNames } from './controls/ControlsGroup/ControlsGroup';\nimport { Toolbar, ToolbarStylesNames } from './Toolbar/Toolbar';\nimport { LinkControlStylesNames } from './controls/LinkControl/LinkControl';\nimport { DEFAULT_LABELS, RichTextEditorLabels } from './labels';\nimport useStyles from './RichTextEditor.styles';\n\nexport type RichTextEditorStylesNames =\n | Selectors<typeof useStyles>\n | ContentStylesNames\n | ControlStylesNames\n | ControlsGroupStylesNames\n | ToolbarStylesNames\n | LinkControlStylesNames;\n\nexport interface RichTextEditorProps\n extends DefaultProps<RichTextEditorStylesNames>,\n React.ComponentPropsWithoutRef<'div'> {\n /** Tiptap editor instance */\n editor: Editor | null;\n\n /** Determines whether code highlight styles should be added, true by default */\n withCodeHighlightStyles?: boolean;\n\n /** Determines whether typography styles should be added, true by default */\n withTypographyStyles?: boolean;\n\n /** Labels that are used in controls */\n labels?: Partial<RichTextEditorLabels>;\n\n /** Child editor components */\n children: React.ReactNode;\n}\n\nconst defaultProps: Partial<RichTextEditorProps> = {\n withCodeHighlightStyles: true,\n withTypographyStyles: true,\n};\n\nexport function RichTextEditor(props: RichTextEditorProps) {\n const {\n editor,\n children,\n className,\n labels,\n withCodeHighlightStyles,\n withTypographyStyles,\n classNames,\n styles,\n unstyled,\n ...others\n } = useComponentDefaultProps('RichTextEditor', defaultProps, props);\n const { classes, cx } = useStyles(null, { name: 'RichTextEditor', classNames, styles, unstyled });\n const mergedLabels = useMemo(() => ({ ...DEFAULT_LABELS, ...labels }), [labels]);\n\n return (\n <StylesApiProvider classNames={classNames} styles={styles} unstyled={unstyled}>\n <RichTextEditorProvider\n value={{ editor, labels: mergedLabels, withCodeHighlightStyles, withTypographyStyles }}\n >\n <Box className={cx(classes.root, className)} {...others}>\n {children}\n </Box>\n </RichTextEditorProvider>\n </StylesApiProvider>\n );\n}\n\n// Generic components\nRichTextEditor.Content = Content;\nRichTextEditor.Control = Control;\nRichTextEditor.ControlsGroup = ControlsGroup;\nRichTextEditor.Toolbar = Toolbar;\n\n// Controls components\nRichTextEditor.Bold = controls.BoldControl;\nRichTextEditor.Italic = controls.ItalicControl;\nRichTextEditor.Strikethrough = controls.StrikeThroughControl;\nRichTextEditor.Underline = controls.UnderlineControl;\nRichTextEditor.ClearFormatting = controls.ClearFormattingControl;\nRichTextEditor.H1 = controls.H1Control;\nRichTextEditor.H2 = controls.H2Control;\nRichTextEditor.H3 = controls.H3Control;\nRichTextEditor.H4 = controls.H4Control;\nRichTextEditor.H5 = controls.H5Control;\nRichTextEditor.H6 = controls.H6Control;\nRichTextEditor.BulletList = controls.BulletListControl;\nRichTextEditor.OrderedList = controls.OrderedListControl;\nRichTextEditor.Link = controls.LinkControl;\nRichTextEditor.Unlink = controls.UnlinkControl;\nRichTextEditor.Blockquote = controls.BlockquoteControl;\nRichTextEditor.AlignLeft = controls.AlignLeftControl;\nRichTextEditor.AlignRight = controls.AlignRightControl;\nRichTextEditor.AlignCenter = controls.AlignCenterControl;\nRichTextEditor.AlignJustify = controls.AlignJustifyControl;\nRichTextEditor.Superscript = controls.SuperscriptControl;\nRichTextEditor.Subscript = controls.SubscriptControl;\nRichTextEditor.Code = controls.CodeControl;\nRichTextEditor.CodeBlock = controls.CodeBlockControl;\nRichTextEditor.ColorPicker = controls.ColorPickerControl;\nRichTextEditor.Color = controls.ColorControl;\nRichTextEditor.Highlight = controls.HighlightControl;\nRichTextEditor.Hr = controls.HrControl;\nRichTextEditor.UnsetColor = controls.UnsetColorControl;\n\nRichTextEditor.displayName = '@mantine/tiptap/RichTextEditor';\n"],"names":["useComponentDefaultProps","labels","useStyles","useMemo","DEFAULT_LABELS","React","StylesApiProvider","RichTextEditorProvider","Box","Content","Control","ControlsGroup","Toolbar","controls.BoldControl","controls.ItalicControl","controls.StrikeThroughControl","controls.UnderlineControl","controls.ClearFormattingControl","controls.H1Control","controls.H2Control","controls.H3Control","controls.H4Control","controls.H5Control","controls.H6Control","controls.BulletListControl","controls.OrderedListControl","controls.LinkControl","controls.UnlinkControl","controls.BlockquoteControl","controls.AlignLeftControl","controls.AlignRightControl","controls.AlignCenterControl","controls.AlignJustifyControl","controls.SuperscriptControl","controls.SubscriptControl","controls.CodeControl","controls.CodeBlockControl","controls.ColorPickerControl","controls.ColorControl","controls.HighlightControl","controls.HrControl","controls.UnsetColorControl"],"mappings":"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"}
|
package/cjs/controls/controls.js
CHANGED
|
@@ -53,7 +53,7 @@ const UnderlineControl = createControl.createControl({
|
|
|
53
53
|
isActive: { name: "underline" },
|
|
54
54
|
operation: { name: "toggleUnderline" }
|
|
55
55
|
});
|
|
56
|
-
const
|
|
56
|
+
const StrikeThroughControl = createControl.createControl({
|
|
57
57
|
label: "strikeControlLabel",
|
|
58
58
|
icon: (props) => /* @__PURE__ */ React__default.createElement(icons.IconStrikethrough, __spreadProps(__spreadValues({}, props), {
|
|
59
59
|
stroke: 1.5
|
|
@@ -216,7 +216,7 @@ const HighlightControl = createControl.createControl({
|
|
|
216
216
|
operation: { name: "toggleHighlight" }
|
|
217
217
|
});
|
|
218
218
|
const HrControl = createControl.createControl({
|
|
219
|
-
label: "
|
|
219
|
+
label: "hrControlLabel",
|
|
220
220
|
icon: (props) => /* @__PURE__ */ React__default.createElement(icons.IconLineDashed, __spreadProps(__spreadValues({}, props), {
|
|
221
221
|
stroke: 1.5
|
|
222
222
|
})),
|
|
@@ -250,7 +250,7 @@ exports.HighlightControl = HighlightControl;
|
|
|
250
250
|
exports.HrControl = HrControl;
|
|
251
251
|
exports.ItalicControl = ItalicControl;
|
|
252
252
|
exports.OrderedListControl = OrderedListControl;
|
|
253
|
-
exports.
|
|
253
|
+
exports.StrikeThroughControl = StrikeThroughControl;
|
|
254
254
|
exports.SubscriptControl = SubscriptControl;
|
|
255
255
|
exports.SuperscriptControl = SuperscriptControl;
|
|
256
256
|
exports.UnderlineControl = UnderlineControl;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controls.js","sources":["../../src/controls/controls.tsx"],"sourcesContent":["import React from 'react';\nimport {\n IconBold,\n IconItalic,\n IconUnderline,\n IconStrikethrough,\n IconClearFormatting,\n IconH1,\n IconH2,\n IconH3,\n IconH4,\n IconH5,\n IconH6,\n IconList,\n IconListNumbers,\n IconUnlink,\n IconBlockquote,\n IconAlignLeft,\n IconAlignRight,\n IconAlignCenter,\n IconAlignJustified,\n IconSubscript,\n IconSuperscript,\n IconCode,\n IconHighlight,\n IconLineDashed,\n IconCircleOff,\n} from '@tabler/icons';\nimport { createControl } from './ControlBase/create-control';\n\nexport const BoldControl = createControl({\n label: 'boldControlLabel',\n icon: (props) => <IconBold {...props} stroke={1.5} />,\n isActive: { name: 'bold' },\n operation: { name: 'toggleBold' },\n});\n\nexport const ItalicControl = createControl({\n label: 'italicControlLabel',\n icon: (props) => <IconItalic {...props} stroke={1.5} />,\n isActive: { name: 'italic' },\n operation: { name: 'toggleItalic' },\n});\n\nexport const UnderlineControl = createControl({\n label: 'underlineControlLabel',\n icon: (props) => <IconUnderline {...props} stroke={1.5} />,\n isActive: { name: 'underline' },\n operation: { name: 'toggleUnderline' },\n});\n\nexport const StrikeThoughControl = createControl({\n label: 'strikeControlLabel',\n icon: (props) => <IconStrikethrough {...props} stroke={1.5} />,\n isActive: { name: 'strike' },\n operation: { name: 'toggleStrike' },\n});\n\nexport const ClearFormattingControl = createControl({\n label: 'clearFormattingControlLabel',\n icon: (props) => <IconClearFormatting {...props} stroke={1.5} />,\n operation: { name: 'unsetAllMarks' },\n});\n\nexport const UnlinkControl = createControl({\n label: 'unlinkControlLabel',\n icon: (props) => <IconUnlink {...props} stroke={1.5} />,\n operation: { name: 'unsetLink' },\n});\n\nexport const BulletListControl = createControl({\n label: 'bulletListControlLabel',\n icon: (props) => <IconList {...props} stroke={1.5} />,\n isActive: { name: 'bulletList' },\n operation: { name: 'toggleBulletList' },\n});\n\nexport const OrderedListControl = createControl({\n label: 'orderedListControlLabel',\n icon: (props) => <IconListNumbers {...props} stroke={1.5} />,\n isActive: { name: 'orderedList' },\n operation: { name: 'toggleOrderedList' },\n});\n\nexport const H1Control = createControl({\n label: 'h1ControlLabel',\n icon: (props) => <IconH1 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 1 } },\n operation: { name: 'toggleHeading', attributes: { level: 1 } },\n});\n\nexport const H2Control = createControl({\n label: 'h2ControlLabel',\n icon: (props) => <IconH2 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 2 } },\n operation: { name: 'toggleHeading', attributes: { level: 2 } },\n});\n\nexport const H3Control = createControl({\n label: 'h3ControlLabel',\n icon: (props) => <IconH3 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 3 } },\n operation: { name: 'toggleHeading', attributes: { level: 3 } },\n});\n\nexport const H4Control = createControl({\n label: 'h4ControlLabel',\n icon: (props) => <IconH4 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 4 } },\n operation: { name: 'toggleHeading', attributes: { level: 4 } },\n});\n\nexport const H5Control = createControl({\n label: 'h5ControlLabel',\n icon: (props) => <IconH5 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 5 } },\n operation: { name: 'toggleHeading', attributes: { level: 5 } },\n});\n\nexport const H6Control = createControl({\n label: 'h6ControlLabel',\n icon: (props) => <IconH6 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 6 } },\n operation: { name: 'toggleHeading', attributes: { level: 6 } },\n});\n\nexport const BlockquoteControl = createControl({\n label: 'blockquoteControlLabel',\n icon: (props) => <IconBlockquote {...props} stroke={1.5} />,\n isActive: { name: 'blockquote' },\n operation: { name: 'toggleBlockquote' },\n});\n\nexport const AlignLeftControl = createControl({\n label: 'alignLeftControlLabel',\n icon: (props) => <IconAlignLeft {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'left' },\n});\n\nexport const AlignRightControl = createControl({\n label: 'alignRightControlLabel',\n icon: (props) => <IconAlignRight {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'right' },\n});\n\nexport const AlignCenterControl = createControl({\n label: 'alignCenterControlLabel',\n icon: (props) => <IconAlignCenter {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'center' },\n});\n\nexport const AlignJustifyControl = createControl({\n label: 'alignJustifyControlLabel',\n icon: (props) => <IconAlignJustified {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'justify' },\n});\n\nexport const SubscriptControl = createControl({\n label: 'subscriptControlLabel',\n icon: (props) => <IconSubscript {...props} stroke={1.5} />,\n isActive: { name: 'subscript' },\n operation: { name: 'toggleSubscript' },\n});\n\nexport const SuperscriptControl = createControl({\n label: 'superscriptControlLabel',\n icon: (props) => <IconSuperscript {...props} stroke={1.5} />,\n isActive: { name: 'superscript' },\n operation: { name: 'toggleSuperscript' },\n});\n\nexport const CodeControl = createControl({\n label: 'codeControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'code' },\n operation: { name: 'toggleCode' },\n});\n\nexport const CodeBlockControl = createControl({\n label: 'codeBlockControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'codeBlock' },\n operation: { name: 'toggleCodeBlock' },\n});\n\nexport const HighlightControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconHighlight {...props} stroke={1.5} />,\n isActive: { name: 'highlight' },\n operation: { name: 'toggleHighlight' },\n});\n\nexport const HrControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconLineDashed {...props} stroke={1.5} />,\n operation: { name: 'setHorizontalRule' },\n});\n\nexport const UnsetColorControl = createControl({\n label: 'unsetColorControlLabel',\n icon: (props) => <IconCircleOff {...props} stroke={1.5} />,\n operation: { name: 'unsetColor' },\n});\n"],"names":["createControl","React","IconBold","IconItalic","IconUnderline","IconStrikethrough","IconClearFormatting","IconUnlink","IconList","IconListNumbers","IconH1","IconH2","IconH3","IconH4","IconH5","IconH6","IconBlockquote","IconAlignLeft","IconAlignRight","IconAlignCenter","IconAlignJustified","IconSubscript","IconSuperscript","IconCode","IconHighlight","IconLineDashed","IconCircleOff"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"controls.js","sources":["../../src/controls/controls.tsx"],"sourcesContent":["import React from 'react';\nimport {\n IconBold,\n IconItalic,\n IconUnderline,\n IconStrikethrough,\n IconClearFormatting,\n IconH1,\n IconH2,\n IconH3,\n IconH4,\n IconH5,\n IconH6,\n IconList,\n IconListNumbers,\n IconUnlink,\n IconBlockquote,\n IconAlignLeft,\n IconAlignRight,\n IconAlignCenter,\n IconAlignJustified,\n IconSubscript,\n IconSuperscript,\n IconCode,\n IconHighlight,\n IconLineDashed,\n IconCircleOff,\n} from '@tabler/icons';\nimport { createControl } from './ControlBase/create-control';\n\nexport const BoldControl = createControl({\n label: 'boldControlLabel',\n icon: (props) => <IconBold {...props} stroke={1.5} />,\n isActive: { name: 'bold' },\n operation: { name: 'toggleBold' },\n});\n\nexport const ItalicControl = createControl({\n label: 'italicControlLabel',\n icon: (props) => <IconItalic {...props} stroke={1.5} />,\n isActive: { name: 'italic' },\n operation: { name: 'toggleItalic' },\n});\n\nexport const UnderlineControl = createControl({\n label: 'underlineControlLabel',\n icon: (props) => <IconUnderline {...props} stroke={1.5} />,\n isActive: { name: 'underline' },\n operation: { name: 'toggleUnderline' },\n});\n\nexport const StrikeThroughControl = createControl({\n label: 'strikeControlLabel',\n icon: (props) => <IconStrikethrough {...props} stroke={1.5} />,\n isActive: { name: 'strike' },\n operation: { name: 'toggleStrike' },\n});\n\nexport const ClearFormattingControl = createControl({\n label: 'clearFormattingControlLabel',\n icon: (props) => <IconClearFormatting {...props} stroke={1.5} />,\n operation: { name: 'unsetAllMarks' },\n});\n\nexport const UnlinkControl = createControl({\n label: 'unlinkControlLabel',\n icon: (props) => <IconUnlink {...props} stroke={1.5} />,\n operation: { name: 'unsetLink' },\n});\n\nexport const BulletListControl = createControl({\n label: 'bulletListControlLabel',\n icon: (props) => <IconList {...props} stroke={1.5} />,\n isActive: { name: 'bulletList' },\n operation: { name: 'toggleBulletList' },\n});\n\nexport const OrderedListControl = createControl({\n label: 'orderedListControlLabel',\n icon: (props) => <IconListNumbers {...props} stroke={1.5} />,\n isActive: { name: 'orderedList' },\n operation: { name: 'toggleOrderedList' },\n});\n\nexport const H1Control = createControl({\n label: 'h1ControlLabel',\n icon: (props) => <IconH1 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 1 } },\n operation: { name: 'toggleHeading', attributes: { level: 1 } },\n});\n\nexport const H2Control = createControl({\n label: 'h2ControlLabel',\n icon: (props) => <IconH2 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 2 } },\n operation: { name: 'toggleHeading', attributes: { level: 2 } },\n});\n\nexport const H3Control = createControl({\n label: 'h3ControlLabel',\n icon: (props) => <IconH3 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 3 } },\n operation: { name: 'toggleHeading', attributes: { level: 3 } },\n});\n\nexport const H4Control = createControl({\n label: 'h4ControlLabel',\n icon: (props) => <IconH4 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 4 } },\n operation: { name: 'toggleHeading', attributes: { level: 4 } },\n});\n\nexport const H5Control = createControl({\n label: 'h5ControlLabel',\n icon: (props) => <IconH5 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 5 } },\n operation: { name: 'toggleHeading', attributes: { level: 5 } },\n});\n\nexport const H6Control = createControl({\n label: 'h6ControlLabel',\n icon: (props) => <IconH6 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 6 } },\n operation: { name: 'toggleHeading', attributes: { level: 6 } },\n});\n\nexport const BlockquoteControl = createControl({\n label: 'blockquoteControlLabel',\n icon: (props) => <IconBlockquote {...props} stroke={1.5} />,\n isActive: { name: 'blockquote' },\n operation: { name: 'toggleBlockquote' },\n});\n\nexport const AlignLeftControl = createControl({\n label: 'alignLeftControlLabel',\n icon: (props) => <IconAlignLeft {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'left' },\n});\n\nexport const AlignRightControl = createControl({\n label: 'alignRightControlLabel',\n icon: (props) => <IconAlignRight {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'right' },\n});\n\nexport const AlignCenterControl = createControl({\n label: 'alignCenterControlLabel',\n icon: (props) => <IconAlignCenter {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'center' },\n});\n\nexport const AlignJustifyControl = createControl({\n label: 'alignJustifyControlLabel',\n icon: (props) => <IconAlignJustified {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'justify' },\n});\n\nexport const SubscriptControl = createControl({\n label: 'subscriptControlLabel',\n icon: (props) => <IconSubscript {...props} stroke={1.5} />,\n isActive: { name: 'subscript' },\n operation: { name: 'toggleSubscript' },\n});\n\nexport const SuperscriptControl = createControl({\n label: 'superscriptControlLabel',\n icon: (props) => <IconSuperscript {...props} stroke={1.5} />,\n isActive: { name: 'superscript' },\n operation: { name: 'toggleSuperscript' },\n});\n\nexport const CodeControl = createControl({\n label: 'codeControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'code' },\n operation: { name: 'toggleCode' },\n});\n\nexport const CodeBlockControl = createControl({\n label: 'codeBlockControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'codeBlock' },\n operation: { name: 'toggleCodeBlock' },\n});\n\nexport const HighlightControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconHighlight {...props} stroke={1.5} />,\n isActive: { name: 'highlight' },\n operation: { name: 'toggleHighlight' },\n});\n\nexport const HrControl = createControl({\n label: 'hrControlLabel',\n icon: (props) => <IconLineDashed {...props} stroke={1.5} />,\n operation: { name: 'setHorizontalRule' },\n});\n\nexport const UnsetColorControl = createControl({\n label: 'unsetColorControlLabel',\n icon: (props) => <IconCircleOff {...props} stroke={1.5} />,\n operation: { name: 'unsetColor' },\n});\n"],"names":["createControl","React","IconBold","IconItalic","IconUnderline","IconStrikethrough","IconClearFormatting","IconUnlink","IconList","IconListNumbers","IconH1","IconH2","IconH3","IconH4","IconH5","IconH6","IconBlockquote","IconAlignLeft","IconAlignRight","IconAlignCenter","IconAlignJustified","IconSubscript","IconSuperscript","IconCode","IconHighlight","IconLineDashed","IconCircleOff"],"mappings":"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"}
|
package/cjs/labels.js
CHANGED
|
@@ -10,7 +10,7 @@ const DEFAULT_LABELS = {
|
|
|
10
10
|
boldControlLabel: "Bold",
|
|
11
11
|
italicControlLabel: "Italic",
|
|
12
12
|
underlineControlLabel: "Underline",
|
|
13
|
-
strikeControlLabel: "
|
|
13
|
+
strikeControlLabel: "Strikethrough",
|
|
14
14
|
clearFormattingControlLabel: "Clear formatting",
|
|
15
15
|
unlinkControlLabel: "Remove link",
|
|
16
16
|
bulletListControlLabel: "Bullet list",
|
|
@@ -31,6 +31,7 @@ const DEFAULT_LABELS = {
|
|
|
31
31
|
subscriptControlLabel: "Subscript",
|
|
32
32
|
superscriptControlLabel: "Superscript",
|
|
33
33
|
unsetColorControlLabel: "Unset color",
|
|
34
|
+
hrControlLabel: "Horizontal line",
|
|
34
35
|
linkEditorInputLabel: "Enter URL",
|
|
35
36
|
linkEditorInputPlaceholder: "https://example.com/",
|
|
36
37
|
linkEditorExternalLink: "Open link in a new tab",
|
package/cjs/labels.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"labels.js","sources":["../src/labels.ts"],"sourcesContent":["export interface RichTextEditorLabels {\n /** RichTextEditor.Bold control aria-label */\n boldControlLabel: string;\n\n /** RichTextEditor.Italic control aria-label */\n italicControlLabel: string;\n\n /** RichTextEditor.Underline control aria-label */\n underlineControlLabel: string;\n\n /** RichTextEditor.Strike control aria-label */\n strikeControlLabel: string;\n\n /** RichTextEditor.ClearFormatting control aria-label */\n clearFormattingControlLabel: string;\n\n /** RichTextEditor.Link control aria-label */\n linkControlLabel: string;\n\n /** RichTextEditor.Unlink control aria-label */\n unlinkControlLabel: string;\n\n /** RichTextEditor.BulletList control aria-label */\n bulletListControlLabel: string;\n\n /** RichTextEditor.OrderedList control aria-label */\n orderedListControlLabel: string;\n\n /** RichTextEditor.H1 control aria-label */\n h1ControlLabel: string;\n\n /** RichTextEditor.H2 control aria-label */\n h2ControlLabel: string;\n\n /** RichTextEditor.H3 control aria-label */\n h3ControlLabel: string;\n\n /** RichTextEditor.H4 control aria-label */\n h4ControlLabel: string;\n\n /** RichTextEditor.H5 control aria-label */\n h5ControlLabel: string;\n\n /** RichTextEditor.H6 control aria-label */\n h6ControlLabel: string;\n\n /** RichTextEditor.Blockquote control aria-label */\n blockquoteControlLabel: string;\n\n /** RichTextEditor.AlignLeft control aria-label */\n alignLeftControlLabel: string;\n\n /** RichTextEditor.AlignCenter control aria-label */\n alignCenterControlLabel: string;\n\n /** RichTextEditor.AlignRight control aria-label */\n alignRightControlLabel: string;\n\n /** RichTextEditor.AlignJustify control aria-label */\n alignJustifyControlLabel: string;\n\n /** RichTextEditor.Code control aria-label */\n codeControlLabel: string;\n\n /** RichTextEditor.CodeBlock control aria-label */\n codeBlockControlLabel: string;\n\n /** RichTextEditor.Subscript control aria-label */\n subscriptControlLabel: string;\n\n /** RichTextEditor.Superscript control aria-label */\n superscriptControlLabel: string;\n\n /** RichTextEditor.ColorPicker control aria-label */\n colorPickerControlLabel: string;\n\n /** RichTextEditor.UnsetColor control aria-label */\n unsetColorControlLabel: string;\n\n /** RichTextEditor.Highlight control aria-label */\n highlightControlLabel: string;\n\n /** A function go get RichTextEditor.Color control aria-label based on color that control applies */\n colorControlLabel(color: string): string;\n\n /** aria-label for link editor url input */\n linkEditorInputLabel: string;\n\n /** placeholder for link editor url input */\n linkEditorInputPlaceholder: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in a new tab */\n linkEditorExternalLink: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in the same tab */\n linkEditorInternalLink: string;\n\n /** Save button content in link editor */\n linkEditorSave: string;\n\n /** Cancel button title text in color picker control */\n colorPickerCancel: string;\n\n /** Clear button title text in color picker control */\n colorPickerClear: string;\n\n /** Color picker button title text in color picker control */\n colorPickerColorPicker: string;\n\n /** Palette button title text in color picker control */\n colorPickerPalette: string;\n\n /** Save button title text in color picker control */\n colorPickerSave: string;\n\n /** aria-label for color palette colors */\n colorPickerColorLabel(color: string): string;\n}\n\nexport const DEFAULT_LABELS: RichTextEditorLabels = {\n // Controls labels\n linkControlLabel: 'Link',\n colorPickerControlLabel: 'Text color',\n highlightControlLabel: 'Highlight text',\n colorControlLabel: (color) => `Set text color ${color}`,\n boldControlLabel: 'Bold',\n italicControlLabel: 'Italic',\n underlineControlLabel: 'Underline',\n strikeControlLabel: '
|
|
1
|
+
{"version":3,"file":"labels.js","sources":["../src/labels.ts"],"sourcesContent":["export interface RichTextEditorLabels {\n /** RichTextEditor.Bold control aria-label */\n boldControlLabel: string;\n\n /** RichTextEditor.Hr control aria-label */\n hrControlLabel: string;\n\n /** RichTextEditor.Italic control aria-label */\n italicControlLabel: string;\n\n /** RichTextEditor.Underline control aria-label */\n underlineControlLabel: string;\n\n /** RichTextEditor.Strike control aria-label */\n strikeControlLabel: string;\n\n /** RichTextEditor.ClearFormatting control aria-label */\n clearFormattingControlLabel: string;\n\n /** RichTextEditor.Link control aria-label */\n linkControlLabel: string;\n\n /** RichTextEditor.Unlink control aria-label */\n unlinkControlLabel: string;\n\n /** RichTextEditor.BulletList control aria-label */\n bulletListControlLabel: string;\n\n /** RichTextEditor.OrderedList control aria-label */\n orderedListControlLabel: string;\n\n /** RichTextEditor.H1 control aria-label */\n h1ControlLabel: string;\n\n /** RichTextEditor.H2 control aria-label */\n h2ControlLabel: string;\n\n /** RichTextEditor.H3 control aria-label */\n h3ControlLabel: string;\n\n /** RichTextEditor.H4 control aria-label */\n h4ControlLabel: string;\n\n /** RichTextEditor.H5 control aria-label */\n h5ControlLabel: string;\n\n /** RichTextEditor.H6 control aria-label */\n h6ControlLabel: string;\n\n /** RichTextEditor.Blockquote control aria-label */\n blockquoteControlLabel: string;\n\n /** RichTextEditor.AlignLeft control aria-label */\n alignLeftControlLabel: string;\n\n /** RichTextEditor.AlignCenter control aria-label */\n alignCenterControlLabel: string;\n\n /** RichTextEditor.AlignRight control aria-label */\n alignRightControlLabel: string;\n\n /** RichTextEditor.AlignJustify control aria-label */\n alignJustifyControlLabel: string;\n\n /** RichTextEditor.Code control aria-label */\n codeControlLabel: string;\n\n /** RichTextEditor.CodeBlock control aria-label */\n codeBlockControlLabel: string;\n\n /** RichTextEditor.Subscript control aria-label */\n subscriptControlLabel: string;\n\n /** RichTextEditor.Superscript control aria-label */\n superscriptControlLabel: string;\n\n /** RichTextEditor.ColorPicker control aria-label */\n colorPickerControlLabel: string;\n\n /** RichTextEditor.UnsetColor control aria-label */\n unsetColorControlLabel: string;\n\n /** RichTextEditor.Highlight control aria-label */\n highlightControlLabel: string;\n\n /** A function go get RichTextEditor.Color control aria-label based on color that control applies */\n colorControlLabel(color: string): string;\n\n /** aria-label for link editor url input */\n linkEditorInputLabel: string;\n\n /** placeholder for link editor url input */\n linkEditorInputPlaceholder: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in a new tab */\n linkEditorExternalLink: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in the same tab */\n linkEditorInternalLink: string;\n\n /** Save button content in link editor */\n linkEditorSave: string;\n\n /** Cancel button title text in color picker control */\n colorPickerCancel: string;\n\n /** Clear button title text in color picker control */\n colorPickerClear: string;\n\n /** Color picker button title text in color picker control */\n colorPickerColorPicker: string;\n\n /** Palette button title text in color picker control */\n colorPickerPalette: string;\n\n /** Save button title text in color picker control */\n colorPickerSave: string;\n\n /** aria-label for color palette colors */\n colorPickerColorLabel(color: string): string;\n}\n\nexport const DEFAULT_LABELS: RichTextEditorLabels = {\n // Controls labels\n linkControlLabel: 'Link',\n colorPickerControlLabel: 'Text color',\n highlightControlLabel: 'Highlight text',\n colorControlLabel: (color) => `Set text color ${color}`,\n boldControlLabel: 'Bold',\n italicControlLabel: 'Italic',\n underlineControlLabel: 'Underline',\n strikeControlLabel: 'Strikethrough',\n clearFormattingControlLabel: 'Clear formatting',\n unlinkControlLabel: 'Remove link',\n bulletListControlLabel: 'Bullet list',\n orderedListControlLabel: 'Ordered list',\n h1ControlLabel: 'Heading 1',\n h2ControlLabel: 'Heading 2',\n h3ControlLabel: 'Heading 3',\n h4ControlLabel: 'Heading 4',\n h5ControlLabel: 'Heading 5',\n h6ControlLabel: 'Heading 6',\n blockquoteControlLabel: 'Blockquote',\n alignLeftControlLabel: 'Align text: left',\n alignCenterControlLabel: 'Align text: center',\n alignRightControlLabel: 'Align text: right',\n alignJustifyControlLabel: 'Align text: justify',\n codeControlLabel: 'Code',\n codeBlockControlLabel: 'Code block',\n subscriptControlLabel: 'Subscript',\n superscriptControlLabel: 'Superscript',\n unsetColorControlLabel: 'Unset color',\n hrControlLabel: 'Horizontal line',\n\n // Link editor\n linkEditorInputLabel: 'Enter URL',\n linkEditorInputPlaceholder: 'https://example.com/',\n linkEditorExternalLink: 'Open link in a new tab',\n linkEditorInternalLink: 'Open link in the same tab',\n linkEditorSave: 'Save',\n\n // Color picker control\n colorPickerCancel: 'Cancel',\n colorPickerClear: 'Clear color',\n colorPickerColorPicker: 'Color picker',\n colorPickerPalette: 'Color palette',\n colorPickerSave: 'Save',\n colorPickerColorLabel: (color) => `Set text color ${color}`,\n};\n"],"names":[],"mappings":";;;;AAAY,MAAC,cAAc,GAAG;AAC9B,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,uBAAuB,EAAE,YAAY;AACvC,EAAE,qBAAqB,EAAE,gBAAgB;AACzC,EAAE,iBAAiB,EAAE,CAAC,KAAK,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;AACzD,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,kBAAkB,EAAE,QAAQ;AAC9B,EAAE,qBAAqB,EAAE,WAAW;AACpC,EAAE,kBAAkB,EAAE,eAAe;AACrC,EAAE,2BAA2B,EAAE,kBAAkB;AACjD,EAAE,kBAAkB,EAAE,aAAa;AACnC,EAAE,sBAAsB,EAAE,aAAa;AACvC,EAAE,uBAAuB,EAAE,cAAc;AACzC,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,sBAAsB,EAAE,YAAY;AACtC,EAAE,qBAAqB,EAAE,kBAAkB;AAC3C,EAAE,uBAAuB,EAAE,oBAAoB;AAC/C,EAAE,sBAAsB,EAAE,mBAAmB;AAC7C,EAAE,wBAAwB,EAAE,qBAAqB;AACjD,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,qBAAqB,EAAE,YAAY;AACrC,EAAE,qBAAqB,EAAE,WAAW;AACpC,EAAE,uBAAuB,EAAE,aAAa;AACxC,EAAE,sBAAsB,EAAE,aAAa;AACvC,EAAE,cAAc,EAAE,iBAAiB;AACnC,EAAE,oBAAoB,EAAE,WAAW;AACnC,EAAE,0BAA0B,EAAE,sBAAsB;AACpD,EAAE,sBAAsB,EAAE,wBAAwB;AAClD,EAAE,sBAAsB,EAAE,2BAA2B;AACrD,EAAE,cAAc,EAAE,MAAM;AACxB,EAAE,iBAAiB,EAAE,QAAQ;AAC7B,EAAE,gBAAgB,EAAE,aAAa;AACjC,EAAE,sBAAsB,EAAE,cAAc;AACxC,EAAE,kBAAkB,EAAE,eAAe;AACrC,EAAE,eAAe,EAAE,MAAM;AACzB,EAAE,qBAAqB,EAAE,CAAC,KAAK,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;AAC7D;;;;"}
|
package/esm/RichTextEditor.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useMemo } from 'react';
|
|
2
2
|
import { useComponentDefaultProps, StylesApiProvider, Box } from '@mantine/core';
|
|
3
3
|
import { RichTextEditorProvider } from './RichTextEditor.context.js';
|
|
4
|
-
import { BoldControl, ItalicControl,
|
|
4
|
+
import { BoldControl, ItalicControl, StrikeThroughControl, UnderlineControl, ClearFormattingControl, H1Control, H2Control, H3Control, H4Control, H5Control, H6Control, BulletListControl, OrderedListControl, UnlinkControl, BlockquoteControl, AlignLeftControl, AlignRightControl, AlignCenterControl, AlignJustifyControl, SuperscriptControl, SubscriptControl, CodeControl, CodeBlockControl, HighlightControl, HrControl, UnsetColorControl } from './controls/controls.js';
|
|
5
5
|
import { LinkControl } from './controls/LinkControl/LinkControl.js';
|
|
6
6
|
import { ColorPickerControl } from './controls/ColorPickerControl/ColorPickerControl.js';
|
|
7
7
|
import { ColorControl } from './controls/ColorControl/ColorControl.js';
|
|
@@ -84,7 +84,7 @@ RichTextEditor.ControlsGroup = ControlsGroup;
|
|
|
84
84
|
RichTextEditor.Toolbar = Toolbar;
|
|
85
85
|
RichTextEditor.Bold = BoldControl;
|
|
86
86
|
RichTextEditor.Italic = ItalicControl;
|
|
87
|
-
RichTextEditor.Strikethrough =
|
|
87
|
+
RichTextEditor.Strikethrough = StrikeThroughControl;
|
|
88
88
|
RichTextEditor.Underline = UnderlineControl;
|
|
89
89
|
RichTextEditor.ClearFormatting = ClearFormattingControl;
|
|
90
90
|
RichTextEditor.H1 = H1Control;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RichTextEditor.js","sources":["../src/RichTextEditor.tsx"],"sourcesContent":["/* eslint-disable react/no-unused-prop-types */\nimport React, { useMemo } from 'react';\nimport {\n Box,\n useComponentDefaultProps,\n DefaultProps,\n Selectors,\n StylesApiProvider,\n} from '@mantine/core';\nimport { Editor } from '@tiptap/react';\nimport { RichTextEditorProvider } from './RichTextEditor.context';\nimport * as controls from './controls';\nimport { Content, ContentStylesNames } from './Content/Content';\nimport { Control, ControlStylesNames } from './controls/Control/Control';\nimport { ControlsGroup, ControlsGroupStylesNames } from './controls/ControlsGroup/ControlsGroup';\nimport { Toolbar, ToolbarStylesNames } from './Toolbar/Toolbar';\nimport { LinkControlStylesNames } from './controls/LinkControl/LinkControl';\nimport { DEFAULT_LABELS, RichTextEditorLabels } from './labels';\nimport useStyles from './RichTextEditor.styles';\n\nexport type RichTextEditorStylesNames =\n | Selectors<typeof useStyles>\n | ContentStylesNames\n | ControlStylesNames\n | ControlsGroupStylesNames\n | ToolbarStylesNames\n | LinkControlStylesNames;\n\nexport interface RichTextEditorProps\n extends DefaultProps<RichTextEditorStylesNames>,\n React.ComponentPropsWithoutRef<'div'> {\n /** Tiptap editor instance */\n editor: Editor;\n\n /** Determines whether code highlight styles should be added, true by default */\n withCodeHighlightStyles?: boolean;\n\n /** Determines whether typography styles should be added, true by default */\n withTypographyStyles?: boolean;\n\n /** Labels that are used in controls */\n labels?: Partial<RichTextEditorLabels>;\n\n /** Child editor components */\n children: React.ReactNode;\n}\n\nconst defaultProps: Partial<RichTextEditorProps> = {\n withCodeHighlightStyles: true,\n withTypographyStyles: true,\n};\n\nexport function RichTextEditor(props: RichTextEditorProps) {\n const {\n editor,\n children,\n className,\n labels,\n withCodeHighlightStyles,\n withTypographyStyles,\n classNames,\n styles,\n unstyled,\n ...others\n } = useComponentDefaultProps('RichTextEditor', defaultProps, props);\n const { classes, cx } = useStyles(null, { name: 'RichTextEditor', classNames, styles, unstyled });\n const mergedLabels = useMemo(() => ({ ...DEFAULT_LABELS, ...labels }), [labels]);\n\n return (\n <StylesApiProvider classNames={classNames} styles={styles} unstyled={unstyled}>\n <RichTextEditorProvider\n value={{ editor, labels: mergedLabels, withCodeHighlightStyles, withTypographyStyles }}\n >\n <Box className={cx(classes.root, className)} {...others}>\n {children}\n </Box>\n </RichTextEditorProvider>\n </StylesApiProvider>\n );\n}\n\n// Generic components\nRichTextEditor.Content = Content;\nRichTextEditor.Control = Control;\nRichTextEditor.ControlsGroup = ControlsGroup;\nRichTextEditor.Toolbar = Toolbar;\n\n// Controls components\nRichTextEditor.Bold = controls.BoldControl;\nRichTextEditor.Italic = controls.ItalicControl;\nRichTextEditor.Strikethrough = controls.
|
|
1
|
+
{"version":3,"file":"RichTextEditor.js","sources":["../src/RichTextEditor.tsx"],"sourcesContent":["/* eslint-disable react/no-unused-prop-types */\nimport React, { useMemo } from 'react';\nimport {\n Box,\n useComponentDefaultProps,\n DefaultProps,\n Selectors,\n StylesApiProvider,\n} from '@mantine/core';\nimport { Editor } from '@tiptap/react';\nimport { RichTextEditorProvider } from './RichTextEditor.context';\nimport * as controls from './controls';\nimport { Content, ContentStylesNames } from './Content/Content';\nimport { Control, ControlStylesNames } from './controls/Control/Control';\nimport { ControlsGroup, ControlsGroupStylesNames } from './controls/ControlsGroup/ControlsGroup';\nimport { Toolbar, ToolbarStylesNames } from './Toolbar/Toolbar';\nimport { LinkControlStylesNames } from './controls/LinkControl/LinkControl';\nimport { DEFAULT_LABELS, RichTextEditorLabels } from './labels';\nimport useStyles from './RichTextEditor.styles';\n\nexport type RichTextEditorStylesNames =\n | Selectors<typeof useStyles>\n | ContentStylesNames\n | ControlStylesNames\n | ControlsGroupStylesNames\n | ToolbarStylesNames\n | LinkControlStylesNames;\n\nexport interface RichTextEditorProps\n extends DefaultProps<RichTextEditorStylesNames>,\n React.ComponentPropsWithoutRef<'div'> {\n /** Tiptap editor instance */\n editor: Editor | null;\n\n /** Determines whether code highlight styles should be added, true by default */\n withCodeHighlightStyles?: boolean;\n\n /** Determines whether typography styles should be added, true by default */\n withTypographyStyles?: boolean;\n\n /** Labels that are used in controls */\n labels?: Partial<RichTextEditorLabels>;\n\n /** Child editor components */\n children: React.ReactNode;\n}\n\nconst defaultProps: Partial<RichTextEditorProps> = {\n withCodeHighlightStyles: true,\n withTypographyStyles: true,\n};\n\nexport function RichTextEditor(props: RichTextEditorProps) {\n const {\n editor,\n children,\n className,\n labels,\n withCodeHighlightStyles,\n withTypographyStyles,\n classNames,\n styles,\n unstyled,\n ...others\n } = useComponentDefaultProps('RichTextEditor', defaultProps, props);\n const { classes, cx } = useStyles(null, { name: 'RichTextEditor', classNames, styles, unstyled });\n const mergedLabels = useMemo(() => ({ ...DEFAULT_LABELS, ...labels }), [labels]);\n\n return (\n <StylesApiProvider classNames={classNames} styles={styles} unstyled={unstyled}>\n <RichTextEditorProvider\n value={{ editor, labels: mergedLabels, withCodeHighlightStyles, withTypographyStyles }}\n >\n <Box className={cx(classes.root, className)} {...others}>\n {children}\n </Box>\n </RichTextEditorProvider>\n </StylesApiProvider>\n );\n}\n\n// Generic components\nRichTextEditor.Content = Content;\nRichTextEditor.Control = Control;\nRichTextEditor.ControlsGroup = ControlsGroup;\nRichTextEditor.Toolbar = Toolbar;\n\n// Controls components\nRichTextEditor.Bold = controls.BoldControl;\nRichTextEditor.Italic = controls.ItalicControl;\nRichTextEditor.Strikethrough = controls.StrikeThroughControl;\nRichTextEditor.Underline = controls.UnderlineControl;\nRichTextEditor.ClearFormatting = controls.ClearFormattingControl;\nRichTextEditor.H1 = controls.H1Control;\nRichTextEditor.H2 = controls.H2Control;\nRichTextEditor.H3 = controls.H3Control;\nRichTextEditor.H4 = controls.H4Control;\nRichTextEditor.H5 = controls.H5Control;\nRichTextEditor.H6 = controls.H6Control;\nRichTextEditor.BulletList = controls.BulletListControl;\nRichTextEditor.OrderedList = controls.OrderedListControl;\nRichTextEditor.Link = controls.LinkControl;\nRichTextEditor.Unlink = controls.UnlinkControl;\nRichTextEditor.Blockquote = controls.BlockquoteControl;\nRichTextEditor.AlignLeft = controls.AlignLeftControl;\nRichTextEditor.AlignRight = controls.AlignRightControl;\nRichTextEditor.AlignCenter = controls.AlignCenterControl;\nRichTextEditor.AlignJustify = controls.AlignJustifyControl;\nRichTextEditor.Superscript = controls.SuperscriptControl;\nRichTextEditor.Subscript = controls.SubscriptControl;\nRichTextEditor.Code = controls.CodeControl;\nRichTextEditor.CodeBlock = controls.CodeBlockControl;\nRichTextEditor.ColorPicker = controls.ColorPickerControl;\nRichTextEditor.Color = controls.ColorControl;\nRichTextEditor.Highlight = controls.HighlightControl;\nRichTextEditor.Hr = controls.HrControl;\nRichTextEditor.UnsetColor = controls.UnsetColorControl;\n\nRichTextEditor.displayName = '@mantine/tiptap/RichTextEditor';\n"],"names":["controls.BoldControl","controls.ItalicControl","controls.StrikeThroughControl","controls.UnderlineControl","controls.ClearFormattingControl","controls.H1Control","controls.H2Control","controls.H3Control","controls.H4Control","controls.H5Control","controls.H6Control","controls.BulletListControl","controls.OrderedListControl","controls.LinkControl","controls.UnlinkControl","controls.BlockquoteControl","controls.AlignLeftControl","controls.AlignRightControl","controls.AlignCenterControl","controls.AlignJustifyControl","controls.SuperscriptControl","controls.SubscriptControl","controls.CodeControl","controls.CodeBlockControl","controls.ColorPickerControl","controls.ColorControl","controls.HighlightControl","controls.HrControl","controls.UnsetColorControl"],"mappings":"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"}
|
package/esm/controls/controls.js
CHANGED
|
@@ -45,7 +45,7 @@ const UnderlineControl = createControl({
|
|
|
45
45
|
isActive: { name: "underline" },
|
|
46
46
|
operation: { name: "toggleUnderline" }
|
|
47
47
|
});
|
|
48
|
-
const
|
|
48
|
+
const StrikeThroughControl = createControl({
|
|
49
49
|
label: "strikeControlLabel",
|
|
50
50
|
icon: (props) => /* @__PURE__ */ React.createElement(IconStrikethrough, __spreadProps(__spreadValues({}, props), {
|
|
51
51
|
stroke: 1.5
|
|
@@ -208,7 +208,7 @@ const HighlightControl = createControl({
|
|
|
208
208
|
operation: { name: "toggleHighlight" }
|
|
209
209
|
});
|
|
210
210
|
const HrControl = createControl({
|
|
211
|
-
label: "
|
|
211
|
+
label: "hrControlLabel",
|
|
212
212
|
icon: (props) => /* @__PURE__ */ React.createElement(IconLineDashed, __spreadProps(__spreadValues({}, props), {
|
|
213
213
|
stroke: 1.5
|
|
214
214
|
})),
|
|
@@ -222,5 +222,5 @@ const UnsetColorControl = createControl({
|
|
|
222
222
|
operation: { name: "unsetColor" }
|
|
223
223
|
});
|
|
224
224
|
|
|
225
|
-
export { AlignCenterControl, AlignJustifyControl, AlignLeftControl, AlignRightControl, BlockquoteControl, BoldControl, BulletListControl, ClearFormattingControl, CodeBlockControl, CodeControl, H1Control, H2Control, H3Control, H4Control, H5Control, H6Control, HighlightControl, HrControl, ItalicControl, OrderedListControl,
|
|
225
|
+
export { AlignCenterControl, AlignJustifyControl, AlignLeftControl, AlignRightControl, BlockquoteControl, BoldControl, BulletListControl, ClearFormattingControl, CodeBlockControl, CodeControl, H1Control, H2Control, H3Control, H4Control, H5Control, H6Control, HighlightControl, HrControl, ItalicControl, OrderedListControl, StrikeThroughControl, SubscriptControl, SuperscriptControl, UnderlineControl, UnlinkControl, UnsetColorControl };
|
|
226
226
|
//# sourceMappingURL=controls.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controls.js","sources":["../../src/controls/controls.tsx"],"sourcesContent":["import React from 'react';\nimport {\n IconBold,\n IconItalic,\n IconUnderline,\n IconStrikethrough,\n IconClearFormatting,\n IconH1,\n IconH2,\n IconH3,\n IconH4,\n IconH5,\n IconH6,\n IconList,\n IconListNumbers,\n IconUnlink,\n IconBlockquote,\n IconAlignLeft,\n IconAlignRight,\n IconAlignCenter,\n IconAlignJustified,\n IconSubscript,\n IconSuperscript,\n IconCode,\n IconHighlight,\n IconLineDashed,\n IconCircleOff,\n} from '@tabler/icons';\nimport { createControl } from './ControlBase/create-control';\n\nexport const BoldControl = createControl({\n label: 'boldControlLabel',\n icon: (props) => <IconBold {...props} stroke={1.5} />,\n isActive: { name: 'bold' },\n operation: { name: 'toggleBold' },\n});\n\nexport const ItalicControl = createControl({\n label: 'italicControlLabel',\n icon: (props) => <IconItalic {...props} stroke={1.5} />,\n isActive: { name: 'italic' },\n operation: { name: 'toggleItalic' },\n});\n\nexport const UnderlineControl = createControl({\n label: 'underlineControlLabel',\n icon: (props) => <IconUnderline {...props} stroke={1.5} />,\n isActive: { name: 'underline' },\n operation: { name: 'toggleUnderline' },\n});\n\nexport const StrikeThoughControl = createControl({\n label: 'strikeControlLabel',\n icon: (props) => <IconStrikethrough {...props} stroke={1.5} />,\n isActive: { name: 'strike' },\n operation: { name: 'toggleStrike' },\n});\n\nexport const ClearFormattingControl = createControl({\n label: 'clearFormattingControlLabel',\n icon: (props) => <IconClearFormatting {...props} stroke={1.5} />,\n operation: { name: 'unsetAllMarks' },\n});\n\nexport const UnlinkControl = createControl({\n label: 'unlinkControlLabel',\n icon: (props) => <IconUnlink {...props} stroke={1.5} />,\n operation: { name: 'unsetLink' },\n});\n\nexport const BulletListControl = createControl({\n label: 'bulletListControlLabel',\n icon: (props) => <IconList {...props} stroke={1.5} />,\n isActive: { name: 'bulletList' },\n operation: { name: 'toggleBulletList' },\n});\n\nexport const OrderedListControl = createControl({\n label: 'orderedListControlLabel',\n icon: (props) => <IconListNumbers {...props} stroke={1.5} />,\n isActive: { name: 'orderedList' },\n operation: { name: 'toggleOrderedList' },\n});\n\nexport const H1Control = createControl({\n label: 'h1ControlLabel',\n icon: (props) => <IconH1 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 1 } },\n operation: { name: 'toggleHeading', attributes: { level: 1 } },\n});\n\nexport const H2Control = createControl({\n label: 'h2ControlLabel',\n icon: (props) => <IconH2 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 2 } },\n operation: { name: 'toggleHeading', attributes: { level: 2 } },\n});\n\nexport const H3Control = createControl({\n label: 'h3ControlLabel',\n icon: (props) => <IconH3 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 3 } },\n operation: { name: 'toggleHeading', attributes: { level: 3 } },\n});\n\nexport const H4Control = createControl({\n label: 'h4ControlLabel',\n icon: (props) => <IconH4 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 4 } },\n operation: { name: 'toggleHeading', attributes: { level: 4 } },\n});\n\nexport const H5Control = createControl({\n label: 'h5ControlLabel',\n icon: (props) => <IconH5 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 5 } },\n operation: { name: 'toggleHeading', attributes: { level: 5 } },\n});\n\nexport const H6Control = createControl({\n label: 'h6ControlLabel',\n icon: (props) => <IconH6 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 6 } },\n operation: { name: 'toggleHeading', attributes: { level: 6 } },\n});\n\nexport const BlockquoteControl = createControl({\n label: 'blockquoteControlLabel',\n icon: (props) => <IconBlockquote {...props} stroke={1.5} />,\n isActive: { name: 'blockquote' },\n operation: { name: 'toggleBlockquote' },\n});\n\nexport const AlignLeftControl = createControl({\n label: 'alignLeftControlLabel',\n icon: (props) => <IconAlignLeft {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'left' },\n});\n\nexport const AlignRightControl = createControl({\n label: 'alignRightControlLabel',\n icon: (props) => <IconAlignRight {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'right' },\n});\n\nexport const AlignCenterControl = createControl({\n label: 'alignCenterControlLabel',\n icon: (props) => <IconAlignCenter {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'center' },\n});\n\nexport const AlignJustifyControl = createControl({\n label: 'alignJustifyControlLabel',\n icon: (props) => <IconAlignJustified {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'justify' },\n});\n\nexport const SubscriptControl = createControl({\n label: 'subscriptControlLabel',\n icon: (props) => <IconSubscript {...props} stroke={1.5} />,\n isActive: { name: 'subscript' },\n operation: { name: 'toggleSubscript' },\n});\n\nexport const SuperscriptControl = createControl({\n label: 'superscriptControlLabel',\n icon: (props) => <IconSuperscript {...props} stroke={1.5} />,\n isActive: { name: 'superscript' },\n operation: { name: 'toggleSuperscript' },\n});\n\nexport const CodeControl = createControl({\n label: 'codeControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'code' },\n operation: { name: 'toggleCode' },\n});\n\nexport const CodeBlockControl = createControl({\n label: 'codeBlockControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'codeBlock' },\n operation: { name: 'toggleCodeBlock' },\n});\n\nexport const HighlightControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconHighlight {...props} stroke={1.5} />,\n isActive: { name: 'highlight' },\n operation: { name: 'toggleHighlight' },\n});\n\nexport const HrControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconLineDashed {...props} stroke={1.5} />,\n operation: { name: 'setHorizontalRule' },\n});\n\nexport const UnsetColorControl = createControl({\n label: 'unsetColorControlLabel',\n icon: (props) => <IconCircleOff {...props} stroke={1.5} />,\n operation: { name: 'unsetColor' },\n});\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"controls.js","sources":["../../src/controls/controls.tsx"],"sourcesContent":["import React from 'react';\nimport {\n IconBold,\n IconItalic,\n IconUnderline,\n IconStrikethrough,\n IconClearFormatting,\n IconH1,\n IconH2,\n IconH3,\n IconH4,\n IconH5,\n IconH6,\n IconList,\n IconListNumbers,\n IconUnlink,\n IconBlockquote,\n IconAlignLeft,\n IconAlignRight,\n IconAlignCenter,\n IconAlignJustified,\n IconSubscript,\n IconSuperscript,\n IconCode,\n IconHighlight,\n IconLineDashed,\n IconCircleOff,\n} from '@tabler/icons';\nimport { createControl } from './ControlBase/create-control';\n\nexport const BoldControl = createControl({\n label: 'boldControlLabel',\n icon: (props) => <IconBold {...props} stroke={1.5} />,\n isActive: { name: 'bold' },\n operation: { name: 'toggleBold' },\n});\n\nexport const ItalicControl = createControl({\n label: 'italicControlLabel',\n icon: (props) => <IconItalic {...props} stroke={1.5} />,\n isActive: { name: 'italic' },\n operation: { name: 'toggleItalic' },\n});\n\nexport const UnderlineControl = createControl({\n label: 'underlineControlLabel',\n icon: (props) => <IconUnderline {...props} stroke={1.5} />,\n isActive: { name: 'underline' },\n operation: { name: 'toggleUnderline' },\n});\n\nexport const StrikeThroughControl = createControl({\n label: 'strikeControlLabel',\n icon: (props) => <IconStrikethrough {...props} stroke={1.5} />,\n isActive: { name: 'strike' },\n operation: { name: 'toggleStrike' },\n});\n\nexport const ClearFormattingControl = createControl({\n label: 'clearFormattingControlLabel',\n icon: (props) => <IconClearFormatting {...props} stroke={1.5} />,\n operation: { name: 'unsetAllMarks' },\n});\n\nexport const UnlinkControl = createControl({\n label: 'unlinkControlLabel',\n icon: (props) => <IconUnlink {...props} stroke={1.5} />,\n operation: { name: 'unsetLink' },\n});\n\nexport const BulletListControl = createControl({\n label: 'bulletListControlLabel',\n icon: (props) => <IconList {...props} stroke={1.5} />,\n isActive: { name: 'bulletList' },\n operation: { name: 'toggleBulletList' },\n});\n\nexport const OrderedListControl = createControl({\n label: 'orderedListControlLabel',\n icon: (props) => <IconListNumbers {...props} stroke={1.5} />,\n isActive: { name: 'orderedList' },\n operation: { name: 'toggleOrderedList' },\n});\n\nexport const H1Control = createControl({\n label: 'h1ControlLabel',\n icon: (props) => <IconH1 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 1 } },\n operation: { name: 'toggleHeading', attributes: { level: 1 } },\n});\n\nexport const H2Control = createControl({\n label: 'h2ControlLabel',\n icon: (props) => <IconH2 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 2 } },\n operation: { name: 'toggleHeading', attributes: { level: 2 } },\n});\n\nexport const H3Control = createControl({\n label: 'h3ControlLabel',\n icon: (props) => <IconH3 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 3 } },\n operation: { name: 'toggleHeading', attributes: { level: 3 } },\n});\n\nexport const H4Control = createControl({\n label: 'h4ControlLabel',\n icon: (props) => <IconH4 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 4 } },\n operation: { name: 'toggleHeading', attributes: { level: 4 } },\n});\n\nexport const H5Control = createControl({\n label: 'h5ControlLabel',\n icon: (props) => <IconH5 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 5 } },\n operation: { name: 'toggleHeading', attributes: { level: 5 } },\n});\n\nexport const H6Control = createControl({\n label: 'h6ControlLabel',\n icon: (props) => <IconH6 {...props} stroke={1.5} />,\n isActive: { name: 'heading', attributes: { level: 6 } },\n operation: { name: 'toggleHeading', attributes: { level: 6 } },\n});\n\nexport const BlockquoteControl = createControl({\n label: 'blockquoteControlLabel',\n icon: (props) => <IconBlockquote {...props} stroke={1.5} />,\n isActive: { name: 'blockquote' },\n operation: { name: 'toggleBlockquote' },\n});\n\nexport const AlignLeftControl = createControl({\n label: 'alignLeftControlLabel',\n icon: (props) => <IconAlignLeft {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'left' },\n});\n\nexport const AlignRightControl = createControl({\n label: 'alignRightControlLabel',\n icon: (props) => <IconAlignRight {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'right' },\n});\n\nexport const AlignCenterControl = createControl({\n label: 'alignCenterControlLabel',\n icon: (props) => <IconAlignCenter {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'center' },\n});\n\nexport const AlignJustifyControl = createControl({\n label: 'alignJustifyControlLabel',\n icon: (props) => <IconAlignJustified {...props} stroke={1.5} />,\n operation: { name: 'setTextAlign', attributes: 'justify' },\n});\n\nexport const SubscriptControl = createControl({\n label: 'subscriptControlLabel',\n icon: (props) => <IconSubscript {...props} stroke={1.5} />,\n isActive: { name: 'subscript' },\n operation: { name: 'toggleSubscript' },\n});\n\nexport const SuperscriptControl = createControl({\n label: 'superscriptControlLabel',\n icon: (props) => <IconSuperscript {...props} stroke={1.5} />,\n isActive: { name: 'superscript' },\n operation: { name: 'toggleSuperscript' },\n});\n\nexport const CodeControl = createControl({\n label: 'codeControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'code' },\n operation: { name: 'toggleCode' },\n});\n\nexport const CodeBlockControl = createControl({\n label: 'codeBlockControlLabel',\n icon: (props) => <IconCode {...props} stroke={1.5} />,\n isActive: { name: 'codeBlock' },\n operation: { name: 'toggleCodeBlock' },\n});\n\nexport const HighlightControl = createControl({\n label: 'highlightControlLabel',\n icon: (props) => <IconHighlight {...props} stroke={1.5} />,\n isActive: { name: 'highlight' },\n operation: { name: 'toggleHighlight' },\n});\n\nexport const HrControl = createControl({\n label: 'hrControlLabel',\n icon: (props) => <IconLineDashed {...props} stroke={1.5} />,\n operation: { name: 'setHorizontalRule' },\n});\n\nexport const UnsetColorControl = createControl({\n label: 'unsetColorControlLabel',\n icon: (props) => <IconCircleOff {...props} stroke={1.5} />,\n operation: { name: 'unsetColor' },\n});\n"],"names":[],"mappings":"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"}
|
package/esm/labels.js
CHANGED
|
@@ -6,7 +6,7 @@ const DEFAULT_LABELS = {
|
|
|
6
6
|
boldControlLabel: "Bold",
|
|
7
7
|
italicControlLabel: "Italic",
|
|
8
8
|
underlineControlLabel: "Underline",
|
|
9
|
-
strikeControlLabel: "
|
|
9
|
+
strikeControlLabel: "Strikethrough",
|
|
10
10
|
clearFormattingControlLabel: "Clear formatting",
|
|
11
11
|
unlinkControlLabel: "Remove link",
|
|
12
12
|
bulletListControlLabel: "Bullet list",
|
|
@@ -27,6 +27,7 @@ const DEFAULT_LABELS = {
|
|
|
27
27
|
subscriptControlLabel: "Subscript",
|
|
28
28
|
superscriptControlLabel: "Superscript",
|
|
29
29
|
unsetColorControlLabel: "Unset color",
|
|
30
|
+
hrControlLabel: "Horizontal line",
|
|
30
31
|
linkEditorInputLabel: "Enter URL",
|
|
31
32
|
linkEditorInputPlaceholder: "https://example.com/",
|
|
32
33
|
linkEditorExternalLink: "Open link in a new tab",
|
package/esm/labels.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"labels.js","sources":["../src/labels.ts"],"sourcesContent":["export interface RichTextEditorLabels {\n /** RichTextEditor.Bold control aria-label */\n boldControlLabel: string;\n\n /** RichTextEditor.Italic control aria-label */\n italicControlLabel: string;\n\n /** RichTextEditor.Underline control aria-label */\n underlineControlLabel: string;\n\n /** RichTextEditor.Strike control aria-label */\n strikeControlLabel: string;\n\n /** RichTextEditor.ClearFormatting control aria-label */\n clearFormattingControlLabel: string;\n\n /** RichTextEditor.Link control aria-label */\n linkControlLabel: string;\n\n /** RichTextEditor.Unlink control aria-label */\n unlinkControlLabel: string;\n\n /** RichTextEditor.BulletList control aria-label */\n bulletListControlLabel: string;\n\n /** RichTextEditor.OrderedList control aria-label */\n orderedListControlLabel: string;\n\n /** RichTextEditor.H1 control aria-label */\n h1ControlLabel: string;\n\n /** RichTextEditor.H2 control aria-label */\n h2ControlLabel: string;\n\n /** RichTextEditor.H3 control aria-label */\n h3ControlLabel: string;\n\n /** RichTextEditor.H4 control aria-label */\n h4ControlLabel: string;\n\n /** RichTextEditor.H5 control aria-label */\n h5ControlLabel: string;\n\n /** RichTextEditor.H6 control aria-label */\n h6ControlLabel: string;\n\n /** RichTextEditor.Blockquote control aria-label */\n blockquoteControlLabel: string;\n\n /** RichTextEditor.AlignLeft control aria-label */\n alignLeftControlLabel: string;\n\n /** RichTextEditor.AlignCenter control aria-label */\n alignCenterControlLabel: string;\n\n /** RichTextEditor.AlignRight control aria-label */\n alignRightControlLabel: string;\n\n /** RichTextEditor.AlignJustify control aria-label */\n alignJustifyControlLabel: string;\n\n /** RichTextEditor.Code control aria-label */\n codeControlLabel: string;\n\n /** RichTextEditor.CodeBlock control aria-label */\n codeBlockControlLabel: string;\n\n /** RichTextEditor.Subscript control aria-label */\n subscriptControlLabel: string;\n\n /** RichTextEditor.Superscript control aria-label */\n superscriptControlLabel: string;\n\n /** RichTextEditor.ColorPicker control aria-label */\n colorPickerControlLabel: string;\n\n /** RichTextEditor.UnsetColor control aria-label */\n unsetColorControlLabel: string;\n\n /** RichTextEditor.Highlight control aria-label */\n highlightControlLabel: string;\n\n /** A function go get RichTextEditor.Color control aria-label based on color that control applies */\n colorControlLabel(color: string): string;\n\n /** aria-label for link editor url input */\n linkEditorInputLabel: string;\n\n /** placeholder for link editor url input */\n linkEditorInputPlaceholder: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in a new tab */\n linkEditorExternalLink: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in the same tab */\n linkEditorInternalLink: string;\n\n /** Save button content in link editor */\n linkEditorSave: string;\n\n /** Cancel button title text in color picker control */\n colorPickerCancel: string;\n\n /** Clear button title text in color picker control */\n colorPickerClear: string;\n\n /** Color picker button title text in color picker control */\n colorPickerColorPicker: string;\n\n /** Palette button title text in color picker control */\n colorPickerPalette: string;\n\n /** Save button title text in color picker control */\n colorPickerSave: string;\n\n /** aria-label for color palette colors */\n colorPickerColorLabel(color: string): string;\n}\n\nexport const DEFAULT_LABELS: RichTextEditorLabels = {\n // Controls labels\n linkControlLabel: 'Link',\n colorPickerControlLabel: 'Text color',\n highlightControlLabel: 'Highlight text',\n colorControlLabel: (color) => `Set text color ${color}`,\n boldControlLabel: 'Bold',\n italicControlLabel: 'Italic',\n underlineControlLabel: 'Underline',\n strikeControlLabel: '
|
|
1
|
+
{"version":3,"file":"labels.js","sources":["../src/labels.ts"],"sourcesContent":["export interface RichTextEditorLabels {\n /** RichTextEditor.Bold control aria-label */\n boldControlLabel: string;\n\n /** RichTextEditor.Hr control aria-label */\n hrControlLabel: string;\n\n /** RichTextEditor.Italic control aria-label */\n italicControlLabel: string;\n\n /** RichTextEditor.Underline control aria-label */\n underlineControlLabel: string;\n\n /** RichTextEditor.Strike control aria-label */\n strikeControlLabel: string;\n\n /** RichTextEditor.ClearFormatting control aria-label */\n clearFormattingControlLabel: string;\n\n /** RichTextEditor.Link control aria-label */\n linkControlLabel: string;\n\n /** RichTextEditor.Unlink control aria-label */\n unlinkControlLabel: string;\n\n /** RichTextEditor.BulletList control aria-label */\n bulletListControlLabel: string;\n\n /** RichTextEditor.OrderedList control aria-label */\n orderedListControlLabel: string;\n\n /** RichTextEditor.H1 control aria-label */\n h1ControlLabel: string;\n\n /** RichTextEditor.H2 control aria-label */\n h2ControlLabel: string;\n\n /** RichTextEditor.H3 control aria-label */\n h3ControlLabel: string;\n\n /** RichTextEditor.H4 control aria-label */\n h4ControlLabel: string;\n\n /** RichTextEditor.H5 control aria-label */\n h5ControlLabel: string;\n\n /** RichTextEditor.H6 control aria-label */\n h6ControlLabel: string;\n\n /** RichTextEditor.Blockquote control aria-label */\n blockquoteControlLabel: string;\n\n /** RichTextEditor.AlignLeft control aria-label */\n alignLeftControlLabel: string;\n\n /** RichTextEditor.AlignCenter control aria-label */\n alignCenterControlLabel: string;\n\n /** RichTextEditor.AlignRight control aria-label */\n alignRightControlLabel: string;\n\n /** RichTextEditor.AlignJustify control aria-label */\n alignJustifyControlLabel: string;\n\n /** RichTextEditor.Code control aria-label */\n codeControlLabel: string;\n\n /** RichTextEditor.CodeBlock control aria-label */\n codeBlockControlLabel: string;\n\n /** RichTextEditor.Subscript control aria-label */\n subscriptControlLabel: string;\n\n /** RichTextEditor.Superscript control aria-label */\n superscriptControlLabel: string;\n\n /** RichTextEditor.ColorPicker control aria-label */\n colorPickerControlLabel: string;\n\n /** RichTextEditor.UnsetColor control aria-label */\n unsetColorControlLabel: string;\n\n /** RichTextEditor.Highlight control aria-label */\n highlightControlLabel: string;\n\n /** A function go get RichTextEditor.Color control aria-label based on color that control applies */\n colorControlLabel(color: string): string;\n\n /** aria-label for link editor url input */\n linkEditorInputLabel: string;\n\n /** placeholder for link editor url input */\n linkEditorInputPlaceholder: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in a new tab */\n linkEditorExternalLink: string;\n\n /** Content of external button tooltip in link editor when the link was chosen to open in the same tab */\n linkEditorInternalLink: string;\n\n /** Save button content in link editor */\n linkEditorSave: string;\n\n /** Cancel button title text in color picker control */\n colorPickerCancel: string;\n\n /** Clear button title text in color picker control */\n colorPickerClear: string;\n\n /** Color picker button title text in color picker control */\n colorPickerColorPicker: string;\n\n /** Palette button title text in color picker control */\n colorPickerPalette: string;\n\n /** Save button title text in color picker control */\n colorPickerSave: string;\n\n /** aria-label for color palette colors */\n colorPickerColorLabel(color: string): string;\n}\n\nexport const DEFAULT_LABELS: RichTextEditorLabels = {\n // Controls labels\n linkControlLabel: 'Link',\n colorPickerControlLabel: 'Text color',\n highlightControlLabel: 'Highlight text',\n colorControlLabel: (color) => `Set text color ${color}`,\n boldControlLabel: 'Bold',\n italicControlLabel: 'Italic',\n underlineControlLabel: 'Underline',\n strikeControlLabel: 'Strikethrough',\n clearFormattingControlLabel: 'Clear formatting',\n unlinkControlLabel: 'Remove link',\n bulletListControlLabel: 'Bullet list',\n orderedListControlLabel: 'Ordered list',\n h1ControlLabel: 'Heading 1',\n h2ControlLabel: 'Heading 2',\n h3ControlLabel: 'Heading 3',\n h4ControlLabel: 'Heading 4',\n h5ControlLabel: 'Heading 5',\n h6ControlLabel: 'Heading 6',\n blockquoteControlLabel: 'Blockquote',\n alignLeftControlLabel: 'Align text: left',\n alignCenterControlLabel: 'Align text: center',\n alignRightControlLabel: 'Align text: right',\n alignJustifyControlLabel: 'Align text: justify',\n codeControlLabel: 'Code',\n codeBlockControlLabel: 'Code block',\n subscriptControlLabel: 'Subscript',\n superscriptControlLabel: 'Superscript',\n unsetColorControlLabel: 'Unset color',\n hrControlLabel: 'Horizontal line',\n\n // Link editor\n linkEditorInputLabel: 'Enter URL',\n linkEditorInputPlaceholder: 'https://example.com/',\n linkEditorExternalLink: 'Open link in a new tab',\n linkEditorInternalLink: 'Open link in the same tab',\n linkEditorSave: 'Save',\n\n // Color picker control\n colorPickerCancel: 'Cancel',\n colorPickerClear: 'Clear color',\n colorPickerColorPicker: 'Color picker',\n colorPickerPalette: 'Color palette',\n colorPickerSave: 'Save',\n colorPickerColorLabel: (color) => `Set text color ${color}`,\n};\n"],"names":[],"mappings":"AAAY,MAAC,cAAc,GAAG;AAC9B,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,uBAAuB,EAAE,YAAY;AACvC,EAAE,qBAAqB,EAAE,gBAAgB;AACzC,EAAE,iBAAiB,EAAE,CAAC,KAAK,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;AACzD,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,kBAAkB,EAAE,QAAQ;AAC9B,EAAE,qBAAqB,EAAE,WAAW;AACpC,EAAE,kBAAkB,EAAE,eAAe;AACrC,EAAE,2BAA2B,EAAE,kBAAkB;AACjD,EAAE,kBAAkB,EAAE,aAAa;AACnC,EAAE,sBAAsB,EAAE,aAAa;AACvC,EAAE,uBAAuB,EAAE,cAAc;AACzC,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,cAAc,EAAE,WAAW;AAC7B,EAAE,sBAAsB,EAAE,YAAY;AACtC,EAAE,qBAAqB,EAAE,kBAAkB;AAC3C,EAAE,uBAAuB,EAAE,oBAAoB;AAC/C,EAAE,sBAAsB,EAAE,mBAAmB;AAC7C,EAAE,wBAAwB,EAAE,qBAAqB;AACjD,EAAE,gBAAgB,EAAE,MAAM;AAC1B,EAAE,qBAAqB,EAAE,YAAY;AACrC,EAAE,qBAAqB,EAAE,WAAW;AACpC,EAAE,uBAAuB,EAAE,aAAa;AACxC,EAAE,sBAAsB,EAAE,aAAa;AACvC,EAAE,cAAc,EAAE,iBAAiB;AACnC,EAAE,oBAAoB,EAAE,WAAW;AACnC,EAAE,0BAA0B,EAAE,sBAAsB;AACpD,EAAE,sBAAsB,EAAE,wBAAwB;AAClD,EAAE,sBAAsB,EAAE,2BAA2B;AACrD,EAAE,cAAc,EAAE,MAAM;AACxB,EAAE,iBAAiB,EAAE,QAAQ;AAC7B,EAAE,gBAAgB,EAAE,aAAa;AACjC,EAAE,sBAAsB,EAAE,cAAc;AACxC,EAAE,kBAAkB,EAAE,eAAe;AACrC,EAAE,eAAe,EAAE,MAAM;AACzB,EAAE,qBAAqB,EAAE,CAAC,KAAK,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;AAC7D;;;;"}
|
package/lib/RichTextEditor.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import useStyles from './RichTextEditor.styles';
|
|
|
11
11
|
export declare type RichTextEditorStylesNames = Selectors<typeof useStyles> | ContentStylesNames | ControlStylesNames | ControlsGroupStylesNames | ToolbarStylesNames | LinkControlStylesNames;
|
|
12
12
|
export interface RichTextEditorProps extends DefaultProps<RichTextEditorStylesNames>, React.ComponentPropsWithoutRef<'div'> {
|
|
13
13
|
/** Tiptap editor instance */
|
|
14
|
-
editor: Editor;
|
|
14
|
+
editor: Editor | null;
|
|
15
15
|
/** Determines whether code highlight styles should be added, true by default */
|
|
16
16
|
withCodeHighlightStyles?: boolean;
|
|
17
17
|
/** Determines whether typography styles should be added, true by default */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RichTextEditor.d.ts","sourceRoot":"","sources":["../src/RichTextEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAC;AACvC,OAAO,EAGL,YAAY,EACZ,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAGvC,OAAO,EAAW,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAW,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACzE,OAAO,EAAiB,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AACjG,OAAO,EAAW,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAC5E,OAAO,EAAkB,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,SAAS,MAAM,yBAAyB,CAAC;AAEhD,oBAAY,yBAAyB,GACjC,SAAS,CAAC,OAAO,SAAS,CAAC,GAC3B,kBAAkB,GAClB,kBAAkB,GAClB,wBAAwB,GACxB,kBAAkB,GAClB,sBAAsB,CAAC;AAE3B,MAAM,WAAW,mBACf,SAAQ,YAAY,CAAC,yBAAyB,CAAC,EAC7C,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC;IACvC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"RichTextEditor.d.ts","sourceRoot":"","sources":["../src/RichTextEditor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAkB,MAAM,OAAO,CAAC;AACvC,OAAO,EAGL,YAAY,EACZ,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAGvC,OAAO,EAAW,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAW,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACzE,OAAO,EAAiB,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AACjG,OAAO,EAAW,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAC5E,OAAO,EAAkB,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,SAAS,MAAM,yBAAyB,CAAC;AAEhD,oBAAY,yBAAyB,GACjC,SAAS,CAAC,OAAO,SAAS,CAAC,GAC3B,kBAAkB,GAClB,kBAAkB,GAClB,wBAAwB,GACxB,kBAAkB,GAClB,sBAAsB,CAAC;AAE3B,MAAM,WAAW,mBACf,SAAQ,YAAY,CAAC,yBAAyB,CAAC,EAC7C,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC;IACvC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtB,gFAAgF;IAChF,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC,4EAA4E;IAC5E,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,uCAAuC;IACvC,MAAM,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAEvC,8BAA8B;IAC9B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAOD,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,eA2BxD;yBA3Be,cAAc"}
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export declare const BoldControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
3
3
|
export declare const ItalicControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
4
4
|
export declare const UnderlineControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const StrikeThroughControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
6
6
|
export declare const ClearFormattingControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
7
7
|
export declare const UnlinkControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
8
8
|
export declare const BulletListControl: React.ForwardRefExoticComponent<import("./Control/Control").PremadeControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controls.d.ts","sourceRoot":"","sources":["../../src/controls/controls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AA8B1B,eAAO,MAAM,WAAW,2HAKtB,CAAC;AAEH,eAAO,MAAM,aAAa,2HAKxB,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAK3B,CAAC;AAEH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"controls.d.ts","sourceRoot":"","sources":["../../src/controls/controls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AA8B1B,eAAO,MAAM,WAAW,2HAKtB,CAAC;AAEH,eAAO,MAAM,aAAa,2HAKxB,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAK3B,CAAC;AAEH,eAAO,MAAM,oBAAoB,2HAK/B,CAAC;AAEH,eAAO,MAAM,sBAAsB,2HAIjC,CAAC;AAEH,eAAO,MAAM,aAAa,2HAIxB,CAAC;AAEH,eAAO,MAAM,iBAAiB,2HAK5B,CAAC;AAEH,eAAO,MAAM,kBAAkB,2HAK7B,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,SAAS,2HAKpB,CAAC;AAEH,eAAO,MAAM,iBAAiB,2HAK5B,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAI3B,CAAC;AAEH,eAAO,MAAM,iBAAiB,2HAI5B,CAAC;AAEH,eAAO,MAAM,kBAAkB,2HAI7B,CAAC;AAEH,eAAO,MAAM,mBAAmB,2HAI9B,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAK3B,CAAC;AAEH,eAAO,MAAM,kBAAkB,2HAK7B,CAAC;AAEH,eAAO,MAAM,WAAW,2HAKtB,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAK3B,CAAC;AAEH,eAAO,MAAM,gBAAgB,2HAK3B,CAAC;AAEH,eAAO,MAAM,SAAS,2HAIpB,CAAC;AAEH,eAAO,MAAM,iBAAiB,2HAI5B,CAAC"}
|
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export * from './extensions';
|
|
|
2
2
|
export { RichTextEditor } from './RichTextEditor';
|
|
3
3
|
export { useRichTextEditorContext } from './RichTextEditor.context';
|
|
4
4
|
export { DEFAULT_LABELS } from './labels';
|
|
5
|
-
export type { RichTextEditorProps } from './RichTextEditor';
|
|
5
|
+
export type { RichTextEditorProps, RichTextEditorStylesNames } from './RichTextEditor';
|
|
6
6
|
export type { RichTextEditorToolbarProps } from './Toolbar/Toolbar';
|
|
7
7
|
export type { RichTextEditorControlProps } from './controls/Control/Control';
|
|
8
8
|
export type { RichTextEditorColorControlProps } from './controls/ColorControl/ColorControl';
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,YAAY,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,YAAY,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AACvF,YAAY,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAC;AACpE,YAAY,EAAE,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AAC7E,YAAY,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAC5F,YAAY,EAAE,8BAA8B,EAAE,MAAM,oCAAoC,CAAC;AACzF,YAAY,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAC;AACpE,YAAY,EAAE,gCAAgC,EAAE,MAAM,wCAAwC,CAAC;AAC/F,YAAY,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC"}
|
package/lib/labels.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export interface RichTextEditorLabels {
|
|
2
2
|
/** RichTextEditor.Bold control aria-label */
|
|
3
3
|
boldControlLabel: string;
|
|
4
|
+
/** RichTextEditor.Hr control aria-label */
|
|
5
|
+
hrControlLabel: string;
|
|
4
6
|
/** RichTextEditor.Italic control aria-label */
|
|
5
7
|
italicControlLabel: string;
|
|
6
8
|
/** RichTextEditor.Underline control aria-label */
|
package/lib/labels.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"labels.d.ts","sourceRoot":"","sources":["../src/labels.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,wDAAwD;IACxD,2BAA2B,EAAE,MAAM,CAAC;IAEpC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,qDAAqD;IACrD,wBAAwB,EAAE,MAAM,CAAC;IAEjC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oGAAoG;IACpG,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IAEzC,2CAA2C;IAC3C,oBAAoB,EAAE,MAAM,CAAC;IAE7B,4CAA4C;IAC5C,0BAA0B,EAAE,MAAM,CAAC;IAEnC,sGAAsG;IACtG,sBAAsB,EAAE,MAAM,CAAC;IAE/B,yGAAyG;IACzG,sBAAsB,EAAE,MAAM,CAAC;IAE/B,yCAAyC;IACzC,cAAc,EAAE,MAAM,CAAC;IAEvB,uDAAuD;IACvD,iBAAiB,EAAE,MAAM,CAAC;IAE1B,sDAAsD;IACtD,gBAAgB,EAAE,MAAM,CAAC;IAEzB,6DAA6D;IAC7D,sBAAsB,EAAE,MAAM,CAAC;IAE/B,wDAAwD;IACxD,kBAAkB,EAAE,MAAM,CAAC;IAE3B,qDAAqD;IACrD,eAAe,EAAE,MAAM,CAAC;IAExB,0CAA0C;IAC1C,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9C;AAED,eAAO,MAAM,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"labels.d.ts","sourceRoot":"","sources":["../src/labels.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,wDAAwD;IACxD,2BAA2B,EAAE,MAAM,CAAC;IAEpC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,+CAA+C;IAC/C,kBAAkB,EAAE,MAAM,CAAC;IAE3B,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,2CAA2C;IAC3C,cAAc,EAAE,MAAM,CAAC;IAEvB,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,qDAAqD;IACrD,wBAAwB,EAAE,MAAM,CAAC;IAEjC,6CAA6C;IAC7C,gBAAgB,EAAE,MAAM,CAAC;IAEzB,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,oDAAoD;IACpD,uBAAuB,EAAE,MAAM,CAAC;IAEhC,mDAAmD;IACnD,sBAAsB,EAAE,MAAM,CAAC;IAE/B,kDAAkD;IAClD,qBAAqB,EAAE,MAAM,CAAC;IAE9B,oGAAoG;IACpG,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IAEzC,2CAA2C;IAC3C,oBAAoB,EAAE,MAAM,CAAC;IAE7B,4CAA4C;IAC5C,0BAA0B,EAAE,MAAM,CAAC;IAEnC,sGAAsG;IACtG,sBAAsB,EAAE,MAAM,CAAC;IAE/B,yGAAyG;IACzG,sBAAsB,EAAE,MAAM,CAAC;IAE/B,yCAAyC;IACzC,cAAc,EAAE,MAAM,CAAC;IAEvB,uDAAuD;IACvD,iBAAiB,EAAE,MAAM,CAAC;IAE1B,sDAAsD;IACtD,gBAAgB,EAAE,MAAM,CAAC;IAEzB,6DAA6D;IAC7D,sBAAsB,EAAE,MAAM,CAAC;IAE/B,wDAAwD;IACxD,kBAAkB,EAAE,MAAM,CAAC;IAE3B,qDAAqD;IACrD,eAAe,EAAE,MAAM,CAAC;IAExB,0CAA0C;IAC1C,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9C;AAED,eAAO,MAAM,cAAc,EAAE,oBA8C5B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mantine/tiptap",
|
|
3
3
|
"description": "Rich text editor based on tiptap",
|
|
4
|
-
"version": "5.8.
|
|
4
|
+
"version": "5.8.2",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"rich-text-editor"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@mantine/core": "5.8.
|
|
31
|
-
"@mantine/hooks": "5.8.
|
|
30
|
+
"@mantine/core": "5.8.2",
|
|
31
|
+
"@mantine/hooks": "5.8.2",
|
|
32
32
|
"@tabler/icons": "*",
|
|
33
33
|
"@tiptap/extension-link": "^2.0.0-beta.202",
|
|
34
34
|
"@tiptap/react": "^2.0.0-beta.202",
|
|
35
35
|
"react": ">=16.8.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@mantine/utils": "5.8.
|
|
38
|
+
"@mantine/utils": "5.8.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {}
|
|
41
41
|
}
|