${repeat(
@@ -416,7 +412,7 @@ export default class IgcChatComponent extends EventEmitterMixin<
? html`
${this._getRenderer('typingIndicator')(ctx)}${this._renderLoadingTemplate()}
`
diff --git a/src/components/chat/types.ts b/src/components/chat/types.ts
index 5cfd6ebe7..73b083d4e 100644
--- a/src/components/chat/types.ts
+++ b/src/components/chat/types.ts
@@ -230,12 +230,6 @@ export interface ChatRenderers {
* Custom renderer for the header of a message, including sender and timestamp.
*/
messageHeader?: ChatTemplateRenderer
;
- /**
- * Custom renderer for the "is typing" indicator.
- *
- * @deprecated since 6.4.0. Use the `typing-indicator` slot.
- */
- typingIndicator?: ChatTemplateRenderer;
/**
* Custom renderer for the message send button.
*/
diff --git a/src/components/tooltip/tooltip.spec.ts b/src/components/tooltip/tooltip.spec.ts
index e9d086c7d..5df03e9fd 100644
--- a/src/components/tooltip/tooltip.spec.ts
+++ b/src/components/tooltip/tooltip.spec.ts
@@ -75,7 +75,6 @@ describe('Tooltip', () => {
it('is correctly initialized with its default component state', () => {
expect(tooltip.dir).to.be.empty;
expect(tooltip.open).to.be.false;
- expect(tooltip.disableArrow).to.be.true;
expect(tooltip.withArrow).to.be.false;
expect(tooltip.offset).to.equal(6);
expect(tooltip.placement).to.equal('bottom');
diff --git a/src/components/tooltip/tooltip.ts b/src/components/tooltip/tooltip.ts
index 8fd732ccf..d3cb480ac 100644
--- a/src/components/tooltip/tooltip.ts
+++ b/src/components/tooltip/tooltip.ts
@@ -85,7 +85,9 @@ export default class IgcTooltipComponent extends EventEmitterMixin<
private readonly _containerRef = createRef();
private readonly _player = addAnimationController(this, this._containerRef);
- private readonly _slots = addSlotController(this, { slots: setSlots() });
+ private readonly _slots = addSlotController(this, {
+ slots: setSlots('close-button'),
+ });
private readonly _showAnimation = scaleInCenter({
duration: 150,
@@ -146,25 +148,6 @@ export default class IgcTooltipComponent extends EventEmitterMixin<
return this._controller.open;
}
- /**
- * Whether to disable the rendering of the arrow indicator for the tooltip.
- *
- * @deprecated since 6.1.0. Use `with-arrow` to control the behavior of the tooltip arrow.
- * @attr disable-arrow
- * @default false
- */
- @property({ type: Boolean, attribute: 'disable-arrow' })
- public set disableArrow(value: boolean) {
- this.withArrow = !value;
- }
-
- /**
- * @deprecated since 6.1.0. Use `with-arrow` to control the behavior of the tooltip arrow.
- */
- public get disableArrow(): boolean {
- return !this.withArrow;
- }
-
/**
* Whether to render an arrow indicator for the tooltip.
*