@lax-wp/design-system 0.3.94 → 0.3.96

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.
@@ -0,0 +1 @@
1
+ export declare const FloatingElementWrapper: ({ children, showAsModal, ...props }: any) => import("react/jsx-runtime").JSX.Element;
@@ -53,6 +53,8 @@ export interface RiskDetailsCardProps<TRisk = any> {
53
53
  * Props for the LabelValue component
54
54
  */
55
55
  export interface LabelValueProps {
56
+ /** The id of the label value */
57
+ id?: string;
56
58
  /** The label text to display */
57
59
  label?: string;
58
60
  /** The value to display */
@@ -82,4 +82,4 @@ export type FileUploadDraggerProps = {
82
82
  /** Custom drag and drop text */
83
83
  dragAndDropText?: string;
84
84
  };
85
- export declare const FileUploadDragger: FC<FileUploadDraggerProps>;
85
+ export declare const FileUpload: FC<FileUploadDraggerProps>;
package/dist/index.d.ts CHANGED
@@ -56,6 +56,7 @@ export { Card } from "./components/data-display/card/Card";
56
56
  export type { CardProps } from "./components/data-display/card/Card";
57
57
  export { Modal } from "./components/data-display/modal/Modal";
58
58
  export type { ModalProps, } from "./components/data-display/modal/Modal";
59
+ export { FloatingElementWrapper } from "./components/data-display/floating-element-wrapper/floating-element-dragger";
59
60
  export { Tag } from "./components/data-display/tag/Tag";
60
61
  export type { TagProps, TagSize, TagColor, ThemeMode, UploadHandler, } from "./components/data-display/tag/Tag";
61
62
  export { LabelValue } from "./components/data-display/label-value/LabelValue";
@@ -183,8 +184,8 @@ export { NameInitialLogo } from "./components/user-avatar";
183
184
  export type { NameInitialLogoProps } from "./components/user-avatar";
184
185
  export { UserProfilePic } from "./components/user-avatar";
185
186
  export type { UserProfilePicProps } from "./components/user-avatar";
186
- export { FileUploadDragger } from "./components/forms/file-upload-dragger/FileUploadDragger";
187
- export type { FileUploadDraggerProps, } from "./components/forms/file-upload-dragger/FileUploadDragger";
187
+ export { FileUpload } from "./components/forms/file-upload-dragger/FileUpload";
188
+ export type { FileUploadDraggerProps, } from "./components/forms/file-upload-dragger/FileUpload";
188
189
  export { LottieAnimation } from "./components/data-display/lottie-animation/LottieAnimation";
189
190
  export type { LottieAnimationProps } from "./components/data-display/lottie-animation/LottieAnimation";
190
191
  export { DataTypeIcon } from "./components/data-display/datatype-icon/DataTypeIcon";