@instructure/ui-calendar 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/Calendar/Day/index.js +6 -6
- package/es/Calendar/Day/props.js +16 -1
- package/es/Calendar/index.js +6 -6
- package/es/Calendar/props.js +23 -1
- package/lib/Calendar/Day/index.js +5 -5
- package/lib/Calendar/Day/props.js +17 -1
- package/lib/Calendar/index.js +5 -5
- package/lib/Calendar/props.js +24 -1
- package/package.json +21 -18
- package/src/Calendar/Day/index.tsx +5 -2
- package/src/Calendar/Day/props.ts +20 -1
- package/src/Calendar/index.tsx +7 -4
- package/src/Calendar/props.ts +30 -1
- package/tsconfig.build.json +2 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Calendar/Day/index.d.ts +18 -1
- package/types/Calendar/Day/index.d.ts.map +1 -1
- package/types/Calendar/Day/props.d.ts +3 -2
- package/types/Calendar/Day/props.d.ts.map +1 -1
- package/types/Calendar/index.d.ts +24 -0
- package/types/Calendar/index.d.ts.map +1 -1
- package/types/Calendar/props.d.ts +3 -2
- package/types/Calendar/props.d.ts.map +1 -1
|
@@ -9,6 +9,23 @@ id: Calendar.Day
|
|
|
9
9
|
**/
|
|
10
10
|
declare class Day extends Component<CalendarDayProps> {
|
|
11
11
|
static readonly componentId = "Calendar.Day";
|
|
12
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
13
|
+
children?: import("@instructure/shared-types").Renderable;
|
|
14
|
+
date: string;
|
|
15
|
+
label: string;
|
|
16
|
+
interaction?: "enabled" | "disabled";
|
|
17
|
+
isSelected?: boolean;
|
|
18
|
+
isToday?: boolean;
|
|
19
|
+
isOutsideMonth?: boolean;
|
|
20
|
+
onClick?: (event: MouseEvent<ViewProps & Element>, date: {
|
|
21
|
+
date: string;
|
|
22
|
+
}) => void;
|
|
23
|
+
onKeyDown?: (event: KeyboardEvent<ViewProps & Element>, data: {
|
|
24
|
+
date: string;
|
|
25
|
+
}) => void;
|
|
26
|
+
elementRef?: (element: Element | null) => void;
|
|
27
|
+
as?: import("@instructure/shared-types").AsElementType;
|
|
28
|
+
}>;
|
|
12
29
|
static allowedProps: readonly (keyof {
|
|
13
30
|
children?: import("@instructure/shared-types").Renderable;
|
|
14
31
|
date: string;
|
|
@@ -37,7 +54,7 @@ declare class Day extends Component<CalendarDayProps> {
|
|
|
37
54
|
componentDidUpdate(): void;
|
|
38
55
|
get makeStylesVariables(): CalendarDayStyleProps;
|
|
39
56
|
get isDisabled(): boolean;
|
|
40
|
-
get elementType(): "symbol" | "object" | "
|
|
57
|
+
get elementType(): "symbol" | "object" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "center" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "search" | "slot" | "script" | "section" | "select" | "small" | "source" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "animate" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | "noindex" | "animateMotion" | "animateTransform" | "mpath" | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | import("react").FunctionComponent<Readonly<CalendarDayProps>> | import("react").ComponentClass<Readonly<CalendarDayProps>, any>;
|
|
41
58
|
shouldApplyAriaSelected(): boolean;
|
|
42
59
|
handleClick: (event: MouseEvent<ViewProps & Element>) => void;
|
|
43
60
|
handleKeyDown: (event: KeyboardEvent<ViewProps & Element>) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Calendar/Day/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAG5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Calendar/Day/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAG5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAgBrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAEtE;;;;;IAKI;AACJ,cAEM,GAAI,SAAQ,SAAS,CAAC,gBAAgB,CAAC;IAC3C,MAAM,CAAC,QAAQ,CAAC,WAAW,kBAAiB;IAE5C,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;MAKT;IAEV,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,iBAAiB;IAIjB,kBAAkB;IAIlB,IAAI,mBAAmB,IAAI,qBAAqB,CAE/C;IAED,IAAI,UAAU,YAGb;IAED,IAAI,WAAW,6kEAGd;IAED,uBAAuB;IAKvB,WAAW,GAAI,OAAO,UAAU,CAAC,SAAS,GAAG,OAAO,CAAC,UAKpD;IAED,aAAa,GAAI,OAAO,aAAa,CAAC,SAAS,GAAG,OAAO,CAAC,UAKzD;IAED,gBAAgB,GAAI,IAAI,OAAO,GAAG,IAAI,UAMrC;IAED,MAAM;CA4DP;AAED,eAAe,GAAG,CAAA;AAClB,OAAO,EAAE,GAAG,EAAE,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AsElementType, CalendarDayTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
1
|
+
import type { AsElementType, PropValidators, CalendarDayTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
2
2
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
3
|
import { KeyboardEvent, MouseEvent } from 'react';
|
|
4
4
|
import type { ViewProps } from '@instructure/ui-view';
|
|
@@ -70,7 +70,8 @@ type PropKeys = keyof CalendarDayOwnProps;
|
|
|
70
70
|
type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
71
71
|
type CalendarDayProps = CalendarDayOwnProps & WithStyleProps<CalendarDayTheme, CalendarDayStyle> & OtherHTMLAttributes<CalendarDayOwnProps>;
|
|
72
72
|
type CalendarDayStyle = ComponentStyle<'calendarDay' | 'day'>;
|
|
73
|
+
declare const propTypes: PropValidators<PropKeys>;
|
|
73
74
|
declare const allowedProps: AllowedPropKeys;
|
|
74
75
|
export type { CalendarDayProps, CalendarDayStyleProps, CalendarDayStyle };
|
|
75
|
-
export { allowedProps };
|
|
76
|
+
export { propTypes, allowedProps };
|
|
76
77
|
//# sourceMappingURL=props.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Calendar/Day/props.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Calendar/Day/props.ts"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EACV,aAAa,EACb,cAAc,EACd,gBAAgB,EAChB,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AACjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAEtD,KAAK,mBAAmB,GAAG;IACzB;;OAEG;IACH,QAAQ,CAAC,EAAE,UAAU,CAAA;IACrB;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ;;;;;OAKG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,GAAG,UAAU,CAAA;IACpC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,CACR,KAAK,EAAE,UAAU,CAAC,SAAS,GAAG,OAAO,CAAC,EACtC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,KACnB,IAAI,CAAA;IACT;;;;;OAKG;IACH,SAAS,CAAC,EAAE,CACV,KAAK,EAAE,aAAa,CAAC,SAAS,GAAG,OAAO,CAAC,EACzC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,KACnB,IAAI,CAAA;IACT;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;IAC9C;;OAEG;IACH,EAAE,CAAC,EAAE,aAAa,CAAA;CACnB,CAAA;AAED,KAAK,qBAAqB,GAAG;IAC3B,UAAU,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,KAAK,QAAQ,GAAG,MAAM,mBAAmB,CAAA;AAEzC,KAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,KAAK,gBAAgB,GAAG,mBAAmB,GACzC,cAAc,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,GAClD,mBAAmB,CAAC,mBAAmB,CAAC,CAAA;AAE1C,KAAK,gBAAgB,GAAG,cAAc,CAAC,aAAa,GAAG,KAAK,CAAC,CAAA;AAE7D,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAYvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAYnB,CAAA;AAED,YAAY,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,CAAA;AACzE,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -18,6 +18,30 @@ declare class Calendar extends Component<CalendarProps, CalendarState> {
|
|
|
18
18
|
}>;
|
|
19
19
|
static Day: typeof Day;
|
|
20
20
|
static DAY_COUNT: number;
|
|
21
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
22
|
+
as?: import("@instructure/shared-types").AsElementType;
|
|
23
|
+
children?: ReactElement<import("..").CalendarDayProps>[];
|
|
24
|
+
currentDate?: string;
|
|
25
|
+
disabledDates?: string[] | ((isoDateToCheck: string) => boolean);
|
|
26
|
+
locale?: string;
|
|
27
|
+
onDateSelected?: (dateString: string, momentDate: Moment, e: React.MouseEvent) => void;
|
|
28
|
+
onRequestRenderNextMonth?: (e: React.MouseEvent, requestedMonth: string) => void;
|
|
29
|
+
onRequestRenderPrevMonth?: (e: React.MouseEvent, requestedMonth: string) => void;
|
|
30
|
+
renderNavigationLabel?: Renderable;
|
|
31
|
+
renderNextMonthButton?: Renderable;
|
|
32
|
+
renderPrevMonthButton?: Renderable;
|
|
33
|
+
renderWeekdayLabels?: Renderable[];
|
|
34
|
+
role?: "table" | "listbox";
|
|
35
|
+
selectedDate?: string;
|
|
36
|
+
timezone?: string;
|
|
37
|
+
visibleMonth?: string;
|
|
38
|
+
withYearPicker?: {
|
|
39
|
+
screenReaderLabel: string;
|
|
40
|
+
onRequestYearChange?: (e: any, requestedYear: number) => void;
|
|
41
|
+
startYear: number;
|
|
42
|
+
endYear: number;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
21
45
|
static allowedProps: readonly (keyof {
|
|
22
46
|
as?: import("@instructure/shared-types").AsElementType;
|
|
23
47
|
children?: ReactElement<import("..").CalendarDayProps>[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Calendar/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Calendar/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAiBrE,OAAO,EAAoB,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAC3E,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAKlD,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAG3B,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAUtD;;;;GAIG;AACH,cAGM,QAAS,SAAQ,SAAS,CAAC,aAAa,EAAE,aAAa,CAAC;IAC5D,MAAM,CAAC,QAAQ,CAAC,WAAW,cAAa;IAEhC,OAAO,EAAE,KAAK,CAAC,WAAW,CAAC,OAAO,kBAAkB,CAAC,CAAA;IAC7D,MAAM,CAAC,WAAW;;;OAAqB;IACvC,MAAM,CAAC,GAAG,aAAM;IAChB,MAAM,CAAC,SAAS,SAAK;IAErB,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;+BA+IV,CAAJ;;;;OA/I0B;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;+BA8Ib,CAAJ;;;;SA9IgC;IAClC,MAAM,CAAC,YAAY;;;MAGlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAC1B,OAAO,CAAC,iBAAiB,CAAA;gBAEb,KAAK,EAAE,aAAa;IAchC,SAAS,GAAI,IAAI,OAAO,GAAG,IAAI,UAE9B;IAED,iBAAiB;IAIjB,kBAAkB,CAAC,SAAS,EAAE,aAAa;IAqB3C,cAAc,GAAI,QAAQ,MAAM,EAAE,UAAU,MAAM,EAAE,cAAc,MAAM;;;MAWvE;IAED,IAAI,IAAI,0BAEP;IAED,IAAI,YAAY,YAcf;IAED,IAAI,YAAY,YAcf;IAED,4BAA4B;;;MA2B3B;IAED,iBAAiB,GAAI,WAAW,MAAM,GAAG,MAAM,MAAM,GAAG,KAAK,CAAC,UAAU,UA8BvE;IAED,gBAAgB,GACd,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC,EACvC,MAAM,MAAM,UAgBb;IAED,YAAY;IAsFZ,UAAU;IASV,oBAAoB;IA2BpB,IAAI,eAAe,IA+BZ,UAAU,CAAC,KAAK,CAAC,EAAE,CACzB;IAED,UAAU;IAmCV,MAAM,IAAI,MAAM;IAShB,QAAQ;IAUR,cAAc,GAAI,OAAO,UAAU,CAAC,GAAG,CAAC,EAAE,UAAU;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,UAKnE;IAED,cAAc,CAAC,IAAI,EAAE,MAAM;IAgB3B,iBAAiB;IA+CjB,MAAM;CAoBP;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AsElementType, CalendarTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
1
|
+
import type { AsElementType, PropValidators, CalendarTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
2
2
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
3
|
import { ReactElement } from 'react';
|
|
4
4
|
import type { CalendarDayProps } from './Day/props';
|
|
@@ -125,11 +125,12 @@ type PropKeys = keyof CalendarOwnProps;
|
|
|
125
125
|
type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
126
126
|
type CalendarProps = CalendarOwnProps & WithStyleProps<CalendarTheme, CalendarStyle> & OtherHTMLAttributes<CalendarOwnProps> & WithDeterministicIdProps;
|
|
127
127
|
type CalendarStyle = ComponentStyle<'navigation' | 'navigationWithButtons' | 'weekdayHeader' | 'yearPicker'>;
|
|
128
|
+
declare const propTypes: PropValidators<PropKeys>;
|
|
128
129
|
declare const allowedProps: AllowedPropKeys;
|
|
129
130
|
type CalendarState = {
|
|
130
131
|
visibleMonth: Moment;
|
|
131
132
|
today: Moment;
|
|
132
133
|
};
|
|
133
134
|
export type { CalendarProps, CalendarStyle, CalendarState };
|
|
134
|
-
export { allowedProps };
|
|
135
|
+
export { propTypes, allowedProps };
|
|
135
136
|
//# sourceMappingURL=props.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Calendar/props.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Calendar/props.ts"],"names":[],"mappings":"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"}
|