@dev-blinq/ui-systems 1.0.117 → 1.0.118

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.
@@ -14,12 +14,14 @@ interface SelectProps {
14
14
  showEditIcon?: boolean;
15
15
  showDeleteIcon?: boolean;
16
16
  showAddOption?: boolean;
17
+ showCopyIcon?: boolean;
17
18
  addOptionLabel?: string;
18
19
  fullWidth?: boolean;
19
20
  disabledAddOption?: boolean;
20
21
  onEdit?: (oldValue: string, newLabel: string) => void;
21
22
  onSave?: (value: string) => void;
22
23
  onDelete?: (value: string) => void;
24
+ onCopy?: (value: string) => void;
23
25
  menuWidth?: string;
24
26
  width?: string;
25
27
  disabled?: boolean;
@@ -28,6 +30,7 @@ interface SelectProps {
28
30
  defaultLabel?: string;
29
31
  size?: "small" | "medium";
30
32
  id?: string;
33
+ dontDeleteSelected?: boolean;
31
34
  }
32
- export declare function MUISelect({ value, onChange, options, onEdit, label, placeholder, showEditIcon, showAddOption, showDeleteIcon, addOptionLabel, fullWidth, onSave, noInlineAction, onDelete, disabledAddOption, menuWidth, width, disabled, maxChar, showWarningForTextLength, defaultLabel, size, id }: SelectProps): import("react/jsx-runtime").JSX.Element;
35
+ export declare function MUISelect({ value, onChange, options, onEdit, label, placeholder, showEditIcon, showAddOption, showDeleteIcon, addOptionLabel, fullWidth, onSave, noInlineAction, onDelete, disabledAddOption, menuWidth, width, disabled, maxChar, showWarningForTextLength, defaultLabel, size, id, dontDeleteSelected, showCopyIcon, onCopy, }: SelectProps): import("react/jsx-runtime").JSX.Element;
33
36
  export {};
@@ -12,6 +12,7 @@ export declare const EyeOffIcon: (props: LucideProps) => import("react/jsx-runti
12
12
  export declare const PlusIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
13
13
  export declare const Trash2Icon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
14
14
  export declare const CopyIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const EditIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
15
16
  export declare const ChevronRightIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
16
17
  export declare const CircleIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
17
18
  export { MailIcon, TextAreaNotchIcon };