-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(focus-trap): enabled property not being coerced (#3417) * docs(autocomplete): fix a11y of autocomplete example * docs(autocomplete): add guidance about filter criteria * fix(ripple): fade-out-all should hide all ripples (#3400) * fix(checkbox): show checkbox animation only if user click or indeterminate state (#3137) Fixes #2783 * feat(checkbox): add value attribute to md-checkbox (#2701) Fixes #2583 * fix(radio): add focus indication (#3402) Fixes #3102 * fix(autocomplete): remove max width for autocomplete panel (#3297) Fixes #3198 * fix(button-toggle): fix color for selected button toggle and selected disabled button toggle (#3418) Fixes #3382 * fix(input): make icons in prefix/suffix the right size (#3342) * refactor(focus-origin-monitor): complete stream when stopping monitor (#3404) * docs(dialog): update dialog afterClosed (#3411) * docs(progress-spinner): fix typo in progress spinner example (#3299) Fixes #3148 * fix(checkbox): add focus indication (#3403) Fixes #3102 * feat(ripple): add way to globally disable ripples (#3383) * refactor: consistent module declaration (#3095) * fix(focus-trap): avoid closure compiler issues when adding anchors (#3448) * chore(menu): switch menu-item to common coercion logic (#3065) * `MdMenuItem` to use the common coercion logic when determining the disabled state. * Gets rid of the `@HostBinding` in favor of passing them through the `host` option. Relates to #2985. * fix(list-key-manager): exception when no initial active item (#3431) * fix(list-key-manager): exception when no initial active item Fixes an exception that is thrown when the user presses a key on ListKeyManager that doesn't have a default active item. The problem was due to the fact that we have a check for `null` a little bit down, that handles cases like this, however the active index is `undefined` by default. Fixes #3317. * fix: it it * fix(focus-trap): exception when element contains SVG on IE (#3432) Fixes an exception being thrown by the focus trap, if it contains an SVG element on IE. The problem was that on IE, SVG elements don't have the `children` property, which means that we have to fall back to `childNodes`. Fixes #3410. * fix(select): initial value not being displayed with FormControl and OnPush (#3434) * fix(select): initial value not being displayed with FormControl and OnPush Fixes the initial value not being displayed in a select that has a `FormControl` and is placed in a component with `ChangeDetectionStrategy.onPush`. Relates to #2269 (comment). * chore: remove unused properties * build: run tslint on tool files (#3436) * Since we had a lot of TSLint issues on our tooling scripts & tasks, we should run TSLint on those as well. * Also updates Dgeni to latest version, because it now supports TypeScript typings. * build: upgrade dev dependencies (#3440) * Upgrades outdated devDependencies to the latest version. * feat(data-table): initial prototype with sorting
- Loading branch information
1 parent
d1e8ad9
commit 787a644
Showing
97 changed files
with
2,641 additions
and
974 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,33 @@ | ||
import {NgModule, ModuleWithProviders} from '@angular/core'; | ||
import {FormsModule} from '@angular/forms'; | ||
import {MdButtonToggleGroup, MdButtonToggleGroupMultiple, MdButtonToggle} from './button-toggle'; | ||
import { | ||
UNIQUE_SELECTION_DISPATCHER_PROVIDER, | ||
CompatibilityModule, | ||
FocusOriginMonitor, | ||
} from '../core'; | ||
|
||
|
||
@NgModule({ | ||
imports: [FormsModule, CompatibilityModule], | ||
exports: [ | ||
MdButtonToggleGroup, | ||
MdButtonToggleGroupMultiple, | ||
MdButtonToggle, | ||
CompatibilityModule, | ||
], | ||
declarations: [MdButtonToggleGroup, MdButtonToggleGroupMultiple, MdButtonToggle], | ||
providers: [UNIQUE_SELECTION_DISPATCHER_PROVIDER, FocusOriginMonitor] | ||
}) | ||
export class MdButtonToggleModule { | ||
/** @deprecated */ | ||
static forRoot(): ModuleWithProviders { | ||
return { | ||
ngModule: MdButtonToggleModule, | ||
providers: [] | ||
}; | ||
} | ||
} | ||
|
||
|
||
export * from './button-toggle'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.