Skip to content
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

feat(pat-date-picker): Introduce new behavior mode "keyboard". #1172

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/pat/date-picker/date-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import utils from "../../core/utils";
const log = logging.getLogger("date-picker");

export const parser = new Parser("date-picker");
parser.addArgument("behavior", "styled", ["native", "styled"]);
parser.addArgument("behavior", "styled", ["native", "styled", "keyboard"]);
parser.addArgument("week-numbers", [], ["show", "hide"]);
parser.addArgument("i18n"); // URL pointing to JSON resource with i18n values
parser.addArgument("first-day", 0);
Expand Down Expand Up @@ -146,7 +146,10 @@ export default Base.extend({
}
} else if (disabled) {
return;
} else if (utils.checkInputSupport("date", "invalid date")) {
} else if (
this.options.behavior !== "keyboard" &&
utils.checkInputSupport("date", "invalid date")
) {
// behavior native with native support.
return;
} else if (el.getAttribute("type") === "date") {
Expand Down
9 changes: 9 additions & 0 deletions src/pat/date-picker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@
<input class="pat-date-picker" type="date" /> </label
><br />

<label
>Using the JavaScript date picker together with an input field which can be edited with the keyboard directly.
<input
class="pat-date-picker"
type="date"
data-pat-date-picker="behavior: keyboard"
/> </label
><br />

<label
>Default value
<input
Expand Down