Eric Liu

Results 252 comments of Eric Liu

You can override the styles by targeting the class: ```css :global(.bx--tooltip__trigger.bx--tooltip__trigger--definition) { border: 0 !important; } ```

> > > > @metonym If I only want partial coverage. the following css invalid. > > ``` > :local(.bx--tooltip__trigger.bx--tooltip__trigger--definition) { > border: 0 !important; > } > ``` I'm...

My understanding is that `:local` is a feature of CSS modules. Could you link me to docs on it? I'd be interested in learning more.

It should. A while back, I was experimenting with using Cypress due to its ease of use.

Per https://github.com/nodejs/node/issues/43617#issuecomment-1170545990, using [Node 18](https://github.com/actions/setup-node) in my GitHub workflow resolved the issue. ```diff jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 + with: + node-version: 18...

@dummdidumm Anything else I should do for this PR?

Floating point step values are supported in [v0.70.13](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.13). [Example](https://carbon-components-svelte.onrender.com/components/NumberInput#with-step-value)

I'm just making a note here about the component API design for v1. I believe Carbon v11 now always forwards "rest props" to the top-most elements for consistency. We should...

I've rebased on `master`.