-
Notifications
You must be signed in to change notification settings - Fork 13.5k
fix(datetime): time picker display matches dynamically set value #25010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
9ac60f4
fix(datetime): time picker display matches dynamically set value
sean-perkins 376be2e
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins 86f8cf8
test(datetime): migrate test to playwright
sean-perkins 276edb4
chore(): lint
sean-perkins 49cda5f
chore(): remove unneeded test
sean-perkins 70df503
test(datetime): playwright utils
sean-perkins 164bccc
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins c616b84
chore(): lint
sean-perkins 48ffd73
chore(): add updated snapshots
Ionitron 0809c29
test(datetime): initial values for screenshot tests
sean-perkins 0d40faf
Merge remote-tracking branch 'origin/FW-1003-part-2' into FW-1003-part-2
sean-perkins ea56022
test(): use text content
sean-perkins 4d16418
chore(): add updated snapshots
Ionitron b58bc8c
chore: trigger rebuild
sean-perkins 7194888
Merge remote-tracking branch 'origin/FW-1003-part-2' into FW-1003-part-2
sean-perkins 44ba5ff
chore(): add delay for intersection observer behavior
sean-perkins e4c16ef
test(): waitForSelector datetime ready
sean-perkins 56eab26
chore(): adjust wait for selectors
sean-perkins 220beb9
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins 5e6cd2e
fix(): post merge clean-up
sean-perkins ad0ced0
fix(): datetime behavior + playwright test
sean-perkins 44aa2a2
chore(): delete reference screenshots
sean-perkins 65b8639
chore(): add updated snapshots
Ionitron aeef96f
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins 72b3f6c
fix(): set-value test file
sean-perkins 48e667e
fix(): update to using event spy
sean-perkins fe7f83d
test(datetime): update test to run per presentation type
sean-perkins b837c6a
chore(): delete reference screenshots
sean-perkins d918f77
chore(): add updated snapshots
Ionitron 5dfd068
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins 9c1683c
test(ripple-effect): update type from IonicPage to E2EPage
sean-perkins 716100d
chore(): lint
sean-perkins e88b7bc
Merge remote-tracking branch 'origin/main' into FW-1003-part-2
sean-perkins 2a3085f
chore(): remove unused wait for custom event util
sean-perkins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 112 additions & 0 deletions
112
core/src/components/datetime/test/presentation/datetime.e2e.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
import type { Locator } from '@playwright/test'; | ||
import { expect } from '@playwright/test'; | ||
import type { E2EPage } from '@utils/test/playwright'; | ||
import { test } from '@utils/test/playwright'; | ||
|
||
test.describe('datetime: presentation', () => { | ||
test('should not have visual regressions', async ({ page }) => { | ||
await page.goto(`/src/components/datetime/test/presentation`); | ||
|
||
await page.setIonViewport(); | ||
|
||
const compares = []; | ||
const presentations = ['date-time', 'time-date', 'time', 'date', 'month-year', 'month', 'year']; | ||
|
||
for (const presentation of presentations) { | ||
await page.locator('select').selectOption(presentation); | ||
await page.waitForChanges(); | ||
compares.push({ | ||
presentation, | ||
screenshot: await page.screenshot({ fullPage: true }), | ||
}); | ||
} | ||
|
||
for (const compare of compares) { | ||
expect(compare.screenshot).toMatchSnapshot( | ||
`datetime-presentation-${compare.presentation}-diff-${page.getSnapshotSettings()}.png` | ||
); | ||
} | ||
}); | ||
}); | ||
|
||
test.describe('datetime: presentation: time', () => { | ||
let timePickerFixture: TimePickerFixture; | ||
|
||
test.beforeEach(async ({ page }) => { | ||
timePickerFixture = new TimePickerFixture(page); | ||
await timePickerFixture.goto(); | ||
}); | ||
|
||
test('changing value from AM to AM should update the text', async () => { | ||
await timePickerFixture.setValue('04:20:00'); | ||
await timePickerFixture.expectTime('4', '20', 'AM'); | ||
|
||
await timePickerFixture.setValue('11:03:00'); | ||
await timePickerFixture.expectTime('11', '03', 'AM'); | ||
}); | ||
|
||
test('changing value from AM to PM should update the text', async () => { | ||
await timePickerFixture.setValue('05:30:00'); | ||
await timePickerFixture.expectTime('5', '30', 'AM'); | ||
|
||
await timePickerFixture.setValue('16:40:00'); | ||
await timePickerFixture.expectTime('4', '40', 'PM'); | ||
}); | ||
|
||
test('changing the value from PM to AM should update the text', async () => { | ||
await timePickerFixture.setValue('16:40:00'); | ||
await timePickerFixture.expectTime('4', '40', 'PM'); | ||
|
||
await timePickerFixture.setValue('04:20:00'); | ||
await timePickerFixture.expectTime('4', '20', 'AM'); | ||
}); | ||
|
||
test('changing the value from PM to PM should update the text', async () => { | ||
await timePickerFixture.setValue('16:40:00'); | ||
await timePickerFixture.expectTime('4', '40', 'PM'); | ||
|
||
await timePickerFixture.setValue('19:32:00'); | ||
await timePickerFixture.expectTime('7', '32', 'PM'); | ||
}); | ||
}); | ||
|
||
class TimePickerFixture { | ||
readonly page: E2EPage; | ||
|
||
private timePicker!: Locator; | ||
|
||
constructor(page: E2EPage) { | ||
this.page = page; | ||
} | ||
|
||
async goto() { | ||
await this.page.goto(`/src/components/datetime/test/presentation`); | ||
await this.page.locator('select').selectOption('time'); | ||
await this.page.waitForSelector('.datetime-presentation-time'); | ||
this.timePicker = this.page.locator('ion-datetime'); | ||
} | ||
|
||
async setValue(value: string) { | ||
const ionChange = await this.page.spyOnEvent('ionChange'); | ||
await this.timePicker.evaluate((el: HTMLIonDatetimeElement, newValue: string) => { | ||
el.value = newValue; | ||
}, value); | ||
|
||
await ionChange.next(); | ||
|
||
// Changing the value can take longer than the default 100ms to repaint | ||
await this.page.waitForChanges(300); | ||
} | ||
|
||
async expectTime(hour: string, minute: string, ampm: string) { | ||
expect( | ||
await this.timePicker.locator('ion-picker-column-internal:nth-child(1) .picker-item-active').textContent() | ||
).toBe(hour); | ||
expect( | ||
await this.timePicker.locator('ion-picker-column-internal:nth-child(2) .picker-item-active').textContent() | ||
).toBe(minute); | ||
expect( | ||
await this.timePicker.locator('ion-picker-column-internal:nth-child(3) .picker-item-active').textContent() | ||
).toBe(ampm); | ||
} | ||
} |
Binary file added
BIN
+98.2 KB
...2e.ts-snapshots/datetime-presentation-date-diff-ios-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+85.6 KB
...2e.ts-snapshots/datetime-presentation-date-diff-ios-ltr-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+34.2 KB
...ime.e2e.ts-snapshots/datetime-presentation-date-diff-ios-ltr-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+49.9 KB
...time.e2e.ts-snapshots/datetime-presentation-date-diff-ios-ltr-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+67.4 KB
...etime.e2e.ts-snapshots/datetime-presentation-date-diff-ios-ltr-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+97.4 KB
...2e.ts-snapshots/datetime-presentation-date-diff-ios-rtl-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+85.6 KB
...2e.ts-snapshots/datetime-presentation-date-diff-ios-rtl-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33.9 KB
...ime.e2e.ts-snapshots/datetime-presentation-date-diff-ios-rtl-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+49.7 KB
...time.e2e.ts-snapshots/datetime-presentation-date-diff-ios-rtl-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+67.5 KB
...etime.e2e.ts-snapshots/datetime-presentation-date-diff-ios-rtl-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+84.5 KB
...e2e.ts-snapshots/datetime-presentation-date-diff-md-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+70.6 KB
...e2e.ts-snapshots/datetime-presentation-date-diff-md-ltr-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.2 KB
...time.e2e.ts-snapshots/datetime-presentation-date-diff-md-ltr-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.5 KB
...etime.e2e.ts-snapshots/datetime-presentation-date-diff-md-ltr-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+55.7 KB
...tetime.e2e.ts-snapshots/datetime-presentation-date-diff-md-ltr-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+83.7 KB
...e2e.ts-snapshots/datetime-presentation-date-diff-md-rtl-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+70.6 KB
...e2e.ts-snapshots/datetime-presentation-date-diff-md-rtl-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.1 KB
...time.e2e.ts-snapshots/datetime-presentation-date-diff-md-rtl-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43 KB
...etime.e2e.ts-snapshots/datetime-presentation-date-diff-md-rtl-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+55.7 KB
...tetime.e2e.ts-snapshots/datetime-presentation-date-diff-md-rtl-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+106 KB
...-snapshots/datetime-presentation-date-time-diff-ios-ltr-Mobile-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+92.2 KB
...-snapshots/datetime-presentation-date-time-diff-ios-ltr-Mobile-Safari-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+36.5 KB
...2e.ts-snapshots/datetime-presentation-date-time-diff-ios-ltr-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+52.4 KB
...e2e.ts-snapshots/datetime-presentation-date-time-diff-ios-ltr-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+71.9 KB
....e2e.ts-snapshots/datetime-presentation-date-time-diff-ios-ltr-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+105 KB
...-snapshots/datetime-presentation-date-time-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.3 KB
...-snapshots/datetime-presentation-date-time-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+36.1 KB
...2e.ts-snapshots/datetime-presentation-date-time-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.6 KB
...e2e.ts-snapshots/datetime-presentation-date-time-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+72 KB
....e2e.ts-snapshots/datetime-presentation-date-time-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.9 KB
...s-snapshots/datetime-presentation-date-time-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+76.8 KB
...s-snapshots/datetime-presentation-date-time-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+30.5 KB
...e2e.ts-snapshots/datetime-presentation-date-time-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.4 KB
....e2e.ts-snapshots/datetime-presentation-date-time-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+60.1 KB
...e.e2e.ts-snapshots/datetime-presentation-date-time-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.1 KB
...s-snapshots/datetime-presentation-date-time-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+76.9 KB
...s-snapshots/datetime-presentation-date-time-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+30.5 KB
...e2e.ts-snapshots/datetime-presentation-date-time-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+45.5 KB
....e2e.ts-snapshots/datetime-presentation-date-time-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+60.1 KB
...e.e2e.ts-snapshots/datetime-presentation-date-time-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+56 KB
...e.ts-snapshots/datetime-presentation-month-diff-ios-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+49 KB
...e.ts-snapshots/datetime-presentation-month-diff-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+19.9 KB
...me.e2e.ts-snapshots/datetime-presentation-month-diff-ios-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+37 KB
...ime.e2e.ts-snapshots/datetime-presentation-month-diff-ios-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+40.2 KB
...time.e2e.ts-snapshots/datetime-presentation-month-diff-ios-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+55.9 KB
...e.ts-snapshots/datetime-presentation-month-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+48.9 KB
...e.ts-snapshots/datetime-presentation-month-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+19.8 KB
...me.e2e.ts-snapshots/datetime-presentation-month-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+37.3 KB
...ime.e2e.ts-snapshots/datetime-presentation-month-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+40.2 KB
...time.e2e.ts-snapshots/datetime-presentation-month-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+59.9 KB
...2e.ts-snapshots/datetime-presentation-month-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.9 KB
...2e.ts-snapshots/datetime-presentation-month-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+21 KB
...ime.e2e.ts-snapshots/datetime-presentation-month-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+38.6 KB
...time.e2e.ts-snapshots/datetime-presentation-month-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+42.9 KB
...etime.e2e.ts-snapshots/datetime-presentation-month-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+59.4 KB
...2e.ts-snapshots/datetime-presentation-month-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.9 KB
...2e.ts-snapshots/datetime-presentation-month-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+20.9 KB
...ime.e2e.ts-snapshots/datetime-presentation-month-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+38.5 KB
...time.e2e.ts-snapshots/datetime-presentation-month-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+42.9 KB
...etime.e2e.ts-snapshots/datetime-presentation-month-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+67.3 KB
...snapshots/datetime-presentation-month-year-diff-ios-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+57.9 KB
...snapshots/datetime-presentation-month-year-diff-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+23 KB
...e.ts-snapshots/datetime-presentation-month-year-diff-ios-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+40.9 KB
...2e.ts-snapshots/datetime-presentation-month-year-diff-ios-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.7 KB
...e2e.ts-snapshots/datetime-presentation-month-year-diff-ios-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+67.3 KB
...snapshots/datetime-presentation-month-year-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+57.8 KB
...snapshots/datetime-presentation-month-year-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+23 KB
...e.ts-snapshots/datetime-presentation-month-year-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+41.2 KB
...2e.ts-snapshots/datetime-presentation-month-year-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.7 KB
...e2e.ts-snapshots/datetime-presentation-month-year-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+69.2 KB
...-snapshots/datetime-presentation-month-year-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+62.9 KB
...-snapshots/datetime-presentation-month-year-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+24.3 KB
...2e.ts-snapshots/datetime-presentation-month-year-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+42.8 KB
...e2e.ts-snapshots/datetime-presentation-month-year-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+49.8 KB
....e2e.ts-snapshots/datetime-presentation-month-year-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+68.8 KB
...-snapshots/datetime-presentation-month-year-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+62.8 KB
...-snapshots/datetime-presentation-month-year-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+24.2 KB
...2e.ts-snapshots/datetime-presentation-month-year-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+42.7 KB
...e2e.ts-snapshots/datetime-presentation-month-year-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+49.8 KB
....e2e.ts-snapshots/datetime-presentation-month-year-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+106 KB
...-snapshots/datetime-presentation-time-date-diff-ios-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.2 KB
...-snapshots/datetime-presentation-time-date-diff-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+36.5 KB
...2e.ts-snapshots/datetime-presentation-time-date-diff-ios-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.6 KB
...e2e.ts-snapshots/datetime-presentation-time-date-diff-ios-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+71.8 KB
....e2e.ts-snapshots/datetime-presentation-time-date-diff-ios-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+105 KB
...-snapshots/datetime-presentation-time-date-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.4 KB
...-snapshots/datetime-presentation-time-date-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+36 KB
...2e.ts-snapshots/datetime-presentation-time-date-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.4 KB
...e2e.ts-snapshots/datetime-presentation-time-date-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+71.9 KB
....e2e.ts-snapshots/datetime-presentation-time-date-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+93.1 KB
...s-snapshots/datetime-presentation-time-date-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+76.7 KB
...s-snapshots/datetime-presentation-time-date-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
...e2e.ts-snapshots/datetime-presentation-time-date-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.6 KB
....e2e.ts-snapshots/datetime-presentation-time-date-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+59.9 KB
...e.e2e.ts-snapshots/datetime-presentation-time-date-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+92.4 KB
...s-snapshots/datetime-presentation-time-date-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+76.8 KB
...s-snapshots/datetime-presentation-time-date-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+30.6 KB
...e2e.ts-snapshots/datetime-presentation-time-date-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+45.9 KB
....e2e.ts-snapshots/datetime-presentation-time-date-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+60 KB
...e.e2e.ts-snapshots/datetime-presentation-time-date-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.5 KB
...2e.ts-snapshots/datetime-presentation-time-diff-ios-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+44.8 KB
...2e.ts-snapshots/datetime-presentation-time-diff-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+18.2 KB
...ime.e2e.ts-snapshots/datetime-presentation-time-diff-ios-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+35.4 KB
...time.e2e.ts-snapshots/datetime-presentation-time-diff-ios-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+37 KB
...etime.e2e.ts-snapshots/datetime-presentation-time-diff-ios-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+52.5 KB
...2e.ts-snapshots/datetime-presentation-time-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+44.7 KB
...2e.ts-snapshots/datetime-presentation-time-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+18.1 KB
...ime.e2e.ts-snapshots/datetime-presentation-time-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+35.7 KB
...time.e2e.ts-snapshots/datetime-presentation-time-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+37 KB
...etime.e2e.ts-snapshots/datetime-presentation-time-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+53.6 KB
...e2e.ts-snapshots/datetime-presentation-time-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.9 KB
...e2e.ts-snapshots/datetime-presentation-time-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+18.4 KB
...time.e2e.ts-snapshots/datetime-presentation-time-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+35.5 KB
...etime.e2e.ts-snapshots/datetime-presentation-time-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+38.5 KB
...tetime.e2e.ts-snapshots/datetime-presentation-time-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+53.2 KB
...e2e.ts-snapshots/datetime-presentation-time-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+46.8 KB
...e2e.ts-snapshots/datetime-presentation-time-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+18.3 KB
...time.e2e.ts-snapshots/datetime-presentation-time-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+35.5 KB
...etime.e2e.ts-snapshots/datetime-presentation-time-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+38.5 KB
...tetime.e2e.ts-snapshots/datetime-presentation-time-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+50.4 KB
...2e.ts-snapshots/datetime-presentation-year-diff-ios-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+41.3 KB
...2e.ts-snapshots/datetime-presentation-year-diff-ios-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+16.6 KB
...ime.e2e.ts-snapshots/datetime-presentation-year-diff-ios-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.1 KB
...time.e2e.ts-snapshots/datetime-presentation-year-diff-ios-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.4 KB
...etime.e2e.ts-snapshots/datetime-presentation-year-diff-ios-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+50.4 KB
...2e.ts-snapshots/datetime-presentation-year-diff-ios-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+41.2 KB
...2e.ts-snapshots/datetime-presentation-year-diff-ios-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+16.6 KB
...ime.e2e.ts-snapshots/datetime-presentation-year-diff-ios-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.3 KB
...time.e2e.ts-snapshots/datetime-presentation-year-diff-ios-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.4 KB
...etime.e2e.ts-snapshots/datetime-presentation-year-diff-ios-rtl-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+48.3 KB
...e2e.ts-snapshots/datetime-presentation-year-diff-md-ltr-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+42.1 KB
...e2e.ts-snapshots/datetime-presentation-year-diff-md-ltr-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+16.2 KB
...time.e2e.ts-snapshots/datetime-presentation-year-diff-md-ltr-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.2 KB
...etime.e2e.ts-snapshots/datetime-presentation-year-diff-md-ltr-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.9 KB
...tetime.e2e.ts-snapshots/datetime-presentation-year-diff-md-ltr-webkit-linux.png
Oops, something went wrong.
Binary file added
BIN
+47.9 KB
...e2e.ts-snapshots/datetime-presentation-year-diff-md-rtl-Mobile-Chrome-linux.png
Oops, something went wrong.
Binary file added
BIN
+42 KB
...e2e.ts-snapshots/datetime-presentation-year-diff-md-rtl-Mobile-Safari-linux.png
Oops, something went wrong.
Binary file added
BIN
+16.3 KB
...time.e2e.ts-snapshots/datetime-presentation-year-diff-md-rtl-chromium-linux.png
Oops, something went wrong.
Binary file added
BIN
+34 KB
...etime.e2e.ts-snapshots/datetime-presentation-year-diff-md-rtl-firefox-linux.png
Oops, something went wrong.
Binary file added
BIN
+34.9 KB
...tetime.e2e.ts-snapshots/datetime-presentation-year-diff-md-rtl-webkit-linux.png
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.