diff --git a/src/components/list-item-group/list-item-group.tsx b/src/components/list-item-group/list-item-group.tsx index c72b9896b21..2b377f18b3d 100644 --- a/src/components/list-item-group/list-item-group.tsx +++ b/src/components/list-item-group/list-item-group.tsx @@ -2,7 +2,6 @@ import { Component, Prop, h, VNode, Host, Element, State } from "@stencil/core"; import { InteractiveComponent, updateHostInteraction } from "../../utils/interactive"; import { CSS } from "./resources"; import { MAX_COLUMNS } from "../list-item/resources"; -import { HeadingLevel } from "../functional/Heading"; import { getDepth } from "../list-item/utils"; /** * @slot - A slot for adding `calcite-list-item` and `calcite-list-item-group` elements. @@ -30,13 +29,6 @@ export class ListItemGroup implements InteractiveComponent { */ @Prop({ reflect: true }) heading: string; - /** - * Specifies the number at which section headings should start. - * - * @deprecated no longer necessary. - */ - @Prop({ reflect: true }) headingLevel: HeadingLevel; - // -------------------------------------------------------------------------- // // Lifecycle diff --git a/src/components/list-item/list-item.tsx b/src/components/list-item/list-item.tsx index 7dca32935b6..833bb523d81 100644 --- a/src/components/list-item/list-item.tsx +++ b/src/components/list-item/list-item.tsx @@ -82,13 +82,6 @@ export class ListItem implements InteractiveComponent, LoadableComponent { */ @Prop() metadata?: Record; - /** - * When `true`, prevents the content of the component from user interaction. - * - * @deprecated no longer necessary. - */ - @Prop({ reflect: true }) nonInteractive = false; - /** * When true, item is open to show child components. */ diff --git a/src/components/list/list.tsx b/src/components/list/list.tsx index a49f9beb5db..2d79ea77ab4 100755 --- a/src/components/list/list.tsx +++ b/src/components/list/list.tsx @@ -18,7 +18,6 @@ import { createObserver } from "../../utils/observers"; import { getListItemChildren, updateListItemChildren } from "../list-item/utils"; import { toAriaBoolean } from "../../utils/dom"; import { debounce } from "lodash-es"; -import { HeadingLevel } from "../functional/Heading"; import { ItemData } from "../list-item/interfaces"; import { MAX_COLUMNS } from "../list-item/resources"; @@ -87,13 +86,6 @@ export class List implements InteractiveComponent, LoadableComponent { */ @Prop({ reflect: true, mutable: true }) filterText: string; - /** - * Specifies the number at which section headings should start. - * - * @deprecated no longer necessary. - */ - @Prop({ reflect: true }) headingLevel: HeadingLevel; - /** * Specifies an accessible name for the component. */