@lax-wp/design-system 0.8.25 → 0.8.26

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,3 +1,4 @@
1
+ import { type PopoverProps } from "antd";
1
2
  import "./styles.css";
2
3
  /**
3
4
  * Available placement options for the Popper
@@ -37,6 +38,8 @@ export interface PopperProps {
37
38
  "aria-label"?: string;
38
39
  /** Whether trigger is disabled */
39
40
  disabled?: boolean;
41
+ /** Trigger type */
42
+ trigger?: PopoverProps['trigger'];
40
43
  }
41
44
  /**
42
45
  * Popper component provides positioned floating content relative to a trigger element
@@ -1,6 +1,6 @@
1
1
  import CreatableSelect from "react-select/creatable";
2
2
  import type { LabelType } from "../../data-display/label/Label";
3
- import type { ComponentProps } from "react";
3
+ import { type ComponentProps } from "react";
4
4
  /**
5
5
  * Option type for the CreatableSelect component
6
6
  */