File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ a theme consists of:
16
16
In Angular Material, all theme styles are generated _ statically_ at build-time so that your
17
17
app doesn't have to spend cycles generating theme styles on startup.
18
18
19
- [ 1 ] : https://material.google.com /style/color.html#color-color-palette
19
+ [ 1 ] : https://material.io/archive/guidelines /style/color.html#color-color-palette
20
20
21
21
### Using a pre-built theme
22
22
Angular Material comes prepackaged with several pre-built theme css files. These theme files also
Original file line number Diff line number Diff line change 1
1
` <mat-select> ` is a form control for selecting a value from a set of options, similar to the native
2
2
` <select> ` element. You can read more about selects in the
3
- [ Material Design spec] ( https://material.google.com /components/menus.html ) . It is designed to work
3
+ [ Material Design spec] ( https://material.io/design /components/menus.html ) . It is designed to work
4
4
inside of a [ ` <mat-form-field> ` ] ( https://material.angular.io/components/form-field/overview )
5
5
element.
6
6
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ value on bottom.
38
38
By default, the exact selected value of a slider is not visible to the user. However, this value can
39
39
be added to the thumb by adding the ` thumbLabel ` attribute.
40
40
41
- The [ Material Design spec] ( https://material.google.com/ components/sliders.html ) recommends using the
41
+ The [ Material Design spec] ( https://material.io/design/ components/sliders.html#discrete-slider ) recommends using the
42
42
` thumbLabel ` attribute (along with ` tickInterval="1" ` ) only for sliders that are used to display a
43
43
discrete value (such as a 1-5 rating).
44
44
@@ -74,7 +74,7 @@ The slider will always show a tick at the beginning and end of the track. If the
74
74
doesn't add up perfectly the last interval will be shortened or lengthened so that the tick can be
75
75
shown at the end of the track.
76
76
77
- The [ Material Design spec] ( https://material.google.com/ components/sliders.html ) recommends using the
77
+ The [ Material Design spec] ( https://material.io/design/ components/sliders.html#discrete-slider ) recommends using the
78
78
` tickInterval ` attribute (set to ` 1 ` along with the ` thumbLabel ` attribute) only for sliders that
79
79
are used to display a discrete value (such as a 1-5 rating).
80
80
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export function MAT_TOOLTIP_DEFAULT_OPTIONS_FACTORY(): MatTooltipDefaultOptions
103
103
* Directive that attaches a material design tooltip to the host element. Animates the showing and
104
104
* hiding of a tooltip provided position (defaults to below the element).
105
105
*
106
- * https://material.google.com /components/tooltips.html
106
+ * https://material.io/design /components/tooltips.html
107
107
*/
108
108
@Directive ( {
109
109
selector : '[matTooltip]' ,
@@ -612,7 +612,7 @@ export class TooltipComponent {
612
612
/**
613
613
* Interactions on the HTML body should close the tooltip immediately as defined in the
614
614
* material design spec.
615
- * https://material.google.com/ components/tooltips.html#tooltips-interaction
615
+ * https://material.io/design/ components/tooltips.html#behavior
616
616
*/
617
617
_handleBodyInteraction ( ) : void {
618
618
if ( this . _closeOnInteraction ) {
You can’t perform that action at this time.
0 commit comments