react-crud-mobile 1.0.617 → 1.0.618
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/react-crud-mobile.cjs.development.js +3 -0
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIChildren.tsx +3 -0
|
@@ -109,6 +109,9 @@ export default function UIChildren(props: UIChildrenType) {
|
|
|
109
109
|
let key = Utils.nvl(part, 'root');
|
|
110
110
|
let def = styles[key];
|
|
111
111
|
|
|
112
|
+
if (!Utils.isEmpty(props.style)) {
|
|
113
|
+
console.log(props.style);
|
|
114
|
+
}
|
|
112
115
|
return { ...def, ...scope.getStyle(part) };
|
|
113
116
|
};
|
|
114
117
|
|