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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +8 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +8 -3
- package/dist/index.d.ts +9 -4
- package/package.json +1 -1
|
@@ -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?:
|
|
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
|
-
|
|
298
|
-
|
|
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 {
|