Skip to content

Tags: Trendyol/baklava

Tags

v3.3.0-beta.3

Toggle v3.3.0-beta.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(calendar): Enhance accessibility by adding visually hidden text … (

#940)

### Changes
- Added visually hidden text to the navigation buttons for improved
accessibility:
- `<span class="visually-hidden">Previous Calendar View</span>` was
added to the previous button.
- `<span class="visually-hidden">Next Calendar View</span>` was added to
the next button.

### CSS
- Added the following CSS class to hide the text visually while keeping
it accessible to screen readers:
  ```css
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
### Related Issue
Fixes #939

---------

Co-authored-by: Erbil <erbilnas071@gmail.com>

v3.3.0-beta.2

Toggle v3.3.0-beta.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(switch): update cursor style to not-allowed when disabled (#943)

This PR updates the cursor style of the Switch component to
`not-allowed` when it is disabled, improving user experience by
indicating that the component is not interactive in its disabled state.

### Changes
- Added the following CSS rule to the Switch component:
  ```css
  :host([disabled]) .switch {
    opacity: 0.5;
    cursor: not-allowed; /* added this part */
  }
### Issue Resolved
 this PR resolves #942

Co-authored-by: Buse Selvi <106681486+buseselvi@users.noreply.github.com>

v3.3.0-beta.1

Toggle v3.3.0-beta.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(rtl-support): trigger beta release (#937)

Co-authored-by: Erbil Nas <erbil.nas@trendyol.com>

v3.2.0

Toggle v3.2.0's commit message
doc: change version

v3.2.0-beta.2

Toggle v3.2.0-beta.2's commit message
Merge branch 'main' of https://github.com/Trendyol/baklava

v3.2.0-beta.1

Toggle v3.2.0-beta.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge branch 'main' into next

v3.0.0-beta.34

Toggle v3.0.0-beta.34's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: upgrade next version to resolve vulnerability (#929)

Co-authored-by: Erbil Nas <erbil.nas@trendyol.com>

v3.0.0-beta.33

Toggle v3.0.0-beta.33's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(datepicker): fix selected date color bug (#922)

v3.0.0-beta.32

Toggle v3.0.0-beta.32's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(datepicker): remove calendar border (#917)

v3.0.0-beta.31

Toggle v3.0.0-beta.31's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(table): multiple checkbox should only handle currently rendered r…

…ows (#913)

Otherwise it removes previous selections on paginated table. 

Closes #910.