Skip to content

Commit 54ff79f

Browse files
authored
feat: react native ai component sdk, prettier and markdown library port (#1)
* feat: bootstrap rn ui sdk * feat: add custom rules as well * chore: cleanup * fix: blockquote bug * feat: refactor blockquote * fix: eslint issues * fix: prettier issues * fix: additional eslint issues * fix: various types of links * fix: minor cleanup * chore: refactor autolinks * fix: refactor link and fix other link types * chore: remove logs * chore: cleanup * feat: add support for various html elements * feat: add some more elements * feat: port textual components as well * chore: support number of lines for paragraphs * feat: refactor list support and fix nesting bugs * fix: return whitespace removal and make it more robust * feat: add code support * feat: add table support as well * chore: cleanup * fix: scrolling activation behaviour * fix: code parsing edge case * chore: push .idea config * chore: rerun prettier after rebase * chore: add vitest
1 parent 5ffc68e commit 54ff79f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+11030
-4022
lines changed

.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/ai-components-js.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.changeset
5+
/.github
6+
pnpm-lock.yaml

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"arrowParens": "always",
3+
"printWidth": 80,
4+
"trailingComma": "all",
5+
"tabWidth": 2,
6+
"singleQuote": true
7+
}

0 commit comments

Comments
 (0)