@fixefy/fixefy-ui-utils 0.2.49 → 0.2.51

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.
@@ -11,3 +11,16 @@ export declare const DataTypes: Record<string, string>;
11
11
  export declare const EntityTypes: Record<string, string>;
12
12
  export declare const FilterOperatorType: Record<string, string>;
13
13
  export declare const InputTypes: Record<string, string>;
14
+ export declare enum HEADERS {
15
+ OPERATION = "operation",
16
+ IS_SINGLE_REQUEST = "is-single-request",
17
+ END_OPERATION = "end-operation",
18
+ START_OPERATION = "start-operation",
19
+ IS_USE_CACHE_FOR_RULES = "is-use-cache-for-rules",
20
+ INVOICE_CREATE = "invoice-create",
21
+ INVOICE_CALC = "invoice-calc",
22
+ IN_MEMORY = "in-memory",
23
+ IS_SANDBOX = "is-sandbox",
24
+ MERO = "mero",
25
+ PRE_PROC = "pre-proc"
26
+ }
@@ -24,6 +24,9 @@ _export(exports, {
24
24
  FilterOperatorType: function() {
25
25
  return FilterOperatorType;
26
26
  },
27
+ HEADERS: function() {
28
+ return HEADERS;
29
+ },
27
30
  InputTypes: function() {
28
31
  return InputTypes;
29
32
  }
@@ -114,3 +117,17 @@ const InputTypes = {
114
117
  Percent: 'percent',
115
118
  Text: 'text'
116
119
  };
120
+ var HEADERS;
121
+ (function(HEADERS) {
122
+ HEADERS["OPERATION"] = "operation";
123
+ HEADERS["IS_SINGLE_REQUEST"] = "is-single-request";
124
+ HEADERS["END_OPERATION"] = "end-operation";
125
+ HEADERS["START_OPERATION"] = "start-operation";
126
+ HEADERS["IS_USE_CACHE_FOR_RULES"] = "is-use-cache-for-rules";
127
+ HEADERS["INVOICE_CREATE"] = "invoice-create";
128
+ HEADERS["INVOICE_CALC"] = "invoice-calc";
129
+ HEADERS["IN_MEMORY"] = "in-memory";
130
+ HEADERS["IS_SANDBOX"] = "is-sandbox";
131
+ HEADERS["MERO"] = "mero";
132
+ HEADERS["PRE_PROC"] = "pre-proc";
133
+ })(HEADERS || (HEADERS = {}));
@@ -131,6 +131,17 @@ declare module '@mui/material/styles' {
131
131
  blue1Focused: string;
132
132
  purple: string;
133
133
  lightPurple: string;
134
+ silver: string;
135
+ silverPlatinum: string;
136
+ silverSand: string;
137
+ jetBlack: string;
138
+ gainsboro: string;
139
+ black: string;
140
+ gray_54: string;
141
+ azure: string;
142
+ aliceBlue: string;
143
+ lightGray: string;
144
+ charcoal: string;
134
145
  }
135
146
  interface PriorityPalleteColorOptions {
136
147
  critical: string;
@@ -101,7 +101,18 @@ const theme = (0, _styles.createTheme)({
101
101
  blue1Hover: '#39B8EC',
102
102
  blue1Focused: '#1DA3E6',
103
103
  purple: '#BB6BD9',
104
- lightPurple: '#FBF6FD'
104
+ lightPurple: '#FBF6FD',
105
+ silver: '#C5C5C5',
106
+ silverPlatinum: '#E3E4E4',
107
+ silverSand: '#C6C7C8',
108
+ jetBlack: '#303030',
109
+ gainsboro: '#D0D0D0',
110
+ black: '#000000',
111
+ gray_54: '#8A8A8A',
112
+ azure: '#FAFCFC',
113
+ aliceBlue: '#F6F9FA',
114
+ lightGray: '#FCFCFB',
115
+ charcoal: '#2B2B2B'
105
116
  },
106
117
  greyscale: {
107
118
  dark: '#636363',
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "require": "./dist/index.js"
57
57
  }
58
58
  },
59
- "version": "0.2.49"
59
+ "version": "0.2.51"
60
60
  }