@progress/kendo-react-popup 7.2.4-develop.3 → 7.2.4-develop.4
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/Popup.js +8 -0
- package/Popup.mjs +25 -0
- package/PopupWithoutContext.js +8 -0
- package/PopupWithoutContext.mjs +324 -0
- package/animation.js +8 -0
- package/animation.mjs +35 -0
- package/dist/cdn/js/kendo-react-popup.js +8 -5
- package/index.d.mts +468 -5
- package/index.d.ts +468 -16
- package/index.js +8 -5
- package/index.mjs +12 -373
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +19 -0
- package/package.json +2 -2
- package/util.js +8 -0
- package/util.mjs +25 -0
- package/Popup.d.ts +0 -31
- package/PopupWithoutContext.d.ts +0 -188
- package/animation.d.ts +0 -8
- package/models/Align.d.ts +0 -28
- package/models/Collision.d.ts +0 -18
- package/models/CollisionType.d.ts +0 -14
- package/models/Events.d.ts +0 -40
- package/models/Margin.d.ts +0 -18
- package/models/Offset.d.ts +0 -18
- package/models/PopupAnimation.d.ts +0 -17
- package/models/PopupProps.d.ts +0 -119
- package/models/PositionMode.d.ts +0 -9
- package/package-metadata.d.ts +0 -9
- package/util.d.ts +0 -21
package/index.d.mts
CHANGED
|
@@ -1,5 +1,468 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { AlignStrategy } from '@progress/kendo-popup-common';
|
|
9
|
+
import { CollisionType as CollisionType_2 } from '@progress/kendo-popup-common';
|
|
10
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
11
|
+
import { MarginSettings } from '@progress/kendo-popup-common';
|
|
12
|
+
import { OffsetPosition } from '@progress/kendo-popup-common';
|
|
13
|
+
import { PopupSettings } from '@progress/kendo-popup-common';
|
|
14
|
+
import { PositionMode as PositionMode_2 } from '@progress/kendo-popup-common';
|
|
15
|
+
import PropTypes from 'prop-types';
|
|
16
|
+
import * as React_2 from 'react';
|
|
17
|
+
import { ZIndexContext } from '@progress/kendo-react-common';
|
|
18
|
+
import { ZIndexContextType } from '@progress/kendo-react-common';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Defines the horizontal and vertical aligning point of the Popup.
|
|
22
|
+
*/
|
|
23
|
+
export declare interface Align extends AlignStrategy {
|
|
24
|
+
/**
|
|
25
|
+
* Defines the possible horizontal point values that are relative to the anchor or the Popup.
|
|
26
|
+
*
|
|
27
|
+
* The available options are:
|
|
28
|
+
* - `left`—Uses the leftmost point of the anchor element.
|
|
29
|
+
* - `center`—Uses the center point of the anchor element.
|
|
30
|
+
* - `right`—Uses the rightmost point of the anchor element.
|
|
31
|
+
*/
|
|
32
|
+
horizontal: 'left' | 'center' | 'right';
|
|
33
|
+
/**
|
|
34
|
+
* Defines the possible vertical point values that are relative to the anchor or the Popup.
|
|
35
|
+
*
|
|
36
|
+
* The available options are:
|
|
37
|
+
* - `top`—Uses the top point of the anchor element.
|
|
38
|
+
* - `center`—Uses the center point of the anchor element.
|
|
39
|
+
* - `bottom`—Uses the bottom point of the anchor element.
|
|
40
|
+
*/
|
|
41
|
+
vertical: 'top' | 'center' | 'bottom';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Defines the horizontal and vertical collision behavior of the Popup.
|
|
46
|
+
*/
|
|
47
|
+
export declare interface Collision {
|
|
48
|
+
/**
|
|
49
|
+
* Defines the horizontal collision behavior of the Popup.
|
|
50
|
+
*/
|
|
51
|
+
horizontal: CollisionType;
|
|
52
|
+
/**
|
|
53
|
+
* Defines the vertical collision behavior of the Popup.
|
|
54
|
+
*/
|
|
55
|
+
vertical: CollisionType;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Defines the possible collision behavior when the Popup is not fully visible.
|
|
60
|
+
*
|
|
61
|
+
* The available options are:
|
|
62
|
+
* - `fit`—Moves the Popup horizontally until it is fully displayed in the viewport.
|
|
63
|
+
* - `flip`—Flips the Popup position based on the origin and the position properties.
|
|
64
|
+
* - `none`—The Popup is rendered at its original position.
|
|
65
|
+
*/
|
|
66
|
+
export declare type CollisionType = CollisionType_2;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Defines the horizontal and the vertical margin offset of the component.
|
|
70
|
+
*/
|
|
71
|
+
export declare interface Margin extends MarginSettings {
|
|
72
|
+
/**
|
|
73
|
+
* Defines the possible horizontal margin value.
|
|
74
|
+
*/
|
|
75
|
+
horizontal: number;
|
|
76
|
+
/**
|
|
77
|
+
* Defines the possible vertical margin value.
|
|
78
|
+
*/
|
|
79
|
+
vertical: number;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* The offset position of the Popup.
|
|
84
|
+
*/
|
|
85
|
+
export declare interface Offset extends OffsetPosition {
|
|
86
|
+
/**
|
|
87
|
+
* Defines the top position of the Popup.
|
|
88
|
+
*/
|
|
89
|
+
top: number;
|
|
90
|
+
/**
|
|
91
|
+
* Defines the left position of the Popup.
|
|
92
|
+
*/
|
|
93
|
+
left: number;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* The KendoReact Popup component.
|
|
98
|
+
*/
|
|
99
|
+
export declare const Popup: React_2.ForwardRefExoticComponent<PopupProps & React_2.RefAttributes<unknown>>;
|
|
100
|
+
|
|
101
|
+
/** @hidden */
|
|
102
|
+
export declare type Popup = PopupHandle;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* The animation settings for the Popup component.
|
|
106
|
+
*/
|
|
107
|
+
export declare interface PopupAnimation {
|
|
108
|
+
/**
|
|
109
|
+
* The duration of the opening animation in milliseconds. Defaults to `300ms`.
|
|
110
|
+
*/
|
|
111
|
+
openDuration?: number;
|
|
112
|
+
/**
|
|
113
|
+
* The duration of the closing animation in milliseconds. Defaults to `300ms`.
|
|
114
|
+
*/
|
|
115
|
+
closeDuration?: number;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Represents the object of the `Close` Popup event.
|
|
120
|
+
*/
|
|
121
|
+
export declare interface PopupCloseEvent {
|
|
122
|
+
/**
|
|
123
|
+
* An event target.
|
|
124
|
+
*/
|
|
125
|
+
target: Popup;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
declare interface PopupHandle extends Pick<PopupWithoutContext, keyof PopupWithoutContext> {
|
|
129
|
+
/**
|
|
130
|
+
* @hidden
|
|
131
|
+
*/
|
|
132
|
+
element: any;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Represents the object of the `Open` Popup event.
|
|
137
|
+
*/
|
|
138
|
+
export declare interface PopupOpenEvent {
|
|
139
|
+
/**
|
|
140
|
+
* An event target.
|
|
141
|
+
*/
|
|
142
|
+
target: Popup;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Represents the props of the [KendoReact Popup component]({% slug overview_popup %}).
|
|
147
|
+
*/
|
|
148
|
+
export declare interface PopupProps extends PopupSettings {
|
|
149
|
+
/**
|
|
150
|
+
* Controls the Popup animation ([see example]({% slug animations_popup %})). By default, the opening and closing animations are enabled.
|
|
151
|
+
*/
|
|
152
|
+
animate?: boolean | PopupAnimation;
|
|
153
|
+
/**
|
|
154
|
+
* Specifies the element which will be used as an anchor ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that element.
|
|
155
|
+
*/
|
|
156
|
+
anchor?: HTMLElement | null;
|
|
157
|
+
/**
|
|
158
|
+
* Defines the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
|
|
159
|
+
* * If set to `null` the Popup will be rendered without React Portal.
|
|
160
|
+
*/
|
|
161
|
+
appendTo?: HTMLElement | null;
|
|
162
|
+
/**
|
|
163
|
+
* Specifies the pivot point of the anchor ([see example]({% slug alignmentpositioning_popup %})).
|
|
164
|
+
*/
|
|
165
|
+
anchorAlign?: Align;
|
|
166
|
+
/**
|
|
167
|
+
* Configures the collision behavior of the Popup ([see example]({% slug viewportboundarydetection_popup %})).
|
|
168
|
+
*/
|
|
169
|
+
collision?: Collision;
|
|
170
|
+
/**
|
|
171
|
+
* Configures the margin value that will be added to the popup dimensions
|
|
172
|
+
* in pixels and leaves a blank space between the popup and the anchor.
|
|
173
|
+
*/
|
|
174
|
+
margin?: Margin;
|
|
175
|
+
/**
|
|
176
|
+
* Specifies the position mode of the component. By default, the Popup uses fixed positioning.
|
|
177
|
+
* To make the Popup acquire absolute positioning, set this option to `absolute`.
|
|
178
|
+
*
|
|
179
|
+
* > If you need to support mobile browsers with the zoom option, use the `absolute` positioning of the Popup.
|
|
180
|
+
*/
|
|
181
|
+
positionMode?: PositionMode;
|
|
182
|
+
/**
|
|
183
|
+
* Used to set the document scale when using a [scale transform](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/scale).
|
|
184
|
+
*
|
|
185
|
+
* The document or container scale is required to compute the popup position correctly. Detecting the scale is not reliable and must be set by providing a value for SCALE. See [Support for Document Scale]({% slug documentscale_popup %}).
|
|
186
|
+
*
|
|
187
|
+
* > Using this token is not necessary for user-applied browser zoom.
|
|
188
|
+
*
|
|
189
|
+
*/
|
|
190
|
+
scale?: number;
|
|
191
|
+
/**
|
|
192
|
+
* Specifies the pivot point of the Popup ([see example]({% slug alignmentpositioning_popup %})).
|
|
193
|
+
*/
|
|
194
|
+
popupAlign?: Align;
|
|
195
|
+
/**
|
|
196
|
+
* Specifies the absolute position of the element ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that point. The pivot point of the Popup is defined by the `popupAlign` configuration option. The boundary detection is applied by using the window viewport.
|
|
197
|
+
*/
|
|
198
|
+
offset?: Offset;
|
|
199
|
+
/**
|
|
200
|
+
* Specifies a list of CSS classes that will be added to the internal animated element ([see example]({% slug appearance_popup %})).
|
|
201
|
+
*/
|
|
202
|
+
popupClass?: string | Array<string> | {
|
|
203
|
+
[key: string]: boolean;
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* Specifies a list of CSS classes that will be added to the Popup element.
|
|
207
|
+
*/
|
|
208
|
+
className?: string | Array<string>;
|
|
209
|
+
/**
|
|
210
|
+
* Specifies the id that will be added to the Popup element.
|
|
211
|
+
*/
|
|
212
|
+
id?: string;
|
|
213
|
+
/**
|
|
214
|
+
* Represents the styles that are applied to the Popup.
|
|
215
|
+
*/
|
|
216
|
+
style?: React.CSSProperties;
|
|
217
|
+
/**
|
|
218
|
+
* Fires after the Popup is opened and the opening animation ends.
|
|
219
|
+
*/
|
|
220
|
+
onOpen?: (event: PopupOpenEvent) => void;
|
|
221
|
+
/**
|
|
222
|
+
* Fires after the Popup is closed.
|
|
223
|
+
*/
|
|
224
|
+
onClose?: (event: PopupCloseEvent) => void;
|
|
225
|
+
/**
|
|
226
|
+
* Fires after the Popup position is set.
|
|
227
|
+
*/
|
|
228
|
+
onPosition?: (event: PositionEvent) => void;
|
|
229
|
+
/**
|
|
230
|
+
* Controls the Popup visibility ([see example]({% slug hidden_popup %})). Defaults to `false`.
|
|
231
|
+
*/
|
|
232
|
+
show?: boolean;
|
|
233
|
+
/**
|
|
234
|
+
* @hidden
|
|
235
|
+
*
|
|
236
|
+
* If contentKey has changed, the popup will recalculate its position.
|
|
237
|
+
*/
|
|
238
|
+
contentKey?: any;
|
|
239
|
+
/**
|
|
240
|
+
* @hidden
|
|
241
|
+
*/
|
|
242
|
+
children?: React.ReactNode;
|
|
243
|
+
/**
|
|
244
|
+
* @hidden
|
|
245
|
+
*/
|
|
246
|
+
useBaseStyles?: boolean;
|
|
247
|
+
/**
|
|
248
|
+
* @hidden
|
|
249
|
+
*/
|
|
250
|
+
role?: string;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* The PopupPropsContext. It allows to configure the Popup props from a wrapper component.
|
|
255
|
+
*
|
|
256
|
+
* @example
|
|
257
|
+
* ```jsx-no-run
|
|
258
|
+
* <PopupPropsContext.Provider value={props => ({ ...props, appendTo: document.querySelector('myPopupsContainer') })}>
|
|
259
|
+
* <DropDownList />
|
|
260
|
+
* <Editor />
|
|
261
|
+
* </PopupPropsContext.Provider>
|
|
262
|
+
* ```
|
|
263
|
+
*/
|
|
264
|
+
export declare const PopupPropsContext: React_2.Context<(props: PopupProps) => PopupProps>;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @hidden
|
|
268
|
+
*/
|
|
269
|
+
declare interface PopupState {
|
|
270
|
+
current: Status;
|
|
271
|
+
previous: Status;
|
|
272
|
+
props: {
|
|
273
|
+
show?: boolean;
|
|
274
|
+
anchor?: HTMLElement;
|
|
275
|
+
anchorAlign?: Align;
|
|
276
|
+
appendTo?: HTMLElement;
|
|
277
|
+
collision?: Collision;
|
|
278
|
+
popupAlign?: Align;
|
|
279
|
+
className?: string | Array<string>;
|
|
280
|
+
popupClass?: string | Array<string>;
|
|
281
|
+
style?: React_2.CSSProperties;
|
|
282
|
+
offset?: Offset;
|
|
283
|
+
contentKey?: any;
|
|
284
|
+
};
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* @hidden
|
|
289
|
+
*/
|
|
290
|
+
export declare class PopupWithoutContext extends React_2.Component<PopupProps, PopupState> {
|
|
291
|
+
/**
|
|
292
|
+
* @hidden
|
|
293
|
+
*/
|
|
294
|
+
static propTypes: {
|
|
295
|
+
anchor: (props: PopupProps) => Error | null;
|
|
296
|
+
appendTo: (props: PopupProps) => Error | null;
|
|
297
|
+
className: PropTypes.Requireable<NonNullable<string | object | null | undefined>>;
|
|
298
|
+
id: PropTypes.Requireable<string>;
|
|
299
|
+
popupClass: PropTypes.Requireable<NonNullable<string | object | null | undefined>>;
|
|
300
|
+
collision: PropTypes.Requireable<PropTypes.InferProps<{
|
|
301
|
+
horizontal: PropTypes.Requireable<string>;
|
|
302
|
+
vertical: PropTypes.Requireable<string>;
|
|
303
|
+
}>>;
|
|
304
|
+
anchorAlign: PropTypes.Requireable<PropTypes.InferProps<{
|
|
305
|
+
horizontal: PropTypes.Requireable<string>;
|
|
306
|
+
vertical: PropTypes.Requireable<string>;
|
|
307
|
+
}>>;
|
|
308
|
+
popupAlign: PropTypes.Requireable<PropTypes.InferProps<{
|
|
309
|
+
horizontal: PropTypes.Requireable<string>;
|
|
310
|
+
vertical: PropTypes.Requireable<string>;
|
|
311
|
+
}>>;
|
|
312
|
+
offset: PropTypes.Requireable<PropTypes.InferProps<{
|
|
313
|
+
left: PropTypes.Requireable<number>;
|
|
314
|
+
top: PropTypes.Requireable<number>;
|
|
315
|
+
}>>;
|
|
316
|
+
children: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
|
|
317
|
+
show: PropTypes.Requireable<boolean>;
|
|
318
|
+
animate: PropTypes.Requireable<NonNullable<boolean | PropTypes.InferProps<{
|
|
319
|
+
openDuration: PropTypes.Requireable<number>;
|
|
320
|
+
closeDuration: PropTypes.Requireable<number>;
|
|
321
|
+
}> | null | undefined>>;
|
|
322
|
+
margin: PropTypes.Requireable<PropTypes.InferProps<{
|
|
323
|
+
horizontal: PropTypes.Requireable<number>;
|
|
324
|
+
vertical: PropTypes.Requireable<number>;
|
|
325
|
+
}>>;
|
|
326
|
+
positionMode: PropTypes.Requireable<string>;
|
|
327
|
+
scale: PropTypes.Requireable<number>;
|
|
328
|
+
style: PropTypes.Requireable<object>;
|
|
329
|
+
onClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
330
|
+
onPosition: PropTypes.Requireable<(...args: any[]) => any>;
|
|
331
|
+
onOpen: PropTypes.Requireable<(...args: any[]) => any>;
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* @hidden
|
|
335
|
+
*/
|
|
336
|
+
static defaultProps: {
|
|
337
|
+
collision: {
|
|
338
|
+
horizontal: string;
|
|
339
|
+
vertical: string;
|
|
340
|
+
};
|
|
341
|
+
anchorAlign: {
|
|
342
|
+
horizontal: string;
|
|
343
|
+
vertical: string;
|
|
344
|
+
};
|
|
345
|
+
popupAlign: {
|
|
346
|
+
horizontal: string;
|
|
347
|
+
vertical: string;
|
|
348
|
+
};
|
|
349
|
+
offset: {
|
|
350
|
+
left: number;
|
|
351
|
+
top: number;
|
|
352
|
+
};
|
|
353
|
+
animate: boolean;
|
|
354
|
+
show: boolean;
|
|
355
|
+
margin: {
|
|
356
|
+
horizontal: number;
|
|
357
|
+
vertical: number;
|
|
358
|
+
};
|
|
359
|
+
positionMode: string;
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @hidden
|
|
363
|
+
*/
|
|
364
|
+
static contextType: React_2.Context<ZIndexContextType>;
|
|
365
|
+
/**
|
|
366
|
+
* @hidden
|
|
367
|
+
*/
|
|
368
|
+
context: React_2.ContextType<typeof ZIndexContext>;
|
|
369
|
+
/**
|
|
370
|
+
* @hidden
|
|
371
|
+
*/
|
|
372
|
+
static displayName: string;
|
|
373
|
+
/**
|
|
374
|
+
* @hidden
|
|
375
|
+
*/
|
|
376
|
+
readonly state: PopupState;
|
|
377
|
+
private _collisions;
|
|
378
|
+
private _scrollableParents;
|
|
379
|
+
private _popup;
|
|
380
|
+
/**
|
|
381
|
+
* Represents the Popup DOM element.
|
|
382
|
+
*/
|
|
383
|
+
get element(): HTMLDivElement | null;
|
|
384
|
+
constructor(props: PopupProps);
|
|
385
|
+
/**
|
|
386
|
+
* @hidden
|
|
387
|
+
*/
|
|
388
|
+
static getDerivedStateFromProps(props: PopupProps, state: PopupState): {
|
|
389
|
+
props: {
|
|
390
|
+
show: boolean | undefined;
|
|
391
|
+
anchor: HTMLElement | null | undefined;
|
|
392
|
+
anchorAlign: Align | undefined;
|
|
393
|
+
appendTo: HTMLElement | null | undefined;
|
|
394
|
+
collision: Collision | undefined;
|
|
395
|
+
popupAlign: Align | undefined;
|
|
396
|
+
className: string | string[] | undefined;
|
|
397
|
+
popupClass: string | string[] | {
|
|
398
|
+
[key: string]: boolean;
|
|
399
|
+
} | undefined;
|
|
400
|
+
style: React_2.CSSProperties | undefined;
|
|
401
|
+
offset: Offset | undefined;
|
|
402
|
+
contentKey: any;
|
|
403
|
+
};
|
|
404
|
+
current: Status;
|
|
405
|
+
previous: Status;
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
*
|
|
409
|
+
* @hidden
|
|
410
|
+
*/
|
|
411
|
+
componentDidUpdate(prevProps: PopupProps): void;
|
|
412
|
+
/**
|
|
413
|
+
* @hidden
|
|
414
|
+
*/
|
|
415
|
+
componentDidMount(): void;
|
|
416
|
+
/**
|
|
417
|
+
* @hidden
|
|
418
|
+
*/
|
|
419
|
+
componentWillUnmount(): void;
|
|
420
|
+
/**
|
|
421
|
+
* @hidden
|
|
422
|
+
*/
|
|
423
|
+
render(): JSX_2.Element | null;
|
|
424
|
+
private show;
|
|
425
|
+
private setPosition;
|
|
426
|
+
private onOpened;
|
|
427
|
+
private animate;
|
|
428
|
+
private onClosing;
|
|
429
|
+
private onClosed;
|
|
430
|
+
private get animationDuration();
|
|
431
|
+
private attachRepositionHandlers;
|
|
432
|
+
private detachRepositionHandlers;
|
|
433
|
+
private reposition;
|
|
434
|
+
private getCurrentZIndex;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Represents the object of the `Position` Popup event.
|
|
439
|
+
*/
|
|
440
|
+
declare interface PositionEvent {
|
|
441
|
+
/**
|
|
442
|
+
* An event target.
|
|
443
|
+
*/
|
|
444
|
+
target: Popup;
|
|
445
|
+
/**
|
|
446
|
+
* Indicates if the position is fitted.
|
|
447
|
+
*/
|
|
448
|
+
fitted: boolean;
|
|
449
|
+
/**
|
|
450
|
+
* Indicates if the position is flipped.
|
|
451
|
+
*/
|
|
452
|
+
flipped: boolean;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* The type which defines all possible position modes of the Popup.
|
|
457
|
+
*/
|
|
458
|
+
export declare type PositionMode = PositionMode_2;
|
|
459
|
+
|
|
460
|
+
declare enum Status {
|
|
461
|
+
hiding = "hiding",
|
|
462
|
+
hidden = "hidden",
|
|
463
|
+
showing = "showing",
|
|
464
|
+
shown = "shown",
|
|
465
|
+
reposition = "reposition"
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
export { }
|