Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-material

Package Overview
Dependencies
Maintainers
2
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-material - npm Package Versions

1
7

1.1.4

Diff

Changelog

Source

AngularJS Material 1.1.4 (2017-04-20)

Bug Fixes

Features

<a name="1.1.3"></a>

angularcore
published 1.1.3 •

Changelog

Source

Angular Material 1.1.3 (2017-01-31)

Bug Fixes

<a name="1.1.2"></a>

angularcore
published 1.1.2-master-b2562cf •

angularcore
published 1.1.2 •

Changelog

Source

Angular Material 1.1.2 (2017-01-30)

Features

  • autocomplete: add md-autocomplete-snap="width" (#7750) (1e45c44)
  • autocomplete: add md-dropdown-position option (#9774) (1ed298b), closes #9769
  • autocomplete: allow developers to specify amount of dropdown items. (#9307) (b114302), closes #9306 #8751
  • autocomplete: option to toggle the clear button (#9892) (70cecda), closes #4841 #2727
  • autocomplete: pass md-input-max/min-length to the input with non-floating label (#9964) (388a340)
  • autocomplete: support ng-trim on the underlaying input (#9496) (0032184), closes #4492
  • button: add md-dense support (#9313) (25dd787)
  • checkbox/switch: add support for animating ng-messages (#9473) (4006f53), closes #9430
  • compiler: pass $element to controller instantiation (#9516) (be038d1), closes #9507
  • compiler: support for content elements (#9551) (dfe1a00)
  • datepicker: allow the date locale to be overwritten on a per element basis (#9749) (a090079), closes #9270
  • dialog: extended theme inheritance of dialogs (#9762) (b7ae33e)
  • interaction: added service to detect last interaction (#7965) (24370e7), closes #5563 #5434 #5583
  • interimElement: properly handle multiple interims. (#9053) (421fed4), closes #8624 #8630
  • list: add class to disable proxy elements. (#9470) (ad82012), closes #9423
  • md-nav-item: support for ui-sref-opts on md-nav-item (#9782) (af041da), closes #9481
  • menu: expose close method on element scope; deprecate $mdOpenMenu (#9193) (1e4ba35), closes #8446
  • navBar: option to disable ink bar (#9866) (97cbe69), closes #9862
  • panel: add contentElement option (#9829) (3034237), closes #9757
  • panel: add hook for close success. (#9819) (db90283)
  • panel: add interceptors API and onClose hook (#9574) (96e5409), closes #9557
  • panel: add the ability to update the animation of an existing panel (#9895) (a6f0de7)
  • panel: allow panels to be part of multiple groups. (#9830) (80e87b5), closes #9565
  • panel: allow passing in a function to the offset methods (#9615) (0896ba3), closes #9608
  • panel: configurable animation duration (#9570) (bee04f3), closes #9177
  • panel: panel grouping (#9538) (62df3c8), closes #8971
  • panel: panel provider (#10215) (a169f6f), closes #10006 #10162
  • switch: add attribute to invert (#8205) (ca06402), closes #7889
  • themes: register theme on the fly (#9475) (7090a1f), closes #2965
  • toolbar: add CSS rules for checkbox support (#9799) (038f3ed), closes #9500
  • tooltip: tooltip uses MdPanel API (#9742) (6d06188), closes #9563

Bug Fixes

Performance Improvements

  • chips,navbar,tooltip: avoid extra DOM lookups (#9527) (a1e68d5)
  • navbar: reduces amount of watchers and buttons per item (#9818) (a5b8943)
  • tooltip: reduce amount of event listeners on the window (#9514) (dc6b10c)

update

  • autocomplete: md-require-match only turn invalid if search text is provided (#9119) (399016d), closes #9072

BREAKING CHANGES

  • autocomplete: The autocomplete validator md-require-match no longer matches if the search text is empty.
  • select: md-selected-text now only accepts text. It used to accept and render html but this was an XSS vulnerability. It was fixed in: block xss on md-select-label (#10023) (f7ecb4f).

We have added a new md-selected-html API for md-select. It accepts an expression to be evaluated that will return a string to be displayed as a placeholder in the select input box when it is closed. The value will be treated as html. The value must either be explicitly marked as trustedHtml or the ngSanitize module must be loaded.

Given the following code:

<md-select ng-model="selectedItem" md-selected-text="getSelectedText()">
angular
    .module('selectDemoSelectedText', ['ngMaterial'])
    .controller('SelectedTextController', function($scope) {
      $scope.items = [1, 2, 3, 4, 5, 6, 7];
      $scope.selectedItem = undefined;
      $scope.getSelectedText = function() {
        if ($scope.selectedItem !== undefined) {
          return "You have selected: Item <strong>" + $scope.selectedItem + "</strong>";
        } else {
          return "Please select an item";
        }
      };
    });

Change it to this:

<md-select ng-model="selectedItem" md-selected-html="getSelectedText()">
angular
    .module('selectDemoSelectedText', ['ngMaterial', 'ngSanitize'])
    .controller('SelectedTextController', function($scope) {
      $scope.items = [1, 2, 3, 4, 5, 6, 7];
      $scope.selectedItem = undefined;
      $scope.getSelectedText = function() {
        if ($scope.selectedItem !== undefined) {
          return "You have selected: Item <strong>" + $scope.selectedItem + "</strong>";
        } else {
          return "Please select an item";
        }
      };
    });

<a name="1.1.1"></a>

angularcore
published 1.1.1 •

Changelog

Source

Angular Material 1.1.1 (2016-09-01)

We continue to maintain our momentum with Angular Material. Today we published a patch release for Angular Material; a patch that contains more than 60 improvements and fixes.

--

  • Add improvements to Themes registrations
  • Add improvements to Docs to discuss differences between TabBar vs NavBar
  • Add improve SideNav to specify disableScroll target when open
  • Add feature BrowserColor to enable browser header coloring with Material Design Colors
  • Add blur or focus features to Chips and Autocomplete

--

  • Revert a Layout change for layout="column"
  • Fix animations for Input messages, Autocomplete, Dialog
  • Fix Card images inside md-card-title-media to use flexbox CSS
  • Fix AutoComplete, Input, Menubar, Select, and theming
  • Fix Datepicker, Tooltip colors, Navbar theming, Virtual repeat with scrolling

--

Features

Bug Fixes

  • autocomplete: don't use $mdUtils.nextTick in handleHiddenChange (#9319) (8f8ad78), closes #9318
  • autocomplete: properly run animation for dialog in demo. (#9437) (69607e0)
  • autocomplete: properly show dropdown on focus when minlength is met. (#9291) (e65ffc8), closes #9283 #9288 #9289
  • autocomplete: remove autofocus ambiguity. (#9438) (00a4c05)
  • build: properly filter core module files with updated gulp-filter (#9399) (0cd2a59)
  • card: limit img size when using md-card-title-media (#9446) (d086e2b), closes #9355
  • checkbox: not being marked as checked with ng-checked on load (#9424) (904b455), closes #9349
  • compiler: remove manual controllerAs logic (#9462) (18afebe)
  • datepicker: arrow direction in rtl (#9384) (f6da4d3)
  • datepicker: forward aria-label to generated input (#9364) (165d4e7), closes #9340
  • datepicker: forward tabindex to generated input (#9325) (6cfb542), closes #8147
  • datepicker: improved overlay positioning (#9432) (d0a7765)
  • datepicker: jumping forward if min date is in the same month as model (#9305) (412bc2c), closes #9284
  • datepicker: keyboard navigation not working if the user scrolls too much (#9302) (30f6a74), closes #9294
  • datepicker, menu, slider: remove duplicate properties (#9335) (1c098a6)
  • demos: update core-icons svg in assets cache to latest changes. (#9418) (7e21118)
  • dialog: add extra classes to identify buttons (#9463) (b11441c)
  • dialog: do not compile an empty element when using a content element (#9303) (7c4b434)
  • dialog: focus dialog element when no actions are set (#9272) (bcfe00a), closes #9271
  • dialog: remove transition classes after hide (#9299) (f170133), closes #9276
  • input: Ensure animated messages disappear. (#9466) (4e302c2), closes #9454
  • layout: Revert overzealous IE11 flexbox fix. (#9412) (660826b), closes #9354
  • menu-bar: unable to close menu when clicking on toolbar (#9428) (6dcecd5), closes #8965
  • menu-bar: use checked icon from $$mdSvgRegistry (#9417) (04124d8), closes #9407
  • navbar: add theming support (#9210) (4cfd4a1), closes #9137
  • panel: Element reference error (#9375) (6383b52), closes #9374
  • prefixer: do not throw an exception if element is undefined (#9345) (d07240b)
  • undo change to unknown symbol for prod build (#9393) (bd4034d)
  • progressCircular: better support for older ios versions (#9254) (215fae4), closes #9253
  • select: Ensure md-no-asterisk attribute works. (#9347) (f265a0e), closes #9339
  • tabs: ie10 MutationObserver issue (#9397) (bd70022)
  • tabs: scroll blocks in pagination (related to #5439) (#9457) (b26c01c)
  • textarea: resize handle position occasionally wrong (#9155) (3fc1004), closes #9151
  • theming: fix read-only .configuration() (#9389) (b328882)
  • virtual-repeat: not re-rendering when switching to a smaller list (#9363) (fce551d), closes #9315
Contributors

Thanks to the great contributors who helped with this v1.1.1 patch release:

<img alt="akaij" src="https://avatars.githubusercontent.com/u/5215129?v=3&s=117" width="117"> |<img alt="bradrich" src="https://avatars.githubusercontent.com/u/3429878?v=3&s=117" width="117"> |<img alt="clshortfuse" src="https://avatars.githubusercontent.com/u/9271155?v=3&s=117" width="117"> |<img alt="crisbeto" src="https://avatars.githubusercontent.com/u/4450522?v=3&s=117" width="117"> |<img alt="DevVersion" src="https://avatars.githubusercontent.com/u/4987015?v=3&s=117" width="117"> |<img alt="EladBezalel" src="https://avatars.githubusercontent.com/u/6004537?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | akaij |bradrich |clshortfuse |crisbeto |DevVersion |EladBezalel |

<img alt="enne30" src="https://avatars.githubusercontent.com/u/9323005?v=3&s=117" width="117"> |<img alt="hansl" src="https://avatars.githubusercontent.com/u/681969?v=3&s=117" width="117"> |<img alt="j3ski" src="https://avatars.githubusercontent.com/u/7190937?v=3&s=117" width="117"> |<img alt="jelbourn" src="https://avatars.githubusercontent.com/u/838736?v=3&s=117" width="117"> |<img alt="leibale" src="https://avatars.githubusercontent.com/u/7086055?v=3&s=117" width="117"> |<img alt="norkunas" src="https://avatars.githubusercontent.com/u/2722872?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | enne30 |hansl |j3ski |jelbourn |leibale |norkunas |

<img alt="ThomasBurleson" src="https://avatars.githubusercontent.com/u/210413?v=3&s=117" width="117"> |<img alt="topherfangio" src="https://avatars.githubusercontent.com/u/54370?v=3&s=117" width="117"> | :---: |:---: | ThomasBurleson |topherfangio |

<a name"1.1.0"></a>

angularcore
published 1.1.0 •

Changelog

Source

1.1.0 (2016-08-14)

BREAKING CHANGE

The <md-select>'s, <md-option> component now acts more like the default <option> attribute of a standard HTML <select> by treating empty value and ng-value attributes as a special "reset" case that allows the input to return to the default state (i.e. the floating label returns to the placeholder position).

If you use the value or ng-value attributes with no value as follows and expect it to be a valid option,

<md-option value="">All options</md-option>

you will need to update your option to have a value like one of the following:

<md-option value="null">All options</md-option>
<md-option value="undefined">All options</md-option>
<md-option ng-value="''">All options</md-option>

Fixes #9718.

Features
Breaking Changes
  • md-no-focus-style attribute on md-button is now a class (.md-no-focus)

Closes #8691. Closes #8734 (d04dfc5d)

Bug Fixes
Contributors

Thanks to the great contributors who helped with this release (after the rc.5 release):

<img alt="Aaron-Hartwig" src="https://avatars.githubusercontent.com/u/5115774?v=3&s=117" width="117"> |<img alt="AdriVanHoudt" src="https://avatars.githubusercontent.com/u/2361826?v=3&s=117" width="117"> |<img alt="areologist" src="https://avatars.githubusercontent.com/u/4918688?v=3&s=117" width="117"> |<img alt="barryvdh" src="https://avatars.githubusercontent.com/u/973269?v=3&s=117" width="117"> |<img alt="bradrich" src="https://avatars.githubusercontent.com/u/3429878?v=3&s=117" width="117"> |<img alt="chrisguerrero" src="https://avatars.githubusercontent.com/u/3720304?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | Aaron-Hartwig |AdriVanHoudt |areologist |barryvdh |bradrich |chrisguerrero |

<img alt="clshortfuse" src="https://avatars.githubusercontent.com/u/9271155?v=3&s=117" width="117"> |<img alt="crisbeto" src="https://avatars.githubusercontent.com/u/4450522?v=3&s=117" width="117"> |<img alt="cyx8808" src="https://avatars.githubusercontent.com/u/9927197?v=3&s=117" width="117"> |<img alt="danjarvis" src="https://avatars.githubusercontent.com/u/116640?v=3&s=117" width="117"> |<img alt="david-gang" src="https://avatars.githubusercontent.com/u/1292882?v=3&s=117" width="117"> |<img alt="davidenke" src="https://avatars.githubusercontent.com/u/275960?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | clshortfuse |crisbeto |cyx8808 |danjarvis |david-gang |davidenke |

<img alt="DavidFrahm" src="https://avatars.githubusercontent.com/u/889791?v=3&s=117" width="117"> |<img alt="DevVersion" src="https://avatars.githubusercontent.com/u/4987015?v=3&s=117" width="117"> |<img alt="dirkharbinson" src="https://avatars.githubusercontent.com/u/6855986?v=3&s=117" width="117"> |<img alt="EladBezalel" src="https://avatars.githubusercontent.com/u/6004537?v=3&s=117" width="117"> |<img alt="epelc" src="https://avatars.githubusercontent.com/u/5204642?v=3&s=117" width="117"> |<img alt="fhernandezn" src="https://avatars.githubusercontent.com/u/12898908?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | DavidFrahm |DevVersion |dirkharbinson |EladBezalel |epelc |fhernandezn |

<img alt="IPRIT" src="https://avatars.githubusercontent.com/u/1553519?v=3&s=117" width="117"> |<img alt="isaaclyman" src="https://avatars.githubusercontent.com/u/9139369?v=3&s=117" width="117"> |<img alt="ivoviz" src="https://avatars.githubusercontent.com/u/1143746?v=3&s=117" width="117"> |<img alt="jelbourn" src="https://avatars.githubusercontent.com/u/838736?v=3&s=117" width="117"> |<img alt="jsr6720" src="https://avatars.githubusercontent.com/u/502432?v=3&s=117" width="117"> |<img alt="keenondrums" src="https://avatars.githubusercontent.com/u/12794628?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | IPRIT |isaaclyman |ivoviz |jelbourn |jsr6720 |keenondrums |

<img alt="marcysutton" src="https://avatars.githubusercontent.com/u/1045233?v=3&s=117" width="117"> |<img alt="martineckardt" src="https://avatars.githubusercontent.com/u/10773395?v=3&s=117" width="117"> |<img alt="MattCatz" src="https://avatars.githubusercontent.com/u/14895427?v=3&s=117" width="117"> |<img alt="mkowalchuk" src="https://avatars.githubusercontent.com/u/1266924?v=3&s=117" width="117"> |<img alt="Nickproger" src="https://avatars.githubusercontent.com/u/1409078?v=3&s=117" width="117"> |<img alt="ofirmgr" src="https://avatars.githubusercontent.com/u/9841636?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | marcysutton |martineckardt |MattCatz |mkowalchuk |Nickproger |ofirmgr |

<img alt="oliversalzburg" src="https://avatars.githubusercontent.com/u/1658949?v=3&s=117" width="117"> |<img alt="robertmesserle" src="https://avatars.githubusercontent.com/u/571363?v=3&s=117" width="117"> |<img alt="soul-wish" src="https://avatars.githubusercontent.com/u/1968098?v=3&s=117" width="117"> |<img alt="SpikesCafe-google" src="https://avatars.githubusercontent.com/u/16656302?v=3&s=117" width="117"> |<img alt="ThomasBurleson" src="https://avatars.githubusercontent.com/u/210413?v=3&s=117" width="117"> |<img alt="timlevett" src="https://avatars.githubusercontent.com/u/3534544?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | oliversalzburg |robertmesserle |soul-wish |SpikesCafe-google |ThomasBurleson |timlevett |

<img alt="topherfangio" src="https://avatars.githubusercontent.com/u/54370?v=3&s=117" width="117"> |<img alt="x87" src="https://avatars.githubusercontent.com/u/5698288?v=3&s=117" width="117"> | :---: |:---: | topherfangio |x87 |

<a name"1.1.0-rc.5"></a>

angularcore
published 1.1.0-rc.5 •

Changelog

Source

1.1.0-rc.5 (2016-06-03)

With this release we have merged many of the pending Pull requests and added some notable changes:

  • added new md-nav-bar and md-panel components
  • enhanced the performance of the md-tabs component
  • added many improvements to dialog, datepicker
  • added shrinking and resizing features to the md-input textarea component
  • improved security safeguards using $templateRequest instead of $http

panel-animations

Contributors

Thanks to the great contributors who helped with this release:

<img alt="247GradLabs" src="https://avatars.githubusercontent.com/u/19302650?v=3&s=117" width="117"> |<img alt="AaronBuxbaum" src="https://avatars.githubusercontent.com/u/5578581?v=3&s=117" width="117"> |<img alt="andresgottlieb" src="https://avatars.githubusercontent.com/u/1126905?v=3&s=117" width="117"> |<img alt="aortyl" src="https://avatars.githubusercontent.com/u/10928389?v=3&s=117" width="117"> |<img alt="areologist" src="https://avatars.githubusercontent.com/u/4918688?v=3&s=117" width="117"> |<img alt="BevanR" src="https://avatars.githubusercontent.com/u/325176?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | 247GradLabs |AaronBuxbaum |andresgottlieb |aortyl |areologist |BevanR |

<img alt="bvahdat" src="https://avatars.githubusercontent.com/u/3122177?v=3&s=117" width="117"> |<img alt="chrisconover" src="https://avatars.githubusercontent.com/u/694311?v=3&s=117" width="117"> |<img alt="code-tree" src="https://avatars.githubusercontent.com/u/11289719?v=3&s=117" width="117"> |<img alt="crisbeto" src="https://avatars.githubusercontent.com/u/4450522?v=3&s=117" width="117"> |<img alt="daniel-nagy" src="https://avatars.githubusercontent.com/u/1622446?v=3&s=117" width="117"> |<img alt="david-gang" src="https://avatars.githubusercontent.com/u/1292882?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | bvahdat |chrisconover |code-tree |crisbeto |daniel-nagy |david-gang |

<img alt="davidenke" src="https://avatars.githubusercontent.com/u/275960?v=3&s=117" width="117"> |<img alt="DerekLouie" src="https://avatars.githubusercontent.com/u/709204?v=3&s=117" width="117"> |<img alt="DevVersion" src="https://avatars.githubusercontent.com/u/4987015?v=3&s=117" width="117"> |<img alt="EladBezalel" src="https://avatars.githubusercontent.com/u/6004537?v=3&s=117" width="117"> |<img alt="Emeegeemee" src="https://avatars.githubusercontent.com/u/4241156?v=3&s=117" width="117"> |<img alt="epelc" src="https://avatars.githubusercontent.com/u/5204642?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | davidenke |DerekLouie |DevVersion |EladBezalel |Emeegeemee |epelc |

<img alt="ErinCoughlan" src="https://avatars.githubusercontent.com/u/2660421?v=3&s=117" width="117"> |<img alt="gkalpak" src="https://avatars.githubusercontent.com/u/8604205?v=3&s=117" width="117"> |<img alt="gmoothart" src="https://avatars.githubusercontent.com/u/3227?v=3&s=117" width="117"> |<img alt="ivoviz" src="https://avatars.githubusercontent.com/u/1143746?v=3&s=117" width="117"> |<img alt="jelbourn" src="https://avatars.githubusercontent.com/u/838736?v=3&s=117" width="117"> |<img alt="julienmartin" src="https://avatars.githubusercontent.com/u/1759785?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | ErinCoughlan |gkalpak |gmoothart |ivoviz |jelbourn |julienmartin |

<img alt="KarenParker" src="https://avatars.githubusercontent.com/u/16341592?v=3&s=117" width="117"> |<img alt="mgilson" src="https://avatars.githubusercontent.com/u/5216702?v=3&s=117" width="117"> |<img alt="neko1235" src="https://avatars.githubusercontent.com/u/13606126?v=3&s=117" width="117"> |<img alt="Nickproger" src="https://avatars.githubusercontent.com/u/1409078?v=3&s=117" width="117"> |<img alt="petebacondarwin" src="https://avatars.githubusercontent.com/u/15655?v=3&s=117" width="117"> |<img alt="programmist" src="https://avatars.githubusercontent.com/u/527082?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | KarenParker |mgilson |neko1235 |Nickproger |petebacondarwin |programmist |

<img alt="robertmesserle" src="https://avatars.githubusercontent.com/u/571363?v=3&s=117" width="117"> |<img alt="solojavier" src="https://avatars.githubusercontent.com/u/1088010?v=3&s=117" width="117"> |<img alt="soooooot" src="https://avatars.githubusercontent.com/u/1481589?v=3&s=117" width="117"> |<img alt="Splaktar" src="https://avatars.githubusercontent.com/u/3506071?v=3&s=117" width="117"> |<img alt="StefanFeederle" src="https://avatars.githubusercontent.com/u/11903965?v=3&s=117" width="117"> |<img alt="ThomasBurleson" src="https://avatars.githubusercontent.com/u/210413?v=3&s=117" width="117"> | :---: |:---: |:---: |:---: |:---: |:---: | robertmesserle |solojavier |soooooot |Splaktar |StefanFeederle |ThomasBurleson |

<img alt="tirana" src="https://avatars.githubusercontent.com/u/5245919?v=3&s=117" width="117"> |<img alt="topherfangio" src="https://avatars.githubusercontent.com/u/54370?v=3&s=117" width="117"> |<img alt="voyti" src="https://avatars.githubusercontent.com/u/6819634?v=3&s=117" width="117"> | :---: |:---: |:---: | tirana |topherfangio |voyti |

Features
Bug Fixes

<a name"1.1.0-rc4"></a>

angularcore
published 1.0.9 •

Changelog

Source

1.0.9 (2016-05-19, Patch release)

Features
  • demos: add global classes support (6726ca6c, closes #8400, #8406)
  • panel:
    • New $mdPanel service!
Bug Fixes
  • build: Fix failing tests with Angular 1.6. (af1e2269, closes #8404)

<a name"1.0.8"></a>

angularcore
published 1.1.0-rc4-master-06e7e99 •

angularcore
published 1.0.8 •

Changelog

Source

1.0.8 (2016-04-28, Patch release)

Features
  • autocomplete:
  • checkbox: add indeterminate checkbox support (cd987f0b, closes #7643)
  • chips: md-max-chips to specify a maximum of chips that can be added through user input (64cefc81, closes #6864, #6897)
  • input:
  • select:
    • Adding md-select-header directive to md-select. (c6d08bbf, closes #7782)
    • Adding md-selected-text attribute to md-select. (e7af2c87, closes #7721)
  • tabs: allow disabling select click event by adding md-no-select-click attribute (9624dac1, closes #5351)
Breaking Changes
  • inputs with type hidden will be skipped by the input-container

Fixes #2153

Closes #6425

(e7c51e3e)

Bug Fixes

<a name"1.0.7"></a>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc