We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e062500 commit 5050153Copy full SHA for 5050153
packages/components/configs/stencil/index.cjs
@@ -5,9 +5,15 @@ const onClickPlugin = require('../plugins/on-click.cjs');
5
*/
6
module.exports = {
7
typescript: true,
8
- attributePassing: {
9
- enabled: true,
10
- customRef: '_ref'
+ attributePassing: (component) => {
+ // Disable attribute passing for breadcrumb to prevent Host wrapper generation
+ if (component?.path?.includes('/breadcrumb/breadcrumb')) {
11
+ return { enabled: false };
12
+ }
13
+ return {
14
+ enabled: true,
15
+ customRef: '_ref'
16
+ };
17
},
18
plugins: [onClickPlugin]
19
};
0 commit comments