Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular/components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 18.0.2
Choose a base ref
...
head repository: angular/components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 18.0.3
Choose a head ref
  • 17 commits
  • 91 files changed
  • 5 contributors

Commits on Jun 6, 2024

  1. test: Convert some material tests to zoneless (#29204)

    (cherry picked from commit d7f91c1)
    mmalerba committed Jun 6, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    renovate-bot Mend Renovate
    Copy the full SHA
    3e02dcf View commit details
  2. build: broaden ownership to team (#29199)

    (cherry picked from commit 6cf7f54)
    andrewseguin committed Jun 6, 2024
    Copy the full SHA
    e33494e View commit details
  3. fix(material/snack-bar): fix overrides mixin name typo (#29180)

    (cherry picked from commit d717de5)
    andrewseguin committed Jun 6, 2024
    Copy the full SHA
    faf3484 View commit details
  4. fix(material/radio): mark radio-group for check on touch (#29203)

    (cherry picked from commit e3abc65)
    mmalerba committed Jun 6, 2024
    Copy the full SHA
    81d4527 View commit details
  5. test(material/dialog): Open dialogs inside NgZone (#29205)

    (cherry picked from commit faf82b1)
    mmalerba committed Jun 6, 2024
    Copy the full SHA
    9fe4b0f View commit details
  6. fix(material/dialog): Make autofocus work with animations disabled (#…

    …29195)
    
    (cherry picked from commit e731203)
    mmalerba committed Jun 6, 2024
    Copy the full SHA
    f6b993f View commit details

Commits on Jun 7, 2024

  1. test(material/bottom-sheet): fix broken tests (#29213)

    Fixes some tests that were broken by a recent change.
    
    (cherry picked from commit 58a30cf)
    crisbeto committed Jun 7, 2024
    Copy the full SHA
    46afe04 View commit details

Commits on Jun 8, 2024

  1. docs(cdk/dialog): add initial setup instructions for CDK dialogs (#29209

    )
    
    * docs(cdk/dialog): add initial setup instructions for CDK dialogs
    
    Added instructions for including structural styles required by CDK dialogs. Noted that without importing '@angular/cdk/overlay-prebuilt.css' in the global stylesheet, CDK dialogs did not work correctly.
    
    * docs(cdk/dialog): added cdk.overlay mixin import
    
    Added alternative method for including CDK styles using the cdk.overlay mixin
    
    (cherry picked from commit 35f07c5)
    ifrntnd authored and crisbeto committed Jun 8, 2024
    Copy the full SHA
    8dbd669 View commit details

Commits on Jun 10, 2024

  1. fix(material/dialog): Make focus behavior consistent across zoneful/z…

    …oneless apps (#29192)
    
    (cherry picked from commit 3b32d0e)
    mmalerba committed Jun 10, 2024
    Copy the full SHA
    6dd1689 View commit details

Commits on Jun 11, 2024

  1. fix(material/schematics): estimate missing hues in M3 schematic (#29231)

    We use `@material/material-color-utilities` to generate the palettes in the M3 `ng generate` schematic, but it appears that the utilities don't generate all the neutral hues for some colors which leads to transparent dropdowns (see #29157). We handle this in our built in palettes by estimating the missing hues based on the hues around them.
    
    These changes port the estimation logic to the schematic to ensure that we always generate full themes.
    
    Fixes #29157.
    
    (cherry picked from commit 3da4323)
    crisbeto committed Jun 11, 2024
    Copy the full SHA
    0f4d186 View commit details
  2. docs: remove the MDC migration guide (#29232)

    We've removed the migration so we don't need the guide anymore either.
    
    (cherry picked from commit 69d39a8)
    crisbeto committed Jun 11, 2024
    Copy the full SHA
    77b2531 View commit details

Commits on Jun 12, 2024

  1. docs(material/badge): minor doc fixes (#29233)

    (cherry picked from commit d15df24)
    amysorto committed Jun 12, 2024
    Copy the full SHA
    b903ee3 View commit details
  2. refactor(cdk/dialog): Consolidate afterNextRender calls (#29237)

    (cherry picked from commit 70780a6)
    mmalerba committed Jun 12, 2024
    Copy the full SHA
    08f34bc View commit details
  3. docs(material/datepicker): Update datepicker docs & examples (#29236)

    (cherry picked from commit de4b13a)
    mmalerba committed Jun 12, 2024
    Copy the full SHA
    557f2bd View commit details
  4. docs(material/chips): Update chips docs & examples (#29235)

    (cherry picked from commit ec4e974)
    mmalerba committed Jun 12, 2024
    Copy the full SHA
    49eddf5 View commit details
  5. docs(material/checkbox): Update checkbox docs & examples (#29234)

    (cherry picked from commit d783233)
    mmalerba committed Jun 12, 2024
    Copy the full SHA
    dd05235 View commit details
  6. release: cut the v18.0.3 release

    mmalerba committed Jun 12, 2024
    Copy the full SHA
    9d37dfc View commit details
Showing with 1,151 additions and 1,656 deletions.
  1. +16 −316 .github/CODEOWNERS
  2. +13 −0 CHANGELOG.md
  3. +0 −683 guides/v15-mdc-migration.md
  4. +1 −1 package.json
  5. +45 −32 src/cdk/dialog/dialog-container.ts
  6. +18 −0 src/cdk/dialog/dialog.md
  7. +3 −3 src/components-examples/material/badge/badge-overview/badge-overview-example.html
  8. +6 −5 src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.html
  9. +8 −7 src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.ts
  10. +7 −6 src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.html
  11. +1 −1 src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.spec.ts
  12. +3 −2 src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.ts
  13. +9 −10 src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.html
  14. +24 −26 src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.ts
  15. +6 −5 src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.ts
  16. +11 −5 src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.html
  17. +31 −50 src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.ts
  18. +17 −5 src/components-examples/material/chips/chips-avatar/chips-avatar-example.html
  19. +2 −1 src/components-examples/material/chips/chips-avatar/chips-avatar-example.ts
  20. +3 −2 src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.html
  21. +9 −5 src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.ts
  22. +8 −8 src/components-examples/material/chips/chips-form-control/chips-form-control-example.html
  23. +16 −11 src/components-examples/material/chips/chips-form-control/chips-form-control-example.ts
  24. +3 −2 src/components-examples/material/chips/chips-harness/chips-harness-example.ts
  25. +10 −7 src/components-examples/material/chips/chips-input/chips-input-example.html
  26. +25 −18 src/components-examples/material/chips/chips-input/chips-input-example.ts
  27. +2 −1 src/components-examples/material/chips/chips-overview/chips-overview-example.ts
  28. +3 −3 src/components-examples/material/chips/chips-stacked/chips-stacked-example.html
  29. +1 −12 src/components-examples/material/chips/chips-stacked/chips-stacked-example.ts
  30. +5 −4 ...examples/material/datepicker/date-range-picker-comparison/date-range-picker-comparison-example.ts
  31. +5 −4 ...omponents-examples/material/datepicker/date-range-picker-forms/date-range-picker-forms-example.ts
  32. +2 −1 ...nts-examples/material/datepicker/date-range-picker-overview/date-range-picker-overview-example.ts
  33. +3 −2 ...l/datepicker/date-range-picker-selection-strategy/date-range-picker-selection-strategy-example.ts
  34. +9 −9 src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.html
  35. +2 −1 src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.ts
  36. +4 −3 src/components-examples/material/datepicker/datepicker-api/datepicker-api-example.ts
  37. +0 −3 src/components-examples/material/datepicker/datepicker-color/datepicker-color-example.css
  38. +0 −15 src/components-examples/material/datepicker/datepicker-color/datepicker-color-example.html
  39. +0 −16 src/components-examples/material/datepicker/datepicker-color/datepicker-color-example.ts
  40. +19 −24 ...ponents-examples/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts
  41. +5 −4 src/components-examples/material/datepicker/datepicker-custom-icon/datepicker-custom-icon-example.ts
  42. +4 −3 src/components-examples/material/datepicker/datepicker-date-class/datepicker-date-class-example.ts
  43. +4 −3 src/components-examples/material/datepicker/datepicker-disabled/datepicker-disabled-example.ts
  44. +7 −3 src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.html
  45. +6 −5 src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.ts
  46. +4 −3 src/components-examples/material/datepicker/datepicker-filter/datepicker-filter-example.ts
  47. +6 −6 src/components-examples/material/datepicker/datepicker-formats/datepicker-formats-example.ts
  48. +1 −5 src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.html
  49. +3 −2 src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.ts
  50. +1 −1 ...s-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.html
  51. +4 −3 ...nts-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.ts
  52. +2 −2 src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.html
  53. +19 −21 src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.ts
  54. +1 −1 src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.html
  55. +8 −12 src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.ts
  56. +6 −6 src/components-examples/material/datepicker/datepicker-moment/datepicker-moment-example.ts
  57. +2 −1 src/components-examples/material/datepicker/datepicker-overview/datepicker-overview-example.ts
  58. +5 −4 src/components-examples/material/datepicker/datepicker-start-view/datepicker-start-view-example.ts
  59. +2 −1 src/components-examples/material/datepicker/datepicker-touch/datepicker-touch-example.ts
  60. +6 −5 src/components-examples/material/datepicker/datepicker-value/datepicker-value-example.ts
  61. +3 −2 ...nts-examples/material/datepicker/datepicker-views-selection/datepicker-views-selection-example.ts
  62. +0 −1 src/components-examples/material/datepicker/index.ts
  63. +1 −1 src/material/_index.scss
  64. +25 −24 src/material/autocomplete/autocomplete-trigger.ts
  65. +59 −33 src/material/autocomplete/autocomplete.spec.ts
  66. +157 −0 src/material/autocomplete/autocomplete.zone.spec.ts
  67. +8 −13 src/material/badge/badge.md
  68. +4 −1 src/material/badge/badge.ts
  69. +12 −3 src/material/badge/testing/badge-harness.spec.ts
  70. +21 −14 src/material/bottom-sheet/bottom-sheet.spec.ts
  71. +19 −20 src/material/button-toggle/button-toggle.spec.ts
  72. +8 −9 src/material/button-toggle/testing/button-toggle-group.spec.ts
  73. +5 −7 src/material/button-toggle/testing/button-toggle-harness.spec.ts
  74. +26 −6 src/material/button/button.spec.ts
  75. +5 −1 src/material/checkbox/checkbox-config.ts
  76. +13 −2 src/material/checkbox/checkbox.md
  77. +45 −11 src/material/checkbox/checkbox.spec.ts
  78. +11 −7 src/material/checkbox/checkbox.ts
  79. +24 −20 src/material/chips/chip.ts
  80. +9 −5 src/material/chips/chips.md
  81. +1 −1 src/material/core/m2/_typography.scss
  82. +2 −0 src/material/core/theming/_palettes.scss
  83. +35 −27 src/material/datepicker/datepicker-base.ts
  84. +27 −30 src/material/datepicker/datepicker.md
  85. +0 −8 src/material/dialog/dialog-container.ts
  86. +7 −4 src/material/dialog/dialog.spec.ts
  87. +9 −3 src/material/dialog/testing/dialog-opener.ts
  88. +1 −0 src/material/radio/radio.ts
  89. +43 −0 src/material/schematics/ng-generate/m3-theme/index.spec.ts
  90. +124 −2 src/material/schematics/ng-generate/m3-theme/index.ts
  91. +1 −1 src/material/slider/slider-interface.ts
Loading