Skip to content

Move more components to tsx #324

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

Merged
merged 29 commits into from
Jun 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
287802a
Move Frame to tsx
PavelVanecek Jun 22, 2025
9f5a9b5
Move Affix to tsx
PavelVanecek Jun 22, 2025
f207206
Delete docs/index.html
PavelVanecek Jun 22, 2025
19c2da8
@types/react-helmet
PavelVanecek Jun 22, 2025
c41e981
@types/lodash
PavelVanecek Jun 22, 2025
1c34f1d
Move IndexView to tsx
PavelVanecek Jun 22, 2025
3cae0be
Move GuideView to tsx
PavelVanecek Jun 22, 2025
5927ead
Move APIView to tsx
PavelVanecek Jun 22, 2025
9779814
;
PavelVanecek Jun 22, 2025
b56a6a9
Rename master to main in storybook URL
PavelVanecek Jun 22, 2025
d25c878
Move Storybook to tsx
PavelVanecek Jun 22, 2025
90c303a
Move ExamplesView to tsx
PavelVanecek Jun 22, 2025
103da67
Move CustomAxisTick to tsx
PavelVanecek Jun 22, 2025
9ca0d22
Move CustomBarLabel to tsx
PavelVanecek Jun 22, 2025
96e55e2
Move CustomTooltip to tsx
PavelVanecek Jun 22, 2025
9cd8554
Delete unused Disciplines.js
PavelVanecek Jun 22, 2025
d5fb1b9
Move TriangleBar to tsx
PavelVanecek Jun 22, 2025
329f2bd
Move Installation to tsx
PavelVanecek Jun 22, 2025
718f1cc
Move GettingStarted to tsx
PavelVanecek Jun 22, 2025
bd113ab
Move Customize to tsx
PavelVanecek Jun 22, 2025
01a1bbb
Move index to tsx
PavelVanecek Jun 22, 2025
47f54fb
Move NewMenuTag to tsx
PavelVanecek Jun 22, 2025
201775a
Move api folder to ts
PavelVanecek Jun 22, 2025
cbe7385
Move users to ts
PavelVanecek Jun 22, 2025
060378d
Move all apiExamples to tsx
PavelVanecek Jun 22, 2025
65906bb
Convert couple of remaining files to tsx
PavelVanecek Jun 22, 2025
72db6e8
Fix UMD file paths
PavelVanecek Jun 22, 2025
5f4781b
Switch parser to resolve build errors
PavelVanecek Jun 22, 2025
ce464b1
eslint autofix
PavelVanecek Jun 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,9 @@
"mocha": true,
"node": true
},
"parser": "babel-eslint",
"parser": "@typescript-eslint/parser",
"plugins": ["react"],
"ignorePatterns": ["src/docs/**/*.js"],
"ecmaFeatures": {
"classes": true,
"jsx": true,
"experimentalDecorators": true
},
"rules": {
"prettier/prettier": [
"error",
Expand Down Expand Up @@ -89,6 +84,14 @@
"react/static-property-placement": "off",
"react/jsx-one-expression-per-line": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"no-undef": "off"
}
}
],
"settings": {
"import/resolver": {
"node": {
Expand Down
63 changes: 0 additions & 63 deletions docs/index.html

This file was deleted.

Loading