diff --git a/app/src/docs/TextInput.doc.tsx b/app/src/docs/TextInput.doc.tsx index a31d85f4a8..8754f27941 100644 --- a/app/src/docs/TextInput.doc.tsx +++ b/app/src/docs/TextInput.doc.tsx @@ -57,11 +57,9 @@ export class TextInputDoc extends BaseDocsBlock { const w180_h80: TPreviewCellSize = '180-80'; const w180_h50: TPreviewCellSize = '180-50'; const formBaseMatrix: TMatrixLocal = { mode: { examples: ['form'] }, ...baseMatrix }; - docPreview.add(TTextInputPreview['Form'], formBaseMatrix, w180_h80); - docPreview.add(TTextInputPreview['Form States'], { ...formBaseMatrix, ...statesBaseMatrix }, w180_h50); - const inlineBaseMatrix: TMatrixLocal = { mode: { examples: ['inline'] }, ...baseMatrix }; - docPreview.add(TTextInputPreview['Inline'], inlineBaseMatrix, w180_h80); - docPreview.add(TTextInputPreview['Inline States'], { ...inlineBaseMatrix, ...statesBaseMatrix }, w180_h50); + docPreview.add(TTextInputPreview['Form Size Variants'], formBaseMatrix, w180_h80); + docPreview.add(TTextInputPreview['Inline Size Variants'], { mode: { examples: ['inline'] }, ...baseMatrix }, w180_h80); + docPreview.add(TTextInputPreview['Color Variants'], { mode: { examples: ['form', 'inline'] }, ...baseMatrix, ...statesBaseMatrix }, w180_h50); }, }; diff --git a/app/src/docs/_types/previewIds.ts b/app/src/docs/_types/previewIds.ts index 91a301ab55..11ded331ae 100644 --- a/app/src/docs/_types/previewIds.ts +++ b/app/src/docs/_types/previewIds.ts @@ -20,13 +20,6 @@ export enum TAvatarStackPreview { 'Bigger size' = 'Bigger size' } -export enum TTextInputPreview { - 'Form'= 'Form', - 'Form States'= 'Form States', - 'Inline'= 'Inline', - 'Inline States'= 'Inline States' -} - export enum TAccordionPreview { Expanded = 'Expanded', Collapsed = 'Collapsed' @@ -61,16 +54,6 @@ export enum TPickerInputPreview { 'Cell MultiSelect Multiline States'= 'Cell MultiSelect Multiline States' } -export enum TDatePickerPreview { - Form = 'Form', - 'Form Opened' = 'Form Opened', - 'Form States' = 'Form States', - Cell = 'Cell', - 'Cell States' = 'Cell States', - Inline = 'Inline', - 'Inline States' = 'Inline States' -} - export const TBadgePreview = { ...UTILS.SizeVariants, ...UTILS.ColorVariants }; export const TCheckboxPreview = { ...UTILS.CommonVariants }; export const TCountIndicatorPreview = { ...UTILS.SizeVariants, ...UTILS.ColorVariants }; @@ -117,3 +100,13 @@ export const TRangeDatePickerPreview = { Opened: 'Opened' as const, 'Opened With Presets': 'Opened With Presets' as const, }; +export const TTextInputPreview = { + 'Form Size Variants': 'Form Size Variants' as const, + 'Inline Size Variants': 'Inline Size Variants' as const, + ...UTILS.ColorVariants, +}; +export const TDatePickerPreview = { + ...UTILS.SizeVariants, + ...UTILS.ColorVariants, + 'Form Opened': 'Form Opened' as const, +}; diff --git a/app/src/docs/datePicker/DatePicker.doc.tsx b/app/src/docs/datePicker/DatePicker.doc.tsx index 100ccd0bd4..e03724de98 100644 --- a/app/src/docs/datePicker/DatePicker.doc.tsx +++ b/app/src/docs/datePicker/DatePicker.doc.tsx @@ -57,26 +57,13 @@ export class DatePickerDoc extends BaseDocsBlock { }; const w180_h60: TPreviewCellSize = '180-60'; const w320_h400: TPreviewCellSize = '320-400'; - /** - * Form - */ - docPreview.add(TDatePickerPreview.Form, { mode: { values: ['form'] }, ...baseMatrix }, w180_h60); - docPreview.add(TDatePickerPreview['Form States'], { mode: { values: ['form'] }, ...baseMatrix, ...statesBaseMatrix }, w180_h60); + docPreview.add(TDatePickerPreview['Size Variants'], { mode: { values: ['form', 'inline', 'cell'] }, ...baseMatrix }, w180_h60); + docPreview.add(TDatePickerPreview['Color Variants'], { mode: { values: ['form', 'inline', 'cell'] }, ...baseMatrix, ...statesBaseMatrix }, w180_h60); docPreview.add({ id: TDatePickerPreview['Form Opened'], matrix: { value: { values: [TEST_DATA.value] } }, cellSize: w320_h400, }); - /** - * Inline - */ - docPreview.add(TDatePickerPreview.Inline, { mode: { values: ['inline'] }, ...baseMatrix }, w180_h60); - docPreview.add(TDatePickerPreview['Inline States'], { mode: { values: ['inline'] }, ...baseMatrix, ...statesBaseMatrix }, w180_h60); - /** - * Cell - */ - docPreview.add(TDatePickerPreview.Cell, { mode: { values: ['cell'] }, ...baseMatrix }, w180_h60); - docPreview.add(TDatePickerPreview['Cell States'], { mode: { values: ['cell'] }, ...baseMatrix, ...statesBaseMatrix }, w180_h60); }, }; diff --git a/uui-e2e-tests/src/data/previewIds.ts b/uui-e2e-tests/src/data/previewIds.ts index 91a301ab55..11ded331ae 100644 --- a/uui-e2e-tests/src/data/previewIds.ts +++ b/uui-e2e-tests/src/data/previewIds.ts @@ -20,13 +20,6 @@ export enum TAvatarStackPreview { 'Bigger size' = 'Bigger size' } -export enum TTextInputPreview { - 'Form'= 'Form', - 'Form States'= 'Form States', - 'Inline'= 'Inline', - 'Inline States'= 'Inline States' -} - export enum TAccordionPreview { Expanded = 'Expanded', Collapsed = 'Collapsed' @@ -61,16 +54,6 @@ export enum TPickerInputPreview { 'Cell MultiSelect Multiline States'= 'Cell MultiSelect Multiline States' } -export enum TDatePickerPreview { - Form = 'Form', - 'Form Opened' = 'Form Opened', - 'Form States' = 'Form States', - Cell = 'Cell', - 'Cell States' = 'Cell States', - Inline = 'Inline', - 'Inline States' = 'Inline States' -} - export const TBadgePreview = { ...UTILS.SizeVariants, ...UTILS.ColorVariants }; export const TCheckboxPreview = { ...UTILS.CommonVariants }; export const TCountIndicatorPreview = { ...UTILS.SizeVariants, ...UTILS.ColorVariants }; @@ -117,3 +100,13 @@ export const TRangeDatePickerPreview = { Opened: 'Opened' as const, 'Opened With Presets': 'Opened With Presets' as const, }; +export const TTextInputPreview = { + 'Form Size Variants': 'Form Size Variants' as const, + 'Inline Size Variants': 'Inline Size Variants' as const, + ...UTILS.ColorVariants, +}; +export const TDatePickerPreview = { + ...UTILS.SizeVariants, + ...UTILS.ColorVariants, + 'Form Opened': 'Form Opened' as const, +}; diff --git a/uui-e2e-tests/src/data/testData.ts b/uui-e2e-tests/src/data/testData.ts index 9db824bd39..f701834a64 100644 --- a/uui-e2e-tests/src/data/testData.ts +++ b/uui-e2e-tests/src/data/testData.ts @@ -118,7 +118,7 @@ export type TPreviewIdByComponentId = { [TComponentId.button]: TPreviewIds, [TComponentId.checkbox]: TPreviewIds, [TComponentId.countIndicator]: TPreviewIds, - [TComponentId.datePicker]: TDatePickerPreview[], + [TComponentId.datePicker]: TPreviewIds, [TComponentId.iconButton]: TPreviewIds, [TComponentId.linkButton]: TPreviewIds, [TComponentId.pickerInput]: TPickerInputPreview[], @@ -128,7 +128,7 @@ export type TPreviewIdByComponentId = { [TComponentId.tag]: TPreviewIds, [TComponentId.text]: TPreviewIds, [TComponentId.textArea]: TPreviewIds, - [TComponentId.textInput]: TTextInputPreview[], + [TComponentId.textInput]: TPreviewIds, [TComponentId.verticalTabButton]: TPreviewIds, [TComponentId.numericInput]: TPreviewIds, [TComponentId.radioInput]: TPreviewIds, diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Electric-NotSkin.png deleted file mode 100644 index 537aa13d56..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Loveship-NotSkin.png deleted file mode 100644 index 736e91fa69..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-LoveshipDark-NotSkin.png deleted file mode 100644 index bb712f4974..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Promo-NotSkin.png deleted file mode 100644 index 736e91fa69..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Cell-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Electric-NotSkin.png deleted file mode 100644 index a6e5955eb4..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Loveship-NotSkin.png deleted file mode 100644 index 4f085a24fa..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-LoveshipDark-NotSkin.png deleted file mode 100644 index e1ded40cd6..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Promo-NotSkin.png deleted file mode 100644 index 4f085a24fa..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-CellStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..a6e6229b4b Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..a9ea208fa9 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..766581df07 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..69edf49df1 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-ColorVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Electric-NotSkin.png deleted file mode 100644 index 3d6a15f9ee..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Loveship-NotSkin.png deleted file mode 100644 index 1defd5137f..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-LoveshipDark-NotSkin.png deleted file mode 100644 index cb9a2b2218..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Promo-NotSkin.png deleted file mode 100644 index f33f58c74b..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Form-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Electric-NotSkin.png deleted file mode 100644 index 8f8a2d3af6..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Loveship-NotSkin.png deleted file mode 100644 index a4deeadf09..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 30978cea8f..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Promo-NotSkin.png deleted file mode 100644 index 98735e2a46..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-FormStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Electric-NotSkin.png deleted file mode 100644 index 495acb3286..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Loveship-NotSkin.png deleted file mode 100644 index 0928830ddf..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-LoveshipDark-NotSkin.png deleted file mode 100644 index 1d14b11862..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Promo-NotSkin.png deleted file mode 100644 index 0928830ddf..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-Inline-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Electric-NotSkin.png deleted file mode 100644 index 639a4880ae..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Loveship-NotSkin.png deleted file mode 100644 index 177ca302e3..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 9e914da869..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Promo-NotSkin.png deleted file mode 100644 index 177ca302e3..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-InlineStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..04947aba69 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..be1abb7396 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..eda2b318a8 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..c069c57797 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/DatePicker-SizeVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..5b2b0db11c Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..3e1886e1ea Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..d0aa96a3bf Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..5fe0718b54 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-ColorVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Electric-NotSkin.png deleted file mode 100644 index dca99e45e9..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Loveship-NotSkin.png deleted file mode 100644 index 210b5faa77..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-LoveshipDark-NotSkin.png deleted file mode 100644 index f990800bda..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Promo-NotSkin.png deleted file mode 100644 index 3cef6eca99..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Form-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..39fd1203e8 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..05fa0eb115 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..f6791f1d80 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..53f526f73a Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormSizeVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Electric-NotSkin.png deleted file mode 100644 index 15a25da8e2..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Loveship-NotSkin.png deleted file mode 100644 index d6343b2fc8..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-LoveshipDark-NotSkin.png deleted file mode 100644 index bba3576ba4..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Promo-NotSkin.png deleted file mode 100644 index 93bce6b774..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-FormStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Electric-NotSkin.png deleted file mode 100644 index d0af1f8d13..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Loveship-NotSkin.png deleted file mode 100644 index b028f30c9b..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-LoveshipDark-NotSkin.png deleted file mode 100644 index b67386811c..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Promo-NotSkin.png deleted file mode 100644 index b028f30c9b..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-Inline-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..396cbde147 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..06b1768a38 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..7600b637c3 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..06b1768a38 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineSizeVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Electric-NotSkin.png deleted file mode 100644 index cf8d5a2739..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Loveship-NotSkin.png deleted file mode 100644 index 90f403c9a3..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 555f7ab53d..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Promo-NotSkin.png deleted file mode 100644 index 90f403c9a3..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/chromium/TextInput-InlineStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Electric-NotSkin.png deleted file mode 100644 index dece6f33f0..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Loveship-NotSkin.png deleted file mode 100644 index e18bde25e6..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-LoveshipDark-NotSkin.png deleted file mode 100644 index 456bfd72ce..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Promo-NotSkin.png deleted file mode 100644 index e18bde25e6..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Cell-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Electric-NotSkin.png deleted file mode 100644 index 5f8b172a9c..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Loveship-NotSkin.png deleted file mode 100644 index 28a574316c..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-LoveshipDark-NotSkin.png deleted file mode 100644 index df44aef27b..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Promo-NotSkin.png deleted file mode 100644 index 28a574316c..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-CellStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..1c53efb614 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..47920b80d9 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..fa2e37c58b Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..35c91bc5e1 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-ColorVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Electric-NotSkin.png deleted file mode 100644 index 6172362592..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Loveship-NotSkin.png deleted file mode 100644 index 2bfde37b7f..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-LoveshipDark-NotSkin.png deleted file mode 100644 index 09dc46225c..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Promo-NotSkin.png deleted file mode 100644 index 88091fedd2..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Form-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Electric-NotSkin.png deleted file mode 100644 index 587985f06e..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Loveship-NotSkin.png deleted file mode 100644 index acce788877..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 6cfdf41e41..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Promo-NotSkin.png deleted file mode 100644 index dd601ccc7d..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-FormStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Electric-NotSkin.png deleted file mode 100644 index 472b19549a..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Loveship-NotSkin.png deleted file mode 100644 index 09555ca4e2..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-LoveshipDark-NotSkin.png deleted file mode 100644 index 039f09b5a3..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Promo-NotSkin.png deleted file mode 100644 index 09555ca4e2..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-Inline-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Electric-NotSkin.png deleted file mode 100644 index 8eff000040..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Loveship-NotSkin.png deleted file mode 100644 index 84b82248fb..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-LoveshipDark-NotSkin.png deleted file mode 100644 index bee58cd533..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Promo-NotSkin.png deleted file mode 100644 index 84b82248fb..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-InlineStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..b6a390df18 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..dc3f99220a Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..53a7d2cbb2 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..46d1000eb5 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/DatePicker-SizeVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Electric-NotSkin.png new file mode 100644 index 0000000000..1df8e9a920 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Electric-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Loveship-NotSkin.png new file mode 100644 index 0000000000..84b95c8e49 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Loveship-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-LoveshipDark-NotSkin.png new file mode 100644 index 0000000000..de7d3412a4 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-LoveshipDark-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Promo-NotSkin.png new file mode 100644 index 0000000000..65da26b6d2 Binary files /dev/null and b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-ColorVariants-Promo-NotSkin.png differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Electric-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Electric-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Electric-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Loveship-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Loveship-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Loveship-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-LoveshipDark-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-LoveshipDark-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-LoveshipDark-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Promo-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Form-Promo-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormSizeVariants-Promo-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Electric-NotSkin.png deleted file mode 100644 index bdceaa0c8e..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Loveship-NotSkin.png deleted file mode 100644 index 5e36690ca4..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 22d5acf684..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Promo-NotSkin.png deleted file mode 100644 index 8f014edcb0..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-FormStates-Promo-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Electric-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Electric-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Electric-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Loveship-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Loveship-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Loveship-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-LoveshipDark-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-LoveshipDark-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-LoveshipDark-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Promo-NotSkin.png similarity index 100% rename from uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-Inline-Promo-NotSkin.png rename to uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineSizeVariants-Promo-NotSkin.png diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Electric-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Electric-NotSkin.png deleted file mode 100644 index 43192b2fc9..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Electric-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Loveship-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Loveship-NotSkin.png deleted file mode 100644 index 8942a6d399..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Loveship-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-LoveshipDark-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-LoveshipDark-NotSkin.png deleted file mode 100644 index 5086f0f62d..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-LoveshipDark-NotSkin.png and /dev/null differ diff --git a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Promo-NotSkin.png b/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Promo-NotSkin.png deleted file mode 100644 index 8942a6d399..0000000000 Binary files a/uui-e2e-tests/tests/__screenshots__/linux/webkit/TextInput-InlineStates-Promo-NotSkin.png and /dev/null differ