@selfcommunity/react-theme-default 0.1.0-alpha.100 → 0.1.0-alpha.101
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/lib/cjs/components/SCLoyaltyProgram.d.ts +17 -3
- package/lib/cjs/components/SCLoyaltyProgram.d.ts.map +1 -1
- package/lib/cjs/components/SCLoyaltyProgram.js +19 -5
- package/lib/cjs/components/SCLoyaltyProgram.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.d.ts +5 -2
- package/lib/cjs/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.js +7 -4
- package/lib/cjs/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThreadItem.js +1 -1
- package/lib/cjs/index.d.ts +22 -5
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/components/SCLoyaltyProgram.d.ts +17 -3
- package/lib/esm/components/SCLoyaltyProgram.d.ts.map +1 -1
- package/lib/esm/components/SCLoyaltyProgram.js +19 -5
- package/lib/esm/components/SCLoyaltyProgram.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.d.ts +5 -2
- package/lib/esm/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.js +7 -4
- package/lib/esm/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThreadItem.js +1 -1
- package/lib/esm/index.d.ts +22 -5
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/lib/umd/react-theme-default.js.map +1 -1
- package/package.json +4 -4
|
@@ -1,14 +1,28 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .MuiCardContent-root': {
|
|
5
|
+
padding: any;
|
|
6
|
+
};
|
|
7
|
+
'& .SCLoyaltyProgram-title': {
|
|
8
|
+
fontWeight: any;
|
|
9
|
+
fontSize: string;
|
|
10
|
+
};
|
|
4
11
|
'& .SCLoyaltyProgram-actions': {
|
|
12
|
+
display: string;
|
|
13
|
+
justifyContent: string;
|
|
5
14
|
padding: any;
|
|
6
15
|
'& .SCLoyaltyProgram-points': {
|
|
7
|
-
borderRadius: any;
|
|
8
|
-
backgroundColor: any;
|
|
9
|
-
padding: any;
|
|
10
16
|
fontSize: string;
|
|
11
17
|
fontWeight: any;
|
|
18
|
+
textTransform: string;
|
|
19
|
+
color: any;
|
|
20
|
+
'& .MuiChip-root': {
|
|
21
|
+
color: any;
|
|
22
|
+
borderRadius: any;
|
|
23
|
+
backgroundColor: any;
|
|
24
|
+
marginRight: any;
|
|
25
|
+
};
|
|
12
26
|
};
|
|
13
27
|
};
|
|
14
28
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCLoyaltyProgram.d.ts","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCLoyaltyProgram.d.ts","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -3,14 +3,28 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
+
'& .MuiCardContent-root': {
|
|
7
|
+
padding: theme.spacing(2, 3, 2, 3)
|
|
8
|
+
},
|
|
9
|
+
'& .SCLoyaltyProgram-title': {
|
|
10
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
11
|
+
fontSize: '1.143rem'
|
|
12
|
+
},
|
|
6
13
|
'& .SCLoyaltyProgram-actions': {
|
|
7
|
-
|
|
14
|
+
display: 'flex',
|
|
15
|
+
justifyContent: 'space-between',
|
|
16
|
+
padding: theme.spacing(0, 3, 2, 3),
|
|
8
17
|
'& .SCLoyaltyProgram-points': {
|
|
9
|
-
borderRadius: theme.shape.borderRadius,
|
|
10
|
-
backgroundColor: theme.palette.secondary.main,
|
|
11
|
-
padding: theme.spacing(1, 2),
|
|
12
18
|
fontSize: '1rem',
|
|
13
|
-
fontWeight: theme.typography.fontWeightBold
|
|
19
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
20
|
+
textTransform: 'uppercase',
|
|
21
|
+
color: theme.palette.secondary.main,
|
|
22
|
+
'& .MuiChip-root': {
|
|
23
|
+
color: theme.palette.common.white,
|
|
24
|
+
borderRadius: theme.shape.borderRadius,
|
|
25
|
+
backgroundColor: theme.palette.secondary.main,
|
|
26
|
+
marginRight: theme.spacing(1)
|
|
27
|
+
}
|
|
14
28
|
}
|
|
15
29
|
}
|
|
16
30
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCLoyaltyProgram.js","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,
|
|
1
|
+
{"version":3,"file":"SCLoyaltyProgram.js","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":";;AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,wBAAwB,EAAE;gBACxB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;aACnC;YACD,2BAA2B,EAAE;gBAC3B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;gBAC3C,QAAQ,EAAE,UAAU;aACrB;YACD,6BAA6B,EAAE;gBAC7B,OAAO,EAAE,MAAM;gBACf,cAAc,EAAE,eAAe;gBAC/B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;gBAClC,4BAA4B,EAAE;oBAC5B,QAAQ,EAAE,MAAM;oBAChB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;oBAC3C,aAAa,EAAE,WAAW;oBAC1B,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI;oBACnC,iBAAiB,EAAE;wBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;wBACjC,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;wBACtC,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI;wBAC7C,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;qBAC9B;iBACF;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
|
@@ -16,9 +16,12 @@ declare const Component: {
|
|
|
16
16
|
[x: number]: {
|
|
17
17
|
height: string;
|
|
18
18
|
maxHeight: string;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
} | {
|
|
20
|
+
maxHeight: string;
|
|
21
|
+
height?: undefined;
|
|
21
22
|
};
|
|
23
|
+
overflow: string;
|
|
24
|
+
padding: any;
|
|
22
25
|
'& .MuiAlert-root': {
|
|
23
26
|
position: string;
|
|
24
27
|
bottom: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqHtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -7,18 +7,21 @@ const Component = {
|
|
|
7
7
|
backgroundColor: (0, system_1.alpha)(theme.palette.secondary.main, theme.palette.action.selectedOpacity),
|
|
8
8
|
position: 'relative',
|
|
9
9
|
[theme.breakpoints.down('md')]: {
|
|
10
|
-
minHeight: '
|
|
10
|
+
minHeight: 'calc(100vh - 7rem)'
|
|
11
11
|
},
|
|
12
12
|
[theme.breakpoints.up('sm')]: {
|
|
13
13
|
height: theme.spacing(103.5),
|
|
14
14
|
maxHeight: 'inherit'
|
|
15
15
|
},
|
|
16
16
|
'& .MuiCardContent-root': {
|
|
17
|
+
overflow: 'auto',
|
|
18
|
+
padding: theme.spacing(0),
|
|
17
19
|
[theme.breakpoints.up('sm')]: {
|
|
18
20
|
height: '100%',
|
|
19
|
-
maxHeight: `calc(100% - ${theme.spacing(6.25)})
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
maxHeight: `calc(100% - ${theme.spacing(6.25)})`
|
|
22
|
+
},
|
|
23
|
+
[theme.breakpoints.down('md')]: {
|
|
24
|
+
maxHeight: 'calc(100vh - 7rem)'
|
|
22
25
|
},
|
|
23
26
|
'& .MuiAlert-root': {
|
|
24
27
|
position: 'absolute',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":";;AAAA,wCAAkC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,eAAe,EAAE,IAAA,cAAK,EAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC;YAC1F,QAAQ,EAAE,UAAU;YACpB,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE;gBAC9B,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"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"}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1526,14 +1526,28 @@ declare const theme: {
|
|
|
1526
1526
|
SCLoyaltyProgram: {
|
|
1527
1527
|
styleOverrides: {
|
|
1528
1528
|
root: ({ theme }: any) => {
|
|
1529
|
+
'& .MuiCardContent-root': {
|
|
1530
|
+
padding: any;
|
|
1531
|
+
};
|
|
1532
|
+
'& .SCLoyaltyProgram-title': {
|
|
1533
|
+
fontWeight: any;
|
|
1534
|
+
fontSize: string;
|
|
1535
|
+
};
|
|
1529
1536
|
'& .SCLoyaltyProgram-actions': {
|
|
1537
|
+
display: string;
|
|
1538
|
+
justifyContent: string;
|
|
1530
1539
|
padding: any;
|
|
1531
1540
|
'& .SCLoyaltyProgram-points': {
|
|
1532
|
-
borderRadius: any;
|
|
1533
|
-
backgroundColor: any;
|
|
1534
|
-
padding: any;
|
|
1535
1541
|
fontSize: string;
|
|
1536
1542
|
fontWeight: any;
|
|
1543
|
+
textTransform: string;
|
|
1544
|
+
color: any;
|
|
1545
|
+
'& .MuiChip-root': {
|
|
1546
|
+
color: any;
|
|
1547
|
+
borderRadius: any;
|
|
1548
|
+
backgroundColor: any;
|
|
1549
|
+
marginRight: any;
|
|
1550
|
+
};
|
|
1537
1551
|
};
|
|
1538
1552
|
};
|
|
1539
1553
|
};
|
|
@@ -2481,9 +2495,12 @@ declare const theme: {
|
|
|
2481
2495
|
[x: number]: {
|
|
2482
2496
|
height: string;
|
|
2483
2497
|
maxHeight: string;
|
|
2484
|
-
|
|
2485
|
-
|
|
2498
|
+
} | {
|
|
2499
|
+
maxHeight: string;
|
|
2500
|
+
height?: undefined;
|
|
2486
2501
|
};
|
|
2502
|
+
overflow: string;
|
|
2503
|
+
padding: any;
|
|
2487
2504
|
'& .MuiAlert-root': {
|
|
2488
2505
|
position: string;
|
|
2489
2506
|
bottom: number;
|
package/lib/cjs/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AA+FrC;;GAEG;AAEH,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AA+FrC;;GAEG;AAEH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsJV,CAAC;AACF,eAAe,KAAK,CAAC"}
|
|
@@ -1,14 +1,28 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .MuiCardContent-root': {
|
|
5
|
+
padding: any;
|
|
6
|
+
};
|
|
7
|
+
'& .SCLoyaltyProgram-title': {
|
|
8
|
+
fontWeight: any;
|
|
9
|
+
fontSize: string;
|
|
10
|
+
};
|
|
4
11
|
'& .SCLoyaltyProgram-actions': {
|
|
12
|
+
display: string;
|
|
13
|
+
justifyContent: string;
|
|
5
14
|
padding: any;
|
|
6
15
|
'& .SCLoyaltyProgram-points': {
|
|
7
|
-
borderRadius: any;
|
|
8
|
-
backgroundColor: any;
|
|
9
|
-
padding: any;
|
|
10
16
|
fontSize: string;
|
|
11
17
|
fontWeight: any;
|
|
18
|
+
textTransform: string;
|
|
19
|
+
color: any;
|
|
20
|
+
'& .MuiChip-root': {
|
|
21
|
+
color: any;
|
|
22
|
+
borderRadius: any;
|
|
23
|
+
backgroundColor: any;
|
|
24
|
+
marginRight: any;
|
|
25
|
+
};
|
|
12
26
|
};
|
|
13
27
|
};
|
|
14
28
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCLoyaltyProgram.d.ts","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCLoyaltyProgram.d.ts","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,14 +1,28 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
+
'& .MuiCardContent-root': {
|
|
5
|
+
padding: theme.spacing(2, 3, 2, 3)
|
|
6
|
+
},
|
|
7
|
+
'& .SCLoyaltyProgram-title': {
|
|
8
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
9
|
+
fontSize: '1.143rem'
|
|
10
|
+
},
|
|
4
11
|
'& .SCLoyaltyProgram-actions': {
|
|
5
|
-
|
|
12
|
+
display: 'flex',
|
|
13
|
+
justifyContent: 'space-between',
|
|
14
|
+
padding: theme.spacing(0, 3, 2, 3),
|
|
6
15
|
'& .SCLoyaltyProgram-points': {
|
|
7
|
-
borderRadius: theme.shape.borderRadius,
|
|
8
|
-
backgroundColor: theme.palette.secondary.main,
|
|
9
|
-
padding: theme.spacing(1, 2),
|
|
10
16
|
fontSize: '1rem',
|
|
11
|
-
fontWeight: theme.typography.fontWeightBold
|
|
17
|
+
fontWeight: theme.typography.fontWeightBold,
|
|
18
|
+
textTransform: 'uppercase',
|
|
19
|
+
color: theme.palette.secondary.main,
|
|
20
|
+
'& .MuiChip-root': {
|
|
21
|
+
color: theme.palette.common.white,
|
|
22
|
+
borderRadius: theme.shape.borderRadius,
|
|
23
|
+
backgroundColor: theme.palette.secondary.main,
|
|
24
|
+
marginRight: theme.spacing(1)
|
|
25
|
+
}
|
|
12
26
|
}
|
|
13
27
|
}
|
|
14
28
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCLoyaltyProgram.js","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,
|
|
1
|
+
{"version":3,"file":"SCLoyaltyProgram.js","sourceRoot":"","sources":["../../../src/components/SCLoyaltyProgram.tsx"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,wBAAwB,EAAE;gBACxB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;aACnC;YACD,2BAA2B,EAAE;gBAC3B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;gBAC3C,QAAQ,EAAE,UAAU;aACrB;YACD,6BAA6B,EAAE;gBAC7B,OAAO,EAAE,MAAM;gBACf,cAAc,EAAE,eAAe;gBAC/B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;gBAClC,4BAA4B,EAAE;oBAC5B,QAAQ,EAAE,MAAM;oBAChB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc;oBAC3C,aAAa,EAAE,WAAW;oBAC1B,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI;oBACnC,iBAAiB,EAAE;wBACjB,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK;wBACjC,YAAY,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY;wBACtC,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI;wBAC7C,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;qBAC9B;iBACF;aACF;SACF,CAAC;KACH;CACF,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -16,9 +16,12 @@ declare const Component: {
|
|
|
16
16
|
[x: number]: {
|
|
17
17
|
height: string;
|
|
18
18
|
maxHeight: string;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
} | {
|
|
20
|
+
maxHeight: string;
|
|
21
|
+
height?: undefined;
|
|
21
22
|
};
|
|
23
|
+
overflow: string;
|
|
24
|
+
padding: any;
|
|
22
25
|
'& .MuiAlert-root': {
|
|
23
26
|
position: string;
|
|
24
27
|
bottom: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.d.ts","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS;;0BAEK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqHtB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -5,18 +5,21 @@ const Component = {
|
|
|
5
5
|
backgroundColor: alpha(theme.palette.secondary.main, theme.palette.action.selectedOpacity),
|
|
6
6
|
position: 'relative',
|
|
7
7
|
[theme.breakpoints.down('md')]: {
|
|
8
|
-
minHeight: '
|
|
8
|
+
minHeight: 'calc(100vh - 7rem)'
|
|
9
9
|
},
|
|
10
10
|
[theme.breakpoints.up('sm')]: {
|
|
11
11
|
height: theme.spacing(103.5),
|
|
12
12
|
maxHeight: 'inherit'
|
|
13
13
|
},
|
|
14
14
|
'& .MuiCardContent-root': {
|
|
15
|
+
overflow: 'auto',
|
|
16
|
+
padding: theme.spacing(0),
|
|
15
17
|
[theme.breakpoints.up('sm')]: {
|
|
16
18
|
height: '100%',
|
|
17
|
-
maxHeight: `calc(100% - ${theme.spacing(6.25)})
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
maxHeight: `calc(100% - ${theme.spacing(6.25)})`
|
|
20
|
+
},
|
|
21
|
+
[theme.breakpoints.down('md')]: {
|
|
22
|
+
maxHeight: 'calc(100vh - 7rem)'
|
|
20
23
|
},
|
|
21
24
|
'& .MuiAlert-root': {
|
|
22
25
|
position: 'absolute',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,MAAM,SAAS,GAAG;IAChB,cAAc,EAAE;QACd,IAAI,EAAE,CAAC,EAAC,KAAK,EAAM,EAAE,EAAE,CAAC,CAAC;YACvB,eAAe,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC;YAC1F,QAAQ,EAAE,UAAU;YACpB,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE;gBAC9B,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"SCPrivateMessageThread.js","sourceRoot":"","sources":["../../../src/components/SCPrivateMessageThread.tsx"],"names":[],"mappings":"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"}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1526,14 +1526,28 @@ declare const theme: {
|
|
|
1526
1526
|
SCLoyaltyProgram: {
|
|
1527
1527
|
styleOverrides: {
|
|
1528
1528
|
root: ({ theme }: any) => {
|
|
1529
|
+
'& .MuiCardContent-root': {
|
|
1530
|
+
padding: any;
|
|
1531
|
+
};
|
|
1532
|
+
'& .SCLoyaltyProgram-title': {
|
|
1533
|
+
fontWeight: any;
|
|
1534
|
+
fontSize: string;
|
|
1535
|
+
};
|
|
1529
1536
|
'& .SCLoyaltyProgram-actions': {
|
|
1537
|
+
display: string;
|
|
1538
|
+
justifyContent: string;
|
|
1530
1539
|
padding: any;
|
|
1531
1540
|
'& .SCLoyaltyProgram-points': {
|
|
1532
|
-
borderRadius: any;
|
|
1533
|
-
backgroundColor: any;
|
|
1534
|
-
padding: any;
|
|
1535
1541
|
fontSize: string;
|
|
1536
1542
|
fontWeight: any;
|
|
1543
|
+
textTransform: string;
|
|
1544
|
+
color: any;
|
|
1545
|
+
'& .MuiChip-root': {
|
|
1546
|
+
color: any;
|
|
1547
|
+
borderRadius: any;
|
|
1548
|
+
backgroundColor: any;
|
|
1549
|
+
marginRight: any;
|
|
1550
|
+
};
|
|
1537
1551
|
};
|
|
1538
1552
|
};
|
|
1539
1553
|
};
|
|
@@ -2481,9 +2495,12 @@ declare const theme: {
|
|
|
2481
2495
|
[x: number]: {
|
|
2482
2496
|
height: string;
|
|
2483
2497
|
maxHeight: string;
|
|
2484
|
-
|
|
2485
|
-
|
|
2498
|
+
} | {
|
|
2499
|
+
maxHeight: string;
|
|
2500
|
+
height?: undefined;
|
|
2486
2501
|
};
|
|
2502
|
+
overflow: string;
|
|
2503
|
+
padding: any;
|
|
2487
2504
|
'& .MuiAlert-root': {
|
|
2488
2505
|
position: string;
|
|
2489
2506
|
bottom: number;
|
package/lib/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AA+FrC;;GAEG;AAEH,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AA+FrC;;GAEG;AAEH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsJV,CAAC;AACF,eAAe,KAAK,CAAC"}
|