brunnerh
brunnerh
The issue seems to also affect `clean-webpack-plugin` but when using that instead of `output.clean`, the favicon can be excluded manually as a workaround: ```js new CleanWebpackPlugin({ cleanAfterEveryBuildPatterns: ['!**/favicon.ico'], }), ```
Did not know that. I worked around it by simply not using auto-mode.
I for one do not know; don't really use Babel. But for Svelte components the distinction between top-level and everything else seems to make sense.
Note that this is invalid HTML and may break the association of the label with the input, as now the label contains an additional button for the tooltip. Content for...
Carbon appears to support hard alignments. In the case of the show/hide button in the password input the problem could be fixed by adding the `bx--tooltip--align-end` class to the button....
@metonym As noted, i do not think tooltips should affect layout and normally they should simply be bounded to the current dimensions of the page. Having the option to manually...
My suggestion would be to constrain the tooltip to the governing scrolling/clipping container, or the document body, if no such container is found. This could be done by first calculating...
The logic of appending the content to the body can also be wrapped in a `use` action, that way you just need to add one simple wrapper and no additional...
I use a preprocessor to generate utility classes for all available spacings, e.g. `mt8` for `margin-top: 8px`, same for padding. This approach could of course be modified to use numbering...
You currently may also want to override the background of that component to transparent/none when using dark themes. See https://github.com/carbon-design-system/carbon/issues/9877