dfh-ui-library 1.3.34 → 1.3.36

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.
@@ -5,7 +5,7 @@ export { InputType } from "./shared/models/components/common.model";
5
5
  export { LogoProps } from "./shared/models/components/base.model";
6
6
  export { MessageProps } from "./shared/models/components/common.model";
7
7
  export { VariantTypes } from "./shared/models/components/base.model";
8
- export { DropdownSearchProps } from "./shared/models/components/common.model";
8
+ export { DropdownSearchProps, ClickedAction } from "./shared/models/components/common.model";
9
9
  export { BtnOptionDropdown } from "./shared/models/components/common.model";
10
10
  export { OptionProps } from "./shared/models/components/common.model";
11
11
  export { ColumnDef, SortingState } from "@tanstack/react-table";
@@ -121,6 +121,7 @@ export interface ImagePreviewProps {
121
121
  text?: string;
122
122
  isSmall?: boolean;
123
123
  bgColor?: string;
124
+ textClasses?: string;
124
125
  }
125
126
  export interface ImageInputProps {
126
127
  imageUrl?: string;
@@ -275,7 +276,7 @@ export interface OptionProps {
275
276
  iconText: string;
276
277
  imageUrl?: string;
277
278
  bgColor?: string;
278
- clickedAction?: string;
279
+ clickedAction?: ClickedAction;
279
280
  }
280
281
  export interface BtnOptionDropdown {
281
282
  btnLabel: string;
@@ -294,8 +295,12 @@ export interface DropdownSearchProps {
294
295
  additionalClasses?: string;
295
296
  readOnly?: boolean;
296
297
  isBorderedError?: boolean;
297
- AddMeBtnClick: () => void;
298
- AddUnregisterBtnClick: () => void;
298
+ }
299
+ export declare enum ClickedAction {
300
+ NONE = "NONE",
301
+ ADDME = "ADDME",
302
+ ADDREGISTERED = "ADDREGISTERED",
303
+ ADDUNREGISTERED = "ADDUNREGISTERED"
299
304
  }
300
305
  export type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
301
306
  export interface ButtonGroupProps {