diff --git a/packages/calcite-components/src/components/carousel/carousel.tsx b/packages/calcite-components/src/components/carousel/carousel.tsx index ab78315af9a..0639c27f47c 100644 --- a/packages/calcite-components/src/components/carousel/carousel.tsx +++ b/packages/calcite-components/src/components/carousel/carousel.tsx @@ -124,10 +124,10 @@ export class Carousel extends LitElement implements InteractiveComponent { /** Specifies how and if the "previous" and "next" arrows are displayed. */ @property({ reflect: true }) arrowType: ArrowType = "inline"; - /** When `true`, the carousel will autoplay and controls will be displayed. When "paused" at time of initialization, the carousel will not autoplay, but controls will be displayed. */ + /** When present, the carousel will autoplay and controls will be displayed. When "paused" at time of initialization, the carousel will not autoplay, but controls will be displayed. */ @property({ reflect: true }) autoplay: AutoplayType = false; - /** When `autoplay` is `true`, specifies in milliseconds the length of time to display each Carousel Item. */ + /** When `autoplay` is present, specifies in milliseconds the length of time to display each Carousel Item. */ @property({ type: Number, reflect: true }) autoplayDuration = DURATION; /** When present, the component's controls are positioned absolutely on top of slotted Carousel Items. */ diff --git a/packages/calcite-components/src/components/color-picker/color-picker.tsx b/packages/calcite-components/src/components/color-picker/color-picker.tsx index ff00e0f8144..02bba78663d 100644 --- a/packages/calcite-components/src/components/color-picker/color-picker.tsx +++ b/packages/calcite-components/src/components/color-picker/color-picker.tsx @@ -338,7 +338,7 @@ export class ColorPicker extends LitElement implements InteractiveComponent { /** Specifies the Unicode numeral system used by the component for localization. */ @property({ reflect: true }) numberingSystem: NumberingSystem; - /** When `true`, hides the saved colors section. */ + /** When present, hides the saved colors section. */ @property({ reflect: true }) savedDisabled = false; /** Specifies the size of the component. */ diff --git a/packages/calcite-components/src/components/sortable-list/sortable-list.tsx b/packages/calcite-components/src/components/sortable-list/sortable-list.tsx index dc4228c5b25..24f1334f78f 100644 --- a/packages/calcite-components/src/components/sortable-list/sortable-list.tsx +++ b/packages/calcite-components/src/components/sortable-list/sortable-list.tsx @@ -59,7 +59,7 @@ export class SortableList extends LitElement implements InteractiveComponent, So /** When provided, the method will be called to determine whether the element can be added from another list. */ @property() canPut: (detail: DragDetail) => boolean; - /** When true, disabled prevents interaction. This state shows items with lower opacity/grayed. */ + /** When present, disabled prevents interaction. This state shows items with lower opacity/grayed. */ @property({ reflect: true }) disabled = false; /** Specifies which items inside the element should be draggable. */ @@ -79,7 +79,7 @@ export class SortableList extends LitElement implements InteractiveComponent, So @property({ reflect: true }) layout: Extract<"horizontal" | "vertical" | "grid", Layout> = "vertical"; - /** When true, content is waiting to be loaded. This state shows a busy indicator. */ + /** When present, content is waiting to be loaded. This state shows a busy indicator. */ @property({ reflect: true }) loading = false; // #endregion diff --git a/packages/calcite-components/src/components/tab-title/tab-title.tsx b/packages/calcite-components/src/components/tab-title/tab-title.tsx index 8b36a4a6b59..41ac441522e 100644 --- a/packages/calcite-components/src/components/tab-title/tab-title.tsx +++ b/packages/calcite-components/src/components/tab-title/tab-title.tsx @@ -128,7 +128,7 @@ export class TabTitle extends LitElement implements InteractiveComponent { @property() scale: Scale = "m"; /** - * When `true`, the component and its respective `calcite-tab` contents are selected. + * When present, the component and its respective `calcite-tab` contents are selected. * * Only one tab can be selected within the `calcite-tabs` parent. */ diff --git a/packages/calcite-components/src/components/table/table.tsx b/packages/calcite-components/src/components/table/table.tsx index ddbb12b77e7..661e772ff11 100644 --- a/packages/calcite-components/src/components/table/table.tsx +++ b/packages/calcite-components/src/components/table/table.tsx @@ -110,7 +110,7 @@ export class Table extends LitElement { /** Specifies the Unicode numeral system used by the component for localization. */ @property({ reflect: true }) numberingSystem?: NumberingSystem; - /** Specifies the page size of the component. When `true`, renders `calcite-pagination`. */ + /** Specifies the page size of the component. When present, renders `calcite-pagination`. */ @property({ reflect: true }) pageSize = 0; /** Specifies the size of the component. */