Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/calcite-components/src/components/table/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
Loading