beesoft-components 0.11.0 → 0.12.0-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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beesoft-components",
3
- "version": "0.11.0",
3
+ "version": "0.12.0-0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "author": {
@@ -34,15 +34,17 @@
34
34
  "chromatic": "chromatic --project-token $CHROMATIC_PROJECT_TOKEN"
35
35
  },
36
36
  "dependencies": {
37
- "@beesoft/common": "^0.2.0",
37
+ "@beesoft/common": "^0.2.1",
38
38
  "@beesoft/headless-ui": "^0.1.0",
39
39
  "@preact/signals": "^2.5.1",
40
40
  "@react-hook/media-query": "^1.1.1",
41
41
  "classnames": "^2.3.2",
42
42
  "date-fns": "^3.3.1",
43
43
  "dot-object": "^2.1.4",
44
+ "konva": "^10.0.12",
44
45
  "lodash": "^4.17.21",
45
46
  "motion": "^12.24.10",
47
+ "react-konva": "^19.2.1",
46
48
  "uuid": "^9.0.1"
47
49
  },
48
50
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { CheckboxChangeEvent } from '@beesoft/headless-ui';
3
3
  import { CheckboxProps as CheckboxProps_2 } from '@beesoft/headless-ui';
4
4
  import { ComponentAnimationProps } from '@beesoft/headless-ui';
5
5
  import { default as default_2 } from 'react';
6
+ import { Easing } from 'motion';
6
7
  import { FormInputControl } from '@beesoft/common';
7
8
  import { FormInputControlData } from '@beesoft/common';
8
9
  import { ForwardRefExoticComponent } from 'react';
@@ -466,7 +467,7 @@ declare interface MediaQueryProps {
466
467
  desktopMarkup?: TypeOrArray<ReactNode>;
467
468
  }
468
469
 
469
- export declare const MobileOverlayPanel: ({ visible, target, appendTo, unmountWhenHidden, transitionDuration, showTransitionOptions, hideTransitionOptions, approveText, shown, hidden, isClickedWithin, children, }: MobileOverlayPanelProps) => ReactPortal;
470
+ export declare const MobileOverlayPanel: ({ visible, target, appendTo, unmountWhenHidden, transitionDuration, showTransitionOptions, hideTransitionOptions, approveText, shown, hidden, isClickedWithin, children, }: MobileOverlayPanelProps) => default_2.ReactPortal | null;
470
471
 
471
472
  declare interface MobileOverlayPanelProps {
472
473
  visible: boolean;
@@ -474,8 +475,8 @@ declare interface MobileOverlayPanelProps {
474
475
  appendTo?: HTMLElement;
475
476
  unmountWhenHidden?: boolean;
476
477
  transitionDuration?: number;
477
- showTransitionOptions?: string;
478
- hideTransitionOptions?: string;
478
+ showTransitionOptions?: Easing;
479
+ hideTransitionOptions?: Easing;
479
480
  approveText?: string;
480
481
  shown?: () => void;
481
482
  hidden?: () => void;
@@ -483,7 +484,7 @@ declare interface MobileOverlayPanelProps {
483
484
  children: TypeOrArray<ReactNode>;
484
485
  }
485
486
 
486
- export declare const OverlayPanel: ({ visible, target, targetPosition, elementAlignment, shouldTargetCloseOverlay, shouldMatchTargetWidth, shouldScrollCloseOverlay, shouldCheckZIndex, shouldRemainOnScreen, unmountWhenHidden, transitionDuration, showTransitionOptions, hideTransitionOptions, shown, hidden, isClickedWithin, markupCreated, children, }: OverlayPanelProps & MarkupEvents) => JSX_2.Element;
487
+ export declare const OverlayPanel: ({ visible, target, targetPosition, elementAlignment, shouldTargetCloseOverlay, shouldMatchTargetWidth, shouldScrollCloseOverlay, shouldCheckZIndex, shouldRemainOnScreen, unmountWhenHidden, transitionDuration, showTransitionOptions, hideTransitionOptions, shown, hidden, isClickedWithin, markupCreated, children, }: OverlayPanelProps & MarkupEvents) => JSX_2.Element | null;
487
488
 
488
489
  declare interface OverlayPanelProps {
489
490
  visible: boolean;