diff --git a/packages/calcite-components/src/components/action-menu/action-menu.tsx b/packages/calcite-components/src/components/action-menu/action-menu.tsx index c49e17b093d..f9f9556de20 100755 --- a/packages/calcite-components/src/components/action-menu/action-menu.tsx +++ b/packages/calcite-components/src/components/action-menu/action-menu.tsx @@ -80,7 +80,7 @@ export class ActionMenu implements LoadableComponent { } /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback slotted content `placement` when it's initial or specified `placement` has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[]; diff --git a/packages/calcite-components/src/components/combobox/combobox.tsx b/packages/calcite-components/src/components/combobox/combobox.tsx index fb7d58225d0..58e3397309c 100644 --- a/packages/calcite-components/src/components/combobox/combobox.tsx +++ b/packages/calcite-components/src/components/combobox/combobox.tsx @@ -301,7 +301,7 @@ export class Combobox } /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback slotted content placement when it's initial placement has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[]; diff --git a/packages/calcite-components/src/components/dropdown/dropdown.tsx b/packages/calcite-components/src/components/dropdown/dropdown.tsx index 30063d80107..cc96278754a 100644 --- a/packages/calcite-components/src/components/dropdown/dropdown.tsx +++ b/packages/calcite-components/src/components/dropdown/dropdown.tsx @@ -107,7 +107,7 @@ export class Dropdown } /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback `calcite-dropdown-item` `placement` when it's initial or specified `placement` has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[]; diff --git a/packages/calcite-components/src/components/input-date-picker/input-date-picker.tsx b/packages/calcite-components/src/components/input-date-picker/input-date-picker.tsx index 682eeb80d91..a09cd59bbec 100644 --- a/packages/calcite-components/src/components/input-date-picker/input-date-picker.tsx +++ b/packages/calcite-components/src/components/input-date-picker/input-date-picker.tsx @@ -200,7 +200,7 @@ export class InputDatePicker } /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback `calcite-date-picker` `placement` when it's initial or specified `placement` has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[]; diff --git a/packages/calcite-components/src/components/popover/popover.tsx b/packages/calcite-components/src/components/popover/popover.tsx index b8005ad1de6..410f707a68c 100644 --- a/packages/calcite-components/src/components/popover/popover.tsx +++ b/packages/calcite-components/src/components/popover/popover.tsx @@ -119,7 +119,7 @@ export class Popover @Prop({ reflect: true }) pointerDisabled = false; /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback `placement` when it's initial or specified `placement` has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[]; diff --git a/packages/calcite-components/src/components/split-button/split-button.tsx b/packages/calcite-components/src/components/split-button/split-button.tsx index 5522a49df2d..1547dd2b1a1 100644 --- a/packages/calcite-components/src/components/split-button/split-button.tsx +++ b/packages/calcite-components/src/components/split-button/split-button.tsx @@ -84,7 +84,7 @@ export class SplitButton implements InteractiveComponent, LoadableComponent { @Prop({ reflect: true }) dropdownLabel: string; /** - * Defines the available placements that can be used when a flip occurs. + * Specifies the component's fallback slotted content `placement` when it's initial or specified `placement` has insufficient space available. */ @Prop() flipPlacements: FlipPlacement[];