@zeturn/watercolor-react 1.2.2 → 1.2.3

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.
@@ -1 +1 @@
1
- {"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/Autocomplete/Autocomplete.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAsWC"}
1
+ {"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../../src/components/Autocomplete/Autocomplete.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAwWC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.jsx"],"names":[],"mappings":"AAWA;;;GAGG;AACH;;;;;;;;;;;;;4CAgNC"}
1
+ {"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.jsx"],"names":[],"mappings":"AAYA;;;GAGG;AACH;;;;;;;;;;;;;4CAiNC"}
@@ -1 +1 @@
1
- {"version":3,"file":"HoverCard.d.ts","sourceRoot":"","sources":["../../../src/components/HoverCard/HoverCard.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;4CA+IC"}
1
+ {"version":3,"file":"HoverCard.d.ts","sourceRoot":"","sources":["../../../src/components/HoverCard/HoverCard.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;4CA+KC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../src/components/Menu/Menu.jsx"],"names":[],"mappings":";AAaA;;;;;;;;;;;;;;;;;;;;4CA6KC"}
1
+ {"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../src/components/Menu/Menu.jsx"],"names":[],"mappings":";AAeA;;;;;;;;;;;;;;;;;;;;4CA6PC"}
@@ -1,4 +1,3 @@
1
- import { default as React } from 'react';
2
1
  export default Modal;
3
2
  declare function Modal({ visible, open, title, size, maxWidth, closable, showCloseButton, maskClosable, closeOnOverlay, disableBackdropClick, disableEscapeKeyDown, centered, fullWidth, fullScreen, position, scroll, lockScroll, zIndex, showOverlay, className, onClose, children, header, footer, ...props }: {
4
3
  [x: string]: any;
@@ -26,7 +25,7 @@ declare function Modal({ visible, open, title, size, maxWidth, closable, showClo
26
25
  children: any;
27
26
  header: any;
28
27
  footer: any;
29
- }): React.ReactPortal | null;
28
+ }): import("react/jsx-runtime").JSX.Element | null;
30
29
  declare namespace Modal {
31
30
  let displayName: string;
32
31
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../src/components/Modal/Modal.jsx"],"names":[],"mappings":";AAcA;;;;;;;;;;;;;;;;;;;;;;;;;;6BA+MC;;;;kBA7NyD,OAAO"}
1
+ {"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../src/components/Modal/Modal.jsx"],"names":[],"mappings":";AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;mDAwKC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../src/components/Popover/Popover.jsx"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH;;;;;;;;;4CA2IC"}
1
+ {"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../src/components/Popover/Popover.jsx"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH;;;;;;;;;4CA2FC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAiRC"}
1
+ {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAiUC"}
@@ -1,4 +1,3 @@
1
- import { default as React } from 'react';
2
1
  export default SlideOver;
3
2
  /**
4
3
  * SlideOver (React)
@@ -12,5 +11,5 @@ declare function SlideOver({ open, onClose, placement, width, children, header,
12
11
  children: any;
13
12
  header: any;
14
13
  footer: any;
15
- }): React.ReactPortal | null;
14
+ }): import("react/jsx-runtime").JSX.Element;
16
15
  //# sourceMappingURL=SlideOver.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SlideOver.d.ts","sourceRoot":"","sources":["../../../src/components/SlideOver/SlideOver.jsx"],"names":[],"mappings":";AAIA;;;GAGG;AACH;;;;;;;;6BAiDC;kBAzDwC,OAAO"}
1
+ {"version":3,"file":"SlideOver.d.ts","sourceRoot":"","sources":["../../../src/components/SlideOver/SlideOver.jsx"],"names":[],"mappings":";AAIA;;;GAGG;AACH;;;;;;;;4CA8CC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/Tooltip/Tooltip.jsx"],"names":[],"mappings":"AAIA;;;;;4CA6CC"}
1
+ {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/Tooltip/Tooltip.jsx"],"names":[],"mappings":"AAKA;;;;;4CA0DC"}
@@ -0,0 +1,27 @@
1
+ export function Portal({ children, target }: {
2
+ children: any;
3
+ target: any;
4
+ }): import('react').ReactPortal | null;
5
+ export function useOverlayLayer({ open, elementRef, refs, modal, lockScroll, restoreFocus, initialFocus, closeOnEscape, closeOnPointerDownOutside, onEscapeKeyDown, onPointerDownOutside, zIndex, }: {
6
+ open: any;
7
+ elementRef: any;
8
+ refs?: never[] | undefined;
9
+ modal?: boolean | undefined;
10
+ lockScroll?: boolean | undefined;
11
+ restoreFocus?: boolean | undefined;
12
+ initialFocus?: boolean | undefined;
13
+ closeOnEscape?: boolean | undefined;
14
+ closeOnPointerDownOutside?: boolean | undefined;
15
+ onEscapeKeyDown: any;
16
+ onPointerDownOutside: any;
17
+ zIndex: any;
18
+ }): import('react').RefObject<null>;
19
+ export function useFloatingPosition({ open, anchorRef, floatingRef, placement, offset, boundaryPadding, }: {
20
+ open: any;
21
+ anchorRef: any;
22
+ floatingRef: any;
23
+ placement?: string | undefined;
24
+ offset?: number | undefined;
25
+ boundaryPadding?: number | undefined;
26
+ }): string;
27
+ //# sourceMappingURL=interactions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interactions.d.ts","sourceRoot":"","sources":["../src/interactions.jsx"],"names":[],"mappings":"AAMA;;;uCAKC;AAED;;;;;;;;;;;;;oCA8DC;AAED;;;;;;;WAiCC"}