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

Km.24 hour input exploration #1274

Draft
wants to merge 25 commits into
base: main
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
99 changes: 88 additions & 11 deletions packages/web-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion packages/web-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"@floating-ui/dom": "~1.0.6",
"@stencil/core": "~3.4.1",
"date-fns": "~2.21.3",
"date-fns-tz": "~1.3.7"
"date-fns-tz": "~1.3.7",
"imask": "~7.3.0"
},
"license": "MIT",
"devDependencies": {
Expand Down
153 changes: 153 additions & 0 deletions packages/web-components/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20040,6 +20040,72 @@ export namespace Components {
*/
"value": string;
}
interface RuxTimeInput {
/**
* Disables the button via HTML disabled attribute. Button takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored.
*/
"disabled": boolean;
/**
* The validation error text
*/
"errorText"?: string;
/**
* Returns the native input element used in the shadow dom.
*/
"getInput": () => Promise<HTMLInputElement>;
/**
* The help or explanation text
*/
"helpText"?: string;
/**
* Includes seconds as part of the time field
*/
"includeSeconds": boolean;
/**
* Presentational only. Renders the Input Field as invalid.
*/
"invalid": boolean;
/**
* The input label text. For HTML content, use the `label` slot instead.
*/
"label"?: string;
/**
* The input name
*/
"name": string;
/**
* The input placeholder text
*/
"placeholder"?: string;
/**
* The inputs readonly attribute
*/
"readonly": boolean;
/**
* Sets the input as required
*/
"required": boolean;
/**
* Sets element as focused
*/
"setFocus": (options?: FocusOptions) => Promise<void>;
/**
* Control the padding around the input field
*/
"size": 'small' | 'medium' | 'large';
/**
* The input step attribute
*/
"step"?: string;
/**
* Sets time type to 12hr/24hr
*/
"timeformat": '12h' | '24h';
/**
* The input value
*/
"value": string;
}
interface RuxTimeRegion {
/**
* The end date. Must be an ISO string "2021-02-02T05:00:00Z"
Expand Down Expand Up @@ -20274,6 +20340,10 @@ export interface RuxTextareaCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLRuxTextareaElement;
}
export interface RuxTimeInputCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLRuxTimeInputElement;
}
export interface RuxTimeRegionCustomEvent<T> extends CustomEvent<T> {
detail: T;
target: HTMLRuxTimeRegionElement;
Expand Down Expand Up @@ -34365,6 +34435,12 @@ declare global {
prototype: HTMLRuxTextareaElement;
new (): HTMLRuxTextareaElement;
};
interface HTMLRuxTimeInputElement extends Components.RuxTimeInput, HTMLStencilElement {
}
var HTMLRuxTimeInputElement: {
prototype: HTMLRuxTimeInputElement;
new (): HTMLRuxTimeInputElement;
};
interface HTMLRuxTimeRegionElement extends Components.RuxTimeRegion, HTMLStencilElement {
}
var HTMLRuxTimeRegionElement: {
Expand Down Expand Up @@ -35523,6 +35599,7 @@ declare global {
"rux-tabs": HTMLRuxTabsElement;
"rux-tag": HTMLRuxTagElement;
"rux-textarea": HTMLRuxTextareaElement;
"rux-time-input": HTMLRuxTimeInputElement;
"rux-time-region": HTMLRuxTimeRegionElement;
"rux-timeline": HTMLRuxTimelineElement;
"rux-toast": HTMLRuxToastElement;
Expand Down Expand Up @@ -55662,6 +55739,80 @@ declare namespace LocalJSX {
*/
"value"?: string;
}
interface RuxTimeInput {
/**
* Disables the button via HTML disabled attribute. Button takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored.
*/
"disabled"?: boolean;
/**
* The validation error text
*/
"errorText"?: string;
/**
* The help or explanation text
*/
"helpText"?: string;
/**
* Includes seconds as part of the time field
*/
"includeSeconds"?: boolean;
/**
* Presentational only. Renders the Input Field as invalid.
*/
"invalid"?: boolean;
/**
* The input label text. For HTML content, use the `label` slot instead.
*/
"label"?: string;
/**
* The input name
*/
"name"?: string;
/**
* Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event)
*/
"onRuxblur"?: (event: RuxTimeInputCustomEvent<any>) => void;
/**
* Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event)
*/
"onRuxchange"?: (event: RuxTimeInputCustomEvent<any>) => void;
/**
* Fired when an element has gained focus - [HTMLElement/focus_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/focus_event)
*/
"onRuxfocus"?: (event: RuxTimeInputCustomEvent<any>) => void;
/**
* Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event)
*/
"onRuxinput"?: (event: RuxTimeInputCustomEvent<any>) => void;
/**
* The input placeholder text
*/
"placeholder"?: string;
/**
* The inputs readonly attribute
*/
"readonly"?: boolean;
/**
* Sets the input as required
*/
"required"?: boolean;
/**
* Control the padding around the input field
*/
"size"?: 'small' | 'medium' | 'large';
/**
* The input step attribute
*/
"step"?: string;
/**
* Sets time type to 12hr/24hr
*/
"timeformat"?: '12h' | '24h';
/**
* The input value
*/
"value"?: string;
}
interface RuxTimeRegion {
/**
* The end date. Must be an ISO string "2021-02-02T05:00:00Z"
Expand Down Expand Up @@ -56932,6 +57083,7 @@ declare namespace LocalJSX {
"rux-tabs": RuxTabs;
"rux-tag": RuxTag;
"rux-textarea": RuxTextarea;
"rux-time-input": RuxTimeInput;
"rux-time-region": RuxTimeRegion;
"rux-timeline": RuxTimeline;
"rux-toast": RuxToast;
Expand Down Expand Up @@ -65475,6 +65627,7 @@ declare module "@stencil/core" {
"rux-tabs": LocalJSX.RuxTabs & JSXBase.HTMLAttributes<HTMLRuxTabsElement>;
"rux-tag": LocalJSX.RuxTag & JSXBase.HTMLAttributes<HTMLRuxTagElement>;
"rux-textarea": LocalJSX.RuxTextarea & JSXBase.HTMLAttributes<HTMLRuxTextareaElement>;
"rux-time-input": LocalJSX.RuxTimeInput & JSXBase.HTMLAttributes<HTMLRuxTimeInputElement>;
"rux-time-region": LocalJSX.RuxTimeRegion & JSXBase.HTMLAttributes<HTMLRuxTimeRegionElement>;
"rux-timeline": LocalJSX.RuxTimeline & JSXBase.HTMLAttributes<HTMLRuxTimelineElement>;
"rux-toast": LocalJSX.RuxToast & JSXBase.HTMLAttributes<HTMLRuxToastElement>;
Expand Down
Loading