You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename navigatorTitle to navigatorDeclarationFragments
Renamed the property in `LinkDestinationSummary` which stores the declaration fragments for the navigator to `navigatorDeclarationFragments`, to follow the same naming convention as `subheadingDeclarationFragments` which fulfils a very similar purpose.
The documentation comments mirror each other, with one explaining that it's intended for use in topic groups, and the other that it's intended for use in navigators.
/// Images that are used to represent the summarized element or `nil` if the images are the same as the summarized element.
242
242
///
@@ -256,8 +256,8 @@ public struct LinkDestinationSummary: Codable, Equatable {
256
256
/// - taskGroups: The taskGroups of the variant or `nil` if the taskGroups is the same as the summarized element.
257
257
/// - usr: The precise symbol identifier of the variant or `nil` if the precise symbol identifier is the same as the summarized element.
258
258
/// - plainTextDeclaration: The plain text declaration of this symbol, derived from its full declaration fragments, or `nil` if the precise symbol identifier is the same as the summarized element.
259
-
/// - subheadingDeclarationFragments: The abbreviated declaration of the variant, to display in links, or `nil` if the declaration is the same as the summarized element.
260
-
/// - navigatorTitle: The abbreviated declaration for this symbol's declaration, to display in navigation, or `nil` if the declaration is the same as the summarized element.
259
+
/// - subheadingDeclarationFragments: The simplified "subheading" declaration fragments for this symbol, to display in topic groups, or `nil` if the declaration is the same as the summarized element.
260
+
/// - navigatorDeclarationFragments: The simplified "navigator" declaration fragments for this symbol, to display in navigation, or `nil` if the declaration is the same as the summarized element.
261
261
publicinit(
262
262
traits:[RenderNode.Variant.Trait],
263
263
kind:VariantValue<DocumentationNode.Kind>=nil,
@@ -269,7 +269,7 @@ public struct LinkDestinationSummary: Codable, Equatable {
@available(*, deprecated, renamed:"init(traits:kind:language:relativePresentationURL:title:abstract:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorTitle:)", message:"Use `init(traits:kind:language:relativePresentationURL:title:abstract:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorTitle:)` instead. `TopicRenderReference` doesn't support variant specific topic images. This property will be removed after 6.3 is released")
287
+
@available(*, deprecated, renamed:"init(traits:kind:language:relativePresentationURL:title:abstract:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorDeclarationFragments:)", message:"Use `init(traits:kind:language:relativePresentationURL:title:abstract:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorDeclarationFragments:)` instead. `TopicRenderReference` doesn't support variant specific topic images. This property will be removed after 6.3 is released")
288
288
publicinit(
289
289
traits:[RenderNode.Variant.Trait],
290
290
kind:VariantValue<DocumentationNode.Kind>=nil,
@@ -296,7 +296,7 @@ public struct LinkDestinationSummary: Codable, Equatable {
@@ -332,8 +332,8 @@ public struct LinkDestinationSummary: Codable, Equatable {
332
332
/// - taskGroups: The reference URLs of the summarized element's children, grouped by their task groups.
333
333
/// - usr: The unique, precise identifier for this symbol that you use to reference it across different systems, or `nil` if the summarized element isn't a symbol.
334
334
/// - plainTextDeclaration: The plain text declaration of this symbol, derived from its full declaration fragments, or `nil` if the summarized element isn't a symbol.
335
-
/// - subheadingDeclarationFragments: The simplified "subheading" fragments for this symbol, or `nil` if the summarized element isn't a symbol.
336
-
/// - navigatorTitle: The abbreviated fragments for this symbol's declaration, to display in navigation, or `nil` if the summarized element isn't a symbol.
335
+
/// - subheadingDeclarationFragments: The simplified "subheading" fragments for this symbol, to display in topic groups, or `nil` if the summarized element isn't a symbol.
336
+
/// - navigatorDeclarationFragments: The simplified "subheading" declaration fragments for this symbol, to display in navigation, or `nil` if the summarized element isn't a symbol.
337
337
/// - redirects: Any previous URLs for this element, or `nil` if this element has no previous URLs.
338
338
/// - topicImages: Images that are used to represent the summarized element, or `nil` if this element has no topic images.
339
339
/// - references: References used in the content of the summarized element, or `nil` if this element has no references to other content.
@@ -350,7 +350,7 @@ public struct LinkDestinationSummary: Codable, Equatable {
@available(*, deprecated, renamed:"init(kind:language:relativePresentationURL:referenceURL:title:abstract:availableLanguages:platforms:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorTitle:redirects:topicImages:references:variants:)", message:"Use `init(kind:language:relativePresentationURL:referenceURL:title:abstract:availableLanguages:platforms:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorTitle:redirects:topicImages:references:variants:)` instead. This property will be removed after 6.3 is released")
378
+
@available(*, deprecated, renamed:"init(kind:language:relativePresentationURL:referenceURL:title:abstract:availableLanguages:platforms:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorDeclarationFragments:redirects:topicImages:references:variants:)", message:"Use `init(kind:language:relativePresentationURL:referenceURL:title:abstract:availableLanguages:platforms:taskGroups:usr:plainTextDeclaration:subheadingDeclarationFragments:navigatorDeclarationFragments:redirects:topicImages:references:variants:)` instead. This property will be removed after 6.3 is released")
379
379
publicinit(
380
380
kind:DocumentationNode.Kind,
381
381
language:SourceLanguage,
@@ -388,7 +388,7 @@ public struct LinkDestinationSummary: Codable, Equatable {
0 commit comments