@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.
package/dist/graphql/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/graphql/index.js
CHANGED
|
@@ -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;
|
package/package.json
CHANGED