-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add contentRight prop to RadioButtonBox (#737)
* - Upgrade Typescript to 5.4.5. - Upgrade eslint to latest. - Upgrade vite and vitest to latest. - Add contentRight prop to RadioButtonBox. Cannot be used together with icon prop. * - Fix tslib resolution. * - Remove ts-ignore.
- Loading branch information
1 parent
1879d75
commit efdac60
Showing
20 changed files
with
2,619 additions
and
975 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export default [ | ||
{ | ||
plugins: { | ||
lodash: import("eslint-plugin-lodash"), | ||
}, | ||
languageOptions: { | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
}, | ||
linterOptions: { | ||
reportUnusedDisableDirectives: true, | ||
}, | ||
extends: ["react-app", "plugin:storybook/recommended"], | ||
rules: { | ||
"lodash/import-scope": ["error", "member"], | ||
}, | ||
files: ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"], | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
221 changes: 0 additions & 221 deletions
221
...nents/calendar-types/date-range-exclusion-calendar/DateRangeExclusionCalendar.stories.tsx
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...rc/components/calendar-types/date-range-exclusion-calendar/DateRangeExclusionCalendar.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.