@instructure/ui-popover 8.8.1-snapshot.7 → 8.9.1-snapshot.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 +4 -0
- package/es/Popover/index.js +4 -224
- package/es/Popover/props.js +239 -0
- package/lib/Popover/index.js +3 -227
- package/lib/Popover/props.js +253 -0
- package/package.json +20 -20
- package/src/Popover/index.tsx +4 -195
- package/src/Popover/props.ts +316 -0
- package/src/index.ts +1 -1
- package/types/Popover/index.d.ts +85 -181
- package/types/Popover/index.d.ts.map +1 -1
- package/types/Popover/{types.d.ts → props.d.ts} +12 -4
- package/types/Popover/props.d.ts.map +1 -0
- package/types/index.d.ts +1 -1
- package/es/Popover/types.js +0 -1
- package/lib/Popover/types.js +0 -1
- package/src/Popover/types.ts +0 -79
- package/types/Popover/types.d.ts.map +0 -1
package/src/index.ts
CHANGED
package/types/Popover/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
2
|
import type { RequestAnimationFrameType } from '@instructure/ui-dom-utils';
|
|
4
|
-
import { PopoverProps } from './
|
|
3
|
+
import type { PopoverProps } from './props';
|
|
5
4
|
/**
|
|
6
5
|
---
|
|
7
6
|
category: components
|
|
@@ -10,180 +9,91 @@ tags: overlay, portal, dialog
|
|
|
10
9
|
**/
|
|
11
10
|
declare class Popover extends Component<PopoverProps> {
|
|
12
11
|
static readonly componentId = "Popover";
|
|
13
|
-
static
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
shouldAlignArrow: PropTypes.Requireable<boolean>;
|
|
98
|
-
/**
|
|
99
|
-
* Whether or not position should be tracked or just set on initial render
|
|
100
|
-
*/
|
|
101
|
-
shouldTrackPosition: PropTypes.Requireable<boolean>;
|
|
102
|
-
/**
|
|
103
|
-
* Should the `<Popover />` render offscreen when visually hidden
|
|
104
|
-
*/
|
|
105
|
-
shouldRenderOffscreen: PropTypes.Requireable<boolean>;
|
|
106
|
-
/**
|
|
107
|
-
* Whether focus should contained within the `<Popover/>` when it is open
|
|
108
|
-
*/
|
|
109
|
-
shouldContainFocus: PropTypes.Requireable<boolean>;
|
|
110
|
-
/**
|
|
111
|
-
* Whether focus should be returned to the trigger when the `<Popover/>` is closed
|
|
112
|
-
*/
|
|
113
|
-
shouldReturnFocus: PropTypes.Requireable<boolean>;
|
|
114
|
-
/**
|
|
115
|
-
* Should the `<Popover />` hide when clicks occur outside the content
|
|
116
|
-
*/
|
|
117
|
-
shouldCloseOnDocumentClick: PropTypes.Requireable<boolean>;
|
|
118
|
-
/**
|
|
119
|
-
* Should the `<Popover />` hide when the escape key is pressed
|
|
120
|
-
*/
|
|
121
|
-
shouldCloseOnEscape: PropTypes.Requireable<boolean>;
|
|
122
|
-
/**
|
|
123
|
-
* Should the content become focused when the trigger is blurred
|
|
124
|
-
*/
|
|
125
|
-
shouldFocusContentOnTriggerBlur: PropTypes.Requireable<boolean>;
|
|
126
|
-
/**
|
|
127
|
-
* Callback fired when content is shown. When controlled, this callback is
|
|
128
|
-
* fired when the Popover expects to be shown
|
|
129
|
-
*/
|
|
130
|
-
onShowContent: PropTypes.Requireable<(...args: any[]) => any>;
|
|
131
|
-
/**
|
|
132
|
-
* Callback fired when content is hidden. When controlled, this callback is
|
|
133
|
-
* fired when the Popover expects to be hidden
|
|
134
|
-
*/
|
|
135
|
-
onHideContent: PropTypes.Requireable<(...args: any[]) => any>;
|
|
136
|
-
/**
|
|
137
|
-
* Callback fired when content has been is initially positioned.
|
|
138
|
-
* If `shouldRenderOffscreen` is true, it will only fire once, the first
|
|
139
|
-
* time the content is shown
|
|
140
|
-
*/
|
|
141
|
-
onPositioned: PropTypes.Requireable<(...args: any[]) => any>;
|
|
142
|
-
/**
|
|
143
|
-
* Callback fired when the position changes
|
|
144
|
-
*/
|
|
145
|
-
onPositionChanged: PropTypes.Requireable<(...args: any[]) => any>;
|
|
146
|
-
/**
|
|
147
|
-
* Callback fired when component is clicked
|
|
148
|
-
*/
|
|
149
|
-
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
150
|
-
/**
|
|
151
|
-
* Callback fired when trigger is focused
|
|
152
|
-
*/
|
|
153
|
-
onFocus: PropTypes.Requireable<(...args: any[]) => any>;
|
|
154
|
-
/**
|
|
155
|
-
* Callback fired when component is blurred
|
|
156
|
-
*/
|
|
157
|
-
onBlur: PropTypes.Requireable<(...args: any[]) => any>;
|
|
158
|
-
/**
|
|
159
|
-
* Callback fired on keydown
|
|
160
|
-
*/
|
|
161
|
-
onKeyDown: PropTypes.Requireable<(...args: any[]) => any>;
|
|
162
|
-
/**
|
|
163
|
-
* Callback fired on keyup
|
|
164
|
-
*/
|
|
165
|
-
onKeyUp: PropTypes.Requireable<(...args: any[]) => any>;
|
|
166
|
-
/**
|
|
167
|
-
/**
|
|
168
|
-
* Callback fired when mouse is over trigger
|
|
169
|
-
*/
|
|
170
|
-
onMouseOver: PropTypes.Requireable<(...args: any[]) => any>;
|
|
171
|
-
/**
|
|
172
|
-
* Callback fired when mouse leaves trigger
|
|
173
|
-
*/
|
|
174
|
-
onMouseOut: PropTypes.Requireable<(...args: any[]) => any>;
|
|
175
|
-
/**
|
|
176
|
-
* The element that triggers the popover
|
|
177
|
-
*/
|
|
178
|
-
renderTrigger: PropTypes.Requireable<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
|
|
179
|
-
/**
|
|
180
|
-
* The content to be shown by the popover
|
|
181
|
-
*/
|
|
182
|
-
children: PropTypes.Requireable<string | number | boolean | {} | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
|
|
183
|
-
dir: PropTypes.Requireable<string>;
|
|
184
|
-
};
|
|
12
|
+
static allowedProps: readonly (keyof {
|
|
13
|
+
isShowingContent?: boolean | undefined;
|
|
14
|
+
defaultIsShowingContent?: boolean | undefined;
|
|
15
|
+
on?: "click" | "hover" | "focus" | ("click" | "hover" | "focus")[] | undefined;
|
|
16
|
+
withArrow?: boolean | undefined;
|
|
17
|
+
color?: "primary" | "primary-inverse" | undefined;
|
|
18
|
+
shadow?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Shadow | undefined;
|
|
19
|
+
stacking?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Stacking | undefined;
|
|
20
|
+
contentRef?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
defaultFocusElement?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | ((...args: any[]) => any) | undefined;
|
|
22
|
+
screenReaderLabel?: string | undefined;
|
|
23
|
+
offsetX?: string | number | undefined;
|
|
24
|
+
offsetY?: string | number | undefined;
|
|
25
|
+
placement: import("@instructure/ui-position").PlacementPropValues;
|
|
26
|
+
constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
|
|
27
|
+
mountNode?: import("@instructure/ui-position").PositionMountNode | undefined;
|
|
28
|
+
positionTarget?: import("@instructure/ui-position").PositionMountNode | undefined;
|
|
29
|
+
insertAt?: "top" | "bottom" | undefined;
|
|
30
|
+
liveRegion?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | React.ReactElement<any, string | React.JSXElementConstructor<any>>[] | ((...args: any[]) => any) | undefined;
|
|
31
|
+
id?: string | undefined;
|
|
32
|
+
shouldAlignArrow?: boolean | undefined;
|
|
33
|
+
shouldTrackPosition?: boolean | undefined;
|
|
34
|
+
shouldRenderOffscreen?: boolean | undefined;
|
|
35
|
+
shouldContainFocus?: boolean | undefined;
|
|
36
|
+
shouldReturnFocus?: boolean | undefined;
|
|
37
|
+
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
38
|
+
shouldCloseOnEscape?: boolean | undefined;
|
|
39
|
+
shouldFocusContentOnTriggerBlur?: boolean | undefined;
|
|
40
|
+
onShowContent?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onHideContent?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
onPositioned?: ((...args: any[]) => any) | undefined;
|
|
43
|
+
onPositionChanged?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
46
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
onKeyDown?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
onKeyUp?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
onMouseOver?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
onMouseOut?: ((...args: any[]) => any) | undefined;
|
|
51
|
+
renderTrigger?: React.ReactNode | ((...args: any[]) => any);
|
|
52
|
+
children?: React.ReactNode | ((...args: any[]) => React.ReactNode);
|
|
53
|
+
})[];
|
|
54
|
+
static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
|
|
55
|
+
isShowingContent?: boolean | undefined;
|
|
56
|
+
defaultIsShowingContent?: boolean | undefined;
|
|
57
|
+
on?: "click" | "hover" | "focus" | ("click" | "hover" | "focus")[] | undefined;
|
|
58
|
+
withArrow?: boolean | undefined;
|
|
59
|
+
color?: "primary" | "primary-inverse" | undefined;
|
|
60
|
+
shadow?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Shadow | undefined;
|
|
61
|
+
stacking?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Stacking | undefined;
|
|
62
|
+
contentRef?: ((...args: any[]) => any) | undefined;
|
|
63
|
+
defaultFocusElement?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | ((...args: any[]) => any) | undefined;
|
|
64
|
+
screenReaderLabel?: string | undefined;
|
|
65
|
+
offsetX?: string | number | undefined;
|
|
66
|
+
offsetY?: string | number | undefined;
|
|
67
|
+
placement: import("@instructure/ui-position").PlacementPropValues;
|
|
68
|
+
constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
|
|
69
|
+
mountNode?: import("@instructure/ui-position").PositionMountNode | undefined;
|
|
70
|
+
positionTarget?: import("@instructure/ui-position").PositionMountNode | undefined;
|
|
71
|
+
insertAt?: "top" | "bottom" | undefined;
|
|
72
|
+
liveRegion?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | React.ReactElement<any, string | React.JSXElementConstructor<any>>[] | ((...args: any[]) => any) | undefined;
|
|
73
|
+
id?: string | undefined;
|
|
74
|
+
shouldAlignArrow?: boolean | undefined;
|
|
75
|
+
shouldTrackPosition?: boolean | undefined;
|
|
76
|
+
shouldRenderOffscreen?: boolean | undefined;
|
|
77
|
+
shouldContainFocus?: boolean | undefined;
|
|
78
|
+
shouldReturnFocus?: boolean | undefined;
|
|
79
|
+
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
80
|
+
shouldCloseOnEscape?: boolean | undefined;
|
|
81
|
+
shouldFocusContentOnTriggerBlur?: boolean | undefined;
|
|
82
|
+
onShowContent?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
onHideContent?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
onPositioned?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onPositionChanged?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
onKeyDown?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
onKeyUp?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
onMouseOver?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onMouseOut?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
renderTrigger?: React.ReactNode | ((...args: any[]) => any);
|
|
94
|
+
children?: React.ReactNode | ((...args: any[]) => React.ReactNode);
|
|
95
|
+
}>;
|
|
185
96
|
static defaultProps: {
|
|
186
|
-
isShowingContent: undefined;
|
|
187
97
|
defaultIsShowingContent: boolean;
|
|
188
98
|
placement: string;
|
|
189
99
|
stacking: string;
|
|
@@ -195,13 +105,7 @@ declare class Popover extends Component<PopoverProps> {
|
|
|
195
105
|
contentRef: (el: any) => void;
|
|
196
106
|
withArrow: boolean;
|
|
197
107
|
constrain: string;
|
|
198
|
-
defaultFocusElement: undefined;
|
|
199
|
-
screenReaderLabel: undefined;
|
|
200
|
-
mountNode: undefined;
|
|
201
108
|
insertAt: string;
|
|
202
|
-
liveRegion: undefined;
|
|
203
|
-
positionTarget: undefined;
|
|
204
|
-
id: undefined;
|
|
205
109
|
shouldAlignArrow: boolean;
|
|
206
110
|
shouldTrackPosition: boolean;
|
|
207
111
|
shouldRenderOffscreen: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Popover/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Popover/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAiBxC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,2BAA2B,CAAA;AAS1E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C;;;;;GAKG;AACH,cAEM,OAAQ,SAAQ,SAAS,CAAC,YAAY,CAAC;IAC3C,MAAM,CAAC,QAAQ,CAAC,WAAW,aAAY;IAEvC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8ClB;IAED,gBAAgB,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,SAAS,CAAA;IACrD,eAAe,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,SAAS,CAAA;gBAGxC,KAAK,KAAA;IAkCjB,IAAI,EAAE,yBAAyB,EAAE,CAAK;IAEtC,IAAI,SAAS,wBAOZ;IAED,iBAAiB;IAmBjB,oBAAoB;IAcpB,qBAAqB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,WAAW,KAAA;IAQvD,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IA2CjD,cAAc,CAAC,SAAS,KAAA;;;;IA4BxB,IAAI,SAAS,2DAWZ;IAED,IAAI,aAAa;;;;;;;;;;;;MAiBhB;IAED,IAAI,KAAK,QAKR;IAED,IAAI,mBAAmB,+GAEtB;IAGD,IAAI,uBAMH;IAGD,IAAI,gDAkBH;IAGD,MAAM,uBAML;IAGD,mBAAmB,2BAclB;IAGD,gBAAgB,uBASf;IAGD,oBAAoB,uBAcnB;IAGD,kBAAkB,uBAOjB;IAGD,iBAAiB,uBAYhB;IAGD,gBAAgB,0BAQf;IAGD,qBAAqB,0BAQpB;IAED,aAAa;IAyEb,aAAa;IA0Fb,MAAM;CAkBP;AAED,eAAe,OAAO,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,CAAA"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import type { Shadow, Stacking } from '@instructure/emotion';
|
|
2
1
|
import React from 'react';
|
|
2
|
+
import type { Shadow, Stacking } from '@instructure/emotion';
|
|
3
3
|
import type { PlacementPropValues, PositionConstraint, PositionMountNode } from '@instructure/ui-position';
|
|
4
4
|
import type { BidirectionalProps } from '@instructure/ui-i18n';
|
|
5
|
-
|
|
5
|
+
import type { PropValidators } from '@instructure/shared-types';
|
|
6
|
+
declare type PopoverOwnProps = {
|
|
6
7
|
isShowingContent?: boolean;
|
|
7
8
|
defaultIsShowingContent?: boolean;
|
|
8
9
|
on?: ('click' | 'hover' | 'focus') | ('click' | 'hover' | 'focus')[];
|
|
@@ -42,6 +43,13 @@ export declare type PopoverOwnProps = {
|
|
|
42
43
|
onMouseOver?: (...args: any[]) => any;
|
|
43
44
|
onMouseOut?: (...args: any[]) => any;
|
|
44
45
|
renderTrigger?: React.ReactNode | ((...args: any[]) => any);
|
|
46
|
+
children?: React.ReactNode | ((...args: any[]) => React.ReactNode);
|
|
45
47
|
};
|
|
46
|
-
|
|
47
|
-
|
|
48
|
+
declare type PopoverProps = PopoverOwnProps & BidirectionalProps;
|
|
49
|
+
declare type PropKeys = keyof PopoverOwnProps;
|
|
50
|
+
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
51
|
+
declare const propTypes: PropValidators<PropKeys>;
|
|
52
|
+
declare const allowedProps: AllowedPropKeys;
|
|
53
|
+
export type { PopoverProps };
|
|
54
|
+
export { propTypes, allowedProps };
|
|
55
|
+
//# sourceMappingURL=props.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Popover/props.ts"],"names":[],"mappings":"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"}
|
package/types/index.d.ts
CHANGED
package/es/Popover/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/lib/Popover/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
package/src/Popover/types.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* The MIT License (MIT)
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2015 - present Instructure, Inc.
|
|
5
|
-
*
|
|
6
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
-
* in the Software without restriction, including without limitation the rights
|
|
9
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
-
* furnished to do so, subject to the following conditions:
|
|
12
|
-
*
|
|
13
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
-
* copies or substantial portions of the Software.
|
|
15
|
-
*
|
|
16
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
-
* SOFTWARE.
|
|
23
|
-
*/
|
|
24
|
-
|
|
25
|
-
import type { Shadow, Stacking } from '@instructure/emotion'
|
|
26
|
-
import React from 'react'
|
|
27
|
-
import type {
|
|
28
|
-
PlacementPropValues,
|
|
29
|
-
PositionConstraint,
|
|
30
|
-
PositionMountNode
|
|
31
|
-
} from '@instructure/ui-position'
|
|
32
|
-
import type { BidirectionalProps } from '@instructure/ui-i18n'
|
|
33
|
-
|
|
34
|
-
export type PopoverOwnProps = {
|
|
35
|
-
isShowingContent?: boolean
|
|
36
|
-
defaultIsShowingContent?: boolean
|
|
37
|
-
on?: ('click' | 'hover' | 'focus') | ('click' | 'hover' | 'focus')[]
|
|
38
|
-
withArrow?: boolean
|
|
39
|
-
color?: 'primary' | 'primary-inverse'
|
|
40
|
-
shadow?: Shadow
|
|
41
|
-
stacking?: Stacking
|
|
42
|
-
contentRef?: (...args: any[]) => any
|
|
43
|
-
defaultFocusElement?: React.ReactElement | ((...args: any[]) => any)
|
|
44
|
-
screenReaderLabel?: string
|
|
45
|
-
offsetX?: string | number
|
|
46
|
-
offsetY?: string | number
|
|
47
|
-
placement: PlacementPropValues
|
|
48
|
-
constrain?: PositionConstraint
|
|
49
|
-
mountNode?: PositionMountNode
|
|
50
|
-
positionTarget?: PositionMountNode
|
|
51
|
-
insertAt?: 'bottom' | 'top'
|
|
52
|
-
liveRegion?:
|
|
53
|
-
| React.ReactElement[]
|
|
54
|
-
| React.ReactElement
|
|
55
|
-
| ((...args: any[]) => any)
|
|
56
|
-
id?: string
|
|
57
|
-
shouldAlignArrow?: boolean
|
|
58
|
-
shouldTrackPosition?: boolean
|
|
59
|
-
shouldRenderOffscreen?: boolean
|
|
60
|
-
shouldContainFocus?: boolean
|
|
61
|
-
shouldReturnFocus?: boolean
|
|
62
|
-
shouldCloseOnDocumentClick?: boolean
|
|
63
|
-
shouldCloseOnEscape?: boolean
|
|
64
|
-
shouldFocusContentOnTriggerBlur?: boolean
|
|
65
|
-
onShowContent?: (...args: any[]) => any
|
|
66
|
-
onHideContent?: (...args: any[]) => any
|
|
67
|
-
onPositioned?: (...args: any[]) => any
|
|
68
|
-
onPositionChanged?: (...args: any[]) => any
|
|
69
|
-
onClick?: (...args: any[]) => any
|
|
70
|
-
onFocus?: (...args: any[]) => any
|
|
71
|
-
onBlur?: (...args: any[]) => any
|
|
72
|
-
onKeyDown?: (...args: any[]) => any
|
|
73
|
-
onKeyUp?: (...args: any[]) => any
|
|
74
|
-
onMouseOver?: (...args: any[]) => any
|
|
75
|
-
onMouseOut?: (...args: any[]) => any
|
|
76
|
-
renderTrigger?: React.ReactNode | ((...args: any[]) => any)
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export type PopoverProps = PopoverOwnProps & BidirectionalProps
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/Popover/types.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAC5D,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EACV,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,0BAA0B,CAAA;AACjC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAE9D,oBAAY,eAAe,GAAG;IAC5B,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,uBAAuB,CAAC,EAAE,OAAO,CAAA;IACjC,EAAE,CAAC,EAAE,CAAC,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC,EAAE,CAAA;IACpE,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,SAAS,GAAG,iBAAiB,CAAA;IACrC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACpC,mBAAmB,CAAC,EAAE,KAAK,CAAC,YAAY,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IACpE,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACzB,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACzB,SAAS,EAAE,mBAAmB,CAAA;IAC9B,SAAS,CAAC,EAAE,kBAAkB,CAAA;IAC9B,SAAS,CAAC,EAAE,iBAAiB,CAAA;IAC7B,cAAc,CAAC,EAAE,iBAAiB,CAAA;IAClC,QAAQ,CAAC,EAAE,QAAQ,GAAG,KAAK,CAAA;IAC3B,UAAU,CAAC,EACP,KAAK,CAAC,YAAY,EAAE,GACpB,KAAK,CAAC,YAAY,GAClB,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IAC7B,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,0BAA0B,CAAC,EAAE,OAAO,CAAA;IACpC,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,+BAA+B,CAAC,EAAE,OAAO,CAAA;IACzC,aAAa,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACvC,aAAa,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACvC,YAAY,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACtC,iBAAiB,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAC3C,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,MAAM,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAChC,SAAS,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACnC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,WAAW,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACrC,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACpC,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;CAC5D,CAAA;AAED,oBAAY,YAAY,GAAG,eAAe,GAAG,kBAAkB,CAAA"}
|