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

Package.json overhaul #1077

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
55176a5
initial package updates
patorjk Nov 23, 2019
4797b8c
test updates
patorjk Nov 23, 2019
fa51261
Improve documentation (#1081)
gabrielliwerant Nov 26, 2019
e26d74b
Improve deprecation warnings and defaults for fixed header (#1084)
gabrielliwerant Nov 26, 2019
c356aed
Prettify files
gabrielliwerant Nov 26, 2019
cf11414
2.13.1
gabrielliwerant Nov 26, 2019
9360f01
made state persistent between renders
patorjk Nov 29, 2019
82c8d88
Added search and return home button to Example Grid
patorjk Nov 29, 2019
09513c1
fixed typo
patorjk Nov 29, 2019
bc30519
Debounced Search Plug-in
patorjk Nov 29, 2019
5600876
Bugfix/issue 1095 fix stacked view styles (#1096)
gabrielliwerant Dec 4, 2019
b8bbc32
2.13.2
gabrielliwerant Dec 4, 2019
09274e1
Change tooltip structure to prevent overlap and simplify logic (#1003)
gabrielliwerant Dec 6, 2019
62a7a33
Bugfix/issue 1100 localization object reference (#1101)
gabrielliwerant Dec 6, 2019
6ca436f
Prettify files for release
gabrielliwerant Dec 6, 2019
830f2d7
2.13.3
gabrielliwerant Dec 6, 2019
e6cd14b
Reset `activeIcon` to `null` when Search button is clicked while sear…
pgoforth Jan 17, 2020
35b0787
Fix(#444): downloaded csv should show column "label", not "name" (#1059)
Beamanator Jan 17, 2020
e1507f3
Deprecation warnings (#1073)
jdetle Jan 17, 2020
d718444
Enhancement/minor fixes (#1123)
gabrielliwerant Jan 17, 2020
97fcd12
Bugfix/pr 1119 continued multiselect custom filter issues (#1140)
gabrielliwerant Jan 17, 2020
25b0bc5
Fix for Issue #1152 Table Search Accessibility (#1153)
lalong13 Jan 17, 2020
9b050e4
Feature/issue 1063 responsive options and table height (#1134)
gabrielliwerant Jan 17, 2020
fcdac1b
Security/csv injection issue 1035 (#1155)
gabrielliwerant Jan 17, 2020
35c3899
Add missing bracket for tag
gabrielliwerant Jan 17, 2020
d7f1d7a
Prettify files for release
gabrielliwerant Jan 17, 2020
54079a0
Update package lockfile
gabrielliwerant Jan 17, 2020
e5d8c18
2.14.0
gabrielliwerant Jan 17, 2020
be840e3
Updated README to add a table of content
francoisprunier Feb 5, 2020
f39a579
Add documentation about filterList in the filterOptions section
gabrielliwerant Feb 13, 2020
0a6f219
Add an 's' to Table of contents
francoisprunier Feb 17, 2020
3bf8525
Mention peer dependencies
dandv Mar 11, 2020
1111f80
Update example customize-filter
wdh2100 Mar 14, 2020
08ed81f
2.15.0
patorjk May 31, 2020
612190b
Added plug-ins to table of contents
patorjk May 31, 2020
5ad1444
2.15.0
patorjk May 31, 2020
cdde780
initial package updates
patorjk Nov 23, 2019
b079b3d
test updates
patorjk Nov 23, 2019
d5c2cee
Merge branch 'package_upgrade' of https://github.com/patorjk/mui-data…
patorjk May 31, 2020
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
8 changes: 4 additions & 4 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
}
},
"presets": [
"react",
["env", {
"@babel/react",
["@babel/env", {
"targets": {
"browsers": ["> 1%", "iOS >= 8", "Android >= 4"],
"node": "6.10"
Expand All @@ -15,7 +15,7 @@
}]
],
"plugins": [
"babel-plugin-transform-class-properties",
"transform-object-rest-spread"
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
}
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
"no-tabs": 2,
"react/self-closing-comp": 2,
"react/no-typos": 2,
"react/jsx-no-duplicate-props": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"jsx-a11y/no-autofocus": [ 2, {
"ignoreNonDOM": true
}]
Expand All @@ -46,6 +49,7 @@
"import",
"react",
"jsx-a11y",
"filenames"
"filenames",
"react-hooks"
]
}
Loading