diff --git a/docs/app/templates/public-pages/docs/api-reference.gts b/docs/app/templates/public-pages/docs/api-reference.gts index 8879872e..a6a64391 100644 --- a/docs/app/templates/public-pages/docs/api-reference.gts +++ b/docs/app/templates/public-pages/docs/api-reference.gts @@ -122,6 +122,11 @@ import { LinkTo } from '@ember/routing'; The component to render as trigger instead of the default trigger component. + + triggerHtmlTag + String + (Default: 'div') The tag of the trigger component + verticalPosition String @@ -209,7 +214,10 @@ import { LinkTo } from '@ember/routing'; htmlTag String - (Default: 'div') The tag of the trigger component + (Default: + 'div') The tag of the trigger component (Note: If you are + using the yielded trigger component, please use + @triggerHtmlTag) title diff --git a/docs/app/templates/public-pages/docs/migrate-8-0-to-9-0.gts b/docs/app/templates/public-pages/docs/migrate-8-0-to-9-0.gts index 87ce1a9d..b6515265 100644 --- a/docs/app/templates/public-pages/docs/migrate-8-0-to-9-0.gts +++ b/docs/app/templates/public-pages/docs/migrate-8-0-to-9-0.gts @@ -54,14 +54,14 @@ import { LinkTo } from '@ember/routing';
  • - Passing - @dropdownId - wasn't working correctly without using custom modifiers and was - undocumented. Remove this parameter and use the - uniqueId - property from the public API instead. + If you are using + @htmlTag + on the yielded trigger component (for example, + <dd.Trigger @htmlTag="span">) replace it with + <BasicDropdown @triggerHtmlTag="span"> + This change is required to fix Glint v2 typing issues.
    - (Deprecation added in 8.8) + (Deprecation added in 8.10)

  • @@ -91,6 +91,18 @@ import { LinkTo } from '@ember/routing'; (Deprecation added in 8.9)

  • +
  • +

    + Passing + @dropdownId + wasn't working correctly without using custom modifiers and was + undocumented. Remove this parameter and use the + uniqueId + property from the public API instead. +
    + (Deprecation added in 8.8) +

    +