@fixefy/fixefy-ui-utils 0.2.67 → 0.2.69

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.
@@ -19,7 +19,7 @@ export declare const makeString: (len?: number) => string;
19
19
  export declare const nest: ({ items }: {
20
20
  items: Array<any>;
21
21
  }) => any[];
22
- export declare const normalizeTimestamp: (timestamp: any, options: any) => any;
22
+ export declare const normalizeTimestamp: (timestamp: any, options: any) => string;
23
23
  export declare const normalizeStringBodyRaw: (key: string, body: any) => any;
24
24
  export declare const titleCase: (str?: string) => string;
25
25
  export declare const toCamelCase: (inputArray: Maybe<Array<any>>) => string;
@@ -35,6 +35,7 @@ export declare enum CONSTANT_TEXTS_APP {
35
35
  }
36
36
  export declare enum BUCKET_ADDRESS_NAME {
37
37
  EVIDENCE = "evidence",
38
+ SELLER_EVIDENCE = "seller-evidence",
38
39
  INVOICE = "inv-org",
39
40
  REF_TABLE = "reftbl-org",
40
41
  CREDIT_NOTE = "creditnote-org",
@@ -153,6 +153,7 @@ var CONSTANT_TEXTS_APP;
153
153
  var BUCKET_ADDRESS_NAME;
154
154
  (function(BUCKET_ADDRESS_NAME) {
155
155
  BUCKET_ADDRESS_NAME["EVIDENCE"] = "evidence";
156
+ BUCKET_ADDRESS_NAME["SELLER_EVIDENCE"] = "seller-evidence";
156
157
  BUCKET_ADDRESS_NAME["INVOICE"] = "inv-org";
157
158
  BUCKET_ADDRESS_NAME["REF_TABLE"] = "reftbl-org";
158
159
  BUCKET_ADDRESS_NAME["CREDIT_NOTE"] = "creditnote-org";
@@ -1,10 +1,7 @@
1
1
  export declare const makeStyles: <Params = void, RuleNameSubsetReferencableInNestedSelectors extends string = never>(params?: {
2
2
  name?: string | Record<string, unknown> | undefined;
3
3
  uniqId?: string | undefined;
4
- } | undefined) => <RuleName extends string>(cssObjectByRuleNameOrGetCssObjectByRuleName: Record<RuleName, import("tss-react").CSSObject> | ((theme: import("@mui/material/styles").Theme, params: Params, classes: Record<RuleNameSubsetReferencableInNestedSelectors, string>) => Record<RuleNameSubsetReferencableInNestedSelectors | RuleName, import("tss-react").CSSObject>)) => (params: Params, muiStyleOverridesParams?: {
5
- props: Record<string, unknown>;
6
- ownerState?: Record<string, unknown> | undefined;
7
- } | undefined) => {
4
+ } | undefined) => <RuleName extends string>(cssObjectByRuleNameOrGetCssObjectByRuleName: Record<RuleName, import("tss-react").CSSObject> | ((theme: import("@mui/material/styles").Theme, params: Params, classes: Record<RuleNameSubsetReferencableInNestedSelectors, string>) => Record<RuleNameSubsetReferencableInNestedSelectors | RuleName, import("tss-react").CSSObject>)) => (params: Params, muiStyleOverridesParams?: import("tss-react/mui/themeStyleOverridesPlugin").MuiThemeStyleOverridesPluginParams["muiStyleOverridesParams"]) => {
8
5
  classes: Record<RuleName, string>;
9
6
  theme: import("@mui/material/styles").Theme;
10
7
  css: import("tss-react").Css;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Theme } from '@mui/material/styles';
3
2
  import _DefaultTheme from '@mui/styles/DefaultTheme';
4
3
  declare module '@mui/styles/DefaultTheme' {
@@ -293,8 +293,8 @@ const palette = {
293
293
  },
294
294
  status: {
295
295
  active: {
296
- border: '#96B5BC',
297
- background: '#F7F9FA'
296
+ border: '#27AE60',
297
+ background: '#EEF9F2'
298
298
  },
299
299
  approve: {
300
300
  border: '#88C00D',
package/package.json CHANGED
@@ -22,7 +22,9 @@
22
22
  "regenerator-runtime": ">=0.13.11",
23
23
  "tss-react": ">=4.8.6"
24
24
  },
25
- "dependencies": {},
25
+ "dependencies": {
26
+ "date-fns": "^4.1.0"
27
+ },
26
28
  "devDependencies": {
27
29
  "@types/convert-excel-to-json": "1.7.4",
28
30
  "@types/node": "20.14.0",
@@ -66,5 +68,5 @@
66
68
  "require": "./dist/index.js"
67
69
  }
68
70
  },
69
- "version": "0.2.67"
71
+ "version": "0.2.69"
70
72
  }