Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(textarea): Focus Outline Touching Borders in Readonly Textarea #9759

Closed
wants to merge 33 commits into from

Conversation

tw4
Copy link
Contributor

@tw4 tw4 commented Aug 27, 2024

Related to Issue #9741 (issue 2)

@nnaydenow nnaydenow requested a review from MapTo0 August 27, 2024 20:49
@nnaydenow
Copy link
Contributor

Hi @MapTo0,

Could you please review that PR?

Regards,
Nayden

@nnaydenow
Copy link
Contributor

Hi @tw4,

Sorry for the delayed action.

Same fix need to be applied to packages/main/src/themes/sap_horizon_dark/TextArea-parameters.css otherwise the issue will continue to exist in in sap_horizon_dark theme.

Could you also rebase your PR to the main branch in order receive the chromedriver update?

Regards,
Nayden

@tw4
Copy link
Contributor Author

tw4 commented Sep 4, 2024

Hello @nnaydenow,

Thank you very much for your feedback. I will make the necessary arrangements during the day.

Best regards.

nnaydenow and others added 23 commits September 4, 2024 18:18
Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.5 to 4.0.8.
- [Release notes](https://github.com/micromatch/micromatch/releases)
- [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md)
- [Commits](micromatch/micromatch@4.0.5...4.0.8)

---
updated-dependencies:
- dependency-name: micromatch
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Issue:

- Based on the template the open is set before the opener attribute
resulting into a console warning.

Fixes: #9708
* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I7bac7b072d5556d66cd6d7ed416b01821d90f322

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I758f5450d2b92cd9f9c16a11d99b553b8c9257db

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I9e49d0549aefa5b9225633e659130e75188c3060

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: Ie875b1160b001dfe25e2a867ab4540f5743e8d0f

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I3c42c1a77208c0cee3624d624fa5cce1bd1fc668

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I45825b589c1ffdd2ff28ab0f3c5d35be90f141a8

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: Iaf6eee2ab467884ee8b3dcf23613f526bdd319e9

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: Ia4382add28280ece69f101fa77f6bc377b0b0c57

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: Ia37170988b3d9b535791e094ff8d266e8830ce40

* [INTERNAL] Translation delivery: commit by LX Lab

Change-Id: I3bdb2f685f8da883d736c45e3a2f2b95a2323d15
In chrome 128 new headless mode described in https://developer.chrome.com/docs/chromium/new-headless is set to be used by default. This made tests unstable. To make tests stable again we have to pass `old` as value to the `headless` parameter in Chrome configuration options.
…9680)

This PR introduces Range Selection functionality for ui5-monthpicker and ui5-year-picker, to be used within the ui5-daterange-picker component.

When the formatPattern of a DateRangePicker is set to a pattern that includes months and years or only years, users can now select a range directly within these views.

Example Usage:
- For month range selection, create a DateRangePicker as follows:
    <ui5-daterange-picker format-pattern="MM/yyyy"></ui5-daterange-pickerr>
- Similarly for year range selection:
    <ui5-daterange-picker format-pattern="yyyy"></ui5-daterange-pickerr>

More Info:
- The selectionMode property is now available for MonthPicker and YearPicker, supporting "Single" or "Range" selection modes.
- Addition for ui5-calendar: To customize the styling of the selected-between months or years in a range, use the month-cell-selected-between and year-cell-selected-between CSS parts.

Fixes: #8177
Original PR: #8187
Previously, there were no visual indicators when hovering over a menu item, aside from the focus border. With this change, we're adding `hover` and `active` styles to the menu items.
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.7.5.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.7.5)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
With component restructuring used solution no longer takes effect.

Now, scrollbar overstyling is not added to the component adoptedStyleSheets if the `ui5-content-native-scrollbar` CSS class is added to the body element.

Related to: #9720, #9695
Fixate the date, as some months are not filled correctly with special dates
removing public from documentation of private(internal) components
We are renaming the `fileSizeExceeded` event to `file-size-exceed` so it's consistent with the framework convention.

If you were using it as:
```JS
fileUploader.addEventListener("fileSizeExceeded", function (event) {
       alert("File is too big!");
}
```

You should now use it as:

```JS
fileUploader.addEventListener("file-size-exceed", function (event) {
       alert("File is too big!");
}
```
Bumps [webpack](https://github.com/webpack/webpack) from 5.90.3 to 5.94.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.90.3...v5.94.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@tw4 tw4 force-pushed the main branch 2 times, most recently from 2bc21a4 to 97fc6e6 Compare September 4, 2024 15:20
Copy link

cla-assistant bot commented Sep 4, 2024

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
10 out of 13 committers have signed the CLA.

✅ nnaydenow
✅ unazko
✅ vladitasev
✅ TeodorTaushanov
✅ ilhan007
✅ tsanislavgatev
✅ tw4
✅ MapTo0
✅ hinzzx
✅ dimovpetar
❌ pskelin
❌ ui5-webcomponents-bot
❌ didip1000
You have signed the CLA already but the status is still pending? Let us recheck it.

@tw4 tw4 closed this Sep 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.