npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@maggioli-design-system/mds-dropdown

v5.4.2

Published

mds-dropdown is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.

Downloads

1,246

Readme

mds-dropdown

Best practices of usage

There are many situations where the component should be placed on the surface of the document:

<body>
  <mds-dropdown target="ui-content">
    <mds-text>Dropdown contents</mds-text>
  </mds-dropdown>
  <div>
    <mds-text>Deep contents</mds-text>
    <div>
      <mds-text id="ui-content">Deeper contents</mds-text>
    </div>
  </div>
</body>

The next use case couldn't be rendered correctly depending by relative/absolute/etc. positioning and strategy attribute mix.

<body>
  <div>
    <mds-text>Deep contents</mds-text>
    <div>
      <mds-text id="ui-content">Deeper contents</mds-text>
      <mds-dropdown target="ui-content">
        <mds-text>Dropdown contents</mds-text>
      </mds-dropdown>
    </div>
  </div>
</body>

Affected problems:

  • Wrong backdrop render
  • Wrong mds-dropdown positioning

This is a web-component from Maggioli Design System Magma, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.

Properties

| Property | Attribute | Description | Type | Default | | --------------------- | ---------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | | arrow | arrow | If set, the component will have an arrow pointing to the caller. | boolean | true | | arrowPadding | arrow-padding | Sets the distance between arrow and dropdown margins. | number | 24 | | autoPlacement | auto-placement | If set, the component will be placed automatically near it's caller. | boolean | false | | backdrop | backdrop | Specifies if the component has a backdrop background | boolean | false | | flip | flip | Specifies the placement of the component if no space is available where it is placed. | boolean | false | | interaction | interaction | Specifies if the component is triggered from the caller on mouseover or click event | "click" \| "mouseover" \| "none" \| undefined | 'click' | | offset | offset | Sets distance between the dropdown and the caller. | number | 24 | | placement | placement | Specifies where the component should be placed relative to the caller. | "bottom" \| "bottom-end" \| "bottom-start" \| "left" \| "left-end" \| "left-start" \| "right" \| "right-end" \| "right-start" \| "top" \| "top-end" \| "top-start" | 'bottom' | | shift | shift | If set, the component will be kept inside the viewport. | boolean | true | | shiftPadding | shift-padding | Sets a safe area distance between the dropdown and the viewport. | number | 24 | | smooth | smooth | If set, the component will follow the caller smoothly, visible when the page scrolls. | boolean | true | | strategy | strategy | Sets the CSS position strategy of the component. | "absolute" \| "fixed" | 'fixed' | | target (required) | target | Specifies the selector of the target element, this attribute is used with querySelector method. | string | undefined | | visible | visible | Specifies the visibility of the component. | boolean | false | | zIndex | z-index | Specifies the visibility of the component. | number | undefined |

Events

| Event | Description | Type | | -------------------- | --------------------------------------- | ------------------------------------- | | mdsDropdownChange | Emits when a modal is visible or hidden | CustomEvent<MdsDropdownEventDetail> | | mdsDropdownHide | Emits when a modal is hidden | CustomEvent<MdsDropdownEventDetail> | | mdsDropdownVisible | Emits when a modal is visible | CustomEvent<MdsDropdownEventDetail> |

Slots

| Slot | Description | | ----------- | ------------------------------------------------------------------------------------------------------------------------ | | "default" | Add text string, HTML elements or components to this slot, elements will be shown when the component is triggered. |

CSS Custom Properties

| Name | Description | | ---------------------------------- | ------------------------------------------------------------------------------------------------------------------- | | --mds-dropdown-arrow-background | Sets the fill color of the arrow. | | --mds-dropdown-backdrop-duration | Sets the transition duration of the backdrop, used by component's code too. | | --mds-dropdown-backdrop-z-indx | Sets the backdrop z-index, used by component's code too. | | --mds-dropdown-background | Sets the background-color of the dropdown. | | --mds-dropdown-drop-shadow | Sets the drop-shadow of the dropdown. | | --mds-dropdown-duration | Sets the duration of the dropdown animation. | | --mds-dropdown-ease | Sets the easing of the dropdown animation. | | --mds-dropdown-mouseover-delay | Sets the delay duration of the component when the caller trigger mouseover event, it's used by the javascript code. | | --mds-dropdown-transform-from | Sets the from animation transform of the dropdown. | | --mds-dropdown-transform-to | Sets the to animation transform of the dropdown. | | --mds-dropdown-z-index | Sets the z-index of the component. |

Dependencies

Used by

Graph

graph TD;
  mds-pref-language --> mds-dropdown
  style mds-dropdown fill:#f9f,stroke:#333,stroke-width:4px

Built with love @ Gruppo Maggioli from R&D Department