Skip to content

Commit 2fdedb8

Browse files
committed
## 14.45.0 - 2025-02-03
1 parent 0e79f91 commit 2fdedb8

File tree

10 files changed

+47
-25
lines changed

10 files changed

+47
-25
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## 14.45.0 - 2025-02-03
9+
10+
### Added
11+
- Added keyboard accessibility for tab navigation [#2944](https://github.com/orchidsoftware/platform/pull/2944)
12+
- Added support for Kazakh language translations [#2949](https://github.com/orchidsoftware/platform/pull/2949)
13+
- Added `activeAccordion` method to `Accordion.php` [#2939](https://github.com/orchidsoftware/platform/pull/2939)
14+
- Added screen state test
15+
16+
### Changed
17+
- Updated global search to use a window modal for better UX
18+
- Improved tag ID generation for tabs [#2935](https://github.com/orchidsoftware/platform/issues/2935)
19+
- Improved code on accordion layout
20+
- Improved type annotations and type hints
21+
- Improved types for screen testing
22+
23+
### Fixed
24+
- Fixed Pslam errors
25+
- Fixed code style issues
26+
- Fixed types inconsistencies
27+
- Improved Accordion accessibility [#2946](https://github.com/orchidsoftware/platform/pull/2946)
28+
- Reload page when changing assets [#2932](https://github.com/orchidsoftware/platform/issues/2932)
29+
30+
### CI/CD
31+
- Updated version of `actions/upload-artifact`
32+
833
## 14.44.2 - 2025-01-17
934

1035
### Added

public/css/orchid.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/orchid.rtl.css

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/orchid.rtl.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/orchid.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/orchid.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/vendor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/controllers/modal_controller.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,20 +66,16 @@ export default class extends ApplicationController {
6666
* @param event - The event object for the 'shown.bs.modal' event.
6767
*/
6868
show(event) {
69-
// Focus on the element with 'autofocus' attribute, if available
70-
let autoFocusElement = this.element.querySelector('[autofocus]');
71-
72-
if (autoFocusElement !== null) {
73-
autoFocusElement.focus();
74-
}
75-
7669
// Modify the backdrop to ensure it's not mistakenly identified as a Turbo frame
7770
let backdrop = document.querySelector('.modal-backdrop');
7871

7972
if (backdrop !== null) {
8073
backdrop.id = 'backdrop';
8174
backdrop.dataset.turboTemporary = true;
8275
}
76+
77+
// Focus on the element with 'autofocus' attribute, if available
78+
this.element.querySelector('[autofocus]')?.focus();
8379
}
8480

8581
/**

src/Platform/Dashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Dashboard
2323
*
2424
* @deprecated Use `Dashboard::version()` instead.
2525
*/
26-
public const VERSION = '14.44.2';
26+
public const VERSION = '14.45.0';
2727

2828
/**
2929
* @deprecated

0 commit comments

Comments
 (0)