dfh-ui-library 1.12.745 → 1.12.747
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +3 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -368,6 +368,7 @@ export interface BtnOptionDropdown {
|
|
368
368
|
btnLabel: string;
|
369
369
|
btnAction: () => void;
|
370
370
|
variants?: VariantTypes;
|
371
|
+
btnType?: string;
|
371
372
|
}
|
372
373
|
export interface DropdownSearchProps {
|
373
374
|
options?: OptionProps[];
|
@@ -447,7 +448,8 @@ export declare enum ClickedAction {
|
|
447
448
|
NONE = "NONE",
|
448
449
|
ADDME = "ADDME",
|
449
450
|
ADDREGISTERED = "ADDREGISTERED",
|
450
|
-
ADDUNREGISTERED = "ADDUNREGISTERED"
|
451
|
+
ADDUNREGISTERED = "ADDUNREGISTERED",
|
452
|
+
REMOVE = "REMOVE"
|
451
453
|
}
|
452
454
|
export type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
|
453
455
|
interface InputObject {
|