Daniel Leroux

Results 127 comments of Daniel Leroux

I'm facing the same issue. I have a dropdown and dropdown-item as stencil webcomponent. I used the react-output-target to generate wrapper for react. The component `MyDropdown` and `MyDropdownItem` is `scoped=true`...

Sadly not. Its resulting into the same problem ``` setSearch((e.target as HTMLInputElement).value)} /> {items.filter(item => item.includes(search)).map(item => )} ``` If i enable the shadow dom on the MyDropdown its working,...

Thx to @domhaas it works fine, but is it also possible to show the buttons in the empty tabStrip? In my case the inital start of the web app shows...

@tomas-reznak can try to update to latest version or define the ix-icons in your main.ts before starting the react app e.g: ``` import { defineCustomElements } from '@siemens/ix-icons/loader'; await defineCustomElements();...

Cannot reproduce this issue https://stackblitz.com/edit/uo4ucs-xcdfpm?file=src%2Fapp%2Fdropdown.ts ![Screen Recording 2024-05-06 at 08 08 14](https://github.com/siemens/ix/assets/2144313/d45d2038-28d3-46bc-886f-920f2adc3be5)

Can you please provide more detailed steps to reproduce. I tested it with the following code: https://stackblitz.com/edit/angular-uqxzsw?file=src/toggle.tsx ```tsx async function APICall(v: boolean) { return new Promise((r) => setTimeout(() => r(!v),...

@rouven-s Thank for your PR. We have to address some points before we can proceed here. - Accessibility has to be implemented for for new components e.g https://www.w3.org/WAI/ARIA/apg/patterns/meter/ - Merge...

@rouven-s Lint fails on your component: ![image](https://github.com/siemens/ix/assets/2144313/ba4d31e9-c0d8-4e55-955e-f99068994892)