Skip to content

Commit

Permalink
feat: move help inline features out of developer preview for key info…
Browse files Browse the repository at this point in the history
…, box, and description list
  • Loading branch information
Blackbaud-SteveBrush committed Jul 30, 2024
1 parent 0337f78 commit 32362ab
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -23,15 +22,13 @@ 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<unknown> | undefined;

/**
* The title of the help popover. This property only applies when `helpPopoverContent` is
* also specified.
* @preview
*/
@Input()
public helpPopoverTitle: string | undefined;
Expand Down
7 changes: 0 additions & 7 deletions libs/components/layout/src/lib/modules/box/box.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -59,22 +58,19 @@ 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 })
public headingLevel: SkyBoxHeadingLevel = 2;

/**
* The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
* @preview
* @default 2
*/
@Input({ transform: numberAttribute2 })
Expand All @@ -86,15 +82,13 @@ 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<unknown> | undefined;

/**
* The title of the help popover. This property only applies when `helpPopoverContent` is
* also specified.
* @preview
*/
@Input()
public helpPopoverTitle: string | undefined;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -37,15 +36,13 @@ 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<unknown> | undefined;

/**
* The title of the help popover. This property only applies when `helpPopoverContent` is
* also specified.
* @preview
*/
@Input()
public helpPopoverTitle: string | undefined;
Expand Down

0 comments on commit 32362ab

Please sign in to comment.