+
{this.value.length}/{this.maxLength}
)}
diff --git a/packages/core/src/components/menu-category/menu-category.tsx b/packages/core/src/components/menu-category/menu-category.tsx
index fcc4257caf9..a1f4d3f7820 100644
--- a/packages/core/src/components/menu-category/menu-category.tsx
+++ b/packages/core/src/components/menu-category/menu-category.tsx
@@ -35,7 +35,7 @@ const DefaultAnimationTimeout = 150;
shadow: true,
})
export class MenuCategory {
- @Element() hostElement: HTMLIxMenuCategoryElement;
+ @Element() hostElement!: HTMLIxMenuCategoryElement;
/**
* Display name of the category
@@ -275,7 +275,7 @@ export class MenuCategory {
}}
>
diff --git a/packages/core/src/components/menu-item/menu-item.tsx b/packages/core/src/components/menu-item/menu-item.tsx
index 9b8c0f391a2..b482ce4e586 100644
--- a/packages/core/src/components/menu-item/menu-item.tsx
+++ b/packages/core/src/components/menu-item/menu-item.tsx
@@ -42,13 +42,6 @@ export class MenuItem {
*/
@Prop() bottom = false;
- /**
- * Name of the icon you want to display. Icon names can be resolved from the documentation @link https://ix.siemens.io/docs/icon-library/icons
- *
- * @deprecated since 2.0.0 use `icon` property. Will be removed in 3.0.0
- */
- @Prop({ mutable: true }) tabIcon?: string;
-
/**
* Name of the icon you want to display. Icon names can be resolved from the documentation @link https://ix.siemens.io/docs/icon-library/icons
*/
@@ -90,7 +83,6 @@ export class MenuItem {
!!this.hostElement.closest('ix-menu-category');
this.onIconChange();
- this.onTabIconChange();
this.menuExpanded = menuController.nativeElement?.expand || false;
this.menuExpandedDisposer = menuController.expandChange.on(
@@ -126,26 +118,11 @@ export class MenuItem {
@Watch('icon')
onIconChange() {
- if (
- !this.isHostedInsideCategory &&
- !this.hostElement.icon &&
- !this.hostElement.tabIcon
- ) {
+ if (!this.isHostedInsideCategory && !this.hostElement.icon) {
this.icon = iconDocument;
}
}
- @Watch('tabIcon')
- onTabIconChange() {
- if (
- !this.isHostedInsideCategory &&
- !this.hostElement.icon &&
- !this.hostElement.tabIcon
- ) {
- this.tabIcon = iconDocument;
- }
- }
-
render() {
let extendedAttributes = {};
if (this.home) {
@@ -175,12 +152,7 @@ export class MenuItem {
tabIndex={this.disabled ? -1 : 0}
ref={this.buttonRef}
>
- {(this.icon || this.tabIcon) && (
-
- )}
+ {this.icon && }
{this.notifications ? (
{this.notifications}
diff --git a/packages/core/src/components/menu/menu.tsx b/packages/core/src/components/menu/menu.tsx
index 370921ecec9..bb44d1cc042 100644
--- a/packages/core/src/components/menu/menu.tsx
+++ b/packages/core/src/components/menu/menu.tsx
@@ -73,14 +73,6 @@ export class Menu {
*/
@Prop() applicationDescription = '';
- /**
- * Maximum number of menu items to show in case enough vertical space is available.
- * Extra menu items will be collapsed to 'show more' menu item.
- *
- * @deprecated - Has no effect on component. Will get removed with next major release (v3)
- */
- @Prop() maxVisibleMenuItems = 9;
-
/**
* Accessibility i18n label for the burger menu of the sidebar
*/
diff --git a/packages/core/src/components/modal/modal.tsx b/packages/core/src/components/modal/modal.tsx
index 0a57b1eea73..187ca9f96f9 100644
--- a/packages/core/src/components/modal/modal.tsx
+++ b/packages/core/src/components/modal/modal.tsx
@@ -74,12 +74,6 @@ export class Modal {
*/
@Prop() centered = false;
- /**
- * Use ESC to dismiss the modal
- * @deprecated - Use closeOnEscape instead
- */
- @Prop() keyboard = true;
-
/**
* If set to true the modal can be closed by pressing the Escape key
*/
@@ -97,7 +91,7 @@ export class Modal {
@State() modalVisible = false;
- @OnListener
('keydown', (self) => !self.closeOnEscape || !self.keyboard)
+ @OnListener('keydown', (self) => !self.closeOnEscape)
onKey(e: KeyboardEvent) {
if (e.key === 'Escape') {
e.preventDefault();
diff --git a/packages/core/src/components/pill/pill.tsx b/packages/core/src/components/pill/pill.tsx
index dbeabd21057..75417661ac9 100644
--- a/packages/core/src/components/pill/pill.tsx
+++ b/packages/core/src/components/pill/pill.tsx
@@ -45,14 +45,6 @@ export class Pill {
*/
@Prop() background: string | undefined;
- /**
- * Custom font color for pill. Only working for `variant='custom'`
- *
- * @deprecated since 2.1.0 use `pill-color`
- */
- // eslint-disable-next-line @stencil-community/reserved-member-names
- @Prop() color: string | undefined;
-
/**
* Custom font color for pill. Only working for `variant='custom'`
*/
@@ -68,7 +60,7 @@ export class Pill {
if (this.variant === 'custom') {
customStyle = {
- color: this.pillColor ?? this.color,
+ color: this.pillColor,
[this.outline ? 'borderColor' : 'backgroundColor']: this.background,
};
}
@@ -77,7 +69,7 @@ export class Pill {
style={
this.variant === 'custom'
? {
- '--ix-icon-button-color': this.pillColor ?? this.color,
+ '--ix-icon-button-color': this.pillColor,
}
: {}
}
diff --git a/packages/core/src/components/push-card/push-card.tsx b/packages/core/src/components/push-card/push-card.tsx
index bb3ef76d65a..c3b821026bd 100644
--- a/packages/core/src/components/push-card/push-card.tsx
+++ b/packages/core/src/components/push-card/push-card.tsx
@@ -9,7 +9,6 @@
import { Component, h, Host, Prop } from '@stencil/core';
import { CardVariant } from '../card/card';
-import { TypographyColors } from '../typography/typography';
export type PushCardVariant = CardVariant;
@@ -44,9 +43,8 @@ export class PushCard {
/**
* Card variant
- * @deprecated variant "insight" and "notification" will be removed in 3.0. Use "outline" or "filled" instead.
*/
- @Prop() variant: PushCardVariant = 'insight';
+ @Prop() variant: PushCardVariant = 'outline';
/**
* Collapse the card
@@ -55,11 +53,6 @@ export class PushCard {
@Prop() collapse: boolean = true;
render() {
- const color: TypographyColors | undefined =
- this.variant === 'insight' || this.variant === 'notification'
- ? 'std'
- : undefined;
-
return (
@@ -71,10 +64,8 @@ export class PushCard {
{this.notification ?? 0}
-
- {this.heading}
-
- {this.subheading}
+ {this.heading}
+ {this.subheading}
diff --git a/packages/core/src/components/select-item/select-item.tsx b/packages/core/src/components/select-item/select-item.tsx
index 780c6db6029..722f926e2dc 100644
--- a/packages/core/src/components/select-item/select-item.tsx
+++ b/packages/core/src/components/select-item/select-item.tsx
@@ -41,9 +41,8 @@ export class SelectItem implements DropdownItemWrapper {
* The value of the item.
* Important: The select component uses string values to handle selection and will call toString() on this value.
* Therefor a string should be passed to value to prevent unexpected behavior.
- * @deprecated will be changed to type string with next major release (3.0.0)
*/
- @Prop({ reflect: true }) value!: any;
+ @Prop({ reflect: true }) value!: string;
/**
* Flag indicating whether the item is selected
diff --git a/packages/core/src/components/select/select.tsx b/packages/core/src/components/select/select.tsx
index 6b77afc1d8b..7dae09e6899 100644
--- a/packages/core/src/components/select/select.tsx
+++ b/packages/core/src/components/select/select.tsx
@@ -116,13 +116,6 @@ export class Select implements IxInputFieldComponent {
*/
@Prop() showTextAsTooltip?: boolean;
- /**
- * Indices of selected items.
- * This corresponds to the value property of ix-select-items and therefor not necessarily the indices of the items in the list.
- * @deprecated since 2.0.0. Use the `value` property instead.
- */
- @Prop({ mutable: true }) selectedIndices?: string | string[];
-
/**
* Current selected value.
* This corresponds to the value property of ix-select-items
@@ -190,12 +183,6 @@ export class Select implements IxInputFieldComponent {
*/
@Event() valueChange!: EventEmitter;
- /**
- * Item selection changed
- * @deprecated since 2.0.0. Use `valueChange` instead.
- */
- @Event() itemSelectionChange!: EventEmitter;
-
/**
* Event dispatched whenever the text input changes.
*
@@ -293,15 +280,9 @@ export class Select implements IxInputFieldComponent {
return this.items.every((item) => item.classList.contains('d-none'));
}
- @Watch('selectedIndices')
- watchSelectedIndices(value: string | string[]) {
- this.value = value;
- this.updateSelection();
- }
-
@Watch('value')
watchValue(value: string | string[]) {
- this.selectedIndices = value;
+ this.value = value;
this.updateSelection();
}
@@ -472,12 +453,6 @@ export class Select implements IxInputFieldComponent {
return true;
}
- if (!value) {
- this.itemSelectionChange.emit(null);
- } else {
- this.itemSelectionChange.emit(Array.isArray(value) ? value : [value]);
- }
-
this.updateFormInternalValue(value);
return false;
}
@@ -490,10 +465,6 @@ export class Select implements IxInputFieldComponent {
}
componentWillLoad() {
- if (this.selectedIndices && !this.value) {
- this.value = this.selectedIndices;
- }
-
this.updateSelection();
this.updateFormInternalValue(this.value);
}
diff --git a/packages/core/src/components/select/test/select.ct.ts b/packages/core/src/components/select/test/select.ct.ts
index 9749e5f9909..1b8c294464c 100644
--- a/packages/core/src/components/select/test/select.ct.ts
+++ b/packages/core/src/components/select/test/select.ct.ts
@@ -328,7 +328,7 @@ regressionTest(
);
regressionTest(
- 'pass object as value and check if it is selectable',
+ 'pass string as value and check if it is selectable',
async ({ mount, page }) => {
await mount(`
@@ -345,7 +345,7 @@ regressionTest(
.locator('ix-select-item')
.nth(index)
.evaluate((e: HTMLIxSelectItemElement, index) => {
- e.value = { selectLabel: `Item ${index}`, selectValue: `${index}` };
+ e.value = `Item ${index}`;
});
}
diff --git a/packages/core/src/components/slider/slider.tsx b/packages/core/src/components/slider/slider.tsx
index f3106fab6b6..4b9aeba8636 100644
--- a/packages/core/src/components/slider/slider.tsx
+++ b/packages/core/src/components/slider/slider.tsx
@@ -297,7 +297,7 @@ export class Slider {
{this.error ? (
-
+
{this.error}
) : null}
diff --git a/packages/core/src/components/split-button-item/split-button-item.tsx b/packages/core/src/components/split-button-item/split-button-item.tsx
deleted file mode 100644
index 696a6498a0b..00000000000
--- a/packages/core/src/components/split-button-item/split-button-item.tsx
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2023 Siemens AG
- *
- * SPDX-License-Identifier: MIT
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-import {
- Component,
- Element,
- Event,
- EventEmitter,
- h,
- Host,
- Method,
- Prop,
-} from '@stencil/core';
-import { DropdownItemWrapper } from '../dropdown/dropdown-controller';
-import { makeRef } from '../utils/make-ref';
-
-/**
- * @deprecated since 2.0.0. Use the `ix-dropdown-item` component instead.
- */
-@Component({
- tag: 'ix-split-button-item',
- styleUrl: 'split-button-item.css',
- shadow: true,
-})
-export class SplitButtonItem implements DropdownItemWrapper {
- @Element() hostElement: HTMLIxSplitButtonItemElement;
-
- /**
- * Dropdown icon
- */
- @Prop() icon: string;
-
- /**
- * Dropdown label
- */
- @Prop() label: string;
-
- /**
- * Dropdown item clicked
- */
- @Event() itemClick: EventEmitter;
-
- private wrapperRef = makeRef();
-
- /** @internal */
- @Method()
- async getDropdownItemElement() {
- return this.wrapperRef.waitForCurrent();
- }
-
- render() {
- return (
-
- {
- e.preventDefault();
- e.stopPropagation();
- }}
- onClick={(e) => this.itemClick.emit(e)}
- >
-
- );
- }
-}
diff --git a/packages/core/src/components/time-picker/time-picker.tsx b/packages/core/src/components/time-picker/time-picker.tsx
index 41544020bc0..515eed93df4 100644
--- a/packages/core/src/components/time-picker/time-picker.tsx
+++ b/packages/core/src/components/time-picker/time-picker.tsx
@@ -65,11 +65,6 @@ export class TimePicker {
*/
@Prop() standaloneAppearance: boolean = true;
- /**
- * @deprecated Not supported since 2.0.0.
- */
- @Prop() individual: boolean = true;
-
/**
* Show hour input
*/
@@ -101,15 +96,6 @@ export class TimePicker {
}
}
- /**
- * Show time reference input
- *
- * @since 1.1.0 time reference is default aligned with format tt
- * @deprecated Since 2.0.0 time reference will be displayed depending on format.
- */
- // eslint-disable-next-line @stencil-community/strict-mutable
- @Prop({ mutable: true }) showTimeReference?: boolean = undefined;
-
/**
* Set time reference
*/
@@ -134,12 +120,6 @@ export class TimePicker {
*/
@Event() timeSelect!: EventEmitter;
- /**
- * Time event
- * @deprecated Will be removed in 3.0.0. Use `time-select` event.
- */
- @Event() done!: EventEmitter;
-
/**
* Time change event
*/
@@ -367,7 +347,6 @@ export class TimePicker {
{
this.timeSelect.emit(this._time?.toFormat(this.format));
- this.done.emit(this._time?.toFormat(this.format));
}}
>
{this.textSelectTime}
diff --git a/packages/core/src/components/typography/test/ix-typography.spec.tsx b/packages/core/src/components/typography/test/ix-typography.spec.tsx
index f2c7e5c263b..058508c9852 100644
--- a/packages/core/src/components/typography/test/ix-typography.spec.tsx
+++ b/packages/core/src/components/typography/test/ix-typography.spec.tsx
@@ -20,10 +20,10 @@ describe('ix-typography', () => {
it('should render color', async () => {
const page = await newSpecPage({
components: [IxTypography],
- html: `Example content`,
+ html: `Example content`,
});
expect(page.root).toEqualHtml(`
-
+
diff --git a/packages/core/src/components/typography/typography.tsx b/packages/core/src/components/typography/typography.tsx
index 58c616ad19b..58dec1c0e79 100644
--- a/packages/core/src/components/typography/typography.tsx
+++ b/packages/core/src/components/typography/typography.tsx
@@ -71,14 +71,6 @@ export class IxTypography {
*/
@Prop() format?: TypographyFormat;
- /**
- * Text color based on theme variables
- *
- * @deprecated since 2.1.0 use property `text-color`
- */
- // eslint-disable-next-line @stencil-community/reserved-member-names
- @Prop() color?: TypographyColors;
-
/**
* Text color based on theme variables
*/
@@ -106,12 +98,6 @@ export class IxTypography {
let style = {};
- if (this.color) {
- style = {
- color: `var(--theme-color-${this.color}-text)`,
- };
- }
-
if (this.textColor) {
style = {
color: `var(--theme-color-${this.textColor}-text)`,
diff --git a/packages/core/src/components/utils/modal/loading.ts b/packages/core/src/components/utils/modal/loading.ts
index 350681c165b..9924ffc855c 100644
--- a/packages/core/src/components/utils/modal/loading.ts
+++ b/packages/core/src/components/utils/modal/loading.ts
@@ -12,7 +12,7 @@ import { getCoreDelegate } from '../delegate';
export function showModalLoading(message: string) {
const modal = document.createElement('ix-modal');
- modal.keyboard = false;
+ modal.closeOnEscape = false;
const loading = document.createElement('ix-modal-loading');
loading.innerText = message;
diff --git a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-dark-linux.png b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-dark-linux.png
index 602c63d123a..4b7cc73bc05 100644
Binary files a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-dark-linux.png and b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-dark-linux.png differ
diff --git a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-light-linux.png b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-light-linux.png
index cf281707439..fcf5de374c8 100644
Binary files a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-light-linux.png and b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-have-selected-state-1-chromium---theme-classic-light-linux.png differ
diff --git a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-dark-linux.png b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-dark-linux.png
index 3ac0a66a8a3..b0a68961e97 100644
Binary files a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-dark-linux.png and b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-dark-linux.png differ
diff --git a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-light-linux.png b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-light-linux.png
index 32b0240c524..33034e64eb4 100644
Binary files a/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-light-linux.png and b/packages/core/src/tests/action-card/action-card.e2e.ts-snapshots/action-card-basic-should-not-have-visual-regressions-1-chromium---theme-classic-light-linux.png differ
diff --git a/packages/core/src/tests/action-card/basic/index.html b/packages/core/src/tests/action-card/basic/index.html
index 0c0d995870b..fecc6d84094 100644
--- a/packages/core/src/tests/action-card/basic/index.html
+++ b/packages/core/src/tests/action-card/basic/index.html
@@ -20,17 +20,6 @@
-
-
-
-
- Item 1
- Item 2
+ Item 1
+ Item 2
Example content
diff --git a/packages/core/src/tests/application/content-width/index.html b/packages/core/src/tests/application/content-width/index.html
index c4f6d704878..e61e19c18b1 100644
--- a/packages/core/src/tests/application/content-width/index.html
+++ b/packages/core/src/tests/application/content-width/index.html
@@ -54,8 +54,8 @@
- Item 1
- Item 2
+ Item 1
+ Item 2
Example content
diff --git a/packages/core/src/tests/basic-navigation/basic/index.html b/packages/core/src/tests/basic-navigation/basic/index.html
index f46d83a39e1..0c7ff10785a 100644
--- a/packages/core/src/tests/basic-navigation/basic/index.html
+++ b/packages/core/src/tests/basic-navigation/basic/index.html
@@ -51,8 +51,8 @@
/>
- Item 1
- Item 2
+ Item 1
+ Item 2
Example content
diff --git a/packages/core/src/tests/basic-navigation/content-width/index.html b/packages/core/src/tests/basic-navigation/content-width/index.html
index 439d089786a..9fbbf811aa8 100644
--- a/packages/core/src/tests/basic-navigation/content-width/index.html
+++ b/packages/core/src/tests/basic-navigation/content-width/index.html
@@ -51,8 +51,8 @@
/>
- Item 1
- Item 2
+ Item 1
+ Item 2
Example content
diff --git a/packages/core/src/tests/blind/basic/index.html b/packages/core/src/tests/blind/basic/index.html
index bf7f2840791..0cdf6ca5a98 100644
--- a/packages/core/src/tests/blind/basic/index.html
+++ b/packages/core/src/tests/blind/basic/index.html
@@ -20,8 +20,8 @@
-
- Insight content
+
+ filled content
Outline content
diff --git a/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-dark-linux.png b/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-dark-linux.png
index 89a6fa49479..69f6f0c965e 100644
Binary files a/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-dark-linux.png and b/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-dark-linux.png differ
diff --git a/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-light-linux.png b/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-light-linux.png
index 88dc6f14c28..fd3e89b97d2 100644
Binary files a/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-light-linux.png and b/packages/core/src/tests/blind/blind.e2e.ts-snapshots/blind-basic-1-chromium---theme-classic-light-linux.png differ
diff --git a/packages/core/src/tests/card-list/basic/index.html b/packages/core/src/tests/card-list/basic/index.html
index 64fb8579264..8c5e22687fa 100644
--- a/packages/core/src/tests/card-list/basic/index.html
+++ b/packages/core/src/tests/card-list/basic/index.html
@@ -32,14 +32,14 @@
notification="99"
heading="Heading content"
subheading="Subheading"
- variant="insight"
+ variant="outline"
>
Insight
-
+
Notification
diff --git a/packages/core/src/tests/card/selected/index.html b/packages/core/src/tests/card/selected/index.html
index 259959e91f5..9fed0074481 100644
--- a/packages/core/src/tests/card/selected/index.html
+++ b/packages/core/src/tests/card/selected/index.html
@@ -25,7 +25,7 @@
Insight
-
+
Notification
diff --git a/packages/core/src/tests/chip/custom/index.html b/packages/core/src/tests/chip/custom/index.html
index 575e4baf010..9c8be4557b5 100644
--- a/packages/core/src/tests/chip/custom/index.html
+++ b/packages/core/src/tests/chip/custom/index.html
@@ -16,13 +16,13 @@
- Custom
Custom OutlineCustom
- Text 1
- Text 2
- Text 3
- Text 4
+ Text 1
+ Text 2
+ Text 3
+ Text 4
diff --git a/packages/core/src/tests/event-list/chevron/index.html b/packages/core/src/tests/event-list/chevron/index.html
index 258915eb4ac..8a10bd0ee1b 100644
--- a/packages/core/src/tests/event-list/chevron/index.html
+++ b/packages/core/src/tests/event-list/chevron/index.html
@@ -6,24 +6,28 @@
-
-
-
Stencil Component Starter
+
+
+ Stencil Component Starter
-
-
- Text 1
- Text 2
- Text 3
- Text 4
-
-
-
+
+
+
+ Text 1
+
+
+ Text 2
+
+
+ Text 3
+
+
+ Text 4
+
+
+
+
diff --git a/packages/core/src/tests/event-list/compact/index.html b/packages/core/src/tests/event-list/compact/index.html
index b3e5f318429..4d4dce60636 100644
--- a/packages/core/src/tests/event-list/compact/index.html
+++ b/packages/core/src/tests/event-list/compact/index.html
@@ -16,14 +16,18 @@
- Text 1
- Text 2
- Text 3
- Text 4
+
+ Text 1
+
+
+ Text 2
+
+
+ Text 3
+
+
+ Text 4
+
diff --git a/packages/core/src/tests/event-list/custom-height/index.html b/packages/core/src/tests/event-list/custom-height/index.html
index 259b9838d3a..7b9d570ced9 100644
--- a/packages/core/src/tests/event-list/custom-height/index.html
+++ b/packages/core/src/tests/event-list/custom-height/index.html
@@ -16,13 +16,13 @@
- Test 1
- Test 2
+ Test 1
+ Test 2
- Test 1
- Test 2
+ Test 1
+ Test 2
diff --git a/packages/core/src/tests/icon-button/basic/index.html b/packages/core/src/tests/icon-button/basic/index.html
index 613e6de0376..62df579b386 100644
--- a/packages/core/src/tests/icon-button/basic/index.html
+++ b/packages/core/src/tests/icon-button/basic/index.html
@@ -19,37 +19,31 @@
-
-
-
-
-
-