dfh-ui-library 1.13.119 → 1.13.121

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.
@@ -518,7 +518,7 @@ export interface ButtonGroupProps extends InputGroupProps {
518
518
  selectedUserValues?: OptionProps[];
519
519
  setSelectedUserValues?: (users: OptionProps[]) => void;
520
520
  }
521
- export interface ButtonGroupWithInputsProps extends Omit<ButtonGroupProps, 'selected' | 'onSelect'> {
521
+ export interface ButtonGroupWithInputsProps extends Omit<ButtonGroupProps, "selected" | "onSelect"> {
522
522
  options: {
523
523
  id: number;
524
524
  value: string;
@@ -981,6 +981,10 @@ export interface SignatureProps {
981
981
  onSelect: (signature: string) => void;
982
982
  label?: string;
983
983
  labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
984
+ additionalErrorClasses?: string;
985
+ isAdditionalErrorInput?: boolean;
986
+ isBorderedError?: boolean;
987
+ error?: string;
984
988
  }
985
989
  export interface SolutionItem {
986
990
  solution: ISolutionvalues;
package/dist/index.d.ts CHANGED
@@ -849,6 +849,10 @@ interface SignatureProps {
849
849
  onSelect: (signature: string) => void;
850
850
  label?: string;
851
851
  labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
852
+ additionalErrorClasses?: string;
853
+ isAdditionalErrorInput?: boolean;
854
+ isBorderedError?: boolean;
855
+ error?: string;
852
856
  }
853
857
  interface SolutionItem {
854
858
  solution: ISolutionvalues;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.119",
3
+ "version": "1.13.121",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",