AngularJS Material: Material Design component library for AngularJS (1.x). Use angular/material2 channel for Angular Material (v2+).
Splaktar on master
fix(toast): apply theming corre… perf(icon): better handling of … fix(list): copy ng-show, ng-hid… and 49 more (compare)
Splaktar on v1.1.0-rc.5
release: version 1.1.0-rc.5 (compare)
Splaktar on master
feat(panel): initial implementa… update(panel): promise logic im… update(panel): add and remove p… and 44 more (compare)
Splaktar on v1.1.0-rc4
release: version 1.1.0-rc4 (compare)
Splaktar on v1.1.0-rc3
release: version 1.1.0-rc3 (compare)
Splaktar on es6-tutorial
Prepare clean start Remove bow… install angular-material And i… working version of starter-app and 19 more (compare)
Splaktar on master
Tutorial Readme updates Updates for Tutorial #2 Update README with tutorial ste… and 56 more (compare)
Splaktar on fixBlurryRightNavIe11
fix(sidenav): rightNav button a… (compare)
Splaktar on master
fix(dialog): don't clobber md-d… update version number in packag… update(changelog): sort so 1.1.… and 1 more (compare)
Splaktar on fixSideNavDemo
docs(sidenav): leftNav text isn… (compare)
Splaktar on fixSideNavDemo
docs(sidenav): invalid `md-whit… (compare)
Splaktar on master
update(changelog): add missing … fix(toolbar): remove transition… fix(tests): Cleans up the DOM a… and 2 more (compare)
Splaktar on master
update(docs): improve docs for … update(docs): renamed `md-text-… fix(list): clickable list-items… and 71 more (compare)
Splaktar on improveExtendThemeDoc
update(docs): improve docs for … (compare)
Splaktar on improveExtendThemeDocs
update(docs): improve docs for … (compare)
Splaktar on updateThemingDocs
update(docs): renamed `md-text-… (compare)
Splaktar on master
fix(demo, codepen): use secure … fix(build, layout): remove depr… update(build): remove stale bow… and 72 more (compare)
Splaktar on v1.1.0-rc2
release: version 1.1.0-rc2 (compare)
Splaktar on master
fix(checkbox): pointer events d… update(tests): remove disabled/… fix(datepicker): enable scrolli… and 20 more (compare)
Splaktar on v1.0.6
Revert "fix(select): made selec… update(layout): add layout-nowr… fix(whiteframe): update breakpo… and 57 more (compare)
Hi all !!
i have an issue about mat-icon in angular material
in my App component i registered a list of icon with the appropriate path like this :
export class AppComponent {
title = 'app';
constructor(
private matIconRegistry: MatIconRegistry,
private domSanitizer: DomSanitizer
) {
this.matIconRegistry.addSvgIcon("logo",
this.domSanitizer.bypassSecurityTrustResourceUrl("assets/logo.svg")
);
this.matIconRegistry.addSvgIcon("folder",
this.domSanitizer.bypassSecurityTrustResourceUrl("assets/icons/folder.svg")
);
this.matIconRegistry.addSvgIcon("favourites",
this.domSanitizer.bypassSecurityTrustResourceUrl("assets/icons/favourites.svg")
);
}
}
and i Use it in other component in this way :
<mat-icon svgIcon="folder"></mat-icon>
<mat-icon svgIcon="favourites"></mat-icon>
i don't know why the same svg ("folder") as icon is showing
md-tab-class
as documented here: https://material.angularjs.org/HEAD/api/directive/mdTab.
Hi Guys :) I've just upgraded to the angular material 7. Im currently struggling with the removal of the mat-elevation usage from component stylesheets. The changelog specify that:
Because mat-elevation usages have been moved out of component stylesheets, users who have not invoked a theme mixin will not see any elevation shadows on Material components. However, users that have created a custom theme which lacks the elevation property will still see the default black shadows.
Does that mean that only the prebuilt themes will have elevation enabled out of the box? Also, is there a way how to enable elevation of my custom theme? I originally followed the https://material.angular.io/guide/theming, however there is no mention to enabling elevations.
good first issue
a made for new contributors: https://github.com/angular/material/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22.