@fixefy/fixefy-ui-utils 0.2.15 → 0.2.16

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.
@@ -34,5 +34,4 @@ export declare const getVariablesKeys: ({ variables, operationType }: {
34
34
  operationType: string;
35
35
  }) => {} | undefined;
36
36
  export declare const insertNewVariable: ({ operationName, schema, key, value, _variables, action }: any) => void;
37
- export declare const isArgMandatory: (arg: any) => boolean;
38
37
  export declare const parseInputDataToDataObject: ({ key, value, parent, method, list, state }: any) => any;
@@ -36,9 +36,6 @@ _export(exports, {
36
36
  insertNewVariable: function() {
37
37
  return insertNewVariable;
38
38
  },
39
- isArgMandatory: function() {
40
- return isArgMandatory;
41
- },
42
39
  operationTypes: function() {
43
40
  return operationTypes;
44
41
  },
@@ -47,7 +44,6 @@ _export(exports, {
47
44
  }
48
45
  });
49
46
  const _pluralize = /*#__PURE__*/ _interop_require_default(require("pluralize"));
50
- const _language = require("graphql/language");
51
47
  function _define_property(obj, key, value) {
52
48
  if (key in obj) {
53
49
  Object.defineProperty(obj, key, {
@@ -209,11 +205,6 @@ const insertNewVariable = ({ operationName, schema, key, value, _variables, acti
209
205
  }
210
206
  });
211
207
  };
212
- const isArgMandatory = (arg)=>{
213
- const kind = getTypeKind(arg);
214
- const rv = kind === _language.Kind.NON_NULL_TYPE;
215
- return rv;
216
- };
217
208
  const parseInputDataToDataObject = ({ key, value, parent, method, list, state })=>{
218
209
  let rv = state;
219
210
  const type = typeof value;
@@ -193,6 +193,7 @@ declare module '@mui/material/styles' {
193
193
  billed: StatusColorOption;
194
194
  challenge: StatusColorOption;
195
195
  challenged: StatusColorOption;
196
+ closed: StatusColorOption;
196
197
  declined: StatusColorOption;
197
198
  discrepancy: StatusColorOption;
198
199
  duplicate: StatusColorOption;
@@ -271,6 +271,10 @@ const theme = (0, _styles.createTheme)({
271
271
  border: '#F7C08F',
272
272
  background: '#FEFAF6'
273
273
  },
274
+ closed: {
275
+ border: '#8B9092',
276
+ background: '#8B9092'
277
+ },
274
278
  declined: {
275
279
  border: '#F48085',
276
280
  background: '#FEF5F5'
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "require": "./dist/index.js"
57
57
  }
58
58
  },
59
- "version": "0.2.15"
59
+ "version": "0.2.16"
60
60
  }