mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
e7b4edf7a6
The Dropdown component should be considered the dropdown folder going forward. This should be distinguished as a different component that composes the Dropdown component Since the template itself is rather simple it seems preferable to have duplicate templates that describe the actual component (PageTools, VariantsDropdown and LanguageButton) MenuDropdown is renamed Dropdown and styles that don't correspond to the Dropdown component are moved to the relevant components. MenuContents mustache template (future component) is added to DRY up several of the new templates. Bug: T320927 Change-Id: I220d0a477b3f05b278bd2cec7dd601c7b3b17c6f
11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
import mustache from 'mustache';
|
|
import { vectorMenuTemplate, moreData, variantsData } from './MenuDropdown.stories.data';
|
|
|
|
export default {
|
|
title: 'MenuDropdown'
|
|
};
|
|
|
|
export const more = () => mustache.render( vectorMenuTemplate, moreData );
|
|
|
|
export const variants = () => mustache.render( vectorMenuTemplate, variantsData );
|