-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(datetime): datetime locale with h23 will respect max time range (#…
- Loading branch information
1 parent
f295134
commit 5925e76
Showing
3 changed files
with
96 additions
and
78 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,89 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Datetime - Min/Max</title> | ||
<meta name="viewport" | ||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
<link href="../../../../../css/ionic.bundle.css" rel="stylesheet"> | ||
<link href="../../../../../scripts/testing/styles.css" rel="stylesheet"> | ||
<script src="../../../../../scripts/testing/scripts.js"></script> | ||
<script type="module" src="../../../../../dist/ionic/ionic.esm.js"></script> | ||
<style> | ||
.grid { | ||
display: grid; | ||
grid-template-columns: repeat(2, minmax(250px, 1fr)); | ||
grid-gap: 20px; | ||
} | ||
h2 { | ||
font-size: 12px; | ||
font-weight: normal; | ||
|
||
color: #6f7378; | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Datetime - Min/Max</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
<link href="../../../../../css/ionic.bundle.css" rel="stylesheet"> | ||
<link href="../../../../../scripts/testing/styles.css" rel="stylesheet"> | ||
<script src="../../../../../scripts/testing/scripts.js"></script> | ||
<script type="module" src="../../../../../dist/ionic/ionic.esm.js"></script> | ||
<style> | ||
.grid { | ||
display: grid; | ||
grid-template-columns: repeat(2, minmax(250px, 1fr)); | ||
grid-gap: 20px; | ||
} | ||
|
||
margin-top: 10px; | ||
margin-left: 5px; | ||
} | ||
h2 { | ||
font-size: 12px; | ||
font-weight: normal; | ||
|
||
ion-datetime { | ||
box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25), 0px 8px 16px rgba(0, 0, 0, 0.25); | ||
border-radius: 8px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<ion-app> | ||
<ion-header translucent="true"> | ||
<ion-toolbar> | ||
<ion-title>Datetime - Min/Max</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
<ion-content class="ion-padding"> | ||
<div class="grid"> | ||
<div class="grid-item"> | ||
<h2>Value inside Bounds</h2> | ||
<ion-datetime | ||
id="inside" | ||
min="2021-09" | ||
max="2021-10" | ||
></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>Value Outside Bounds</h2> | ||
<ion-datetime | ||
id="outside" | ||
min="2021-06-05" | ||
max="2021-06-19" | ||
value="2021-06-20" | ||
></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>AM/PM Min/Max</h2> | ||
<ion-datetime | ||
presentation="time" | ||
min="09:30" | ||
max="14:50" | ||
value="10:30" | ||
></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>h23 Min</h2> | ||
<ion-datetime | ||
presentation="time" | ||
hour-cycle="h23" | ||
min="19:30" | ||
value="20:30" | ||
></ion-datetime> | ||
</div> | ||
color: #6f7378; | ||
|
||
margin-top: 10px; | ||
margin-left: 5px; | ||
} | ||
|
||
ion-datetime { | ||
box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25), 0px 8px 16px rgba(0, 0, 0, 0.25); | ||
border-radius: 8px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<ion-app> | ||
<ion-header translucent="true"> | ||
<ion-toolbar> | ||
<ion-title>Datetime - Min/Max</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
<ion-content class="ion-padding"> | ||
<div class="grid"> | ||
<div class="grid-item"> | ||
<h2>Value inside Bounds</h2> | ||
<ion-datetime id="inside" min="2021-09" max="2021-10"></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>Value Outside Bounds</h2> | ||
<ion-datetime id="outside" min="2021-06-05" max="2021-06-19" value="2021-06-20"></ion-datetime> | ||
</div> | ||
</ion-content> | ||
<div class="grid-item"> | ||
<h2>AM/PM Min/Max</h2> | ||
<ion-datetime presentation="time" min="09:30" max="14:50" value="10:30"></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>h23 Min</h2> | ||
<ion-datetime presentation="time" hour-cycle="h23" min="19:30" value="20:30"></ion-datetime> | ||
</div> | ||
<div class="grid-item"> | ||
<h2>locale: en-GB</h2> | ||
<ion-datetime locale="en-GB" presentation="time" min="19:30" value="20:30" max="20:40"></ion-datetime> | ||
</div> | ||
</div> | ||
</ion-content> | ||
|
||
<script> | ||
<script> | ||
const datetime = document.querySelector('ion-datetime'); | ||
datetime.addEventListener('ionChange', (ev) => { | ||
console.log('Change', ev.detail.value); | ||
}) | ||
</script> | ||
</ion-app> | ||
</body> | ||
</script> | ||
</ion-app> | ||
</body> | ||
|
||
</html> |
This file contains 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