Skip to content

Commit

Permalink
release: v4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrholek committed Sep 16, 2021
1 parent cc2185e commit a09ee2e
Show file tree
Hide file tree
Showing 59 changed files with 1,348 additions and 1,290 deletions.
48 changes: 27 additions & 21 deletions .github/CONTRIBUTING.md
@@ -1,23 +1,25 @@
# Contributing to CoreUI Free Bootstrap Admin Template
# Contributing to CoreUI

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

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

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.
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.

## Using the issue tracker

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:
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:

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

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

* 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).

## Bug reports

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

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

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

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.

Expand Down Expand Up @@ -61,10 +63,11 @@ Example:
## Feature requests

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


## Pull requests
Expand All @@ -86,18 +89,18 @@ included in the project:

```bash
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/free-bootstrap-admin-template.git
git clone https://github.com/<your-username>/coreui.git
# Navigate to the newly cloned directory
cd free-bootstrap-admin-template
cd coreui
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/coreui/coreui-free-bootstrap-admin-template.git
git remote add upstream https://github.com/coreui/coreui.git
```

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

```bash
git checkout main
git pull upstream main
git checkout master
git pull upstream master
```

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

```bash
git pull [--rebase] upstream main
git pull [--rebase] upstream master
```

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

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

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

### Semantic Git commit messages

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

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


## Code guidelines

### HTML
Expand Down
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,20 @@
---
name: Bug report
about: Tell us about a bug you may have identified in CoreUI.
title: ''
labels: ''
assignees: ''

---

Before opening:

- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/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-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)

Bug reports must include:

- Operating system and version (Windows, macOS, Android, iOS)
- Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser)
- 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/)
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,4 @@
contact_links:
- name: Ask a question
url: https://community.coreui.io/
about: Ask and discuss questions with other CoreUI community members
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,18 @@
---
name: Feature request
about: Suggest an idea for a new feature in CoreUI.
title: ''
labels: feature
assignees: ''

---

Before opening:

- [Search for duplicate or closed issues](https://github.com/coreui/coreui-free-bootstrap-admin-template/issues?utf8=%E2%9C%93&q=is%3Aissue)
- Read the [contributing guidelines](https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/main/.github/CONTRIBUTING.md)

Feature requests must include:

- As much detail as possible for what we should add and why it's important to Bootstrap
- Relevant links to prior art, screenshots, or live demos whenever possible
10 changes: 10 additions & 0 deletions .github/SUPPORT.md
@@ -0,0 +1,10 @@
### Bug reports

See the [contributing guidelines](CONTRIBUTING.md) for sharing bug reports.

### How-to

For general troubleshooting or help getting started:

- Join [the official community](https://community.coreui.io/).
- Ask and explore Stack Overflow with the [`coreui`](https://stackoverflow.com/questions/tagged/coreui) tag.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@coreui/coreui-free-bootstrap-admin-template",
"version": "4.0.1",
"version": "4.0.2",
"description": "Free Bootstrap Admin Template",
"keywords": [
"admin",
Expand Down
2 changes: 1 addition & 1 deletion src/js/charts.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Boostrap Admin Template (v4.0.1): main.js
* CoreUI Boostrap Admin Template (v4.0.2): main.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/colors.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Boostrap Admin Template (v4.0.1): colors.js
* CoreUI Boostrap Admin Template (v4.0.2): colors.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/main.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Boostrap Admin Template (v4.0.1): main.js
* CoreUI Boostrap Admin Template (v4.0.2): main.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/popovers.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Free Boostrap Admin Template (v4.0.1): popovers.js
* CoreUI Free Boostrap Admin Template (v4.0.2): popovers.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/toasts.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Free Boostrap Admin Template (v4.0.1): popovers.js
* CoreUI Free Boostrap Admin Template (v4.0.2): popovers.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/tooltips.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Free Boostrap Admin Template (v4.0.1): tooltips.js
* CoreUI Free Boostrap Admin Template (v4.0.2): tooltips.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/js/widgets.js
Expand Up @@ -2,7 +2,7 @@

/**
* --------------------------------------------------------------------------
* CoreUI Boostrap Admin Template (v4.0.1): main.js
* CoreUI Boostrap Admin Template (v4.0.2): main.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion src/pug/_partials/banner.pug
@@ -1,6 +1,6 @@
//
* CoreUI - Free Bootstrap Admin Template
* @version v4.0.1
* @version v4.0.2
* @link https://coreui.io
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://coreui.io/license)
Expand Down
8 changes: 4 additions & 4 deletions src/pug/views/docs.pug
Expand Up @@ -46,7 +46,7 @@ block view
| CoreUI Admin Template uses
a(href='https://docs.npmjs.com/misc/scripts/') npm scripts
| for its build system. Our
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
| includes convenient methods for working with the framework, including compiling code, running tests, and more.
p
| 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:
Expand All @@ -56,7 +56,7 @@ block view
| , which we use to manage our dependencies.
li
| Either
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/archive/v4.0.1.zip') download CoreUI’s sources
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/archive/v4.0.2.zip') download CoreUI’s sources
| or fork
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template') CoreUI’s repository
| .
Expand All @@ -66,7 +66,7 @@ block view
| directory and run
code npm install
| to install our local dependencies listed in
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
| .
p
| When completed, you’ll be able to run the various commands provided from the command line.
Expand All @@ -75,7 +75,7 @@ block view
a.anchorjs-link(aria-label='Anchor' data-anchorjs-icon='#' href='#using-npm-scripts' style='padding-left: 0.375em;')
p
| Our
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.1/package.json') package.json
a(href='https://github.com/coreui/coreui-free-bootstrap-admin-template/blob/v4.0.2/package.json') package.json
| includes numerous tasks for developing the project. Run
code npm run
| to see all the npm scripts in your terminal.
Expand Down
2 changes: 1 addition & 1 deletion src/views/404.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<!--
* CoreUI - Free Bootstrap Admin Template
* @version v4.0.1
* @version v4.0.2
* @link https://coreui.io
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://coreui.io/license)
Expand Down
2 changes: 1 addition & 1 deletion src/views/500.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<!--
* CoreUI - Free Bootstrap Admin Template
* @version v4.0.1
* @version v4.0.2
* @link https://coreui.io
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://coreui.io/license)
Expand Down
20 changes: 10 additions & 10 deletions src/views/base/accordion.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<!--
* CoreUI - Free Bootstrap Admin Template
* @version v4.0.1
* @version v4.0.2
* @link https://coreui.io
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://coreui.io/license)
Expand Down Expand Up @@ -57,7 +57,7 @@
<link rel="canonical" href="https://coreui.io/docs/4.0/components/accordion/">
</head>
<body>
<div class="sidebar sidebar-dark sidebar-fixed sidebar-self-hiding-xl" id="sidebar">
<div class="sidebar sidebar-dark sidebar-fixed" id="sidebar">
<div class="sidebar-brand d-none d-md-flex">
<svg class="sidebar-brand-full" width="118" height="46" alt="CoreUI Logo">
<use xlink:href="assets/brand/coreui.svg#full"></use>
Expand Down Expand Up @@ -300,17 +300,17 @@
<p class="text-medium-emphasis small">Click the accordions below to expand/collapse the accordion content.</p>
<div class="example">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-751" role="tab">
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-1270" role="tab">
<svg class="icon me-2">
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-media-play"></use>
</svg>Preview</a></li>
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-751" role="tab">
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-1270" role="tab">
<svg class="icon me-2">
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-code"></use>
</svg>Code</a></li>
</ul>
<div class="tab-content rounded-bottom">
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-751">
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-1270">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
Expand Down Expand Up @@ -338,7 +338,7 @@ <h2 class="accordion-header" id="headingThree">
</div>
</div>
</div>
<div class="tab-pane pt-1" role="tabpanel" id="code-751">
<div class="tab-pane pt-1" role="tabpanel" id="code-1270">
<script class="language-markup" type="text/plain">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
Expand Down Expand Up @@ -380,17 +380,17 @@ <h2 class="accordion-header" id="headingThree">
<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>
<div class="example">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-697" role="tab">
<li class="nav-item"><a class="nav-link active" data-coreui-toggle="tab" href="#preview-540" role="tab">
<svg class="icon me-2">
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-media-play"></use>
</svg>Preview</a></li>
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-697" role="tab">
<li class="nav-item"><a class="nav-link" data-coreui-toggle="tab" href="#code-540" role="tab">
<svg class="icon me-2">
<use xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-code"></use>
</svg>Code</a></li>
</ul>
<div class="tab-content rounded-bottom">
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-697">
<div class="tab-pane p-3 active preview" role="tabpanel" id="preview-540">
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
Expand Down Expand Up @@ -418,7 +418,7 @@ <h2 class="accordion-header" id="flush-headingThree">
</div>
</div>
</div>
<div class="tab-pane pt-1" role="tabpanel" id="code-697">
<div class="tab-pane pt-1" role="tabpanel" id="code-540">
<script class="language-markup" type="text/plain">
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
Expand Down

2 comments on commit a09ee2e

@SahayaJalin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SahayaJalin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

coreui-4.1.0-dist (1).zip
i need this index.html code

Please sign in to comment.