dfh-ui-library 1.2.43 → 1.2.46
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/components/TagSelect/TagSelect.d.ts +4 -0
- package/dist/cjs/types/components/TagSelect/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +2 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/TagSelect/TagSelect.d.ts +4 -0
- package/dist/esm/types/components/TagSelect/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +2 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./TagSelect";
|
|
@@ -18,6 +18,7 @@ export { default as DialogBox } from "../components/core/DialogBox";
|
|
|
18
18
|
export { default as Modal } from "../components/Modal";
|
|
19
19
|
export { default as CustomFileInput } from "./CustomFileInput";
|
|
20
20
|
export { Heading } from "./core/Heading";
|
|
21
|
-
export { default as TagDropdown } from "./
|
|
21
|
+
export { default as TagDropdown } from "./TagSelect";
|
|
22
22
|
export { default as SearchDropdownWithButton } from "./SearchDropdownWithButton";
|
|
23
23
|
export { default as ButtonGroup } from "./ButtonGroup";
|
|
24
|
+
export { default as TagSelect } from "./TagSelect";
|
|
@@ -5,3 +5,5 @@ 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";
|
|
9
|
+
export { BtnOptionDropdown } from "./shared/models/components/common.model";
|
package/dist/index.d.ts
CHANGED
|
@@ -640,7 +640,7 @@ interface HeadingProps {
|
|
|
640
640
|
*/
|
|
641
641
|
declare const Heading: React$1.FC<HeadingProps>;
|
|
642
642
|
|
|
643
|
-
declare const
|
|
643
|
+
declare const TagSelect: React$1.FC<DropdownMultiselectProps>;
|
|
644
644
|
|
|
645
645
|
declare const SearchDropdownWithButton: React$1.FC<DropdownSearchProps>;
|
|
646
646
|
|
|
@@ -654,4 +654,4 @@ declare const useSchemaProcessor: ({ schema, externalSetComponents, }: UseSchema
|
|
|
654
654
|
componentsRtn: IComponent[] | undefined;
|
|
655
655
|
};
|
|
656
656
|
|
|
657
|
-
export { Breadcrumb, Button, ButtonGroup, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, Heading, IconInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, PhoneNumberInput, RadioButton, Row, SearchDropdownWithButton, Select,
|
|
657
|
+
export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, Heading, IconInput, 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 };
|