@fixefy/fixefy-ui-utils 0.2.63 → 0.2.64
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) =>
|
|
22
|
+
export declare const normalizeTimestamp: (timestamp: any, options: any) => any;
|
|
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;
|
|
@@ -1,7 +1,10 @@
|
|
|
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?:
|
|
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) => {
|
|
5
8
|
classes: Record<RuleName, string>;
|
|
6
9
|
theme: import("@mui/material/styles").Theme;
|
|
7
10
|
css: import("tss-react").Css;
|
|
@@ -361,8 +361,9 @@ const palette = {
|
|
|
361
361
|
background: '#FAFAFA'
|
|
362
362
|
},
|
|
363
363
|
pending: {
|
|
364
|
-
border: '#
|
|
365
|
-
background: '#
|
|
364
|
+
border: '#2D9CDB',
|
|
365
|
+
background: '#2D9CDB',
|
|
366
|
+
light: '#F1FBFE'
|
|
366
367
|
},
|
|
367
368
|
pending_review: {
|
|
368
369
|
border: '#2D9CDB',
|
|
@@ -480,8 +481,8 @@ const palette = {
|
|
|
480
481
|
light: '#FCEBDB'
|
|
481
482
|
},
|
|
482
483
|
in_progress: {
|
|
483
|
-
border: '#
|
|
484
|
-
background: '#
|
|
484
|
+
border: '#56CCF2',
|
|
485
|
+
background: '#56CCF2',
|
|
485
486
|
light: '#F1FBFE'
|
|
486
487
|
},
|
|
487
488
|
paid: {
|
|
@@ -495,9 +496,9 @@ const palette = {
|
|
|
495
496
|
light: '#FBF6FD'
|
|
496
497
|
},
|
|
497
498
|
pending: {
|
|
498
|
-
border: '#
|
|
499
|
-
background: '#
|
|
500
|
-
light: '#
|
|
499
|
+
border: '#2D9CDB',
|
|
500
|
+
background: '#2D9CDB',
|
|
501
|
+
light: '#F1FBFE'
|
|
501
502
|
},
|
|
502
503
|
pending_review: {
|
|
503
504
|
border: '#2D9CDB',
|
package/package.json
CHANGED