Blame view

天文台pc/tianwentai-ui/node_modules/@radix-ui/react-dismissable-layer/dist/index.d.ts 2.29 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  import * as React from 'react';
  import { Primitive } from '@radix-ui/react-primitive';
  
  type PrimitiveDivProps = React.ComponentPropsWithoutRef<typeof Primitive.div>;
  interface DismissableLayerProps extends PrimitiveDivProps {
      /**
       * When `true`, hover/focus/click interactions will be disabled on elements outside
       * the `DismissableLayer`. Users will need to click twice on outside elements to
       * interact with them: once to close the `DismissableLayer`, and again to trigger the element.
       */
      disableOutsidePointerEvents?: boolean;
      /**
       * Event handler called when the escape key is down.
       * Can be prevented.
       */
      onEscapeKeyDown?: (event: KeyboardEvent) => void;
      /**
       * Event handler called when the a `pointerdown` event happens outside of the `DismissableLayer`.
       * Can be prevented.
       */
      onPointerDownOutside?: (event: PointerDownOutsideEvent) => void;
      /**
       * Event handler called when the focus moves outside of the `DismissableLayer`.
       * Can be prevented.
       */
      onFocusOutside?: (event: FocusOutsideEvent) => void;
      /**
       * Event handler called when an interaction happens outside the `DismissableLayer`.
       * Specifically, when a `pointerdown` event happens outside or focus moves outside of it.
       * Can be prevented.
       */
      onInteractOutside?: (event: PointerDownOutsideEvent | FocusOutsideEvent) => void;
      /**
       * Handler called when the `DismissableLayer` should be dismissed
       */
      onDismiss?: () => void;
  }
  declare const DismissableLayer: React.ForwardRefExoticComponent<DismissableLayerProps & React.RefAttributes<HTMLDivElement>>;
  interface DismissableLayerBranchProps extends PrimitiveDivProps {
  }
  declare const DismissableLayerBranch: React.ForwardRefExoticComponent<DismissableLayerBranchProps & React.RefAttributes<HTMLDivElement>>;
  type PointerDownOutsideEvent = CustomEvent<{
      originalEvent: PointerEvent;
  }>;
  type FocusOutsideEvent = CustomEvent<{
      originalEvent: FocusEvent;
  }>;
  declare const Root: React.ForwardRefExoticComponent<DismissableLayerProps & React.RefAttributes<HTMLDivElement>>;
  declare const Branch: React.ForwardRefExoticComponent<DismissableLayerBranchProps & React.RefAttributes<HTMLDivElement>>;
  
  export { Branch, DismissableLayer, DismissableLayerBranch, type DismissableLayerProps, Root };