pds-dev-kit-web-test 2.7.289 → 2.7.290
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.
| 
         @@ -111,9 +111,9 @@ var GridAutoRowEditor = (0, react_1.forwardRef)(function CustomSection(props, re 
     | 
|
| 
       111 
111 
     | 
    
         
             
                    maxHeight: "".concat(maxHeight, "px"),
         
     | 
| 
       112 
112 
     | 
    
         
             
                    width: "100%",
         
     | 
| 
       113 
113 
     | 
    
         
             
                    maxWidth: maxWidth ? "".concat(maxWidth, "px") : '100%',
         
     | 
| 
       114 
     | 
    
         
            -
                    minWidth:  
     | 
| 
      
 114 
     | 
    
         
            +
                    // minWidth: `${Math.max(canvasWidth, minWidth ?? 0)}px`
         
     | 
| 
      
 115 
     | 
    
         
            +
                    minWidth: "".concat(minWidth, "px")
         
     | 
| 
       115 
116 
     | 
    
         
             
                };
         
     | 
| 
       116 
     | 
    
         
            -
                console.log(customSectionStyles);
         
     | 
| 
       117 
117 
     | 
    
         
             
                var onClickSection = function () {
         
     | 
| 
       118 
118 
     | 
    
         
             
                    if (!isEditMode) {
         
     | 
| 
       119 
119 
     | 
    
         
             
                        return;
         
     |