Skip to content

Commit

Permalink
chore(release): ship v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xidedix committed May 24, 2024
1 parent 4ae2e35 commit 8efb887
Show file tree
Hide file tree
Showing 9 changed files with 1,005 additions and 1,079 deletions.
4 changes: 2 additions & 2 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
semi: true,
trailingComma: "all",
trailingComma: 'none',
singleQuote: true,
printWidth: 100,
printWidth: 120,
tabWidth: 2
};
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

---

#### `5.1.1`

- chore(dependencies): update
- fix(dropdown): add aria-expanded attribute, refactor

---

#### `5.1.0`

- chore(dependencies): update
Expand Down
2,053 changes: 989 additions & 1,064 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coreui-angular-dev",
"version": "5.1.0",
"version": "5.1.1",
"description": "CoreUI Components Library for Angular",
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion projects/coreui-angular-chartjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/angular-chartjs",
"version": "5.1.0",
"version": "5.1.1",
"description": "Angular wrapper component for Chart.js",
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion projects/coreui-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<h2 align="center">CoreUI for Angular</h3>

<p align="center">
Angular Components Library built on top of Bootstrap 5 and TypeScript.
Angular Components Library built on top of Bootstrap 5.3 and TypeScript.
<br>
<a href="https://coreui.io/angular/docs/"><strong>Explore CoreUI for Angular docs »</strong></a>
<br>
Expand Down
2 changes: 1 addition & 1 deletion projects/coreui-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/angular",
"version": "5.1.0",
"version": "5.1.1",
"description": "CoreUI Components Library for Angular",
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down
10 changes: 2 additions & 8 deletions projects/coreui-angular/src/lib/coreui.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export enum BreakpointInfix {
md = 'md',
lg = 'lg',
xl = 'xl',
xxl = 'xxl',
xxl = 'xxl'
}

export type BreakpointInfixStrings = keyof typeof BreakpointInfix;
Expand Down Expand Up @@ -65,13 +65,7 @@ export type TextColors =

export type Alignment = 'baseline' | 'top' | 'middle' | 'bottom' | 'text-top' | 'text-bottom';

export type BadgePositions =
| 'top-start'
| 'top-end'
| 'bottom-end'
| 'bottom-start'
| string
| undefined;
export type BadgePositions = 'top-start' | 'top-end' | 'bottom-end' | 'bottom-start' | string | undefined;

export type Placements =
| 'auto'
Expand Down
2 changes: 1 addition & 1 deletion projects/coreui-icons-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coreui/icons-angular",
"version": "5.1.0",
"version": "5.1.1",
"description": "CoreUI Icons Angular component and service",
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
"license": "MIT",
Expand Down

0 comments on commit 8efb887

Please sign in to comment.