@fixefy/fixefy-ui-utils 0.0.20 → 0.0.21
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/page_context/index.d.ts +30 -8
- package/dist/page_context/index.js +45 -25
- package/package.json +1 -1
|
@@ -44,7 +44,7 @@ declare module '@mui/material/styles' {
|
|
|
44
44
|
pending: Palette['primary'];
|
|
45
45
|
score: ScorePaletteColorOptions;
|
|
46
46
|
invoiceAnalysis: InvoiceAnalysisPaletteColorOptions;
|
|
47
|
-
status:
|
|
47
|
+
status: StatePaletteColorOptions;
|
|
48
48
|
tag: TagPaletteColorOptions;
|
|
49
49
|
invoiceState: InvoiceStatesPaletteColorOptions;
|
|
50
50
|
reconcilationState: RecosStatesPaletteColorOptions;
|
|
@@ -74,7 +74,7 @@ declare module '@mui/material/styles' {
|
|
|
74
74
|
invoiceAnalysis: InvoiceAnalysisPaletteColorOptions;
|
|
75
75
|
trends: TrendsPaletteColorOptions;
|
|
76
76
|
uploader: UploaderPaletteColorOptions;
|
|
77
|
-
status:
|
|
77
|
+
status: StatePaletteColorOptions;
|
|
78
78
|
tag: TagPaletteColorOptions;
|
|
79
79
|
invoiceState: InvoiceStatesPaletteColorOptions;
|
|
80
80
|
reconcilationState: RecosStatesPaletteColorOptions;
|
|
@@ -165,6 +165,23 @@ declare module '@mui/material/styles' {
|
|
|
165
165
|
matching: string;
|
|
166
166
|
invalid: string;
|
|
167
167
|
}
|
|
168
|
+
interface StatePaletteColorOptions {
|
|
169
|
+
active: StatusColorOption;
|
|
170
|
+
approve: StatusColorOption;
|
|
171
|
+
challenge: StatusColorOption;
|
|
172
|
+
challenged: StatusColorOption;
|
|
173
|
+
declined: StatusColorOption;
|
|
174
|
+
discrepancy: StatusColorOption;
|
|
175
|
+
duplicate: StatusColorOption;
|
|
176
|
+
duplicated: StatusColorOption;
|
|
177
|
+
gold: StatusColorOption;
|
|
178
|
+
in_progress: StatusColorOption;
|
|
179
|
+
in_review: StatusColorOption;
|
|
180
|
+
no_pricing: StatusColorOption;
|
|
181
|
+
pending: StatusColorOption;
|
|
182
|
+
pending_approval: StatusColorOption;
|
|
183
|
+
pending_challenge: StatusColorOption;
|
|
184
|
+
}
|
|
168
185
|
interface StatusPaletteColorOptions {
|
|
169
186
|
active: StatusColorOption;
|
|
170
187
|
approve: StatusColorOption;
|
|
@@ -179,34 +196,39 @@ declare module '@mui/material/styles' {
|
|
|
179
196
|
in_review: StatusColorOption;
|
|
180
197
|
no_pricing: StatusColorOption;
|
|
181
198
|
pending: StatusColorOption;
|
|
199
|
+
pending_approval: StatusColorOption;
|
|
200
|
+
pending_challenge: StatusColorOption;
|
|
182
201
|
}
|
|
183
202
|
interface TagPaletteColorOptions {
|
|
184
203
|
approved: StatusColorOption;
|
|
204
|
+
closed: StatusColorOption;
|
|
185
205
|
created: StatusColorOption;
|
|
186
206
|
declined: StatusColorOption;
|
|
187
207
|
in_dispute: StatusColorOption;
|
|
188
208
|
in_progress: StatusColorOption;
|
|
209
|
+
low: StatusColorOption;
|
|
189
210
|
paid: StatusColorOption;
|
|
190
|
-
|
|
211
|
+
pending: StatusColorOption;
|
|
191
212
|
refunded: StatusColorOption;
|
|
192
|
-
low: StatusColorOption;
|
|
193
213
|
}
|
|
194
214
|
interface InvoiceStatesPaletteColorOptions {
|
|
195
215
|
approved: StatusColorOption;
|
|
216
|
+
closed: StatusColorOption;
|
|
196
217
|
created: StatusColorOption;
|
|
197
218
|
declined: StatusColorOption;
|
|
198
219
|
in_dispute: StatusColorOption;
|
|
199
220
|
in_progress: StatusColorOption;
|
|
200
221
|
paid: StatusColorOption;
|
|
201
|
-
|
|
222
|
+
pending: StatusColorOption;
|
|
202
223
|
}
|
|
203
224
|
interface RecosStatesPaletteColorOptions {
|
|
204
|
-
created: StatusColorOption;
|
|
205
|
-
in_progress: StatusColorOption;
|
|
206
225
|
approved: StatusColorOption;
|
|
226
|
+
closed: StatusColorOption;
|
|
227
|
+
created: StatusColorOption;
|
|
207
228
|
declined: StatusColorOption;
|
|
229
|
+
in_progress: StatusColorOption;
|
|
230
|
+
pending: StatusColorOption;
|
|
208
231
|
refunded: StatusColorOption;
|
|
209
|
-
closed: StatusColorOption;
|
|
210
232
|
}
|
|
211
233
|
interface SnackbarPaletteColorOptions {
|
|
212
234
|
info: SnackbarColorOption;
|
|
@@ -269,6 +269,14 @@ const theme = (0, _styles.createTheme)({
|
|
|
269
269
|
pending: {
|
|
270
270
|
border: '#ECC631',
|
|
271
271
|
background: '#FEFDF3'
|
|
272
|
+
},
|
|
273
|
+
pending_approval: {
|
|
274
|
+
border: '#ECC631',
|
|
275
|
+
background: '#FEFDF3'
|
|
276
|
+
},
|
|
277
|
+
pending_challenge: {
|
|
278
|
+
border: '#F7C08F',
|
|
279
|
+
background: '#FEFAF6'
|
|
272
280
|
}
|
|
273
281
|
},
|
|
274
282
|
tag: {
|
|
@@ -276,6 +284,10 @@ const theme = (0, _styles.createTheme)({
|
|
|
276
284
|
border: '#27AE60',
|
|
277
285
|
background: '#27AE60'
|
|
278
286
|
},
|
|
287
|
+
closed: {
|
|
288
|
+
border: '#8B9092',
|
|
289
|
+
background: '#8B9092'
|
|
290
|
+
},
|
|
279
291
|
created: {
|
|
280
292
|
border: '#87ACB6',
|
|
281
293
|
background: '#87ACB6'
|
|
@@ -285,28 +297,28 @@ const theme = (0, _styles.createTheme)({
|
|
|
285
297
|
background: '#EB5757'
|
|
286
298
|
},
|
|
287
299
|
in_dispute: {
|
|
288
|
-
border: '#
|
|
289
|
-
background: '#
|
|
300
|
+
border: '#EC6AC8',
|
|
301
|
+
background: '#EC6AC8'
|
|
290
302
|
},
|
|
291
303
|
in_progress: {
|
|
292
304
|
border: '#56CCF2',
|
|
293
305
|
background: '#56CCF2'
|
|
294
306
|
},
|
|
307
|
+
low: {
|
|
308
|
+
border: '#56CCF2',
|
|
309
|
+
background: '#88C00D'
|
|
310
|
+
},
|
|
295
311
|
paid: {
|
|
296
312
|
border: '#BB6BD9',
|
|
297
313
|
background: '#BB6BD9'
|
|
298
314
|
},
|
|
299
|
-
|
|
300
|
-
border: '#
|
|
301
|
-
background: '#
|
|
315
|
+
pending: {
|
|
316
|
+
border: '#ECC631',
|
|
317
|
+
background: '#ECC631'
|
|
302
318
|
},
|
|
303
319
|
refunded: {
|
|
304
320
|
border: '#BB6BD9',
|
|
305
321
|
background: '#BB6BD9'
|
|
306
|
-
},
|
|
307
|
-
low: {
|
|
308
|
-
border: '#56CCF2',
|
|
309
|
-
background: '#88C00D'
|
|
310
322
|
}
|
|
311
323
|
},
|
|
312
324
|
invoiceState: {
|
|
@@ -314,6 +326,10 @@ const theme = (0, _styles.createTheme)({
|
|
|
314
326
|
border: '#27AE60',
|
|
315
327
|
background: '#27AE60'
|
|
316
328
|
},
|
|
329
|
+
closed: {
|
|
330
|
+
border: '#8B9092',
|
|
331
|
+
background: '#8B9092'
|
|
332
|
+
},
|
|
317
333
|
created: {
|
|
318
334
|
border: '#87ACB6',
|
|
319
335
|
background: '#87ACB6'
|
|
@@ -323,8 +339,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
323
339
|
background: '#EB5757'
|
|
324
340
|
},
|
|
325
341
|
in_dispute: {
|
|
326
|
-
border: '#
|
|
327
|
-
background: '#
|
|
342
|
+
border: '#EC6AC8',
|
|
343
|
+
background: '#EC6AC8'
|
|
328
344
|
},
|
|
329
345
|
in_progress: {
|
|
330
346
|
border: '#56CCF2',
|
|
@@ -334,35 +350,39 @@ const theme = (0, _styles.createTheme)({
|
|
|
334
350
|
border: '#BB6BD9',
|
|
335
351
|
background: '#BB6BD9'
|
|
336
352
|
},
|
|
337
|
-
|
|
338
|
-
border: '#
|
|
339
|
-
background: '#
|
|
353
|
+
pending: {
|
|
354
|
+
border: '#ECC631',
|
|
355
|
+
background: '#ECC631'
|
|
340
356
|
}
|
|
341
357
|
},
|
|
342
358
|
reconcilationState: {
|
|
359
|
+
approved: {
|
|
360
|
+
border: '#27AE60',
|
|
361
|
+
background: '#27AE60'
|
|
362
|
+
},
|
|
363
|
+
closed: {
|
|
364
|
+
border: '#8B9092',
|
|
365
|
+
background: '#8B9092'
|
|
366
|
+
},
|
|
343
367
|
created: {
|
|
344
368
|
border: '#87ACB6',
|
|
345
369
|
background: '#87ACB6'
|
|
346
370
|
},
|
|
371
|
+
declined: {
|
|
372
|
+
border: '#EB5757',
|
|
373
|
+
background: '#EB5757'
|
|
374
|
+
},
|
|
347
375
|
in_progress: {
|
|
348
376
|
border: '#56CCF2',
|
|
349
377
|
background: '#56CCF2'
|
|
350
378
|
},
|
|
351
|
-
|
|
352
|
-
border: '#
|
|
353
|
-
background: '#
|
|
354
|
-
},
|
|
355
|
-
declined: {
|
|
356
|
-
border: '#EB5757',
|
|
357
|
-
background: '#EB5757'
|
|
379
|
+
pending: {
|
|
380
|
+
border: '#ECC631',
|
|
381
|
+
background: '#ECC631'
|
|
358
382
|
},
|
|
359
383
|
refunded: {
|
|
360
384
|
border: '#BB6BD9',
|
|
361
385
|
background: '#BB6BD9'
|
|
362
|
-
},
|
|
363
|
-
closed: {
|
|
364
|
-
border: '#8B9092',
|
|
365
|
-
background: '#8B9092'
|
|
366
386
|
}
|
|
367
387
|
},
|
|
368
388
|
trends: {
|
package/package.json
CHANGED