react-crud-mobile 1.3.350 → 1.3.352
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 +6 -5
- 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 +6 -5
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UI.tsx +1 -1
- package/src/elements/UIElement.tsx +10 -9
@@ -2120,10 +2120,6 @@ function UIElement(props) {
|
|
2120
2120
|
style: scope.getPart('label', 'button'),
|
2121
2121
|
children: scope.getLabel()
|
2122
2122
|
})]
|
2123
|
-
})), scope.is('type', 'icon') && /*#__PURE__*/jsx(UIIcon, _extends({}, defaultsUI, {
|
2124
|
-
onClick: onClick,
|
2125
|
-
variant: scope.attr('variant', 'outlined'),
|
2126
|
-
children: scope.getDisplayValue()
|
2127
2123
|
})), scope.is('type', 'link') && /*#__PURE__*/jsxs(UILink, _extends({}, defaultsUI, {
|
2128
2124
|
onClick: onClick,
|
2129
2125
|
variant: scope.attr('variant', 'outlined'),
|
@@ -2238,6 +2234,10 @@ function UIElement(props) {
|
|
2238
2234
|
})), scope.isType('view') && /*#__PURE__*/jsx(UIView, _extends({}, props, {
|
2239
2235
|
scope: scope,
|
2240
2236
|
crud: crud
|
2237
|
+
})), scope.is('type', 'icon') && /*#__PURE__*/jsx(UIIcon, _extends({}, defaultsUI, {
|
2238
|
+
onClick: onClick,
|
2239
|
+
variant: scope.attr('variant', 'outlined'),
|
2240
|
+
children: scope.getDisplayValue()
|
2241
2241
|
})), isShowChild() && /*#__PURE__*/jsx(UIChildren, _extends({}, props, {
|
2242
2242
|
scope: scope,
|
2243
2243
|
crud: crud,
|
@@ -2683,7 +2683,8 @@ var UI = {
|
|
2683
2683
|
},
|
2684
2684
|
Icon: function Icon(props) {
|
2685
2685
|
return /*#__PURE__*/jsx(UIElement, _extends({}, props, {
|
2686
|
-
type: "icon"
|
2686
|
+
type: "icon",
|
2687
|
+
"transient": true
|
2687
2688
|
}));
|
2688
2689
|
},
|
2689
2690
|
Output: function Output(props) {
|