Skip to content

Commit

Permalink
fix(core): avoid to prev button hiding during loop (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
felipefialho authored Jul 17, 2024
1 parent afd4edc commit c415939
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
import { IconProps } from "./icons";
import { Color, Mode, TextFieldTypes } from "@ionic/core";
import { LocalJSX as IonTypes } from "@ionic/core/dist/types/components";
import { IonTypes } from "@ionic/core/dist/types/components";
export { IconProps } from "./icons";
export { Color, Mode, TextFieldTypes } from "@ionic/core";
export { LocalJSX as IonTypes } from "@ionic/core/dist/types/components";
export { IonTypes } from "@ionic/core/dist/types/components";
export namespace Components {
interface AtomAlert {
"actionText"?: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/carousel/carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class AtomCarousel {
class='carousel-navigation navigation--prev'
role='button'
aria-label='Previous'
aria-disabled='true'
aria-disabled={this.loop ? 'false' : 'true'}
onClick={(event) => this.handleNavigationClick(event)}
>
<atom-icon icon='chevron-left'></atom-icon>
Expand Down

0 comments on commit c415939

Please sign in to comment.