diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 07304189..6f1a65e8 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1224,8 +1224,6 @@ None. | light | No | let | No | boolean | false | Set to `true` to enable the light variant | | tileCollapsedIconText | No | let | No | string | "Interact to expand Tile" | Specify the icon text of the collapsed tile | | tileExpandedIconText | No | let | No | string | "Interact to collapse Tile" | Specify the icon text of the expanded tile | -| tileExpandedLabel | No | let | No | string | "" | Specify the icon label of the expanded tile | -| tileCollapsedLabel | No | let | No | string | "" | Specify the icon label of the collapsed tile | | tabindex | No | let | No | string | "0" | Specify the tabindex | | id | No | let | No | string | "ccs-" + Math.random().toString(36) | Set an id for the top-level div element | diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 7c0b8080..463e95e5 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -3642,30 +3642,6 @@ "constant": false, "reactive": false }, - { - "name": "tileExpandedLabel", - "kind": "let", - "description": "Specify the icon label of the expanded tile", - "type": "string", - "value": "\"\"", - "isFunction": false, - "isFunctionDeclaration": false, - "isRequired": false, - "constant": false, - "reactive": false - }, - { - "name": "tileCollapsedLabel", - "kind": "let", - "description": "Specify the icon label of the collapsed tile", - "type": "string", - "value": "\"\"", - "isFunction": false, - "isFunctionDeclaration": false, - "isRequired": false, - "constant": false, - "reactive": false - }, { "name": "tabindex", "kind": "let", diff --git a/docs/src/pages/components/ExpandableTile.svx b/docs/src/pages/components/ExpandableTile.svx index aca659fa..bb073233 100644 --- a/docs/src/pages/components/ExpandableTile.svx +++ b/docs/src/pages/components/ExpandableTile.svx @@ -58,7 +58,7 @@ Set a custom height for the tiles on the "above" and "below" slots. For tiles containing interactive content, use `stopPropagation` to prevent the tile from toggling. -
+
console.log("Hello world")}> Native element diff --git a/tests/ExpandableTile.test.svelte b/tests/ExpandableTile.test.svelte index 53c60474..a0353959 100644 --- a/tests/ExpandableTile.test.svelte +++ b/tests/ExpandableTile.test.svelte @@ -12,11 +12,7 @@
Below the fold content here
- +
Above the fold content here
Below the fold content here
diff --git a/types/Tile/ExpandableTile.svelte.d.ts b/types/Tile/ExpandableTile.svelte.d.ts index 01c6dd58..da481e8d 100644 --- a/types/Tile/ExpandableTile.svelte.d.ts +++ b/types/Tile/ExpandableTile.svelte.d.ts @@ -40,18 +40,6 @@ export interface ExpandableTileProps extends RestProps { */ tileExpandedIconText?: string; - /** - * Specify the icon label of the expanded tile - * @default "" - */ - tileExpandedLabel?: string; - - /** - * Specify the icon label of the collapsed tile - * @default "" - */ - tileCollapsedLabel?: string; - /** * Specify the tabindex * @default "0"