Skip to content

Commit

Permalink
chore(release): 4.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 21, 2024
1 parent 1a8e0d9 commit 4644ec4
Show file tree
Hide file tree
Showing 22 changed files with 117 additions and 77 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,46 @@
All notable changes to this project will be documented in this file. See
[standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [4.12.0](https://github.com/taiga-family/taiga-ui/compare/v4.11.0...v4.12.0) (2024-10-21)

### 🐞 Bug Fixes

- **addon-commerce:** `InputCardGroup` safari autofill focus
([23e32c4](https://github.com/taiga-family/taiga-ui/commit/23e32c48501e5bcdea8c34168728746804d39754))
- **addon-commerce:** `InputCardGroup` safari autofill focus
([#9520](https://github.com/taiga-family/taiga-ui/issues/9520))
([7858373](https://github.com/taiga-family/taiga-ui/commit/78583732bc2c7a6fe3965ec9d0a51b677a31b634))
- **cdk:** `Control` fix initial status ([#9539](https://github.com/taiga-family/taiga-ui/issues/9539))
([cb5f29a](https://github.com/taiga-family/taiga-ui/commit/cb5f29af07040183809755769450519008e567ae))
- **cdk:** support `:` inside path segment in url ([#9549](https://github.com/taiga-family/taiga-ui/issues/9549))
([8317b67](https://github.com/taiga-family/taiga-ui/commit/8317b67ea8e5fc89b4326f4e85661fbaec6c5ae1))
- **core:** fix `floating` appearance not reacting to the theme
([#9504](https://github.com/taiga-family/taiga-ui/issues/9504))
([847305a](https://github.com/taiga-family/taiga-ui/commit/847305aad700ac0a4691faf52a48245bc90b96fd))
- **kit:** `Skeleton` fix for `ProgressCircle` ([#9507](https://github.com/taiga-family/taiga-ui/issues/9507))
([2598626](https://github.com/taiga-family/taiga-ui/commit/25986264429ef19da78946823cc062b86f5e77df))
- **legacy:** `InputNumber` fix hydration ([#9434](https://github.com/taiga-family/taiga-ui/issues/9434))
([e0aac04](https://github.com/taiga-family/taiga-ui/commit/e0aac049cbbb931e60278c21c168cbf1e51693a7))
- **legacy:** `InputTime` has broken support of native date picker
([#9540](https://github.com/taiga-family/taiga-ui/issues/9540))
([049b289](https://github.com/taiga-family/taiga-ui/commit/049b2898f68dbf34b00aac63ec75ad57dc06b3b6))

### 🚀 Features

- **addon-doc:** improve active zone for copy button ([#9510](https://github.com/taiga-family/taiga-ui/issues/9510))
([424496b](https://github.com/taiga-family/taiga-ui/commit/424496b4a489c7db5a5bc274fc3f5e38ec47f087))
- **addon-mobile:** `ResponsiveDialog` add new service and refactor `SheetDialog` to new spec
([#9459](https://github.com/taiga-family/taiga-ui/issues/9459))
([10198a1](https://github.com/taiga-family/taiga-ui/commit/10198a1e32c14576d03fdcb8cfe2753e8136096a))
- **core:** `Hint` add mobile behavior ([#9547](https://github.com/taiga-family/taiga-ui/issues/9547))
([e650f38](https://github.com/taiga-family/taiga-ui/commit/e650f3856b62eb4b026c0f635f565134cadf3f08))
- **core:** add `tuiDialog` typed factory util ([#9446](https://github.com/taiga-family/taiga-ui/issues/9446))
([f507d2e](https://github.com/taiga-family/taiga-ui/commit/f507d2e7116ed67ac0485bdd477e8dfe559fa384))
- **core:** add new appearances ([#9526](https://github.com/taiga-family/taiga-ui/issues/9526))
([c3cd8f2](https://github.com/taiga-family/taiga-ui/commit/c3cd8f260d1be566ac7822a9c8a7000432ba71f3))
- **core:** improve `a11y` for textfield ([#9449](https://github.com/taiga-family/taiga-ui/issues/9449))
([19fbbe6](https://github.com/taiga-family/taiga-ui/commit/19fbbe646688671c4c0a232cf5d9c7d9bb5b12a2))

## [4.11.0](https://github.com/taiga-family/taiga-ui/compare/v4.8.1...v4.11.0) (2024-10-14)

### 🐞 Bug Fixes
Expand Down
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/components",
"version": "4.11.0",
"version": "4.12.0",
"private": true,
"description": "Taiga UI is a set of components, services, directives and other tools to build high quality UI using modern Angular framework",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions projects/addon-charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/addon-charts",
"version": "4.11.0",
"version": "4.12.0",
"description": "Extension package for Taiga UI that adds various charts, graphs and related components.",
"keywords": [
"angular",
Expand All @@ -17,8 +17,8 @@
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0",
"@ng-web-apis/common": "^4.11.1",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/core": "^4.11.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/core": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"tslib": ">=2.8.0"
}
Expand Down
10 changes: 5 additions & 5 deletions projects/addon-commerce/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/addon-commerce",
"version": "4.11.0",
"version": "4.12.0",
"description": "Extension package for Taiga UI related to commerce, payment systems, currencies etc.",
"keywords": [
"angular",
Expand All @@ -21,10 +21,10 @@
"@maskito/core": "^3.1.1",
"@maskito/kit": "^3.1.1",
"@ng-web-apis/common": "^4.11.1",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/core": "^4.11.0",
"@taiga-ui/i18n": "^4.11.0",
"@taiga-ui/kit": "^4.11.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/core": "^4.12.0",
"@taiga-ui/i18n": "^4.12.0",
"@taiga-ui/kit": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"rxjs": ">=7.0.0",
"tslib": ">=2.8.0"
Expand Down
12 changes: 6 additions & 6 deletions projects/addon-doc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/addon-doc",
"version": "4.11.0",
"version": "4.12.0",
"description": "Taiga UI based library for developing documentation portals for Angular libraries.",
"keywords": [
"angular",
Expand All @@ -23,11 +23,11 @@
"@angular/forms": ">=16.0.0",
"@angular/router": ">=16.0.0",
"@ng-web-apis/common": "^4.11.1",
"@taiga-ui/addon-mobile": "^4.11.0",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/core": "^4.11.0",
"@taiga-ui/kit": "^4.11.0",
"@taiga-ui/legacy": "^4.11.0",
"@taiga-ui/addon-mobile": "^4.12.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/core": "^4.12.0",
"@taiga-ui/kit": "^4.12.0",
"@taiga-ui/legacy": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"markdown-it": ">=14.1.0",
"ngx-highlightjs": ">=10.0.0",
Expand Down
8 changes: 4 additions & 4 deletions projects/addon-mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/addon-mobile",
"version": "4.11.0",
"version": "4.12.0",
"description": "Extension package for Taiga UI that adds support for mobile specific behaviors such as custom data pickers, dropdowns, etc.",
"keywords": [
"angular",
Expand All @@ -18,9 +18,9 @@
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0",
"@ng-web-apis/common": "^4.11.1",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/core": "^4.11.0",
"@taiga-ui/kit": "^4.11.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/core": "^4.12.0",
"@taiga-ui/kit": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"rxjs": ">=7.0.0",
"tslib": ">=2.8.0"
Expand Down
10 changes: 5 additions & 5 deletions projects/addon-table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/addon-table",
"version": "4.11.0",
"version": "4.12.0",
"description": "A library to display tabled data with filters, search, group actions, etc.",
"keywords": [
"angular",
Expand All @@ -16,10 +16,10 @@
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0",
"@ng-web-apis/intersection-observer": "^4.11.1",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/core": "^4.11.0",
"@taiga-ui/i18n": "^4.11.0",
"@taiga-ui/kit": "^4.11.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/core": "^4.12.0",
"@taiga-ui/i18n": "^4.12.0",
"@taiga-ui/kit": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"rxjs": ">=7.0.0",
"tslib": ">=2.8.0"
Expand Down
2 changes: 1 addition & 1 deletion projects/cdk/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const TUI_VERSION = '4.11.0';
export const TUI_VERSION = '4.12.0';
2 changes: 1 addition & 1 deletion projects/cdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/cdk",
"version": "4.11.0",
"version": "4.12.0",
"description": "Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance",
"keywords": [
"angular",
Expand Down
6 changes: 3 additions & 3 deletions projects/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taiga-ui/core",
"version": "4.11.0",
"version": "4.12.0",
"description": "Core library for creating Angular components and applications using Taiga UI",
"keywords": [
"angular",
Expand All @@ -26,9 +26,9 @@
"@angular/router": ">=16.0.0",
"@ng-web-apis/common": "^4.11.1",
"@ng-web-apis/mutation-observer": "^4.11.1",
"@taiga-ui/cdk": "^4.11.0",
"@taiga-ui/cdk": "^4.12.0",
"@taiga-ui/event-plugins": "^4.3.1",
"@taiga-ui/i18n": "^4.11.0",
"@taiga-ui/i18n": "^4.12.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"rxjs": ">=7.0.0",
"tslib": ">=2.8.0"
Expand Down
Loading

0 comments on commit 4644ec4

Please sign in to comment.