@instructure/ui-tray 8.25.1-snapshot.0 → 8.26.0
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 +4 -0
- package/es/Tray/TrayLocator.js +2 -1
- package/es/Tray/index.js +5 -21
- package/es/Tray/props.js +0 -95
- package/lib/Tray/TrayLocator.js +1 -0
- package/lib/Tray/index.js +5 -21
- package/lib/Tray/props.js +0 -95
- package/package.json +18 -19
- package/src/Tray/index.tsx +8 -33
- package/src/Tray/props.ts +80 -87
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Tray/TrayLocator.d.ts +4 -4
- package/types/Tray/index.d.ts +25 -40
- package/types/Tray/index.d.ts.map +1 -1
- package/types/Tray/props.d.ts +87 -12
- package/types/Tray/props.d.ts.map +1 -1
- package/LICENSE.md +0 -27
package/types/Tray/index.d.ts
CHANGED
|
@@ -3,11 +3,12 @@ import { Component } from 'react';
|
|
|
3
3
|
import type { PortalNode } from '@instructure/ui-portal';
|
|
4
4
|
import type { TransitionType } from '@instructure/ui-motion';
|
|
5
5
|
import { jsx } from '@instructure/emotion';
|
|
6
|
-
import type { TrayProps } from './props';
|
|
6
|
+
import type { TrayProps, TrayState } from './props';
|
|
7
7
|
/**
|
|
8
8
|
---
|
|
9
9
|
category: components
|
|
10
10
|
---
|
|
11
|
+
@tsProps
|
|
11
12
|
**/
|
|
12
13
|
declare class Tray extends Component<TrayProps> {
|
|
13
14
|
static readonly componentId = "Tray";
|
|
@@ -16,23 +17,23 @@ declare class Tray extends Component<TrayProps> {
|
|
|
16
17
|
size?: "x-small" | "small" | "regular" | "medium" | "large" | undefined;
|
|
17
18
|
placement?: "top" | "bottom" | "start" | "end" | "center" | undefined;
|
|
18
19
|
open?: boolean | undefined;
|
|
19
|
-
defaultFocusElement?: import("
|
|
20
|
-
contentRef?: ((
|
|
20
|
+
defaultFocusElement?: import("@instructure/shared-types").UIElement | undefined;
|
|
21
|
+
contentRef?: ((el: HTMLSpanElement | null) => void) | undefined;
|
|
21
22
|
shouldContainFocus?: boolean | undefined;
|
|
22
23
|
shouldReturnFocus?: boolean | undefined;
|
|
23
24
|
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
24
25
|
onOpen?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
25
26
|
onClose?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
26
|
-
onDismiss?: ((
|
|
27
|
-
mountNode?:
|
|
27
|
+
onDismiss?: ((event: import("react").UIEvent<Element, UIEvent> | import("react").FocusEvent<Element, Element>, documentClick?: boolean | undefined) => void) | undefined;
|
|
28
|
+
mountNode?: Element | (() => Element | null) | null | undefined;
|
|
28
29
|
insertAt?: "top" | "bottom" | undefined;
|
|
29
30
|
liveRegion?: import("@instructure/shared-types").LiveRegion | undefined;
|
|
30
|
-
onTransition?: ((
|
|
31
|
-
onEnter?: ((
|
|
32
|
-
onEntering?: ((
|
|
31
|
+
onTransition?: ((toState: import("@instructure/ui-motion/types/Transition/BaseTransition/props").BaseTransitionStatesType, fromState: import("@instructure/ui-motion/types/Transition/BaseTransition/props").BaseTransitionStatesType) => void) | undefined;
|
|
32
|
+
onEnter?: (() => void) | undefined;
|
|
33
|
+
onEntering?: (() => void) | undefined;
|
|
33
34
|
onEntered?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
34
|
-
onExit?: ((
|
|
35
|
-
onExiting?: ((
|
|
35
|
+
onExit?: (() => void) | undefined;
|
|
36
|
+
onExiting?: (() => void) | undefined;
|
|
36
37
|
onExited?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
37
38
|
border?: boolean | undefined;
|
|
38
39
|
shadow?: boolean | undefined;
|
|
@@ -43,64 +44,48 @@ declare class Tray extends Component<TrayProps> {
|
|
|
43
44
|
size?: "x-small" | "small" | "regular" | "medium" | "large" | undefined;
|
|
44
45
|
placement?: "top" | "bottom" | "start" | "end" | "center" | undefined;
|
|
45
46
|
open?: boolean | undefined;
|
|
46
|
-
defaultFocusElement?: import("
|
|
47
|
-
contentRef?: ((
|
|
47
|
+
defaultFocusElement?: import("@instructure/shared-types").UIElement | undefined;
|
|
48
|
+
contentRef?: ((el: HTMLSpanElement | null) => void) | undefined;
|
|
48
49
|
shouldContainFocus?: boolean | undefined;
|
|
49
50
|
shouldReturnFocus?: boolean | undefined;
|
|
50
51
|
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
51
52
|
onOpen?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
52
53
|
onClose?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
53
|
-
onDismiss?: ((
|
|
54
|
-
mountNode?:
|
|
54
|
+
onDismiss?: ((event: import("react").UIEvent<Element, UIEvent> | import("react").FocusEvent<Element, Element>, documentClick?: boolean | undefined) => void) | undefined;
|
|
55
|
+
mountNode?: Element | (() => Element | null) | null | undefined;
|
|
55
56
|
insertAt?: "top" | "bottom" | undefined;
|
|
56
57
|
liveRegion?: import("@instructure/shared-types").LiveRegion | undefined;
|
|
57
|
-
onTransition?: ((
|
|
58
|
-
onEnter?: ((
|
|
59
|
-
onEntering?: ((
|
|
58
|
+
onTransition?: ((toState: import("@instructure/ui-motion/types/Transition/BaseTransition/props").BaseTransitionStatesType, fromState: import("@instructure/ui-motion/types/Transition/BaseTransition/props").BaseTransitionStatesType) => void) | undefined;
|
|
59
|
+
onEnter?: (() => void) | undefined;
|
|
60
|
+
onEntering?: (() => void) | undefined;
|
|
60
61
|
onEntered?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
61
|
-
onExit?: ((
|
|
62
|
-
onExiting?: ((
|
|
62
|
+
onExit?: (() => void) | undefined;
|
|
63
|
+
onExiting?: (() => void) | undefined;
|
|
63
64
|
onExited?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
64
65
|
border?: boolean | undefined;
|
|
65
66
|
shadow?: boolean | undefined;
|
|
66
67
|
children?: import("react").ReactNode;
|
|
67
68
|
}>;
|
|
68
69
|
static defaultProps: {
|
|
70
|
+
defaultFocusElement: null;
|
|
69
71
|
open: boolean;
|
|
70
|
-
onOpen: (event: any) => void;
|
|
71
|
-
onClose: (event: any) => void;
|
|
72
|
-
onDismiss: (event: any) => void;
|
|
73
|
-
onEnter: () => void;
|
|
74
|
-
onEntering: () => void;
|
|
75
|
-
onEntered: () => void;
|
|
76
|
-
onExit: () => void;
|
|
77
|
-
onExiting: () => void;
|
|
78
|
-
onExited: () => void;
|
|
79
|
-
mountNode: null;
|
|
80
72
|
insertAt: string;
|
|
81
|
-
liveRegion: null;
|
|
82
|
-
contentRef: (el: any) => void;
|
|
83
73
|
shouldCloseOnDocumentClick: boolean;
|
|
84
74
|
shouldContainFocus: boolean;
|
|
85
75
|
shouldReturnFocus: boolean;
|
|
86
|
-
defaultFocusElement: null;
|
|
87
76
|
size: string;
|
|
88
77
|
placement: string;
|
|
89
78
|
shadow: boolean;
|
|
90
79
|
border: boolean;
|
|
91
|
-
children: null;
|
|
92
|
-
};
|
|
93
|
-
state: {
|
|
94
|
-
transitioning: boolean;
|
|
95
80
|
};
|
|
81
|
+
state: TrayState;
|
|
96
82
|
ref: Element | null;
|
|
97
83
|
componentDidMount(): void;
|
|
98
|
-
componentDidUpdate(prevProps:
|
|
84
|
+
componentDidUpdate(prevProps: TrayProps, _prevState: TrayState): void;
|
|
99
85
|
get placement(): "center" | import("@instructure/ui-position").PlacementPropValues | undefined;
|
|
100
86
|
get direction(): "up" | "down" | "right" | "left";
|
|
101
|
-
get transition():
|
|
102
|
-
|
|
103
|
-
handleTransitionComplete: (_type?: TransitionType | undefined) => void;
|
|
87
|
+
get transition(): TransitionType;
|
|
88
|
+
handleTransitionComplete: (_type?: TransitionType) => void;
|
|
104
89
|
get DOMNode(): Element | null;
|
|
105
90
|
set DOMNode(el: Element | null);
|
|
106
91
|
handlePortalOpen: (DOMNode: PortalNode) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tray/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAQjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAGxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAC5D,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tray/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAQjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAGxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAC5D,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAEnD;;;;;GAKG;AACH,cAGM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;MAWlB;IAED,KAAK,EAAE,SAAS,CAEf;IACD,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAC1B,iBAAiB;IAIjB,kBAAkB,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS;IAO9D,IAAI,SAAS,kFAIZ;IAED,IAAI,SAAS,qCAYZ;IAED,IAAI,UAAU,IAAI,cAAc,CAE/B;IAED,wBAAwB,WAAY,cAAc,UAEjD;IAED,IAAI,OAAO,mBAMV;IAED,IAAI,OAAO,CAAC,EAAE,gBAAA,EAEb;IAED,gBAAgB,YAAa,UAAU,UAEtC;IAED,MAAM;CA2FP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,CAAA"}
|
package/types/Tray/props.d.ts
CHANGED
|
@@ -1,32 +1,104 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
|
-
import type { OtherHTMLAttributes, PropValidators, TrayTheme, LiveRegion } from '@instructure/shared-types';
|
|
3
|
+
import type { OtherHTMLAttributes, PropValidators, TrayTheme, LiveRegion, UIElement } from '@instructure/shared-types';
|
|
4
4
|
import type { BidirectionalProps } from '@instructure/ui-i18n';
|
|
5
|
-
import type { TransitionType } from '@instructure/ui-motion';
|
|
5
|
+
import type { TransitionType, BaseTransitionStatesType } from '@instructure/ui-motion';
|
|
6
6
|
declare type TrayOwnProps = {
|
|
7
7
|
label: string;
|
|
8
|
+
/**
|
|
9
|
+
* The size (width) of the `<Tray />` when placement is `start` or `end`
|
|
10
|
+
*/
|
|
8
11
|
size?: 'x-small' | 'small' | 'regular' | 'medium' | 'large';
|
|
12
|
+
/**
|
|
13
|
+
* Placement to determine where the `<Tray />` should display in the viewport
|
|
14
|
+
*/
|
|
9
15
|
placement?: 'top' | 'bottom' | 'start' | 'end' | 'center';
|
|
16
|
+
/**
|
|
17
|
+
* Whether or not the `<Tray />` is open
|
|
18
|
+
*/
|
|
10
19
|
open?: boolean;
|
|
11
|
-
|
|
12
|
-
|
|
20
|
+
/**
|
|
21
|
+
* An element or a function returning an element to focus by default
|
|
22
|
+
*/
|
|
23
|
+
defaultFocusElement?: UIElement;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* A function that returns a reference to the content element
|
|
27
|
+
*/
|
|
28
|
+
contentRef?: (el: HTMLSpanElement | null) => void;
|
|
29
|
+
/**
|
|
30
|
+
* Whether focus should be contained within the `<Tray/>` when it is open
|
|
31
|
+
*/
|
|
13
32
|
shouldContainFocus?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Whether focus should be restored when the `<Tray/>` is closed
|
|
35
|
+
*/
|
|
14
36
|
shouldReturnFocus?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Should the `<Tray />` hide when clicks occur outside the content
|
|
39
|
+
*/
|
|
15
40
|
shouldCloseOnDocumentClick?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Callback fired when `<Tray />` content has been mounted in the DOM
|
|
43
|
+
*/
|
|
16
44
|
onOpen?: (type?: TransitionType) => void;
|
|
45
|
+
/**
|
|
46
|
+
* Callback fired when `<Tray />` has been unmounted from the DOM
|
|
47
|
+
*/
|
|
17
48
|
onClose?: (type?: TransitionType) => void;
|
|
18
|
-
|
|
19
|
-
|
|
49
|
+
/**
|
|
50
|
+
* Callback fired when the `<Tray />` is requesting to be closed
|
|
51
|
+
*/
|
|
52
|
+
onDismiss?: (event: React.UIEvent | React.FocusEvent, documentClick?: boolean) => void;
|
|
53
|
+
/**
|
|
54
|
+
* An element or a function returning an element to use as the mount node
|
|
55
|
+
* for the `<Tray />` (defaults to `document.body`)
|
|
56
|
+
*/
|
|
57
|
+
mountNode?: Element | (() => Element | null) | null;
|
|
58
|
+
/**
|
|
59
|
+
* Insert the element at the 'top' of the mountNode or at the 'bottom'
|
|
60
|
+
*/
|
|
20
61
|
insertAt?: 'bottom' | 'top';
|
|
62
|
+
/**
|
|
63
|
+
* An element, function returning an element, or array of elements that will not be hidden from
|
|
64
|
+
* the screen reader when the `<Tray />` is open
|
|
65
|
+
*/
|
|
21
66
|
liveRegion?: LiveRegion;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
67
|
+
/**
|
|
68
|
+
* Callback fired when the <Tray /> transitions in/out
|
|
69
|
+
*/
|
|
70
|
+
onTransition?: (toState: BaseTransitionStatesType, fromState: BaseTransitionStatesType) => void;
|
|
71
|
+
/**
|
|
72
|
+
* Callback fired before the <Tray /> transitions in
|
|
73
|
+
*/
|
|
74
|
+
onEnter?: () => void;
|
|
75
|
+
/**
|
|
76
|
+
* Callback fired as the <Tray /> begins to transition in
|
|
77
|
+
*/
|
|
78
|
+
onEntering?: () => void;
|
|
79
|
+
/**
|
|
80
|
+
* Callback fired after the <Tray /> finishes transitioning in
|
|
81
|
+
*/
|
|
25
82
|
onEntered?: (type?: TransitionType) => void;
|
|
26
|
-
|
|
27
|
-
|
|
83
|
+
/**
|
|
84
|
+
* Callback fired right before the <Tray /> transitions out
|
|
85
|
+
*/
|
|
86
|
+
onExit?: () => void;
|
|
87
|
+
/**
|
|
88
|
+
* Callback fired as the <Tray /> begins to transition out
|
|
89
|
+
*/
|
|
90
|
+
onExiting?: () => void;
|
|
91
|
+
/**
|
|
92
|
+
* Callback fired after the <Tray /> finishes transitioning out
|
|
93
|
+
*/
|
|
28
94
|
onExited?: (type?: TransitionType) => void;
|
|
95
|
+
/**
|
|
96
|
+
* Should the `<Tray />` have a border
|
|
97
|
+
*/
|
|
29
98
|
border?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Should the `<Tray />` have a box shadow
|
|
101
|
+
*/
|
|
30
102
|
shadow?: boolean;
|
|
31
103
|
children?: React.ReactNode;
|
|
32
104
|
};
|
|
@@ -36,6 +108,9 @@ declare type TrayProps = TrayOwnProps & BidirectionalProps & WithStyleProps<Tray
|
|
|
36
108
|
declare type TrayStyle = ComponentStyle<'tray' | 'content'>;
|
|
37
109
|
declare const propTypes: PropValidators<PropKeys>;
|
|
38
110
|
declare const allowedProps: AllowedPropKeys;
|
|
39
|
-
|
|
111
|
+
declare type TrayState = {
|
|
112
|
+
transitioning: boolean;
|
|
113
|
+
};
|
|
114
|
+
export type { TrayProps, TrayStyle, TrayState };
|
|
40
115
|
export { propTypes, allowedProps };
|
|
41
116
|
//# sourceMappingURL=props.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tray/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,SAAS,EACT,UAAU,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tray/props.ts"],"names":[],"mappings":"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"}
|
package/LICENSE.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: The MIT License (MIT)
|
|
3
|
-
category: Getting Started
|
|
4
|
-
order: 9
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# The MIT License (MIT)
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2015 Instructure, Inc.
|
|
10
|
-
|
|
11
|
-
**Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions.**
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|