Skip to content

Commit a09ee2e

Browse files
committed
release: v4.0.2
1 parent cc2185e commit a09ee2e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1348
-1290
lines changed

.github/CONTRIBUTING.md

+27-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
# Contributing to CoreUI Free Bootstrap Admin Template
1+
# Contributing to CoreUI
22

3-
Looking to contribute something to CoreUI Free Bootstrap Admin Template? **Here's how you can help.**
3+
Looking to contribute something to CoreUI? **Here's how you can help.**
44

55
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
66

7-
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
7+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing
8+
patches and features.
89

910
## Using the issue tracker
1011

11-
The [issue tracker](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues) is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
12+
The [issue tracker](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues) is
13+
the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests)
14+
and [submitting pull requests](#pull-requests), but please respect the following
15+
restrictions:
1216

1317
* Please **do not** use the issue tracker for personal support requests.
1418

1519
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
1620
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
1721
instead.
1822

19-
* Please **do not** open issues or pull requests regarding the code in [`@coreui/coreui`](https://github.com/coreui/coreui) (open them in their respective repositories).
20-
2123
## Bug reports
2224

2325
A bug is a _demonstrable problem_ that is caused by the code in the repository.
@@ -29,7 +31,7 @@ Guidelines for bug reports:
2931

3032
1. **Use the GitHub issue search** — check if the issue has already been reported.
3133

32-
2. **Check if the issue has been fixed** — try to reproduce it using the latest `main` or development branch in the repository.
34+
2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or development branch in the repository.
3335

3436
3. **Isolate the problem** — ideally create a [reduced test case](https://css-tricks.com/reduced-test-cases/) and a live example. [This JS Bin](http://jsbin.com/lefey/1/edit?html,output) is a helpful template.
3537

@@ -61,10 +63,11 @@ Example:
6163
6264
## Feature requests
6365

64-
Feature requests are welcome. Before opening a feature request, please take a moment to find out whether your idea
65-
fits with the scope and aims of the project. It's up to *you* to make a strong
66-
case to convince the project's developers of the merits of this feature. Please
67-
provide as much detail and context as possible.
66+
Feature requests are welcome. Before opening a feature request, please take a
67+
moment to find out whether your idea fits with the scope and aims of the
68+
project. It's up to *you* to make a strong case to convince the project's
69+
developers of the merits of this feature. Please provide as much detail
70+
and context as possible.
6871

6972

7073
## Pull requests
@@ -86,18 +89,18 @@ included in the project:
8689

8790
```bash
8891
# Clone your fork of the repo into the current directory
89-
git clone https://github.com/<your-username>/free-bootstrap-admin-template.git
92+
git clone https://github.com/<your-username>/coreui.git
9093
# Navigate to the newly cloned directory
91-
cd free-bootstrap-admin-template
94+
cd coreui
9295
# Assign the original repo to a remote called "upstream"
93-
git remote add upstream https://github.com/coreui/coreui-free-bootstrap-admin-template.git
96+
git remote add upstream https://github.com/coreui/coreui.git
9497
```
9598

9699
2. If you cloned a while ago, get the latest changes from upstream:
97100

98101
```bash
99-
git checkout main
100-
git pull upstream main
102+
git checkout master
103+
git pull upstream master
101104
```
102105

103106
3. Create a new topic branch (off the main project development branch) to
@@ -116,7 +119,7 @@ included in the project:
116119
5. Locally merge (or rebase) the upstream development branch into your topic branch:
117120

118121
```bash
119-
git pull [--rebase] upstream main
122+
git pull [--rebase] upstream master
120123
```
121124

122125
6. Push your topic branch up to your fork:
@@ -125,13 +128,17 @@ included in the project:
125128
git push origin <topic-branch-name>
126129
```
127130

128-
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description against the `main` branch.
131+
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
132+
with a clear title and description against the `master` branch.
129133

130-
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to license your work under the terms of the [MIT License](LICENSE).
134+
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to
135+
license your work under the terms of the [MIT License](LICENSE).
131136

132137
### Semantic Git commit messages
133138

134-
Inspired by Sparkbox's awesome article on [semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages). Please use following commit message format.
139+
Inspired by Sparkbox's awesome article on
140+
[semantic commit messages](http://seesparkbox.com/foundry/semantic_commit_messages).
141+
Please use following commit message format.
135142

136143
* chore (updating npm tasks etc; no production code change) -> ```git test -m 'chore: commit-message-here'```
137144
* docs (changes to documentation) -> ```git commit -m 'docs: commit-message-here'```
@@ -141,7 +148,6 @@ Inspired by Sparkbox's awesome article on [semantic commit messages](http://sees
141148
* style (formatting, missing semi colons, etc; no code change) -> ```git commit -m 'style: commit-message-here'```
142149
* test (adding missing tests, refactoring tests; no production code change) -> ```git test -m 'refactor: commit-message-here'```
143150

144-
145151
## Code guidelines
146152

147153
### HTML

.github/ISSUE_TEMPLATE/bug_report.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Bug report
3+
about: Tell us about a bug you may have identified in CoreUI.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Before opening:
11+
12+
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
13+
- [Validate](https://html5.validator.nu/) any HTML to avoid common problems
14+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)
15+
16+
Bug reports must include:
17+
18+
- Operating system and version (Windows, macOS, Android, iOS)
19+
- Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser)
20+
- A [reduced test case](https://css-tricks.com/reduced-test-cases/) or suggested fix using [CodePen](https://codepen.io/) or [JS Bin](https://jsbin.com/)

.github/ISSUE_TEMPLATE/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: Ask a question
3+
url: https://community.coreui.io/
4+
about: Ask and discuss questions with other CoreUI community members
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for a new feature in CoreUI.
4+
title: ''
5+
labels: feature
6+
assignees: ''
7+
8+
---
9+
10+
Before opening:
11+
12+
- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
13+
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)
14+
15+
Feature requests must include:
16+
17+
- As much detail as possible for what we should add and why it's important to Bootstrap
18+
- Relevant links to prior art, screenshots, or live demos whenever possible

.github/SUPPORT.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### Bug reports
2+
3+
See the [contributing guidelines](CONTRIBUTING.md) for sharing bug reports.
4+
5+
### How-to
6+
7+
For general troubleshooting or help getting started:
8+
9+
- Join [the official community](https://community.coreui.io/).
10+
- Ask and explore Stack Overflow with the [`coreui`](https://stackoverflow.com/questions/tagged/coreui) tag.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",

src/js/charts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/colors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): colors.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): colors.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/popovers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.1): popovers.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.2): popovers.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/toasts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.1): popovers.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.2): popovers.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/tooltips.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.1): tooltips.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.2): tooltips.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/widgets.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/pug/_partials/banner.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
* CoreUI - Free Bootstrap Admin Template
3-
* @version v4.0.1
3+
* @version v4.0.2
44
* @link https://coreui.io
55
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
66
* Licensed under MIT (https://coreui.io/license)

src/pug/views/docs.pug

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ block view
4646
| CoreUI Admin Template uses
4747
a(href='https://docs.npmjs.com/misc/scripts/') npm scripts
4848
| for its build system. Our
49-
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
49+
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
5050
| includes convenient methods for working with the framework, including compiling code, running tests, and more.
5151
p
5252
| To use our build system and run template locally, you’ll need a copy of CoreUI’s source files and Node. Follow these steps and you should be ready to rock:
@@ -56,7 +56,7 @@ block view
5656
| , which we use to manage our dependencies.
5757
li
5858
| Either
59-
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/archive/v4.0.1.zip') download CoreUI’s sources
59+
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/archive/v4.0.2.zip') download CoreUI’s sources
6060
| or fork
6161
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template') CoreUI’s repository
6262
| .
@@ -66,7 +66,7 @@ block view
6666
| directory and run
6767
code npm install
6868
| to install our local dependencies listed in
69-
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
69+
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
7070
| .
7171
p
7272
| When completed, you’ll be able to run the various commands provided from the command line.
@@ -75,7 +75,7 @@ block view
7575
a.anchorjs-link(aria-label='Anchor' data-anchorjs-icon='#' href='#using-npm-scripts' style='padding-left: 0.375em;')
7676
p
7777
| Our
78-
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
78+
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
7979
| includes numerous tasks for developing the project. Run
8080
code npm run
8181
| to see all the npm scripts in your terminal.

src/views/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v4.0.1
4+
* @version v4.0.2
55
* @link https://coreui.io
66
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/views/500.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v4.0.1
4+
* @version v4.0.2
55
* @link https://coreui.io
66
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/views/base/accordion.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v4.0.1
4+
* @version v4.0.2
55
* @link https://coreui.io
66
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -57,7 +57,7 @@
5757
<link rel="canonical" href="https://coreui.io/docs/4.0/components/accordion/">
5858
</head>
5959
<body>
60-
<div class="sidebar sidebar-dark sidebar-fixed sidebar-self-hiding-xl" id="sidebar">
60+
<div class="sidebar sidebar-dark sidebar-fixed" id="sidebar">
6161
<div class="sidebar-brand d-none d-md-flex">
6262
<svg class="sidebar-brand-full" width="118" height="46" alt="CoreUI Logo">
6363
<use xlink:href="assets/brand/coreui.svg#full"></use>
@@ -300,17 +300,17 @@
300300
<p class="text-medium-emphasis small">Click the accordions below to expand/collapse the accordion content.</p>
301301
<div class="example">
302302
<ul class="nav nav-tabs" role="tablist">
303-
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-751" role="tab">
303+
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-1270" role="tab">
304304
<svg class="icon me-2">
305305
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-media-play"></use>
306306
</svg>Preview</a></li>
307-
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-751" role="tab">
307+
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-1270" role="tab">
308308
<svg class="icon me-2">
309309
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-code"></use>
310310
</svg>Code</a></li>
311311
</ul>
312312
<div class="tab-content rounded-bottom">
313-
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-751">
313+
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-1270">
314314
<div class="accordion" id="accordionExample">
315315
<div class="accordion-item">
316316
<h2 class="accordion-header" id="headingOne">
@@ -338,7 +338,7 @@ <h2 class="accordion-header" id="headingThree">
338338
</div>
339339
</div>
340340
</div>
341-
<div class="tab-pane pt-1" role="tabpanel" id="code-751">
341+
<div class="tab-pane pt-1" role="tabpanel" id="code-1270">
342342
<script class="language-markup" type="text/plain">
343343
<div class="accordion" id="accordionExample">
344344
<div class="accordion-item">
@@ -380,17 +380,17 @@ <h2 class="accordion-header" id="headingThree">
380380
<p class="text-medium-emphasis small">Add <code>.accordion-flush</code> to remove the default <code>background-color</code>, some borders, and some rounded corners to render accordions edge-to-edge with their parent container.</p>
381381
<div class="example">
382382
<ul class="nav nav-tabs" role="tablist">
383-
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-697" role="tab">
383+
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-540" role="tab">
384384
<svg class="icon me-2">
385385
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-media-play"></use>
386386
</svg>Preview</a></li>
387-
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-697" role="tab">
387+
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-540" role="tab">
388388
<svg class="icon me-2">
389389
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-code"></use>
390390
</svg>Code</a></li>
391391
</ul>
392392
<div class="tab-content rounded-bottom">
393-
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-697">
393+
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-540">
394394
<div class="accordion accordion-flush" id="accordionFlushExample">
395395
<div class="accordion-item">
396396
<h2 class="accordion-header" id="flush-headingOne">
@@ -418,7 +418,7 @@ <h2 class="accordion-header" id="flush-headingThree">
418418
</div>
419419
</div>
420420
</div>
421-
<div class="tab-pane pt-1" role="tabpanel" id="code-697">
421+
<div class="tab-pane pt-1" role="tabpanel" id="code-540">
422422
<script class="language-markup" type="text/plain">
423423
<div class="accordion accordion-flush" id="accordionFlushExample">
424424
<div class="accordion-item">

0 commit comments

Comments
 (0)