1.1.25 • Published 2 months ago

html-strings-to-chakra v1.1.25

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

html-strings-to-chakra

html-strings-to-chakra is a easy-to-use npm package designed for converting HTML strings into Chakra UI components.

Based on html-react-parser

Note: Created for a spefisic project, to be updated to be more universal

Usage

Basic

import { parse } from  'html-strings-to-chakra';

parse("<p>Hello world!</p>")

//Output
<p class="chakra-text css-xxx">Hello World!</p>

Overwrite props

import { parse } from  'html-strings-to-chakra';

parse("<p>Hello world!</p>", {
    overwriteProps: {
	    p: {
		    as: 'h1'
	    }
    }
})

//Output
<h1 class="chakra-text css-xxx">Hello World!</h1>

Disallow inline styles

import { parse } from  'html-strings-to-chakra';

parse("<p style="color:red;">Hello World!</p>", {
    disallowStyles:  true
})

Default component mapping

ElementComponentProps
h1Headingas: 'h1', size: '3xl', mb: 'xs'
h2Headingas: 'h2', size: 'xl', mb: '2xs'
h3Headingas: 'h3', size: 'lg', mb: '2xs'
h4Headingas: 'h4', size: 'md', mb: '2xs'
h5Headingas: 'h5', size: 'md', mb: '2xs'
h6Headingas: 'h6', size: 'md', mb: '2xs'
spanTextas: 'span', size: 'inherit', fontSize: 'inherit'
aLinkvariant: 'inside-text', fontWeight: 'inherit'
abbrTextas: 'abbr', size: 'inherit', fontSize: 'inherit'
bTextas: 'b', fontWeight: 'bold', size: 'inherit', fontSize: 'inherit'
bigTextas: 'big'
blockquoteTextas: 'blockquote', variant: 'quote'
brBoxas: 'br'
captionTableCaption
citeTextas: 'cite', size: 'inherit', fontSize: 'inherit'
codeTextas: 'code', size: 'inherit', fontSize: 'inherit'
delTextas: 'del', size: 'inherit', fontSize: 'inherit'
divTextas: 'div', mb: '2xs'
emTextas: 'em', size: 'inherit', fontSize: 'inherit'
iTextas: 'i', size: 'inherit', fontSize: 'inherit'
liListItem
olOrderedList
pTextmb: '2xs'
preTextas: 'pre', size: 'inherit', fontSize: 'inherit'
qTextas: 'q', size: 'inherit', fontSize: 'inherit'
sTextas: 's', size: 'inherit', fontSize: 'inherit'
smallTextas: 'small'
strongTextas: 'strong', fontWeight: 'bold', size: 'inherit', fontSize: 'inherit'
subTextas: 'sub', size: 'inherit', fontSize: 'inherit'
supTextas: 'sup', size: 'inherit', fontSize: 'inherit'
tableTable
tbodyTbody
tdTd
thTh
theadThead
tfootTfoot
trTr
uTextas: 'u', size: 'inherit', fontSize: 'inherit'
ulUnorderedList
imgImage
1.1.25

2 months ago

1.1.24

2 months ago

1.1.23

3 months ago

1.1.22

3 months ago

1.1.21

3 months ago

1.1.1

3 months ago

1.1.2

3 months ago

1.1.0-beta.3

3 months ago

1.1.0-beta.2

3 months ago

1.1.0-beta.1

3 months ago

1.0.5

4 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago