@fixefy/fixefy-ui-components 0.2.26 → 0.2.28

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.
@@ -155,11 +155,11 @@ const FxAsyncDropdown = /*#__PURE__*/ _react.default.forwardRef((props)=>{
155
155
  }
156
156
  };
157
157
  const [fetch, { data, loading }] = (0, _client.useLazyQuery)((0, _graphqltag.gql)(isLocal ? fetcher.query.loc.source.body : fetcher.query), _object_spread_props(_object_spread({}, fetcher.queryOptions), {
158
- variables: _object_spread_props(_object_spread({}, where), {
158
+ variables: {
159
159
  where: getWhere(),
160
160
  skip: page * pageSize - pageSize,
161
161
  limit: pageSize
162
- })
162
+ }
163
163
  }));
164
164
  (0, _react.useEffect)(()=>{
165
165
  if (!disabled) {
@@ -66,14 +66,16 @@ const FxModalWithButton = ({ btnValue, modalData, onClick })=>{
66
66
  setIsOpen(false);
67
67
  setAnchorEl(null);
68
68
  };
69
- return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, {
69
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Box, {
70
70
  children: [
71
71
  /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Button, {
72
72
  id: "fade-button",
73
73
  "aria-haspopup": "true",
74
74
  onClick: handleClick,
75
75
  sx: {
76
- fontWeight: 'normal'
76
+ fontWeight: 'normal',
77
+ width: '100%',
78
+ justifyContent: 'flex-start'
77
79
  },
78
80
  children: btnValue
79
81
  }),
package/package.json CHANGED
@@ -65,5 +65,5 @@
65
65
  "require": "./dist/index.js"
66
66
  }
67
67
  },
68
- "version": "0.2.26"
68
+ "version": "0.2.28"
69
69
  }