Skip to content

Commit 8efb887

Browse files
committed
chore(release): ship v5.1.1
1 parent 4ae2e35 commit 8efb887

File tree

9 files changed

+1005
-1079
lines changed

9 files changed

+1005
-1079
lines changed

.prettierrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
semi: true,
3-
trailingComma: "all",
3+
trailingComma: 'none',
44
singleQuote: true,
5-
printWidth: 100,
5+
printWidth: 120,
66
tabWidth: 2
77
};

CHANGELOG.md

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

33
---
44

5+
#### `5.1.1`
6+
7+
- chore(dependencies): update
8+
- fix(dropdown): add aria-expanded attribute, refactor
9+
10+
---
11+
512
#### `5.1.0`
613

714
- chore(dependencies): update

package-lock.json

+989-1,064
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coreui-angular-dev",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "CoreUI Components Library for Angular",
55
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

projects/coreui-angular-chartjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular-chartjs",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "Angular wrapper component for Chart.js",
55
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

projects/coreui-angular/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<h2 align="center">CoreUI for Angular</h3>
1212

1313
<p align="center">
14-
Angular Components Library built on top of Bootstrap 5 and TypeScript.
14+
Angular Components Library built on top of Bootstrap 5.3 and TypeScript.
1515
<br>
1616
<a href="https://coreui.io/angular/docs/"><strong>Explore CoreUI for Angular docs »</strong></a>
1717
<br>

projects/coreui-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "CoreUI Components Library for Angular",
55
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

projects/coreui-angular/src/lib/coreui.types.ts

+2-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export enum BreakpointInfix {
88
md = 'md',
99
lg = 'lg',
1010
xl = 'xl',
11-
xxl = 'xxl',
11+
xxl = 'xxl'
1212
}
1313

1414
export type BreakpointInfixStrings = keyof typeof BreakpointInfix;
@@ -65,13 +65,7 @@ export type TextColors =
6565

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

68-
export type BadgePositions =
69-
| 'top-start'
70-
| 'top-end'
71-
| 'bottom-end'
72-
| 'bottom-start'
73-
| string
74-
| undefined;
68+
export type BadgePositions = 'top-start' | 'top-end' | 'bottom-end' | 'bottom-start' | string | undefined;
7569

7670
export type Placements =
7771
| 'auto'

projects/coreui-icons-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/icons-angular",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "CoreUI Icons Angular component and service",
55
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
66
"license": "MIT",

0 commit comments

Comments
 (0)