dfh-ui-library 1.2.43 → 1.2.44

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { DropdownMultiselectProps } from "../../shared/models/components/common.model";
3
+ declare const TagSelect: React.FC<DropdownMultiselectProps>;
4
+ export default TagSelect;
@@ -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 "./TagDropdown";
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 DropdownMultiselect: React$1.FC<DropdownMultiselectProps>;
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, DropdownMultiselect as TagDropdown, Textarea, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.2.43",
3
+ "version": "1.2.44",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",