diff --git a/.eslintignore b/.eslintignore
index e1311fb1..f623800d 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,3 +1,2 @@
-/.docz/**
/dist/**
.eslintrc.js
\ No newline at end of file
diff --git a/.eslintrc.js b/.eslintrc.js
index 3e68164a..2f74cc21 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,25 +1,72 @@
+/**
+ * Copyright (c) 2013-present, creativeLabs Lukasz Holeczek.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+'use strict'
+
module.exports = {
- parser: '@typescript-eslint/parser', // Specifies the ESLint parser
+ root: true, // So parent files don't get applied
+ env: {
+ es6: true,
+ browser: true,
+ node: true,
+ },
+ extends: [
+ 'plugin:react/recommended',
+ 'plugin:@typescript-eslint/recommended',
+ 'plugin:prettier/recommended',
+ 'plugin:unicorn/recommended',
+ ],
+ parser: '@typescript-eslint/parser',
parserOptions: {
- ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
- sourceType: 'module', // Allows for the use of imports
+ ecmaVersion: 2020,
+ sourceType: 'module',
ecmaFeatures: {
- jsx: true, // Allows for the parsing of JSX
+ jsx: true,
},
},
+ plugins: ['@typescript-eslint', 'react', 'react-hooks'],
settings: {
react: {
- version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
+ pragma: 'React',
+ version: 'detect',
},
},
- extends: [
- 'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
- 'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
- 'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
- ],
- plugins: ['jsdoc', '@typescript-eslint', 'react', 'react-hooks'],
rules: {
- // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
- // e.g. "@typescript-eslint/explicit-function-return-type": "off",
+ 'unicorn/filename-case': 'off',
+ 'unicorn/no-array-for-each': 'off',
+ 'unicorn/no-null': 'off',
+ 'unicorn/prefer-dom-node-append': 'off',
+ 'unicorn/prefer-export-from': 'off',
+ 'unicorn/prefer-query-selector': 'off',
+ 'unicorn/prevent-abbreviations': 'off',
},
+ overrides: [
+ {
+ files: ['packages/docs/build/**'],
+ env: {
+ browser: false,
+ node: true,
+ },
+ parserOptions: {
+ sourceType: 'script',
+ },
+ rules: {
+ '@typescript-eslint/no-var-requires': 'off',
+ 'no-console': 'off',
+ 'unicorn/prefer-module': 'off',
+ 'unicorn/prefer-top-level-await': 'off',
+ },
+ },
+ {
+ files: ['packages/docs/**'],
+ rules: {
+ '@typescript-eslint/no-var-requires': 'off',
+ 'unicorn/prefer-module': 'off',
+ },
+ },
+ ],
}
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index ddf49052..544d42d2 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,4 @@
# These are supported funding model platforms
-custom: "https://coreui.io/pro/"
+custom: "https://coreui.io/pricing/?support=true"
+open_collective: coreui
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 9be6f82b..87980fbc 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -11,7 +11,7 @@ Before opening:
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-react/issues?utf8=%E2%9C%93&q=is%3Aissue)
- [Validate](https://html5.validator.nu/) any HTML to avoid common problems
-- Read the [contributing guidelines](https://github.com/coreui/coreui-react/blob/v4-dev/.github/CONTRIBUTING.md)
+- Read the [contributing guidelines](https://github.com/coreui/coreui-react/blob/main/.github/CONTRIBUTING.md)
Bug reports must include:
diff --git a/.github/SUPPORT.md b/.github/SUPPORT.md
index 3d3cbbe5..9d4da715 100644
--- a/.github/SUPPORT.md
+++ b/.github/SUPPORT.md
@@ -6,4 +6,4 @@ See the [contributing guidelines](CONTRIBUTING.md) for sharing bug reports.
For general troubleshooting or help getting started:
-- Join [the official community](https://community.coreui.io/).
+- Join [GitHub Discussions](https://github.com/coreui/coreui-react/discussions/).
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 00000000..ae659d2c
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,27 @@
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
+#
+# You can adjust the behavior by modifying this file.
+# For more information, see:
+# https://github.com/actions/stale
+name: Mark stale issues and pull requests
+
+on:
+ schedule:
+ - cron: '18 14 * * *'
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+
+ steps:
+ - uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions'
+ stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions'
+ stale-issue-label: 'no-issue-activity'
+ stale-pr-label: 'no-pr-activity'
diff --git a/.gitignore b/.gitignore
index 68d990b0..70f24f47 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,33 @@
-.docz
+.cache
coverage/
+dist/
node_modules/
+public/
+yarn.lock
+
+# IDEs and editors
+.idea/
+
+# Visual Studio Code
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+.history/*
+
+# System files
+.DS_Store
+Thumbs.db
+
+# Numerous always-ignore extensions
+*.diff
+*.err
+*.log
+*.orig
+*.rej
+*.swo
+*.swp
+*.vi
+*.zip
+*~
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 00000000..d6139f86
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,8 @@
+[submodule "packages/coreui-react-chartjs"]
+ path = packages/coreui-react-chartjs
+ url = https://github.com/coreui/coreui-react-chartjs.git
+ branch = main
+[submodule "packages/coreui-icons-react"]
+ path = packages/coreui-icons-react
+ url = https://github.com/coreui/coreui-icons-react.git
+ branch = main
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 7552ce55..00000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,451 +0,0 @@
-### Changelog
-
-#### [4.0.0-alpha.0](https://github.com/coreui/coreui-react/compare/3.4.3...4.0.0-alpha.0)
-
-> 14 April 2021
-
-- Initial release for CoreUI 4 for React.js
-#### [3.4.4](https://github.com/coreui/coreui-react/compare/3.4.3...3.4.4)
-
-> 19 January 2021
-
-- test(CModal): update test, snapshots and story [`c797328`](https://github.com/coreui/coreui-react/commit/c7973286896a7e354ba64ee7b81a78fbf35e19e4)
-- chore: dependencies update [`852c9c8`](https://github.com/coreui/coreui-react/commit/852c9c830108c303796ea677b890a614cdb38270)
-- added scrollable prop to CModal - uses modal-dialog-scrollable from Bootstrap [`1b3a019`](https://github.com/coreui/coreui-react/commit/1b3a019f12561b625567e805f4d489b3e79a1da1)
-- fix(CModal): add missing modal-dialog-scrollable - thanks @ljuborados [`9d480af`](https://github.com/coreui/coreui-react/commit/9d480afbe6d619c51abd152fc332b3c09974b2da)
-
-#### [3.4.3](https://github.com/coreui/coreui-react/compare/3.4.2...3.4.3)
-
-> 22 December 2020
-
-- fix(CDataTable): correct itemsPerPageSelect padding [`#171`](https://github.com/coreui/coreui-react/pull/171)
-- fix(CDataTable): tableFilter and cleaner minor cleanup [`1b5079f`](https://github.com/coreui/coreui-react/commit/1b5079f76020d579d2edc00da20edec0956521bf)
-- chore(release): 3.4.3 [`72497b6`](https://github.com/coreui/coreui-react/commit/72497b696f8f90694fc953c5d047511c14c351d1)
-
-#### [3.4.2](https://github.com/coreui/coreui-react/compare/3.4.1...3.4.2)
-
-> 18 December 2020
-
-- fix(CToast): add missing color prop [`f48c98c`](https://github.com/coreui/coreui-react/commit/f48c98cf7f66ed3089730fbb37da5d0c4a975563)
-- chore(release): 3.4.2 [`939098f`](https://github.com/coreui/coreui-react/commit/939098f265dc9fe8d908995db369bae3f3c65ef9)
-
-#### [3.4.1](https://github.com/coreui/coreui-react/compare/3.4.0...3.4.1)
-
-> 18 December 2020
-
-- fix(index.d.ts): CDropdownDivider and CDropdownHeader not defined [`#170`](https://github.com/coreui/coreui-react/issues/170)
-- chore(release): 3.4.1 [`cdb9aa7`](https://github.com/coreui/coreui-react/commit/cdb9aa7e247fbfb7053a7ad1e9ca2917b2c6640b)
-- chore: dependencies update [`4ae0d80`](https://github.com/coreui/coreui-react/commit/4ae0d80405a4093bd8d1545a1ea7006f33665f9e)
-
-#### [3.4.0](https://github.com/coreui/coreui-react/compare/3.4.0-beta.0...3.4.0)
-
-> 11 December 2020
-
-- chore: 3.4.0 version release for React 17 [`ddaea52`](https://github.com/coreui/coreui-react/commit/ddaea52b12d05825e56f79275e30132b14b8db2b)
-- fix(CWidgetBrand): addHeaderClass bad PropTypes [`d2c102b`](https://github.com/coreui/coreui-react/commit/d2c102b50f0b15a89a2a66334923798b267ddeea)
-- chore: dependencies update [`8b7abe8`](https://github.com/coreui/coreui-react/commit/8b7abe8716aec3aa3757a1e25067931253c14c6f)
-
-#### [3.4.0-beta.0](https://github.com/coreui/coreui-react/compare/3.3.6...3.4.0-beta.0)
-
-> 10 December 2020
-
-- test: enzyme-adapter-react-17 temp fix [`9a93f26`](https://github.com/coreui/coreui-react/commit/9a93f2610254f5584eb5e8f70b34a8456b3a2dc8)
-- chore: update to React 17 and dependencies [`dc7e219`](https://github.com/coreui/coreui-react/commit/dc7e219546b6c2a41a060042ce619e84fb1140ae)
-- test(CToast): use act() from react-dom/test-utils [`fce83f8`](https://github.com/coreui/coreui-react/commit/fce83f810768ed67a27acc2f9b10c4e845d91092)
-- fix(stories): className [`ab3348a`](https://github.com/coreui/coreui-react/commit/ab3348a5aac8eb008c23a5cc6292a7836353a311)
-- test(CDataTable): snap update className fix [`d6e58d5`](https://github.com/coreui/coreui-react/commit/d6e58d5003426184e632071d9a8fe2e38b73baad)
-- fix(CWidgetBrand): addHeaderClass bad PropTypes [`937a713`](https://github.com/coreui/coreui-react/commit/937a71394614d8bd66524900fdd415d8dc6f5918)
-
-#### [3.3.6](https://github.com/coreui/coreui-react/compare/3.3.5...3.3.6)
-
-> 10 December 2020
-
-- fix(CWidgetBrand): addHeaderClass bad PropTypes [`d2c102b`](https://github.com/coreui/coreui-react/commit/d2c102b50f0b15a89a2a66334923798b267ddeea)
-- 3.3.6 version release [`7fc09a3`](https://github.com/coreui/coreui-react/commit/7fc09a343da9b623548ebc99cddd5fe9bf40c956)
-- fix(stories): className [`ab3348a`](https://github.com/coreui/coreui-react/commit/ab3348a5aac8eb008c23a5cc6292a7836353a311)
-
-#### [3.3.5](https://github.com/coreui/coreui-react/compare/3.3.4...3.3.5)
-
-> 9 December 2020
-
-- test: add github actions project check [`552a1fd`](https://github.com/coreui/coreui-react/commit/552a1fd7a7dfe5273f55ed1445e98651df80928e)
-- 3.3.5 version release [`757f523`](https://github.com/coreui/coreui-react/commit/757f523cdac052fab1735d7ada274fc417d8021f)
-- fix(CDataTable): missing select perPageItems initial value [`eaca895`](https://github.com/coreui/coreui-react/commit/eaca8955913fafe0f6100952e98ebf7afd34c32b)
-- chore: dependencies update [`41f3899`](https://github.com/coreui/coreui-react/commit/41f38999bb2e32c80d23a425c66cb79bca3ec363)
-
-#### [3.3.4](https://github.com/coreui/coreui-react/compare/3.3.3...3.3.4)
-
-> 26 November 2020
-
-- chore: dependencies update [`7ded326`](https://github.com/coreui/coreui-react/commit/7ded3260c88bae4fda149cf2037c4f0cb5f75d9f)
-- chore: update changelog [`86cec07`](https://github.com/coreui/coreui-react/commit/86cec0727dc56160eadc71fb82b97dc5a460659b)
-- chore: 3.3.4 version release [`dea91fc`](https://github.com/coreui/coreui-react/commit/dea91fcac3e890c8ed3deeee5b386cf8d25547b4)
-
-#### [3.3.3](https://github.com/coreui/coreui-react/compare/3.3.2...3.3.3)
-
-> 4 November 2020
-
-- chore: dependencies update [`a53dbdc`](https://github.com/coreui/coreui-react/commit/a53dbdce08a200aacb52ab935b43dc480d85d327)
-- fix(Modal): missing className prop [`7bbc5fd`](https://github.com/coreui/coreui-react/commit/7bbc5fdd06d9a3de4cc56ac57e80dc4c4ef8fa45)
-- chore: 3.3.3 version release [`0022dc8`](https://github.com/coreui/coreui-react/commit/0022dc81ddf306aefdec0023d3c2f2c0cc8e7000)
-
-#### [3.3.2](https://github.com/coreui/coreui-react/compare/3.3.1...3.3.2)
-
-> 24 October 2020
-
-- chore: 3.3.2 version release [`fbf5379`](https://github.com/coreui/coreui-react/commit/fbf537971f7e83729832939ec979818d9a608dfe)
-- chore: dependencies update [`b3b5410`](https://github.com/coreui/coreui-react/commit/b3b54105bfc31cd60c84ce7418f5e1dced19ad6c)
-- test: fix test configuration, update snapshots [`81a4d7f`](https://github.com/coreui/coreui-react/commit/81a4d7f5f38cbee457ca4368fb1e40cbffb09cf8)
-- test: update tabs tests [`39b4284`](https://github.com/coreui/coreui-react/commit/39b4284b98cb507c6a83860f218f42a559d99532)
-- chore: delete test snapshots from es build [`b40c300`](https://github.com/coreui/coreui-react/commit/b40c300261b91c440543fbb477fc8ed6738cc2a9)
-- test: fix tooltip tests [`44839c9`](https://github.com/coreui/coreui-react/commit/44839c97fab34d645e424f33cec5e6bd18d525e3)
-- test: comment out some broken tests as todo [`64f7387`](https://github.com/coreui/coreui-react/commit/64f73871ff1c33f07adffc058c161e517db29167)
-- fix: CTabPane: fix 'active' prop, refactor component [`7fa04f8`](https://github.com/coreui/coreui-react/commit/7fa04f8311b7820e2b50a657d538f8d5a18c188e)
-- chore: exclude test files from es build [`cf34f54`](https://github.com/coreui/coreui-react/commit/cf34f549844d842d67e95da0f8ce98adc1e32549)
-- chore: update changelog [`edd558a`](https://github.com/coreui/coreui-react/commit/edd558a05dcbe7219cfdbff18b793c70b586147d)
-- chore: Merge branch 'dev-tests' into dev [`b47d3d5`](https://github.com/coreui/coreui-react/commit/b47d3d57de935dc753ed6b991828db067bdabcce)
-- chore: Merge branch 'dev-storybook' into dev [`27c4629`](https://github.com/coreui/coreui-react/commit/27c462980c3845d204c48f14eece0618b2021430)
-
-#### [3.3.1](https://github.com/coreui/coreui-react/compare/3.3.0...3.3.1)
-
-> 15 October 2020
-
-- chore: 3.3.1 version release [`abbe01f`](https://github.com/coreui/coreui-react/commit/abbe01f61b1c38cd764bb3e4ebbfa11ec10127a3)
-- chore: dependencies update [`93397ae`](https://github.com/coreui/coreui-react/commit/93397ae968cd4e11c6780b2ed7a00cacea74e2e9)
-- fix(CSidebar): onShowChange callback behavior overwritten for overlaid [`c463ea5`](https://github.com/coreui/coreui-react/commit/c463ea566e3b997d3926781f13273fcd66bf7065)
-- fix(CSidebar): add missing xxl breakpoint [`9c84573`](https://github.com/coreui/coreui-react/commit/9c84573511feeff615bee105a5cb2a0ced8fc5a6)
-
-#### [3.3.0](https://github.com/coreui/coreui-react/compare/3.2.3...3.3.0)
-
-> 4 September 2020
-
-- fix: CSidebarNavItem/CSidebarNavDropdown: accessibility fixes #141 [`#141`](https://github.com/coreui/coreui-react/issues/141)
-- chore: 3.3.0 version release - update dependencies [`b3be47d`](https://github.com/coreui/coreui-react/commit/b3be47da28c8813e273bc00af73f552589c7e52f)
-- refactor: CSidebar: clearify component [`02b6b0d`](https://github.com/coreui/coreui-react/commit/02b6b0d3b3d60635f51cb6340200d88ca8610f93)
-- feat: CSidebar: close mobile/overlaid sidebar on 'esc' #141 [`4e35ed8`](https://github.com/coreui/coreui-react/commit/4e35ed83c9d14737e10fb732984f0f5f8ca4da49)
-- fix: CSidebar: close sidebar when click on `Item` in overlaid mode [`59d31b7`](https://github.com/coreui/coreui-react/commit/59d31b7a315c115891ef0be371decddd6d0af68d)
-- chore: update changelog [`5f71c83`](https://github.com/coreui/coreui-react/commit/5f71c8306e86fdea0097483a57475b5ddb7e43b5)
-- feat: CSidebarNavItem: allow passing nodes to 'name' prop #140 [`074c7e7`](https://github.com/coreui/coreui-react/commit/074c7e775543efc3a87c904f4c8704883127edb5)
-- fix: CSidebar: disable 'useCapture' in overlaid sidebar closing [`30e7004`](https://github.com/coreui/coreui-react/commit/30e7004dd8edb8e947048188911b8a20049375e8)
-- fix: CDataTable: add space in 'noItemsText' [`1d41870`](https://github.com/coreui/coreui-react/commit/1d41870ca606e0c628fc89854ad3aad6490cb839)
-
-#### [3.2.3](https://github.com/coreui/coreui-react/compare/3.2.2...3.2.3)
-
-> 11 August 2020
-
-- chore: 3.2.3 version release - update dependencies [`f238624`](https://github.com/coreui/coreui-react/commit/f23862495a8a3d7e394108361dbee2d61dcb94fb)
-- chore: update changelog [`77a9487`](https://github.com/coreui/coreui-react/commit/77a94872ebdfcf235b29de8e7a3712db0bceb19c)
-- fix: CDataTable: fix wrong class assignment in itemsPerPageSelect #138 [`8425052`](https://github.com/coreui/coreui-react/commit/8425052d2c7cb4a431a1611977da98cc0f21b64c)
-
-#### [3.2.2](https://github.com/coreui/coreui-react/compare/3.2.1...3.2.2)
-
-> 31 July 2020
-
-- chore: 3.2.2 release: update dependencies [`895f454`](https://github.com/coreui/coreui-react/commit/895f4545e0de72c103e1e20b082161c1f9fab1e5)
-- fix: CDataTable component fixes [`9dae2ab`](https://github.com/coreui/coreui-react/commit/9dae2ab32fc9dcc730b1214ecb777776f5346bf9)
-- fix: CSidebarNavDropdown: add possibility of component as `icon` [`03c4c32`](https://github.com/coreui/coreui-react/commit/03c4c3239f42b174c703f0ee5b0eef45761ceb9f)
-- chore: update changelog [`df6d3b9`](https://github.com/coreui/coreui-react/commit/df6d3b9664c72690a542a1804fcff9164cc80f42)
-
-#### [3.2.1](https://github.com/coreui/coreui-react/compare/3.2.0...3.2.1)
-
-> 30 July 2020
-
-- chore: 3.2.1 release: update dependencies [`40bba4d`](https://github.com/coreui/coreui-react/commit/40bba4db24b2c83416397c0b6e269a70df626641)
-- chore: update chengelog [`cebb691`](https://github.com/coreui/coreui-react/commit/cebb69100d950948baa9e305a865a0ac95bf89a4)
-- fix: CDataTable: fix isSortable method [`581e5a2`](https://github.com/coreui/coreui-react/commit/581e5a20019f8c4981e1a9ad1e9be30f46297789)
-
-#### [3.2.0](https://github.com/coreui/coreui-react/compare/3.1.0...3.2.0)
-
-> 28 July 2020
-
-- chore: fix changelog [`0c6b6cb`](https://github.com/coreui/coreui-react/commit/0c6b6cbb2ef18e5c48be345bdace9ba51595a0f0)
-- chore: add postinstall script [`acde502`](https://github.com/coreui/coreui-react/commit/acde5021d1925e901926171b3381a34809f8cea5)
-- feat: CDataTable: add cleaner prop [`d0dba67`](https://github.com/coreui/coreui-react/commit/d0dba670cc49817e18f388fa80326d8b2141f6a7)
-- refactor: CDataTable: disable filtering and sorting on non data columns [`2b134aa`](https://github.com/coreui/coreui-react/commit/2b134aa0d388b99ab33ea574748814d4effba32e)
-- chore: 3.2.0 release: update dependencies [`9c8e377`](https://github.com/coreui/coreui-react/commit/9c8e37729073471c9a48e532e830782dec5ae1a6)
-- feat: CModal: add autofucus and `esc` key support [`ecc4920`](https://github.com/coreui/coreui-react/commit/ecc4920a6dc72b5b7a34cd71a08ccdae5d3ca156)
-- refactor: CDataTable: small refactors [`407201e`](https://github.com/coreui/coreui-react/commit/407201eddf3ce77591484dd78d2faa8d81a526e5)
-- feat: CDrodownMenu: hide menu on `esc` [`c4fea1c`](https://github.com/coreui/coreui-react/commit/c4fea1c72777ff63a62cf9c04cbb59f90cee882c)
-- chore: update changelog [`f3d83c3`](https://github.com/coreui/coreui-react/commit/f3d83c3286f4db4ad6b2b18bc8203b2944381d61)
-- fix: CDataTable disable auto removing columnFilter [`a745c28`](https://github.com/coreui/coreui-react/commit/a745c286c60bdbb7b75c7db263c303c860865508)
-- fix: CBreadcrumbRouter: display route only if it has 'name' key [`e4d743d`](https://github.com/coreui/coreui-react/commit/e4d743da43a51584ddf34a54746b9bd9208df44e)
-- fix: CSidebarNavItem: do not render `icon` if prop is undefined #133 [`5fd72b0`](https://github.com/coreui/coreui-react/commit/5fd72b05def832894f9c6b1b166182d984b5068b)
-
-#### [3.1.0](https://github.com/coreui/coreui-react/compare/3.0.6...3.1.0)
-
-> 23 July 2020
-
-- chore: modify library build [`62194bb`](https://github.com/coreui/coreui-react/commit/62194bb147e9327037778f951936663c14dc28e3)
-- refactor: add full propTypes to className prop in components [`cd9c98a`](https://github.com/coreui/coreui-react/commit/cd9c98a890c9717db3a882e39ac3ccde9a711db6)
-- chore: 3.1.0 release: update dependencies [`174370e`](https://github.com/coreui/coreui-react/commit/174370e754abf484bc47fba0641b7a3732e16de0)
-- fix: delete disabled string type from 'innerRef' prop [`5c91a7f`](https://github.com/coreui/coreui-react/commit/5c91a7f3fe705738508c9c79cb7edfd0694444fd)
-- chore: refactor typings [`7c584e4`](https://github.com/coreui/coreui-react/commit/7c584e4da250d7405080c59bc4721d0d4042bc16)
-- fix: make components using Transition component use new API #127 [`eba59c2`](https://github.com/coreui/coreui-react/commit/eba59c22abf28c55dc433e5cf5e8715cba9d12e0)
-- chore: add missing dependency [`0bb44f8`](https://github.com/coreui/coreui-react/commit/0bb44f8f9a406857c8652ce0fa548b458249a59e)
-- chore: update changelog [`14b0c52`](https://github.com/coreui/coreui-react/commit/14b0c52cbc3562792df5b73d6b58e668971111d8)
-- fix: CTabPane: fix passing innerRef [`7fa5601`](https://github.com/coreui/coreui-react/commit/7fa5601bd389078f7312b81c26962f2502dd6a87)
-- fix: CAlert: add innerRef prop [`c1022a8`](https://github.com/coreui/coreui-react/commit/c1022a8cc83b1a898bd18e774751597210108177)
-- feat: CSidebarNavItem: add possibility of passing icon as node [`520dc49`](https://github.com/coreui/coreui-react/commit/520dc49c2d1d1b39871ab864e64a8da18cef4273)
-- fix: CModal: fix deprecation warning [`ad88025`](https://github.com/coreui/coreui-react/commit/ad8802576a22fa612883e3d928087f234c402d60)
-- fix: CDropdownToggle: add role attribute in case of non-button tag [`4de6508`](https://github.com/coreui/coreui-react/commit/4de6508bbfdb128c07042b4c08e2bccc8b731988)
-
-#### [3.0.6](https://github.com/coreui/coreui-react/compare/3.0.5...3.0.6)
-
-> 15 July 2020
-
-- chore: 3.0.6 release - update dependencies [`86cdba4`](https://github.com/coreui/coreui-react/commit/86cdba439efcc0eba1dc795579e0f7c32c8475fa)
-- chore: dependencies update [`b49a95d`](https://github.com/coreui/coreui-react/commit/b49a95d19584356ef69cc174c6ba01a2f9144ee2)
-- chore: CCol: add 'xxl' breakpoint, clean component #128 [`4dd4704`](https://github.com/coreui/coreui-react/commit/4dd4704433e8bb3ab875a9db52cc31f67c010d27)
-- chore: Changelog update [`f1c00e8`](https://github.com/coreui/coreui-react/commit/f1c00e822644f9ea75fad7e11d014d9d78558fc6)
-
-#### [3.0.5](https://github.com/coreui/coreui-react/compare/3.0.4...3.0.5)
-
-> 30 June 2020
-
-- chore: 3.0.5 version release: update [`422a4ce`](https://github.com/coreui/coreui-react/commit/422a4ce75b65760781daac9a0ec0971607cb74cb)
-- fix: CModal: fix animation when rendered through portal [`dd28a8d`](https://github.com/coreui/coreui-react/commit/dd28a8de426842684cbcd70e038b8dad7aa72bd1)
-
-#### [3.0.4](https://github.com/coreui/coreui-react/compare/3.0.3...3.0.4)
-
-> 22 June 2020
-
-- fix: CBreadcrumbRouter: fix assigning paths to items #118 [`7e2c87b`](https://github.com/coreui/coreui-react/commit/7e2c87bfeec6ee03661a5bb891bfe439fe26c0f4)
-- chore: 3.0.4 version release: update dependencies [`5eac06b`](https://github.com/coreui/coreui-react/commit/5eac06b6f6ee1cffaf02a7e2e3696b517f324e56)
-
-#### [3.0.3](https://github.com/coreui/coreui-react/compare/3.0.2...3.0.3)
-
-> 17 June 2020
-
-- chore: add auto-changelog [`dd56a22`](https://github.com/coreui/coreui-react/commit/dd56a22df2479371b33abc3802fb4f0406525fe1)
-- chore: 3.0.3 version release: update dependencies and changelog [`293c637`](https://github.com/coreui/coreui-react/commit/293c63726e1a477af657d6b13fa619cba3ecde2f)
-- fix: CModal: fix animations [`7740fce`](https://github.com/coreui/coreui-react/commit/7740fcee3583d0fd9324f23d1cd12f0c9914b19a)
-- fix: CBreadcrumbRouter: add route parameters support #118 [`6d8b59b`](https://github.com/coreui/coreui-react/commit/6d8b59b9cfa145a30f4e54832941ce28ef514e29)
-- feat: CDataTable: add footerSlot prop [`4d68dc8`](https://github.com/coreui/coreui-react/commit/4d68dc8f31ac724b79a003d2c6240b6f064e6cd4)
-
-#### [3.0.2](https://github.com/coreui/coreui-react/compare/3.0.1...3.0.2)
-
-> 8 June 2020
-
-- chore: 3.0.2 version release [`780509e`](https://github.com/coreui/coreui-react/commit/780509ec5dac4ae2f4ca8a6f58bb2a719c286fcb)
-- refactor: CPopover: delete style import [`c24553d`](https://github.com/coreui/coreui-react/commit/c24553d8fe907dc29a98f36fcae36f4b4e4f8612)
-
-#### [3.0.1](https://github.com/coreui/coreui-react/compare/3.0.0...3.0.1)
-
-> 3 June 2020
-
-- chore: fix typings [`09ca1a5`](https://github.com/coreui/coreui-react/commit/09ca1a5915c16ce37cf43cb63e04adb59065e52e)
-- chore: 3.0.1 version release [`5bea981`](https://github.com/coreui/coreui-react/commit/5bea9814e56224b7ac01dd0749b85a822e2fbafb)
-
-#### [3.0.0](https://github.com/coreui/coreui-react/compare/3.0.0-rc.2...3.0.0)
-
-> 1 June 2020
-
-- fix: delete excessive components - CListGroupItemHeading/Text [`3681ad2`](https://github.com/coreui/coreui-react/commit/3681ad24225078f338d2b3d646ca71bf70de4095)
-- chore: 3.0.0 release [`aec0f09`](https://github.com/coreui/coreui-react/commit/aec0f093e08d92d38a3e633623e61971d7e93d67)
-- fix: prevent breaking change in CListGroupItemHeading/Text [`8299524`](https://github.com/coreui/coreui-react/commit/829952493cbd84ebc607ec748617fb9d666354d2)
-- feat: CSidebarNavItem: add color prop [`12c2ba3`](https://github.com/coreui/coreui-react/commit/12c2ba3b26d8cdc3aa6e9937f9ad3333a13e7788)
-- fix: CFade: assign nodeRef to Transition to prevent warning [`907e59a`](https://github.com/coreui/coreui-react/commit/907e59a6297a2221567aab5cba8548ec28e204e5)
-
-#### [3.0.0-rc.2](https://github.com/coreui/coreui-react/compare/v2.5.8...3.0.0-rc.2)
-
-> 29 May 2020
-
-- Breadcrumb rewrite, BuuttonGroup & ButtonToolbar refactor [`#2`](https://github.com/coreui/coreui-react/pull/2)
-- fix: CAlert: component refactor [`#1`](https://github.com/coreui/coreui-react/pull/1)
-- CoreUI v3.0.0-alpha.0 for React - demo update WIP [`c8905a3`](https://github.com/coreui/coreui-react/commit/c8905a3d86731d2a494fba52abed062a400a0830)
-- chore: delete demo [`5ef9a37`](https://github.com/coreui/coreui-react/commit/5ef9a375a1ecdaf509c57a72fffe76054c1dd69f)
-- chore: update dependencies add package-lock.json to github [`d37cc9b`](https://github.com/coreui/coreui-react/commit/d37cc9bb61aa726b21bc645050bf78bf4bebb6fb)
-- CoreUI v3.0.0-alpha.0 for React - initial commit [`9113dbd`](https://github.com/coreui/coreui-react/commit/9113dbd668d66556ddbf2c2154763fab388832e9)
-- chore: 3.0.0-beta.3 release - update dependencies and clean docs [`7a71431`](https://github.com/coreui/coreui-react/commit/7a7143183efe0846fdaad5a49750f2fd5ac31968)
-- chore: 3.0.0-beta.4 release [`f8c1a8b`](https://github.com/coreui/coreui-react/commit/f8c1a8b712316882855b5411847b2886bc551fab)
-- chore: 3.0.0-beta.1 release [`99dd67f`](https://github.com/coreui/coreui-react/commit/99dd67f60ef5d46b150bb20bb4940f9c9ec9557a)
-- chore: delete legacy components [`ab3aa58`](https://github.com/coreui/coreui-react/commit/ab3aa58f3cccf2a62f6035bb0fdc6b0fda8f1b40)
-- feat: add typings [`54dc1c6`](https://github.com/coreui/coreui-react/commit/54dc1c6dc2f868b00e694f16c0a4245cc5bccf49)
-- fix: CDataTable: many fixes and API changes [`a6085ce`](https://github.com/coreui/coreui-react/commit/a6085cef91fb9989a883e2771e35ace582e3f269)
-- - update: merge with new tooltip/popover (based on tipy.js) [`11a09d1`](https://github.com/coreui/coreui-react/commit/11a09d1da26fb196fae3722b153af2be4717ed15)
-- refactor: remove cssModules functionality [`df8c4c0`](https://github.com/coreui/coreui-react/commit/df8c4c0592de7a57f1c5f6844266eeaf378be1de)
-- update: popper update try, error with ver. 2.1: [`ef92bac`](https://github.com/coreui/coreui-react/commit/ef92bac50a4fbf35319740b9eac9d69f539726f8)
-- fix: CCarousel: rewrite components [`4e8ac70`](https://github.com/coreui/coreui-react/commit/4e8ac7086f266fb86ae9aff89a75f9401bef91d1)
-- fix: form components refactor: [`a3b3ccc`](https://github.com/coreui/coreui-react/commit/a3b3ccc7e9ebd0f612bf57f9b834a82d56448ff7)
-- refactor: extract CIcons, CCharts, minor changes [`a4c5e8c`](https://github.com/coreui/coreui-react/commit/a4c5e8c1a0865b9f5328818ace0a194f61515dda)
-- chore: 3.0.0-beta.2 release [`f6160fc`](https://github.com/coreui/coreui-react/commit/f6160fcb82dd645e7e8b557987473dd923357dda)
-- fix: Sidebar components rewrite: make them similar to Vue version [`8706cf0`](https://github.com/coreui/coreui-react/commit/8706cf077ccf6ac89fb0010d538c3babcd18607d)
-- fix: leave one state of CCarousel definition [`db633c8`](https://github.com/coreui/coreui-react/commit/db633c8cbaa988ef1fa120e16a26fb957be0c6ea)
-- fix: CModal component rewrite - simplify component [`55ceeef`](https://github.com/coreui/coreui-react/commit/55ceeef186fbe3f487d750e0e347728aa717e330)
-- refactor: change project folder architecture [`dcb2fd8`](https://github.com/coreui/coreui-react/commit/dcb2fd88be9593b89930570753d5dc0faba73114)
-- chore: cleanup [`4bbe3d3`](https://github.com/coreui/coreui-react/commit/4bbe3d3ac426902dc345e63c629a30470953c0c6)
-- fix: CDropdown: component rewrite: [`14c2675`](https://github.com/coreui/coreui-react/commit/14c26757d0abf34675a5d1125cd8109c83f98888)
-- fix: components cleanup [`f25cf59`](https://github.com/coreui/coreui-react/commit/f25cf590c24452e620b2e51c94164ea92c0fa1f6)
-- fix: refactor CToast components: [`4741e67`](https://github.com/coreui/coreui-react/commit/4741e6707afd8f86d15e83f80f76e440b61898d6)
-- fix: Breadcrumb components rewrite [`6d0e7fa`](https://github.com/coreui/coreui-react/commit/6d0e7fa293392f80dfb8a600f5f6f75d37d35e0b)
-- fix: delete unneeded components [`99586ab`](https://github.com/coreui/coreui-react/commit/99586ab3e5fb409105ac6d4570605583ca53362d)
-- fix: rewrite Brand components - make Brands simple wrappers [`ce4fdeb`](https://github.com/coreui/coreui-react/commit/ce4fdeb2ebbf90d9b36c16535800367927769c44)
-- fix: CPagination: component rewrite according to Vue functionality [`097d359`](https://github.com/coreui/coreui-react/commit/097d359c4fd72480d211b83fc5188a82ca62133c)
-- fix: merge CCollapse components, delete 'custom' and 'toggle' props [`63ba549`](https://github.com/coreui/coreui-react/commit/63ba54920d972ddd778216409f4134d3dd9fdcf0)
-- - update: warnings removed [`aa50395`](https://github.com/coreui/coreui-react/commit/aa503958be9a290379f1561a042e1ece7c22062d)
-- chore: delete dead code [`f6d2210`](https://github.com/coreui/coreui-react/commit/f6d2210586593a935c27f37daf36d442ae3b4d1c)
-- docs: changelog cleanup [`c6c3b39`](https://github.com/coreui/coreui-react/commit/c6c3b39a6795169119c24e27ce1ef7216a04089d)
-- fix: fix typings [`4631662`](https://github.com/coreui/coreui-react/commit/4631662660531fa847ec8211779027f215081a4a)
-- fix: components cleanup [`7108882`](https://github.com/coreui/coreui-react/commit/71088829915be675fc66ea99345f47a44bfdb899)
-- fix: CProgress: rewrite component similar to Vue version [`0781c4a`](https://github.com/coreui/coreui-react/commit/0781c4a939c4bf1a18ae17dd556022eb92e132dd)
-- feat: improve Tab activation mechanism, fix bugs [`625c04b`](https://github.com/coreui/coreui-react/commit/625c04b256fccfa9428271b26bad4c57f2487c88)
-- fix: CSidebar wrapper components fixes [`d17c8ff`](https://github.com/coreui/coreui-react/commit/d17c8ff8c55b8d367b55cbdd99fd4fa408dcb86c)
-- refactor: clean components with fade functionality [`e23dd3f`](https://github.com/coreui/coreui-react/commit/e23dd3fc8b785ec7730ae072d21170a25af4bd4e)
-- - fix: CSidebar - merge with Krzysiek [`a47bca1`](https://github.com/coreui/coreui-react/commit/a47bca1ec0a4fad34342229a2a44fbd0fb0b1cce)
-- fix: CSwitch component fixes: [`4f7e74b`](https://github.com/coreui/coreui-react/commit/4f7e74b84ce2d5a37081ee3c8b1e6d15dda34669)
-- - fix: CDropdownMenu: component rewrite [`9ce0f00`](https://github.com/coreui/coreui-react/commit/9ce0f00d8a0c054f557a46dbaede4ab409dbe956)
-- fix: CDropdownToggle: component rewrite [`137965e`](https://github.com/coreui/coreui-react/commit/137965ed782b04e51d28e0803e98d96e78efacdf)
-- chore: CListGroupItemHeading, CListGroupItemText - clean components [`118fa2a`](https://github.com/coreui/coreui-react/commit/118fa2a1f7e2e8926c2635bcbd27bcedb4a41925)
-- fix: CEmbed refactor: [`ee82fa0`](https://github.com/coreui/coreui-react/commit/ee82fa0d63539eafa813876cf65d12e4a8a54bfe)
-- fix: CDropdownItem, CDropdownHeader, CDropdownDivider: [`d0d000e`](https://github.com/coreui/coreui-react/commit/d0d000ec5ee88416365ec094f288afa86365fddc)
-- fix: CMedia: reduce components to basic functionality [`d175ad5`](https://github.com/coreui/coreui-react/commit/d175ad590d84dfc627efbeb5270145357e148871)
-- fix: CCardBody, CCardHeader, CCardFooter: add misiing props [`4171551`](https://github.com/coreui/coreui-react/commit/41715510539bd596e5550c4335f7ed54c1d1f98b)
-- refactor: CCard: Reduce column, deck, group components to CCardGroup [`707b3f8`](https://github.com/coreui/coreui-react/commit/707b3f84c4909320ab19ad606b88778ce5f548c7)
-- fix: turn CHeader sub-components to simple wrappers without props [`ddf287e`](https://github.com/coreui/coreui-react/commit/ddf287e3d86e7b34cdad5795dc8a15b4c4363858)
-- - update: custom is true by default [`4827eb9`](https://github.com/coreui/coreui-react/commit/4827eb9a5ea5d947fde443e8c6b9d8afdf85b43d)
-- fix: peerDependencies [`bd0903a`](https://github.com/coreui/coreui-react/commit/bd0903aa1e3939bda2863b015e140841b653a3b9)
-- - update: react-popper v 2.1 added [`d043f6c`](https://github.com/coreui/coreui-react/commit/d043f6c7f0fc6fc5175cce4e1e33d558730cbca0)
-- feat: add CElementCover component [`9a254db`](https://github.com/coreui/coreui-react/commit/9a254db32c82ec664db18394cdb10b0aa4a6573f)
-- chore: delete CCustomInput component [`54f6aef`](https://github.com/coreui/coreui-react/commit/54f6aefe653842ffabbf099b7015a48ef5b78ec6)
-- fix: CWidgetBrand: fix wrong texts diplay, clean the component [`3431017`](https://github.com/coreui/coreui-react/commit/343101714259843a8be8219f33b4bfed80c9ef45)
-- fix: CLink: component refactor [`61859ed`](https://github.com/coreui/coreui-react/commit/61859ed4a72b3989d2cf64b8d6760fea6a426d94)
-- fix: CWidgetIcon: component API fix [`ea43b6b`](https://github.com/coreui/coreui-react/commit/ea43b6ba002b90e4ab171f8d1508ef59baf3e375)
-- feat: added internal CScrollbar component allowing menu animation [`50f8661`](https://github.com/coreui/coreui-react/commit/50f8661c1698302e70c55b96d541e83427287c32)
-- fix: CButton: component refactor [`5770132`](https://github.com/coreui/coreui-react/commit/5770132be29a73f25b7fe36b9a0ae7ac920aceb6)
-- chore: change Shared folder name to utils [`7cd4900`](https://github.com/coreui/coreui-react/commit/7cd4900406a1cbbff0d7590147064cb84e9ed0b2)
-- chore: delete obsolete CPopoverBody and CPopoverHeader components [`775f0fa`](https://github.com/coreui/coreui-react/commit/775f0fa97ea36e992dafd45a11592decd8b154a7)
-- fix: CListGroup, CListGroupItem fixes: [`950fab5`](https://github.com/coreui/coreui-react/commit/950fab53f15d1dbf9af4e2d4c793964ca733cf83)
-- fix: rename CHeaderSubheader to CSubheader, clean component [`302dd82`](https://github.com/coreui/coreui-react/commit/302dd82dcda686a2bdba7ae5b546ded6c15f5983)
-- fix: CWidgetSimple: component API fix [`abfb1d1`](https://github.com/coreui/coreui-react/commit/abfb1d1d023889bcc9685f95df0dd3c6fdadeee2)
-- fix: CWidgetProgressIcon: component API fix [`2b17cd7`](https://github.com/coreui/coreui-react/commit/2b17cd7b5d6ea4bf49e7efa1dba8c6fea98fb2bc)
-- fix: remove possibility of inheriting advanced transition options [`97ea903`](https://github.com/coreui/coreui-react/commit/97ea903a309b6acc8e82a6b6d56a86cc3802490e)
-- fix: CWidgetProgress: component API fix [`a80ec4a`](https://github.com/coreui/coreui-react/commit/a80ec4a0d87bc2ac0b21943ff3107f4d7d6d8680)
-- fix: CCollapse: fix component [`1aa4b69`](https://github.com/coreui/coreui-react/commit/1aa4b69e900c60f6eb00f6384a92e6735cf08f6f)
-- chore: CPortal: disable using component until it is well tested [`98ad19d`](https://github.com/coreui/coreui-react/commit/98ad19d3f393a2d651dbd8516a7148c6610f362c)
-- fix: CCard: delete 'custom' and corelating props [`e0f9c06`](https://github.com/coreui/coreui-react/commit/e0f9c0687f4f85d0ada02ffbf09c4b5bb0fea292)
-- fix: CSidebarMinimizer: component refactor [`b933237`](https://github.com/coreui/coreui-react/commit/b9332372f8ab0e1dbb681f887e4c0dc4a7fe0e8e)
-- fix: CTable: simplify to simple wrapper [`549d954`](https://github.com/coreui/coreui-react/commit/549d954db092496b45fb8d4605485153143dce98)
-- fix: CModalHeader: simplify component: [`145fb7a`](https://github.com/coreui/coreui-react/commit/145fb7a8e7abb769ab28ad636ac367fd7a3308e9)
-- - fix: CDataTable component - now with Vue Scoped Slots prop equivalent [`abd9ff1`](https://github.com/coreui/coreui-react/commit/abd9ff104f215350045b69479f7b68d9d241330e)
-- fix: CWidgetDropdown: fix bugs: [`0aa4c8b`](https://github.com/coreui/coreui-react/commit/0aa4c8ba5f5bd746e9b52357bb55ba5ce66f1795)
-- fix: fix modal animation mechanism [`3165af9`](https://github.com/coreui/coreui-react/commit/3165af9228ffe4a50d6a34401530362be5a58c64)
-- fix: CToggler: delete 'custom' and 'type' props, clear component [`de0e368`](https://github.com/coreui/coreui-react/commit/de0e368cbe56cdcc539e93d579f99584831188dd)
-- - update: innerRef value set [`6a01afc`](https://github.com/coreui/coreui-react/commit/6a01afc05488573c8ab2100f0d8ed10790be688e)
-- fix: CSpinner: component refactor [`5066958`](https://github.com/coreui/coreui-react/commit/50669580ea8af68ed059790ba16bce00c1961783)
-- refactor: CTooltip: limit main props to essential [`3d36c5c`](https://github.com/coreui/coreui-react/commit/3d36c5cfeca9eb8a61027261aa8eb516b96b40ac)
-- fix: CNavItem: delete custom prop and correlated functionalities [`540e8c2`](https://github.com/coreui/coreui-react/commit/540e8c204c0c67139f3f54d8bd75048fc462dd5f)
-- - fix: CDataTable sorting [`80d6e20`](https://github.com/coreui/coreui-react/commit/80d6e20e333285d8945109bc041fafc126e8b176)
-- fix: CCardImg: Inherit CImg functionalities, change placemnt to variant [`fe1800e`](https://github.com/coreui/coreui-react/commit/fe1800e0850301cb01237487a8f4fbfbbccf0769)
-- chore: CImg: clean component [`032fc29`](https://github.com/coreui/coreui-react/commit/032fc29aaf1db4393a5c8dd3a34a967e86d5006a)
-- docs: README update [`18b1384`](https://github.com/coreui/coreui-react/commit/18b13848194550bd717eb5836f91ddd40829e7be)
-- fix: fix memory leaks in components using timeouts [`129bb59`](https://github.com/coreui/coreui-react/commit/129bb59afb52e9425dd19a77b0d00181534e6af4)
-- refactor: CNavLink: concise component [`a4634fb`](https://github.com/coreui/coreui-react/commit/a4634fbac11df253fe7af8c7a437592834057f72)
-- fix: CNav: delete 'horizontal' prop, clear component [`f5f4dd1`](https://github.com/coreui/coreui-react/commit/f5f4dd16bb86b3c35f5cd22b8a62afd465b0c7a5)
-- refactor: CCardLink: optimize definition [`8c65f88`](https://github.com/coreui/coreui-react/commit/8c65f882b54516b0441b99d160cc433f31618053)
-- fix: CButtonClose: component refactor [`a24f91c`](https://github.com/coreui/coreui-react/commit/a24f91c8ab021b6e1514f57cbf29e0c8d45ded77)
-- feat: add CModalTitle component [`c1c3033`](https://github.com/coreui/coreui-react/commit/c1c303319b2a47c60ddeef4a36824e5ff58360d2)
-- fix: CBadge: allow inheriting CLink functionality, smaller fixes [`35c3df6`](https://github.com/coreui/coreui-react/commit/35c3df6537b22425b48272a6cb1d23c13684ae5e)
-- fix: CNavbar: change sticky prop to bool, small fixes, clean code [`c6fbff2`](https://github.com/coreui/coreui-react/commit/c6fbff22474ad8a6336b13a131e5cd8c4f83b8cf)
-- fix: missing helper exports, minor fixes [`fb4d8e3`](https://github.com/coreui/coreui-react/commit/fb4d8e3c868a386fa34e04e83880facac31eb5e7)
-- fix: CButtonToolbar: component refactor: [`3bda5f7`](https://github.com/coreui/coreui-react/commit/3bda5f73ca43a1152fbce051243961eb6ad7a7b3)
-- fix: CButtonGroup: delete 'tag', add default role attribute [`688eb3b`](https://github.com/coreui/coreui-react/commit/688eb3b7041535402658ddd2e63c24455f6f8c4e)
-- fix: CLink: add 'disabled' prop: [`20db7d8`](https://github.com/coreui/coreui-react/commit/20db7d86c85e2f439aa6b61bd8bcdd8e10e3b318)
-- feat: add CSelect component [`57468e7`](https://github.com/coreui/coreui-react/commit/57468e74b12c98ce1ed6f1d60ec8e818f683efe4)
-- fix: move fade functionality from CTabs to CTabContent [`4f96e17`](https://github.com/coreui/coreui-react/commit/4f96e174bf8eb5706ec52fbdb20ad7fa5d7d8c7f)
-- fix: CInput rename elementSize/size to size/sizeHtml [`95e3f29`](https://github.com/coreui/coreui-react/commit/95e3f294394035957717e6967485f93654982e96)
-- feat: CCreateElement: add posibility of pasing component tag as string [`e294b4b`](https://github.com/coreui/coreui-react/commit/e294b4b6df619e75496676a41d3aeceb91e2cf42)
-- fix: CTabs: add fade prop inherited by CTabPane component [`33b78e7`](https://github.com/coreui/coreui-react/commit/33b78e7b8f2c1fa071bb40cb8b444cbef8a0b0bb)
-- fix: CCallout: delete tag prop, clean generating class [`5bacd2b`](https://github.com/coreui/coreui-react/commit/5bacd2b71c400f7c9af7d158ce77fbade1694d57)
-- fix: CFooter: set fixed to false by default, clean component [`8e4e30c`](https://github.com/coreui/coreui-react/commit/8e4e30cd03604b6856d279cb6b9ed5ea184c22b3)
-- fix: CSidebarNavDropdown: fix default closing mechanism [`c824fa7`](https://github.com/coreui/coreui-react/commit/c824fa799225494b811d85e833c379df2f7c9930)
-- fix: React.Fragment backward compatible [`9ee4493`](https://github.com/coreui/coreui-react/commit/9ee44938dfee86de9691d046897be15867b0ff54)
-- refactor: minor refactors [`fc2af86`](https://github.com/coreui/coreui-react/commit/fc2af866478b486379eafa4ec4c7b982af6ae94c)
-- chore: clean code (linter warnings) [`79f2325`](https://github.com/coreui/coreui-react/commit/79f2325c14c91b4f3592d868336825fe555eb649)
-- refactor: delete checked and onCheckedChange props [`be2f00b`](https://github.com/coreui/coreui-react/commit/be2f00b8ae5be74d5f9baf552e2fd6d3a5e59a72)
-- refactor: CAlert: delete transition prop [`96e98fe`](https://github.com/coreui/coreui-react/commit/96e98fe28e6c21153d831a45e6494fb6949e6be1)
-- refactor: change trigger props names to on{...}Change [`8f910c1`](https://github.com/coreui/coreui-react/commit/8f910c16554d7f805569543e24130e51c84b89c3)
-- feat: add CCreateElement component [`0cee7b0`](https://github.com/coreui/coreui-react/commit/0cee7b0b4d3e306813bd86bed4e1399eb50fa25c)
-- fix: CNavbarText: change default tag to 'div', clean component [`9977be0`](https://github.com/coreui/coreui-react/commit/9977be0c00ed546ac20e4a01f752981e3d3d9728)
-- feat: CLink: add default rel attribute when target="_blank" [`79dad26`](https://github.com/coreui/coreui-react/commit/79dad26e4b8940304be904bc94c1cb66e58348f2)
-- chore: clean components [`ef444f0`](https://github.com/coreui/coreui-react/commit/ef444f0166b395fe33217cc95eced48b5a28cb6b)
-- fix: CNavBarNav: delete wrong class 'nav', clean component [`9962cdd`](https://github.com/coreui/coreui-react/commit/9962cdd6547e9ab12338bc721c7e2adec4bf7b39)
-- fix: CSidebar, CSidebarNavDropdown: add default dropdown mode [`f677f5a`](https://github.com/coreui/coreui-react/commit/f677f5ae34026fb11696a90bb32900364b21d168)
-- fix: update CIcon imports [`16647ba`](https://github.com/coreui/coreui-react/commit/16647ba650c73a17e68423f9d07e69f157ff6e98)
-- - update: ... [`2132022`](https://github.com/coreui/coreui-react/commit/2132022438b18b31cdb844439a0c54d577925d0e)
-- fix: CImg: delete 'active' and 'alt' props, smaller refactors [`78255d4`](https://github.com/coreui/coreui-react/commit/78255d4e7b4e50c2a37d3298ddeffe26b6cd25e6)
-- Ship: 3.0.0-alpha.10 [`f77a972`](https://github.com/coreui/coreui-react/commit/f77a972af3b9cac1a5e19fb3056a660fba7c8c74)
-- fix: minor cleanup [`4cd82cb`](https://github.com/coreui/coreui-react/commit/4cd82cb6a0474718909521675783ae8a0dc7c159)
-- fix: CBreadcrumbRouter: generate path only if routes are passed [`79875db`](https://github.com/coreui/coreui-react/commit/79875dbd9595e36250255288d372d624031e0ad3)
-- fix: demo cleanup [`7bd82c8`](https://github.com/coreui/coreui-react/commit/7bd82c8587f96d1ca81a69835311dda7885e06db)
-- fix: CToast: correct behavior when fade is set to false [`1c73ce4`](https://github.com/coreui/coreui-react/commit/1c73ce48d2fadc8c851d7f32e3cab33532dc603d)
-- Ship: 3.0.0-alpha.12 [`c440f29`](https://github.com/coreui/coreui-react/commit/c440f29454aff171b7eef40c7c52d893da96e717)
-- chore: dependencies update [`09511b1`](https://github.com/coreui/coreui-react/commit/09511b156a83e2e60bed4de4d7e67825031cbe9b)
-- chore: 3.0.0-rc.1 release [`6b7819e`](https://github.com/coreui/coreui-react/commit/6b7819e4ec69f91ed24bef2dfdd56ab71d58f2a3)
-- - fix: default values for custom=true by default components set [`1c0a95e`](https://github.com/coreui/coreui-react/commit/1c0a95e2eeb4b28f9b681522d579c6d63dd5e67c)
-- - fix: CSlot render now null instead of '' (in some cases generate warnings) [`f00913e`](https://github.com/coreui/coreui-react/commit/f00913e6da18eb412a57c5a1be3621515996438d)
-- chore: change CIcon imports to CIconRaw imports [`0a18a61`](https://github.com/coreui/coreui-react/commit/0a18a61e9949b7e72e5749d9d0d0d22f6fab655c)
-- fix: CDataTable restore loading functionality: [`b8f2aaa`](https://github.com/coreui/coreui-react/commit/b8f2aaa3ba91e4c0e1c10cce633b097788e9c4fa)
-- refactor: CAlert: add CButtonClose component instead off html button [`91e7254`](https://github.com/coreui/coreui-react/commit/91e725437a42001ebda51addfdc570c2924f3599)
-- fix: Attempted import error: '@coreui/icons-react' does not contain a default export (imported as 'CIcon') [`f107c35`](https://github.com/coreui/coreui-react/commit/f107c3506cbc31e1fad031d6d3c414e8a90b568f)
-- fix: CDataTable: make recalculation mechanism 100% safe [`a6bc1df`](https://github.com/coreui/coreui-react/commit/a6bc1df75f1018e869150c59eb1106cd52178d94)
-- Ship: 3.0.0-alpha.1 [`c17a4be`](https://github.com/coreui/coreui-react/commit/c17a4be596669e351d2f501bd5abf84b642bdfb0)
-- chore: dependencies update and module fix [`86c4295`](https://github.com/coreui/coreui-react/commit/86c429579caeba2dbd3c9174d5fc260050e20551)
-- chore: 3.0.0-beta.6 release [`ef24ff2`](https://github.com/coreui/coreui-react/commit/ef24ff2e7840497852ef52c0532d18e490fcc254)
-- fix: CDataTable: fix bugs, protect against non-array 'items' prop [`c081868`](https://github.com/coreui/coreui-react/commit/c0818681f8766077f7fa6f445125d3856c258f1f)
-- fix: fix passing refs to components [`2752af4`](https://github.com/coreui/coreui-react/commit/2752af44a5cc56749fc60c686576e2aa4c8ee1e1)
-- fix: small fixes [`a00cc4f`](https://github.com/coreui/coreui-react/commit/a00cc4f7f3c597dfa3ad7a90ef34006c3b014967)
-- fix(CSwitch): A component is changing an uncontrolled input of type checkbox to be controlled [`955370e`](https://github.com/coreui/coreui-react/commit/955370e600fd19ec25bdffaea4ca37be9ad981a2)
-- - fix: link to Icon changed from dir to @ [`466c8f5`](https://github.com/coreui/coreui-react/commit/466c8f56439d082fdfe1a762b8e9d3d89d59d6f7)
-- refactor: replace CFormFeedback with CValidFeedback and CInvalidFeedback [`1e9f0b1`](https://github.com/coreui/coreui-react/commit/1e9f0b161fb985f4d52f1ba81819fad2c13d5c8a)
-- - link to navlink [`294d642`](https://github.com/coreui/coreui-react/commit/294d642a6aaa8a5b7af09c1ccfce775c6fa4c09c)
-- refactor: CBadge: clean component [`b33d2a3`](https://github.com/coreui/coreui-react/commit/b33d2a35f887c437ea9622868a8535fa380e1b35)
-- fix: CCreateElement: fix passing children [`51ad5f4`](https://github.com/coreui/coreui-react/commit/51ad5f41824f392710d523377271cfdedf0f8c0d)
-- chore: dependencies update [`b22e1ae`](https://github.com/coreui/coreui-react/commit/b22e1ae40cd54d758b893c400d2792de11157fc2)
-- fix: CSidebarNavItem: add innerRef prop [`dde7f1c`](https://github.com/coreui/coreui-react/commit/dde7f1c5b319edc554cdd3602e7603987295c818)
-- - fix: CCard default custom value set to true [`5c86a3a`](https://github.com/coreui/coreui-react/commit/5c86a3afca48ac606ed8abcd9615aa48c759dc21)
-- update: unused vars removed from CToastHeader [`2209f71`](https://github.com/coreui/coreui-react/commit/2209f71d2d9d139bf04e37201ce15aba8d5a7580)
-- chore: 3.0.0-beta.7 release [`5c3b022`](https://github.com/coreui/coreui-react/commit/5c3b022b92122504f9d77025606500430862299d)
-- fix: CSidebarNavDropdown: place useLocation hook in try/catch block [`2365228`](https://github.com/coreui/coreui-react/commit/236522882f5a60c189c4f380fa7ac2a12627412a)
-- fix: CSidebar: emit onShowChange only on close [`6be35c6`](https://github.com/coreui/coreui-react/commit/6be35c6918ef5465510fed0132b757c122224e2a)
-- fix: CSidebar: fix updating sidebar state [`7217997`](https://github.com/coreui/coreui-react/commit/7217997d3b67a669e054b149a76ebccda2d7c3b0)
-- chore: dependencies update [`0dec2d4`](https://github.com/coreui/coreui-react/commit/0dec2d48294d39795db98c1ef2c6af020e0f48d9)
-- fix: CMediaBody, CMediaFooter: minor fixes [`08b7460`](https://github.com/coreui/coreui-react/commit/08b74606fb6bf7eac834ca096e920f024979a2a3)
-- chore: dependencies update and cleanup [`ea1736d`](https://github.com/coreui/coreui-react/commit/ea1736d554933ad67ceab6628a8d2127cf99567a)
-- fix: CScrollbar: fix rtl mode [`fa66112`](https://github.com/coreui/coreui-react/commit/fa66112b0d81e0c9610f1e2d846970cc8b4f45e3)
-- Ship: 3.0.0-alpha.11 [`278d97b`](https://github.com/coreui/coreui-react/commit/278d97bd8f607fc191578a109abeb7b517d58f2c)
-- fix: restore footer slot to CWidgetIcon component [`5b18abd`](https://github.com/coreui/coreui-react/commit/5b18abd657639e7d29149d2475596f2021caaeb9)
-- fix: CBreadcrumb: fix cssModules [`eb1623f`](https://github.com/coreui/coreui-react/commit/eb1623f6a16c15c60277bdca5a211a1c5d08a77d)
-- chore: 3.0.0-rc.2 version release [`c30698c`](https://github.com/coreui/coreui-react/commit/c30698cfaed8282d045b2ee4d9dd51b72ea3b5fc)
-- fix: CSidebarNavDropdown: fix default mode for nested dropdowns [`c5922ca`](https://github.com/coreui/coreui-react/commit/c5922ca941b7393a02ff31770ea0d9b2ba42fceb)
-- chore: dependencies update [`080e634`](https://github.com/coreui/coreui-react/commit/080e6341afb00bae2e20d4db38cd0d5fd6d0f8d3)
-- refactor(CSidebarNavDroprdown): add console.warn on undefined pathname [`b127ecf`](https://github.com/coreui/coreui-react/commit/b127ecffb1d993b334e79e4cff57784522a2d081)
-- chore: 3.0.0-beta.5 release [`bcec1de`](https://github.com/coreui/coreui-react/commit/bcec1deb5dce3d5070a87e769c10cfeae8b0fd90)
-- fix: isObject typo [`97bf646`](https://github.com/coreui/coreui-react/commit/97bf64695d18dda40b3c5c4ed0d1ce16ccde733f)
-- fix: CSpinner: fix aria attributes [`7dd7aae`](https://github.com/coreui/coreui-react/commit/7dd7aaece47be51fa9c9d7cdd7759efc2a9ddd00)
-- fix: CPagination: add disabled prop to inactive links [`af9a1c2`](https://github.com/coreui/coreui-react/commit/af9a1c25ffa93173529686421f1e2c622a960a3e)
-- fix: CTabPane: fix tab assignment [`3d9f041`](https://github.com/coreui/coreui-react/commit/3d9f0415128ea8890ec97bddde109377fb1a6f3d)
-- fix: CDropdown: add specific arrow class [`9c937b5`](https://github.com/coreui/coreui-react/commit/9c937b51885a94e8f29d845bec850320b416b0b5)
-- Ship: 3.0.0-alpha.7 [`88f054c`](https://github.com/coreui/coreui-react/commit/88f054c84fcb23abffffe32909c5a33fda6c5e56)
-- fix: CBreadcrumbRouter: add key to items [`bd0fbd4`](https://github.com/coreui/coreui-react/commit/bd0fbd4d60261e1fa5a9483d68c5839355d5adc4)
-- chore: add CSelect component to exports [`4c25748`](https://github.com/coreui/coreui-react/commit/4c2574800e0c88a19cc00aaec693aa4d334f90b6)
-- - fix: custom by default true for CNavItem [`29e24cf`](https://github.com/coreui/coreui-react/commit/29e24cf5b7288fde16fd8e6a93713b748f09b042)
-- fix: CDropdown: delete development console.log [`e64c1ef`](https://github.com/coreui/coreui-react/commit/e64c1ef025396cec530283ea431c13827754e0c9)
-- fix: CDropdown: add missing 'show' and 'dropdown' classes [`71e9122`](https://github.com/coreui/coreui-react/commit/71e91225854acdf35d56aaae3c95e413cd8c2a6c)
-- refactor: cleanup [`d88bcb3`](https://github.com/coreui/coreui-react/commit/d88bcb339f0e5564fb5439dd3c2d66eeb8fb1eec)
-- fix: fix modules in package.json [`c7ad9a5`](https://github.com/coreui/coreui-react/commit/c7ad9a546f1fb8797838842a828b2b8fd891ecfe)
-- fix: CLink: stop passing false to rel attribute [`7b7d9c6`](https://github.com/coreui/coreui-react/commit/7b7d9c6022acfa8c8505d55044b851ab2575f0c8)
-- fix: CProgressBar: fix striped state [`f1817f5`](https://github.com/coreui/coreui-react/commit/f1817f5d606fc1fdaf618b9974d700606be40a1e)
-- fix: CTabPane: fix error occuring when context is not passed [`ee952af`](https://github.com/coreui/coreui-react/commit/ee952af324f343bd923b90fb3f21e46d1841fdad)
-- fix: CDropdownToggle: allow caret in link toggle [`c7f6eba`](https://github.com/coreui/coreui-react/commit/c7f6ebabc82b9c542e78d75f376755ed19651df7)
-- Ship: 3.0.0-alpha.9 [`6d9a3f3`](https://github.com/coreui/coreui-react/commit/6d9a3f31abc2d4383711ee5caee796f4219944ee)
-- Ship: 3.0.0-alpha.8 [`c408665`](https://github.com/coreui/coreui-react/commit/c408665ba4c787872526de1f961708169232112e)
-- fix: change default 'fixed' value to true [`7c824c4`](https://github.com/coreui/coreui-react/commit/7c824c45e762eac6987688d50b2eb28514358ef6)
-- chore: enable library rapid development and installing from gh [`543dffd`](https://github.com/coreui/coreui-react/commit/543dffda4d492df82b42f6433b0734fb50ab5978)
-- Ship: 3.0.0-alpha.6 [`a64f06e`](https://github.com/coreui/coreui-react/commit/a64f06ec42e7f4dda9d9ccb21fba85f1cf57065b)
-- fix: es module [`5790081`](https://github.com/coreui/coreui-react/commit/5790081227b21ab79b85343a9eec1d6e2df7a4a3)
-- chore: import from source instead of module [`d09a4b8`](https://github.com/coreui/coreui-react/commit/d09a4b86ea7b595d3f28f3632b2145c69530ac26)
-- fix: CProgress: fix 'height' propType [`511c2a2`](https://github.com/coreui/coreui-react/commit/511c2a2fb351d9dea7afee34f1de93e26157c6bb)
-- - fix: CNavbar classes [`3e9994a`](https://github.com/coreui/coreui-react/commit/3e9994a4f2b214b7fd94b36770318717fea20c4d)
-- fix(CSidebarNavItem): Invalid argument supplied to to oneOfType [`d7f38e1`](https://github.com/coreui/coreui-react/commit/d7f38e1b81fc9617430a2cc38b7941e3997a5bf7)
-- - console.log removed [`5a0b08a`](https://github.com/coreui/coreui-react/commit/5a0b08a511e97012fd429bf0a8f1ac27e0448106)
-- fix: CSidebarNav: remove obsolete styles [`dbe7dc4`](https://github.com/coreui/coreui-react/commit/dbe7dc464941c5ff1b6e05c63d44dfc5a0ad12dc)
diff --git a/LICENSE b/LICENSE
index c3f8e99e..027b8813 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2021 creativeLabs Łukasz Holeczek
+Copyright (c) 2023 creativeLabs Łukasz Holeczek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 5eb2fdcb..e7c25be4 100644
--- a/README.md
+++ b/README.md
@@ -8,35 +8,36 @@
-CoreUI
+CoreUI for React.js
React.js Components Library built on top of Bootstrap 5 and TypeScript.
- Explore CoreUI docs »
+ Explore CoreUI for React.js docs »
Report bug
·
Request feature
·
- Community
- ·
- Blog
+ Blog
## Table of contents
- [Quick start](#quick-start)
+- [Components](#components)
- [Status](#status)
-- [What's included](#whats-included)
- [Bugs and feature requests](#bugs-and-feature-requests)
- [Documentation](#documentation)
+- [Frameworks](#frameworks)
+- [Templates](#templates)
- [Contributing](#contributing)
- [Community](#community)
- [Versioning](#versioning)
- [Creators](#creators)
+- [Support CoreUI Development](#support-coreui-development)
- [Copyright and license](#copyright-and-license)
## Quick start
@@ -45,29 +46,35 @@
Several quick start options are available:
-- [Download the latest release](https://github.com/coreui/coreui-react/archive/v4.0.0-alpha.0.zip)
+- [Download the latest release](https://github.com/coreui/coreui-react/archive/v4.11.1.zip)
- Clone the repo: `git clone https://github.com/coreui/coreui-react.git`
-- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react@next`
-- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react@next`
+- Install with [npm](https://www.npmjs.com/): `npm install @coreui/react`
+- Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/react`
-Read the [Getting started page](https://coreui.io/react/docs/4.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
+Read the [Getting started page](https://coreui.io/react/docs/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
### Stylesheets
-React components are styled using `@coreui/coreui` CSS library, but you can use them also with bootstrap CSS library. That is possible because `@coreui/coreui` library is compatible with bootstrap, it just extends its functionalities. The only exception is custom CoreUI components, which don't exist in the Bootstrap ecosystem.
+React components are styled using `@coreui/coreui` CSS library, but you can use them also with bootstrap CSS library. That is possible because `@coreui/coreui` library is compatible with bootstrap, it just extends its functionalities. The only exception are custom CoreUI components, which don't exist in the Bootstrap ecosystem.
#### CoreUI CSS files
##### Installation
```bash
-npm install @coreui/coreui@next
+yarn add @coreui/coreui
+```
+
+or
+
+```bash
+npm install @coreui/coreui --save
```
##### Basic usage
```js
-import "@coreui/dist/css/coreui.min.css";
+import '@coreui/coreui/dist/css/coreui.min.css'
```
#### Bootstrap CSS files
@@ -75,7 +82,13 @@ import "@coreui/dist/css/coreui.min.css";
##### Installation
```bash
-npm install bootstrap@next
+yarn add bootstrap
+```
+
+or
+
+```bash
+npm install bootstrap
```
##### Basic usage
@@ -84,41 +97,103 @@ npm install bootstrap@next
import "bootstrap/dist/css/bootstrap.min.css";
```
+## Components
+
+- [React Accordion](https://coreui.io/react/docs/components/accordion/)
+- [React Alert](https://coreui.io/react/docs/components/alert/)
+- [React Avatar](https://coreui.io/react/docs/components/avatar/)
+- [React Badge](https://coreui.io/react/docs/components/badge/)
+- [React Breadcrumb](https://coreui.io/react/docs/components/breadcrumb/)
+- [React Button](https://coreui.io/react/docs/components/button/)
+- [React Button Group](https://coreui.io/react/docs/components/button-group/)
+- [React Callout](https://coreui.io/react/docs/components/callout/)
+- [React Card](https://coreui.io/react/docs/components/card/)
+- [React Carousel](https://coreui.io/react/docs/components/carousel/)
+- [React Checkbox](https://coreui.io/react/docs/forms/checkbox/)
+- [React Close Button](https://coreui.io/react/docs/components/close-button/)
+- [React Collapse](https://coreui.io/react/docs/components/collapse/)
+- [React Date Picker](https://coreui.io/react/docs/forms/date-picker/) **PRO**
+- [React Date Range Picker](https://coreui.io/react/docs/forms/date-range-picker/) **PRO**
+- [React Dropdown](https://coreui.io/react/docs/components/dropdown/)
+- [React Floating Labels](https://coreui.io/react/docs/forms/floating-labels/)
+- [React Footer](https://coreui.io/react/docs/components/footer/)
+- [React Header](https://coreui.io/react/docs/components/header/)
+- [React Image](https://coreui.io/react/docs/components/image/)
+- [React Input](https://coreui.io/react/docs/forms/input/)
+- [React Input Group](https://coreui.io/react/docs/forms/input-group/)
+- [React List Group](https://coreui.io/react/docs/components/list-group/)
+- [React Loading Button](https://coreui.io/react/docs/components/loading-button/) **PRO**
+- [React Modal](https://coreui.io/react/docs/components/modal/)
+- [React Multi Select](https://coreui.io/react/docs/forms/multi-select/) **PRO**
+- [React Navs & Tabs](https://coreui.io/react/docs/components/navs-tabs/)
+- [React Navbar](https://coreui.io/react/docs/components/navbar/)
+- [React Offcanvas](https://coreui.io/react/docs/components/offcanvas/)
+- [React Pagination](https://coreui.io/react/docs/components/pagination/)
+- [React Placeholder](https://coreui.io/react/docs/components/placeholder/)
+- [React Popover](https://coreui.io/react/docs/components/popover/)
+- [React Progress](https://coreui.io/react/docs/components/progress/)
+- [React Radio](https://coreui.io/react/docs/forms/radio/)
+- [React Range](https://coreui.io/react/docs/forms/range/)
+- [React Select](https://coreui.io/react/docs/forms/select/)
+- [React Sidebar](https://coreui.io/react/docs/components/sidebar/)
+- [React Smart Pagination](https://coreui.io/react/docs/components/smart-pagination/) **PRO**
+- [React Smart Table](https://coreui.io/react/docs/components/smart-table/) **PRO**
+- [React Spinner](https://coreui.io/react/docs/components/spinner/)
+- [React Switch](https://coreui.io/react/docs/forms/switch/)
+- [React Table](https://coreui.io/react/docs/components/table/)
+- [React Textarea](https://coreui.io/react/docs/forms/textarea/)
+- [React Time Picker](https://coreui.io/react/docs/forms/time-picker/) **PRO**
+- [React Toast](https://coreui.io/react/docs/components/toast/)
+- [React Tooltip](https://coreui.io/react/docs/components/tooltip/)
+
## Status
-[](https://github.com/coreui/coreui-react/actions?query=workflow%3AJS+Tests+branch%3Amain)
[](https://www.npmjs.com/package/@coreui/react)
-[](https://david-dm.org/coreui/coreui?type=peer)
-[](https://david-dm.org/coreui/coreui?type=dev)
-[](https://coveralls.io/github/coreui/coreui-react?branch=v4-dev)
## Bugs and feature requests
-Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/coreui/coreui-react/blob/v4-dev/.github/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/coreui/coreui-react/issues/new).
+Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/coreui/coreui-react/blob/v4/.github/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/coreui/coreui-react/issues/new).
## Documentation
-The documentation for the CoreUI & CoreUI PRO is hosted at our website [CoreUI for React](https://coreui.io/react/docs/4.0/getting-started/introduction)
+The documentation for the CoreUI & CoreUI PRO is hosted at our website [CoreUI for React](https://coreui.io/react/docs/getting-started/introduction)
### Running documentation locally
-1. Run `yarn install` to install the Node.js dependencies, including Hugo (the site builder).
-2. Run `yarn docz:build` (or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
-3. From the root directory, run `yarn docz:serve` in the command line.
-4. Open `http://localhost:3000/` in your browser, and voilà.
+1. Run `yarn install` or `npm install` to install the Node.js dependencies.
+2. Run `yarn bootstrap` or `npm run bootstrap` to link local packages together and install remaining package dependencies.
+3. From the root directory, run `yarn docs:dev` or `npm run docs:dev` (or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
+4. Open `http://localhost:8000/` in your browser, and voilà.
+
+## Frameworks
+
+CoreUI supports most popular frameworks.
+
+- [CoreUI for Angular](https://github.com/coreui/coreui-angular)
+- [CoreUI for Bootstrap (Vanilla JS)](https://github.com/coreui/coreui)
+- [CoreUI for React](https://github.com/coreui/coreui-react)
+- [CoreUI for Vue](https://github.com/coreui/coreui-vue)
+
+## Templates
+
+Fully featured, out-of-the-box, templates for your application based on CoreUI.
+
+- [Angular Admin Template](https://coreui.io/angular)
+- [Bootstrap Admin Template](https://coreui.io/)
+- [React Admin Template](https://coreui.io/react)
+- [Vue Admin Template](https://coreui.io/vue)
## Contributing
-Please read through our [contributing guidelines](https://github.com/coreui/coreui-react/blob/v4-dev/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
+Please read through our [contributing guidelines](https://github.com/coreui/coreui-react/blob/v4/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
-Editor preferences are available in the [editor config](https://github.com/coreui/coreui-react/blob/v4-dev/.editorconfig) for easy use in common text editors. Read more and download plugins at .
+Editor preferences are available in the [editor config](https://github.com/coreui/coreui-react/blob/v4/.editorconfig) for easy use in common text editors. Read more and download plugins at .
## Community
Stay up to date on the development of CoreUI and reach out to the community with these helpful resources.
- Read and subscribe to [The Official CoreUI Blog](https://coreui.io/blog/).
-- Join [the official Community](https://community.coreui.io/).
You can also follow [@core_ui on Twitter](https://twitter.com/core_ui).
@@ -139,6 +214,48 @@ See [the Releases section of our project](https://github.com/coreui/coreui-react
-
+**The CoreUI Team**
+
+-
+
+## Support CoreUI Development
+
+CoreUI is an MIT-licensed open source project and is 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 the [CoreUI PRO](https://coreui.io/pricing/) or by becoming a sponsor via [Open Collective](https://opencollective.com/coreui/).
+
+
+
+### 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. Code released under the [MIT License](https://github.com/coreui/coreui-react/blob/v4-dev/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
+Copyright 2023 creativeLabs Łukasz Holeczek. Code released under the [MIT License](https://github.com/coreui/coreui-react/blob/main/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
\ No newline at end of file
diff --git a/dist/components/Types.d.ts b/dist/components/Types.d.ts
deleted file mode 100644
index 7762a1ab..00000000
--- a/dist/components/Types.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import PropTypes from 'prop-types';
-export declare type Breakpoints = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
-export declare type Colors = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string;
-export declare const colorPropType: PropTypes.Requireable;
-export declare type Placements = 'auto' | 'auto-start' | 'auto-end' | 'top-end' | 'top' | 'top-start' | 'bottom-end' | 'bottom' | 'bottom-start' | 'right-start' | 'right' | 'right-end' | 'left-start' | 'left' | 'left-end' | undefined;
-export declare const placementPropType: PropTypes.Requireable;
-export declare type Shapes = 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string;
-export declare const shapePropType: PropTypes.Requireable;
-export declare type Triggers = 'hover' | 'focus' | 'click';
-export declare const triggerPropType: PropTypes.Requireable;
diff --git a/dist/components/accordion/CAccordion.d.ts b/dist/components/accordion/CAccordion.d.ts
deleted file mode 100644
index b380ad3b..00000000
--- a/dist/components/accordion/CAccordion.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CAccordionProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Removes the default background-color, some borders, and some rounded corners to render accordions edge-to-edge with their parent container. [docs]
- */
- flush?: boolean;
-}
-export declare const CAccordion: React.ForwardRefExoticComponent>;
diff --git a/dist/components/accordion/CAccordionBody.d.ts b/dist/components/accordion/CAccordionBody.d.ts
deleted file mode 100644
index 185c92cc..00000000
--- a/dist/components/accordion/CAccordionBody.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CAccordionBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CAccordionBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/accordion/CAccordionButton.d.ts b/dist/components/accordion/CAccordionButton.d.ts
deleted file mode 100644
index a9f560c0..00000000
--- a/dist/components/accordion/CAccordionButton.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CAccordionButtonProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Set button state to collapsed. [docs]
- */
- collapsed?: boolean;
-}
-export declare const CAccordionButton: React.ForwardRefExoticComponent>;
diff --git a/dist/components/accordion/CAccordionCollapse.d.ts b/dist/components/accordion/CAccordionCollapse.d.ts
deleted file mode 100644
index 49896dab..00000000
--- a/dist/components/accordion/CAccordionCollapse.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import React from 'react';
-import { CCollapseProps } from '../collapse/CCollapse';
-export declare const CAccordionCollapse: React.ForwardRefExoticComponent>;
diff --git a/dist/components/accordion/CAccordionHeader.d.ts b/dist/components/accordion/CAccordionHeader.d.ts
deleted file mode 100644
index 7b5b897a..00000000
--- a/dist/components/accordion/CAccordionHeader.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CAccordionHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CAccordionHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/accordion/CAccordionItem.d.ts b/dist/components/accordion/CAccordionItem.d.ts
deleted file mode 100644
index 19e6d592..00000000
--- a/dist/components/accordion/CAccordionItem.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CAccordionItemProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CAccordionItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/alert/CAlert.d.ts b/dist/components/alert/CAlert.d.ts
deleted file mode 100644
index b7078e1f..00000000
--- a/dist/components/alert/CAlert.d.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CAlertProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string }
- * @default 'primary'
- */
- color: Colors;
- /**
- * Optionally add a close button to alert and allow it to self dismiss. [docs]
- */
- dismissible?: boolean;
- /**
- * Method called before the dissmiss animation has started. [docs]
- */
- onDismiss?: () => void;
- /**
- * Method called after the dissmiss animation has completed and the component is removed from the dom. [docs]
- */
- onDismissed?: () => void;
- /**
- * Set the alert variant to a solid. [docs]
- */
- variant?: 'solid' | string;
- /**
- * Toggle the visibility of component. [docs]
- *
- * @default true
- */
- visible?: boolean;
-}
-export declare const CAlert: React.ForwardRefExoticComponent>;
diff --git a/dist/components/alert/CAlertHeading.d.ts b/dist/components/alert/CAlertHeading.d.ts
deleted file mode 100644
index e0291362..00000000
--- a/dist/components/alert/CAlertHeading.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CAlertHeadingProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h4'
- */
- component?: string | ElementType;
-}
-export declare const CAlertHeading: React.ForwardRefExoticComponent>;
diff --git a/dist/components/alert/CAlertLink.d.ts b/dist/components/alert/CAlertLink.d.ts
deleted file mode 100644
index b82885dc..00000000
--- a/dist/components/alert/CAlertLink.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { AnchorHTMLAttributes } from 'react';
-export interface CAlertLinkProps extends AnchorHTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CAlertLink: React.ForwardRefExoticComponent>;
diff --git a/dist/components/alert/__tests__/CAlert.spec.d.ts b/dist/components/alert/__tests__/CAlert.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/alert/__tests__/CAlert.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/alert/__tests__/CAlertHeading.spec.d.ts b/dist/components/alert/__tests__/CAlertHeading.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/alert/__tests__/CAlertHeading.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/alert/__tests__/CAlertLink.spec.d.ts b/dist/components/alert/__tests__/CAlertLink.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/alert/__tests__/CAlertLink.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/avatar/CAvatar.d.ts b/dist/components/avatar/CAvatar.d.ts
deleted file mode 100644
index ef75cfa0..00000000
--- a/dist/components/avatar/CAvatar.d.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors, Shapes } from '../Types';
-export interface CAvatarProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string}
- */
- color?: Colors;
- /**
- * Select the shape of the component. [docs]
- *
- * @type {'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string}
- */
- shape?: Shapes;
- /**
- * Size the component small, large, or extra large. [docs]
- */
- size?: string;
- /**
- * The src attribute for the img element. [docs]
- */
- src?: string;
- /**
- * Sets the color context of the status indicator to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string}
- */
- status?: Colors;
- /**
- * Sets the text color of the component to one of CoreUI’s themed colors. [docs]
- */
- textColor?: string;
-}
-export declare const CAvatar: React.ForwardRefExoticComponent>;
diff --git a/dist/components/avatar/__tests__/CAvatar.spec.d.ts b/dist/components/avatar/__tests__/CAvatar.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/avatar/__tests__/CAvatar.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/backdrop/CBackdrop.d.ts b/dist/components/backdrop/CBackdrop.d.ts
deleted file mode 100644
index db09356e..00000000
--- a/dist/components/backdrop/CBackdrop.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CBackdropProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Toggle the visibility of modal component. [docs]
- */
- visible?: boolean;
-}
-export declare const CBackdrop: React.ForwardRefExoticComponent>;
diff --git a/dist/components/backdrop/__tests__/CBackdrop.spec.d.ts b/dist/components/backdrop/__tests__/CBackdrop.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/backdrop/__tests__/CBackdrop.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/badge/CBadge.d.ts b/dist/components/badge/CBadge.d.ts
deleted file mode 100644
index 3d06dfcb..00000000
--- a/dist/components/badge/CBadge.d.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-import { Colors, Shapes } from '../Types';
-export interface CBadgeProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string}
- */
- color?: Colors;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'span'
- */
- component?: string | ElementType;
- /**
- * Select the shape of the component. [docs]
- *
- * @type 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string
- */
- shape?: Shapes;
- /**
- * Size the component small. [docs]
- *
- * @type 'sm'
- */
- size?: 'sm';
- /**
- * Sets the text color of the component to one of CoreUI’s themed colors. [docs]
- */
- textColor?: string;
-}
-export declare const CBadge: React.ForwardRefExoticComponent>;
diff --git a/dist/components/badge/__tests__/CBadge.spec.d.ts b/dist/components/badge/__tests__/CBadge.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/badge/__tests__/CBadge.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/breadcrumb/CBreadcrumb.d.ts b/dist/components/breadcrumb/CBreadcrumb.d.ts
deleted file mode 100644
index 0fd1fc9c..00000000
--- a/dist/components/breadcrumb/CBreadcrumb.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CBreadcrumbProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CBreadcrumb: React.ForwardRefExoticComponent>;
diff --git a/dist/components/breadcrumb/CBreadcrumbItem.d.ts b/dist/components/breadcrumb/CBreadcrumbItem.d.ts
deleted file mode 100644
index 8a89400f..00000000
--- a/dist/components/breadcrumb/CBreadcrumbItem.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CBreadcrumbItemProps extends HTMLAttributes {
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * The `href` attribute for the inner `` component. [docs]
- */
- href?: string;
-}
-export declare const CBreadcrumbItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/breadcrumb/__tests__/CBreadcrumb.spec.d.ts b/dist/components/breadcrumb/__tests__/CBreadcrumb.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/breadcrumb/__tests__/CBreadcrumb.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/breadcrumb/__tests__/CBreadcrumbItem.spec.d.ts b/dist/components/breadcrumb/__tests__/CBreadcrumbItem.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/breadcrumb/__tests__/CBreadcrumbItem.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/button-group/CButtonGroup.d.ts b/dist/components/button-group/CButtonGroup.d.ts
deleted file mode 100644
index 5faa26c1..00000000
--- a/dist/components/button-group/CButtonGroup.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CButtonGroupProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Size the component small or large. [docs]
- *
- * @type {'sm' | 'lg'}
- */
- size?: 'sm' | 'lg';
- /**
- * Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here. [docs]
- */
- vertical?: boolean;
-}
-export declare const CButtonGroup: React.ForwardRefExoticComponent>;
diff --git a/dist/components/button-group/CButtonToolbar.d.ts b/dist/components/button-group/CButtonToolbar.d.ts
deleted file mode 100644
index fbe60be4..00000000
--- a/dist/components/button-group/CButtonToolbar.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CButtonToolbarProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CButtonToolbar: React.ForwardRefExoticComponent>;
diff --git a/dist/components/button-group/__tests__/CButtonGroup.spec.d.ts b/dist/components/button-group/__tests__/CButtonGroup.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/button-group/__tests__/CButtonGroup.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/button-group/__tests__/CButtonToolbar.spec.d.ts b/dist/components/button-group/__tests__/CButtonToolbar.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/button-group/__tests__/CButtonToolbar.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/button/CButton.d.ts b/dist/components/button/CButton.d.ts
deleted file mode 100644
index dffa783a..00000000
--- a/dist/components/button/CButton.d.ts
+++ /dev/null
@@ -1,58 +0,0 @@
-import React, { ButtonHTMLAttributes, ElementType } from 'react';
-import { Colors, Shapes } from '../Types';
-export interface CButtonProps extends ButtonHTMLAttributes {
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- */
- component?: string | ElementType;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * The href attribute specifies the URL of the page the link goes to. [docs]
- */
- href?: string;
- /**
- * The role attribute describes the role of an element in programs that can make use of it, such as screen readers or magnifiers. [docs]
- */
- role?: string;
- /**
- * Select the shape of the component. [docs]
- *
- * @type 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string
- */
- shape?: Shapes;
- /**
- * Size the component small or large. [docs]
- *
- * @type 'sm' | 'lg'
- */
- size?: 'sm' | 'lg';
- /**
- * Specifies the type of button. Always specify the type attribute for the element.
- * Different browsers may use different default types for the element. [docs]
- *
- * @type 'button' | 'submit' | 'reset'
- */
- type?: 'button' | 'submit' | 'reset';
- /**
- * Set the button variant to an outlined button or a ghost button. [docs]
- */
- variant?: 'outline' | 'ghost';
-}
-export declare const CButton: React.ForwardRefExoticComponent>;
diff --git a/dist/components/button/__tests__/CButton.spec.d.ts b/dist/components/button/__tests__/CButton.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/button/__tests__/CButton.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/button/__tests__/CButtonClose.spec.d.ts b/dist/components/button/__tests__/CButtonClose.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/button/__tests__/CButtonClose.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/callout/CCallout.d.ts b/dist/components/callout/CCallout.d.ts
deleted file mode 100644
index 85978841..00000000
--- a/dist/components/callout/CCallout.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CCalloutProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string}
- */
- color?: Colors;
-}
-export declare const CCallout: React.ForwardRefExoticComponent>;
diff --git a/dist/components/callout/__tests__/CCallout.spec.d.ts b/dist/components/callout/__tests__/CCallout.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/callout/__tests__/CCallout.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/CCard.d.ts b/dist/components/card/CCard.d.ts
deleted file mode 100644
index 93c3190e..00000000
--- a/dist/components/card/CCard.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CCardProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Sets the text color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | 'white' | 'muted' | string
- */
- textColor?: string;
-}
-export declare const CCard: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardBody.d.ts b/dist/components/card/CCardBody.d.ts
deleted file mode 100644
index 2e601798..00000000
--- a/dist/components/card/CCardBody.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCardBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCardBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardFooter.d.ts b/dist/components/card/CCardFooter.d.ts
deleted file mode 100644
index 930732b4..00000000
--- a/dist/components/card/CCardFooter.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCardFooterProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCardFooter: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardGroup.d.ts b/dist/components/card/CCardGroup.d.ts
deleted file mode 100644
index d85d2b0b..00000000
--- a/dist/components/card/CCardGroup.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCardGroupProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCardGroup: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardHeader.d.ts b/dist/components/card/CCardHeader.d.ts
deleted file mode 100644
index f27c1d31..00000000
--- a/dist/components/card/CCardHeader.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CCardHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'div'
- */
- component?: string | ElementType;
-}
-export declare const CCardHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardImage.d.ts b/dist/components/card/CCardImage.d.ts
deleted file mode 100644
index 2480ed89..00000000
--- a/dist/components/card/CCardImage.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CCardImageProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'img'
- */
- component?: string | ElementType;
- /**
- * Optionally orientate the image to the top, bottom, or make it overlaid across the card. [docs]
- */
- orientation?: 'top' | 'bottom';
-}
-export declare const CCardImage: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardImageOverlay.d.ts b/dist/components/card/CCardImageOverlay.d.ts
deleted file mode 100644
index 56e12cb5..00000000
--- a/dist/components/card/CCardImageOverlay.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCardImageOverlayProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCardImageOverlay: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardLink.d.ts b/dist/components/card/CCardLink.d.ts
deleted file mode 100644
index d6081779..00000000
--- a/dist/components/card/CCardLink.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { AnchorHTMLAttributes } from 'react';
-export interface CCardLinkProps extends AnchorHTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * The href attribute specifies the URL of the page the link goes to. [docs]
- */
- href?: string;
-}
-export declare const CCardLink: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardSubtitle.d.ts b/dist/components/card/CCardSubtitle.d.ts
deleted file mode 100644
index b1083f3d..00000000
--- a/dist/components/card/CCardSubtitle.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CCardSubtitleProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h6'
- */
- component?: string | ElementType;
-}
-export declare const CCardSubtitle: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardText.d.ts b/dist/components/card/CCardText.d.ts
deleted file mode 100644
index 7e161973..00000000
--- a/dist/components/card/CCardText.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CCardTextProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'p'
- */
- component?: string | ElementType;
-}
-export declare const CCardText: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/CCardTitle.d.ts b/dist/components/card/CCardTitle.d.ts
deleted file mode 100644
index c2f4d0b6..00000000
--- a/dist/components/card/CCardTitle.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CCardTitleProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h5'
- */
- component?: string | ElementType;
-}
-export declare const CCardTitle: React.ForwardRefExoticComponent>;
diff --git a/dist/components/card/__tests__/CCard.spec.d.ts b/dist/components/card/__tests__/CCard.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCard.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardBody.spec.d.ts b/dist/components/card/__tests__/CCardBody.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardBody.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardFooter.spec.d.ts b/dist/components/card/__tests__/CCardFooter.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardFooter.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardGroup.spec.d.ts b/dist/components/card/__tests__/CCardGroup.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardGroup.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardHeader.spec.d.ts b/dist/components/card/__tests__/CCardHeader.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardHeader.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardImage.spec.d.ts b/dist/components/card/__tests__/CCardImage.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardImage.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardLink.spec.d.ts b/dist/components/card/__tests__/CCardLink.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardLink.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardSubtitle.spec.d.ts b/dist/components/card/__tests__/CCardSubtitle.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardSubtitle.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardText.spec.d.ts b/dist/components/card/__tests__/CCardText.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardText.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/card/__tests__/CCardTitle.spec.d.ts b/dist/components/card/__tests__/CCardTitle.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/card/__tests__/CCardTitle.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/carousel/CCarousel.d.ts b/dist/components/carousel/CCarousel.d.ts
deleted file mode 100644
index cd9e1122..00000000
--- a/dist/components/carousel/CCarousel.d.ts
+++ /dev/null
@@ -1,53 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCarouselProps extends HTMLAttributes {
- /**
- * Set 'animate' variable for created context. [docs]
- */
- animate?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Adding in the previous and next controls. [docs]
- */
- controls?: boolean;
- /**
- * Add darker controls, indicators, and captions. [docs]
- */
- dark?: boolean;
- /**
- * The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle. [docs]
- */
- interval?: boolean | number;
- /**
- * index of the active item. [docs]
- */
- index?: number;
- /**
- * Adding indicators at the bottom of the carousel for each item. [docs]
- */
- indicators?: boolean;
- /**
- * On slide change callback. [docs]
- */
- onSlideChange?: (a: number | string | null) => void;
- /**
- * On slide change callback. [docs]
- *
- * @type {'slide' | 'crossfade'}
- * @default 'slide'
- */
- transition?: 'slide' | 'crossfade';
-}
-export interface ContextProps {
- itemsNumber: number;
- state: [number | null, number, string?];
- animating: boolean;
- animate?: boolean;
- setItemsNumber: (a: number) => void;
- setAnimating: (a: boolean) => void;
- setState: (a: [number | null, number, string?]) => void;
-}
-export declare const CCarouselContext: React.Context;
-export declare const CCarousel: React.ForwardRefExoticComponent>;
diff --git a/dist/components/carousel/CCarouselCaption.d.ts b/dist/components/carousel/CCarouselCaption.d.ts
deleted file mode 100644
index 67608cd5..00000000
--- a/dist/components/carousel/CCarouselCaption.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCarouselCaptionProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCarouselCaption: React.ForwardRefExoticComponent>;
diff --git a/dist/components/carousel/CCarouselControl.d.ts b/dist/components/carousel/CCarouselControl.d.ts
deleted file mode 100644
index 2b35d09f..00000000
--- a/dist/components/carousel/CCarouselControl.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-declare type Direction = 'prev' | 'next';
-export interface CCarouselControlProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Direction. [docs]
- *
- * @type 'prev' | 'next'
- */
- direction: Direction;
-}
-export declare const CCarouselControl: React.ForwardRefExoticComponent>;
-export {};
diff --git a/dist/components/carousel/CCarouselIndicators.d.ts b/dist/components/carousel/CCarouselIndicators.d.ts
deleted file mode 100644
index a371ce72..00000000
--- a/dist/components/carousel/CCarouselIndicators.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCarouselIndicatorsProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Indicators section user classes. [docs]
- */
- indicatorsClass?: string;
-}
-export declare const CCarouselIndicators: React.ForwardRefExoticComponent>;
diff --git a/dist/components/carousel/CCarouselInner.d.ts b/dist/components/carousel/CCarouselInner.d.ts
deleted file mode 100644
index 350002ff..00000000
--- a/dist/components/carousel/CCarouselInner.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCarouselInnerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CCarouselInner: React.ForwardRefExoticComponent>;
diff --git a/dist/components/carousel/CCarouselItem.d.ts b/dist/components/carousel/CCarouselItem.d.ts
deleted file mode 100644
index a87e8936..00000000
--- a/dist/components/carousel/CCarouselItem.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCarouselItemProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * @ignore
- */
- idx?: number;
-}
-export declare const CCarouselItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/close-button/CCloseButton.d.ts b/dist/components/close-button/CCloseButton.d.ts
deleted file mode 100644
index ac3deab3..00000000
--- a/dist/components/close-button/CCloseButton.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCloseButtonProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * Change the default color to white. [docs]
- */
- white?: boolean;
-}
-export declare const CCloseButton: React.ForwardRefExoticComponent>;
diff --git a/dist/components/collapse/CCollapse.d.ts b/dist/components/collapse/CCollapse.d.ts
deleted file mode 100644
index b8773c2c..00000000
--- a/dist/components/collapse/CCollapse.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CCollapseProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Toggle the visibility of component. [docs]
- */
- visible?: boolean;
-}
-export declare const CCollapse: React.ForwardRefExoticComponent>;
diff --git a/dist/components/collapse/__tests__/CCollapse.spec.d.ts b/dist/components/collapse/__tests__/CCollapse.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/collapse/__tests__/CCollapse.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/CDropdown.d.ts b/dist/components/dropdown/CDropdown.d.ts
deleted file mode 100644
index 66d13590..00000000
--- a/dist/components/dropdown/CDropdown.d.ts
+++ /dev/null
@@ -1,70 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-import { Placements } from '../Types';
-export declare type Directions = 'start' | 'end';
-export declare type Breakpoints = {
- xs: Directions;
-} | {
- sm: Directions;
-} | {
- md: Directions;
-} | {
- lg: Directions;
-} | {
- xl: Directions;
-} | {
- xxl: Directions;
-};
-export declare type Alignments = Directions | Breakpoints;
-export interface CDropdownProps extends HTMLAttributes {
- /**
- * @type { 'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'} }
- */
- alignment?: Alignments;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'div'
- */
- component?: string | ElementType;
- /**
- * Sets a darker color scheme to match a dark navbar.
- */
- dark?: boolean;
- /**
- * Sets a specified direction and location of the dropdown menu. [docs]
- *
- * @type 'dropup' | 'dropend' | 'dropstart'
- */
- direction?: 'dropup' | 'dropend' | 'dropstart';
- /**
- * Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. [docs]
- *
- * @type 'auto' | 'top-end' | 'top' | 'top-start' | 'bottom-end' | 'bottom' | 'bottom-start' | 'right-start' | 'right' | 'right-end' | 'left-start' | 'left' | 'left-end'
- * @default 'bottom-start'
- */
- placement?: Placements;
- /**
- * If you want to disable dynamic positioning set this property to `true`.
- */
- popper?: boolean;
- /**
- * Set the dropdown variant to an btn-group, dropdown, input-group, and nav-item. [docs]
- */
- variant?: 'btn-group' | 'dropdown' | 'input-group' | 'nav-item';
- /**
- * Toggle the visibility of dropdown menu component. [docs]
- *
- * @default false
- */
- visible?: boolean;
-}
-interface ContextProps extends CDropdownProps {
- setVisible: React.Dispatch>;
-}
-export declare const CDropdownContext: React.Context;
-export declare const CDropdown: React.ForwardRefExoticComponent>;
-export {};
diff --git a/dist/components/dropdown/CDropdownDivider.d.ts b/dist/components/dropdown/CDropdownDivider.d.ts
deleted file mode 100644
index becb9a58..00000000
--- a/dist/components/dropdown/CDropdownDivider.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CDropdownDividerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CDropdownDivider: React.ForwardRefExoticComponent>;
diff --git a/dist/components/dropdown/CDropdownHeader.d.ts b/dist/components/dropdown/CDropdownHeader.d.ts
deleted file mode 100644
index 611f9ecd..00000000
--- a/dist/components/dropdown/CDropdownHeader.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CDropdownHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h6'
- */
- component?: string | ElementType;
-}
-export declare const CDropdownHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/dropdown/CDropdownItem.d.ts b/dist/components/dropdown/CDropdownItem.d.ts
deleted file mode 100644
index a97ddfd7..00000000
--- a/dist/components/dropdown/CDropdownItem.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { ElementType } from 'react';
-import { CLinkProps } from '../link/CLink';
-export interface CDropdownItemProps extends CLinkProps {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'a'
- */
- component?: string | ElementType;
-}
-export declare const CDropdownItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/dropdown/CDropdownItemPlain.d.ts b/dist/components/dropdown/CDropdownItemPlain.d.ts
deleted file mode 100644
index 204256f2..00000000
--- a/dist/components/dropdown/CDropdownItemPlain.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CDropdownItemPlainProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'span'
- */
- component?: string | ElementType;
-}
-export declare const CDropdownItemPlain: React.ForwardRefExoticComponent>;
diff --git a/dist/components/dropdown/CDropdownMenu.d.ts b/dist/components/dropdown/CDropdownMenu.d.ts
deleted file mode 100644
index df51bfeb..00000000
--- a/dist/components/dropdown/CDropdownMenu.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { ElementType, FC, HTMLAttributes } from 'react';
-import { PopperChildrenProps } from 'react-popper';
-export interface CDropdownMenuProps extends HTMLAttributes, Omit {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'ul'
- */
- component?: string | ElementType;
-}
-export declare const CDropdownMenu: FC;
diff --git a/dist/components/dropdown/CDropdownToggle.d.ts b/dist/components/dropdown/CDropdownToggle.d.ts
deleted file mode 100644
index c72a7c57..00000000
--- a/dist/components/dropdown/CDropdownToggle.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import { FC } from 'react';
-import { Triggers } from '../Types';
-import { CButtonProps } from '../button/CButton';
-export interface CDropdownToggleProps extends CButtonProps {
- /**
- * Enables pseudo element caret on toggler. [docs]
- *
- * @default true
- */
- caret?: boolean;
- /**
- * Similarly, create split button dropdowns with virtually the same markup as single button dropdowns, but with the addition of `.dropdown-toggle-split` className for proper spacing around the dropdown caret. [docs]
- */
- split?: boolean;
- /**
- * Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. [docs]
- */
- trigger?: Triggers | Triggers[];
-}
-export declare const CDropdownToggle: FC;
diff --git a/dist/components/dropdown/__tests__/CDropdown.spec.d.ts b/dist/components/dropdown/__tests__/CDropdown.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdown.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownDivider.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownDivider.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownDivider.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownHeader.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownHeader.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownHeader.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownItem.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownItem.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownItem.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownItemPlain.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownItemPlain.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownItemPlain.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownMenu.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownMenu.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownMenu.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/dropdown/__tests__/CDropdownToggle.spec.d.ts b/dist/components/dropdown/__tests__/CDropdownToggle.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/dropdown/__tests__/CDropdownToggle.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/footer/CFooter.d.ts b/dist/components/footer/CFooter.d.ts
deleted file mode 100644
index 128c6640..00000000
--- a/dist/components/footer/CFooter.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CFooterProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Place footer in non-static positions. [docs]
- */
- position?: 'fixed' | 'sticky';
-}
-export declare const CFooter: React.ForwardRefExoticComponent>;
diff --git a/dist/components/footer/__tests__/CFooter.spec.d.ts b/dist/components/footer/__tests__/CFooter.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/footer/__tests__/CFooter.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/CForm.d.ts b/dist/components/form/CForm.d.ts
deleted file mode 100644
index 0c802595..00000000
--- a/dist/components/form/CForm.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CFormProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Mark a form as validated. If you set it `true`, all validation styles will be applied to the forms component.
- */
- validated?: boolean;
-}
-export declare const CForm: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormCheck.d.ts b/dist/components/form/CFormCheck.d.ts
deleted file mode 100644
index bf66aac3..00000000
--- a/dist/components/form/CFormCheck.d.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-import React, { HTMLAttributes, ReactNode } from 'react';
-import { Colors, Shapes } from '../Types';
-export interface CFormCheckProps extends HTMLAttributes {
- button?: boolean;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- buttonColor?: Colors;
- /**
- * Select the shape of the component. [docs]
- *
- * @type 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string
- */
- buttonShape?: Shapes;
- /**
- * Size the component small or large. [docs]
- *
- * @type 'sm' | 'lg'
- */
- buttonSize?: 'sm' | 'lg';
- /**
- * Set the button variant to an outlined button or a ghost button. [docs]
- */
- buttonVariant?: 'outline' | 'ghost';
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * The id global attribute defines an identifier (ID) that must be unique in the whole document. [docs]
- */
- id?: string;
- /**
- * Group checkboxes or radios on the same horizontal row by adding. [docs]
- */
- inline?: boolean;
- /**
- * Set component validation state to invalid. [docs]
- */
- invalid?: boolean;
- /**
- * The element represents a caption for a component. [docs]
- */
- label?: string | ReactNode;
- /**
- * Size the component large or extra large. Works only with `switch` [docs]
- *
- * @type 'lg' | 'xl'
- */
- size?: 'lg' | 'xl';
- /**
- * Render component as a toggle switch. [docs]
- */
- switch?: boolean;
- /**
- * Specifies the type of component. [docs]
- *
- * @type checkbox' | 'radio'
- * @default 'checkbox'
- */
- type?: 'checkbox' | 'radio';
- /**
- * Set component validation state to valid. [docs]
- */
- valid?: boolean;
-}
-export declare const CFormCheck: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormControl.d.ts b/dist/components/form/CFormControl.d.ts
deleted file mode 100644
index 9ee4bbd2..00000000
--- a/dist/components/form/CFormControl.d.ts
+++ /dev/null
@@ -1,58 +0,0 @@
-import React, { ChangeEventHandler, ElementType, HTMLAttributes } from 'react';
-export interface CFormControlProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- classNameParent?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'input'
- */
- component?: string | ElementType;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * Set component validation state to invalid. [docs]
- */
- invalid?: boolean;
- /**
- * Method called immediately after the `value` prop changes. [docs]
- */
- onChange?: ChangeEventHandler;
- /**
- * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly` [docs]
- */
- plainText?: boolean;
- /**
- * Toggle the readonly state for the component. [docs]
- */
- readOnly?: boolean;
- /**
- * Size the component small or large. [docs]
- *
- * @type 'sm' | 'lg'
- */
- size?: 'sm' | 'lg';
- /**
- * Specifies the type of component. [docs]
- *
- * @type 'color' | 'file' | 'text' | string
- * @default 'text'
- */
- type?: 'color' | 'file' | 'text' | string;
- /**
- * Set component validation state to valid. [docs]
- */
- valid?: boolean;
- /**
- * The `value` attribute of component. [docs]
- *
- * @controllable onChange
- * */
- value?: string | string[] | number;
-}
-export declare const CFormControl: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormFeedback.d.ts b/dist/components/form/CFormFeedback.d.ts
deleted file mode 100644
index 6d6a579d..00000000
--- a/dist/components/form/CFormFeedback.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CFormFeedbackProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'div'
- */
- component?: string | ElementType;
- /**
- * Method called immediately after the `value` prop changes. [docs]
- */
- invalid?: boolean;
- /**
- * If your form layout allows it, you can display validation feedback in a styled tooltip. [docs]
- */
- tooltip?: boolean;
- /**
- * Set component validation state to valid. [docs]
- */
- valid?: boolean;
-}
-export declare const CFormFeedback: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormFloating.d.ts b/dist/components/form/CFormFloating.d.ts
deleted file mode 100644
index c58ba675..00000000
--- a/dist/components/form/CFormFloating.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CFormFloatingProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CFormFloating: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormLabel.d.ts b/dist/components/form/CFormLabel.d.ts
deleted file mode 100644
index fb10d1dc..00000000
--- a/dist/components/form/CFormLabel.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CFormLabelProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- classNameParent?: string;
-}
-export declare const CFormLabel: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormRange.d.ts b/dist/components/form/CFormRange.d.ts
deleted file mode 100644
index 6343a4a4..00000000
--- a/dist/components/form/CFormRange.d.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-import React, { ChangeEventHandler, HTMLAttributes } from 'react';
-export interface CFormRangeProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * Specifies the maximum value for the component. [docs]
- */
- max?: number;
- /**
- * Specifies the minimum value for the component. [docs]
- */
- min?: number;
- /**
- * Method called immediately after the `value` prop changes. [docs]
- */
- onChange?: ChangeEventHandler;
- /**
- * Toggle the readonly state for the component. [docs]
- */
- readOnly?: boolean;
- /**
- * Specifies the interval between legal numbers in the component. [docs]
- */
- steps: number;
- /**
- * The `value` attribute of component. [docs]
- *
- * @controllable onChange
- * */
- value?: string | string[] | number;
-}
-export declare const CFormRange: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormSelect.d.ts b/dist/components/form/CFormSelect.d.ts
deleted file mode 100644
index c98f533a..00000000
--- a/dist/components/form/CFormSelect.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CFormSelectProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Specifies the number of visible options in a drop-down list. [docs]
- */
- htmlSize?: number;
- /**
- * Set component validation state to invalid. [docs]
- */
- invalid?: boolean;
- /**
- * Size the component small or large. [docs]
- *
- * @type 'sm' | 'lg'
- */
- size?: 'sm' | 'lg';
- /**
- * Set component validation state to valid. [docs]
- */
- valid?: boolean;
-}
-export declare const CFormSelect: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CFormText.d.ts b/dist/components/form/CFormText.d.ts
deleted file mode 100644
index 7bd49fc1..00000000
--- a/dist/components/form/CFormText.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CFormTextProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'div'
- */
- component?: string | ElementType;
-}
-export declare const CFormText: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CInputGroup.d.ts b/dist/components/form/CInputGroup.d.ts
deleted file mode 100644
index bc6c183f..00000000
--- a/dist/components/form/CInputGroup.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CInputGroupProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Size the component small or large. [docs]
- *
- * @type 'sm' | 'lg'
- */
- size?: 'sm' | 'lg';
-}
-export declare const CInputGroup: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/CInputGroupText.d.ts b/dist/components/form/CInputGroupText.d.ts
deleted file mode 100644
index c207a133..00000000
--- a/dist/components/form/CInputGroupText.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CInputGroupTextProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'span'
- */
- component?: string | ElementType;
-}
-export declare const CInputGroupText: React.ForwardRefExoticComponent>;
diff --git a/dist/components/form/__tests__/CForm.spec.d.ts b/dist/components/form/__tests__/CForm.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CForm.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CFormCheck.spec.d.ts b/dist/components/form/__tests__/CFormCheck.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CFormCheck.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CFormControl.spec.d.ts b/dist/components/form/__tests__/CFormControl.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CFormControl.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CFormLabel.spec.d.ts b/dist/components/form/__tests__/CFormLabel.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CFormLabel.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CFormSelect.spec.d.ts b/dist/components/form/__tests__/CFormSelect.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CFormSelect.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CFormText.spec.d.ts b/dist/components/form/__tests__/CFormText.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CFormText.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CInputGroup.spec.d.ts b/dist/components/form/__tests__/CInputGroup.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CInputGroup.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/form/__tests__/CInputGroupText.spec.d.ts b/dist/components/form/__tests__/CInputGroupText.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/form/__tests__/CInputGroupText.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/grid/CCol.d.ts b/dist/components/grid/CCol.d.ts
deleted file mode 100644
index 21f07194..00000000
--- a/dist/components/grid/CCol.d.ts
+++ /dev/null
@@ -1,52 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-declare type Span = 'auto' | number | string | boolean | null;
-declare type BPObject = {
- span?: Span;
- offset?: number | string | null;
- order?: 'first' | 'last' | number | string | null;
-};
-declare type Col = Span | BPObject;
-export interface CColProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * The number of columns/offset/order on extra small devices (<576px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- xs?: Col;
- /**
- * The number of columns/offset/order on small devices (<768px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- sm?: Col;
- /**
- * The number of columns/offset/order on medium devices (<992px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- md?: Col;
- /**
- * The number of columns/offset/order on large devices (<1200px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- lg?: Col;
- /**
- * The number of columns/offset/order on X-Large devices (<1400px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- xl?: Col;
- /**
- * The number of columns/offset/order on XX-Large devices (≥1400px). [docs]
- *
- * @type { 'auto' | number | string | boolean | { span: 'auto' | number | string | boolean } | { offset: number | string } | { order: 'first' | 'last' | number | string }}
- */
- xxl?: Col;
-}
-export declare const CCol: React.ForwardRefExoticComponent>;
-export {};
diff --git a/dist/components/grid/CContainer.d.ts b/dist/components/grid/CContainer.d.ts
deleted file mode 100644
index ab6c43f8..00000000
--- a/dist/components/grid/CContainer.d.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CContainerProps extends HTMLAttributes {
- breakpoint?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Set container 100% wide until small breakpoint. [docs]
- */
- sm?: boolean;
- /**
- * Set container 100% wide until medium breakpoint. [docs]
- */
- md?: boolean;
- /**
- * Set container 100% wide until large breakpoint. [docs]
- */
- lg?: boolean;
- /**
- * Set container 100% wide until X-large breakpoint. [docs]
- */
- xl?: boolean;
- /**
- * Set container 100% wide until XX-large breakpoint. [docs]
- */
- xxl?: boolean;
- /**
- * Set container 100% wide, spanning the entire width of the viewport. [docs]
- */
- fluid?: boolean;
-}
-export declare const CContainer: React.ForwardRefExoticComponent>;
diff --git a/dist/components/grid/CRow.d.ts b/dist/components/grid/CRow.d.ts
deleted file mode 100644
index ffc5564b..00000000
--- a/dist/components/grid/CRow.d.ts
+++ /dev/null
@@ -1,50 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export declare type BPObject = {
- cols?: 'auto' | number | string | null;
- gutter?: number | string | null;
- gutterX?: number | string | null;
- gutterY?: number | string | null;
-};
-export interface CRowProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * The number of columns/offset/order on extra small devices (<576px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- xs?: BPObject;
- /**
- * The number of columns/offset/order on small devices (<768px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- sm?: BPObject;
- /**
- * The number of columns/offset/order on medium devices (<992px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- md?: BPObject;
- /**
- * The number of columns/offset/order on large devices (<1200px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- lg?: BPObject;
- /**
- * The number of columns/offset/order on X-Large devices (<1400px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- xl?: BPObject;
- /**
- * The number of columns/offset/order on XX-Large devices (≥1400px). [docs]
- *
- * @type {{ cols: 'auto' | number | string } | { gutter: number | string } | { gutterX: number | string } | { gutterY: number | string }}
- */
- xxl?: BPObject;
-}
-export declare const CRow: React.ForwardRefExoticComponent>;
diff --git a/dist/components/grid/__tests__/CCol.spec.d.ts b/dist/components/grid/__tests__/CCol.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/grid/__tests__/CCol.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/grid/__tests__/CContainer.spec.d.ts b/dist/components/grid/__tests__/CContainer.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/grid/__tests__/CContainer.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/grid/__tests__/CRow.spec.d.ts b/dist/components/grid/__tests__/CRow.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/grid/__tests__/CRow.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/CHeader.d.ts b/dist/components/header/CHeader.d.ts
deleted file mode 100644
index 12dfa698..00000000
--- a/dist/components/header/CHeader.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Defines optional container wrapping children elements.
- *
- * @type boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid'
- */
- container?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid';
- /**
- * Place header in non-static positions. [docs]
- */
- position?: 'fixed' | 'sticky';
-}
-export declare const CHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/CHeaderBrand.d.ts b/dist/components/header/CHeaderBrand.d.ts
deleted file mode 100644
index d8fbf918..00000000
--- a/dist/components/header/CHeaderBrand.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CHeaderBrandProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'a'
- */
- component?: string | ElementType;
-}
-export declare const CHeaderBrand: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/CHeaderDivider.d.ts b/dist/components/header/CHeaderDivider.d.ts
deleted file mode 100644
index 0389e998..00000000
--- a/dist/components/header/CHeaderDivider.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CHeaderDividerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CHeaderDivider: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/CHeaderNav.d.ts b/dist/components/header/CHeaderNav.d.ts
deleted file mode 100644
index 774d9634..00000000
--- a/dist/components/header/CHeaderNav.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CHeaderNavProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'ul'
- */
- component?: string | ElementType;
-}
-export declare const CHeaderNav: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/CHeaderText.d.ts b/dist/components/header/CHeaderText.d.ts
deleted file mode 100644
index b85599fe..00000000
--- a/dist/components/header/CHeaderText.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CHeaderTextProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CHeaderText: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/CHeaderToggler.d.ts b/dist/components/header/CHeaderToggler.d.ts
deleted file mode 100644
index a07fe7b4..00000000
--- a/dist/components/header/CHeaderToggler.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CHeaderTogglerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CHeaderToggler: React.ForwardRefExoticComponent>;
diff --git a/dist/components/header/__tests__/CHeader.spec.d.ts b/dist/components/header/__tests__/CHeader.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeader.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/__tests__/CHeaderBrand.spec.d.ts b/dist/components/header/__tests__/CHeaderBrand.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeaderBrand.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/__tests__/CHeaderDivider.spec.d.ts b/dist/components/header/__tests__/CHeaderDivider.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeaderDivider.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/__tests__/CHeaderNav.spec.d.ts b/dist/components/header/__tests__/CHeaderNav.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeaderNav.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/__tests__/CHeaderText.spec.d.ts b/dist/components/header/__tests__/CHeaderText.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeaderText.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/header/__tests__/CHeaderToggler.spec.d.ts b/dist/components/header/__tests__/CHeaderToggler.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/header/__tests__/CHeaderToggler.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/image/CImage.d.ts b/dist/components/image/CImage.d.ts
deleted file mode 100644
index 40260b59..00000000
--- a/dist/components/image/CImage.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CImageProps extends HTMLAttributes {
- align?: 'start' | 'center' | 'end';
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Make image responsive. [docs]
- */
- fluid?: boolean;
- /**
- * Make image rounded. [docs]
- */
- rounded?: boolean;
- /**
- * Give an image a rounded 1px border appearance. [docs]
- */
- thumbnail?: boolean;
-}
-export declare const CImage: React.ForwardRefExoticComponent>;
diff --git a/dist/components/link/CLink.d.ts b/dist/components/link/CLink.d.ts
deleted file mode 100644
index 2efa2b28..00000000
--- a/dist/components/link/CLink.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import React, { AllHTMLAttributes, ElementType } from 'react';
-export interface CLinkProps extends AllHTMLAttributes {
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'a'
- */
- component?: string | ElementType;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * The href attribute specifies the URL of the page the link goes to. [docs]
- */
- href?: string;
-}
-export declare const CLink: React.ForwardRefExoticComponent>;
diff --git a/dist/components/link/__tests__/CLink.spec.d.ts b/dist/components/link/__tests__/CLink.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/link/__tests__/CLink.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/list-group/CListGroup.d.ts b/dist/components/list-group/CListGroup.d.ts
deleted file mode 100644
index 80908ad0..00000000
--- a/dist/components/list-group/CListGroup.d.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CListGroupProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'ul'
- */
- component?: string | ElementType;
- /**
- * Remove some borders and rounded corners to render list group items edge-to-edge in a parent component (e.g., ) [docs]
- */
- flush?: boolean;
- /**
- * Specify a layout type. [docs]
- */
- layout?: 'horizontal' | 'horizontal-sm' | 'horizontal-md' | 'horizontal-lg' | 'horizontal-xl' | 'horizontal-xxl';
-}
-export declare const CListGroup: React.ForwardRefExoticComponent>;
diff --git a/dist/components/list-group/CListGroupItem.d.ts b/dist/components/list-group/CListGroupItem.d.ts
deleted file mode 100644
index bb37f4e0..00000000
--- a/dist/components/list-group/CListGroupItem.d.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CListGroupItemProps extends HTMLAttributes {
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'li'
- */
- component?: string | ElementType;
-}
-export declare const CListGroupItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/list-group/__tests__/CListGroup.spec.d.ts b/dist/components/list-group/__tests__/CListGroup.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/list-group/__tests__/CListGroup.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/list-group/__tests__/CListGroupItem.spec.d.ts b/dist/components/list-group/__tests__/CListGroupItem.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/list-group/__tests__/CListGroupItem.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/CModal.d.ts b/dist/components/modal/CModal.d.ts
deleted file mode 100644
index 8621ce77..00000000
--- a/dist/components/modal/CModal.d.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalProps extends HTMLAttributes {
- /**
- * Align the modal in the center or top of the screen. [docs]
- *
- * @default 'top'
- */
- alignment?: 'top' | 'center';
- /**
- * Apply a backdrop on body while modal is open. [docs]
- * @default true
- */
- backdrop?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * @ignore
- */
- duration?: number;
- /**
- * Set modal to covers the entire user viewport. [docs]
- */
- fullscreen?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
- /**
- * Closes the modal when escape key is pressed. [docs]
- * @default true
- */
- keyboard?: boolean;
- /**
- * Method called before the dissmiss animation has started. [docs]
- */
- onDismiss?: () => void;
- /**
- * Generates modal using createPortal. [docs]
- */
- portal?: boolean;
- /**
- * Create a scrollable modal that allows scrolling the modal body. [docs]
- */
- scrollable?: boolean;
- /**
- * Size the component small, large, or extra large. [docs]
- */
- size?: 'sm' | 'lg' | 'xl';
- /**
- * Remove animation to create modal that simply appear rather than fade in to view. [docs]
- */
- transition?: boolean;
- /**
- * Toggle the visibility of modal component. [docs]
- */
- visible?: boolean;
-}
-export declare const CModal: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalBody.d.ts b/dist/components/modal/CModalBody.d.ts
deleted file mode 100644
index 41cc7a56..00000000
--- a/dist/components/modal/CModalBody.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CModalBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalContent.d.ts b/dist/components/modal/CModalContent.d.ts
deleted file mode 100644
index 65c2e14e..00000000
--- a/dist/components/modal/CModalContent.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalContentProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CModalContent: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalDialog.d.ts b/dist/components/modal/CModalDialog.d.ts
deleted file mode 100644
index acf19654..00000000
--- a/dist/components/modal/CModalDialog.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalDialogProps extends HTMLAttributes {
- /**
- * Align the modal in the center or top of the screen. [docs]
- *
- * @default 'top'
- */
- alignment?: 'top' | 'center';
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Set modal to covers the entire user viewport. [docs]
- */
- fullscreen?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
- /**
- * Does the modal dialog itself scroll, or does the whole dialog scroll within the window. [docs]
- */
- scrollable?: boolean;
- /**
- * Size the component small, large, or extra large. [docs]
- */
- size?: 'sm' | 'lg' | 'xl';
-}
-export declare const CModalDialog: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalFooter.d.ts b/dist/components/modal/CModalFooter.d.ts
deleted file mode 100644
index 9bcba4c5..00000000
--- a/dist/components/modal/CModalFooter.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalFooterProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CModalFooter: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalHeader.d.ts b/dist/components/modal/CModalHeader.d.ts
deleted file mode 100644
index afce4d42..00000000
--- a/dist/components/modal/CModalHeader.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CModalHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Add a close button component to the header which will call the provided handler when clicked. [docs]
- */
- onDismiss?: () => void;
-}
-export declare const CModalHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/CModalTitle.d.ts b/dist/components/modal/CModalTitle.d.ts
deleted file mode 100644
index e47174c1..00000000
--- a/dist/components/modal/CModalTitle.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CModalTitleProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h5'
- */
- component?: string | ElementType;
-}
-export declare const CModalTitle: React.ForwardRefExoticComponent>;
diff --git a/dist/components/modal/__tests__/CModal.spec.d.ts b/dist/components/modal/__tests__/CModal.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModal.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalBody.spec.d.ts b/dist/components/modal/__tests__/CModalBody.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalBody.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalContent.spec.d.ts b/dist/components/modal/__tests__/CModalContent.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalContent.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalDialog.spec.d.ts b/dist/components/modal/__tests__/CModalDialog.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalDialog.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalFooter.spec.d.ts b/dist/components/modal/__tests__/CModalFooter.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalFooter.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalHeader.spec.d.ts b/dist/components/modal/__tests__/CModalHeader.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalHeader.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/modal/__tests__/CModalTitle.spec.d.ts b/dist/components/modal/__tests__/CModalTitle.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/modal/__tests__/CModalTitle.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/CNav.d.ts b/dist/components/nav/CNav.d.ts
deleted file mode 100644
index 04b97812..00000000
--- a/dist/components/nav/CNav.d.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CNavProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'ul'
- */
- component?: string | ElementType;
- /**
- * Specify a layout type for component. [docs]
- */
- layout?: 'fill' | 'justified';
- /**
- * Set the nav variant to tabs or pills. [docs]
- */
- variant?: 'tabs' | 'pills';
-}
-export declare const CNav: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/CNavGroup.d.ts b/dist/components/nav/CNavGroup.d.ts
deleted file mode 100644
index d020809a..00000000
--- a/dist/components/nav/CNavGroup.d.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import React, { ReactNode } from 'react';
-export interface CNavGroupProps {
- children?: ReactNode;
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Set component's icon. [docs]
- */
- icon?: string | ReactNode;
- /**
- * Set group toggler label. [docs]
- */
- toggler?: string;
- /**
- * Show nav group items. [docs]
- */
- visible?: boolean;
- /**
- * @ignore
- */
- idx?: string;
-}
-export declare const CNavGroup: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/CNavGroupItems.d.ts b/dist/components/nav/CNavGroupItems.d.ts
deleted file mode 100644
index dbe33f5c..00000000
--- a/dist/components/nav/CNavGroupItems.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CNavGroupItemsProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CNavGroupItems: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/CNavItem.d.ts b/dist/components/nav/CNavItem.d.ts
deleted file mode 100644
index 59bd8627..00000000
--- a/dist/components/nav/CNavItem.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import React from 'react';
-import { CNavLinkProps } from './CNavLink';
-export declare const CNavItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/CNavLink.d.ts b/dist/components/nav/CNavLink.d.ts
deleted file mode 100644
index 958a96cd..00000000
--- a/dist/components/nav/CNavLink.d.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import React, { ElementType, ReactNode } from 'react';
-import { CLinkProps } from '../link/CLink';
-export interface CNavLinkProps extends Omit {
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'a'
- */
- component?: string | ElementType;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
- /**
- * Set component's icon. [docs]
- */
- icon?: string | ReactNode;
- /**
- * @ignore
- */
- idx?: string;
- /**
- * @ignore
- */
- to?: string;
-}
-export declare const CNavLink: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/CNavTitle.d.ts b/dist/components/nav/CNavTitle.d.ts
deleted file mode 100644
index 4c42aab3..00000000
--- a/dist/components/nav/CNavTitle.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CNavTitleProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CNavTitle: React.ForwardRefExoticComponent>;
diff --git a/dist/components/nav/__tests__/CNav.spec.d.ts b/dist/components/nav/__tests__/CNav.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNav.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/__tests__/CNavGroup.spec.d.ts b/dist/components/nav/__tests__/CNavGroup.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNavGroup.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/__tests__/CNavGroupItems.spec.d.ts b/dist/components/nav/__tests__/CNavGroupItems.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNavGroupItems.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/__tests__/CNavItem.spec.d.ts b/dist/components/nav/__tests__/CNavItem.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNavItem.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/__tests__/CNavLink.spec.d.ts b/dist/components/nav/__tests__/CNavLink.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNavLink.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/nav/__tests__/CNavTitle.spec.d.ts b/dist/components/nav/__tests__/CNavTitle.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/nav/__tests__/CNavTitle.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/navbar/CNavbar.d.ts b/dist/components/navbar/CNavbar.d.ts
deleted file mode 100644
index 0bad969d..00000000
--- a/dist/components/navbar/CNavbar.d.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CNavbarProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Sets if the color of text should be colored for a light or dark dark background. [docs]
- *
- * @type 'dark' | 'light'
- */
- colorScheme?: 'dark' | 'light';
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'nav'
- */
- component?: string | ElementType;
- /**
- * Defines optional container wrapping children elements.
- *
- * @type boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid'
- */
- container?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid';
- /**
- * Defines the responsive breakpoint to determine when content collapses. [docs]
- */
- expand?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
- /**
- * Place component in non-static positions. [docs]
- *
- * @type 'fixed-top' | 'fixed-bottom' | 'sticky-top'
- */
- placement?: 'fixed-top' | 'fixed-bottom' | 'sticky-top';
-}
-export declare const CNavbar: React.ForwardRefExoticComponent>;
diff --git a/dist/components/navbar/CNavbarBrand.d.ts b/dist/components/navbar/CNavbarBrand.d.ts
deleted file mode 100644
index 2aa476ed..00000000
--- a/dist/components/navbar/CNavbarBrand.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CNavbarBrandProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- */
- component?: string | ElementType;
- /**
- * The href attribute specifies the URL of the page the link goes to. [docs]
- */
- href?: string;
-}
-export declare const CNavbarBrand: React.ForwardRefExoticComponent>;
diff --git a/dist/components/navbar/CNavbarNav.d.ts b/dist/components/navbar/CNavbarNav.d.ts
deleted file mode 100644
index 8a3d909e..00000000
--- a/dist/components/navbar/CNavbarNav.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CNavbarNavProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'ul'
- */
- component?: string | ElementType;
-}
-export declare const CNavbarNav: React.ForwardRefExoticComponent>;
diff --git a/dist/components/navbar/CNavbarText.d.ts b/dist/components/navbar/CNavbarText.d.ts
deleted file mode 100644
index f62488c1..00000000
--- a/dist/components/navbar/CNavbarText.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CNavbarTextProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CNavbarText: React.ForwardRefExoticComponent>;
diff --git a/dist/components/navbar/CNavbarToggler.d.ts b/dist/components/navbar/CNavbarToggler.d.ts
deleted file mode 100644
index 6cf4c5e2..00000000
--- a/dist/components/navbar/CNavbarToggler.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CNavbarTogglerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CNavbarToggler: React.ForwardRefExoticComponent>;
diff --git a/dist/components/navbar/__tests__/CNavbar.spec.d.ts b/dist/components/navbar/__tests__/CNavbar.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/navbar/__tests__/CNavbar.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/navbar/__tests__/CNavbarBrand.spec.d.ts b/dist/components/navbar/__tests__/CNavbarBrand.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/navbar/__tests__/CNavbarBrand.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/navbar/__tests__/CNavbarNav.spec.d.ts b/dist/components/navbar/__tests__/CNavbarNav.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/navbar/__tests__/CNavbarNav.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/navbar/__tests__/CNavbarText.spec.d.ts b/dist/components/navbar/__tests__/CNavbarText.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/navbar/__tests__/CNavbarText.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/navbar/__tests__/CNavbarToggler.spec.d.ts b/dist/components/navbar/__tests__/CNavbarToggler.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/navbar/__tests__/CNavbarToggler.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/offcanvas/COffcanvas.d.ts b/dist/components/offcanvas/COffcanvas.d.ts
deleted file mode 100644
index 0546e117..00000000
--- a/dist/components/offcanvas/COffcanvas.d.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface COffcanvasProps extends HTMLAttributes {
- /**
- * Apply a backdrop on body while offcanvas is open. [docs]
- * @default true
- */
- backdrop?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Closes the offcanvas when escape key is pressed [docs]
- * @default true
- */
- keyboard?: boolean;
- /**
- * Method called before the dissmiss animation has started. [docs]
- */
- onDismiss?: () => void;
- /**
- * Components placement, there’s no default placement. [docs]
- * @type 'start' | 'end' | 'top' | 'bottom'
- */
- placement: 'start' | 'end' | 'top' | 'bottom';
- /**
- * Generates modal using createPortal. [docs]
- */
- portal?: boolean;
- /**
- * Toggle the visibility of offcanvas component. [docs]
- */
- visible?: boolean;
-}
-export declare const COffcanvas: React.ForwardRefExoticComponent>;
diff --git a/dist/components/offcanvas/COffcanvasBody.d.ts b/dist/components/offcanvas/COffcanvasBody.d.ts
deleted file mode 100644
index db529d9e..00000000
--- a/dist/components/offcanvas/COffcanvasBody.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface COffcanvasBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const COffcanvasBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/offcanvas/COffcanvasHeader.d.ts b/dist/components/offcanvas/COffcanvasHeader.d.ts
deleted file mode 100644
index 12aa8608..00000000
--- a/dist/components/offcanvas/COffcanvasHeader.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface COffcanvasHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const COffcanvasHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/offcanvas/COffcanvasTitle.d.ts b/dist/components/offcanvas/COffcanvasTitle.d.ts
deleted file mode 100644
index e55bbe4d..00000000
--- a/dist/components/offcanvas/COffcanvasTitle.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface COffcanvasTitleProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'h5'
- */
- component?: string | ElementType;
-}
-export declare const COffcanvasTitle: React.ForwardRefExoticComponent>;
diff --git a/dist/components/pagination/CPagination.d.ts b/dist/components/pagination/CPagination.d.ts
deleted file mode 100644
index 53d65ea7..00000000
--- a/dist/components/pagination/CPagination.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CPaginationProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Size the component small or large. [docs]
- */
- size?: 'sm' | 'lg';
-}
-export declare const CPagination: React.ForwardRefExoticComponent>;
diff --git a/dist/components/pagination/CPaginationItem.d.ts b/dist/components/pagination/CPaginationItem.d.ts
deleted file mode 100644
index 166c51b3..00000000
--- a/dist/components/pagination/CPaginationItem.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-export interface CPaginationItemProps extends HTMLAttributes {
- /**
- * Define a string that labels the current element. Use it in cases where a text label is not visible on the screen. [docs]
- */
- ariaLabel?: string;
- /**
- * Toggle the active state for the component. [docs]
- */
- active?: boolean;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- */
- component?: string | ElementType;
- /**
- * Toggle the disabled state for the component. [docs]
- */
- disabled?: boolean;
-}
-export declare const CPaginationItem: React.ForwardRefExoticComponent>;
diff --git a/dist/components/pagination/__tests__/CPagination.spec.d.ts b/dist/components/pagination/__tests__/CPagination.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/pagination/__tests__/CPagination.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/pagination/__tests__/CPaginationItem.spec.d.ts b/dist/components/pagination/__tests__/CPaginationItem.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/pagination/__tests__/CPaginationItem.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/popover/CPopover.d.ts b/dist/components/popover/CPopover.d.ts
deleted file mode 100644
index 93d1179b..00000000
--- a/dist/components/popover/CPopover.d.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { FC, ReactElement, ReactNode } from 'react';
-import { Triggers } from '../Types';
-export interface CPopoverProps {
- children: ReactElement;
- /**
- * Content node for your component. [docs]
- */
- content: ReactNode;
- /**
- * Offset of the popover relative to its target. [docs]
- * @default '[0, 8]'
- */
- offset?: [number, number];
- /**
- * Title node for your component. [docs]
- */
- title?: ReactNode;
- /**
- * Sets which event handlers you’d like provided to your toggle prop. You can specify one trigger or an array of them. [docs]
- */
- trigger?: Triggers | Triggers[];
- /**
- * Describes the placement of your component after Popper.js has applied all the modifiers that may have flipped or altered the originally provided placement property. [docs]
- *
- * @type 'top' | 'right' | 'bottom' | 'left'
- * @default 'top'
- */
- placement?: 'top' | 'right' | 'bottom' | 'left';
- /**
- * Toggle the visibility of popover component. [docs]
- *
- * @default true
- */
- visible?: boolean;
-}
-export declare const CPopover: FC;
diff --git a/dist/components/popover/CPopoverContent.d.ts b/dist/components/popover/CPopoverContent.d.ts
deleted file mode 100644
index d73298bf..00000000
--- a/dist/components/popover/CPopoverContent.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import React, { CSSProperties } from 'react';
-import { CPopoverProps } from './CPopover';
-import { PopperChildrenProps } from 'react-popper';
-interface CPopoverContentProps extends Omit, Omit {
- transitionClass?: string;
- style?: CSSProperties;
- placementClassNamePostfix?: string;
-}
-export declare const CPopoverContent: React.ForwardRefExoticComponent & React.RefAttributes>;
-export {};
diff --git a/dist/components/popover/__tests__/CPopover.spec.d.ts b/dist/components/popover/__tests__/CPopover.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/popover/__tests__/CPopover.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/progress/CProgress.d.ts b/dist/components/progress/CProgress.d.ts
deleted file mode 100644
index 9ec517be..00000000
--- a/dist/components/progress/CProgress.d.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { CProgressBarProps } from './CProgressBar';
-export interface CProgressProps extends Omit, 'color'>, CProgressBarProps {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the height of the component. If you set that value the inner will automatically resize accordingly. [docs]
- *
- * @default 'undefined'
- */
- height?: number;
- /**
- * Makes progress bar thinner. [docs]
- */
- thin?: boolean;
- /**
- * The percent to progress the ProgressBar (out of 100). [docs]
- * @default 0
- */
- value?: number;
- /**
- * Change the default color to white. [docs]
- */
- white?: boolean;
-}
-export declare const CProgress: React.ForwardRefExoticComponent>;
diff --git a/dist/components/progress/CProgressBar.d.ts b/dist/components/progress/CProgressBar.d.ts
deleted file mode 100644
index 6da02a39..00000000
--- a/dist/components/progress/CProgressBar.d.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CProgressBarProps extends HTMLAttributes {
- /**
- * Use to animate the stripes right to left via CSS3 animations. [docs]
- *
- * @default false
- */
- animated?: boolean;
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * The percent to progress the ProgressBar. [docs]
- *
- * @default 0
- */
- value?: number;
- /**
- * Set the progress bar variant to optional striped. [docs]
- */
- variant?: 'striped';
-}
-export declare const CProgressBar: React.ForwardRefExoticComponent>;
diff --git a/dist/components/progress/__tests__/CProgress.spec.d.ts b/dist/components/progress/__tests__/CProgress.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/progress/__tests__/CProgress.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/progress/__tests__/CProgressBar.spec.d.ts b/dist/components/progress/__tests__/CProgressBar.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/progress/__tests__/CProgressBar.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/sidebar/CCreateNavItem.d.ts b/dist/components/sidebar/CCreateNavItem.d.ts
deleted file mode 100644
index 191da571..00000000
--- a/dist/components/sidebar/CCreateNavItem.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { FC, ElementType } from 'react';
-import { CNavLinkProps } from '../nav/CNavLink';
-export interface CSidebarNavItemGeneratorProps {
- anchor: string;
- as: string | ElementType;
- _component: string;
- items?: CNavLinkProps[];
- idx?: string;
-}
-interface CCreateNavItemProps {
- idx?: string;
- items: CNavLinkProps[];
-}
-export declare const CCreateNavItem: FC;
-export {};
diff --git a/dist/components/sidebar/CSidebar.d.ts b/dist/components/sidebar/CSidebar.d.ts
deleted file mode 100644
index bab625a8..00000000
--- a/dist/components/sidebar/CSidebar.d.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Breakpoints } from '../Types';
-export interface CSidebarProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Make sidebar narrow. [docs]
- */
- narrow?: boolean;
- /**
- * Method called before the hide animation has started. [docs]
- */
- onHide?: () => void;
- /**
- * Method called before the show animation has started. [docs]
- */
- onShow?: () => void;
- /**
- * Set sidebar to narrow variant. [docs]
- */
- overlaid?: boolean;
- /**
- * Place sidebar in non-static positions. [docs]
- */
- position?: 'fixed' | 'sticky';
- /**
- * Make any sidebar self hiding across all viewports or pick a maximum breakpoint with which to have a self hiding up to. [docs]
- */
- selfHiding?: Breakpoints | boolean;
- /**
- * Expand narrowed sidebar on hover. [docs]
- */
- unfoldable?: boolean;
- /**
- * Toggle the visibility of sidebar component. [docs]
- */
- visible?: boolean;
-}
-export declare const CSidebar: React.ForwardRefExoticComponent>;
diff --git a/dist/components/sidebar/CSidebarBrand.d.ts b/dist/components/sidebar/CSidebarBrand.d.ts
deleted file mode 100644
index 48914b2e..00000000
--- a/dist/components/sidebar/CSidebarBrand.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CSidebarBrandProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CSidebarBrand: React.ForwardRefExoticComponent>;
diff --git a/dist/components/sidebar/CSidebarFooter.d.ts b/dist/components/sidebar/CSidebarFooter.d.ts
deleted file mode 100644
index 78461b23..00000000
--- a/dist/components/sidebar/CSidebarFooter.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CSidebarFooterProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CSidebarFooter: React.ForwardRefExoticComponent>;
diff --git a/dist/components/sidebar/CSidebarHeader.d.ts b/dist/components/sidebar/CSidebarHeader.d.ts
deleted file mode 100644
index 7ee1a7d1..00000000
--- a/dist/components/sidebar/CSidebarHeader.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CSidebarHeaderProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CSidebarHeader: React.ForwardRefExoticComponent>;
diff --git a/dist/components/sidebar/CSidebarNav.d.ts b/dist/components/sidebar/CSidebarNav.d.ts
deleted file mode 100644
index 7e4a9551..00000000
--- a/dist/components/sidebar/CSidebarNav.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CSidebarNavProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-interface ContextProps {
- visibleGroup: string;
- setVisibleGroup: React.Dispatch>;
-}
-export declare const CNavContext: React.Context;
-export declare const CSidebarNav: React.ForwardRefExoticComponent>;
-export {};
diff --git a/dist/components/sidebar/CSidebarToggler.d.ts b/dist/components/sidebar/CSidebarToggler.d.ts
deleted file mode 100644
index 89d3d9de..00000000
--- a/dist/components/sidebar/CSidebarToggler.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CSidebarTogglerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
-}
-export declare const CSidebarToggler: React.ForwardRefExoticComponent>;
diff --git a/dist/components/sidebar/__tests__/CSidebar.spec.d.ts b/dist/components/sidebar/__tests__/CSidebar.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/sidebar/__tests__/CSidebar.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/sidebar/__tests__/CSidebarBrand.spec.d.ts b/dist/components/sidebar/__tests__/CSidebarBrand.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/sidebar/__tests__/CSidebarBrand.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/sidebar/__tests__/CSidebarFooter.spec.d.ts b/dist/components/sidebar/__tests__/CSidebarFooter.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/sidebar/__tests__/CSidebarFooter.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/sidebar/__tests__/CSidebarHeader.spec.d.ts b/dist/components/sidebar/__tests__/CSidebarHeader.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/sidebar/__tests__/CSidebarHeader.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/sidebar/__tests__/CSidebarNav.spec.d.ts b/dist/components/sidebar/__tests__/CSidebarNav.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/sidebar/__tests__/CSidebarNav.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/spinner/CSpinner.d.ts b/dist/components/spinner/CSpinner.d.ts
deleted file mode 100644
index 41898ec3..00000000
--- a/dist/components/spinner/CSpinner.d.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import React, { ElementType, HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CSpinnerProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- *
- * @default 'undefined'
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type {'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string }
- */
- color?: Colors;
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- *
- * @default 'div'
- */
- component?: string | ElementType;
- /**
- * Size the component small. [docs]
- *
- * @default 'undefined'
- */
- size?: 'sm';
- /**
- * Set the button variant to an outlined button or a ghost button. [docs]
- *
- * @default 'border'
- */
- variant?: 'border' | 'grow';
-}
-export declare const CSpinner: React.ForwardRefExoticComponent>;
diff --git a/dist/components/spinner/__tests__/CSpinner.spec.d.ts b/dist/components/spinner/__tests__/CSpinner.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/spinner/__tests__/CSpinner.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/table/CTable.d.ts b/dist/components/table/CTable.d.ts
deleted file mode 100644
index 98719b99..00000000
--- a/dist/components/table/CTable.d.ts
+++ /dev/null
@@ -1,53 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableProps extends HTMLAttributes {
- /**
- * Set the vertical aligment. [docs]
- */
- align?: 'bottom' | 'middle' | 'top';
- /**
- * Sets the border color of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- borderColor?: Colors;
- /**
- * Add borders on all sides of the table and cells. [docs]
- */
- bordered?: boolean;
- /**
- * Remove borders on all sides of the table and cells. [docs]
- */
- borderless?: boolean;
- /**
- * Put the on the top of the table. [docs]
- */
- caption?: 'top';
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Enable a hover state on table rows within a ``. [docs]
- */
- hover?: boolean;
- /**
- * Make any table responsive across all viewports or pick a maximum breakpoint with which to have a responsive table up to. [docs]
- */
- responsive?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
- /**
- * Make table more compact by cutting all cell `padding` in half. [docs]
- */
- small?: boolean;
- /**
- * Add zebra-striping to any table row within the ``. [docs]
- */
- striped?: boolean;
-}
-export declare const CTable: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableBody.d.ts b/dist/components/table/CTableBody.d.ts
deleted file mode 100644
index 748d8713..00000000
--- a/dist/components/table/CTableBody.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableCaption.d.ts b/dist/components/table/CTableCaption.d.ts
deleted file mode 100644
index 496cefa4..00000000
--- a/dist/components/table/CTableCaption.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import React from 'react';
-export declare const CTableCaption: React.ForwardRefExoticComponent & React.RefAttributes>;
diff --git a/dist/components/table/CTableDataCell.d.ts b/dist/components/table/CTableDataCell.d.ts
deleted file mode 100644
index 12b4a232..00000000
--- a/dist/components/table/CTableDataCell.d.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableDataCellProps extends HTMLAttributes {
- /**
- * Highlight a table row or cell. [docs]
- */
- active?: boolean;
- /**
- * Set the vertical aligment. [docs]
- */
- align?: 'bottom' | 'middle' | 'top';
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableDataCell: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableFoot.d.ts b/dist/components/table/CTableFoot.d.ts
deleted file mode 100644
index cce2514d..00000000
--- a/dist/components/table/CTableFoot.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableFootProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableFoot: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableHead.d.ts b/dist/components/table/CTableHead.d.ts
deleted file mode 100644
index 08b8954c..00000000
--- a/dist/components/table/CTableHead.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableHeadProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableHead: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableHeaderCell.d.ts b/dist/components/table/CTableHeaderCell.d.ts
deleted file mode 100644
index d476694f..00000000
--- a/dist/components/table/CTableHeaderCell.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableHeaderCellProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableHeaderCell: React.ForwardRefExoticComponent>;
diff --git a/dist/components/table/CTableRow.d.ts b/dist/components/table/CTableRow.d.ts
deleted file mode 100644
index 60923d97..00000000
--- a/dist/components/table/CTableRow.d.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CTableRowProps extends HTMLAttributes {
- /**
- * Highlight a table row or cell.. [docs]
- */
- active?: boolean;
- /**
- * Set the vertical aligment. [docs]
- */
- align?: 'bottom' | 'middle' | 'top';
- /**
- * A string of all className you want applied to the component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
-}
-export declare const CTableRow: React.ForwardRefExoticComponent>;
diff --git a/dist/components/tabs/CTabContent.d.ts b/dist/components/tabs/CTabContent.d.ts
deleted file mode 100644
index 7ed98f8b..00000000
--- a/dist/components/tabs/CTabContent.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CTabContentProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CTabContent: React.ForwardRefExoticComponent>;
diff --git a/dist/components/tabs/CTabPane.d.ts b/dist/components/tabs/CTabPane.d.ts
deleted file mode 100644
index 22fa0f30..00000000
--- a/dist/components/tabs/CTabPane.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CTabPaneProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Toggle the visibility of component. [docs]
- */
- visible?: boolean;
-}
-export declare const CTabPane: React.ForwardRefExoticComponent>;
diff --git a/dist/components/tabs/__tests__/CTabContent.spec.d.ts b/dist/components/tabs/__tests__/CTabContent.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/tabs/__tests__/CTabContent.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/tabs/__tests__/CTabPane.spec.d.ts b/dist/components/tabs/__tests__/CTabPane.spec.d.ts
deleted file mode 100644
index 34dc3eb8..00000000
--- a/dist/components/tabs/__tests__/CTabPane.spec.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-import '@testing-library/jest-dom/extend-expect';
diff --git a/dist/components/toast/CToast.d.ts b/dist/components/toast/CToast.d.ts
deleted file mode 100644
index 0522ffb3..00000000
--- a/dist/components/toast/CToast.d.ts
+++ /dev/null
@@ -1,49 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-import { Colors } from '../Types';
-export interface CToastProps extends Omit, 'title'> {
- /**
- * Auto hide the toast. [docs]
- *
- * @default true
- */
- autohide?: boolean;
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
- /**
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
- *
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
- */
- color?: Colors;
- /**
- * Delay hiding the toast (ms). [docs]
- */
- delay?: number;
- /**
- * @ignore
- */
- index?: number;
- /**
- * @ignore
- */
- key?: number;
- /**
- * Toggle the visibility of component. [docs]
- *
- * @default true
- */
- visible?: boolean;
- /**
- * Method called before the dissmiss animation has started. [docs]
- */
- onDismiss?: (index: number | null) => void;
-}
-interface ContextProps extends CToastProps {
- visible?: boolean;
- setVisible: React.Dispatch>;
-}
-export declare const CToastContext: React.Context;
-export declare const CToast: React.ForwardRefExoticComponent>;
-export {};
diff --git a/dist/components/toast/CToastBody.d.ts b/dist/components/toast/CToastBody.d.ts
deleted file mode 100644
index ff10a79d..00000000
--- a/dist/components/toast/CToastBody.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import React, { HTMLAttributes } from 'react';
-export interface CToastBodyProps extends HTMLAttributes {
- /**
- * A string of all className you want applied to the base component. [docs]
- */
- className?: string;
-}
-export declare const CToastBody: React.ForwardRefExoticComponent>;
diff --git a/dist/components/toast/CToastClose.d.ts b/dist/components/toast/CToastClose.d.ts
deleted file mode 100644
index 8fc97740..00000000
--- a/dist/components/toast/CToastClose.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import React, { ElementType } from 'react';
-import { CCloseButtonProps } from '../close-button/CCloseButton';
-export interface CToastCloseProps extends CCloseButtonProps {
- /**
- * Component used for the root node. Either a string to use a HTML element or a component. [docs]
- */
- component?: string | ElementType;
-}
-export declare const CToastClose: React.ForwardRefExoticComponent