This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
Sync latest updates to all components #203
Merged
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
e24cb3b
cleanup(material_auto_suggest_input): Add optional punctuation around…
alorenzen e4b8936
cleanup(material_dropdown_select): Add optional punctuation around tr…
alorenzen 0b8c300
cleanup(material_select): Add optional punctuation around trackBy fun…
alorenzen 1e599ff
Protected against input being destroyed and blur event still happenin…
TedSander 1d5e565
Fix columns to be ordered alphabetically by columnGroup first, then b…
a-googler 70f8679
Change material_tooltip to use ComponentLoader instead of slow compon…
TedSander 939ea3b
Optionally inject `SlowComponentLoader`
leonsenft 51b62b9
Adds material input mixin for fixed width error text.
a-googler b3154f8
add a mixin to material_expansionpanel so that we can define customiz…
a-googler 88c947f
Change portal to use ComponentLoader instead of slow component loader…
TedSander 5db3ccf
Add path to use angular factories in imperative_view instead of SlowC…
TedSander c92e971
Use material icon instead of glyph inside the material menu.
rkj 41ffa9a
Add type to PopupSizeProviderDirective ctor params.
tijoforyou 38d9e92
Remove insertAngularComponent in favor of using component factories w…
TedSander 9af654d
Remove unused dependency on glyph component from menu_popup.
rkj 5e86e6b
Use material-icon instead of glyph in fab menu.
rkj 425b0d7
Fix the styling for disabled icons in menu item groups.
rkj d111e14
Fix many things in app_layout code.
tijoforyou 2258c35
Adding mixin to display toggle label to the right of the switch.
a-googler ca3f95c
Remove binding to non-existent `visible` property of menu-popup compo…
tijoforyou f0326e2
Renames `Visibility.none` to `Visibility.local`
leonsenft 6786dde
Renames `Visibility.none` to `Visibility.local`
leonsenft 86d786d
Renames `Visibility.none` to `Visibility.local`
leonsenft 017b56d
Renames `Visibility.none` to `Visibility.local`
leonsenft f66c9df
Renames `Visibility.none` to `Visibility.local`
leonsenft a76d6ee
Prep for github export.
nshahan a2ddda1
Adding ability to give a tooltip for the clear icon in the material-a…
a-googler 68a17cc
Fix type errors so tests can run in DDC.
nshahan 2d9c57f
Add mixin to change material-select-dropdown-item padding and move AC…
a-googler 572fe1f
Avoid analyzer errors when using this component in the external repo …
nshahan 80016c5
Remove explicit initialization to null
tijoforyou dcd2d6f
Use StreamController directly, instead of deprecated LazyStreamContro…
tijoforyou ebd88eb
Migrate material_radio package off of deprecated GlyphComponent.
tijoforyou 9378687
Allow DynamicComponent to handle both Type & ComponentFactory for the…
a-googler 89eac2d
Migrate material_tooltip package off of deprecated GlyphComponent.
tijoforyou f97af66
Migrate material_expansionpanel package off of deprecated GlyphCompon…
tijoforyou e77a562
Migrate material_input package off of deprecated GlyphComponent.
tijoforyou 7f59b41
Append the alias in the suggestion for go-to search to make it more c…
a-googler 421b973
Provide a path to use Component Factories when using acx code that wa…
TedSander ea99e52
Make material menu button text in toolbelt lower case
a-googler 504d062
Add factoryRenderer pattern to material_auto_suggest, and material_se…
TedSander a019c83
Fix generic types in typedef
tijoforyou 0468c08
Update MaterialDropdownSelect to hide item from the option list when …
a-googler 5e8eaf3
Fix typo in the binding to componentFactory
tijoforyou 3c99f8d
Allow material scrollbar mixin to be used in global css (without angu…
a-googler c2054cf
Prep to sync externally and publish version 0.9.0-alpha+2.
nshahan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,7 +1,8 @@ | ||
analyzer: | ||
strong-mode: true | ||
errors: | ||
dead_code: warning | ||
unused_element: warning | ||
unused_import: warning | ||
unused_local_variable: warning | ||
dead_code: warning | ||
uri_has_not_been_generated: ignore |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -15,7 +15,21 @@ | |
$thumb-hover-color, | ||
$scrollbar-size: $mat-grid-type, | ||
$thumb-min-size: 6 * $mat-grid) { | ||
::ng-deep ::-webkit-scrollbar { | ||
::ng-deep { | ||
@include material-scrollbar( | ||
$thumb-hover-color, $scrollbar-size, $thumb-min-size); | ||
} | ||
} | ||
|
||
/// Style all scrollbars within the scope to material spec. | ||
/// | ||
/// Note: This is the same as material-scrollbar-theme expect it can be used | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. expect --> except |
||
/// globally outside the context angular components. | ||
@mixin material-scrollbar( | ||
$thumb-hover-color, | ||
$scrollbar-size: $mat-grid-type, | ||
$thumb-min-size: 6 * $mat-grid) { | ||
::-webkit-scrollbar { | ||
background-color: $mat-scrollbar-background; | ||
|
||
// Height only applies to horizontal scrollbars. | ||
|
@@ -29,7 +43,7 @@ | |
} | ||
} | ||
|
||
::ng-deep ::-webkit-scrollbar-thumb { | ||
::-webkit-scrollbar-thumb { | ||
background-color: $mat-scrollbar-thumb; | ||
|
||
// min-height only applies to vertical scrollbar thumbs. | ||
|
@@ -43,7 +57,7 @@ | |
} | ||
} | ||
|
||
::ng-deep ::-webkit-scrollbar-button { | ||
::-webkit-scrollbar-button { | ||
width: 0; | ||
height: 0; | ||
} | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Material Expansion Panel