dfh-ui-library 1.13.91 → 1.13.93

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 { UserDropdownProps } from "../../shared/models/components/common.model";
3
+ declare const SelectDropdownUser: React.FC<UserDropdownProps>;
4
+ export default SelectDropdownUser;
@@ -1,2 +1,3 @@
1
1
  export { default } from "./SelectDropdownUser";
2
2
  export { default as SelectUserWithButton } from "./SelectUserWithButton";
3
+ export { default as SelectDropdownUserV2 } from "./SelectDropdownUserV2";
@@ -969,6 +969,7 @@ export interface TabButtonProps {
969
969
  setSelectedValues?: (selectedValue: string) => void;
970
970
  selectedValues?: string;
971
971
  additionalClasses?: string;
972
+ useBlueActive?: boolean;
972
973
  }
973
974
  export interface SignatureProps {
974
975
  selected?: selectedValue;
package/dist/index.d.ts CHANGED
@@ -837,6 +837,7 @@ interface TabButtonProps {
837
837
  setSelectedValues?: (selectedValue: string) => void;
838
838
  selectedValues?: string;
839
839
  additionalClasses?: string;
840
+ useBlueActive?: boolean;
840
841
  }
841
842
  interface SignatureProps {
842
843
  selected?: selectedValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.91",
3
+ "version": "1.13.93",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",