Skip to content
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

feat: Remove useBasicStyles and rename other custom props #322

Merged
merged 30 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2aa0ec7
Remove useBasicStyles prop in favor of defaulting to those styles
csandman Jun 29, 2024
289b12f
Remove deprecated selectedOptionColor prop
csandman Jun 29, 2024
a4c1332
Rename root colorScheme prop to tagColorScheme
csandman Jun 29, 2024
f3ff3f5
Remove hasStickyGroupHeaders prop
csandman Jun 29, 2024
0e23346
Update license date
csandman Jun 29, 2024
3689cd2
Add Codemod
csandman Jun 29, 2024
183461e
Switch to moduleResolution: bundler ts config
csandman Jun 29, 2024
55c64ab
Update README with new prop changes
csandman Jun 29, 2024
0675312
Replace all chakra website links with v2 link in preparation of v3
csandman Jun 29, 2024
47f66e6
Add new transform for tagColorScheme to codemod
csandman Jun 29, 2024
abaca55
5.0.0-rc.3
csandman Jun 29, 2024
ffec187
Add package manager field to bug reports
csandman Jun 29, 2024
ad26e10
Update codemod readme slightly
csandman Jun 29, 2024
bb3fb7f
One more README tweak
csandman Jun 29, 2024
0cfd161
Update package title for v5
csandman Jun 29, 2024
a6b4b95
Add a link to the codemod in the readme
csandman Jul 1, 2024
c8b984e
Remove unused `ThemeObject` type
csandman Jul 1, 2024
dc44622
Rename index.tsx to index.ts
csandman Jul 2, 2024
e04a246
Remove React imports which are no longer needed
csandman Jul 2, 2024
6984a5d
5.0.0-rc.4
csandman Jul 2, 2024
4af3f8e
Remove export override
csandman Jul 2, 2024
70e602e
5.0.0-rc.5
csandman Jul 2, 2024
5e594ac
Merge remote-tracking branch 'origin' into feat/update-custom-props
csandman Jul 4, 2024
f59980b
5.0.0-rc.6
csandman Jul 4, 2024
f7dc8fb
Remove the codemod note about the generics
csandman Jul 26, 2024
4d0ee3d
Update codemod version to 1.0.2
csandman Jul 26, 2024
593b878
Add links to codemod readme
csandman Jul 26, 2024
d69216a
Update all readme images and update readme demos
csandman Jul 26, 2024
608073c
Update CRS codemod version
csandman Jul 27, 2024
ddb4aaf
Add advanced examples to the README
csandman Jul 27, 2024
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
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Core files
node_modules/
dist/
tmp/

# Codemod generated files
codemod/**/*.js
codemod/**/*.d.ts
16 changes: 15 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"unnamedComponents": "arrow-function"
}
],
"react/react-in-jsx-scope": "off",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/consistent-type-imports": [
"warn",
Expand All @@ -72,5 +73,18 @@
}
}
]
}
},
"overrides": [
{
"files": [
"codemod/**/*.ts"
],
"rules": {
"no-console": "off",
"@typescript-eslint/no-var-requires": "off",
"import/no-dynamic-require": "off",
"global-require": "off"
}
}
]
}
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ body:
- label: "Linux"
- label: "iOS/iPadOS"
- label: "Android"
- type: dropdown
id: package-manager
attributes:
label: Package Manager
description: What package manager is your project set up with?
options:
- NPM
- Yarn
- PNPM
- Other/I don't know
default: 0
- type: "textarea"
id: "additional-information"
attributes:
Expand Down
Binary file added .github/images/check-selected-option.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/color-selected-option.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/custom-borders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/demo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/demo-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/filled-variant.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/invalid-disabled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/purple-selected-option-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/purple-selected-option-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/sizes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/tag-color-schemes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/tag-variants.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/variant-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/variant-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Chris Sandvik
Copyright (c) 2024 Chris Sandvik

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
Loading
Loading