Skip to content

Commit

Permalink
fix: bump tabs plugin v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko committed Oct 21, 2024
1 parent 028f96a commit aa6f391
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@diplodoc/cut-extension": "^0.3.0",
"@diplodoc/tabs-extension": "^3.4.0",
"@diplodoc/tabs-extension": "^3.5.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"css": "^3.0.0",
Expand Down
12 changes: 11 additions & 1 deletion src/transform/plugins/tabs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
import {transform} from '@diplodoc/tabs-extension';

export = transform({bundle: false});
export = transform({
bundle: false,
features: {
enabledVariants: {
radio: true,
regular: true,
dropdown: true,
accordion: true,
},
},
});

1 comment on commit aa6f391

@d3m1d0v
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added new functionality in tabs (dropdown, accordion) – this is not a fix at all 🤯🤯

Please sign in to comment.