From c6a819b8e774ebb8166715e66788f1f521b05c48 Mon Sep 17 00:00:00 2001 From: Kevin Vandy Date: Wed, 14 Sep 2022 19:36:52 -0500 Subject: [PATCH] publish new cs locale --- README.md | 2 + .../components/mdx/LocaleExamples.tsx | 6 +- .../examples/advanced/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../examples/basic/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../editing-crud/sandbox/package.json | 2 +- .../enable-click-to-copy/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../enable-detail-panel/sandbox/package.json | 2 +- .../enable-editing-cell/sandbox/package.json | 2 +- .../enable-editing-modal/sandbox/package.json | 2 +- .../enable-editing-row/sandbox/package.json | 2 +- .../enable-editing-table/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../enable-row-dragging/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../enable-row-ordering/sandbox/package.json | 2 +- .../enable-row-selection/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../enable-sticky-header/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../export-to-csv/sandbox/package.json | 2 +- .../font-awesome-icons/sandbox/package.json | 2 +- .../infinite-scrolling/sandbox/package.json | 2 +- .../examples/localization-i18n-cs/index.tsx | 18 + .../localization-i18n-cs/sandbox/.gitignore | 5 + .../localization-i18n-cs/sandbox/README.md | 6 + .../localization-i18n-cs/sandbox/index.html | 13 + .../localization-i18n-cs/sandbox/package.json | 27 + .../localization-i18n-cs/sandbox/src/JS.js | 62 + .../localization-i18n-cs/sandbox/src/TS.tsx | 62 + .../localization-i18n-cs/sandbox/src/main.tsx | 9 + .../sandbox/src/makeData.ts | 23 + .../sandbox/src/vite.env.d.ts | 1 + .../sandbox/tsconfig.json | 31 + .../sandbox/tsconfig.node.json | 8 + .../sandbox/vite.config.js | 7 + .../localization-i18n-cs/sandbox/yarn.lock | 1161 +++++++++++++++++ .../localization-i18n-es/sandbox/package.json | 2 +- .../localization-i18n-pl/sandbox/package.json | 2 +- .../sandbox/package.json | 2 +- .../examples/minimal/sandbox/package.json | 2 +- .../examples/mui-theme/sandbox/package.json | 2 +- .../examples/react-query/sandbox/package.json | 2 +- .../examples/remote/sandbox/package.json | 2 +- material-react-table-docs/package.json | 2 +- material-react-table-docs/pages/changelog.mdx | 6 +- .../pages/docs/guides/localization.mdx | 2 +- material-react-table-docs/yarn.lock | 8 +- package.json | 2 +- rollup.config.js | 2 +- src/head/MRT_TableHead.tsx | 2 +- 65 files changed, 1496 insertions(+), 53 deletions(-) create mode 100644 material-react-table-docs/examples/localization-i18n-cs/index.tsx create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/.gitignore create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/README.md create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/index.html create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/package.json create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/src/JS.js create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/src/TS.tsx create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/src/main.tsx create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/src/makeData.ts create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.json create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js create mode 100644 material-react-table-docs/examples/localization-i18n-cs/sandbox/yarn.lock diff --git a/README.md b/README.md index 81860773a..03760618d 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ __Built with [Material UI V5](https://mui.com) and [TanStack Table import('../../examples/localization-i18n-cs'), { + ssr: false, +}); const ES_Table = dynamic(() => import('../../examples/localization-i18n-es'), { ssr: false, }); @@ -16,7 +19,7 @@ const PT_BR_Table = dynamic( }, ); -const supportedLocales = ['es', 'pl', 'pt-BR']; +const supportedLocales = ['cs', 'es', 'pl', 'pt-BR']; const LocaleExamples = () => { const [currentLocale, setCurrentLocale] = useState('es'); @@ -40,6 +43,7 @@ const LocaleExamples = () => { {typeof window !== 'undefined' && (
}> + {currentLocale === 'cs' && } {currentLocale === 'es' && } {currentLocale === 'pl' && } {currentLocale === 'pt-BR' && } diff --git a/material-react-table-docs/examples/advanced/sandbox/package.json b/material-react-table-docs/examples/advanced/sandbox/package.json index 73b52e572..a00b9e124 100644 --- a/material-react-table-docs/examples/advanced/sandbox/package.json +++ b/material-react-table-docs/examples/advanced/sandbox/package.json @@ -15,7 +15,7 @@ "@mui/material": "^5.9.0", "@mui/x-date-pickers": "^5.0.1", "dayjs": "^1.11.5", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package.json b/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package.json index 3cc5f8298..f85786a0e 100644 --- a/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package.json +++ b/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/alternate-detail-panel/sandbox/package.json b/material-react-table-docs/examples/alternate-detail-panel/sandbox/package.json index 054ad547f..03fc84e18 100644 --- a/material-react-table-docs/examples/alternate-detail-panel/sandbox/package.json +++ b/material-react-table-docs/examples/alternate-detail-panel/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/basic/sandbox/package.json b/material-react-table-docs/examples/basic/sandbox/package.json index d2158ee1a..df40a8cb4 100644 --- a/material-react-table-docs/examples/basic/sandbox/package.json +++ b/material-react-table-docs/examples/basic/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/customize-display-columns/sandbox/package.json b/material-react-table-docs/examples/customize-display-columns/sandbox/package.json index 2ff198272..fa9d11a1d 100644 --- a/material-react-table-docs/examples/customize-display-columns/sandbox/package.json +++ b/material-react-table-docs/examples/customize-display-columns/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/customize-filter-components/sandbox/package.json b/material-react-table-docs/examples/customize-filter-components/sandbox/package.json index c602ff118..1906b397c 100644 --- a/material-react-table-docs/examples/customize-filter-components/sandbox/package.json +++ b/material-react-table-docs/examples/customize-filter-components/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/customize-filter-modes/sandbox/package.json b/material-react-table-docs/examples/customize-filter-modes/sandbox/package.json index 154402530..126410f73 100644 --- a/material-react-table-docs/examples/customize-filter-modes/sandbox/package.json +++ b/material-react-table-docs/examples/customize-filter-modes/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/customize-filter-variants/sandbox/package.json b/material-react-table-docs/examples/customize-filter-variants/sandbox/package.json index fcbd3bf09..c1cb2985a 100644 --- a/material-react-table-docs/examples/customize-filter-variants/sandbox/package.json +++ b/material-react-table-docs/examples/customize-filter-variants/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/customize-row-selection/sandbox/package.json b/material-react-table-docs/examples/customize-row-selection/sandbox/package.json index fae928433..0eb9628e5 100644 --- a/material-react-table-docs/examples/customize-row-selection/sandbox/package.json +++ b/material-react-table-docs/examples/customize-row-selection/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/disable-column-actions/sandbox/package.json b/material-react-table-docs/examples/disable-column-actions/sandbox/package.json index 36666e36a..f63a52fcb 100644 --- a/material-react-table-docs/examples/disable-column-actions/sandbox/package.json +++ b/material-react-table-docs/examples/disable-column-actions/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/disable-column-filters/sandbox/package.json b/material-react-table-docs/examples/disable-column-filters/sandbox/package.json index e3e6541f2..8f9a75808 100644 --- a/material-react-table-docs/examples/disable-column-filters/sandbox/package.json +++ b/material-react-table-docs/examples/disable-column-filters/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/disable-column-hiding/sandbox/package.json b/material-react-table-docs/examples/disable-column-hiding/sandbox/package.json index 25f74a687..d27561596 100644 --- a/material-react-table-docs/examples/disable-column-hiding/sandbox/package.json +++ b/material-react-table-docs/examples/disable-column-hiding/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/disable-density-toggle/sandbox/package.json b/material-react-table-docs/examples/disable-density-toggle/sandbox/package.json index 23ddc0d74..b59a326a1 100644 --- a/material-react-table-docs/examples/disable-density-toggle/sandbox/package.json +++ b/material-react-table-docs/examples/disable-density-toggle/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/editing-crud/sandbox/package.json b/material-react-table-docs/examples/editing-crud/sandbox/package.json index 6baabd3fb..fd74f03f0 100644 --- a/material-react-table-docs/examples/editing-crud/sandbox/package.json +++ b/material-react-table-docs/examples/editing-crud/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-click-to-copy/sandbox/package.json b/material-react-table-docs/examples/enable-click-to-copy/sandbox/package.json index 15d05e3aa..fb95256e5 100644 --- a/material-react-table-docs/examples/enable-click-to-copy/sandbox/package.json +++ b/material-react-table-docs/examples/enable-click-to-copy/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-column-ordering/sandbox/package.json b/material-react-table-docs/examples/enable-column-ordering/sandbox/package.json index 2b70e8f09..7301e5554 100644 --- a/material-react-table-docs/examples/enable-column-ordering/sandbox/package.json +++ b/material-react-table-docs/examples/enable-column-ordering/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-column-pinning/sandbox/package.json b/material-react-table-docs/examples/enable-column-pinning/sandbox/package.json index ad8684bf0..1b97baf9e 100644 --- a/material-react-table-docs/examples/enable-column-pinning/sandbox/package.json +++ b/material-react-table-docs/examples/enable-column-pinning/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-column-resizing/sandbox/package.json b/material-react-table-docs/examples/enable-column-resizing/sandbox/package.json index 2977859ae..43baf5f3b 100644 --- a/material-react-table-docs/examples/enable-column-resizing/sandbox/package.json +++ b/material-react-table-docs/examples/enable-column-resizing/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-detail-panel/sandbox/package.json b/material-react-table-docs/examples/enable-detail-panel/sandbox/package.json index 9f34a2b64..5d58a3d75 100644 --- a/material-react-table-docs/examples/enable-detail-panel/sandbox/package.json +++ b/material-react-table-docs/examples/enable-detail-panel/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-editing-cell/sandbox/package.json b/material-react-table-docs/examples/enable-editing-cell/sandbox/package.json index 2e05b7510..f61b906c6 100644 --- a/material-react-table-docs/examples/enable-editing-cell/sandbox/package.json +++ b/material-react-table-docs/examples/enable-editing-cell/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-editing-modal/sandbox/package.json b/material-react-table-docs/examples/enable-editing-modal/sandbox/package.json index 48565e51f..fc6a318f9 100644 --- a/material-react-table-docs/examples/enable-editing-modal/sandbox/package.json +++ b/material-react-table-docs/examples/enable-editing-modal/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-editing-row/sandbox/package.json b/material-react-table-docs/examples/enable-editing-row/sandbox/package.json index ed877f58f..fe4292760 100644 --- a/material-react-table-docs/examples/enable-editing-row/sandbox/package.json +++ b/material-react-table-docs/examples/enable-editing-row/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-editing-table/sandbox/package.json b/material-react-table-docs/examples/enable-editing-table/sandbox/package.json index 16de0857d..5d4267d0c 100644 --- a/material-react-table-docs/examples/enable-editing-table/sandbox/package.json +++ b/material-react-table-docs/examples/enable-editing-table/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-expanding-tree/sandbox/package.json b/material-react-table-docs/examples/enable-expanding-tree/sandbox/package.json index de81eeeb8..267b1277f 100644 --- a/material-react-table-docs/examples/enable-expanding-tree/sandbox/package.json +++ b/material-react-table-docs/examples/enable-expanding-tree/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-dragging/sandbox/package.json b/material-react-table-docs/examples/enable-row-dragging/sandbox/package.json index 127fa8801..10a3dc657 100644 --- a/material-react-table-docs/examples/enable-row-dragging/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-dragging/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package.json b/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package.json index 38983db3e..86de94e71 100644 --- a/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package.json b/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package.json index d8575ef98..5ebc012bc 100644 --- a/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-ordering/sandbox/package.json b/material-react-table-docs/examples/enable-row-ordering/sandbox/package.json index 2929e8355..8802d013d 100644 --- a/material-react-table-docs/examples/enable-row-ordering/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-ordering/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-selection/sandbox/package.json b/material-react-table-docs/examples/enable-row-selection/sandbox/package.json index eb25390b4..ee3cd8776 100644 --- a/material-react-table-docs/examples/enable-row-selection/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-selection/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-row-virtualization/sandbox/package.json b/material-react-table-docs/examples/enable-row-virtualization/sandbox/package.json index d9f0d91a2..c12fe9ad4 100644 --- a/material-react-table-docs/examples/enable-row-virtualization/sandbox/package.json +++ b/material-react-table-docs/examples/enable-row-virtualization/sandbox/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^7.3.0", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/enable-sticky-header/sandbox/package.json b/material-react-table-docs/examples/enable-sticky-header/sandbox/package.json index 88b30a421..153c5172a 100644 --- a/material-react-table-docs/examples/enable-sticky-header/sandbox/package.json +++ b/material-react-table-docs/examples/enable-sticky-header/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package.json b/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package.json index c751a6c76..d8fe86835 100644 --- a/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package.json +++ b/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/export-to-csv/sandbox/package.json b/material-react-table-docs/examples/export-to-csv/sandbox/package.json index 0630fb3a1..c4c5f22aa 100644 --- a/material-react-table-docs/examples/export-to-csv/sandbox/package.json +++ b/material-react-table-docs/examples/export-to-csv/sandbox/package.json @@ -14,7 +14,7 @@ "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", "export-to-csv": "^0.2.1", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/font-awesome-icons/sandbox/package.json b/material-react-table-docs/examples/font-awesome-icons/sandbox/package.json index a723bb72d..083c87946 100644 --- a/material-react-table-docs/examples/font-awesome-icons/sandbox/package.json +++ b/material-react-table-docs/examples/font-awesome-icons/sandbox/package.json @@ -16,7 +16,7 @@ "@fortawesome/react-fontawesome": "^0.2.0", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/infinite-scrolling/sandbox/package.json b/material-react-table-docs/examples/infinite-scrolling/sandbox/package.json index ab9f30444..34ce7f3e2 100644 --- a/material-react-table-docs/examples/infinite-scrolling/sandbox/package.json +++ b/material-react-table-docs/examples/infinite-scrolling/sandbox/package.json @@ -15,7 +15,7 @@ "@mui/material": "^5.9.0", "@tanstack/react-query": "^4.0.5", "axios": "^0.27.2", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/localization-i18n-cs/index.tsx b/material-react-table-docs/examples/localization-i18n-cs/index.tsx new file mode 100644 index 000000000..91c3c92a4 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/index.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import { SourceCodeSnippet } from '../../components/mdx/SourceCodeSnippet'; +import Example from './sandbox/src/TS'; +const JS = require('!!raw-loader!./sandbox/src/JS.js').default; +const TS = require('!!raw-loader!./sandbox/src/TS.tsx').default; + +const ExampleTable = () => { + return ( + + ); +}; + +export default ExampleTable; diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/.gitignore b/material-react-table-docs/examples/localization-i18n-cs/sandbox/.gitignore new file mode 100644 index 000000000..d451ff16c --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/.gitignore @@ -0,0 +1,5 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/README.md b/material-react-table-docs/examples/localization-i18n-cs/sandbox/README.md new file mode 100644 index 000000000..b168d3c4b --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/README.md @@ -0,0 +1,6 @@ +# Example + +To run this example: + +- `npm install` or `yarn` +- `npm run start` or `yarn start` diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/index.html b/material-react-table-docs/examples/localization-i18n-cs/sandbox/index.html new file mode 100644 index 000000000..67a5a5845 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/index.html @@ -0,0 +1,13 @@ + + + + + + Material React Table Example + + + +
+ + + diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/package.json b/material-react-table-docs/examples/localization-i18n-cs/sandbox/package.json new file mode 100644 index 000000000..03c29a155 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/package.json @@ -0,0 +1,27 @@ +{ + "name": "material-react-table-example-localization-i18n-cs", + "version": "0.0.0", + "private": true, + "scripts": { + "dev": "vite --port 3001", + "build": "vite build", + "serve": "vite preview", + "start": "vite" + }, + "dependencies": { + "@emotion/react": "^11.9.3", + "@emotion/styled": "^11.9.3", + "@mui/icons-material": "^5.8.4", + "@mui/material": "^5.9.0", + "material-react-table": "^1.0.4", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/react": "^18.0.15", + "@types/react-dom": "^18.0.6", + "@vitejs/plugin-react": "^1.3.2", + "typescript": "^4.7.4", + "vite": "^2.9.14" + } +} diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/JS.js b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/JS.js new file mode 100644 index 000000000..c3e6180da --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/JS.js @@ -0,0 +1,62 @@ +import React from 'react'; + +//Import Material React Table and its Types +import MaterialReactTable from 'material-react-table'; + +//Import Material React Table Translations +import { MRT_Localization_CS } from 'material-react-table/locales/cs'; + +//mock data +import { data } from './makeData'; + +const columns = [ + //column definitions... + { + accessorKey: 'firstName', + header: 'Jméno', + }, + { + accessorKey: 'lastName', + header: 'Příjmení', + enableClickToCopy: true, + }, + { + accessorKey: 'age', + header: 'Stáří', + }, + //end +]; + +const Example = () => { + return ( + + ); +}; + +//App.tsx or similar +import { createTheme, ThemeProvider, useTheme } from '@mui/material'; +import { csCZ } from '@mui/material/locale'; + +const ExampleWithThemeProvider = () => { + const theme = useTheme(); //replace with your theme/createTheme + return ( + //Setting Material UI locale as best practice to result in better accessibility + + + + ); +}; + +export default ExampleWithThemeProvider; diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/TS.tsx b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/TS.tsx new file mode 100644 index 000000000..d84420a71 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/TS.tsx @@ -0,0 +1,62 @@ +import React, { FC } from 'react'; + +//Import Material React Table and its Types +import MaterialReactTable, { MRT_ColumnDef } from 'material-react-table'; + +//Import Material React Table Translations +import { MRT_Localization_CS } from 'material-react-table/locales/cs'; + +//mock data +import { data, Person } from './makeData'; + +const columns: MRT_ColumnDef[] = [ + //column definitions... + { + accessorKey: 'firstName', + header: 'Jméno', + }, + { + accessorKey: 'lastName', + header: 'Příjmení', + enableClickToCopy: true, + }, + { + accessorKey: 'age', + header: 'Stáří', + }, + //end +]; + +const Example: FC = () => { + return ( + + ); +}; + +//App.tsx or similar +import { createTheme, ThemeProvider, useTheme } from '@mui/material'; +import { csCZ } from '@mui/material/locale'; + +const ExampleWithThemeProvider: FC = () => { + const theme = useTheme(); //replace with your theme/createTheme + return ( + //Setting Material UI locale as best practice to result in better accessibility + + + + ); +}; + +export default ExampleWithThemeProvider; diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/main.tsx b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/main.tsx new file mode 100644 index 000000000..ae00547ba --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/main.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import Example from './TS'; + +ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( + + + , +); diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/makeData.ts b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/makeData.ts new file mode 100644 index 000000000..5bb2fb1ac --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/makeData.ts @@ -0,0 +1,23 @@ +export type Person = { + firstName: string; + lastName: string; + age: number; +}; + +export const data: Person[] = [ + { + firstName: 'Kevin', + lastName: 'Vandy', + age: 26, + }, + { + firstName: 'Theodore', + lastName: 'Browne', + age: 28, + }, + { + firstName: 'Tanner', + lastName: 'Linsley', + age: 33, + }, +]; diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts new file mode 100644 index 000000000..11f02fe2a --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts @@ -0,0 +1 @@ +/// diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.json b/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.json new file mode 100644 index 000000000..05c4d41a9 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.json @@ -0,0 +1,31 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": [ + "src" + ], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json b/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json new file mode 100644 index 000000000..65dbdb96a --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node" + }, + "include": ["vite.config.ts"] +} diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js b/material-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js new file mode 100644 index 000000000..627a31962 --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}); diff --git a/material-react-table-docs/examples/localization-i18n-cs/sandbox/yarn.lock b/material-react-table-docs/examples/localization-i18n-cs/sandbox/yarn.lock new file mode 100644 index 000000000..1e451e37f --- /dev/null +++ b/material-react-table-docs/examples/localization-i18n-cs/sandbox/yarn.lock @@ -0,0 +1,1161 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.18.6": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d" + integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ== + +"@babel/core@^7.17.10": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.6.tgz#54a107a3c298aee3fe5e1947a6464b9b6faca03d" + integrity sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.18.6" + "@babel/helper-compilation-targets" "^7.18.6" + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helpers" "^7.18.6" + "@babel/parser" "^7.18.6" + "@babel/template" "^7.18.6" + "@babel/traverse" "^7.18.6" + "@babel/types" "^7.18.6" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + +"@babel/generator@^7.18.6", "@babel/generator@^7.18.7": + version "7.18.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.7.tgz#2aa78da3c05aadfc82dbac16c99552fc802284bd" + integrity sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A== + dependencies: + "@babel/types" "^7.18.7" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-compilation-targets@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz#18d35bfb9f83b1293c22c55b3d576c1315b6ed96" + integrity sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg== + dependencies: + "@babel/compat-data" "^7.18.6" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.20.2" + semver "^6.3.0" + +"@babel/helper-environment-visitor@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz#b7eee2b5b9d70602e59d1a6cad7dd24de7ca6cd7" + integrity sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q== + +"@babel/helper-function-name@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz#8334fecb0afba66e6d87a7e8c6bb7fed79926b83" + integrity sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw== + dependencies: + "@babel/template" "^7.18.6" + "@babel/types" "^7.18.6" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-transforms@^7.18.6": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz#4f8408afead0188cfa48672f9d0e5787b61778c8" + integrity sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.6" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.18.6" + "@babel/template" "^7.18.6" + "@babel/traverse" "^7.18.8" + "@babel/types" "^7.18.8" + +"@babel/helper-plugin-utils@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz#9448974dd4fb1d80fefe72e8a0af37809cd30d6d" + integrity sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg== + +"@babel/helper-simple-access@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" + integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-validator-identifier@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" + integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== + +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + +"@babel/helpers@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.6.tgz#4c966140eaa1fcaa3d5a8c09d7db61077d4debfd" + integrity sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ== + dependencies: + "@babel/template" "^7.18.6" + "@babel/traverse" "^7.18.6" + "@babel/types" "^7.18.6" + +"@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.18.6", "@babel/parser@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.8.tgz#822146080ac9c62dac0823bb3489622e0bc1cbdf" + integrity sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA== + +"@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" + integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx-development@^7.16.7": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" + integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.18.6" + +"@babel/plugin-transform-react-jsx-self@^7.16.7": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7" + integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx-source@^7.16.7": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz#06e9ae8a14d2bc19ce6e3c447d842032a50598fc" + integrity sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx@^7.17.3", "@babel/plugin-transform-react-jsx@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.6.tgz#2721e96d31df96e3b7ad48ff446995d26bc028ff" + integrity sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-jsx" "^7.18.6" + "@babel/types" "^7.18.6" + +"@babel/runtime@^7.13.10", "@babel/runtime@^7.17.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.6.tgz#6a1ef59f838debd670421f8c7f2cbb8da9751580" + integrity sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31" + integrity sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.6" + "@babel/types" "^7.18.6" + +"@babel/traverse@^7.18.6", "@babel/traverse@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.8.tgz#f095e62ab46abf1da35e5a2011f43aee72d8d5b0" + integrity sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.18.7" + "@babel/helper-environment-visitor" "^7.18.6" + "@babel/helper-function-name" "^7.18.6" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.18.8" + "@babel/types" "^7.18.8" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.18.6", "@babel/types@^7.18.7", "@babel/types@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.8.tgz#c5af199951bf41ba4a6a9a6d0d8ad722b30cd42f" + integrity sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + to-fast-properties "^2.0.0" + +"@emotion/babel-plugin@^11.7.1": + version "11.9.2" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.9.2.tgz#723b6d394c89fb2ef782229d92ba95a740576e95" + integrity sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw== + dependencies: + "@babel/helper-module-imports" "^7.12.13" + "@babel/plugin-syntax-jsx" "^7.12.13" + "@babel/runtime" "^7.13.10" + "@emotion/hash" "^0.8.0" + "@emotion/memoize" "^0.7.5" + "@emotion/serialize" "^1.0.2" + babel-plugin-macros "^2.6.1" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.0.13" + +"@emotion/cache@^11.9.3": + version "11.9.3" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.9.3.tgz#96638449f6929fd18062cfe04d79b29b44c0d6cb" + integrity sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg== + dependencies: + "@emotion/memoize" "^0.7.4" + "@emotion/sheet" "^1.1.1" + "@emotion/utils" "^1.0.0" + "@emotion/weak-memoize" "^0.2.5" + stylis "4.0.13" + +"@emotion/hash@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" + integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== + +"@emotion/is-prop-valid@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz#f0907a416368cf8df9e410117068e20fe87c0a3a" + integrity sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA== + dependencies: + "@emotion/memoize" "^0.7.4" + +"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5": + version "0.7.5" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50" + integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ== + +"@emotion/react@^11.9.3": + version "11.9.3" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.9.3.tgz#f4f4f34444f6654a2e550f5dab4f2d360c101df9" + integrity sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@emotion/babel-plugin" "^11.7.1" + "@emotion/cache" "^11.9.3" + "@emotion/serialize" "^1.0.4" + "@emotion/utils" "^1.1.0" + "@emotion/weak-memoize" "^0.2.5" + hoist-non-react-statics "^3.3.1" + +"@emotion/serialize@^1.0.2", "@emotion/serialize@^1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.4.tgz#ff31fd11bb07999611199c2229e152faadc21a3c" + integrity sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg== + dependencies: + "@emotion/hash" "^0.8.0" + "@emotion/memoize" "^0.7.4" + "@emotion/unitless" "^0.7.5" + "@emotion/utils" "^1.0.0" + csstype "^3.0.2" + +"@emotion/sheet@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.1.tgz#015756e2a9a3c7c5f11d8ec22966a8dbfbfac787" + integrity sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA== + +"@emotion/styled@^11.9.3": + version "11.9.3" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.9.3.tgz#47f0c71137fec7c57035bf3659b52fb536792340" + integrity sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA== + dependencies: + "@babel/runtime" "^7.13.10" + "@emotion/babel-plugin" "^11.7.1" + "@emotion/is-prop-valid" "^1.1.3" + "@emotion/serialize" "^1.0.4" + "@emotion/utils" "^1.1.0" + +"@emotion/unitless@^0.7.5": + version "0.7.5" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" + integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== + +"@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.1.0.tgz#86b0b297f3f1a0f2bdb08eeac9a2f49afd40d0cf" + integrity sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ== + +"@emotion/weak-memoize@^0.2.5": + version "0.2.5" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" + integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.14" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" + integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@mui/base@5.0.0-alpha.88": + version "5.0.0-alpha.88" + resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.88.tgz#0930d1849c74ba62a28ab2d8533de88764173ba4" + integrity sha512-uL7ej2F/3GUnZewsDQSHUVHoSBT3AQcTIdfdy6QeCHy7X26mtbcIvTRcjl2PzbbNQplppavSTibPiQG/giJ+ng== + dependencies: + "@babel/runtime" "^7.17.2" + "@emotion/is-prop-valid" "^1.1.3" + "@mui/types" "^7.1.4" + "@mui/utils" "^5.8.6" + "@popperjs/core" "^2.11.5" + clsx "^1.2.0" + prop-types "^15.8.1" + react-is "^17.0.2" + +"@mui/icons-material@^5.8.4": + version "5.8.4" + resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.8.4.tgz#3f2907c9f8f5ce4d754cb8fb4b68b5a1abf4d095" + integrity sha512-9Z/vyj2szvEhGWDvb+gG875bOGm8b8rlHBKOD1+nA3PcgC3fV6W1AU6pfOorPeBfH2X4mb9Boe97vHvaSndQvA== + dependencies: + "@babel/runtime" "^7.17.2" + +"@mui/material@^5.8.7": + version "5.8.7" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.8.7.tgz#28617c5b8a9e354e300f19fc38e1286ba1e15ad3" + integrity sha512-Oo62UhrgEi+BMLr3nUEASJgScE2/hhq14CbBUmrVV3GQlEGtqMZsy26Vb0AqEmphFeN3TXlsbM9aeW5yq8ZFlw== + dependencies: + "@babel/runtime" "^7.17.2" + "@mui/base" "5.0.0-alpha.88" + "@mui/system" "^5.8.7" + "@mui/types" "^7.1.4" + "@mui/utils" "^5.8.6" + "@types/react-transition-group" "^4.4.5" + clsx "^1.2.0" + csstype "^3.1.0" + prop-types "^15.8.1" + react-is "^17.0.2" + react-transition-group "^4.4.2" + +"@mui/private-theming@^5.8.6": + version "5.8.6" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.8.6.tgz#db2bafeda1699e43e67b3ff4f770d6b7a234501f" + integrity sha512-yHsJk1qU9r/q0DlnxGRJPHyM0Y/nUv8FTNgDTiI9I58GWuVuZqeTUr7JRvPh6ybeP/FLtW5eXEavRK9wxVk4uQ== + dependencies: + "@babel/runtime" "^7.17.2" + "@mui/utils" "^5.8.6" + prop-types "^15.8.1" + +"@mui/styled-engine@^5.8.7": + version "5.8.7" + resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.8.7.tgz#63d0779c07677fe76d4705a02c7ae99f89b50780" + integrity sha512-tVqtowjbYmiRq+qcqXK731L9eWoL9H8xTRhuTgaDGKdch1zlt4I2UwInUe1w2N9N/u3/jHsFbLcl1Un3uOwpQg== + dependencies: + "@babel/runtime" "^7.17.2" + "@emotion/cache" "^11.9.3" + csstype "^3.1.0" + prop-types "^15.8.1" + +"@mui/system@^5.8.7": + version "5.8.7" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.8.7.tgz#6a7ab6ac8d3e6a6c7abcbea84b5697cbb225beb8" + integrity sha512-yFoFbfO42FWeSUDrFPixYjpqySQMqVMOSbSlAxiKnwFpvXGGn/bkfQTboCRNO31fvES29FJLQd4mwwMHd5mXng== + dependencies: + "@babel/runtime" "^7.17.2" + "@mui/private-theming" "^5.8.6" + "@mui/styled-engine" "^5.8.7" + "@mui/types" "^7.1.4" + "@mui/utils" "^5.8.6" + clsx "^1.2.0" + csstype "^3.1.0" + prop-types "^15.8.1" + +"@mui/types@^7.1.4": + version "7.1.4" + resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.4.tgz#4185c05d6df63ec673cda15feab80440abadc764" + integrity sha512-uveM3byMbthO+6tXZ1n2zm0W3uJCQYtwt/v5zV5I77v2v18u0ITkb8xwhsDD2i3V2Kye7SaNR6FFJ6lMuY/WqQ== + +"@mui/utils@^5.8.6": + version "5.8.6" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.8.6.tgz#543de64a64bb9135316ecfd91d75a8740544d79f" + integrity sha512-QM2Sd1xZo2jOt2Vz5Rmro+pi2FLJyiv4+OjxkUwXR3oUM65KSMAMLl/KNYU55s3W3DLRFP5MVwE4FhAbHseHAg== + dependencies: + "@babel/runtime" "^7.17.2" + "@types/prop-types" "^15.7.5" + "@types/react-is" "^16.7.1 || ^17.0.0" + prop-types "^15.8.1" + react-is "^17.0.2" + +"@popperjs/core@^2.11.5": + version "2.11.5" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.5.tgz#db5a11bf66bdab39569719555b0f76e138d7bd64" + integrity sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw== + +"@reach/observe-rect@^1.1.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@reach/observe-rect/-/observe-rect-1.2.0.tgz#d7a6013b8aafcc64c778a0ccb83355a11204d3b2" + integrity sha512-Ba7HmkFgfQxZqqaeIWWkNK0rEhpxVQHIoVyW1YDSkGsGIXzcaW4deC8B0pZrNSSyLTdIk7y+5olKt5+g0GmFIQ== + +"@rollup/pluginutils@^4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" + integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== + dependencies: + estree-walker "^2.0.1" + picomatch "^2.2.2" + +"@tanstack/match-sorter-utils@8.1.1": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@tanstack/match-sorter-utils/-/match-sorter-utils-8.1.1.tgz#895f407813254a46082a6bbafad9b39b943dc834" + integrity sha512-IdmEekEYxQsoLOR0XQyw3jD1GujBpRRYaGJYQUw1eOT1eUugWxdc7jomh1VQ1EKHcdwDLpLaCz/8y4KraU4T9A== + dependencies: + remove-accents "0.4.2" + +"@tanstack/react-table@8.2.1": + version "8.2.1" + resolved "https://registry.yarnpkg.com/@tanstack/react-table/-/react-table-8.2.1.tgz#04e6530287d342a949d86dcbbec76cfffe0e7903" + integrity sha512-Y7uN7VkZ+7TsmhYF+7UwvMJL244eVUN0eEaB/YeXTaasSOII44CiXN7LRl3sjQAUQY5LrVe/1/2xVkv0kVq2Yg== + dependencies: + "@tanstack/table-core" "8.2.1" + +"@tanstack/table-core@8.2.1": + version "8.2.1" + resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.2.1.tgz#93d0ad071cf7ad92bde178bbefa5459379594449" + integrity sha512-CWFw0zM594B2SJItaruR2CuiRv4x8sZU9MxEES0Dmk/LjEPdkZVgXydBkYG+EGPS35yo/cFIvywm3YeXyaUhPA== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/prop-types@*", "@types/prop-types@^15.7.5": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/react-dom@^18.0.6": + version "18.0.6" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.6.tgz#36652900024842b74607a17786b6662dd1e103a1" + integrity sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA== + dependencies: + "@types/react" "*" + +"@types/react-is@^16.7.1 || ^17.0.0": + version "17.0.3" + resolved "https://registry.yarnpkg.com/@types/react-is/-/react-is-17.0.3.tgz#2d855ba575f2fc8d17ef9861f084acc4b90a137a" + integrity sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw== + dependencies: + "@types/react" "*" + +"@types/react-transition-group@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.5.tgz#aae20dcf773c5aa275d5b9f7cdbca638abc5e416" + integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^18.0.15": + version "18.0.15" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.15.tgz#d355644c26832dc27f3e6cbf0c4f4603fc4ab7fe" + integrity sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + +"@vitejs/plugin-react@^1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-1.3.2.tgz#2fcf0b6ce9bcdcd4cec5c760c199779d5657ece1" + integrity sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA== + dependencies: + "@babel/core" "^7.17.10" + "@babel/plugin-transform-react-jsx" "^7.17.3" + "@babel/plugin-transform-react-jsx-development" "^7.16.7" + "@babel/plugin-transform-react-jsx-self" "^7.16.7" + "@babel/plugin-transform-react-jsx-source" "^7.16.7" + "@rollup/pluginutils" "^4.2.1" + react-refresh "^0.13.0" + resolve "^1.22.0" + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +babel-plugin-macros@^2.6.1: + version "2.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== + dependencies: + "@babel/runtime" "^7.7.2" + cosmiconfig "^6.0.0" + resolve "^1.12.0" + +browserslist@^4.20.2: + version "4.21.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.1.tgz#c9b9b0a54c7607e8dc3e01a0d311727188011a00" + integrity sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ== + dependencies: + caniuse-lite "^1.0.30001359" + electron-to-chromium "^1.4.172" + node-releases "^2.0.5" + update-browserslist-db "^1.0.4" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +caniuse-lite@^1.0.30001359: + version "1.0.30001363" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz#26bec2d606924ba318235944e1193304ea7c4f15" + integrity sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg== + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +clsx@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +convert-source-map@^1.5.0, convert-source-map@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== + dependencies: + safe-buffer "~5.1.1" + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +csstype@^3.0.2, csstype@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" + integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== + +debug@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +dom-helpers@^5.0.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +electron-to-chromium@^1.4.172: + version "1.4.185" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz#3432d7944f1c5fe20664bb45d9cced2151405ce2" + integrity sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +esbuild-android-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.48.tgz#7e6394a0e517f738641385aaf553c7e4fb6d1ae3" + integrity sha512-3aMjboap/kqwCUpGWIjsk20TtxVoKck8/4Tu19rubh7t5Ra0Yrpg30Mt1QXXlipOazrEceGeWurXKeFJgkPOUg== + +esbuild-android-arm64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.48.tgz#6877566be0f82dd5a43030c0007d06ece7f7c02f" + integrity sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g== + +esbuild-darwin-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.48.tgz#ea3caddb707d88f844b1aa1dea5ff3b0a71ef1fd" + integrity sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA== + +esbuild-darwin-arm64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.48.tgz#4e5eaab54df66cc319b76a2ac0e8af4e6f0d9c2f" + integrity sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA== + +esbuild-freebsd-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.48.tgz#47b5abc7426eae66861490ffbb380acc67af5b15" + integrity sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA== + +esbuild-freebsd-arm64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.48.tgz#e8c54c8637cd44feed967ea12338b0a4da3a7b11" + integrity sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw== + +esbuild-linux-32@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.48.tgz#229cf3246de2b7937c3ac13fac622d4d7a1344c5" + integrity sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ== + +esbuild-linux-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.48.tgz#7c0e7226c02c42aacc5656c36977493dc1e96c4f" + integrity sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug== + +esbuild-linux-arm64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.48.tgz#0af1eda474b5c6cc0cace8235b74d0cb8fcf57a7" + integrity sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw== + +esbuild-linux-arm@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.48.tgz#de4d1fa6b77cdcd00e2bb43dd0801e4680f0ab52" + integrity sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw== + +esbuild-linux-mips64le@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.48.tgz#822c1778495f7868e990d4da47ad7281df28fd15" + integrity sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA== + +esbuild-linux-ppc64le@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.48.tgz#55de0a9ec4a48fedfe82a63e083164d001709447" + integrity sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ== + +esbuild-linux-riscv64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.48.tgz#cd2b7381880b2f4b21a5a598fb673492120f18a5" + integrity sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA== + +esbuild-linux-s390x@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.48.tgz#4b319eca2a5c64637fc7397ffbd9671719cdb6bf" + integrity sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g== + +esbuild-netbsd-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.48.tgz#c27cde8b5cb55dcc227943a18ab078fb98d0adbf" + integrity sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw== + +esbuild-openbsd-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.48.tgz#af5ab2d1cb41f09064bba9465fc8bf1309150df1" + integrity sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA== + +esbuild-sunos-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.48.tgz#db3ae20526055cf6fd5c4582676233814603ac54" + integrity sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA== + +esbuild-windows-32@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.48.tgz#021ffceb0a3f83078262870da88a912293c57475" + integrity sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg== + +esbuild-windows-64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.48.tgz#a4d3407b580f9faac51f61eec095fa985fb3fee4" + integrity sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA== + +esbuild-windows-arm64@0.14.48: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.48.tgz#762c0562127d8b09bfb70a3c816460742dd82880" + integrity sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g== + +esbuild@^0.14.27: + version "0.14.48" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.48.tgz#da5d8d25cd2d940c45ea0cfecdca727f7aee2b85" + integrity sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA== + optionalDependencies: + esbuild-android-64 "0.14.48" + esbuild-android-arm64 "0.14.48" + esbuild-darwin-64 "0.14.48" + esbuild-darwin-arm64 "0.14.48" + esbuild-freebsd-64 "0.14.48" + esbuild-freebsd-arm64 "0.14.48" + esbuild-linux-32 "0.14.48" + esbuild-linux-64 "0.14.48" + esbuild-linux-arm "0.14.48" + esbuild-linux-arm64 "0.14.48" + esbuild-linux-mips64le "0.14.48" + esbuild-linux-ppc64le "0.14.48" + esbuild-linux-riscv64 "0.14.48" + esbuild-linux-s390x "0.14.48" + esbuild-netbsd-64 "0.14.48" + esbuild-openbsd-64 "0.14.48" + esbuild-sunos-64 "0.14.48" + esbuild-windows-32 "0.14.48" + esbuild-windows-64 "0.14.48" + esbuild-windows-arm64 "0.14.48" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +estree-walker@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +find-root@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hoist-non-react-statics@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +import-fresh@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-core-module@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" + integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== + dependencies: + has "^1.0.3" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json5@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +material-react-table@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/material-react-table/-/material-react-table-0.23.0.tgz#ebf7ff920bd895087f444190fd6dcc8740054749" + integrity sha512-8JDzRZ/gKGnAwzkoXhyVc2Z2F+Yj+QJr1llk3afbYnJahaA55ZY4a51Ldho6E/oiVpdOVq5/SkWS0hUW5rP+Yw== + dependencies: + "@tanstack/match-sorter-utils" "8.1.1" + "@tanstack/react-table" "8.2.1" + react-virtual "^2.10.4" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +nanoid@^3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + +node-releases@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== + +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.2.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +postcss@^8.4.13: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prop-types@^15.6.2, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-is@^16.13.1, react-is@^16.7.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-refresh@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.13.0.tgz#cbd01a4482a177a5da8d44c9755ebb1f26d5a1c1" + integrity sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg== + +react-transition-group@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" + integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react-virtual@^2.10.4: + version "2.10.4" + resolved "https://registry.yarnpkg.com/react-virtual/-/react-virtual-2.10.4.tgz#08712f0acd79d7d6f7c4726f05651a13b24d8704" + integrity sha512-Ir6+oPQZTVHfa6+JL9M7cvMILstFZH/H3jqeYeKI4MSUX+rIruVwFC6nGVXw9wqAw8L0Kg2KvfXxI85OvYQdpQ== + dependencies: + "@reach/observe-rect" "^1.1.0" + +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +remove-accents@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" + integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.12.0, resolve@^1.22.0: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rollup@^2.59.0: + version "2.76.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.76.0.tgz#c69fe03db530ac53fcb9523b3caa0d3c0b9491a1" + integrity sha512-9jwRIEY1jOzKLj3nsY/yot41r19ITdQrhs+q3ggNWhr9TQgduHqANvPpS32RNpzGklJu3G1AJfvlZLi/6wFgWA== + optionalDependencies: + fsevents "~2.3.2" + +safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +stylis@4.0.13: + version "4.0.13" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91" + integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +typescript@^4.7.4: + version "4.7.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" + integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== + +update-browserslist-db@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz#dbfc5a789caa26b1db8990796c2c8ebbce304824" + integrity sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +vite@^2.9.14: + version "2.9.14" + resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.14.tgz#c438324c6594afd1050df3777da981dee988bb1b" + integrity sha512-P/UCjSpSMcE54r4mPak55hWAZPlyfS369svib/gpmz8/01L822lMPOJ/RYW6tLCe1RPvMvOsJ17erf55bKp4Hw== + dependencies: + esbuild "^0.14.27" + postcss "^8.4.13" + resolve "^1.22.0" + rollup "^2.59.0" + optionalDependencies: + fsevents "~2.3.2" + +yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== diff --git a/material-react-table-docs/examples/localization-i18n-es/sandbox/package.json b/material-react-table-docs/examples/localization-i18n-es/sandbox/package.json index 841dee9d4..1d89fc726 100644 --- a/material-react-table-docs/examples/localization-i18n-es/sandbox/package.json +++ b/material-react-table-docs/examples/localization-i18n-es/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/localization-i18n-pl/sandbox/package.json b/material-react-table-docs/examples/localization-i18n-pl/sandbox/package.json index 23446a7a2..01e203595 100644 --- a/material-react-table-docs/examples/localization-i18n-pl/sandbox/package.json +++ b/material-react-table-docs/examples/localization-i18n-pl/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package.json b/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package.json index 55c775431..a15c649f5 100644 --- a/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package.json +++ b/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/minimal/sandbox/package.json b/material-react-table-docs/examples/minimal/sandbox/package.json index 0e1a7aaff..ea5b9a19b 100644 --- a/material-react-table-docs/examples/minimal/sandbox/package.json +++ b/material-react-table-docs/examples/minimal/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/mui-theme/sandbox/package.json b/material-react-table-docs/examples/mui-theme/sandbox/package.json index 1dc8086f5..b332649b3 100644 --- a/material-react-table-docs/examples/mui-theme/sandbox/package.json +++ b/material-react-table-docs/examples/mui-theme/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/react-query/sandbox/package.json b/material-react-table-docs/examples/react-query/sandbox/package.json index 5796ff8c9..3a3aa7f4b 100644 --- a/material-react-table-docs/examples/react-query/sandbox/package.json +++ b/material-react-table-docs/examples/react-query/sandbox/package.json @@ -15,7 +15,7 @@ "@mui/material": "^5.9.0", "@tanstack/react-query": "^4.0.5", "axios": "^0.27.2", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/examples/remote/sandbox/package.json b/material-react-table-docs/examples/remote/sandbox/package.json index aae38e96b..5dcc0ba2b 100644 --- a/material-react-table-docs/examples/remote/sandbox/package.json +++ b/material-react-table-docs/examples/remote/sandbox/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.9.3", "@mui/icons-material": "^5.8.4", "@mui/material": "^5.9.0", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/material-react-table-docs/package.json b/material-react-table-docs/package.json index 8e70f3802..88346c18e 100644 --- a/material-react-table-docs/package.json +++ b/material-react-table-docs/package.json @@ -27,7 +27,7 @@ "axios": "^0.27.2", "dayjs": "^1.11.5", "export-to-csv": "^0.2.1", - "material-react-table": "^1.0.3", + "material-react-table": "^1.0.4", "next": "12.3.0", "next-sitemap": "^3.1.22", "prism-react-renderer": "^1.3.5", diff --git a/material-react-table-docs/pages/changelog.mdx b/material-react-table-docs/pages/changelog.mdx index 69097103d..4448dd8d9 100644 --- a/material-react-table-docs/pages/changelog.mdx +++ b/material-react-table-docs/pages/changelog.mdx @@ -12,7 +12,11 @@ import Head from 'next/head'; ### V1 -#### v1.0.3 (2022-09-13) +#### v1.0.4 (2022-09-14) + +- Added cs translations that can be imported from `'material-react-table/locales/cs'` + +#### v1.0.3 (2022-09-14) - Fixed sticky header z-index issue with select checkboxes and expand buttons - Added pl translations that can be imported from `'material-react-table/locales/pl'` diff --git a/material-react-table-docs/pages/docs/guides/localization.mdx b/material-react-table-docs/pages/docs/guides/localization.mdx index 97e58a940..798165e39 100644 --- a/material-react-table-docs/pages/docs/guides/localization.mdx +++ b/material-react-table-docs/pages/docs/guides/localization.mdx @@ -24,7 +24,7 @@ Material React Table has full support for localization (i18n). Some locales are The following locales are included and can be imported from `'material-react-table/locales/'`: -`en` (default), `es`, `pl`, `pt-BR` +`cs`, `en` (default), `es`, `pl`, `pt-BR` > If your language is not yet supported, please consider making a PR to add it to the library! See [here on GitHub](https://github.com/KevinVandy/material-react-table/tree/main/src/_locales). diff --git a/material-react-table-docs/yarn.lock b/material-react-table-docs/yarn.lock index 62a9b35c8..354c0f0f1 100644 --- a/material-react-table-docs/yarn.lock +++ b/material-react-table-docs/yarn.lock @@ -2254,10 +2254,10 @@ markdown-extensions@^1.0.0: resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q== -material-react-table@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/material-react-table/-/material-react-table-1.0.3.tgz#58e11f303d46c808aa98caebd784d9e3c4a8c665" - integrity sha512-PI4GJraiSOSQnvKPB0qCH+vLFXDpHeYIm5RCqIsHmo9WYNzS70/9MBSDEI3jUN1PT0aFYCZthXlpBHqu0fdkMA== +material-react-table@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/material-react-table/-/material-react-table-1.0.4.tgz#0995c1bb43ba361ee6d64a9391f1371806fbf7e9" + integrity sha512-680x/uju32gPu5uX7422g/s0vpNK4obf+7K3r3ASqCDt6693BjZJ2JSgFGoJe0jysa1qKthxP+LSRBbYebfUeA== dependencies: "@tanstack/match-sorter-utils" "8.1.1" "@tanstack/react-table" "8.5.13" diff --git a/package.json b/package.json index 95d9c34df..f16fa7019 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.0.3", + "version": "1.0.4", "license": "MIT", "name": "material-react-table", "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.", diff --git a/rollup.config.js b/rollup.config.js index fad2c6f5f..6f86301f2 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -5,7 +5,7 @@ import resolve from '@rollup/plugin-node-resolve'; import typescript from '@rollup/plugin-typescript'; import { babel } from '@rollup/plugin-babel'; -const supportedLocales = ['en', 'es', 'pl', 'pt-BR']; +const supportedLocales = ['cs', 'en', 'es', 'pl', 'pt-BR']; export default [ { diff --git a/src/head/MRT_TableHead.tsx b/src/head/MRT_TableHead.tsx index 6f94c1f44..23be06ec0 100644 --- a/src/head/MRT_TableHead.tsx +++ b/src/head/MRT_TableHead.tsx @@ -22,7 +22,7 @@ export const MRT_TableHead: FC = ({ table }) => { ({ - opacity: enableStickyHeader ? 0.97 : undefined, + opacity: 0.97, position: enableStickyHeader ? 'sticky' : undefined, zIndex: enableStickyHeader ? 2 : undefined, ...(tableHeadProps?.sx instanceof Function