From 5ee17f85e95851df99df0503f36e2c8a8984cb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 19:20:23 +0200 Subject: [PATCH 001/101] feat: add sidebar nav generator --- src/_nav.js | 277 ++++++++++++++++---------------- src/components/AppSidebar.js | 14 +- src/components/AppSidebarNav.js | 70 ++++++++ 3 files changed, 210 insertions(+), 151 deletions(-) create mode 100644 src/components/AppSidebarNav.js diff --git a/src/_nav.js b/src/_nav.js index 45c919892..62b332c68 100644 --- a/src/_nav.js +++ b/src/_nav.js @@ -1,12 +1,10 @@ import React from 'react' import CIcon from '@coreui/icons-react' -import { NavLink } from 'react-router-dom' const _nav = [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Dashboard', + component: 'CNavItem', + name: 'Dashboard', to: '/dashboard', icon: , badge: { @@ -15,210 +13,206 @@ const _nav = [ }, }, { - _component: 'CNavTitle', - anchor: 'Theme', + component: 'CNavTitle', + name: 'Theme', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Colors', + component: 'CNavItem', + name: 'Colors', to: '/theme/colors', icon: , }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Typography', + component: 'CNavItem', + name: 'Typography', to: '/theme/typography', icon: , }, { - _component: 'CNavTitle', - anchor: 'Components', + component: 'CNavTitle', + name: 'Components', }, { - _component: 'CNavGroup', - as: NavLink, - anchor: 'Base', - to: '/to', - icon: , + component: 'CNavGroup', + name: 'Base', + to: '/base', + icon: 'cil-puzzle', items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Accordion', + component: 'CNavItem', + + name: 'Accordion', to: '/base/accordion', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Breadcrumb', + component: 'CNavItem', + + name: 'Breadcrumb', to: '/base/breadcrumbs', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Cards', + component: 'CNavItem', + + name: 'Cards', to: '/base/cards', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Carousel', + component: 'CNavItem', + + name: 'Carousel', to: '/base/carousels', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Collapse', + component: 'CNavItem', + + name: 'Collapse', to: '/base/collapses', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'List group', + component: 'CNavItem', + + name: 'List group', to: '/base/list-groups', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Navs & Tabs', + component: 'CNavItem', + + name: 'Navs & Tabs', to: '/base/navs', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Pagination', + component: 'CNavItem', + + name: 'Pagination', to: '/base/paginations', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Popovers', + component: 'CNavItem', + + name: 'Popovers', to: '/base/popovers', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Progress', + component: 'CNavItem', + + name: 'Progress', to: '/base/progress', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Spinners', + component: 'CNavItem', + + name: 'Spinners', to: '/base/spinners', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Tables', + component: 'CNavItem', + + name: 'Tables', to: '/base/tables', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Tooltips', + component: 'CNavItem', + + name: 'Tooltips', to: '/base/tooltips', }, ], }, { - _component: 'CNavGroup', - anchor: 'Buttons', + component: 'CNavGroup', + name: 'Buttons', icon: , items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Buttons', + component: 'CNavItem', + + name: 'Buttons', to: '/buttons/buttons', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Buttons groups', + component: 'CNavItem', + + name: 'Buttons groups', to: '/buttons/button-groups', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Dropdowns', + component: 'CNavItem', + + name: 'Dropdowns', to: '/buttons/dropdowns', }, ], }, { - _component: 'CNavGroup', - anchor: 'Forms', + component: 'CNavGroup', + name: 'Forms', icon: , items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Form Control', + component: 'CNavItem', + + name: 'Form Control', to: '/forms/form-control', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Select', + component: 'CNavItem', + + name: 'Select', to: '/forms/select', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Checks & Radios', + component: 'CNavItem', + + name: 'Checks & Radios', to: '/forms/checks-radios', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Range', + component: 'CNavItem', + + name: 'Range', to: '/forms/range', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Input Group', + component: 'CNavItem', + + name: 'Input Group', to: '/forms/input-group', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Floating Labels', + component: 'CNavItem', + + name: 'Floating Labels', to: '/forms/floating-labels', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Layout', + component: 'CNavItem', + + name: 'Layout', to: '/forms/layout', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Validation', + component: 'CNavItem', + + name: 'Validation', to: '/forms/validation', }, ], }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Charts', + component: 'CNavItem', + name: 'Charts', to: '/charts', icon: , }, { - _component: 'CNavGroup', - anchor: 'Icons', + component: 'CNavGroup', + name: 'Icons', icon: , items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'CoreUI Free', + component: 'CNavItem', + + name: 'CoreUI Free', to: '/icons/coreui-icons', badge: { color: 'success', @@ -226,54 +220,53 @@ const _nav = [ }, }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'CoreUI Flags', + component: 'CNavItem', + + name: 'CoreUI Flags', to: '/icons/flags', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'CoreUI Brands', + component: 'CNavItem', + + name: 'CoreUI Brands', to: '/icons/brands', }, ], }, { - _component: 'CNavGroup', - anchor: 'Notifications', + component: 'CNavGroup', + name: 'Notifications', icon: , items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Alerts', + component: 'CNavItem', + + name: 'Alerts', to: '/notifications/alerts', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Badges', + component: 'CNavItem', + + name: 'Badges', to: '/notifications/badges', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Modal', + component: 'CNavItem', + + name: 'Modal', to: '/notifications/modals', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Toasts', + component: 'CNavItem', + + name: 'Toasts', to: '/notifications/toasts', }, ], }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Widgets', + component: 'CNavItem', + name: 'Widgets', to: '/widgets', icon: , badge: { @@ -282,36 +275,36 @@ const _nav = [ }, }, { - _component: 'CNavTitle', - anchor: 'Extras', + component: 'CNavTitle', + name: 'Extras', }, { - _component: 'CNavGroup', - anchor: 'Pages', + component: 'CNavGroup', + name: 'Pages', icon: , items: [ { - _component: 'CNavItem', - as: NavLink, - anchor: 'Login', + component: 'CNavItem', + + name: 'Login', to: '/login', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Register', + component: 'CNavItem', + + name: 'Register', to: '/register', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Error 404', + component: 'CNavItem', + + name: 'Error 404', to: '/404', }, { - _component: 'CNavItem', - as: NavLink, - anchor: 'Error 500', + component: 'CNavItem', + + name: 'Error 500', to: '/500', }, ], diff --git a/src/components/AppSidebar.js b/src/components/AppSidebar.js index c48a0614e..0126aafc6 100644 --- a/src/components/AppSidebar.js +++ b/src/components/AppSidebar.js @@ -1,13 +1,9 @@ import React from 'react' import { useSelector, useDispatch } from 'react-redux' -import { - CSidebar, - CSidebarBrand, - CSidebarNav, - CSidebarToggler, - CCreateNavItem, -} from '@coreui/react' +import { CSidebar, CSidebarBrand, CSidebarNav, CSidebarToggler } from '@coreui/react' + +import { AppSidebarNav } from './AppSidebarNav' import CIcon from '@coreui/icons-react' @@ -27,7 +23,7 @@ const AppSidebar = () => { position="fixed" selfHiding="md" unfoldable={unfoldable} - show={sidebarShow} + visible={sidebarShow} onShow={() => console.log('show')} onHide={() => { dispatch({ type: 'set', sidebarShow: false }) @@ -39,7 +35,7 @@ const AppSidebar = () => { - + { + const components = { CNavGroup, CNavGroupItems, CNavItem, CNavLink, CNavTitle } + const location = useLocation() + + const navLink = (name, icon, badge) => { + return ( + <> + {icon && typeof icon === 'string' ? : icon} + {name && name} + {badge && ( + + {badge.text} + + )} + + ) + } + + const navItem = (item, index) => { + const { component, name, badge, icon, ...rest } = item + const Component = components[component] || component + return ( + + {navLink(name, icon, badge)} + + ) + } + const navGroup = (item, index) => { + const { component, name, icon, items, to, ...rest } = item + const Component = components[component] || component + return ( + + {item.items.map((item, index) => + item.items ? navGroup(item, index) : navItem(item, index), + )} + + ) + } + + return ( + + {items && + items.map((item, index) => (item.items ? navGroup(item, index) : navItem(item, index)))} + + ) +} + +AppSidebarNav.propTypes = { + items: PropTypes.arrayOf(PropTypes.any).isRequired, +} From c115cf0171d09388d8372212e6966ee008c0af9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 19:22:08 +0200 Subject: [PATCH 002/101] refactor: update toggler classname --- src/components/AppHeader.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/AppHeader.js b/src/components/AppHeader.js index b2a3ba4d4..c1b139039 100644 --- a/src/components/AppHeader.js +++ b/src/components/AppHeader.js @@ -24,10 +24,7 @@ const AppHeader = () => { return ( - dispatch({ type: 'set', sidebarShow: !sidebarShow })} - > + dispatch({ type: 'set', sidebarShow: !sidebarShow })}> From d94858241b835d705740c1b0716d1eff17711cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 19:22:52 +0200 Subject: [PATCH 003/101] refactor: set `sidebarShow` to `true` --- src/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store.js b/src/store.js index 7b0380722..ab446364c 100644 --- a/src/store.js +++ b/src/store.js @@ -1,7 +1,7 @@ import { createStore } from 'redux' const initialState = { - sidebarShow: false, + sidebarShow: true, } const changeState = (state = initialState, { type, ...rest }) => { From 8828eccadb25735f14fbc7202749056702eab9ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 19:24:17 +0200 Subject: [PATCH 004/101] refactor: update Popovers and Tooltips placements --- src/views/components/base/popovers/Popovers.js | 6 +++--- src/views/components/base/tooltips/Tooltips.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/components/base/popovers/Popovers.js b/src/views/components/base/popovers/Popovers.js index 7aba3dcc8..002b6a9a8 100644 --- a/src/views/components/base/popovers/Popovers.js +++ b/src/views/components/base/popovers/Popovers.js @@ -18,7 +18,7 @@ const Popovers = () => { Click to toggle popover @@ -47,7 +47,7 @@ const Popovers = () => { Popover on right @@ -59,7 +59,7 @@ const Popovers = () => { Popover on left diff --git a/src/views/components/base/tooltips/Tooltips.js b/src/views/components/base/tooltips/Tooltips.js index 9ef67f503..9125540b8 100644 --- a/src/views/components/base/tooltips/Tooltips.js +++ b/src/views/components/base/tooltips/Tooltips.js @@ -55,7 +55,7 @@ const Tooltips = () => { Tooltip on right @@ -67,7 +67,7 @@ const Tooltips = () => { Tooltip on left From f4b25703db5fdaac66278629d987c5aa4214f22d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 21:33:07 +0200 Subject: [PATCH 005/101] refactor: update views --- src/views/components/base/cards/Cards.js | 4 +- .../components/base/collapses/Collapses.js | 4 +- .../components/base/jumbotrons/Jumbotrons.js | 4 +- src/views/components/base/navbars/Navbars.js | 8 +- .../buttons/button-groups/ButtonGroups.js | 6 +- .../forms/checks-radios/ChecksRadios.js | 29 ++--- .../forms/floating-labels/FloatingLabels.js | 45 ++++--- .../forms/form-control/FormControl.js | 43 +++---- .../forms/input-group/InputGroup.js | 67 +++++----- src/views/components/forms/layout/Layout.js | 94 +++++++-------- src/views/components/forms/range/Range.js | 2 +- .../components/forms/validation/Validation.js | 114 +++++++++--------- src/views/components/icons/brands/Brands.js | 2 +- src/views/components/widgets/Widgets.js | 76 ++++++------ src/views/components/widgets/WidgetsBrand.js | 8 +- .../components/widgets/WidgetsDropdown.js | 8 +- src/views/dashboard/Dashboard.js | 16 +-- src/views/pages/login/Login.js | 12 +- src/views/pages/page404/Page404.js | 6 +- src/views/pages/page500/Page500.js | 6 +- src/views/pages/register/Register.js | 12 +- src/views/theme/colors/Colors.js | 2 +- 22 files changed, 275 insertions(+), 293 deletions(-) diff --git a/src/views/components/base/cards/Cards.js b/src/views/components/base/cards/Cards.js index 5ea9161b6..88363455b 100644 --- a/src/views/components/base/cards/Cards.js +++ b/src/views/components/base/cards/Cards.js @@ -355,7 +355,7 @@ const Cards = () => {

- + Special title treatment @@ -366,7 +366,7 @@ const Cards = () => { - + Special title treatment diff --git a/src/views/components/base/collapses/Collapses.js b/src/views/components/base/collapses/Collapses.js index 4a85d3966..1da1f42ba 100644 --- a/src/views/components/base/collapses/Collapses.js +++ b/src/views/components/base/collapses/Collapses.js @@ -64,7 +64,7 @@ const Collapses = () => { Toggle both elements - + @@ -75,7 +75,7 @@ const Collapses = () => { - + diff --git a/src/views/components/base/jumbotrons/Jumbotrons.js b/src/views/components/base/jumbotrons/Jumbotrons.js index 1bd9340e4..11296680a 100644 --- a/src/views/components/base/jumbotrons/Jumbotrons.js +++ b/src/views/components/base/jumbotrons/Jumbotrons.js @@ -21,7 +21,7 @@ const Jumbotrons = () => { Example button
- +

Change the background

@@ -33,7 +33,7 @@ const Jumbotrons = () => {

- +

Add borders

diff --git a/src/views/components/base/navbars/Navbars.js b/src/views/components/base/navbars/Navbars.js index e4c0e3704..5bd364720 100644 --- a/src/views/components/base/navbars/Navbars.js +++ b/src/views/components/base/navbars/Navbars.js @@ -8,7 +8,7 @@ import { CDropdownMenu, CDropdownToggle, CForm, - CFormControl, + CFormInput, CImage, CNavbar, CNavbarNav, @@ -44,7 +44,7 @@ const CNavbars = () => { - + Search @@ -148,7 +148,7 @@ const CNavbars = () => { - + Search @@ -162,7 +162,7 @@ const CNavbars = () => { - + diff --git a/src/views/components/buttons/button-groups/ButtonGroups.js b/src/views/components/buttons/button-groups/ButtonGroups.js index 64ce7d80d..a529a3bef 100644 --- a/src/views/components/buttons/button-groups/ButtonGroups.js +++ b/src/views/components/buttons/button-groups/ButtonGroups.js @@ -13,7 +13,7 @@ import { CCardHeader, CCol, CFormCheck, - CFormControl, + CFormInput, CInputGroup, CInputGroupText, CRow, @@ -220,7 +220,7 @@ const ButtonGroups = () => { @ - { @ - { @@ -106,25 +106,18 @@ const ChecksRadios = () => { attribute.

- - + - - { - - + - {

- Wrap a pair of <CFormControl> and <CFormLabel>{' '} + Wrap a pair of <CFormInput> and <CFormLabel>{' '} elements in CFormFloating to enable floating labels with textual form - fields. A placeholder is required on each{' '} - <CFormControl> as our method of CSS-only floating labels uses the{' '} - :placeholder-shown pseudo-element. Also note that the{' '} - <CFormControl> must come first so we can utilize a sibling selector - (e.g., ~). + fields. A placeholder is required on each <CFormInput>{' '} + as our method of CSS-only floating labels uses the :placeholder-shown{' '} + pseudo-element. Also note that the <CFormInput> must come first so + we can utilize a sibling selector (e.g., ~).

- + Email address - - Password + + Password

@@ -49,7 +49,7 @@ const FloatingLabels = () => {

- {

- By default, <CFormControl component="textarea">s will be - the same height as <CFormControl>s. + By default, <CFormTextarea>s will be the same height as{' '} + <CFormInput>s.

- + > Comments

- To set a custom height on your{' '} - <CFormControl component="textarea">, do not use the{' '} + To set a custom height on your <CFormTextarea;>, do not use the{' '} rows attribute. Instead, set an explicit height (either inline or via custom CSS).

- + > Comments @@ -108,9 +105,9 @@ const FloatingLabels = () => {

- Other than <CFormControl>, floating labels are only available on{' '} + Other than <CFormInput>, floating labels are only available on{' '} <CFormSelect>s. They work in the same way, but unlike{' '} - <CFormControl>s, they'll always show the{' '} + <CFormInput>s, they'll always show the{' '} <CFormLabel> in its floated state.{' '} Selects with size and multiple are not supported. @@ -144,7 +141,7 @@ const FloatingLabels = () => { - {

Email address - {
Example textarea - +
@@ -58,20 +55,20 @@ const FormControl = () => { size="sm".

-
-
- { appearance and remove pointer events.

-
- { but retain the standard cursor.

- { Email
- { Password
- +
@@ -174,7 +171,7 @@ const FormControl = () => { Email - { Password - +
@@ -207,23 +204,23 @@ const FormControl = () => {
Default file input example - +
Multiple files input example - +
Disabled file input example - +
Small file input example - +
Large file input example - +
@@ -237,7 +234,7 @@ const FormControl = () => { Color picker - { @ - - { Your vanity URL https://example.com/users/ - + $ - + .00 - + @ - + With textarea - + @@ -91,7 +92,7 @@ const Select = () => { @ - { Small - Default - Large - @@ -159,7 +160,7 @@ const Select = () => { aria-label="Checkbox for following text input" /> - + @@ -169,7 +170,7 @@ const Select = () => { aria-label="Radio button for following text input" /> - + @@ -182,15 +183,15 @@ const Select = () => {

- While multiple <CFormControl>s are supported visually, validation + While multiple <CFormInput>s are supported visually, validation styles are only available for input groups with a single{' '} - <CFormControl>. + <CFormInput>.

First and last name - - + +
@@ -210,10 +211,10 @@ const Select = () => { $ 0.00 - + - + $ 0.00 @@ -236,14 +237,14 @@ const Select = () => { Button -
- { Button - + - @@ -297,10 +298,10 @@ const Select = () => { Separated link - + - + Dropdown @@ -327,7 +328,7 @@ const Select = () => { Separated link - + Dropdown @@ -366,10 +367,10 @@ const Select = () => { Separated link - + - + Action @@ -454,10 +455,10 @@ const Select = () => { Upload - + - + Upload @@ -471,7 +472,7 @@ const Select = () => { > Button
- { /> - { - + - + @@ -55,10 +55,10 @@ const Layout = () => { - + - + @@ -67,41 +67,41 @@ const Layout = () => {

- + Email - + - + Password - + - + Address - + - + Address 2 - + - + City - + - + State - + Zip - + - + - + Sign in @@ -133,21 +133,21 @@ const Layout = () => { Email - - + + Password - - + +
Radios - + { > Email - - + { Email - - + + @@ -227,8 +227,8 @@ const Layout = () => { > Email - - + {

- - + + - + - + @@ -288,7 +288,7 @@ const Layout = () => { Name - +
@@ -296,7 +296,7 @@ const Layout = () => { @ - + @@ -323,22 +323,22 @@ const Layout = () => {

- + Name - + - + Username @ - + - + Preference @@ -376,16 +376,16 @@ const Layout = () => {

- + Username @ - + - + Preference @@ -396,10 +396,10 @@ const Layout = () => { - + - + Submit diff --git a/src/views/components/forms/range/Range.js b/src/views/components/forms/range/Range.js index d07dd8f4b..163525c69 100644 --- a/src/views/components/forms/range/Range.js +++ b/src/views/components/forms/range/Range.js @@ -16,7 +16,7 @@ const Range = () => {

Create custom <input type="range"> controls with{' '} - <CFormControl>. + <CFormRange>.

Example range diff --git a/src/views/components/forms/validation/Validation.js b/src/views/components/forms/validation/Validation.js index 001b4a2a8..28538d850 100644 --- a/src/views/components/forms/validation/Validation.js +++ b/src/views/components/forms/validation/Validation.js @@ -7,10 +7,11 @@ import { CCol, CForm, CFormCheck, - CFormControl, + CFormInput, CFormFeedback, CFormLabel, CFormSelect, + CFormTextarea, CInputGroup, CInputGroupText, CRow, @@ -34,21 +35,21 @@ const CustomStyles = () => { validated={validated} onSubmit={handleSubmit} > - + Email - + Looks good! - + Email - + Looks good! - + Username @ - { Please choose a username. - + City - + Please provide a valid city. - + City @@ -71,12 +72,12 @@ const CustomStyles = () => { Please provide a valid city. - + City - + Please provide a valid zip. - + { /> You must agree before submitting. - + Submit form @@ -106,21 +107,21 @@ const BrowserDefaults = () => { } return ( - + Email - + Looks good! - + Email - + Looks good! - + Username @ - { Please choose a username. - + City - + Please provide a valid city. - + City @@ -143,12 +144,12 @@ const BrowserDefaults = () => { Please provide a valid city. - + City - + Please provide a valid zip. - + { /> You must agree before submitting. - + Submit form @@ -183,25 +184,25 @@ const Tooltips = () => { validated={validated} onSubmit={handleSubmit} > - + Email - + Looks good! - + Email - + Looks good! - + Username @ - { - + City - + Please provide a valid city. - + City - + City - + Please provide a valid zip. - + Submit form @@ -316,9 +317,9 @@ const Validation = () => {

- + Email - { /> Looks good! - + Email - { /> Looks good! - + Username @ - { Please choose a username. - + City - + Please provide a valid city. - + City @@ -366,12 +367,12 @@ const Validation = () => { Please provide a valid city. - + City - + Please provide a valid zip. - + { /> You must agree before submitting. - + Submit form @@ -402,7 +403,7 @@ const Validation = () => {

  • - <CFormControl>s + <CFormInput>s
  • <CFormSelect>s @@ -417,13 +418,12 @@ const Validation = () => { Textarea - + > Please enter a message in the textarea.
{
- { export const getIconsView = (iconset) => { return Object.entries(iconset).map(([name, value]) => ( - +
{toKebabCase(name)}
diff --git a/src/views/components/widgets/Widgets.js b/src/views/components/widgets/Widgets.js index 71f677c9e..355fe94a7 100644 --- a/src/views/components/widgets/Widgets.js +++ b/src/views/components/widgets/Widgets.js @@ -23,7 +23,7 @@ const Widgets = () => { <> - + { text="Lorem ipsum dolor sit amet enim." /> - + { text="Lorem ipsum dolor sit amet enim." /> - + { text="Lorem ipsum dolor sit amet enim." /> - + { /> - + { text="Lorem ipsum dolor sit amet enim." /> - + { text="Lorem ipsum dolor sit amet enim." /> - + { text="Lorem ipsum dolor sit amet enim." /> - + { - + } @@ -124,7 +124,7 @@ const Widgets = () => { color="primary" /> - + } @@ -134,7 +134,7 @@ const Widgets = () => { color="info" /> - + } @@ -144,7 +144,7 @@ const Widgets = () => { color="warning" /> - + } @@ -154,7 +154,7 @@ const Widgets = () => { color="danger" /> - + } @@ -175,7 +175,7 @@ const Widgets = () => { } /> - + } @@ -196,7 +196,7 @@ const Widgets = () => { } /> - + } @@ -217,7 +217,7 @@ const Widgets = () => { } /> - + } @@ -238,7 +238,7 @@ const Widgets = () => { } /> - + { color="primary" /> - + { color="info" /> - + { color="warning" /> - + { /> - + } value="87.500" @@ -332,7 +332,7 @@ const Widgets = () => { className="mb-4" /> - + } value="385" @@ -342,7 +342,7 @@ const Widgets = () => { className="mb-4" /> - + } value="1238" @@ -352,7 +352,7 @@ const Widgets = () => { className="mb-4" /> - + } value="28%" @@ -362,7 +362,7 @@ const Widgets = () => { className="mb-4" /> - + } value="5:34:11" @@ -372,7 +372,7 @@ const Widgets = () => { className="mb-4" /> - + } value="972" @@ -384,7 +384,7 @@ const Widgets = () => { - + } @@ -395,7 +395,7 @@ const Widgets = () => { className="mb-4" /> - + } @@ -406,7 +406,7 @@ const Widgets = () => { className="mb-4" /> - + } @@ -417,7 +417,7 @@ const Widgets = () => { className="mb-4" /> - + } @@ -428,7 +428,7 @@ const Widgets = () => { className="mb-4" /> - + } @@ -439,7 +439,7 @@ const Widgets = () => { className="mb-4" /> - + } @@ -452,7 +452,7 @@ const Widgets = () => { - + { /> - + { /> - + { /> - + { /> - + { /> - + { return ( - + { /> - + { /> - + { /> - + { return ( - + { } /> - + { } /> - + { } /> - + { - +

Traffic

January - July 2021
- + @@ -184,15 +184,15 @@ const Dashboard = () => { Traffic {' & '} Sales - + - +
New Clients
9,123
- +
Recurring Clients
22,643
@@ -267,15 +267,15 @@ const Dashboard = () => {
- + - +
Pageviews
78,623
- +
Organic
49,123
diff --git a/src/views/pages/login/Login.js b/src/views/pages/login/Login.js index 769ee5e9b..ab0afb5a1 100644 --- a/src/views/pages/login/Login.js +++ b/src/views/pages/login/Login.js @@ -8,7 +8,7 @@ import { CCol, CContainer, CForm, - CFormControl, + CFormInput, CInputGroup, CInputGroupText, CRow, @@ -20,7 +20,7 @@ const Login = () => {
- + @@ -31,25 +31,25 @@ const Login = () => { - + - - + Login - + Forgot password? diff --git a/src/views/pages/page404/Page404.js b/src/views/pages/page404/Page404.js index 9d74359fe..87345ecb4 100644 --- a/src/views/pages/page404/Page404.js +++ b/src/views/pages/page404/Page404.js @@ -3,7 +3,7 @@ import { CButton, CCol, CContainer, - CFormControl, + CFormInput, CInputGroup, CInputGroupText, CRow, @@ -15,7 +15,7 @@ const Page404 = () => {
- +

404

Oops! You{"'"}re lost.

@@ -27,7 +27,7 @@ const Page404 = () => { - + Search diff --git a/src/views/pages/page500/Page500.js b/src/views/pages/page500/Page500.js index c7925b6a1..e9c52b610 100644 --- a/src/views/pages/page500/Page500.js +++ b/src/views/pages/page500/Page500.js @@ -3,7 +3,7 @@ import { CButton, CCol, CContainer, - CFormControl, + CFormInput, CInputGroup, CInputGroupText, CRow, @@ -15,7 +15,7 @@ const Page500 = () => {
- +

500

Houston, we have a problem!

@@ -27,7 +27,7 @@ const Page500 = () => { - + Search
diff --git a/src/views/pages/register/Register.js b/src/views/pages/register/Register.js index cc9fc63b8..4882b345f 100644 --- a/src/views/pages/register/Register.js +++ b/src/views/pages/register/Register.js @@ -6,7 +6,7 @@ import { CCol, CContainer, CForm, - CFormControl, + CFormInput, CInputGroup, CInputGroupText, CRow, @@ -18,7 +18,7 @@ const Register = () => {
- + @@ -28,17 +28,17 @@ const Register = () => { - + @ - + - { - { const ThemeColor = ({ className, children }) => { const classes = classNames(className, 'theme-color w-75 rounded mb-3') return ( - +
{children} From 69c6d61d472c009ed6808121be15ad4972fec47a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 21:33:35 +0200 Subject: [PATCH 006/101] refactor: update toggler paddings --- src/components/AppHeader.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/AppHeader.js b/src/components/AppHeader.js index c1b139039..75c10df78 100644 --- a/src/components/AppHeader.js +++ b/src/components/AppHeader.js @@ -24,7 +24,10 @@ const AppHeader = () => { return ( - dispatch({ type: 'set', sidebarShow: !sidebarShow })}> + dispatch({ type: 'set', sidebarShow: !sidebarShow })} + > From 3db0405db357d1de98c9e0a1bc43e1b02d0cc37d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 21:34:08 +0200 Subject: [PATCH 007/101] docs: update migration guide --- migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration.md b/migration.md index 1217ada1d..786139890 100644 --- a/migration.md +++ b/migration.md @@ -23,7 +23,7 @@ ### Forms -- `CInput` => `CFormControl` +- `CInput` => `CFormInput` - `CInputCheckbox` => `CFormCheck` - `CLabel` => `CFormLabel` - `CSelect` => `CFormSelect` From 7c0862a4aaf726ee4b7db93713645dc179027bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 17:30:42 +0200 Subject: [PATCH 008/101] chore: update dependencies and devDependencies --- package.json | 16 +++---- yarn.lock | 123 ++++++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 111 insertions(+), 28 deletions(-) diff --git a/package.json b/package.json index 810134cee..cfc86e967 100644 --- a/package.json +++ b/package.json @@ -27,16 +27,16 @@ }, "dependencies": { "@coreui/chartjs": "3.0.0", - "@coreui/coreui": "4.0.0", + "@coreui/coreui": "4.0.1", "@coreui/icons": "^2.0.1", "@coreui/icons-react": "^2.0.0-rc.0", "@coreui/react": "4.0.0-beta.2", "@coreui/react-chartjs": "2.0.0-rc.0", "@coreui/utils": "^1.3.1", - "@wojtekmaj/enzyme-adapter-react-17": "^0.6.2", - "chart.js": "^3.4.1", + "@wojtekmaj/enzyme-adapter-react-17": "^0.6.3", + "chart.js": "^3.5.0", "classnames": "^2.3.1", - "core-js": "^3.15.2", + "core-js": "^3.16.1", "enzyme": "^3.11.0", "prop-types": "^15.7.2", "react": "^17.0.2", @@ -44,17 +44,17 @@ "react-dom": "^17.0.2", "react-redux": "^7.2.4", "react-router-dom": "^5.2.0", - "redux": "4.1.0", - "simplebar-react": "^2.3.4" + "redux": "4.1.1", + "simplebar-react": "^2.3.5" }, "devDependencies": { "auto-changelog": "~2.3.0", - "eslint": "^7.30.0", + "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "prettier": "2.3.2", "react-scripts": "^4.0.3", - "sass": "^1.35.1" + "sass": "^1.37.5" }, "scripts": { "start": "react-scripts start", diff --git a/yarn.lock b/yarn.lock index a48cb5fbe..f828f6b6d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1222,6 +1222,11 @@ resolved "https://registry.yarnpkg.com/@coreui/coreui/-/coreui-4.0.0.tgz#52ebe0197411a829ba48057ade61923e05859eec" integrity sha512-8vH6fJrmvCR/Oy5v0E+/1AL3Ygb4jhQ7NXK2fMYWJyK13BePDm9muB3y6S0IdqkpBwjY3hHVwHyt2lJqJdesmQ== +"@coreui/coreui@4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@coreui/coreui/-/coreui-4.0.1.tgz#e5faf540aeea31b0cc8d428d73080a364e4bc6fd" + integrity sha512-1mrWnbqoWb7+8ZAMUdlWt0AqVzDEkJglk7F3OaFsQtxienezFvlMNsd1YPPNo+taRzF7HZ8xSDIAItCvlOaMVg== + "@coreui/icons-react@^2.0.0-rc.0": version "2.0.0-rc.0" resolved "https://registry.yarnpkg.com/@coreui/icons-react/-/icons-react-2.0.0-rc.0.tgz#5eb4d082a9306c6a2126c61766dcfec503a8a4e1" @@ -1291,6 +1296,21 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + espree "^7.3.0" + globals "^13.9.0" + ignore "^4.0.6" + import-fresh "^3.2.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + "@hapi/address@2.x.x": version "2.1.4" resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" @@ -2208,10 +2228,10 @@ "@webassemblyjs/wast-parser" "1.9.0" "@xtuc/long" "4.2.2" -"@wojtekmaj/enzyme-adapter-react-17@^0.6.2": - version "0.6.2" - resolved "https://registry.yarnpkg.com/@wojtekmaj/enzyme-adapter-react-17/-/enzyme-adapter-react-17-0.6.2.tgz#7f05a91e6b374ba94ab10467802346198403d3e1" - integrity sha512-9STl8ZKp8VPJgtr6jEAv9IThX0PAJ1JXKv6IlXzq22Ejyk1bhSxJ6RfJCJT9A9+8JlDIf3BX5CC4s0Bs4/1wFQ== +"@wojtekmaj/enzyme-adapter-react-17@^0.6.3": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@wojtekmaj/enzyme-adapter-react-17/-/enzyme-adapter-react-17-0.6.3.tgz#bf7cd6007d99996bd7d98c843644b213a3ecc74e" + integrity sha512-Kp1ZJxtHkKEnUksaWrcMABNTOgL4wOt8VI6k2xOek2aH9PtZcWRXJNUEgnKrdJrqg5UqIjRslbVF9uUqwQJtFg== dependencies: "@wojtekmaj/enzyme-adapter-utils" "^0.1.1" enzyme-shallow-equal "^1.0.0" @@ -3279,6 +3299,11 @@ chart.js@^3.4.0, chart.js@^3.4.1: resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-3.4.1.tgz#ff3b2b2a04a37b83618b4a6399a5f87ccc0f1e8a" integrity sha512-0R4mL7WiBcYoazIhrzSYnWcOw6RmrRn7Q4nKZNsBQZCBrlkZKodQbfeojCCo8eETPRCs1ZNTsAcZhIfyhyP61g== +chart.js@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-3.5.0.tgz#6eb075332d4ebbbb20a94e5a07a234052ed6c4fb" + integrity sha512-J1a4EAb1Gi/KbhwDRmoovHTRuqT8qdF0kZ4XgwxpGethJHUdDrkqyPYwke0a+BuvSeUxPf8Cos6AX2AB8H8GLA== + check-types@^11.1.1: version "11.1.2" resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.1.2.tgz#86a7c12bf5539f6324eb0e70ca8896c0e38f3e2f" @@ -3672,11 +3697,16 @@ core-js@^2.4.0: resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== -core-js@^3.0.1, core-js@^3.15.2, core-js@^3.6.5: +core-js@^3.0.1, core-js@^3.6.5: version "3.15.2" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.15.2.tgz#740660d2ff55ef34ce664d7e2455119c5bdd3d61" integrity sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q== +core-js@^3.16.1: + version "3.16.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.1.tgz#f4485ce5c9f3c6a7cb18fa80488e08d362097249" + integrity sha512-AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw== + core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -4797,7 +4827,7 @@ eslint-webpack-plugin@^2.5.2: normalize-path "^3.0.0" schema-utils "^3.0.0" -eslint@^7.11.0, eslint@^7.30.0: +eslint@^7.11.0: version "7.30.0" resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.30.0.tgz#6d34ab51aaa56112fd97166226c9a97f505474f8" integrity sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg== @@ -4843,6 +4873,52 @@ eslint@^7.11.0, eslint@^7.30.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" +eslint@^7.32.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.0.1" + doctrine "^3.0.0" + enquirer "^2.3.5" + escape-string-regexp "^4.0.0" + eslint-scope "^5.1.1" + eslint-utils "^2.1.0" + eslint-visitor-keys "^2.0.0" + espree "^7.3.1" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.1.2" + globals "^13.6.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.0.4" + natural-compare "^1.4.0" + optionator "^0.9.1" + progress "^2.0.0" + regexpp "^3.1.0" + semver "^7.2.1" + strip-ansi "^6.0.0" + strip-json-comments "^3.1.0" + table "^6.0.9" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + espree@^7.3.0, espree@^7.3.1: version "7.3.1" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" @@ -9557,7 +9633,14 @@ recursive-readdir@2.2.2: dependencies: minimatch "3.0.4" -redux@4.1.0, redux@^4.0.0: +redux@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.1.tgz#76f1c439bb42043f985fbd9bf21990e60bd67f47" + integrity sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw== + dependencies: + "@babel/runtime" "^7.9.2" + +redux@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz#eb049679f2f523c379f1aff345c8612f294c88d4" integrity sha512-uI2dQN43zqLWCt6B/BMGRMY6db7TTY4qeHHfGeKb3EOhmOKjU3KdWvNLJyqaHRksv/ErdNH7cFZWg9jXtewy4g== @@ -9953,10 +10036,10 @@ sass-loader@^10.0.5: schema-utils "^3.0.0" semver "^7.3.2" -sass@^1.35.1: - version "1.35.1" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.35.1.tgz#90ecf774dfe68f07b6193077e3b42fb154b9e1cd" - integrity sha512-oCisuQJstxMcacOPmxLNiLlj4cUyN2+8xJnG7VanRoh2GOLr9RqkvI4AxA4a6LHVg/rsu+PmxXeGhrdSF9jCiQ== +sass@^1.37.5: + version "1.37.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.37.5.tgz#f6838351f7cc814c4fcfe1d9a20e0cabbd1e7b3c" + integrity sha512-Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA== dependencies: chokidar ">=3.0.0 <4.0.0" @@ -10195,18 +10278,18 @@ simple-swizzle@^0.2.2: dependencies: is-arrayish "^0.3.1" -simplebar-react@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/simplebar-react/-/simplebar-react-2.3.4.tgz#aed39238b6cd0760e5b6751e29c7d8663a691acb" - integrity sha512-dNRaVa3UDbjyqu2Xpxm44+bfUGS0c1Y6cO0QkzmR90d6BwdlGeelDGYYF8MDloaAu4gttKwhwDqDZe70CJuYXg== +simplebar-react@^2.3.5: + version "2.3.5" + resolved "https://registry.yarnpkg.com/simplebar-react/-/simplebar-react-2.3.5.tgz#9d85803d01585f8a4899d45e7e681aef744568c6" + integrity sha512-tzlU4C96awc6yRtxRF3hm91daQyEOHVpVpAaaGaWL6jL0uSqqTrXyYdTerjUqYxf6X4ev9tPKXecEBOaFWSC4Q== dependencies: prop-types "^15.6.1" - simplebar "^5.3.4" + simplebar "^5.3.5" -simplebar@^5.3.4: - version "5.3.4" - resolved "https://registry.yarnpkg.com/simplebar/-/simplebar-5.3.4.tgz#7de8d4a07ed3c6612644f4dbc04a8427fdf038ef" - integrity sha512-2mCaVdiroCKmXuD+Qfy+QSE32m5BMuZ4ssHvRD1QEPYH95Re/kox7j/Wy0Hje8Uo7LY7O6JK3XSNJmesGlsP8Q== +simplebar@^5.3.5: + version "5.3.5" + resolved "https://registry.yarnpkg.com/simplebar/-/simplebar-5.3.5.tgz#799d14cdc8bb8ed245789745b9f3741d05403944" + integrity sha512-mcTlXEiva8pSMdNEzeV3C1KyBHk7Sn2Pe46U1Uwo53dCuQqdJIK0bEJrIPs8W4/RqJquKIsC8Y1h7+aqOl8ccA== dependencies: "@juggle/resize-observer" "^3.3.1" can-use-dom "^0.1.0" From d85bf9a9f79ed2455cf962f3c71b168b08462a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 17:53:25 +0200 Subject: [PATCH 009/101] refactor: move components from `reusable` to `components` --- src/_nav.js | 1 + src/{reusable => components}/DocsCallout.js | 0 .../Example.js => components/DocsExample.js} | 6 +- src/{reusable => components}/DocsLink.js | 0 src/components/index.js | 15 ++- src/reusable/index.js | 5 - .../components/base/accordion/Accordion.js | 10 +- .../base/breadcrumbs/Breadcrumbs.js | 6 +- src/views/components/base/cards/Cards.js | 98 +++++++++---------- .../components/base/carousels/Carousels.js | 26 ++--- .../components/base/collapses/Collapses.js | 10 +- .../components/base/jumbotrons/Jumbotrons.js | 6 +- .../components/base/list-groups/ListGroups.js | 46 ++++----- src/views/components/base/navbars/Navbars.js | 2 +- src/views/components/base/navs/Navs.js | 50 +++++----- .../base/paginations/Paginations.js | 30 +++--- .../components/base/popovers/Popovers.js | 10 +- .../components/base/progress/Progress.js | 30 +++--- .../components/base/spinners/Spinners.js | 30 +++--- src/views/components/base/tables/Tables.js | 90 ++++++++--------- .../components/base/tooltips/Tooltips.js | 10 +- .../buttons/button-groups/ButtonGroups.js | 54 +++++----- .../components/buttons/buttons/Buttons.js | 62 ++++++------ .../components/buttons/dropdowns/Dropdowns.js | 42 ++++---- src/views/components/charts/Charts.js | 2 +- .../forms/checks-radios/ChecksRadios.js | 66 ++++++------- .../forms/floating-labels/FloatingLabels.js | 26 ++--- .../forms/form-control/FormControl.js | 34 +++---- .../forms/input-group/InputGroup.js | 46 ++++----- src/views/components/forms/layout/Layout.js | 38 +++---- src/views/components/forms/range/Range.js | 18 ++-- src/views/components/forms/select/Select.js | 26 ++--- .../components/forms/validation/Validation.js | 16 +-- src/views/components/icons/brands/Brands.js | 2 +- .../icons/coreui-icons/CoreUIIcons.js | 2 +- src/views/components/icons/flags/Flags.js | 2 +- .../components/notifications/alerts/Alerts.js | 18 ++-- .../components/notifications/badges/Badges.js | 22 ++--- .../components/notifications/modals/Modals.js | 34 ++++--- .../components/notifications/toasts/Toasts.js | 28 +++--- src/views/theme/colors/Colors.js | 2 +- src/views/theme/typography/Typography.js | 2 +- 42 files changed, 519 insertions(+), 504 deletions(-) rename src/{reusable => components}/DocsCallout.js (100%) rename src/{reusable/Example.js => components/DocsExample.js} (91%) rename src/{reusable => components}/DocsLink.js (100%) delete mode 100644 src/reusable/index.js diff --git a/src/_nav.js b/src/_nav.js index 62b332c68..5aec93301 100644 --- a/src/_nav.js +++ b/src/_nav.js @@ -121,6 +121,7 @@ const _nav = [ { component: 'CNavGroup', name: 'Buttons', + to: '/buttons', icon: , items: [ { diff --git a/src/reusable/DocsCallout.js b/src/components/DocsCallout.js similarity index 100% rename from src/reusable/DocsCallout.js rename to src/components/DocsCallout.js diff --git a/src/reusable/Example.js b/src/components/DocsExample.js similarity index 91% rename from src/reusable/Example.js rename to src/components/DocsExample.js index 789d5007e..66f59724b 100644 --- a/src/reusable/Example.js +++ b/src/components/DocsExample.js @@ -5,7 +5,7 @@ import CIcon from '@coreui/icons-react' import packageJson from '../../package.json' -const Example = (props) => { +const DocsExample = (props) => { const { children, href } = props const _href = `https://coreui.io/react/docs/${packageJson.config.coreui_library_short_version}/${href}` @@ -35,9 +35,9 @@ const Example = (props) => { ) } -Example.propTypes = { +DocsExample.propTypes = { children: PropTypes.node, href: PropTypes.string, } -export default React.memo(Example) +export default React.memo(DocsExample) diff --git a/src/reusable/DocsLink.js b/src/components/DocsLink.js similarity index 100% rename from src/reusable/DocsLink.js rename to src/components/DocsLink.js diff --git a/src/components/index.js b/src/components/index.js index a4a12654e..6cdf33563 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -4,5 +4,18 @@ import AppFooter from './AppFooter' import AppHeader from './AppHeader' import AppHeaderDropdown from './header/AppHeaderDropdown' import AppSidebar from './AppSidebar' +import DocsCallout from './DocsCallout' +import DocsLink from './DocsLink' +import DocsExample from './DocsExample' -export { AppBreadcrumb, AppContent, AppFooter, AppHeader, AppHeaderDropdown, AppSidebar } +export { + AppBreadcrumb, + AppContent, + AppFooter, + AppHeader, + AppHeaderDropdown, + AppSidebar, + DocsCallout, + DocsLink, + DocsExample, +} diff --git a/src/reusable/index.js b/src/reusable/index.js deleted file mode 100644 index 098eab51a..000000000 --- a/src/reusable/index.js +++ /dev/null @@ -1,5 +0,0 @@ -import DocsCallout from './DocsCallout' -import DocsLink from './DocsLink' -import Example from './Example' - -export { DocsCallout, DocsLink, Example } diff --git a/src/views/components/base/accordion/Accordion.js b/src/views/components/base/accordion/Accordion.js index 53cfa20b3..b5a8790fb 100644 --- a/src/views/components/base/accordion/Accordion.js +++ b/src/views/components/base/accordion/Accordion.js @@ -12,7 +12,7 @@ import { CAccordionHeader, CAccordionItem, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Accordion = () => { const [activeKey, setActiveKey] = useState(0) @@ -32,7 +32,7 @@ const Accordion = () => {

Click the accordions below to expand/collapse the accordion content.

- + @@ -98,7 +98,7 @@ const Accordion = () => { - +
@@ -111,7 +111,7 @@ const Accordion = () => { borders, and some rounded corners to render accordions edge-to-edge with their parent container.

- + @@ -177,7 +177,7 @@ const Accordion = () => { - +
diff --git a/src/views/components/base/breadcrumbs/Breadcrumbs.js b/src/views/components/base/breadcrumbs/Breadcrumbs.js index fc64dbe56..dd8e85b00 100644 --- a/src/views/components/base/breadcrumbs/Breadcrumbs.js +++ b/src/views/components/base/breadcrumbs/Breadcrumbs.js @@ -9,7 +9,7 @@ import { CRow, CLink, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Breadcrumbs = () => { return ( @@ -38,7 +38,7 @@ const Breadcrumbs = () => { .

- + Home @@ -66,7 +66,7 @@ const Breadcrumbs = () => { Bootstrap - +
diff --git a/src/views/components/base/cards/Cards.js b/src/views/components/base/cards/Cards.js index 88363455b..35b2350e0 100644 --- a/src/views/components/base/cards/Cards.js +++ b/src/views/components/base/cards/Cards.js @@ -19,7 +19,7 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Cards = () => { return ( @@ -46,7 +46,7 @@ const Cards = () => { no fixed width to start, so they'll naturally fill the full width of its parent element.

- + { Go somewhere - + @@ -89,11 +89,11 @@ const Cards = () => { The main block of a card is the <CCardBody>. Use it whenever you need a padded section within a card.

- + This is some text within a card body. - + @@ -114,7 +114,7 @@ const Cards = () => { stored in a <CCardBody> item, the card title, and subtitle are arranged rightly.

- + Card title @@ -127,7 +127,7 @@ const Cards = () => { Another link - + @@ -142,7 +142,7 @@ const Cards = () => { .card-text, text can be added to the card. Text within{' '} .card-text can additionally be styled with the regular HTML tags.

- + { - + @@ -182,7 +182,7 @@ const Cards = () => {

Create lists of content in a card with a flush list group.

- + @@ -214,7 +214,7 @@ const Cards = () => { - + @@ -229,7 +229,7 @@ const Cards = () => { in there. Shown below are image styles, blocks, text styles, and a list group—all wrapped in a fixed-width card.

- + { Another link - + @@ -279,7 +279,7 @@ const Cards = () => {

Add an optional header and/or footer within a card.

- + Header @@ -290,11 +290,11 @@ const Cards = () => { Go somewhere - +

Card headers can be styled by adding ex. component="h5".

- + Header @@ -305,8 +305,8 @@ const Cards = () => { Go somewhere - - + + Quote @@ -321,8 +321,8 @@ const Cards = () => { - - + + Header @@ -334,7 +334,7 @@ const Cards = () => { 2 days ago - + @@ -353,7 +353,7 @@ const Cards = () => {

Using the grid, wrap cards in columns and rows as needed.

- + @@ -378,14 +378,14 @@ const Cards = () => { - +

Using utilities

Use some of{' '} available sizing utilities to rapidly set a card's width.

- + Card title @@ -404,12 +404,12 @@ const Cards = () => { Go somewhere - + Using custom CSS

Use custom CSS in your stylesheets or as inline styles to set a width.

- + Special title treatment @@ -419,7 +419,7 @@ const Cards = () => { Go somewhere - + @@ -435,7 +435,7 @@ const Cards = () => { text align classes .

- + Special title treatment @@ -463,7 +463,7 @@ const Cards = () => { Go somewhere - + @@ -477,7 +477,7 @@ const Cards = () => { Add some navigation to a <CCardHeader> with our{' '} <CNav> component.

- + @@ -504,8 +504,8 @@ const Cards = () => { Go somewhere - - + + @@ -532,7 +532,7 @@ const Cards = () => { Go somewhere - + @@ -546,7 +546,7 @@ const Cards = () => { Similar to headers and footers, cards can include top and bottom "image caps"—images at the top or bottom of a card.

- + @@ -613,7 +613,7 @@ const Cards = () => { - + @@ -630,7 +630,7 @@ const Cards = () => {

Use color property to change the appearance of a card.

- + {[ { color: 'primary', textColor: 'white' }, @@ -656,7 +656,7 @@ const Cards = () => { ))} - +

Border

Use border utilities to change @@ -664,7 +664,7 @@ const Cards = () => { textColor property on the <CCard> or a subset of the card's contents as shown below.

- + {[ { color: 'primary', textColor: 'primary' }, @@ -690,7 +690,7 @@ const Cards = () => { ))} - +

Top border

Use border utilities to change @@ -698,7 +698,7 @@ const Cards = () => { textColor property on the <CCard> or a subset of the card's contents as shown below.

- + {[ { color: 'primary', textColor: 'primary' }, @@ -727,7 +727,7 @@ const Cards = () => { ))} - + @@ -742,7 +742,7 @@ const Cards = () => { height columns. Card groups start off stacked and use display: flex; to become attached with uniform dimensions starting at the sm breakpoint.

- + { - +

When using card groups with footers, their content will automatically line up.

- + { - + @@ -952,7 +952,7 @@ const Cards = () => { cards on one column, and md={{cols: 1}} splitting four cards to equal width across multiple rows, from the medium breakpoint up.

- + @@ -1083,12 +1083,12 @@ const Cards = () => { - +

Change it to md={{ cols: 3}} and you'll see the fourth card wrap.

- + @@ -1219,7 +1219,7 @@ const Cards = () => { - + diff --git a/src/views/components/base/carousels/Carousels.js b/src/views/components/base/carousels/Carousels.js index 62c49fe47..0e277a029 100644 --- a/src/views/components/base/carousels/Carousels.js +++ b/src/views/components/base/carousels/Carousels.js @@ -9,7 +9,7 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const slides = [ 'data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22800%22%20height%3D%22400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20400%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_1607923e7e2%20text%20%7B%20fill%3A%23555%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A40pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_1607923e7e2%22%3E%3Crect%20width%3D%22800%22%20height%3D%22400%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22285.9296875%22%20y%3D%22217.75625%22%3EFirst%20slide%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E', @@ -36,7 +36,7 @@ const Carousels = () => {

Here’s a carousel with slides

- + slide 1 @@ -48,7 +48,7 @@ const Carousels = () => { slide 3 - +
@@ -61,7 +61,7 @@ const Carousels = () => {

Adding in the previous and next controls by controls property.

- + slide 1 @@ -73,7 +73,7 @@ const Carousels = () => { slide 3 - + @@ -86,7 +86,7 @@ const Carousels = () => {

You can attach the indicators to the carousel, lengthwise the controls, too.

- + slide 1 @@ -98,7 +98,7 @@ const Carousels = () => { slide 3 - + @@ -116,7 +116,7 @@ const Carousels = () => { with .d-none and draw them back on medium-sized devices with{' '} .d-md-block.

- + slide 1 @@ -140,7 +140,7 @@ const Carousels = () => { - + @@ -154,7 +154,7 @@ const Carousels = () => { Add transition="crossfade" to your carousel to animate slides with a fade transition instead of a slide.

- + slide 1 @@ -166,7 +166,7 @@ const Carousels = () => { slide 3 - + @@ -182,7 +182,7 @@ const Carousels = () => { with the filter CSS property. Captions and controls have additional Sass variables that customize the color and background-color.

- + slide 1 @@ -206,7 +206,7 @@ const Carousels = () => { - + diff --git a/src/views/components/base/collapses/Collapses.js b/src/views/components/base/collapses/Collapses.js index 1da1f42ba..301b7f09d 100644 --- a/src/views/components/base/collapses/Collapses.js +++ b/src/views/components/base/collapses/Collapses.js @@ -1,6 +1,6 @@ import React, { useState } from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CCollapse, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Collapses = () => { const [visible, setVisible] = useState(false) @@ -19,7 +19,7 @@ const Collapses = () => {

You can use a link or a button component.

- + { @@ -39,7 +39,7 @@ const Collapses = () => {
- + @@ -52,7 +52,7 @@ const Collapses = () => {

A <CButton> can show and hide multiple elements.

- + setVisibleA(!visibleA)}>Toggle first element setVisibleB(!visibleB)}>Toggle second element {
- + diff --git a/src/views/components/base/jumbotrons/Jumbotrons.js b/src/views/components/base/jumbotrons/Jumbotrons.js index 11296680a..560681367 100644 --- a/src/views/components/base/jumbotrons/Jumbotrons.js +++ b/src/views/components/base/jumbotrons/Jumbotrons.js @@ -1,6 +1,6 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CContainer, CRow } from '@coreui/react' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const Jumbotrons = () => { return ( @@ -29,7 +29,7 @@ const Jumbotrons = () => { jumbotron look. Then, mix and match with additional component themes and more.

- Example button + DocsExample button
@@ -42,7 +42,7 @@ const Jumbotrons = () => { adjusted the alignment and sizing of both column's content for equal-height.

- Example button + DocsExample button
diff --git a/src/views/components/base/list-groups/ListGroups.js b/src/views/components/base/list-groups/ListGroups.js index bc236617f..282e40cf2 100644 --- a/src/views/components/base/list-groups/ListGroups.js +++ b/src/views/components/base/list-groups/ListGroups.js @@ -10,7 +10,7 @@ import { CListGroupItem, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const ListGroups = () => { return ( @@ -28,7 +28,7 @@ const ListGroups = () => { The default list group is an unordered list with items and the proper CSS classes. Build upon it with the options that follow, or with your CSS as required.

- + Cras justo odio Dapibus ac facilisis in @@ -36,7 +36,7 @@ const ListGroups = () => { Porta ac consectetur ac Vestibulum at eros - + @@ -50,7 +50,7 @@ const ListGroups = () => { Add active boolean property to a <CListGroupItem> to show the current active selection.

- + Cras justo odio Dapibus ac facilisis in @@ -58,7 +58,7 @@ const ListGroups = () => { Porta ac consectetur ac Vestibulum at eros - + @@ -72,7 +72,7 @@ const ListGroups = () => { Add disabled boolean property to a <CListGroupItem> to make it appear disabled.

- + Cras justo odio Dapibus ac facilisis in @@ -80,7 +80,7 @@ const ListGroups = () => { Porta ac consectetur ac Vestibulum at eros - + @@ -98,7 +98,7 @@ const ListGroups = () => { <div> s) don'tprovide a click or tap affordance.

- + Cras justo odio @@ -116,7 +116,7 @@ const ListGroups = () => { Vestibulum at eros - + @@ -130,7 +130,7 @@ const ListGroups = () => { Add flush boolean property to remove some borders and rounded corners to render list group items edge-to-edge in a parent container (e.g., cards).

- + Cras justo odio Dapibus ac facilisis in @@ -138,7 +138,7 @@ const ListGroups = () => { Porta ac consectetur ac Vestibulum at eros - + @@ -156,7 +156,7 @@ const ListGroups = () => { min-width. Currently{' '} horizontal list groups cannot be combined with flush list groups.

- + {['', '-sm', '-md', '-lg', '-xl', '-xxl'].map((breakpoint, index) => ( Cras justo odio @@ -164,7 +164,7 @@ const ListGroups = () => { Morbi leo risus ))} - + @@ -177,7 +177,7 @@ const ListGroups = () => {

Use contextual classes to style list items with a stateful background and color.

- + Dapibus ac facilisis in {[ @@ -195,14 +195,14 @@ const ListGroups = () => { ))} - +

Contextual classes also work with <a>s or{' '} <button>s. Note the addition of the hover styles here not present in the previous example. Also supported is the active state; apply it to indicate an active selection on a contextual list group item.

- + Dapibus ac facilisis in @@ -222,7 +222,7 @@ const ListGroups = () => { ))} - + @@ -235,7 +235,7 @@ const ListGroups = () => {

Add badges to any list group item to show unread counts, activity, and more.

- + Cras justo odio @@ -256,7 +256,7 @@ const ListGroups = () => { - + @@ -270,7 +270,7 @@ const ListGroups = () => { Add nearly any HTML within, even for linked list groups like the one below, with the help of flexbox utilities.

- +
@@ -306,7 +306,7 @@ const ListGroups = () => { Donec id elit non mi porta. - + @@ -320,7 +320,7 @@ const ListGroups = () => { Place CoreUI's checkboxes and radios within list group items and customize as needed.

- + @@ -338,7 +338,7 @@ const ListGroups = () => { - + diff --git a/src/views/components/base/navbars/Navbars.js b/src/views/components/base/navbars/Navbars.js index 5bd364720..e8b9fd087 100644 --- a/src/views/components/base/navbars/Navbars.js +++ b/src/views/components/base/navbars/Navbars.js @@ -19,7 +19,7 @@ import { CDropdown, CButton, } from '@coreui/react' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const CNavbars = () => { const [visible, setVisible] = useState(false) diff --git a/src/views/components/base/navs/Navs.js b/src/views/components/base/navs/Navs.js index d45c7a235..5beadd0fb 100644 --- a/src/views/components/base/navs/Navs.js +++ b/src/views/components/base/navs/Navs.js @@ -13,7 +13,7 @@ import { CNavItem, CNavLink, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Navs = () => { return ( @@ -33,7 +33,7 @@ const Navs = () => { overrides (for working with lists), some link padding for larger hit areas, and basic disabled styling.

- + @@ -52,7 +52,7 @@ const Navs = () => { - +

Classes are used throughout, so your markup can be super flexible. Use{' '} <ul>s like above, <ol> if the order of your @@ -60,7 +60,7 @@ const Navs = () => { the .nav uses display: flex, the nav links behave the same as nav items would, but without the extra markup.

- + Active @@ -71,7 +71,7 @@ const Navs = () => { Disabled - + @@ -92,7 +92,7 @@ const Navs = () => {

Centered with .justify-content-center:

- + @@ -111,11 +111,11 @@ const Navs = () => { - +

Right-aligned with .justify-content-end:

- + @@ -134,7 +134,7 @@ const Navs = () => { - + @@ -149,7 +149,7 @@ const Navs = () => { .flex-column utility. Need to stack them on some viewports but not others? Use the responsive versions (e.g., .flex-sm-column).

- + @@ -168,7 +168,7 @@ const Navs = () => { - + @@ -182,7 +182,7 @@ const Navs = () => { Takes the basic nav from above and adds the variant="tabs" class to generate a tabbed interface

- + @@ -201,7 +201,7 @@ const Navs = () => { - + @@ -214,7 +214,7 @@ const Navs = () => {

Take that same HTML, but use variant="pills" instead:

- + @@ -233,7 +233,7 @@ const Navs = () => { - + @@ -249,7 +249,7 @@ const Navs = () => { .nav-items, use layout="fill". Notice that all horizontal space is occupied, but not every nav item has the same width.

- + @@ -268,13 +268,13 @@ const Navs = () => { - +

For equal-width elements, use layout="justified". All horizontal space will be occupied by nav links, but unlike the .nav-fill above, every nav item will be the same width.

- + @@ -293,7 +293,7 @@ const Navs = () => { - + @@ -310,7 +310,7 @@ const Navs = () => { the example below, our nav will be stacked on the lowest breakpoint, then adapt to a horizontal layout that fills the available width starting from the small breakpoint.

- + Active @@ -321,7 +321,7 @@ const Navs = () => { Disabled - + @@ -331,7 +331,7 @@ const Navs = () => { React Navs Tabs with dropdowns - + @@ -355,7 +355,7 @@ const Navs = () => { - + @@ -365,7 +365,7 @@ const Navs = () => { React Navs Pills with dropdowns - + @@ -389,7 +389,7 @@ const Navs = () => { - + diff --git a/src/views/components/base/paginations/Paginations.js b/src/views/components/base/paginations/Paginations.js index 986382005..cf14e0ad0 100644 --- a/src/views/components/base/paginations/Paginations.js +++ b/src/views/components/base/paginations/Paginations.js @@ -8,7 +8,7 @@ import { CPaginationItem, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Paginations = () => { return ( @@ -36,7 +36,7 @@ const Paginations = () => { component is used to navigate between a set of search results, an appropriate label could be aria-label="Search results pages".

- + Previous 1 @@ -44,7 +44,7 @@ const Paginations = () => { 3 Next - + @@ -58,7 +58,7 @@ const Paginations = () => { Looking to use an icon or symbol in place of text for some pagination links? Be sure to provide proper screen reader support with aria attributes.

- + @@ -70,7 +70,7 @@ const Paginations = () => { - + @@ -92,7 +92,7 @@ const Paginations = () => { such, we always add tabindex="-1" on disabled links and use custom JavaScript to fully disable their functionality.

- + @@ -104,7 +104,7 @@ const Paginations = () => { - + @@ -118,7 +118,7 @@ const Paginations = () => { Fancy larger or smaller pagination? Add size="lg" or{' '} size="sm" for additional sizes.

- + Previous 1 @@ -126,8 +126,8 @@ const Paginations = () => { 3 Next - - + + Previous 1 @@ -135,7 +135,7 @@ const Paginations = () => { 3 Next - + @@ -149,7 +149,7 @@ const Paginations = () => { Change the alignment of pagination components with{' '} flexbox utilities.

- + Previous 1 @@ -157,8 +157,8 @@ const Paginations = () => { 3 Next - - + + Previous 1 @@ -166,7 +166,7 @@ const Paginations = () => { 3 Next - + diff --git a/src/views/components/base/popovers/Popovers.js b/src/views/components/base/popovers/Popovers.js index 002b6a9a8..277f5467f 100644 --- a/src/views/components/base/popovers/Popovers.js +++ b/src/views/components/base/popovers/Popovers.js @@ -1,6 +1,6 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CPopover, CRow, CCol } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Popovers = () => { return ( @@ -14,7 +14,7 @@ const Popovers = () => { React Popover Basic example - + { Click to toggle popover - + @@ -38,7 +38,7 @@ const Popovers = () => { Four options are available: top, right, bottom, and left aligned. Directions are mirrored when using CoreUI for React in RTL.

- + { > Popover on left - + diff --git a/src/views/components/base/progress/Progress.js b/src/views/components/base/progress/Progress.js index c24bbe516..07cd7d206 100644 --- a/src/views/components/base/progress/Progress.js +++ b/src/views/components/base/progress/Progress.js @@ -1,6 +1,6 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CProgress, CProgressBar, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Progress = () => { return ( @@ -22,7 +22,7 @@ const Progress = () => { , ensuring you can stack progress bars, animate them, and place text labels over them.

- + @@ -38,7 +38,7 @@ const Progress = () => { - + @@ -52,11 +52,11 @@ const Progress = () => { Add labels to your progress bars by placing text within the{' '} <CProgressBar>.

- + 25% - + @@ -71,14 +71,14 @@ const Progress = () => { you change that value the inner <CProgressBar> will automatically resize accordingly.

- + - + @@ -91,7 +91,7 @@ const Progress = () => {

Use color prop to change the appearance of individual progress bars.

- + @@ -104,7 +104,7 @@ const Progress = () => { - + @@ -117,13 +117,13 @@ const Progress = () => {

Include multiple progress bars in a progress component if you need.

- + - + @@ -137,7 +137,7 @@ const Progress = () => { Add variant="striped" to any <CProgressBar> to apply a stripe via CSS gradient over the progress bar's background color.

- + @@ -150,7 +150,7 @@ const Progress = () => { - + @@ -165,7 +165,7 @@ const Progress = () => { <CProgressBar> to animate the stripes right to left via CSS3 animations.

- + @@ -178,7 +178,7 @@ const Progress = () => { - + diff --git a/src/views/components/base/spinners/Spinners.js b/src/views/components/base/spinners/Spinners.js index 31eece656..8833aa7ec 100644 --- a/src/views/components/base/spinners/Spinners.js +++ b/src/views/components/base/spinners/Spinners.js @@ -1,6 +1,6 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CSpinner, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Accordion = () => { return ( @@ -17,14 +17,14 @@ const Accordion = () => {

Use the border spinners for a lightweight loading indicator.

- + - +

The border spinner uses currentColor for its border-color. You can use any of our text color utilities on the standard spinner.

- + @@ -33,7 +33,7 @@ const Accordion = () => { - + @@ -47,14 +47,14 @@ const Accordion = () => { If you don'tfancy a border spinner, switch to the grow spinner. While it doesn't technically spin, it does repeatedly grow!

- + - +

Once again, this spinner is built with currentColor, so you can easily change its appearance. Here it is in blue, along with the supported variants.

- + @@ -63,7 +63,7 @@ const Accordion = () => { - + @@ -77,10 +77,10 @@ const Accordion = () => { Add size="sm" property to make a smaller spinner that can quickly be used within other components.

- + - + @@ -95,7 +95,7 @@ const Accordion = () => { place. You may also swap the text out of the spinner element and utilize button text as needed.

- + @@ -103,8 +103,8 @@ const Accordion = () => { - + + @@ -112,7 +112,7 @@ const Accordion = () => { + diff --git a/src/views/components/base/tables/Tables.js b/src/views/components/base/tables/Tables.js index 8f1d9c4df..57997517b 100644 --- a/src/views/components/base/tables/Tables.js +++ b/src/views/components/base/tables/Tables.js @@ -13,7 +13,7 @@ import { CTableHeaderCell, CTableRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Tables = () => { return ( @@ -31,7 +31,7 @@ const Tables = () => { Using the most basic table CoreUI, here's how <CTable>-based tables look in CoreUI.

- + @@ -61,7 +61,7 @@ const Tables = () => { - + @@ -74,7 +74,7 @@ const Tables = () => {

Use contextual classes to color tables, table rows or individual cells.

- + @@ -131,7 +131,7 @@ const Tables = () => { - + @@ -145,7 +145,7 @@ const Tables = () => { Use striped property to add zebra-striping to any table row within the{' '} <CTableBody>.

- + @@ -175,11 +175,11 @@ const Tables = () => { - +

These classes can also be added to table variants:

- + @@ -209,8 +209,8 @@ const Tables = () => { - - + + @@ -240,7 +240,7 @@ const Tables = () => { - + @@ -254,7 +254,7 @@ const Tables = () => { Use hover property to enable a hover state on table rows within a{' '} <CTableBody>.

- + @@ -284,8 +284,8 @@ const Tables = () => { - - + + @@ -315,8 +315,8 @@ const Tables = () => { - - + + @@ -346,7 +346,7 @@ const Tables = () => { - + @@ -356,7 +356,7 @@ const Tables = () => { React Table Active tables - + @@ -388,8 +388,8 @@ const Tables = () => { - - + + @@ -421,7 +421,7 @@ const Tables = () => { - + @@ -434,7 +434,7 @@ const Tables = () => {

Add bordered property for borders on all sides of the table and cells.

- + @@ -464,14 +464,14 @@ const Tables = () => { - +

Border color utilities {' '} can be added to change colors:

- + @@ -501,7 +501,7 @@ const Tables = () => { - + @@ -514,7 +514,7 @@ const Tables = () => {

Add borderless property for a table without borders.

- + @@ -544,8 +544,8 @@ const Tables = () => { - - + + @@ -575,7 +575,7 @@ const Tables = () => { - + @@ -589,7 +589,7 @@ const Tables = () => { Add small property to make any <CTable> more compact by cutting all cell padding in half.

- + @@ -619,7 +619,7 @@ const Tables = () => { - + @@ -635,7 +635,7 @@ const Tables = () => { <CTable> and are aligned to the the top by default. Use the align property to re-align where needed.

- + @@ -702,7 +702,7 @@ const Tables = () => { - + @@ -715,7 +715,7 @@ const Tables = () => {

Border styles, active styles, and table variants are not inherited by nested tables.

- + @@ -769,7 +769,7 @@ const Tables = () => { - + @@ -784,7 +784,7 @@ const Tables = () => { color="light" or color="dark" to make{' '} <CTableHead>s appear light or dark gray.

- + @@ -815,8 +815,8 @@ const Tables = () => { - - + + @@ -846,7 +846,7 @@ const Tables = () => { - + @@ -856,7 +856,7 @@ const Tables = () => { React Table Table foot - + @@ -894,7 +894,7 @@ const Tables = () => { - + @@ -909,7 +909,7 @@ const Tables = () => { users with screen readers to find a table and understand what it's about and decide if they want to read it.

- + List of users @@ -941,12 +941,12 @@ const Tables = () => { - +

You can also put the <CTableCaption> on the top of the table with{' '} caption="top".

- + List of users @@ -978,7 +978,7 @@ const Tables = () => { - + diff --git a/src/views/components/base/tooltips/Tooltips.js b/src/views/components/base/tooltips/Tooltips.js index 9125540b8..de6020bb8 100644 --- a/src/views/components/base/tooltips/Tooltips.js +++ b/src/views/components/base/tooltips/Tooltips.js @@ -1,6 +1,6 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CLink, CTooltip, CRow, CCol } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Tooltips = () => { return ( @@ -17,7 +17,7 @@ const Tooltips = () => {

Hover over the links below to see tooltips:

- +

Tight pants next level keffiyeh @@ -41,12 +41,12 @@ const Tooltips = () => { freegan cred raw denim single-origin coffee viral.

-
+

Hover over the buttons below to see the four tooltips directions: top, right, bottom, and left. Directions are mirrored when using CoreUI in RTL.

- + { > Tooltip on left - + diff --git a/src/views/components/buttons/button-groups/ButtonGroups.js b/src/views/components/buttons/button-groups/ButtonGroups.js index a529a3bef..fb3a0fe37 100644 --- a/src/views/components/buttons/button-groups/ButtonGroups.js +++ b/src/views/components/buttons/button-groups/ButtonGroups.js @@ -18,7 +18,7 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const ButtonGroups = () => { return ( @@ -36,18 +36,18 @@ const ButtonGroups = () => { Wrap a series of <CButton> components in{' '} <CButtonGroup>.{' '}

- + Left Middle Right - +

These classes can also be added to groups of links, as an alternative to the{' '} <CNav> components.

- + Active link @@ -59,7 +59,7 @@ const ButtonGroups = () => { Link - + @@ -69,13 +69,13 @@ const ButtonGroups = () => { React Button Group Mixed styles - + Left Middle Right - + @@ -85,7 +85,7 @@ const ButtonGroups = () => { React Button Group Outlined styles - + Left @@ -97,7 +97,7 @@ const ButtonGroups = () => { Right - + @@ -111,7 +111,7 @@ const ButtonGroups = () => { Combine button-like checkbox and radio toggle buttons into a seamless looking button group.

- + { label="Checkbox 3" /> - - + + { label="Radio 3" /> - + @@ -180,7 +180,7 @@ const ButtonGroups = () => { Join sets of button groups into button toolbars for more complicated components. Use utility classes as needed to space out groups, buttons, and more.

- + 1 @@ -197,12 +197,12 @@ const ButtonGroups = () => { 8 - +

Feel free to combine input groups with button groups in your toolbars. Similar to the example above, you’ll likely need some utilities through to space items correctly.

- + @@ -255,7 +255,7 @@ const ButtonGroups = () => { /> - + @@ -270,7 +270,7 @@ const ButtonGroups = () => { size property to all <CButtonGroup>'s, including each one when nesting multiple groups.

- + Left @@ -306,7 +306,7 @@ const ButtonGroups = () => { Right - + @@ -321,7 +321,7 @@ const ButtonGroups = () => { <CButtonGroup> when you need dropdown menus combined with a series of buttons.

- + 1 2 @@ -336,7 +336,7 @@ const ButtonGroups = () => { - + @@ -350,7 +350,7 @@ const ButtonGroups = () => { Create a set of buttons that appear vertically stacked rather than horizontally.{' '} Split button dropdowns are not supported here.

- + Button Button @@ -360,8 +360,8 @@ const ButtonGroups = () => { Button Button - - + + Button Button @@ -408,8 +408,8 @@ const ButtonGroups = () => { - - + + { label="Radio 3" /> - + diff --git a/src/views/components/buttons/buttons/Buttons.js b/src/views/components/buttons/buttons/Buttons.js index 3cdfdf728..4b73ca5d7 100644 --- a/src/views/components/buttons/buttons/Buttons.js +++ b/src/views/components/buttons/buttons/Buttons.js @@ -1,7 +1,7 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react' import CIcon from '@coreui/icons-react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Buttons = () => { return ( @@ -21,7 +21,7 @@ const Buttons = () => { it. CoreUI buttons are used to initialize operations, both in the background or foreground of an experience.

- + {['normal', 'active', 'disabled'].map((state, index) => ( @@ -51,7 +51,7 @@ const Buttons = () => { ))} - + @@ -64,7 +64,7 @@ const Buttons = () => {

You can combine button with our CoreUI Icons.

- + {['normal', 'active', 'disabled'].map((state, index) => ( @@ -98,7 +98,7 @@ const Buttons = () => { ))} - + @@ -119,7 +119,7 @@ const Buttons = () => { should be given a role="button" to adequately communicate their meaning to assistive technologies such as screen readers.

- + Link @@ -129,7 +129,7 @@ const Buttons = () => { - + @@ -143,7 +143,7 @@ const Buttons = () => { If you need a button, but without the strong background colors. Set{' '} variant="outline" prop to remove all background colors.

- + {['normal', 'active', 'disabled'].map((state, index) => ( @@ -173,7 +173,7 @@ const Buttons = () => { ))} - + @@ -187,7 +187,7 @@ const Buttons = () => { If you need a ghost variant of button, set variant="ghost" prop to remove all background colors.

- + {['normal', 'active', 'disabled'].map((state, index) => ( @@ -217,7 +217,7 @@ const Buttons = () => { ))} - + @@ -231,22 +231,22 @@ const Buttons = () => { Larger or smaller buttons? Add size="lg" or{' '} size="sm" for additional sizes.

- + Large button Large button - - + + Small button Small button - + @@ -256,7 +256,7 @@ const Buttons = () => { React Button Pill - + {[ 'primary', 'secondary', @@ -271,7 +271,7 @@ const Buttons = () => { {color.charAt(0).toUpperCase() + color.slice(1)} ))} - + @@ -281,7 +281,7 @@ const Buttons = () => { React Button Square - + {[ 'primary', 'secondary', @@ -296,7 +296,7 @@ const Buttons = () => { {color.charAt(0).toUpperCase() + color.slice(1)} ))} - + @@ -312,14 +312,14 @@ const Buttons = () => { pointer-events: none applied to, disabling hover and active states from triggering.

- + Primary button Button - +

Disabled buttons using the <a> component act a little different:

@@ -330,14 +330,14 @@ const Buttons = () => { aria-disabled="true" attribute to show the state of the component to assistive technologies.

- + Primary link Link - + @@ -350,49 +350,49 @@ const Buttons = () => {

Create buttons that span the full width of a parent—by using utilities.

- +
Button Button
-
+

Here we create a responsive variation, starting with vertically stacked buttons until the md breakpoint, where .d-md-block replaces the{' '} .d-grid class, thus nullifying the gap-2 utility. Resize your browser to see them change.

- +
Button Button
-
+

You can adjust the width of your block buttons with grid column width classes. For example, for a half-width "block button", use .col-6. Center it horizontally with .mx-auto, too.

- +
Button Button
-
+

Additional utilities can be used to adjust the alignment of buttons when horizontal. Here we've taken our previous responsive example and added some flex utilities and a margin utility on the button to right align the buttons when they're no longer stacked.

- +
Button Button
-
+ diff --git a/src/views/components/buttons/dropdowns/Dropdowns.js b/src/views/components/buttons/dropdowns/Dropdowns.js index 8a1c18b0d..bc688956c 100644 --- a/src/views/components/buttons/dropdowns/Dropdowns.js +++ b/src/views/components/buttons/dropdowns/Dropdowns.js @@ -13,7 +13,7 @@ import { CDropdownToggle, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Dropdowns = () => { return ( @@ -31,7 +31,7 @@ const Dropdowns = () => { Here's how you can put them to work with either <button>{' '} elements:

- + Dropdown button @@ -40,11 +40,11 @@ const Dropdowns = () => { Something else here - +

The best part is you can do this with any button variant, too:

- + <> {['primary', 'secondary', 'success', 'info', 'warning', 'danger'].map( (color, index) => ( @@ -61,7 +61,7 @@ const Dropdowns = () => { ), )} - + @@ -82,7 +82,7 @@ const Dropdowns = () => { normal button dropdowns. Those additional changes hold the caret centered in the split button and implement a more properly sized hit area next to the main button.

- + <> {['primary', 'secondary', 'success', 'info', 'warning', 'danger'].map( (color, index) => ( @@ -100,7 +100,7 @@ const Dropdowns = () => { ), )} - + @@ -114,7 +114,7 @@ const Dropdowns = () => { Button dropdowns work with buttons of all sizes, including default and split dropdown buttons.

- + Large button @@ -140,8 +140,8 @@ const Dropdowns = () => { Separated link - - + + Small button @@ -167,7 +167,7 @@ const Dropdowns = () => { Separated link - + @@ -181,7 +181,7 @@ const Dropdowns = () => { Opt into darker dropdowns to match a dark navbar or custom style by set{' '} dark property. No changes are required to the dropdown items.

- + Dropdown button @@ -192,9 +192,9 @@ const Dropdowns = () => { Separated link - +

And putting it to use in a navbar:

- +
-
+ @@ -242,7 +242,7 @@ const Dropdowns = () => { direction="dropup" to the <CDropdown>{' '} component.

- + Dropdown @@ -264,7 +264,7 @@ const Dropdowns = () => { Separated link - + @@ -279,7 +279,7 @@ const Dropdowns = () => { direction="dropend" to the <CDropdown>{' '} component.

- + Dropdown @@ -301,7 +301,7 @@ const Dropdowns = () => { Separated link - + @@ -316,7 +316,7 @@ const Dropdowns = () => { direction="dropstart" to the <CDropdown>{' '} component.

- + @@ -330,7 +330,7 @@ const Dropdowns = () => { Small split button - + diff --git a/src/views/components/charts/Charts.js b/src/views/components/charts/Charts.js index 13bb5cdde..76b082fdd 100644 --- a/src/views/components/charts/Charts.js +++ b/src/views/components/charts/Charts.js @@ -8,7 +8,7 @@ import { CChartPolarArea, CChartRadar, } from '@coreui/react-chartjs' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const Charts = () => { const random = () => Math.round(Math.random() * 100) diff --git a/src/views/components/forms/checks-radios/ChecksRadios.js b/src/views/components/forms/checks-radios/ChecksRadios.js index 805ecdba2..3430d1440 100644 --- a/src/views/components/forms/checks-radios/ChecksRadios.js +++ b/src/views/components/forms/checks-radios/ChecksRadios.js @@ -1,6 +1,6 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormCheck, CFormSwitch, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const ChecksRadios = () => { return ( @@ -14,10 +14,10 @@ const ChecksRadios = () => { React Checkbox - + - + @@ -32,10 +32,10 @@ const ChecksRadios = () => { are automatically styled to match with a lighter color to help indicate the input's state.

- + - + @@ -50,7 +50,7 @@ const ChecksRadios = () => { are automatically styled to match with a lighter color to help indicate the input's state.

- + { label="Checked radio" defaultChecked /> - + @@ -74,7 +74,7 @@ const ChecksRadios = () => { React Radio Disabled - + { defaultChecked disabled /> - + @@ -105,7 +105,7 @@ const ChecksRadios = () => { properly to render a toggle switch. Switches also support the disabled{' '} attribute.

- + { defaultChecked disabled /> - + @@ -133,7 +133,7 @@ const ChecksRadios = () => { React Switches Sizes - + { label="Extra large switch checkbox input" id="formSwitchCheckDefaultXL" /> - + @@ -159,11 +159,11 @@ const ChecksRadios = () => { By default, any number of checkboxes and radios that are immediate sibling will be vertically stacked and appropriately spaced.

- + - - + + { label="Disabled radio" disabled /> - + @@ -201,7 +201,7 @@ const ChecksRadios = () => { Group checkboxes or radios on the same horizontal row by adding inline{' '} boolean property to any <CFormCheck>.

- + { label="3 (disabled)" disabled /> - - + + { label="3 (disabled)" disabled /> - + @@ -252,7 +252,7 @@ const ChecksRadios = () => { Remember to still provide some form of accessible name for assistive technologies (for instance, using aria-label).

- +
@@ -265,7 +265,7 @@ const ChecksRadios = () => { aria-label="..." />
- +
@@ -280,10 +280,10 @@ const ChecksRadios = () => { property on the <CFormCheck> component. These toggle buttons can further be grouped in a button group if needed.

- + - - + + { label="Checked" defaultChecked /> - - + + - +

Radio toggle buttons

- + { autoComplete="off" label="Radio" /> - +

Outlined styles

Different variants of button, such at the various outlined styles, are supported.

- +
{ label="Radio" />
-
+
diff --git a/src/views/components/forms/floating-labels/FloatingLabels.js b/src/views/components/forms/floating-labels/FloatingLabels.js index c25aebf01..1acafb448 100644 --- a/src/views/components/forms/floating-labels/FloatingLabels.js +++ b/src/views/components/forms/floating-labels/FloatingLabels.js @@ -11,7 +11,7 @@ import { CFormTextarea, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const FloatingLabels = () => { return ( @@ -33,7 +33,7 @@ const FloatingLabels = () => { pseudo-element. Also note that the <CFormInput> must come first so we can utilize a sibling selector (e.g., ~).

- + Email address @@ -42,12 +42,12 @@ const FloatingLabels = () => { Password - +

When there's a value already defined, <CFormLabel> s will automatically adjust to their floated position.

- + { /> Input with value - + @@ -71,7 +71,7 @@ const FloatingLabels = () => { By default, <CFormTextarea>s will be the same height as{' '} <CFormInput>s.

- + { > Comments - +

To set a custom height on your <CFormTextarea;>, do not use the{' '} rows attribute. Instead, set an explicit height (either inline or via custom CSS).

- + { > Comments - + @@ -113,7 +113,7 @@ const FloatingLabels = () => { Selects with size and multiple are not supported.

- + @@ -123,7 +123,7 @@ const FloatingLabels = () => { Works with selects - + @@ -137,7 +137,7 @@ const FloatingLabels = () => { When working with the CoreUI for Bootstrap grid system, be sure to place form elements within column classes.

- + @@ -162,7 +162,7 @@ const FloatingLabels = () => { - + diff --git a/src/views/components/forms/form-control/FormControl.js b/src/views/components/forms/form-control/FormControl.js index be0189ad0..b064bff89 100644 --- a/src/views/components/forms/form-control/FormControl.js +++ b/src/views/components/forms/form-control/FormControl.js @@ -11,7 +11,7 @@ import { CFormTextarea, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const FormControl = () => { return ( @@ -25,7 +25,7 @@ const FormControl = () => { React Form Control - +
Email address @@ -40,7 +40,7 @@ const FormControl = () => {
-
+
@@ -54,7 +54,7 @@ const FormControl = () => { Set heights using size property like size="lg" and{' '} size="sm".

- + { placeholder="Small input" aria-label="sm input example" /> - + @@ -88,7 +88,7 @@ const FormControl = () => { Add the disabled boolean attribute on an input to give it a grayed out appearance and remove pointer events.

- + { readOnly />
-
+ @@ -119,14 +119,14 @@ const FormControl = () => { the input's value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor.

- + - + @@ -141,7 +141,7 @@ const FormControl = () => { as plain text, use the plainText boolean property to remove the default form field styling and preserve the correct margin and padding.

- + Email @@ -164,8 +164,8 @@ const FormControl = () => {
- - + +
@@ -191,7 +191,7 @@ const FormControl = () => {
-
+ @@ -201,7 +201,7 @@ const FormControl = () => { React Form Control File input - +
Default file input example @@ -222,7 +222,7 @@ const FormControl = () => { Large file input example
-
+
@@ -232,7 +232,7 @@ const FormControl = () => { React Form Control Color - + Color picker { defaultValue="#563d7c" title="Choose your color" /> - + diff --git a/src/views/components/forms/input-group/InputGroup.js b/src/views/components/forms/input-group/InputGroup.js index c4e85a7a9..427714ac6 100644 --- a/src/views/components/forms/input-group/InputGroup.js +++ b/src/views/components/forms/input-group/InputGroup.js @@ -19,7 +19,7 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Select = () => { return ( @@ -38,7 +38,7 @@ const Select = () => { sides of an input. Remember to place <CFormLabel>s outside the input group.

- + @ { With textarea - + @@ -89,7 +89,7 @@ const Select = () => { custom form field validation within an input group. You may disable this with{' '} .flex-nowrap.

- + @ { aria-describedby="addon-wrapping" /> - + @@ -116,7 +116,7 @@ const Select = () => {

Sizing on the individual input group elements isn'tsupported.

- + Small { aria-describedby="inputGroup-sizing-lg" /> - + @@ -151,7 +151,7 @@ const Select = () => {

Place any checkbox or radio option within an input group's addon instead of text.

- + { - + @@ -187,13 +187,13 @@ const Select = () => { styles are only available for input groups with a single{' '} <CFormInput>.

- + First and last name - + @@ -207,7 +207,7 @@ const Select = () => { Multiple add-ons are supported and can be mixed with checkbox and radio input versions..

- + $ 0.00 @@ -218,7 +218,7 @@ const Select = () => { $ 0.00 - + @@ -232,7 +232,7 @@ const Select = () => { Multiple add-ons are supported and can be mixed with checkbox and radio input versions..

- + Button @@ -274,7 +274,7 @@ const Select = () => { Button - + @@ -284,7 +284,7 @@ const Select = () => { React Input group Buttons with dropdowns - + @@ -342,7 +342,7 @@ const Select = () => { - + @@ -352,7 +352,7 @@ const Select = () => { React Input group Segmented buttons - + @@ -385,7 +385,7 @@ const Select = () => { - + @@ -395,7 +395,7 @@ const Select = () => { React Input group Custom select - + Options @@ -440,7 +440,7 @@ const Select = () => { Button - + @@ -450,7 +450,7 @@ const Select = () => { React Input group Custom file input - + Upload @@ -495,7 +495,7 @@ const Select = () => { Button - + diff --git a/src/views/components/forms/layout/Layout.js b/src/views/components/forms/layout/Layout.js index 86bcba5af..27bae1961 100644 --- a/src/views/components/forms/layout/Layout.js +++ b/src/views/components/forms/layout/Layout.js @@ -14,7 +14,7 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { Example } from 'src/reusable' +import { DocsExample } from 'src/components' const Layout = () => { return ( @@ -29,7 +29,7 @@ const Layout = () => { More complex forms can be built using our grid classes. Use these for form layouts that require multiple columns, varied widths, and additional alignment options.

- + @@ -38,7 +38,7 @@ const Layout = () => { - + @@ -52,7 +52,7 @@ const Layout = () => { By adding
gutter modifier classes , you can have control over the gutter width in as well the inline as block direction.

- + @@ -61,11 +61,11 @@ const Layout = () => { - +

More complex layouts can also be created with the grid system.

- + Email @@ -105,7 +105,7 @@ const Layout = () => { Sign in - + @@ -127,7 +127,7 @@ const Layout = () => { alignment you need. For example, we've removed the padding-top on our stacked radio inputs label to better align the text baseline.

- + @@ -180,7 +180,7 @@ const Layout = () => { Sign in - + @@ -195,7 +195,7 @@ const Layout = () => { your <CFormLabel>s or <legend>s to correctly follow the size of .form-control-lg and .form-control-sm.

- + { /> - + @@ -254,7 +254,7 @@ const Layout = () => { split the rest, with specific column classes like{' '} <CCol sm="7">.

- + @@ -266,7 +266,7 @@ const Layout = () => { - + @@ -282,7 +282,7 @@ const Layout = () => { columns only take up as much space as needed. Put another way, the column sizes itself based on the contents.

- + @@ -317,11 +317,11 @@ const Layout = () => { Submit - +

You can then remix that once again with size-specific column classes.

- + @@ -356,7 +356,7 @@ const Layout = () => { Submit - + @@ -374,7 +374,7 @@ const Layout = () => { .align-items-center aligns the form elements to the middle, making the{' '} <CFormCheck> align properly.

- + @@ -403,7 +403,7 @@ const Layout = () => { Submit - + diff --git a/src/views/components/forms/range/Range.js b/src/views/components/forms/range/Range.js index 163525c69..0cdb5b693 100644 --- a/src/views/components/forms/range/Range.js +++ b/src/views/components/forms/range/Range.js @@ -1,6 +1,6 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormLabel, CFormRange, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Range = () => { return ( @@ -18,10 +18,10 @@ const Range = () => { Create custom <input type="range"> controls with{' '} <CFormRange>.

- + Example range - + @@ -35,10 +35,10 @@ const Range = () => { Add the disabled boolean attribute on an input to give it a grayed out appearance and remove pointer events.

- + Disabled range - + @@ -53,10 +53,10 @@ const Range = () => { 0 and 100, respectively. You may specify new values for those using the min and max attributes.

- + Example range - + @@ -71,10 +71,10 @@ const Range = () => { specify a step value. In the example below, we double the number of steps by using step="0.5".

- + Example range - + diff --git a/src/views/components/forms/select/Select.js b/src/views/components/forms/select/Select.js index 8b91c5f9b..dc03a776c 100644 --- a/src/views/components/forms/select/Select.js +++ b/src/views/components/forms/select/Select.js @@ -1,6 +1,6 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormSelect, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Select = () => { return ( @@ -14,14 +14,14 @@ const Select = () => { React Select Default - + - + @@ -35,7 +35,7 @@ const Select = () => { You may also choose from small and large custom selects to match our similarly sized text inputs.

- + @@ -48,29 +48,29 @@ const Select = () => { - +

The multiple attribute is also supported:

- + - +

As is the htmlSize property:

- + - + @@ -84,14 +84,14 @@ const Select = () => { Add the disabled boolean attribute on a select to give it a grayed out appearance and remove pointer events.

- + - + @@ -101,9 +101,9 @@ const Select = () => { React Select - + - + */} diff --git a/src/views/components/forms/validation/Validation.js b/src/views/components/forms/validation/Validation.js index 28538d850..160fa953c 100644 --- a/src/views/components/forms/validation/Validation.js +++ b/src/views/components/forms/validation/Validation.js @@ -16,7 +16,7 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const CustomStyles = () => { const [validated, setValidated] = useState(false) @@ -274,7 +274,7 @@ const Validation = () => { Custom feedback styles apply custom colors, borders, focus styles, and background icons to better communicate feedback.{' '}

- {CustomStyles()} + {CustomStyles()} @@ -294,7 +294,7 @@ const Validation = () => { While these feedback styles cannot be styled with CSS, you can still customize the feedback text through JavaScript.

- {BrowserDefaults()} + {BrowserDefaults()} @@ -315,7 +315,7 @@ const Validation = () => { attribute allows more than one id to be referenced, in case the field already points to additional form text).

- + Email @@ -388,7 +388,7 @@ const Validation = () => { - + @@ -412,7 +412,7 @@ const Validation = () => { <CFormCheck>s - +
@@ -478,7 +478,7 @@ const Validation = () => {
-
+ @@ -495,7 +495,7 @@ const Validation = () => { our column classes have this already, but your project may require an alternative setup.

- {Tooltips()} + {Tooltips()} diff --git a/src/views/components/icons/brands/Brands.js b/src/views/components/icons/brands/Brands.js index d9b308f46..29bcc580e 100644 --- a/src/views/components/icons/brands/Brands.js +++ b/src/views/components/icons/brands/Brands.js @@ -2,7 +2,7 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react' import CIcon from '@coreui/icons-react' import { brandSet } from '@coreui/icons' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const toKebabCase = (str) => { return str.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, '$1-$2').toLowerCase() diff --git a/src/views/components/icons/coreui-icons/CoreUIIcons.js b/src/views/components/icons/coreui-icons/CoreUIIcons.js index 2145cec2c..cb66a3ab5 100644 --- a/src/views/components/icons/coreui-icons/CoreUIIcons.js +++ b/src/views/components/icons/coreui-icons/CoreUIIcons.js @@ -2,7 +2,7 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react' import { freeSet } from '@coreui/icons' import { getIconsView } from '../brands/Brands.js' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const CoreUIIcons = () => { return ( diff --git a/src/views/components/icons/flags/Flags.js b/src/views/components/icons/flags/Flags.js index 146930b49..d86495a6a 100644 --- a/src/views/components/icons/flags/Flags.js +++ b/src/views/components/icons/flags/Flags.js @@ -2,7 +2,7 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CRow } from '@coreui/react' import { getIconsView } from '../brands/Brands.js' import { flagSet } from '@coreui/icons' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const CoreUIIcons = () => { return ( diff --git a/src/views/components/notifications/alerts/Alerts.js b/src/views/components/notifications/alerts/Alerts.js index b4b60fa5d..234fb8fd8 100644 --- a/src/views/components/notifications/alerts/Alerts.js +++ b/src/views/components/notifications/alerts/Alerts.js @@ -9,7 +9,7 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Alerts = () => { return ( @@ -32,7 +32,7 @@ const Alerts = () => { .

- + A simple primary alert—check it out! A simple secondary alert—check it out! A simple success alert—check it out! @@ -41,7 +41,7 @@ const Alerts = () => { A simple info alert—check it out! A simple light alert—check it out! A simple dark alert—check it out! - + @@ -55,7 +55,7 @@ const Alerts = () => { Use the <CAlertLink> component to immediately give matching colored links inside any alert.

- + A simple primary alert with an example link. Give it a click if you like. @@ -88,7 +88,7 @@ const Alerts = () => { A simple dark alert with an example link. Give it a click if you like. - + @@ -102,7 +102,7 @@ const Alerts = () => { Alert can also incorporate supplementary components & elements like heading, paragraph, and divider.

- + Well done!

@@ -116,7 +116,7 @@ const Alerts = () => { tidy.

-
+ @@ -129,7 +129,7 @@ const Alerts = () => {

Alerts can also be easily dismissed. Just add the dismissible prop.

- + { > Go right ahead and click that dimiss over there on the right. - + diff --git a/src/views/components/notifications/badges/Badges.js b/src/views/components/notifications/badges/Badges.js index 1297c910f..f8d4c0d82 100644 --- a/src/views/components/notifications/badges/Badges.js +++ b/src/views/components/notifications/badges/Badges.js @@ -1,6 +1,6 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CBadge, CRow } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const Badges = () => { return ( @@ -18,7 +18,7 @@ const Badges = () => { Bootstrap badge scale to suit the size of the parent element by using relative font sizing and em units.

- +

Example heading New

@@ -37,15 +37,15 @@ const Badges = () => {
Example heading New
-
+

Badges can be used as part of links or buttons to provide a counter.

- + Notifications 4 - +

Remark that depending on how you use them, badges may be complicated for users of screen readers and related assistive technologies. @@ -54,12 +54,12 @@ const Badges = () => { Unless the context is clear, consider including additional context with a visually hidden piece of additional text.

- + Profile 9 unread messages - + @@ -73,7 +73,7 @@ const Badges = () => { Add any of the below-mentioned color props to modify the presentation of a badge.

- + primary success danger @@ -81,7 +81,7 @@ const Badges = () => { info light dark - + @@ -92,7 +92,7 @@ const Badges = () => {

Apply the shape="rounded-pill" prop to make badges rounded.

- + primary @@ -114,7 +114,7 @@ const Badges = () => { dark - +
diff --git a/src/views/components/notifications/modals/Modals.js b/src/views/components/notifications/modals/Modals.js index 7631f0fa8..e7b3a939c 100644 --- a/src/views/components/notifications/modals/Modals.js +++ b/src/views/components/notifications/modals/Modals.js @@ -15,7 +15,7 @@ import { CRow, CTooltip, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const LiveDemo = () => { const [visible, setVisible] = useState(false) @@ -476,7 +476,7 @@ const Modals = () => { include modal headers with dismiss actions whenever possible, or provide another explicit dismiss action.

- + { Save changes - + @@ -507,7 +507,7 @@ const Modals = () => { Toggle a working modal demo by clicking the button below. It will slide down and fade in from the top of the page.

- {LiveDemo()} + {LiveDemo()} @@ -522,7 +522,7 @@ const Modals = () => { modal will behave as though the backdrop is static, meaning it will not close when clicking outside it. Click the button below to try it.

- {StaticBackdrop()} + {StaticBackdrop()} @@ -537,16 +537,16 @@ const Modals = () => { modal will behave as though the backdrop is static, meaning it will not close when clicking outside it. Click the button below to try it.

- + {ScrollingLongContent()} - +

You can also create a scrollable modal that allows scroll the modal body by adding{' '} scrollable prop.

- + {ScrollingLongContent2()} - + @@ -560,8 +560,12 @@ const Modals = () => { Add alignment="center" to <CModal> to vertically center the modal.

- {VerticallyCentered()} - {VerticallyCentered2()} + + {VerticallyCentered()} + + + {VerticallyCentered2()} + @@ -576,7 +580,9 @@ const Modals = () => { modals as needed. When modals are closed, any tooltips and popovers within are also automatically dismissed.

- {TooltipsPopovers()} + + {TooltipsPopovers()} + @@ -636,7 +642,7 @@ const Modals = () => { - {OptionalSizes()} + {OptionalSizes()} @@ -706,7 +712,7 @@ const Modals = () => { - {FullscreenModal()} + {FullscreenModal()} diff --git a/src/views/components/notifications/toasts/Toasts.js b/src/views/components/notifications/toasts/Toasts.js index 1cdcf9069..25cfebf2d 100644 --- a/src/views/components/notifications/toasts/Toasts.js +++ b/src/views/components/notifications/toasts/Toasts.js @@ -12,7 +12,7 @@ import { CToastHeader, CToaster, } from '@coreui/react' -import { DocsCallout, Example } from 'src/reusable' +import { DocsCallout, DocsExample } from 'src/components' const ExampleToast = () => { const [toast, addToast] = useState(0) @@ -62,7 +62,7 @@ const Toasts = () => { we require a single element to contain your “toasted” content and strongly encourage a dismiss button.

- + { Hello, world! This is a toast message. - - {ExampleToast()} + + {ExampleToast()} @@ -95,7 +95,7 @@ const Toasts = () => {

Toasts are slightly translucent to blend in with what's below them.

- +
@@ -116,7 +116,7 @@ const Toasts = () => { Hello, world! This is a toast message.
-
+ @@ -130,7 +130,7 @@ const Toasts = () => { You can stack toasts by wrapping them in a toast container, which will vertically add some spacing.

- + @@ -169,7 +169,7 @@ const Toasts = () => { Hello, world! This is a toast message. - + @@ -188,18 +188,18 @@ const Toasts = () => { flexbox utilities to adjust the layout.

- +
Hello, world! This is a toast message.
-
+

Alternatively, you can also add additional controls and components to toasts.

- + Hello, world! This is a toast message. @@ -213,7 +213,7 @@ const Toasts = () => {
- + @@ -232,14 +232,14 @@ const Toasts = () => { white property to our close button. For a crisp edge, we remove the default border with .border-0.

- +
Hello, world! This is a toast message.
-
+ diff --git a/src/views/theme/colors/Colors.js b/src/views/theme/colors/Colors.js index a6fef82d3..9e51a9867 100644 --- a/src/views/theme/colors/Colors.js +++ b/src/views/theme/colors/Colors.js @@ -3,7 +3,7 @@ import React, { useEffect, useState, createRef } from 'react' import classNames from 'classnames' import { CRow, CCol, CCard, CCardHeader, CCardBody } from '@coreui/react' import { rgbToHex } from '@coreui/utils' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const ThemeView = () => { const [color, setColor] = useState('rgb(255, 255, 255)') diff --git a/src/views/theme/typography/Typography.js b/src/views/theme/typography/Typography.js index 81bbefba8..1cae4f6c9 100644 --- a/src/views/theme/typography/Typography.js +++ b/src/views/theme/typography/Typography.js @@ -1,6 +1,6 @@ import React from 'react' import { CCard, CCardHeader, CCardBody } from '@coreui/react' -import { DocsLink } from 'src/reusable' +import { DocsLink } from 'src/components' const Typography = () => { return ( From a36f5d49e2ea7155e9453ca85072df8930e18e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 17:55:41 +0200 Subject: [PATCH 010/101] chore: clean-up --- src/components/AppSidebar.js | 1 - src/views/components/widgets/WidgetsDropdown.js | 15 --------------- 2 files changed, 16 deletions(-) diff --git a/src/components/AppSidebar.js b/src/components/AppSidebar.js index 0126aafc6..7fbe84b7f 100644 --- a/src/components/AppSidebar.js +++ b/src/components/AppSidebar.js @@ -24,7 +24,6 @@ const AppSidebar = () => { selfHiding="md" unfoldable={unfoldable} visible={sidebarShow} - onShow={() => console.log('show')} onHide={() => { dispatch({ type: 'set', sidebarShow: false }) }} diff --git a/src/views/components/widgets/WidgetsDropdown.js b/src/views/components/widgets/WidgetsDropdown.js index ad7b8affc..6f9451d5c 100644 --- a/src/views/components/widgets/WidgetsDropdown.js +++ b/src/views/components/widgets/WidgetsDropdown.js @@ -140,21 +140,6 @@ const WidgetsDropdown = () => { }, ], }} - getDatasetAtEvent={(dataset, event) => { - console.log('init1') - console.log(dataset) - console.log(event) - }} - getElementAtEvent={(element, event) => { - console.log('init2') - console.log(element) - console.log(event) - }} - getElementsAtEvent={(element, event) => { - console.log('init3') - console.log(element) - console.log(event) - }} options={{ plugins: { legend: { From edbda35a96ff9ece54b5fd17066e8285ba9bd391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 18:52:49 +0200 Subject: [PATCH 011/101] refactor: update widgets --- src/views/components/widgets/Widgets.js | 768 ++++++++++++------------ 1 file changed, 386 insertions(+), 382 deletions(-) diff --git a/src/views/components/widgets/Widgets.js b/src/views/components/widgets/Widgets.js index 355fe94a7..acc097712 100644 --- a/src/views/components/widgets/Widgets.js +++ b/src/views/components/widgets/Widgets.js @@ -62,7 +62,6 @@ const Widgets = () => { text="Lorem ipsum dolor sit amet enim." /> - { /> - - - } - iconPadding={3} - title="income" - value="$1.999,50" - color="primary" - /> + + + + - - } - iconPadding={3} - title="income" - value="$1.999,50" - color="info" - /> + + + + - - } - iconPadding={3} - title="income" - value="$1.999,50" - color="warning" - /> + + + + - - } - iconPadding={3} - title="income" - value="$1.999,50" - color="danger" - /> + + + + - - } - iconPadding={3} - title="income" - value="$1.999,50" - color="primary" - footer={ - - View more - - + + + + + + + + + + + + + + } + iconPadding={3} + title="income" + value="$1.999,50" + color="primary" + /> + + + } + iconPadding={3} + title="income" + value="$1.999,50" + color="info" + /> + + + } + iconPadding={3} + title="income" + value="$1.999,50" + color="warning" + /> + + + } + iconPadding={3} + title="income" + value="$1.999,50" + color="danger" + /> + + + } + iconPadding={3} + title="income" + value="$1.999,50" + color="primary" + footer={ + + View more + + } /> @@ -451,332 +781,6 @@ const Widgets = () => { /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ) } From 934b70a558a92455834206946353cd0d99cada61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 20:11:23 +0200 Subject: [PATCH 012/101] chore: bump version of @coreui/react --- package.json | 2 +- yarn.lock | 987 ++++++++++++++++++++++++--------------------------- 2 files changed, 464 insertions(+), 525 deletions(-) diff --git a/package.json b/package.json index cfc86e967..74f6aa797 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "@coreui/coreui": "4.0.1", "@coreui/icons": "^2.0.1", "@coreui/icons-react": "^2.0.0-rc.0", - "@coreui/react": "4.0.0-beta.2", + "@coreui/react": "4.0.0-beta.4", "@coreui/react-chartjs": "2.0.0-rc.0", "@coreui/utils": "^1.3.1", "@wojtekmaj/enzyme-adapter-react-17": "^0.6.3", diff --git a/yarn.lock b/yarn.lock index f828f6b6d..99a040e01 100644 --- a/yarn.lock +++ b/yarn.lock @@ -23,10 +23,10 @@ dependencies: "@babel/highlight" "^7.14.5" -"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08" - integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw== +"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.7", "@babel/compat-data@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" + integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== "@babel/core@7.12.3": version "7.12.3" @@ -51,19 +51,19 @@ source-map "^0.5.0" "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.5", "@babel/core@^7.8.4": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" - integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.0.tgz#749e57c68778b73ad8082775561f67f5196aafa8" + integrity sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw== dependencies: "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helpers" "^7.14.6" - "@babel/parser" "^7.14.6" + "@babel/generator" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.15.0" "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -71,12 +71,12 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/generator@^7.12.1", "@babel/generator@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" - integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== +"@babel/generator@^7.12.1", "@babel/generator@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz#a7d0c172e0d814974bad5aa77ace543b97917f15" + integrity sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.15.0" jsesc "^2.5.1" source-map "^0.5.0" @@ -95,26 +95,26 @@ "@babel/helper-explode-assignable-expression" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" - integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== +"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz#973df8cbd025515f3ff25db0c05efc704fa79818" + integrity sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A== dependencies: - "@babel/compat-data" "^7.14.5" + "@babel/compat-data" "^7.15.0" "@babel/helper-validator-option" "^7.14.5" browserslist "^4.16.6" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" - integrity sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg== +"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz#c9a137a4d137b2d0e2c649acf536d7ba1a76c0f7" + integrity sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q== dependencies: "@babel/helper-annotate-as-pure" "^7.14.5" "@babel/helper-function-name" "^7.14.5" - "@babel/helper-member-expression-to-functions" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.15.0" "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-replace-supers" "^7.15.0" "@babel/helper-split-export-declaration" "^7.14.5" "@babel/helper-create-regexp-features-plugin@^7.14.5": @@ -169,12 +169,12 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-member-expression-to-functions@^7.14.5": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970" - integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA== +"@babel/helper-member-expression-to-functions@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz#0ddaf5299c8179f27f37327936553e9bba60990b" + integrity sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.15.0" "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": version "7.14.5" @@ -183,19 +183,19 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" - integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA== +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz#679275581ea056373eddbe360e1419ef23783b08" + integrity sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg== dependencies: "@babel/helper-module-imports" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" + "@babel/helper-replace-supers" "^7.15.0" + "@babel/helper-simple-access" "^7.14.8" "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.9" "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" "@babel/helper-optimise-call-expression@^7.14.5": version "7.14.5" @@ -218,22 +218,22 @@ "@babel/helper-wrap-function" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-replace-supers@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" - integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow== +"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz#ace07708f5bf746bf2e6ba99572cce79b5d4e7f4" + integrity sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA== dependencies: - "@babel/helper-member-expression-to-functions" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.15.0" "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" -"@babel/helper-simple-access@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" - integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw== +"@babel/helper-simple-access@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924" + integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.14.8" "@babel/helper-skip-transparent-expression-wrappers@^7.12.1", "@babel/helper-skip-transparent-expression-wrappers@^7.14.5": version "7.14.5" @@ -249,10 +249,10 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-validator-identifier@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" - integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== +"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" + integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== "@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.14.5": version "7.14.5" @@ -269,14 +269,14 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helpers@^7.12.1", "@babel/helpers@^7.14.6": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635" - integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA== +"@babel/helpers@^7.12.1", "@babel/helpers@^7.14.8": + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.3.tgz#c96838b752b95dcd525b4e741ed40bb1dc2a1357" + integrity sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g== dependencies: "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" "@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": version "7.14.5" @@ -287,10 +287,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7", "@babel/parser@^7.7.0": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595" - integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA== +"@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.14.5", "@babel/parser@^7.15.0", "@babel/parser@^7.7.0": + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz#3416d9bea748052cfcb63dbcc27368105b1ed862" + integrity sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA== "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": version "7.14.5" @@ -301,10 +301,10 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" "@babel/plugin-proposal-optional-chaining" "^7.14.5" -"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.14.7": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz#784a48c3d8ed073f65adcf30b57bcbf6c8119ace" - integrity sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q== +"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz#7028dc4fa21dc199bbacf98b39bab1267d0eaf9a" + integrity sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/helper-remap-async-to-generator" "^7.14.5" @@ -635,16 +635,16 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939" - integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw== + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf" + integrity sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf" - integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA== +"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz#2a391ffb1e5292710b00f2e2c210e1435e7d449f" + integrity sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A== dependencies: "@babel/helper-annotate-as-pure" "^7.14.5" "@babel/helper-function-name" "^7.14.5" @@ -737,14 +737,14 @@ "@babel/helper-plugin-utils" "^7.14.5" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97" - integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A== +"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz#3305896e5835f953b5cdb363acd9e8c2219a5281" + integrity sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig== dependencies: - "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-module-transforms" "^7.15.0" "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" + "@babel/helper-simple-access" "^7.14.8" babel-plugin-dynamic-import-node "^2.3.3" "@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.14.5": @@ -766,10 +766,10 @@ "@babel/helper-module-transforms" "^7.14.5" "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.14.7": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.7.tgz#60c06892acf9df231e256c24464bfecb0908fd4e" - integrity sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg== +"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.14.9": + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz#c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2" + integrity sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.14.5" @@ -817,9 +817,9 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-transform-react-display-name@^7.12.1", "@babel/plugin-transform-react-display-name@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz#baa92d15c4570411301a85a74c13534873885b65" - integrity sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ== + version "7.15.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz#6aaac6099f1fcf6589d35ae6be1b6e10c8c602b9" + integrity sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -831,9 +831,9 @@ "@babel/plugin-transform-react-jsx" "^7.14.5" "@babel/plugin-transform-react-jsx-self@^7.12.1": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz#703b5d1edccd342179c2a99ee8c7065c2b4403cc" - integrity sha512-M/fmDX6n0cfHK/NLTcPmrfVAORKDhK8tyjDhyxlUjYyPYYO8FRWwuxBA3WBx8kWN/uBUuwGa3s/0+hQ9JIN3Tg== + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz#33041e665453391eb6ee54a2ecf3ba1d46bd30f4" + integrity sha512-Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -845,15 +845,15 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz#39749f0ee1efd8a1bd729152cf5f78f1d247a44a" - integrity sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q== + version "7.14.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz#3314b2163033abac5200a869c4de242cd50a914c" + integrity sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw== dependencies: "@babel/helper-annotate-as-pure" "^7.14.5" "@babel/helper-module-imports" "^7.14.5" "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-jsx" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/types" "^7.14.9" "@babel/plugin-transform-react-pure-annotations@^7.12.1", "@babel/plugin-transform-react-pure-annotations@^7.14.5": version "7.14.5" @@ -924,11 +924,11 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-typescript@^7.12.1": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz#6e9c2d98da2507ebe0a883b100cde3c7279df36c" - integrity sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA== + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz#553f230b9d5385018716586fc48db10dd228eb7e" + integrity sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w== dependencies: - "@babel/helper-create-class-features-plugin" "^7.14.6" + "@babel/helper-create-class-features-plugin" "^7.15.0" "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript" "^7.14.5" @@ -1020,16 +1020,16 @@ semver "^5.5.0" "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.8.4": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.7.tgz#5c70b22d4c2d893b03d8c886a5c17422502b932a" - integrity sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA== + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.15.0.tgz#e2165bf16594c9c05e52517a194bf6187d6fe464" + integrity sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q== dependencies: - "@babel/compat-data" "^7.14.7" - "@babel/helper-compilation-targets" "^7.14.5" + "@babel/compat-data" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" "@babel/helper-plugin-utils" "^7.14.5" "@babel/helper-validator-option" "^7.14.5" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5" - "@babel/plugin-proposal-async-generator-functions" "^7.14.7" + "@babel/plugin-proposal-async-generator-functions" "^7.14.9" "@babel/plugin-proposal-class-properties" "^7.14.5" "@babel/plugin-proposal-class-static-block" "^7.14.5" "@babel/plugin-proposal-dynamic-import" "^7.14.5" @@ -1062,7 +1062,7 @@ "@babel/plugin-transform-async-to-generator" "^7.14.5" "@babel/plugin-transform-block-scoped-functions" "^7.14.5" "@babel/plugin-transform-block-scoping" "^7.14.5" - "@babel/plugin-transform-classes" "^7.14.5" + "@babel/plugin-transform-classes" "^7.14.9" "@babel/plugin-transform-computed-properties" "^7.14.5" "@babel/plugin-transform-destructuring" "^7.14.7" "@babel/plugin-transform-dotall-regex" "^7.14.5" @@ -1073,10 +1073,10 @@ "@babel/plugin-transform-literals" "^7.14.5" "@babel/plugin-transform-member-expression-literals" "^7.14.5" "@babel/plugin-transform-modules-amd" "^7.14.5" - "@babel/plugin-transform-modules-commonjs" "^7.14.5" + "@babel/plugin-transform-modules-commonjs" "^7.15.0" "@babel/plugin-transform-modules-systemjs" "^7.14.5" "@babel/plugin-transform-modules-umd" "^7.14.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9" "@babel/plugin-transform-new-target" "^7.14.5" "@babel/plugin-transform-object-super" "^7.14.5" "@babel/plugin-transform-parameters" "^7.14.5" @@ -1091,11 +1091,11 @@ "@babel/plugin-transform-unicode-escapes" "^7.14.5" "@babel/plugin-transform-unicode-regex" "^7.14.5" "@babel/preset-modules" "^0.1.4" - "@babel/types" "^7.14.5" + "@babel/types" "^7.15.0" babel-plugin-polyfill-corejs2 "^0.2.2" babel-plugin-polyfill-corejs3 "^0.2.2" babel-plugin-polyfill-regenerator "^0.2.2" - core-js-compat "^3.15.0" + core-js-compat "^3.16.0" semver "^6.3.0" "@babel/preset-modules@^0.1.3", "@babel/preset-modules@^0.1.4": @@ -1143,11 +1143,11 @@ "@babel/plugin-transform-typescript" "^7.12.1" "@babel/runtime-corejs3@^7.10.2": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz#0ef292bbce40ca00f874c9724ef175a12476465c" - integrity sha512-Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA== + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz#28754263988198f2a928c09733ade2fb4d28089d" + integrity sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A== dependencies: - core-js-pure "^3.15.0" + core-js-pure "^3.16.0" regenerator-runtime "^0.13.4" "@babel/runtime@7.12.1": @@ -1158,9 +1158,9 @@ regenerator-runtime "^0.13.4" "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d" - integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg== + version "7.15.3" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.3.tgz#2e1c2880ca118e5b2f9988322bd8a7656a32502b" + integrity sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA== dependencies: regenerator-runtime "^0.13.4" @@ -1173,27 +1173,27 @@ "@babel/parser" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.0": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753" - integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ== +"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.15.0", "@babel/traverse@^7.7.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz#4cca838fd1b2a03283c1f38e141f639d60b3fc98" + integrity sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw== dependencies: "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" + "@babel/generator" "^7.15.0" "@babel/helper-function-name" "^7.14.5" "@babel/helper-hoist-variables" "^7.14.5" "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.7" - "@babel/types" "^7.14.5" + "@babel/parser" "^7.15.0" + "@babel/types" "^7.15.0" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.6", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" - integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== +"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.6", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.14.9", "@babel/types@^7.15.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz#61af11f2286c4e9c69ca8deb5f4375a73c72dcbd" + integrity sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ== dependencies: - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.9" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -1222,7 +1222,7 @@ resolved "https://registry.yarnpkg.com/@coreui/coreui/-/coreui-4.0.0.tgz#52ebe0197411a829ba48057ade61923e05859eec" integrity sha512-8vH6fJrmvCR/Oy5v0E+/1AL3Ygb4jhQ7NXK2fMYWJyK13BePDm9muB3y6S0IdqkpBwjY3hHVwHyt2lJqJdesmQ== -"@coreui/coreui@4.0.1": +"@coreui/coreui@4.0.1", "@coreui/coreui@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@coreui/coreui/-/coreui-4.0.1.tgz#e5faf540aeea31b0cc8d428d73080a364e4bc6fd" integrity sha512-1mrWnbqoWb7+8ZAMUdlWt0AqVzDEkJglk7F3OaFsQtxienezFvlMNsd1YPPNo+taRzF7HZ8xSDIAItCvlOaMVg== @@ -1252,10 +1252,12 @@ "@coreui/chartjs" "^3.0.0" chart.js "^3.4.1" -"@coreui/react@4.0.0-beta.2": - version "4.0.0-beta.2" - resolved "https://registry.yarnpkg.com/@coreui/react/-/react-4.0.0-beta.2.tgz#f9f319f170d35e21bf65e4e08bf3d81cbfc51ec0" - integrity sha512-7rJGcL8s06AD/OUx78DnUB6q7oSjOk2JKAqtGLF3Lkd+Zf0YqVkk8dcrK6j8SG+mPURhbZSPcz5zpE1yf645hg== +"@coreui/react@4.0.0-beta.4": + version "4.0.0-beta.4" + resolved "https://registry.yarnpkg.com/@coreui/react/-/react-4.0.0-beta.4.tgz#b41b5270707784a200bf39b0008d4a324cc98dec" + integrity sha512-yjbAk5u3G2w/gJn+tfE/6mQagQoFp94EghHaes4E7GJlGcHwdfTp5AB5nRZp9DvYFy4vm3WsqWGD4yfQ34oilA== + dependencies: + "@coreui/coreui" "^4.0.1" "@coreui/utils@^1.3.1": version "1.3.1" @@ -1272,30 +1274,15 @@ resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== -"@es-joy/jsdoccomment@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.8.0.tgz#1add451f50f57597676ab85ee7bd0a273d7b7c43" - integrity sha512-Xd3GzYsL2sz2pcdtYt5Q0Wz1ol/o9Nt2UQL4nFPDcaEomvPmwjJsbjkKx1SKhl2h3TgwazNBLdcNr2m0UiGiFA== +"@es-joy/jsdoccomment@0.9.0-alpha.1": + version "0.9.0-alpha.1" + resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.9.0-alpha.1.tgz#f48bd162e185ec7f9f222273a282d10e52fe52f7" + integrity sha512-Clxxc0PwpISoYYBibA+1L2qFJ7gvFVhI2Hos87S06K+Q0cXdOhZQJNKWuaQGPAeHjZEuUB/YoWOfwjuF2wirqA== dependencies: - comment-parser "^1.1.5" + comment-parser "1.1.6-beta.0" esquery "^1.4.0" jsdoc-type-pratt-parser "1.0.4" -"@eslint/eslintrc@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179" - integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg== - dependencies: - ajv "^6.12.4" - debug "^4.1.1" - espree "^7.3.0" - globals "^13.9.0" - ignore "^4.0.6" - import-fresh "^3.2.1" - js-yaml "^3.13.1" - minimatch "^3.0.4" - strip-json-comments "^3.1.1" - "@eslint/eslintrc@^0.4.3": version "0.4.3" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" @@ -1563,9 +1550,9 @@ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": - version "1.2.7" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz#94c23db18ee4653e129abd26fb06f870ac9e1ee2" - integrity sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA== + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" @@ -1749,9 +1736,9 @@ integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": - version "7.1.14" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402" - integrity sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g== + version "7.1.15" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz#2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024" + integrity sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1760,39 +1747,39 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8" - integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ== + version "7.6.3" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" + integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": - version "7.4.0" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.0.tgz#0c888dd70b3ee9eebb6e4f200e809da0076262be" - integrity sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A== + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.0.tgz#a34277cf8acbd3185ea74129e1f100491eb1da7f" - integrity sha512-IilJZ1hJBUZwMOVDNTdflOOLzJB/ZtljYVa7k3gEZN/jqIJIPkWHC6dvbX+DD2CwZDHB9wAKzZPzzqMIkW37/w== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" + integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== dependencies: "@babel/types" "^7.3.0" "@types/eslint@^7.2.6": - version "7.2.13" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.13.tgz#e0ca7219ba5ded402062ad6f926d491ebb29dd53" - integrity sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg== + version "7.28.0" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.0.tgz#7e41f2481d301c68e14f483fe10b017753ce8d5a" + integrity sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A== dependencies: "@types/estree" "*" "@types/json-schema" "*" "@types/estree@*": - version "0.0.49" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.49.tgz#3facb98ebcd4114a4ecef74e0de2175b56fd4464" - integrity sha512-K1AFuMe8a+pXmfHTtnwBvqoEylNKVeaiKYkjmcEAdytMQVJ/i9Fu7sc13GxgXdO49gkE7Hy8SyJonUZUn+eVaw== + version "0.0.50" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" + integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== "@types/estree@0.0.39": version "0.0.39" @@ -1800,9 +1787,9 @@ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== "@types/glob@^7.1.1": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" - integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== + version "7.1.4" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz#ea59e21d2ee5c517914cb4bc8e4153b99e566672" + integrity sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA== dependencies: "@types/minimatch" "*" "@types/node" "*" @@ -1823,9 +1810,9 @@ hoist-non-react-statics "^3.3.0" "@types/html-minifier-terser@^5.0.0": - version "5.1.1" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" - integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57" + integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w== "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.3" @@ -1846,30 +1833,25 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7": - version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" - integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8": + version "7.0.9" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" + integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== "@types/minimatch@*": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21" - integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== "@types/node@*": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.0.0.tgz#067a6c49dc7a5c2412a505628e26902ae967bf6f" - integrity sha512-TmCW5HoZ2o2/z2EYi109jLqIaPIi9y/lc2LmDCWzuCi35bcaQ+OtUh6nwBiFK7SOu25FAU5+YKdqFZUwtqGSdg== + version "16.4.13" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.13.tgz#7dfd9c14661edc65cccd43a29eb454174642370d" + integrity sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg== "@types/normalize-package-data@^2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" - integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== "@types/parse-json@^4.0.0": version "4.0.0" @@ -1877,24 +1859,24 @@ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prettier@^2.0.0": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.1.tgz#54dd88bdc7f49958329666af3779561e47d5dab3" - integrity sha512-NVkb4p4YjI8E3O6+1m8I+8JlMpFZwfSbPGdaw0wXuyPRTEz0SLKwBUWNSO7Maoi8tQMPC8JLZNWkrcKPI7/sLA== + version "2.3.2" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.2.tgz#fc8c2825e4ed2142473b4a81064e6e081463d1b3" + integrity sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog== "@types/prop-types@*": - version "15.7.3" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" - integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + version "15.7.4" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" + integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== "@types/q@^1.5.1": - version "1.5.4" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" - integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== + version "1.5.5" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" + integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== "@types/react-redux@^7.1.16": - version "7.1.16" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.16.tgz#0fbd04c2500c12105494c83d4a3e45c084e3cb21" - integrity sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw== + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.18.tgz#2bf8fd56ebaae679a90ebffe48ff73717c438e04" + integrity sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" @@ -1902,9 +1884,9 @@ redux "^4.0.0" "@types/react@*": - version "17.0.13" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.13.tgz#6b7c9a8f2868586ad87d941c02337c6888fb874f" - integrity sha512-D/G3PiuqTfE3IMNjLn/DCp6umjVCSvtZTPdtAFy5+Ved6CsdRvivfKeCzw79W4AatShtU4nGqgvOv5Gro534vQ== + version "17.0.17" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.17.tgz#1772d3d5425128e0635a716f49ef57c2955df055" + integrity sha512-nrfi7I13cAmrd0wje8czYpf5SFbryczCtPzFc6ijqvdjKcyA3tCvGxwchOUlxb2ucBPuJ9Y3oUqKrRqZvrz0lw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -1918,9 +1900,9 @@ "@types/node" "*" "@types/scheduler@*": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" - integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== "@types/source-list-map@*": version "0.1.2" @@ -1945,9 +1927,9 @@ source-map "^0.6.1" "@types/webpack-sources@*": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.1.1.tgz#6af17e3a3ded71eec2b98008d7c12f498a0a4506" - integrity sha512-MjM1R6iuw8XaVbtkCBz0N349cyqBjJHCbQiOeppe3VBeFvxqs74RKHAVt9LkxTnUWc7YLZOEsUfPUnmK6SBPKQ== + version "3.2.0" + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz#16d759ba096c289034b26553d2df1bf45248d38b" + integrity sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg== dependencies: "@types/node" "*" "@types/source-list-map" "*" @@ -1978,27 +1960,27 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^4.28.1", "@typescript-eslint/eslint-plugin@^4.5.0": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.1.tgz#c045e440196ae45464e08e20c38aff5c3a825947" - integrity sha512-9yfcNpDaNGQ6/LQOX/KhUFTR1sCKH+PBr234k6hI9XJ0VP5UqGxap0AnNwBnWFk1MNyWBylJH9ZkzBXC+5akZQ== + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.1.tgz#808d206e2278e809292b5de752a91105da85860b" + integrity sha512-AHqIU+SqZZgBEiWOrtN94ldR3ZUABV5dUG94j8Nms9rQnHFc8fvDOue/58K4CFz6r8OtDDc35Pw9NQPWo0Ayrw== dependencies: - "@typescript-eslint/experimental-utils" "4.28.1" - "@typescript-eslint/scope-manager" "4.28.1" + "@typescript-eslint/experimental-utils" "4.29.1" + "@typescript-eslint/scope-manager" "4.29.1" debug "^4.3.1" functional-red-black-tree "^1.0.1" regexpp "^3.1.0" semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/experimental-utils@4.28.1", "@typescript-eslint/experimental-utils@^4.0.1": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.1.tgz#3869489dcca3c18523c46018b8996e15948dbadc" - integrity sha512-n8/ggadrZ+uyrfrSEchx3jgODdmcx7MzVM2sI3cTpI/YlfSm0+9HEUaWw3aQn2urL2KYlWYMDgn45iLfjDYB+Q== +"@typescript-eslint/experimental-utils@4.29.1", "@typescript-eslint/experimental-utils@^4.0.1": + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.1.tgz#0af2b17b0296b60c6b207f11062119fa9c5a8994" + integrity sha512-kl6QG6qpzZthfd2bzPNSJB2YcZpNOrP6r9jueXupcZHnL74WiuSjaft7WSu17J9+ae9zTlk0KJMXPUj0daBxMw== dependencies: "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.28.1" - "@typescript-eslint/types" "4.28.1" - "@typescript-eslint/typescript-estree" "4.28.1" + "@typescript-eslint/scope-manager" "4.29.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/typescript-estree" "4.29.1" eslint-scope "^5.1.1" eslint-utils "^3.0.0" @@ -2014,32 +1996,32 @@ eslint-utils "^2.0.0" "@typescript-eslint/parser@^4.28.1", "@typescript-eslint/parser@^4.5.0": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.1.tgz#5181b81658414f47291452c15bf6cd44a32f85bd" - integrity sha512-UjrMsgnhQIIK82hXGaD+MCN8IfORS1CbMdu7VlZbYa8LCZtbZjJA26De4IPQB7XYZbL8gJ99KWNj0l6WD0guJg== + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.1.tgz#17dfbb45c9032ffa0fe15881d20fbc2a4bdeb02d" + integrity sha512-3fL5iN20hzX3Q4OkG7QEPFjZV2qsVGiDhEwwh+EkmE/w7oteiOvUNzmpu5eSwGJX/anCryONltJ3WDmAzAoCMg== dependencies: - "@typescript-eslint/scope-manager" "4.28.1" - "@typescript-eslint/types" "4.28.1" - "@typescript-eslint/typescript-estree" "4.28.1" + "@typescript-eslint/scope-manager" "4.29.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/typescript-estree" "4.29.1" debug "^4.3.1" -"@typescript-eslint/scope-manager@4.28.1": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.1.tgz#fd3c20627cdc12933f6d98b386940d8d0ce8a991" - integrity sha512-o95bvGKfss6705x7jFGDyS7trAORTy57lwJ+VsYwil/lOUxKQ9tA7Suuq+ciMhJc/1qPwB3XE2DKh9wubW8YYA== +"@typescript-eslint/scope-manager@4.29.1": + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.1.tgz#f25da25bc6512812efa2ce5ebd36619d68e61358" + integrity sha512-Hzv/uZOa9zrD/W5mftZa54Jd5Fed3tL6b4HeaOpwVSabJK8CJ+2MkDasnX/XK4rqP5ZTWngK1ZDeCi6EnxPQ7A== dependencies: - "@typescript-eslint/types" "4.28.1" - "@typescript-eslint/visitor-keys" "4.28.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/visitor-keys" "4.29.1" "@typescript-eslint/types@3.10.1": version "3.10.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727" integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ== -"@typescript-eslint/types@4.28.1": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.1.tgz#d0f2ecbef3684634db357b9bbfc97b94b828f83f" - integrity sha512-4z+knEihcyX7blAGi7O3Fm3O6YRCP+r56NJFMNGsmtdw+NCdpG5SgNz427LS9nQkRVTswZLhz484hakQwB8RRg== +"@typescript-eslint/types@4.29.1": + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.1.tgz#94cce6cf7cc83451df03339cda99d326be2feaf5" + integrity sha512-Jj2yu78IRfw4nlaLtKjVaGaxh/6FhofmQ/j8v3NXmAiKafbIqtAPnKYrf0sbGjKdj0hS316J8WhnGnErbJ4RCA== "@typescript-eslint/typescript-estree@3.10.1": version "3.10.1" @@ -2055,13 +2037,13 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/typescript-estree@4.28.1": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.1.tgz#af882ae41740d1f268e38b4d0fad21e7e8d86a81" - integrity sha512-GhKxmC4sHXxHGJv8e8egAZeTZ6HI4mLU6S7FUzvFOtsk7ZIDN1ksA9r9DyOgNqowA9yAtZXV0Uiap61bIO81FQ== +"@typescript-eslint/typescript-estree@4.29.1": + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.1.tgz#7b32a25ff8e51f2671ccc6b26cdbee3b1e6c5e7f" + integrity sha512-lIkkrR9E4lwZkzPiRDNq0xdC3f2iVCUjw/7WPJ4S2Sl6C3nRWkeE1YXCQ0+KsiaQRbpY16jNaokdWnm9aUIsfw== dependencies: - "@typescript-eslint/types" "4.28.1" - "@typescript-eslint/visitor-keys" "4.28.1" + "@typescript-eslint/types" "4.29.1" + "@typescript-eslint/visitor-keys" "4.29.1" debug "^4.3.1" globby "^11.0.3" is-glob "^4.0.1" @@ -2075,12 +2057,12 @@ dependencies: eslint-visitor-keys "^1.1.0" -"@typescript-eslint/visitor-keys@4.28.1": - version "4.28.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.1.tgz#162a515ee255f18a6068edc26df793cdc1ec9157" - integrity sha512-K4HMrdFqr9PFquPu178SaSb92CaWe2yErXyPumc8cYWxFmhgJsNY9eSePmO05j0JhBvf2Cdhptd6E6Yv9HVHcg== +"@typescript-eslint/visitor-keys@4.29.1": + version "4.29.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.1.tgz#0615be8b55721f5e854f3ee99f1a714f2d093e5d" + integrity sha512-zLqtjMoXvgdZY/PG6gqA73V8BjqPs4af1v2kiiETBObp+uC6gRYnJLmJHxC0QyUrrHDLJPIWNYxoBV3wbcRlag== dependencies: - "@typescript-eslint/types" "4.28.1" + "@typescript-eslint/types" "4.29.1" eslint-visitor-keys "^2.0.0" "@webassemblyjs/ast@1.9.0": @@ -2285,9 +2267,9 @@ acorn-globals@^6.0.0: acorn-walk "^7.1.1" acorn-jsx@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" - integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-walk@^7.1.1: version "7.2.0" @@ -2358,9 +2340,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5: uri-js "^4.2.2" ajv@^8.0.1: - version "8.6.1" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.1.tgz#ae65764bf1edde8cd861281cda5057852364a295" - integrity sha512-42VLtQUOLefAvKFAQIxIZDaThq6om/PrfP0CYk3/vn+y4BMNkKnbli8ON2QCiHov4KkzOSJ/xSoBJdayiiYvVQ== + version "8.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" + integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== dependencies: fast-deep-equal "^3.1.1" json-schema-traverse "^1.0.0" @@ -2652,9 +2634,9 @@ autoprefixer@^9.6.1: postcss-value-parser "^4.1.0" axe-core@^4.0.2: - version "4.2.3" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.2.3.tgz#2a3afc332f0031b42f602f4a3de03c211ca98f72" - integrity sha512-pXnVMfJKSIWU2Ml4JHP7pZEPIrgBO1Fd3WGx+fPBsS+KRGhE4vxooD8XBGWbQOIVSZsVK7pUDBBkCicNu80yzQ== + version "4.3.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.2.tgz#fcf8777b82c62cfc69c7e9f32c0d2226287680e7" + integrity sha512-5LMaDRWm8ZFPAEdzTYmgjjEdj1YnQcpfrVajO/sn/LhbpGp0Y0H64c2hLZI1gRMxfA+w1S71Uc/nHaOXgcCvGg== axobject-query@^2.2.0: version "2.2.0" @@ -2757,9 +2739,9 @@ babel-plugin-polyfill-corejs2@^0.2.2: semver "^6.1.1" babel-plugin-polyfill-corejs3@^0.2.2: - version "0.2.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz#72add68cf08a8bf139ba6e6dfc0b1d504098e57b" - integrity sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g== + version "0.2.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz#68cb81316b0e8d9d721a92e0009ec6ecd4cd2ca9" + integrity sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ== dependencies: "@babel/helper-define-polyfill-provider" "^0.2.2" core-js-compat "^3.14.0" @@ -3069,16 +3051,16 @@ browserslist@4.14.2: escalade "^3.0.2" node-releases "^1.1.61" -browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.6.2, browserslist@^4.6.4: - version "4.16.6" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.16.7, browserslist@^4.6.2, browserslist@^4.6.4: + version "4.16.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.7.tgz#108b0d1ef33c4af1b587c54f390e7041178e4335" + integrity sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA== dependencies: - caniuse-lite "^1.0.30001219" + caniuse-lite "^1.0.30001248" colorette "^1.2.2" - electron-to-chromium "^1.3.723" + electron-to-chromium "^1.3.793" escalade "^3.1.1" - node-releases "^1.1.71" + node-releases "^1.1.73" bser@2.1.1: version "2.1.1" @@ -3088,9 +3070,9 @@ bser@2.1.1: node-int64 "^0.4.0" buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer-indexof@^1.0.0: version "1.1.1" @@ -3255,10 +3237,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001219: - version "1.0.30001242" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001242.tgz#04201627abcd60dc89211f22cbe2347306cda46b" - integrity sha512-KvNuZ/duufelMB3w2xtf9gEWCSxJwUgoxOx5b6ScLXC4kPc9xsczUVCPrQU26j5kOsHM4pSUL54tAZt5THQKug== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001248: + version "1.0.30001249" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001249.tgz#90a330057f8ff75bfe97a94d047d5e14fabb2ee8" + integrity sha512-vcX4U8lwVXPdqzPWi6cAJ3FnQaqXbBqy/GZseKNQzRj37J7qZdGcBtxq/QLFNLLlfsoXLUdHw8Iwenri86Tagw== capture-exit@^2.0.0: version "2.0.0" @@ -3282,9 +3264,9 @@ chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: supports-color "^5.3.0" chalk@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" - integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" @@ -3294,12 +3276,7 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== -chart.js@^3.4.0, chart.js@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-3.4.1.tgz#ff3b2b2a04a37b83618b4a6399a5f87ccc0f1e8a" - integrity sha512-0R4mL7WiBcYoazIhrzSYnWcOw6RmrRn7Q4nKZNsBQZCBrlkZKodQbfeojCCo8eETPRCs1ZNTsAcZhIfyhyP61g== - -chart.js@^3.5.0: +chart.js@^3.4.0, chart.js@^3.4.1, chart.js@^3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-3.5.0.tgz#6eb075332d4ebbbb20a94e5a07a234052ed6c4fb" integrity sha512-J1a4EAb1Gi/KbhwDRmoovHTRuqT8qdF0kZ4XgwxpGethJHUdDrkqyPYwke0a+BuvSeUxPf8Cos6AX2AB8H8GLA== @@ -3472,7 +3449,7 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.9.0, color-convert@^1.9.1: +color-convert@^1.9.0, color-convert@^1.9.3: 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== @@ -3496,26 +3473,26 @@ color-name@^1.0.0, color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-string@^1.5.4: - version "1.5.5" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" - integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== +color-string@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312" + integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" color@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" - integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== dependencies: - color-convert "^1.9.1" - color-string "^1.5.4" + color-convert "^1.9.3" + color-string "^1.6.0" colorette@^1.2.1, colorette@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== + version "1.3.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.3.0.tgz#ff45d2f0edb244069d3b772adeb04fed38d0a0af" + integrity sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w== combined-stream@^1.0.8: version "1.0.8" @@ -3539,10 +3516,10 @@ commander@^5.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== -comment-parser@1.1.5, comment-parser@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.1.5.tgz#453627ef8f67dbcec44e79a9bd5baa37f0bce9b2" - integrity sha512-RePCE4leIhBlmrqiYTvaqEeGYg7qpSl4etaIabKtdOQVi+mSTIBBklGUwIr79GXYnl3LpMwmDw4KeR2stNc6FA== +comment-parser@1.1.6-beta.0: + version "1.1.6-beta.0" + resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.1.6-beta.0.tgz#57e503b18d0a5bd008632dcc54b1f95c2fffe8f6" + integrity sha512-q3cA8TSMyqW7wcPSYWzbO/rMahnXgzs4SLG/UIWXdEsnXTFPZkEkWAdNgPiHig2OzxgpPLOh4WwsmClDxndwHw== common-tags@^1.8.0: version "1.8.0" @@ -3679,30 +3656,25 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -core-js-compat@^3.14.0, core-js-compat@^3.15.0, core-js-compat@^3.6.2: - version "3.15.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.15.2.tgz#47272fbb479880de14b4e6081f71f3492f5bd3cb" - integrity sha512-Wp+BJVvwopjI+A1EFqm2dwUmWYXrvucmtIB2LgXn/Rb+gWPKYxtmb4GKHGKG/KGF1eK9jfjzT38DITbTOCX/SQ== +core-js-compat@^3.14.0, core-js-compat@^3.16.0, core-js-compat@^3.6.2: + version "3.16.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.16.1.tgz#c44b7caa2dcb94b673a98f27eee1c8312f55bc2d" + integrity sha512-NHXQXvRbd4nxp9TEmooTJLUf94ySUG6+DSsscBpTftN1lQLQ4LjnWvc7AoIo4UjDsFF3hB8Uh5LLCRRdaiT5MQ== dependencies: - browserslist "^4.16.6" + browserslist "^4.16.7" semver "7.0.0" -core-js-pure@^3.15.0: - version "3.15.2" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.15.2.tgz#c8e0874822705f3385d3197af9348f7c9ae2e3ce" - integrity sha512-D42L7RYh1J2grW8ttxoY1+17Y4wXZeKe7uyplAI3FkNQyI5OgBIAjUfFiTPfL1rs0qLpxaabITNbjKl1Sp82tA== +core-js-pure@^3.16.0: + version "3.16.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.16.1.tgz#b997df2669c957a5b29f06e95813a171f993592e" + integrity sha512-TyofCdMzx0KMhi84mVRS8rL1XsRk2SPUNz2azmth53iRN0/08Uim9fdhQTaZTG1LqaXHYVci4RDHka6WrXfnvg== core-js@^2.4.0: version "2.6.12" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== -core-js@^3.0.1, core-js@^3.6.5: - version "3.15.2" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.15.2.tgz#740660d2ff55ef34ce664d7e2455119c5bdd3d61" - integrity sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q== - -core-js@^3.16.1: +core-js@^3.0.1, core-js@^3.16.1, core-js@^3.6.5: version "3.16.1" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.1.tgz#f4485ce5c9f3c6a7cb18fa80488e08d362097249" integrity sha512-AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw== @@ -4078,7 +4050,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: version "4.3.2" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== @@ -4405,10 +4377,10 @@ ejs@^2.6.1: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.723: - version "1.3.766" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.766.tgz#2fd14a4e54f77665872f4e23fcf4968e83638220" - integrity sha512-u2quJ862q9reRKh/je3GXis3w38+RoXH1J9N3XjtsS6NzmUAosNsyZgUVFZPN/ZlJ3v6T0rTyZR3q/J5c6Sy5w== +electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.793: + version "1.3.802" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.802.tgz#0afa989321de3e904ac653ee79e0d642883731a1" + integrity sha512-dXB0SGSypfm3iEDxrb5n/IVKeX4uuTnFHdve7v+yKJqNpEP0D4mjFJ8e1znmSR+OOVlVC+kDO6f2kAkTFXvJBg== elliptic@^6.5.3: version "6.5.4" @@ -4544,9 +4516,9 @@ error-stack-parser@^2.0.6: stackframe "^1.1.1" es-abstract@^1.17.2, es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: - version "1.18.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0" - integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw== + version "1.18.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz#9b10de7d4c206a3581fd5b2124233e04db49ae19" + integrity sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA== dependencies: call-bind "^1.0.2" es-to-primitive "^1.2.1" @@ -4554,11 +4526,12 @@ es-abstract@^1.17.2, es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstrac get-intrinsic "^1.1.1" has "^1.0.3" has-symbols "^1.0.2" + internal-slot "^1.0.3" is-callable "^1.2.3" is-negative-zero "^2.0.1" is-regex "^1.1.3" is-string "^1.0.6" - object-inspect "^1.10.3" + object-inspect "^1.11.0" object-keys "^1.1.1" object.assign "^4.1.2" string.prototype.trimend "^1.0.4" @@ -4654,41 +4627,41 @@ eslint-config-react-app@^6.0.0: dependencies: confusing-browser-globals "^1.0.10" -eslint-import-resolver-node@^0.3.4: - version "0.3.4" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" - integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== +eslint-import-resolver-node@^0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.5.tgz#939bbb0f74e179e757ca87f7a4a890dabed18ac4" + integrity sha512-XMoPKjSpXbkeJ7ZZ9icLnJMTY5Mc1kZbCakHquaFsXPpyWOwK0TK6CODO+0ca54UoM9LKOxyUNnoVZRl8TeaAg== dependencies: - debug "^2.6.9" - resolve "^1.13.1" + debug "^3.2.7" + resolve "^1.20.0" -eslint-module-utils@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233" - integrity sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A== +eslint-module-utils@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" + integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q== dependencies: debug "^3.2.7" pkg-dir "^2.0.0" eslint-plugin-flowtype@^5.2.0: - version "5.8.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.8.0.tgz#35b55e4ce559b90efbe913ed33630e391e301481" - integrity sha512-feK1xnUTsMSNTOw9jFw7aVgZl7Ep+ghpta/YEoaV6jbXU6Yso30B7BIj9ObHLzZ5TFJL7D98az080wfykLCrcw== + version "5.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.0.tgz#8d2d81d3d79bb53470ed62b97409b31684757e30" + integrity sha512-aBUVPA5Wt0XyuV3Wg8flfVqYJR6yR2nRLuyPwoTjCg5VTk4G1X1zQpInr39tUGgRxqrA+d+B9GYK4+/d1i0Rfw== dependencies: lodash "^4.17.15" string-natural-compare "^3.0.1" eslint-plugin-import@^2.22.1: - version "2.23.4" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97" - integrity sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ== + version "2.24.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.0.tgz#697ffd263e24da5e84e03b282f5fb62251777177" + integrity sha512-Kc6xqT9hiYi2cgybOc0I2vC9OgAYga5o/rAFinam/yF/t5uBqxQbauNPMC6fgb640T/89P0gFoO27FOilJ/Cqg== dependencies: array-includes "^3.1.3" array.prototype.flat "^1.2.4" debug "^2.6.9" doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.4" - eslint-module-utils "^2.6.1" + eslint-import-resolver-node "^0.3.5" + eslint-module-utils "^2.6.2" find-up "^2.0.0" has "^1.0.3" is-core-module "^2.4.0" @@ -4700,20 +4673,20 @@ eslint-plugin-import@^2.22.1: tsconfig-paths "^3.9.0" eslint-plugin-jest@^24.1.0: - version "24.3.6" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.6.tgz#5f0ca019183c3188c5ad3af8e80b41de6c8e9173" - integrity sha512-WOVH4TIaBLIeCX576rLcOgjNXqP+jNlCiEmRgFTfQtJ52DpwnIQKAVGlGPAN7CZ33bW6eNfHD6s8ZbEUTQubJg== + version "24.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz#fa4b614dbd46a98b652d830377971f097bda9262" + integrity sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg== dependencies: "@typescript-eslint/experimental-utils" "^4.0.1" eslint-plugin-jsdoc@^35.4.1: - version "35.4.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.1.tgz#7fb2a8c9bd8e304ab1feee48aa34544df5f79839" - integrity sha512-lnpu2Bj+ta2eAqwCWnb6f3Xjc78TWKo/oMCpDH5NfpPhYnePNtGZJzoAMgU5uo9BQqmXJ8pql8aiodOhg82ofw== + version "35.5.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.5.1.tgz#45932ee22669bbe06c97b82b936d56361efad370" + integrity sha512-pPYPWtsykwVEue1tYEyoppBj4dgF7XicF67tLLLraY6RQYBq7qMKjUHji19+hfiTtYKKBD0YfeK8hgjPAE5viw== dependencies: - "@es-joy/jsdoccomment" "^0.8.0" - comment-parser "1.1.5" - debug "^4.3.1" + "@es-joy/jsdoccomment" "0.9.0-alpha.1" + comment-parser "1.1.6-beta.0" + debug "^4.3.2" esquery "^1.4.0" jsdoc-type-pratt-parser "^1.0.4" lodash "^4.17.21" @@ -4827,53 +4800,7 @@ eslint-webpack-plugin@^2.5.2: normalize-path "^3.0.0" schema-utils "^3.0.0" -eslint@^7.11.0: - version "7.30.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.30.0.tgz#6d34ab51aaa56112fd97166226c9a97f505474f8" - integrity sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg== - dependencies: - "@babel/code-frame" "7.12.11" - "@eslint/eslintrc" "^0.4.2" - "@humanwhocodes/config-array" "^0.5.0" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.0.1" - doctrine "^3.0.0" - enquirer "^2.3.5" - escape-string-regexp "^4.0.0" - eslint-scope "^5.1.1" - eslint-utils "^2.1.0" - eslint-visitor-keys "^2.0.0" - espree "^7.3.1" - esquery "^1.4.0" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^5.1.2" - globals "^13.6.0" - ignore "^4.0.6" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^3.13.1" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.0.4" - natural-compare "^1.4.0" - optionator "^0.9.1" - progress "^2.0.0" - regexpp "^3.1.0" - semver "^7.2.1" - strip-ansi "^6.0.0" - strip-json-comments "^3.1.0" - table "^6.0.9" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -eslint@^7.32.0: +eslint@^7.11.0, eslint@^7.32.0: version "7.32.0" resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== @@ -5148,9 +5075,9 @@ fast-diff@^1.1.2: integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== fast-glob@^3.1.1: - version "3.2.6" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.6.tgz#434dd9529845176ea049acc9343e8282765c6e1a" - integrity sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ== + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -5298,9 +5225,9 @@ flat-cache@^3.0.4: rimraf "^3.0.2" flatted@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.0.tgz#da07fb8808050aba6fdeac2294542e5043583f05" - integrity sha512-XprP7lDrVT+kE2c2YlfiV+IfS9zxukiIOvNamPNsImNhXadSsQEbosItdL9bUQlCZXR13SvPk20BjWSWLA7m4A== + version "3.2.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" + integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== flatten@^1.0.2: version "1.0.3" @@ -5557,9 +5484,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.6.0, globals@^13.9.0: - version "13.9.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb" - integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA== + version "13.10.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.10.0.tgz#60ba56c3ac2ca845cfbf4faeca727ad9dd204676" + integrity sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g== dependencies: type-fest "^0.20.2" @@ -5599,9 +5526,9 @@ globby@^6.1.0: pinkie-promise "^2.0.0" graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: - version "4.2.6" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" - integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== + version "4.2.8" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== growly@^1.3.0: version "1.3.0" @@ -5658,6 +5585,13 @@ has-symbols@^1.0.1, has-symbols@^1.0.2: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" @@ -6129,11 +6063,12 @@ is-accessor-descriptor@^1.0.0: kind-of "^6.0.0" is-arguments@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" - integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== dependencies: - call-bind "^1.0.0" + call-bind "^1.0.2" + has-tostringtag "^1.0.0" is-arrayish@^0.2.1: version "0.2.1" @@ -6146,9 +6081,9 @@ is-arrayish@^0.3.1: integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== is-bigint@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a" - integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.3.tgz#fc9d9e364210480675653ddaea0518528d49a581" + integrity sha512-ZU538ajmYJmzysE5yU4Y7uIrPQ2j704u+hXFiIPQExpqzzUbpe5jCPdTfmz7jXRxZdvjY3KZ3ZNenoXQovX+Dg== is-binary-path@^1.0.0: version "1.0.1" @@ -6165,11 +6100,12 @@ is-binary-path@~2.1.0: binary-extensions "^2.0.0" is-boolean-object@^1.0.1, is-boolean-object@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8" - integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng== + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== dependencies: call-bind "^1.0.2" + has-tostringtag "^1.0.0" is-buffer@^1.1.5: version "1.1.6" @@ -6177,9 +6113,9 @@ is-buffer@^1.1.5: integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" - integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== + version "1.2.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== is-ci@^2.0.0: version "2.0.0" @@ -6201,9 +6137,9 @@ is-color-stop@^1.0.0: rgba-regex "^1.0.0" is-core-module@^2.0.0, is-core-module@^2.2.0, is-core-module@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" - integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A== + version "2.5.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491" + integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg== dependencies: has "^1.0.3" @@ -6222,9 +6158,11 @@ is-data-descriptor@^1.0.0: kind-of "^6.0.0" is-date-object@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5" - integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A== + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" is-descriptor@^0.1.0: version "0.1.6" @@ -6311,9 +6249,11 @@ is-negative-zero@^2.0.1: integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== is-number-object@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb" - integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw== + version "1.0.6" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" + integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== + dependencies: + has-tostringtag "^1.0.0" is-number@^3.0.0: version "3.0.0" @@ -6374,12 +6314,12 @@ is-potential-custom-element-name@^1.0.1: integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.0.4, is-regex@^1.0.5, is-regex@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f" - integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ== + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" - has-symbols "^1.0.2" + has-tostringtag "^1.0.0" is-regexp@^1.0.0: version "1.0.0" @@ -6402,14 +6342,16 @@ is-stream@^1.1.0: integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-string@^1.0.5, is-string@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f" - integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w== + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" is-subset@^0.1.1: version "0.1.1" @@ -6961,15 +6903,20 @@ js-yaml@^3.13.1: argparse "^1.0.7" esprima "^4.0.0" -jsdoc-type-pratt-parser@1.0.4, jsdoc-type-pratt-parser@^1.0.4: +jsdoc-type-pratt-parser@1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.0.4.tgz#5750d2d32ffb001866537d3baaedea7cf84c7036" integrity sha512-jzmW9gokeq9+bHPDR1nCeidMyFUikdZlbOhKzh9+/nJqB75XhpNKec1/UuxW5c4+O+Pi31Gc/dCboyfSm/pSpQ== +jsdoc-type-pratt-parser@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.1.1.tgz#10fe5e409ba38de22a48b555598955a26ff0160f" + integrity sha512-uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g== + jsdom@^16.4.0: - version "16.6.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.6.0.tgz#f79b3786682065492a3da6a60a4695da983805ac" - integrity sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg== + version "16.7.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" + integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== dependencies: abab "^2.0.5" acorn "^8.2.4" @@ -6996,7 +6943,7 @@ jsdom@^16.4.0: whatwg-encoding "^1.0.5" whatwg-mimetype "^2.3.0" whatwg-url "^8.5.0" - ws "^7.4.5" + ws "^7.4.6" xml-name-validator "^3.0.0" jsesc@^2.5.1: @@ -7046,7 +6993,7 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.1.2: +json5@^2.1.2, json5@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== @@ -7476,17 +7423,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.48.0, "mime-db@>= 1.43.0 < 2": - version "1.48.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" - integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== +mime-db@1.49.0, "mime-db@>= 1.43.0 < 2": + version "1.49.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" + integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA== mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24: - version "2.1.31" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" - integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg== + version "2.1.32" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" + integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A== dependencies: - mime-db "1.48.0" + mime-db "1.49.0" mime@1.6.0: version "1.6.0" @@ -7666,9 +7613,9 @@ multicast-dns@^6.0.1: thunky "^1.0.2" nan@^2.12.1: - version "2.14.2" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" - integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== + version "2.15.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" + integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== nanoid@^3.1.23: version "3.1.23" @@ -7803,10 +7750,10 @@ node-notifier@^8.0.0: uuid "^8.3.0" which "^2.0.2" -node-releases@^1.1.61, node-releases@^1.1.71: - version "1.1.73" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" - integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== +node-releases@^1.1.61, node-releases@^1.1.73: + version "1.1.74" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.74.tgz#e5866488080ebaa70a93b91144ccde06f3c3463e" + integrity sha512-caJBVempXZPepZoZAPCWRTNxYQ+xtG/KAi4ozTA5A+nJ7IU+kLQCbqaUjb5Rwy14M9upBWiQ4NutcmW04LJSRw== normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: version "2.5.0" @@ -7902,10 +7849,10 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-inspect@^1.10.3, object-inspect@^1.7.0, object-inspect@^1.9.0: - version "1.10.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" - integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw== +object-inspect@^1.11.0, object-inspect@^1.7.0, object-inspect@^1.9.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" + integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== object-is@^1.0.1, object-is@^1.0.2, object-is@^1.1.2: version "1.1.5" @@ -9075,9 +9022,9 @@ postcss@7.0.36, postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, pos supports-color "^6.1.0" postcss@^8.1.0: - version "8.3.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" - integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== + version "8.3.6" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea" + integrity sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A== dependencies: colorette "^1.2.2" nanoid "^3.1.23" @@ -9633,20 +9580,13 @@ recursive-readdir@2.2.2: dependencies: minimatch "3.0.4" -redux@4.1.1: +redux@4.1.1, redux@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.1.tgz#76f1c439bb42043f985fbd9bf21990e60bd67f47" integrity sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw== dependencies: "@babel/runtime" "^7.9.2" -redux@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz#eb049679f2f523c379f1aff345c8612f294c88d4" - integrity sha512-uI2dQN43zqLWCt6B/BMGRMY6db7TTY4qeHHfGeKb3EOhmOKjU3KdWvNLJyqaHRksv/ErdNH7cFZWg9jXtewy4g== - dependencies: - "@babel/runtime" "^7.9.2" - regenerate-unicode-properties@^8.2.0: version "8.2.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" @@ -9665,9 +9605,9 @@ regenerator-runtime@^0.11.0: integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: - version "0.13.7" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" - integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== + 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== regenerator-transform@^0.14.2: version "0.14.5" @@ -9845,7 +9785,7 @@ resolve@1.18.1: is-core-module "^2.0.0" path-parse "^1.0.6" -resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.20.0, resolve@^1.3.2, resolve@^1.8.1: +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.20.0, resolve@^1.3.2, resolve@^1.8.1: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== @@ -10082,11 +10022,11 @@ schema-utils@^2.6.5, schema-utils@^2.7.0, schema-utils@^2.7.1: ajv-keywords "^3.5.2" schema-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" - integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + version "3.1.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== dependencies: - "@types/json-schema" "^7.0.6" + "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" @@ -10451,9 +10391,9 @@ spdx-expression-parse@^3.0.0, spdx-expression-parse@^3.0.1: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.9" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" - integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== + version "3.0.10" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b" + integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA== spdy-transport@^3.0.0: version "3.0.0" @@ -10811,9 +10751,9 @@ tapable@^1.0.0, tapable@^1.1.3: integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== tar@^6.0.2: - version "6.1.0" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83" - integrity sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA== + version "6.1.7" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.7.tgz#c566d1107d38b09e92983a68db5534fc7f6cab42" + integrity sha512-PBoRkOJU0X3lejJ8GaRCsobjXTgFofRDSPdSUhRSdlwJfifRlQBwGXitDItdGFu0/h0XDMCkig0RN1iT7DBxhA== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" @@ -11025,12 +10965,11 @@ ts-pnp@1.2.0, ts-pnp@^1.1.6: integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== tsconfig-paths@^3.9.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" - integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== + version "3.10.1" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7" + integrity sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q== dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^2.2.0" minimist "^1.2.0" strip-bom "^3.0.0" @@ -11131,9 +11070,9 @@ typedarray@^0.0.6: integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= uglify-js@^3.1.4: - version "3.13.10" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz#a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d" - integrity sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg== + version "3.14.1" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.1.tgz#e2cb9fe34db9cb4cf7e35d1d26dfea28e09a7d06" + integrity sha512-JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g== unbox-primitive@^1.0.1: version "1.0.1" @@ -11264,9 +11203,9 @@ url-loader@4.1.1: schema-utils "^3.0.0" url-parse@^1.4.3, url-parse@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz#d5fa9890af8a5e1f274a2c98376510f6425f6e3b" - integrity sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q== + version "1.5.3" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.3.tgz#71c1303d38fb6639ade183c2992c8cc0686df862" + integrity sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ== dependencies: querystringify "^2.1.1" requires-port "^1.0.0" @@ -11831,10 +11770,10 @@ ws@^6.2.1: dependencies: async-limiter "~1.0.0" -ws@^7.4.5: - version "7.5.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.2.tgz#09cc8fea3bec1bc5ed44ef51b42f945be36900f6" - integrity sha512-lkF7AWRicoB9mAgjeKbGqVUekLnSNO4VjKVnuPHpQeOxZOErX6BPXwJk70nFslRCEEA8EVW7ZjKwXaP9N+1sKQ== +ws@^7.4.6: + version "7.5.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74" + integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg== xml-name-validator@^3.0.0: version "3.0.0" From 18e90a48eab06e258cb28cf5c9b5e7b826db610b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Wed, 11 Aug 2021 20:29:00 +0200 Subject: [PATCH 013/101] release: v4.0.0-beta.1 --- package.json | 2 +- public/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 74f6aa797..1e0dcff82 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@coreui/coreui-free-react-admin-template", "description": "CoreUI Free React Admin Template", - "version": "4.0.0-beta.0", + "version": "4.0.0-beta.1", "config": { "coreui_library_short_version": "4.0" }, diff --git a/public/index.html b/public/index.html index 7ef4dec76..7c3c32d8b 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,7 @@ + +### Platinum Sponsors + +Support this project by [becoming a Platinum Sponsor](https://opencollective.com/coreui/contribute/platinum-sponsor-40959/). A large company logo will be added here with a link to your website. + + + +### Gold Sponsors + +Support this project by [becoming a Gold Sponsor](https://opencollective.com/coreui/contribute/gold-sponsor-40960/). A big company logo will be added here with a link to your website. + + + +### Silver Sponsors + +Support this project by [becoming a Silver Sponsor](https://opencollective.com/coreui/contribute/silver-sponsor-40967/). A medium company logo will be added here with a link to your website. + + + +### Bronze Sponsors + +Support this project by [becoming a Bronze Sponsor](https://opencollective.com/coreui/contribute/bronze-sponsor-40966/). The company avatar will show up here with a link to your OpenCollective Profile. + + + +### Backers + +Thanks to all the backers and sponsors! Support this project by [becoming a backer](https://opencollective.com/coreui/contribute/backer-40965/). + + + + ## Copyright and License -copyright 2021 creativeLabs Łukasz Holeczek. +copyright 2022 creativeLabs Łukasz Holeczek. Code released under [the MIT license](https://github.com/coreui/coreui-free-react-admin-template/blob/master/LICENSE). There is only one limitation you can't can’t re-distribute the CoreUI as stock. You can’t do this if you modify the CoreUI. In past we faced some problems with persons who tried to sell CoreUI based templates. -## Support CoreUI Development - -CoreUI is an MIT licensed open source project and completely free to use. However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing. You can support development by buying [CoreUI Pro Version](https://coreui.io/pro/). - -We're also open to conversations regarding custom sponsorship / consulting arrangements. Get in touch on [Twitter](https://twitter.com/lukaszholeczek). From b7f962a3a9a02cea6944839621a5d2ff577564ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sat, 9 Jul 2022 17:11:16 +0200 Subject: [PATCH 087/101] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 6bc7a7f91..f1ea5ecf4 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,4 +1,4 @@ # These are supported funding model platforms -custom: "https://coreui.io/pro/" +custom: "https://coreui.io/pricing?support=react" open_collective: coreui From 31e296ecca7dc750cb66775f6e552c85816ede4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 10 Jul 2022 15:14:48 +0200 Subject: [PATCH 088/101] chore: update dependencies and devDependencies --- package.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index b85e6b5cb..411528a0d 100644 --- a/package.json +++ b/package.json @@ -23,38 +23,38 @@ "test:debug": "react-scripts --inspect-brk test --runInBand" }, "config": { - "coreui_library_short_version": "4.2" + "coreui_library_short_version": "4.3" }, "dependencies": { "@coreui/chartjs": "^3.0.0", - "@coreui/coreui": "^4.1.5", + "@coreui/coreui": "^4.2.0", "@coreui/icons": "^2.1.0", "@coreui/icons-react": "^2.1.0", - "@coreui/react": "^4.2.2", + "@coreui/react": "^4.3.0", "@coreui/react-chartjs": "^2.1.0", "@coreui/utils": "^1.3.1", - "chart.js": "^3.7.1", + "chart.js": "^3.8.0", "classnames": "^2.3.1", - "core-js": "^3.22.6", + "core-js": "^3.23.4", "prop-types": "^15.8.1", - "react": "^18.1.0", + "react": "^18.2.0", "react-app-polyfill": "^3.0.0", - "react-dom": "^18.1.0", + "react-dom": "^18.2.0", "react-redux": "^8.0.2", "react-router-dom": "^6.3.0", "redux": "4.2.0", - "simplebar-react": "^2.3.7" + "simplebar-react": "^2.4.1" }, "devDependencies": { "@testing-library/jest-dom": "^5.16.4", - "@testing-library/react": "^13.2.0", - "@testing-library/user-event": "^14.2.0", + "@testing-library/react": "^13.3.0", + "@testing-library/user-event": "^14.2.1", "auto-changelog": "~2.4.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-prettier": "^4.0.0", - "prettier": "2.6.2", + "eslint-plugin-prettier": "^4.2.1", + "prettier": "2.7.1", "react-scripts": "5.0.1", - "sass": "^1.52.1", + "sass": "^1.53.0", "web-vitals": "^2.1.4" }, "engines": { From 07d038ab6f21fcf76154d9c6d5c94b3b8dc3579f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 10 Jul 2022 15:15:37 +0200 Subject: [PATCH 089/101] refactor: remove docs version from urls --- package.json | 3 --- src/components/DocsCallout.js | 4 +--- src/components/DocsExample.js | 4 +--- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 411528a0d..8449596e5 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,6 @@ "test:cov": "npm test -- --coverage --watchAll=false", "test:debug": "react-scripts --inspect-brk test --runInBand" }, - "config": { - "coreui_library_short_version": "4.3" - }, "dependencies": { "@coreui/chartjs": "^3.0.0", "@coreui/coreui": "^4.2.0", diff --git a/src/components/DocsCallout.js b/src/components/DocsCallout.js index 0af7ccd46..926ebfc43 100644 --- a/src/components/DocsCallout.js +++ b/src/components/DocsCallout.js @@ -2,14 +2,12 @@ import PropTypes from 'prop-types' import React from 'react' import { CCallout, CLink } from '@coreui/react' -import packageJson from '../../package.json' - const DocsCallout = (props) => { const { content, href, name } = props const plural = name.slice(-1) === 's' ? true : false - const _href = `https://coreui.io/react/docs/${packageJson.config.coreui_library_short_version}/${href}` + const _href = `https://coreui.io/react/docs/${href}` return ( diff --git a/src/components/DocsExample.js b/src/components/DocsExample.js index 5636da7f1..3340cbc80 100644 --- a/src/components/DocsExample.js +++ b/src/components/DocsExample.js @@ -4,12 +4,10 @@ import { CNav, CNavItem, CNavLink, CTabContent, CTabPane } from '@coreui/react' import CIcon from '@coreui/icons-react' import { cilCode, cilMediaPlay } from '@coreui/icons' -import packageJson from '../../package.json' - const DocsExample = (props) => { const { children, href } = props - const _href = `https://coreui.io/react/docs/${packageJson.config.coreui_library_short_version}/${href}` + const _href = `https://coreui.io/react/docs/${href}` return (
From 8700f05a6c6bfa719f54a14b5090b0126f6652bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 10 Jul 2022 15:27:38 +0200 Subject: [PATCH 090/101] refactor: add link to documenation --- src/_nav.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/_nav.js b/src/_nav.js index f6c671725..8f3d730db 100644 --- a/src/_nav.js +++ b/src/_nav.js @@ -5,6 +5,7 @@ import { cilCalculator, cilChartPie, cilCursor, + cilDescription, cilDrop, cilNotes, cilPencil, @@ -293,6 +294,12 @@ const _nav = [ }, ], }, + { + component: CNavItem, + name: 'Docs', + href: 'https://coreui.io/react/docs/templates/installation/', + icon: , + }, ] export default _nav From f0f79cfca9498fbfea2e96d7bdf418552d6a8514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 10 Jul 2022 23:28:08 +0200 Subject: [PATCH 091/101] chore: clean-uo --- src/views/base/accordion/Accordion.js | 5 +---- src/views/base/breadcrumbs/Breadcrumbs.js | 5 +---- src/views/base/cards/Cards.js | 5 +---- src/views/base/carousels/Carousels.js | 5 +---- src/views/base/collapses/Collapses.js | 5 +---- src/views/base/list-groups/ListGroups.js | 5 +---- src/views/base/navs/Navs.js | 5 +---- src/views/base/paginations/Paginations.js | 5 +---- src/views/base/placeholders/Placeholders.js | 5 +---- src/views/base/popovers/Popovers.js | 5 +---- src/views/base/progress/Progress.js | 5 +---- src/views/base/spinners/Spinners.js | 5 +---- src/views/base/tables/Tables.js | 5 +---- src/views/base/tooltips/Tooltips.js | 5 +---- src/views/buttons/button-groups/ButtonGroups.js | 5 +---- src/views/buttons/buttons/Buttons.js | 5 +---- src/views/buttons/dropdowns/Dropdowns.js | 5 +---- src/views/forms/checks-radios/ChecksRadios.js | 5 +---- src/views/forms/floating-labels/FloatingLabels.js | 5 +---- src/views/forms/form-control/FormControl.js | 5 +---- src/views/forms/input-group/InputGroup.js | 5 +---- src/views/forms/range/Range.js | 5 +---- src/views/forms/select/Select.js | 5 +---- src/views/forms/validation/Validation.js | 5 +---- src/views/notifications/alerts/Alerts.js | 5 +---- src/views/notifications/badges/Badges.js | 5 +---- src/views/notifications/modals/Modals.js | 5 +---- src/views/notifications/toasts/Toasts.js | 5 +---- 28 files changed, 28 insertions(+), 112 deletions(-) diff --git a/src/views/base/accordion/Accordion.js b/src/views/base/accordion/Accordion.js index 943d1711e..21e88215b 100644 --- a/src/views/base/accordion/Accordion.js +++ b/src/views/base/accordion/Accordion.js @@ -10,14 +10,11 @@ import { CAccordionHeader, CAccordionItem, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Accordion = () => { return ( - - - diff --git a/src/views/base/breadcrumbs/Breadcrumbs.js b/src/views/base/breadcrumbs/Breadcrumbs.js index dd8e85b00..8ddd0cc0e 100644 --- a/src/views/base/breadcrumbs/Breadcrumbs.js +++ b/src/views/base/breadcrumbs/Breadcrumbs.js @@ -9,14 +9,11 @@ import { CRow, CLink, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Breadcrumbs = () => { return ( - - - diff --git a/src/views/base/cards/Cards.js b/src/views/base/cards/Cards.js index 7dd84c488..b9bdfffcd 100644 --- a/src/views/base/cards/Cards.js +++ b/src/views/base/cards/Cards.js @@ -19,16 +19,13 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' import ReactImg from 'src/assets/images/react.jpg' const Cards = () => { return ( - - - diff --git a/src/views/base/carousels/Carousels.js b/src/views/base/carousels/Carousels.js index e64a81c37..3f09b3b3e 100644 --- a/src/views/base/carousels/Carousels.js +++ b/src/views/base/carousels/Carousels.js @@ -9,7 +9,7 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' import AngularImg from 'src/assets/images/angular.jpg' import ReactImg from 'src/assets/images/react.jpg' @@ -24,9 +24,6 @@ const slidesLight = [ const Carousels = () => { return ( - - - diff --git a/src/views/base/collapses/Collapses.js b/src/views/base/collapses/Collapses.js index ef148d380..37e608e08 100644 --- a/src/views/base/collapses/Collapses.js +++ b/src/views/base/collapses/Collapses.js @@ -1,6 +1,6 @@ import React, { useState } from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CCollapse, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Collapses = () => { const [visible, setVisible] = useState(false) @@ -10,9 +10,6 @@ const Collapses = () => { return ( - - - diff --git a/src/views/base/list-groups/ListGroups.js b/src/views/base/list-groups/ListGroups.js index 282e40cf2..91cfbf1eb 100644 --- a/src/views/base/list-groups/ListGroups.js +++ b/src/views/base/list-groups/ListGroups.js @@ -10,14 +10,11 @@ import { CListGroupItem, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const ListGroups = () => { return ( - - - diff --git a/src/views/base/navs/Navs.js b/src/views/base/navs/Navs.js index 5beadd0fb..89310faf2 100644 --- a/src/views/base/navs/Navs.js +++ b/src/views/base/navs/Navs.js @@ -13,14 +13,11 @@ import { CNavItem, CNavLink, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Navs = () => { return ( - - - diff --git a/src/views/base/paginations/Paginations.js b/src/views/base/paginations/Paginations.js index cf14e0ad0..f85961504 100644 --- a/src/views/base/paginations/Paginations.js +++ b/src/views/base/paginations/Paginations.js @@ -8,14 +8,11 @@ import { CPaginationItem, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Paginations = () => { return ( - - - diff --git a/src/views/base/placeholders/Placeholders.js b/src/views/base/placeholders/Placeholders.js index 99c88b792..5342f2214 100644 --- a/src/views/base/placeholders/Placeholders.js +++ b/src/views/base/placeholders/Placeholders.js @@ -11,16 +11,13 @@ import { CPlaceholder, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' import ReactImg from 'src/assets/images/react.jpg' const Placeholders = () => { return ( - - - diff --git a/src/views/base/popovers/Popovers.js b/src/views/base/popovers/Popovers.js index 277f5467f..8d98e0def 100644 --- a/src/views/base/popovers/Popovers.js +++ b/src/views/base/popovers/Popovers.js @@ -1,13 +1,10 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CPopover, CRow, CCol } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Popovers = () => { return ( - - - diff --git a/src/views/base/progress/Progress.js b/src/views/base/progress/Progress.js index 07cd7d206..42b9819f3 100644 --- a/src/views/base/progress/Progress.js +++ b/src/views/base/progress/Progress.js @@ -1,13 +1,10 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CProgress, CProgressBar, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Progress = () => { return ( - - - diff --git a/src/views/base/spinners/Spinners.js b/src/views/base/spinners/Spinners.js index 8833aa7ec..918c2713a 100644 --- a/src/views/base/spinners/Spinners.js +++ b/src/views/base/spinners/Spinners.js @@ -1,13 +1,10 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CSpinner, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Accordion = () => { return ( - - - diff --git a/src/views/base/tables/Tables.js b/src/views/base/tables/Tables.js index 57997517b..f06843d0b 100644 --- a/src/views/base/tables/Tables.js +++ b/src/views/base/tables/Tables.js @@ -13,14 +13,11 @@ import { CTableHeaderCell, CTableRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Tables = () => { return ( - - - diff --git a/src/views/base/tooltips/Tooltips.js b/src/views/base/tooltips/Tooltips.js index de6020bb8..bdb4d9aac 100644 --- a/src/views/base/tooltips/Tooltips.js +++ b/src/views/base/tooltips/Tooltips.js @@ -1,13 +1,10 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CLink, CTooltip, CRow, CCol } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Tooltips = () => { return ( - - - diff --git a/src/views/buttons/button-groups/ButtonGroups.js b/src/views/buttons/button-groups/ButtonGroups.js index c6aeb54ce..d48eb0071 100644 --- a/src/views/buttons/button-groups/ButtonGroups.js +++ b/src/views/buttons/button-groups/ButtonGroups.js @@ -18,14 +18,11 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const ButtonGroups = () => { return ( - - - diff --git a/src/views/buttons/buttons/Buttons.js b/src/views/buttons/buttons/Buttons.js index d7b9e74c6..48f6fcf75 100644 --- a/src/views/buttons/buttons/Buttons.js +++ b/src/views/buttons/buttons/Buttons.js @@ -2,14 +2,11 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CRow } from '@coreui/react' import CIcon from '@coreui/icons-react' import { cilBell } from '@coreui/icons' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Buttons = () => { return ( - - - diff --git a/src/views/buttons/dropdowns/Dropdowns.js b/src/views/buttons/dropdowns/Dropdowns.js index bc688956c..414f651fc 100644 --- a/src/views/buttons/dropdowns/Dropdowns.js +++ b/src/views/buttons/dropdowns/Dropdowns.js @@ -13,14 +13,11 @@ import { CDropdownToggle, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Dropdowns = () => { return ( - - - diff --git a/src/views/forms/checks-radios/ChecksRadios.js b/src/views/forms/checks-radios/ChecksRadios.js index 84dcd6393..f35862ec1 100644 --- a/src/views/forms/checks-radios/ChecksRadios.js +++ b/src/views/forms/checks-radios/ChecksRadios.js @@ -1,13 +1,10 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormCheck, CFormSwitch, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const ChecksRadios = () => { return ( - - - diff --git a/src/views/forms/floating-labels/FloatingLabels.js b/src/views/forms/floating-labels/FloatingLabels.js index 1acafb448..d40f5b35c 100644 --- a/src/views/forms/floating-labels/FloatingLabels.js +++ b/src/views/forms/floating-labels/FloatingLabels.js @@ -11,14 +11,11 @@ import { CFormTextarea, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const FloatingLabels = () => { return ( - - - diff --git a/src/views/forms/form-control/FormControl.js b/src/views/forms/form-control/FormControl.js index b064bff89..9bdb1076a 100644 --- a/src/views/forms/form-control/FormControl.js +++ b/src/views/forms/form-control/FormControl.js @@ -11,14 +11,11 @@ import { CFormTextarea, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const FormControl = () => { return ( - - - diff --git a/src/views/forms/input-group/InputGroup.js b/src/views/forms/input-group/InputGroup.js index 427714ac6..4b9da78db 100644 --- a/src/views/forms/input-group/InputGroup.js +++ b/src/views/forms/input-group/InputGroup.js @@ -19,14 +19,11 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Select = () => { return ( - - - diff --git a/src/views/forms/range/Range.js b/src/views/forms/range/Range.js index 0cdb5b693..905c3134d 100644 --- a/src/views/forms/range/Range.js +++ b/src/views/forms/range/Range.js @@ -1,13 +1,10 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormLabel, CFormRange, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Range = () => { return ( - - - diff --git a/src/views/forms/select/Select.js b/src/views/forms/select/Select.js index eccf1c1fe..e81f6a568 100644 --- a/src/views/forms/select/Select.js +++ b/src/views/forms/select/Select.js @@ -1,13 +1,10 @@ import React from 'react' import { CCard, CCardBody, CCardHeader, CCol, CFormSelect, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Select = () => { return ( - - - diff --git a/src/views/forms/validation/Validation.js b/src/views/forms/validation/Validation.js index 160fa953c..7053aa3b3 100644 --- a/src/views/forms/validation/Validation.js +++ b/src/views/forms/validation/Validation.js @@ -16,7 +16,7 @@ import { CInputGroupText, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const CustomStyles = () => { const [validated, setValidated] = useState(false) @@ -252,9 +252,6 @@ const Tooltips = () => { const Validation = () => { return ( - - - diff --git a/src/views/notifications/alerts/Alerts.js b/src/views/notifications/alerts/Alerts.js index 7cb442c3a..6d0200b74 100644 --- a/src/views/notifications/alerts/Alerts.js +++ b/src/views/notifications/alerts/Alerts.js @@ -9,14 +9,11 @@ import { CCol, CRow, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Alerts = () => { return ( - - - diff --git a/src/views/notifications/badges/Badges.js b/src/views/notifications/badges/Badges.js index f8d4c0d82..f2c63b58d 100644 --- a/src/views/notifications/badges/Badges.js +++ b/src/views/notifications/badges/Badges.js @@ -1,13 +1,10 @@ import React from 'react' import { CButton, CCard, CCardBody, CCardHeader, CCol, CBadge, CRow } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const Badges = () => { return ( - - - diff --git a/src/views/notifications/modals/Modals.js b/src/views/notifications/modals/Modals.js index 4d582883f..fcd31116b 100644 --- a/src/views/notifications/modals/Modals.js +++ b/src/views/notifications/modals/Modals.js @@ -15,7 +15,7 @@ import { CRow, CTooltip, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const LiveDemo = () => { const [visible, setVisible] = useState(false) @@ -460,9 +460,6 @@ const FullscreenModal = () => { const Modals = () => { return ( - - - diff --git a/src/views/notifications/toasts/Toasts.js b/src/views/notifications/toasts/Toasts.js index 50489cede..09422abbf 100644 --- a/src/views/notifications/toasts/Toasts.js +++ b/src/views/notifications/toasts/Toasts.js @@ -12,7 +12,7 @@ import { CToastHeader, CToaster, } from '@coreui/react' -import { DocsCallout, DocsExample } from 'src/components' +import { DocsExample } from 'src/components' const ExampleToast = () => { const [toast, addToast] = useState(0) @@ -48,9 +48,6 @@ const ExampleToast = () => { const Toasts = () => { return ( - - - From 4ca8dfc3bed0dc3d9b40820e8d60b8f94d023369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 10 Jul 2022 23:37:20 +0200 Subject: [PATCH 092/101] release: v4.4.0 --- package.json | 4 ++-- public/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8449596e5..5117bbd64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@coreui/coreui-free-react-admin-template", - "version": "4.3.1", + "version": "4.4.0", "description": "CoreUI Free React Admin Template", "homepage": ".", "bugs": { @@ -14,7 +14,7 @@ "author": "The CoreUI Team (https://github.com/orgs/coreui/people)", "scripts": { "build": "react-scripts build", - "changelog": "auto-changelog --starting-version 4.3.1 --commit-limit false --hide-credit", + "changelog": "auto-changelog --starting-version 4.4.0 --commit-limit false --hide-credit", "eject": "react-scripts eject", "lint": "eslint \"src/**/*.js\"", "start": "react-scripts start", diff --git a/public/index.html b/public/index.html index e017911e4..c148491cc 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,7 @@ From 8b596861d59f8b523fa4de90f66caeceb84eb867 Mon Sep 17 00:00:00 2001 From: mrholek Date: Thu, 29 Jun 2023 12:58:47 +0200 Subject: [PATCH 100/101] chore: update dependencies and devDependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @coreui/chartjs ^3.1.1 → ^3.1.2 @coreui/react ^4.6.0 → ^4.8.0 @coreui/react-chartjs ^2.1.2 → ^2.1.3 @coreui/utils ^2.0.1 → ^2.0.2 core-js ^3.29.0 → ^3.31.0 eslint-config-prettier ^8.7.0 → ^8.8.0 prettier 2.8.4 → 2.8.8 react-redux ^8.0.5 → ^8.1.1 react-router-dom ^6.8.2 → ^6.14.0 sass ^1.58.3 → ^1.63.6 web-vitals ^3.1.1 → ^3.3.2 --- package.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index da08efaab..d6e40d776 100644 --- a/package.json +++ b/package.json @@ -22,22 +22,22 @@ "test:debug": "react-scripts --inspect-brk test --runInBand" }, "dependencies": { - "@coreui/chartjs": "^3.1.1", + "@coreui/chartjs": "^3.1.2", "@coreui/coreui": "^4.2.6", "@coreui/icons": "^3.0.1", "@coreui/icons-react": "^2.1.0", - "@coreui/react": "^4.6.0", - "@coreui/react-chartjs": "^2.1.2", - "@coreui/utils": "^2.0.1", + "@coreui/react": "^4.9.0-rc.0", + "@coreui/react-chartjs": "^2.1.3", + "@coreui/utils": "^2.0.2", "chart.js": "^3.9.1", "classnames": "^2.3.2", - "core-js": "^3.29.0", + "core-js": "^3.31.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-app-polyfill": "^3.0.0", "react-dom": "^18.2.0", - "react-redux": "^8.0.5", - "react-router-dom": "^6.8.2", + "react-redux": "^8.1.1", + "react-router-dom": "^6.14.0", "redux": "4.2.1", "simplebar-react": "^2.4.3" }, @@ -45,12 +45,12 @@ "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", "@testing-library/user-event": "^14.4.3", - "eslint-config-prettier": "^8.7.0", + "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", - "prettier": "2.8.4", + "prettier": "2.8.8", "react-scripts": "5.0.1", - "sass": "^1.58.3", - "web-vitals": "^3.1.1" + "sass": "^1.63.6", + "web-vitals": "^3.3.2" }, "engines": { "node": ">=10", From 3ee6de47c15098c32a50857b6d146eec934b08b9 Mon Sep 17 00:00:00 2001 From: mrholek Date: Thu, 29 Jun 2023 13:07:07 +0200 Subject: [PATCH 101/101] chore: update comments --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index b25132580..21d293335 100644 --- a/public/index.html +++ b/public/index.html @@ -2,9 +2,9 @@