@instructure/ui-date-input 10.26.1-snapshot-2 → 10.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -18
- package/es/DateInput/index.js +7 -9
- package/es/DateInput/props.js +44 -1
- package/es/DateInput2/index.js +3 -3
- package/es/DateInput2/props.js +51 -1
- package/lib/DateInput/index.js +6 -8
- package/lib/DateInput/props.js +46 -1
- package/lib/DateInput2/index.js +3 -3
- package/lib/DateInput2/props.js +53 -1
- package/package.json +22 -19
- package/src/DateInput/index.tsx +5 -5
- package/src/DateInput/props.ts +69 -6
- package/src/DateInput2/index.tsx +10 -3
- package/src/DateInput2/props.ts +46 -5
- package/tsconfig.build.json +2 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/DateInput/index.d.ts +45 -0
- package/types/DateInput/index.d.ts.map +1 -1
- package/types/DateInput/props.d.ts +9 -6
- package/types/DateInput/props.d.ts.map +1 -1
- package/types/DateInput2/index.d.ts.map +1 -1
- package/types/DateInput2/props.d.ts +10 -5
- package/types/DateInput2/props.d.ts.map +1 -1
@@ -14,6 +14,51 @@ declare class DateInput extends Component<DateInputProps, DateInputState> {
|
|
14
14
|
static readonly componentId = "DateInput";
|
15
15
|
static Day: typeof import("@instructure/ui-calendar").CalendarDay;
|
16
16
|
context: React.ContextType<typeof ApplyLocaleContext>;
|
17
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
18
|
+
renderLabel: import("@instructure/shared-types").Renderable;
|
19
|
+
value?: string;
|
20
|
+
size?: "small" | "medium" | "large";
|
21
|
+
placeholder?: string;
|
22
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>, value: {
|
23
|
+
value: string;
|
24
|
+
}) => void;
|
25
|
+
onBlur?: (event: React.SyntheticEvent) => void;
|
26
|
+
interaction?: "enabled" | "disabled" | "readonly";
|
27
|
+
isRequired?: boolean;
|
28
|
+
isInline?: boolean;
|
29
|
+
assistiveText?: string;
|
30
|
+
layout?: "stacked" | "inline";
|
31
|
+
width?: string;
|
32
|
+
display?: "inline-block" | "block";
|
33
|
+
inputRef?: (element: HTMLInputElement | null) => void;
|
34
|
+
messages?: FormMessage[];
|
35
|
+
placement?: import("@instructure/ui-position").PlacementPropValues;
|
36
|
+
isShowingCalendar?: boolean;
|
37
|
+
onRequestValidateDate?: (event: import("react").SyntheticEvent, dateString?: string, validation?: FormMessage[]) => void | FormMessage[];
|
38
|
+
onRequestShowCalendar?: (event: import("react").SyntheticEvent) => void;
|
39
|
+
onRequestHideCalendar?: (event: import("react").SyntheticEvent) => void;
|
40
|
+
onRequestSelectNextDay?: (event: import("react").SyntheticEvent) => void;
|
41
|
+
onRequestSelectPrevDay?: (event: import("react").SyntheticEvent) => void;
|
42
|
+
onRequestRenderNextMonth?: (e: React.MouseEvent) => void;
|
43
|
+
onRequestRenderPrevMonth?: (e: React.MouseEvent) => void;
|
44
|
+
renderNavigationLabel?: React.ReactNode | (() => React.ReactNode);
|
45
|
+
renderWeekdayLabels?: (React.ReactNode | (() => React.ReactNode))[];
|
46
|
+
renderNextMonthButton?: import("@instructure/shared-types").Renderable;
|
47
|
+
renderPrevMonthButton?: import("@instructure/shared-types").Renderable;
|
48
|
+
children?: ReactElement<CalendarDayProps>[];
|
49
|
+
disabledDates?: string[] | ((isoDateToCheck: string) => boolean);
|
50
|
+
currentDate?: string;
|
51
|
+
invalidDateErrorMessage?: string | ((rawDateValue: string) => FormMessage);
|
52
|
+
disabledDateErrorMessage?: string | ((rawDateValue: string) => FormMessage);
|
53
|
+
locale?: string;
|
54
|
+
timezone?: string;
|
55
|
+
withYearPicker?: {
|
56
|
+
screenReaderLabel: string;
|
57
|
+
onRequestYearChange?: (e: any, requestedYear: number) => void;
|
58
|
+
startYear: number;
|
59
|
+
endYear: number;
|
60
|
+
};
|
61
|
+
}>;
|
17
62
|
static allowedProps: readonly (keyof {
|
18
63
|
renderLabel: import("@instructure/shared-types").Renderable;
|
19
64
|
value?: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/DateInput/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAGzD,OAAO,KAAK,EAAiB,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAI/E,OAAO,KAAK,EACV,eAAe,EACf,gBAAgB,EACjB,MAAM,4BAA4B,CAAA;AAEnC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/DateInput/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAGzD,OAAO,KAAK,EAAiB,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAI/E,OAAO,KAAK,EACV,eAAe,EACf,gBAAgB,EACjB,MAAM,4BAA4B,CAAA;AAEnC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAUhE,OAAO,EAAY,kBAAkB,EAAU,MAAM,sBAAsB,CAAA;AAO3E,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAE7D;;;;GAIG;AACH,cAEM,SAAU,SAAQ,SAAS,CAAC,cAAc,EAAE,cAAc,CAAC;IAC/D,MAAM,CAAC,QAAQ,CAAC,WAAW,eAAc;IACzC,MAAM,CAAC,GAAG,wDAAe;IACjB,OAAO,EAAE,KAAK,CAAC,WAAW,CAAC,OAAO,kBAAkB,CAAC,CAAA;IAC7D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;kFAsFG,CAAC,oBACR,CAAC;;;;;;;;;;;;;;;;;;;;+BA6LmB,CAAC;;;;OApRL;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;kFAqFA,CAAC,oBACR,CAAC;;;;;;;;;;;;;;;;;;;;+BA6LmB,CAAC;;;;SAnRC;IAClC,MAAM,CAAC,YAAY;;;;;;;;;;MAUlB;IAED,KAAK;;;;;MAKJ;IACD,MAAM,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAAY;IAC5C,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,MAAM,IAAI,MAAM;IAShB,QAAQ;IASR,iBAAiB;IAIjB,kBAAkB;IAIlB,IAAI,cAAc,uBASjB;IAED,IAAI,WAAW,0DAEd;IAED,YAAY,GAAI,MAAM,MAAM,YAI3B;IAED,cAAc,EAAE,cAAc,CAAC,UAAU,CAAC,CAQzC;IAED,iBAAiB,EAAE,cAAc,CAAC,UAAU,CAAC,CAG5C;IAED,kBAAkB,GAAI,OAAO,KAAK,CAAC,cAAc,UAMhD;IAED,YAAY,GAAI,MAAM,MAAM,mBAoD3B;IAED,kBAAkB,GAAI,OAAO,KAAK,CAAC,cAAc,EAAE,eAAe,MAAM,UAqBvE;IAED,qBAAqB,EAAE,eAAe,CAAC,0BAA0B,CAAC,CAiDjE;IAED,2BAA2B,CAAC,IAAI,SAAS;IAOzC,UAAU,CAAC,cAAc,EAAE,gBAAgB,CAAC,gBAAgB,CAAC;IAoB7D,cAAc,CAAC,EACb,YAAY,EACZ,cAAc,EACf,EAAE;QACD,YAAY,EAAE,gBAAgB,CAAC,cAAc,CAAC,CAAA;QAC9C,cAAc,EAAE,gBAAgB,CAAC,gBAAgB,CAAC,CAAA;KACnD;IAuDD,WAAW,CAAC,EACV,aAAa,EACb,eAAe,EAChB,EAAE;QACD,aAAa,EAAE,gBAAgB,CAAC,eAAe,CAAC,CAAA;QAChD,eAAe,EAAE,gBAAgB,CAAC,eAAe,CAAC,CAAA;KACnD;IA6DD,kBAAkB,4BAGgB;IAElC,MAAM;CA2CP;AAED,eAAe,SAAS,CAAA;AACxB,OAAO,EAAE,SAAS,EAAE,CAAA"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type { CalendarDayProps } from '@instructure/ui-calendar';
|
2
2
|
import type { FormMessage } from '@instructure/ui-form-field';
|
3
3
|
import type { PlacementPropValues } from '@instructure/ui-position';
|
4
|
-
import type { Renderable, OtherHTMLAttributes } from '@instructure/shared-types';
|
4
|
+
import type { Renderable, OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
|
5
5
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
6
6
|
import { InputHTMLAttributes, ReactElement, SyntheticEvent } from 'react';
|
7
7
|
type DateInputOwnProps = {
|
@@ -74,10 +74,12 @@ type DateInputOwnProps = {
|
|
74
74
|
*/
|
75
75
|
inputRef?: (element: HTMLInputElement | null) => void;
|
76
76
|
/**
|
77
|
-
* Displays
|
78
|
-
*
|
79
|
-
*
|
80
|
-
*
|
77
|
+
* Displays messages and validation for the input. It should be an object
|
78
|
+
* with the following shape:
|
79
|
+
* `{
|
80
|
+
* text: PropTypes.node,
|
81
|
+
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
82
|
+
* }`
|
81
83
|
*/
|
82
84
|
messages?: FormMessage[];
|
83
85
|
/**
|
@@ -222,6 +224,7 @@ type PropKeys = keyof DateInputOwnProps;
|
|
222
224
|
type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
223
225
|
type DateInputProps = DateInputOwnProps & WithStyleProps<null, DateInputStyle> & OtherHTMLAttributes<DateInputOwnProps, InputHTMLAttributes<DateInputOwnProps & Element>>;
|
224
226
|
type DateInputStyle = ComponentStyle<'dateInput' | 'assistiveText'>;
|
227
|
+
declare const propTypes: PropValidators<PropKeys>;
|
225
228
|
declare const allowedProps: AllowedPropKeys;
|
226
229
|
type DateInputState = {
|
227
230
|
hasInputRef: boolean;
|
@@ -230,5 +233,5 @@ type DateInputState = {
|
|
230
233
|
messages: FormMessage[];
|
231
234
|
};
|
232
235
|
export type { DateInputProps, DateInputStyle, DateInputState };
|
233
|
-
export { allowedProps };
|
236
|
+
export { propTypes, allowedProps };
|
234
237
|
//# sourceMappingURL=props.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/DateInput/props.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/DateInput/props.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/DateInput2/index.tsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/DateInput2/index.tsx"],"names":[],"mappings":"AA+BA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAS3C,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAA;AAMtD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAiF7D;;;;GAIG;AAEH,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAD,CAAC;;;;;;;;;;;;;;;6CAgNf,CAAA;AAID,eAAe,UAAU,CAAA;AACzB,OAAO,EAAE,UAAU,EAAE,CAAA"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type { SyntheticEvent, InputHTMLAttributes } from 'react';
|
2
2
|
import type { FormMessage } from '@instructure/ui-form-field';
|
3
|
-
import type { OtherHTMLAttributes, Renderable } from '@instructure/shared-types';
|
3
|
+
import type { OtherHTMLAttributes, Renderable, PropValidators } from '@instructure/shared-types';
|
4
4
|
import type { Spacing } from '@instructure/emotion';
|
5
5
|
type DateInput2OwnProps = {
|
6
6
|
/**
|
@@ -49,10 +49,12 @@ type DateInput2OwnProps = {
|
|
49
49
|
*/
|
50
50
|
width?: string;
|
51
51
|
/**
|
52
|
-
* Displays
|
53
|
-
*
|
54
|
-
*
|
55
|
-
*
|
52
|
+
* Displays messages and validation for the input. It should be an object
|
53
|
+
* with the following shape:
|
54
|
+
* `{
|
55
|
+
* text: PropTypes.node,
|
56
|
+
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
57
|
+
* }`
|
56
58
|
*/
|
57
59
|
messages?: FormMessage[];
|
58
60
|
/**
|
@@ -128,6 +130,9 @@ type DateInput2OwnProps = {
|
|
128
130
|
*/
|
129
131
|
inputRef?: (inputElement: HTMLInputElement | null) => void;
|
130
132
|
};
|
133
|
+
type PropKeys = keyof DateInput2OwnProps;
|
131
134
|
type DateInput2Props = DateInput2OwnProps & OtherHTMLAttributes<DateInput2OwnProps, InputHTMLAttributes<DateInput2OwnProps & Element>>;
|
135
|
+
declare const propTypes: PropValidators<PropKeys>;
|
132
136
|
export type { DateInput2Props };
|
137
|
+
export { propTypes };
|
133
138
|
//# sourceMappingURL=props.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/DateInput2/props.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/DateInput2/props.ts"],"names":[],"mappings":"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"}
|