Skip to content

the documentations and the default value of a string prop are not shown #136

Description

@Kiarokh

example:

export class Breadcrumbs {


    /**
     * The visual divider that separates items.
     * It must be a single character such as `-` or `,`.
     */
    @Prop()
    public divider: string = '›';

generates:

image

or:

export class Header {
    /**
     * Icon to display
     */
    @Prop()
    public icon: string | Icon;

    /**
     * Title to display
     */
    @Prop()
    public heading: string;

    /**
     * Subheading to display
     */
    @Prop()
    public subheading: string;

    /**
     * An extra string of text to display along with with the Subheading
     */
    @Prop()
    public supportingText: string;

    /**
     * The visual divider that separates the `subheading` and the `supportingText`.
     * It must be a single character such as `-` or `,`.
     */
    @Prop()
    public subheadingDivider: string = '·';

generates
image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions