dfh-ui-library 1.14.28 → 1.14.30
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/shared/models/components/common.model.d.ts +2 -0
 - package/dist/esm/index.js +1 -1
 - package/dist/esm/index.js.map +1 -1
 - package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
 - package/dist/index.d.ts +2 -0
 - package/package.json +1 -1
 
| 
         @@ -723,6 +723,7 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps { 
     | 
|
| 
       723 
723 
     | 
    
         
             
                options: {
         
     | 
| 
       724 
724 
     | 
    
         
             
                    id: number;
         
     | 
| 
       725 
725 
     | 
    
         
             
                    value: string;
         
     | 
| 
      
 726 
     | 
    
         
            +
                    displayName?: string;
         
     | 
| 
       726 
727 
     | 
    
         
             
                }[];
         
     | 
| 
       727 
728 
     | 
    
         
             
                onSelect: (selectedOption: selectedValue) => void;
         
     | 
| 
       728 
729 
     | 
    
         
             
                label?: string;
         
     | 
| 
         @@ -778,6 +779,7 @@ export interface selectedValue { 
     | 
|
| 
       778 
779 
     | 
    
         
             
                valueRef?: any;
         
     | 
| 
       779 
780 
     | 
    
         
             
                answerPrevData?: IAnswerPrevData;
         
     | 
| 
       780 
781 
     | 
    
         
             
                updatedDate?: string;
         
     | 
| 
      
 782 
     | 
    
         
            +
                displayName?: string;
         
     | 
| 
       781 
783 
     | 
    
         
             
            }
         
     | 
| 
       782 
784 
     | 
    
         
             
            export interface IAnswerPrevData {
         
     | 
| 
       783 
785 
     | 
    
         
             
                answerLabel: string;
         
     |