ods-component-lib 1.17.100 → 1.17.103
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/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -603,7 +603,8 @@ function OdsPhoneInput(props) {
|
|
|
603
603
|
placeholder: props === null || props === void 0 ? void 0 : props.placeholder,
|
|
604
604
|
inputProps: {
|
|
605
605
|
required: props === null || props === void 0 ? void 0 : props.required
|
|
606
|
-
}
|
|
606
|
+
},
|
|
607
|
+
disabled: props.disabled ? props.disabled : false
|
|
607
608
|
}));
|
|
608
609
|
}
|
|
609
610
|
|
|
@@ -1396,6 +1397,8 @@ function grid(props, dataGridRef) {
|
|
|
1396
1397
|
if (props.customPopup !== undefined) {
|
|
1397
1398
|
return React__default.createElement(dataGrid.Column, {
|
|
1398
1399
|
dataField: "Actions",
|
|
1400
|
+
fixed: true,
|
|
1401
|
+
allowSorting: false,
|
|
1399
1402
|
caption: props.ColumnAction,
|
|
1400
1403
|
type: "buttons",
|
|
1401
1404
|
width: 110,
|