@fixefy/fixefy-ui-utils 0.0.32 → 0.0.34

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.
@@ -168,6 +168,7 @@ declare module '@mui/material/styles' {
168
168
  interface StatusPaletteColorOptions {
169
169
  active: StatusColorOption;
170
170
  approve: StatusColorOption;
171
+ approved: StatusColorOption;
171
172
  challenge: StatusColorOption;
172
173
  challenged: StatusColorOption;
173
174
  declined: StatusColorOption;
@@ -175,6 +176,7 @@ declare module '@mui/material/styles' {
175
176
  duplicate: StatusColorOption;
176
177
  duplicated: StatusColorOption;
177
178
  gold: StatusColorOption;
179
+ in_dispute: StatusColorOption;
178
180
  in_progress: StatusColorOption;
179
181
  in_review: StatusColorOption;
180
182
  no_pricing: StatusColorOption;
@@ -187,6 +189,7 @@ declare module '@mui/material/styles' {
187
189
  in_dispute: StatusColorOption;
188
190
  in_progress: StatusColorOption;
189
191
  paid: StatusColorOption;
192
+ pending: StatusColorOption;
190
193
  closed: StatusColorOption;
191
194
  refunded: StatusColorOption;
192
195
  low: StatusColorOption;
@@ -207,6 +210,7 @@ declare module '@mui/material/styles' {
207
210
  declined: StatusColorOption;
208
211
  refunded: StatusColorOption;
209
212
  closed: StatusColorOption;
213
+ pending: StatusColorOption;
210
214
  }
211
215
  interface SnackbarPaletteColorOptions {
212
216
  info: SnackbarColorOption;
@@ -226,6 +226,10 @@ const theme = (0, _styles.createTheme)({
226
226
  border: '#88C00D',
227
227
  background: '#F9FCF3'
228
228
  },
229
+ approved: {
230
+ border: '#27AE60',
231
+ background: '#EEF9F2'
232
+ },
229
233
  challenge: {
230
234
  border: '#F7C08F',
231
235
  background: '#FEFAF6'
@@ -254,6 +258,10 @@ const theme = (0, _styles.createTheme)({
254
258
  border: '#C4A603',
255
259
  background: '#FEFDF3'
256
260
  },
261
+ in_dispute: {
262
+ border: '#F2994A',
263
+ background: '#FEF7F1'
264
+ },
257
265
  in_progress: {
258
266
  border: '#56CCF2',
259
267
  background: '#F1FBFE'
@@ -276,6 +284,10 @@ const theme = (0, _styles.createTheme)({
276
284
  border: '#27AE60',
277
285
  background: '#27AE60'
278
286
  },
287
+ pending: {
288
+ border: '#ECC631',
289
+ background: '#ECC631'
290
+ },
279
291
  created: {
280
292
  border: '#87ACB6',
281
293
  background: '#87ACB6'
@@ -358,6 +370,14 @@ const theme = (0, _styles.createTheme)({
358
370
  border: '#EB5757',
359
371
  background: '#EB5757'
360
372
  },
373
+ approved: {
374
+ border: '#27AE60',
375
+ background: '#27AE60'
376
+ },
377
+ declined: {
378
+ border: '#EB5757',
379
+ background: '#EB5757'
380
+ },
361
381
  refunded: {
362
382
  border: '#BB6BD9',
363
383
  background: '#BB6BD9'
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "fs": false
5
5
  },
6
6
  "dependencies": {
7
- "@fixefy/fixefy-ui-components": "0.0.52",
7
+ "@fixefy/fixefy-ui-components": "0.1.69",
8
8
  "@mui/material": "^5.14.11",
9
9
  "@mui/styled-engine": "^5.14.11",
10
10
  "@mui/styles": "^5.14.11",
@@ -40,16 +40,18 @@
40
40
  "build": "swc src -d dist && tsc --declaration --emitDeclarationOnly --outDir dist",
41
41
  "build:copy": "node ../../scripts/copy-files-ex.js",
42
42
  "pre_release": "yarn clean && yarn && yarn build",
43
- "r": "yarn release",
44
- "release": "yarn pre_release && npm pack && npm publish",
45
- "release:config": "yarn pre_release && npm publish --userconfig ./.npmrc",
43
+ "release17": "node version-check.js 17 && yarn pre_release && npm pack && npm publish",
44
+ "release17:config": "node version-check.js 17 && yarn pre_release && npm publish --userconfig ./.npmrc",
45
+ "release18": "node version-check.js 18 && yarn pre_release && npm pack && npm publish",
46
+ "release18:config": "node version-check.js 18 && yarn pre_release && npm publish --userconfig ./.npmrc",
47
+ "raw_publish": "npm publish --userconfig ./.npmrc --otp=000000",
46
48
  "clean": "rm -rf build && rm -rf dist-* && yarn clean:node",
47
49
  "clean:node": "rm -rf node_modules",
48
50
  "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
49
51
  "prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\""
50
52
  },
51
53
  "engines": {
52
- "node": "18.17.1"
54
+ "node": "18"
53
55
  },
54
56
  "files": [
55
57
  "dist/**/*"
@@ -63,5 +65,5 @@
63
65
  "require": "./dist/index.js"
64
66
  }
65
67
  },
66
- "version": "0.0.32"
67
- }
68
+ "version": "0.0.34"
69
+ }