diff --git a/libs/components/indicators/src/lib/modules/key-info/key-info.component.ts b/libs/components/indicators/src/lib/modules/key-info/key-info.component.ts index 3403a200da..f7f9edf886 100644 --- a/libs/components/indicators/src/lib/modules/key-info/key-info.component.ts +++ b/libs/components/indicators/src/lib/modules/key-info/key-info.component.ts @@ -14,7 +14,6 @@ export class SkyKeyInfoComponent { /** * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is * placed beside the key info. Clicking the button invokes global help as configured by the application. - * @preview */ @Input() public helpKey: string | undefined; @@ -23,7 +22,6 @@ export class SkyKeyInfoComponent { * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) * button is added to the key info. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover) * when clicked using the specified content and optional title. - * @preview */ @Input() public helpPopoverContent: string | TemplateRef | undefined; @@ -31,7 +29,6 @@ export class SkyKeyInfoComponent { /** * The title of the help popover. This property only applies when `helpPopoverContent` is * also specified. - * @preview */ @Input() public helpPopoverTitle: string | undefined; diff --git a/libs/components/layout/src/lib/modules/box/box.component.ts b/libs/components/layout/src/lib/modules/box/box.component.ts index 02d7b632a3..535ccc3dc4 100644 --- a/libs/components/layout/src/lib/modules/box/box.component.ts +++ b/libs/components/layout/src/lib/modules/box/box.component.ts @@ -42,7 +42,6 @@ function numberAttribute2(value: unknown): number { export class SkyBoxComponent { /** * The text to display as the box's heading. - * @preview */ @Input() public set headingText(value: string | undefined) { @@ -59,14 +58,12 @@ export class SkyBoxComponent { /** * Indicates whether to hide the `headingText`. - * @preview */ @Input({ transform: booleanAttribute }) public headingHidden = false; /** * The semantic heading level in the document structure. The default is 2. - * @preview * @default 2 */ @Input({ transform: numberAttribute2 }) @@ -74,7 +71,6 @@ export class SkyBoxComponent { /** * The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings). - * @preview * @default 2 */ @Input({ transform: numberAttribute2 }) @@ -86,7 +82,6 @@ export class SkyBoxComponent { * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) * button is added to the box heading. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover) * when clicked using the specified content and optional title. - * @preview */ @Input() public helpPopoverContent: string | TemplateRef | undefined; @@ -94,7 +89,6 @@ export class SkyBoxComponent { /** * The title of the help popover. This property only applies when `helpPopoverContent` is * also specified. - * @preview */ @Input() public helpPopoverTitle: string | undefined; @@ -103,7 +97,6 @@ export class SkyBoxComponent { * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) * button is placed beside the box heading. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help) * as configured by the application. - * @preview */ @Input() public helpKey: string | undefined; diff --git a/libs/components/layout/src/lib/modules/description-list/description-list-content.component.ts b/libs/components/layout/src/lib/modules/description-list/description-list-content.component.ts index d3c1c94393..74e482d86f 100644 --- a/libs/components/layout/src/lib/modules/description-list/description-list-content.component.ts +++ b/libs/components/layout/src/lib/modules/description-list/description-list-content.component.ts @@ -28,7 +28,6 @@ export class SkyDescriptionListContentComponent { /** * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is * placed beside the description list content label. Clicking the button invokes global help as configured by the application. - * @preview */ @Input() public helpKey: string | undefined; @@ -37,7 +36,6 @@ export class SkyDescriptionListContentComponent { * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) * button is added to the description list content. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover) * when clicked using the specified content and optional title. - * @preview */ @Input() public helpPopoverContent: string | TemplateRef | undefined; @@ -45,7 +43,6 @@ export class SkyDescriptionListContentComponent { /** * The title of the help popover. This property only applies when `helpPopoverContent` is * also specified. - * @preview */ @Input() public helpPopoverTitle: string | undefined;