dfh-ui-library 1.2.55 → 1.2.56
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -7,3 +7,4 @@ export { MessageProps } from "./shared/models/components/common.model";
|
|
|
7
7
|
export { VariantTypes } from "./shared/models/components/base.model";
|
|
8
8
|
export { DropdownSearchProps } from "./shared/models/components/common.model";
|
|
9
9
|
export { BtnOptionDropdown } from "./shared/models/components/common.model";
|
|
10
|
+
export { OptionProps } from "./shared/models/components/common.model";
|
|
@@ -280,7 +280,7 @@ export interface BtnOptionDropdown {
|
|
|
280
280
|
variants?: VariantTypes;
|
|
281
281
|
}
|
|
282
282
|
export interface DropdownSearchProps {
|
|
283
|
-
options
|
|
283
|
+
options?: OptionProps[];
|
|
284
284
|
label?: string;
|
|
285
285
|
labelType?: LableTypes;
|
|
286
286
|
onSelectedValuesChange?: (selectedValue: OptionProps) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -239,7 +239,7 @@ interface BtnOptionDropdown {
|
|
|
239
239
|
variants?: VariantTypes;
|
|
240
240
|
}
|
|
241
241
|
interface DropdownSearchProps {
|
|
242
|
-
options
|
|
242
|
+
options?: OptionProps[];
|
|
243
243
|
label?: string;
|
|
244
244
|
labelType?: LableTypes;
|
|
245
245
|
onSelectedValuesChange?: (selectedValue: OptionProps) => void;
|
|
@@ -727,4 +727,4 @@ declare const useSchemaProcessor: ({ schema, externalSetComponents, }: UseSchema
|
|
|
727
727
|
componentsRtn: IComponent[] | undefined;
|
|
728
728
|
};
|
|
729
729
|
|
|
730
|
-
export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, Heading, IconInput, ImageInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, PhoneNumberInput, RadioButton, Row, SearchDropdownWithButton, Select, TagSelect as TagDropdown, TagSelect, Textarea, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes };
|
|
730
|
+
export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, Heading, IconInput, ImageInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, type OptionProps, PhoneNumberInput, RadioButton, Row, SearchDropdownWithButton, Select, TagSelect as TagDropdown, TagSelect, Textarea, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes };
|