@secondstaxorg/sscomp 2.0.31 → 2.0.33
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/dist/fonts/Circular Pro.zip +0 -0
- package/dist/index.es.js +183 -155
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +187 -159
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +183 -155
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20671,105 +20671,128 @@ const LoadingShimmer = (props) => {
|
|
|
20671
20671
|
};
|
|
20672
20672
|
|
|
20673
20673
|
const TableContainer$7 = styled.div`
|
|
20674
|
-
|
|
20674
|
+
overflow-x: auto;
|
|
20675
20675
|
`;
|
|
20676
20676
|
|
|
20677
20677
|
const Table$7 = styled.table`
|
|
20678
|
-
|
|
20679
|
-
|
|
20680
|
-
|
|
20681
|
-
|
|
20682
|
-
|
|
20683
|
-
|
|
20684
|
-
|
|
20685
|
-
|
|
20686
|
-
|
|
20687
|
-
|
|
20688
|
-
|
|
20689
|
-
|
|
20690
|
-
|
|
20691
|
-
|
|
20692
|
-
|
|
20693
|
-
|
|
20694
|
-
|
|
20695
|
-
|
|
20696
|
-
|
|
20697
|
-
|
|
20698
|
-
|
|
20699
|
-
|
|
20700
|
-
|
|
20701
|
-
|
|
20702
|
-
|
|
20703
|
-
|
|
20704
|
-
|
|
20705
|
-
|
|
20706
|
-
|
|
20707
|
-
|
|
20708
|
-
|
|
20709
|
-
|
|
20710
|
-
|
|
20711
|
-
|
|
20712
|
-
|
|
20713
|
-
|
|
20714
|
-
|
|
20715
|
-
|
|
20716
|
-
|
|
20717
|
-
|
|
20718
|
-
|
|
20719
|
-
|
|
20720
|
-
|
|
20721
|
-
|
|
20722
|
-
|
|
20723
|
-
|
|
20724
|
-
|
|
20725
|
-
|
|
20726
|
-
|
|
20727
|
-
|
|
20728
|
-
|
|
20729
|
-
|
|
20730
|
-
|
|
20731
|
-
|
|
20732
|
-
|
|
20733
|
-
|
|
20734
|
-
|
|
20735
|
-
|
|
20736
|
-
|
|
20737
|
-
|
|
20738
|
-
|
|
20739
|
-
|
|
20740
|
-
|
|
20741
|
-
|
|
20742
|
-
|
|
20743
|
-
|
|
20744
|
-
|
|
20745
|
-
|
|
20746
|
-
|
|
20747
|
-
|
|
20678
|
+
width: 100%;
|
|
20679
|
+
border-collapse: separate;
|
|
20680
|
+
border-spacing: 0 8px;
|
|
20681
|
+
text-align: left;
|
|
20682
|
+
|
|
20683
|
+
.rounded-row td:first-child, .rounded-row th:first-child {
|
|
20684
|
+
border-top-left-radius: 8px;
|
|
20685
|
+
border-bottom-left-radius: 8px;
|
|
20686
|
+
}
|
|
20687
|
+
|
|
20688
|
+
.rounded-row td:last-child, .rounded-row th:last-child {
|
|
20689
|
+
border-top-right-radius: 8px;
|
|
20690
|
+
border-bottom-right-radius: 8px;
|
|
20691
|
+
}
|
|
20692
|
+
|
|
20693
|
+
thead tr {
|
|
20694
|
+
background: ${theme.colors["neutral-900"]};
|
|
20695
|
+
height: 57px;
|
|
20696
|
+
}
|
|
20697
|
+
|
|
20698
|
+
thead th {
|
|
20699
|
+
padding: 11px 16px;
|
|
20700
|
+
}
|
|
20701
|
+
|
|
20702
|
+
thead th, thead div {
|
|
20703
|
+
color: ${theme.colors.white};
|
|
20704
|
+
font-size: 16px;
|
|
20705
|
+
font-weight: 500;
|
|
20706
|
+
line-height: 19px;
|
|
20707
|
+
font-family: Circular Book Medium, sans-serif;
|
|
20708
|
+
}
|
|
20709
|
+
|
|
20710
|
+
tbody tr {
|
|
20711
|
+
background: ${theme.colors.white};
|
|
20712
|
+
cursor: pointer;
|
|
20713
|
+
}
|
|
20714
|
+
|
|
20715
|
+
tbody td {
|
|
20716
|
+
padding: 16px;
|
|
20717
|
+
color: ${theme.colors["neutral-900"]};
|
|
20718
|
+
font-size: 16px;
|
|
20719
|
+
font-weight: 400;
|
|
20720
|
+
line-height: 19px;
|
|
20721
|
+
}
|
|
20722
|
+
|
|
20723
|
+
tbody td div {
|
|
20724
|
+
display: flex;
|
|
20725
|
+
align-items: center;
|
|
20726
|
+
}
|
|
20727
|
+
|
|
20728
|
+
tbody td div.provider {
|
|
20729
|
+
display: flex;
|
|
20730
|
+
align-items: center;
|
|
20731
|
+
gap: 16px;
|
|
20732
|
+
}
|
|
20733
|
+
|
|
20734
|
+
tbody td div.provider p{
|
|
20735
|
+
text-wrap: nowrap;
|
|
20736
|
+
}
|
|
20737
|
+
|
|
20738
|
+
tbody td div.provider img {
|
|
20739
|
+
width: 28px;
|
|
20740
|
+
height: 28px;
|
|
20741
|
+
border-radius: 8px;
|
|
20742
|
+
}
|
|
20743
|
+
|
|
20744
|
+
tbody td div.provider .provider-logo-placeholder {
|
|
20745
|
+
width: 28px;
|
|
20746
|
+
height: 28px;
|
|
20747
|
+
background: ${theme.colors["neutral-100"]};
|
|
20748
|
+
border-radius: 8px;
|
|
20749
|
+
}
|
|
20750
|
+
|
|
20751
|
+
tbody td div.txn-date {
|
|
20752
|
+
display: flex;
|
|
20753
|
+
align-items: center;
|
|
20754
|
+
justify-content: space-between;
|
|
20755
|
+
}
|
|
20756
|
+
|
|
20757
|
+
tbody td div.txn-date p{
|
|
20758
|
+
text-wrap: nowrap;
|
|
20759
|
+
}
|
|
20760
|
+
|
|
20761
|
+
tbody td .txn-amt {
|
|
20762
|
+
gap: 10px;
|
|
20763
|
+
}
|
|
20764
|
+
|
|
20765
|
+
tbody td span.amt {
|
|
20766
|
+
display: flex;
|
|
20767
|
+
gap: 4px;
|
|
20768
|
+
align-items: center;
|
|
20769
|
+
}
|
|
20748
20770
|
`;
|
|
20749
20771
|
|
|
20750
20772
|
const NothingContainer$5 = styled.div`
|
|
20751
|
-
|
|
20752
|
-
|
|
20753
|
-
|
|
20754
|
-
|
|
20755
|
-
|
|
20756
|
-
|
|
20757
|
-
|
|
20773
|
+
display: flex;
|
|
20774
|
+
justify-content: center;
|
|
20775
|
+
align-items: center;
|
|
20776
|
+
width: 100%;
|
|
20777
|
+
height: 581px;
|
|
20778
|
+
background: ${theme.colors.white};
|
|
20779
|
+
border-radius: 8px;
|
|
20758
20780
|
`;
|
|
20759
20781
|
|
|
20760
20782
|
const NothingContent$5 = styled.div`
|
|
20761
|
-
|
|
20762
|
-
|
|
20763
|
-
|
|
20764
|
-
|
|
20765
|
-
|
|
20766
|
-
|
|
20767
|
-
|
|
20768
|
-
|
|
20769
|
-
|
|
20770
|
-
|
|
20771
|
-
|
|
20772
|
-
|
|
20783
|
+
display: flex;
|
|
20784
|
+
align-items: center;
|
|
20785
|
+
flex-direction: column;
|
|
20786
|
+
gap: 20px;
|
|
20787
|
+
width: 333px;
|
|
20788
|
+
text-align: center;
|
|
20789
|
+
|
|
20790
|
+
p {
|
|
20791
|
+
font-size: 16px;
|
|
20792
|
+
font-weight: 400;
|
|
20793
|
+
line-height: 19px;
|
|
20794
|
+
margin: 0;
|
|
20795
|
+
}
|
|
20773
20796
|
`;
|
|
20774
20797
|
|
|
20775
20798
|
function moneyfy$2(number, currency){
|
|
@@ -20873,7 +20896,7 @@ const LPRequestTable = (props) => {
|
|
|
20873
20896
|
, React$1.createElement('td', {__self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 95}}
|
|
20874
20897
|
, React$1.createElement('div', { className: "provider", __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 96}}
|
|
20875
20898
|
, transaction.providerLogo ? React$1.createElement('img', { src: transaction.providerLogo, alt: "provider logo" , __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 97}}) : React$1.createElement('div', { className: "provider-logo-placeholder", __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 97}})
|
|
20876
|
-
, transaction.providerName
|
|
20899
|
+
, React$1.createElement('p', {__self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 98}}, transaction.providerName)
|
|
20877
20900
|
)
|
|
20878
20901
|
)
|
|
20879
20902
|
, showBroker && React$1.createElement('td', {__self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 101}}
|
|
@@ -20911,7 +20934,7 @@ const LPRequestTable = (props) => {
|
|
|
20911
20934
|
)
|
|
20912
20935
|
, React$1.createElement('td', {__self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 134}}
|
|
20913
20936
|
, React$1.createElement('div', { className: "txn-date", __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 135}}
|
|
20914
|
-
, transaction.date
|
|
20937
|
+
, React$1.createElement('p', {__self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 136}}, transaction.date)
|
|
20915
20938
|
, showDetailsArrow &&
|
|
20916
20939
|
React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 138}}
|
|
20917
20940
|
, React$1.createElement('path', { d: "M10.3592 7.52685L6.58584 3.76019C6.52387 3.6977 6.45013 3.64811 6.36889 3.61426C6.28765 3.58041 6.20052 3.56299 6.11251 3.56299C6.0245 3.56299 5.93736 3.58041 5.85612 3.61426C5.77488 3.64811 5.70115 3.6977 5.63917 3.76019C5.51501 3.8851 5.44531 4.05406 5.44531 4.23019C5.44531 4.40631 5.51501 4.57528 5.63917 4.70019L8.93917 8.03352L5.63917 11.3335C5.51501 11.4584 5.44531 11.6274 5.44531 11.8035C5.44531 11.9796 5.51501 12.1486 5.63917 12.2735C5.70092 12.3365 5.77455 12.3866 5.8558 12.421C5.93705 12.4553 6.0243 12.4732 6.11251 12.4735C6.20071 12.4732 6.28797 12.4553 6.36922 12.421C6.45047 12.3866 6.5241 12.3365 6.58584 12.2735L10.3592 8.50685C10.4268 8.44443 10.4808 8.36866 10.5178 8.28432C10.5547 8.19999 10.5738 8.10892 10.5738 8.01685C10.5738 7.92479 10.5547 7.83372 10.5178 7.74938C10.4808 7.66505 10.4268 7.58928 10.3592 7.52685Z" , fill: "#A4BBDD", __self: undefined, __source: {fileName: _jsxFileName$Y, lineNumber: 139}})
|
|
@@ -23937,90 +23960,95 @@ const SearchResultsBar = (props) => {
|
|
|
23937
23960
|
};
|
|
23938
23961
|
|
|
23939
23962
|
const ModalBackdrop = styled.div`
|
|
23940
|
-
|
|
23941
|
-
|
|
23942
|
-
|
|
23943
|
-
|
|
23944
|
-
|
|
23963
|
+
position: fixed;
|
|
23964
|
+
overflow: hidden;
|
|
23965
|
+
inset: 0;
|
|
23966
|
+
background: rgb(0 0 0 / 40%);
|
|
23967
|
+
z-index: 9999;
|
|
23945
23968
|
`;
|
|
23946
23969
|
|
|
23947
23970
|
const panelWidth = 510;
|
|
23948
23971
|
const SideModalContainer = styled.div`
|
|
23949
|
-
|
|
23950
|
-
|
|
23951
|
-
|
|
23952
|
-
|
|
23953
|
-
|
|
23954
|
-
|
|
23955
|
-
|
|
23956
|
-
|
|
23957
|
-
|
|
23958
|
-
|
|
23959
|
-
|
|
23960
|
-
|
|
23961
|
-
|
|
23962
|
-
|
|
23963
|
-
|
|
23964
|
-
|
|
23965
|
-
|
|
23966
|
-
|
|
23967
|
-
|
|
23972
|
+
position: absolute;
|
|
23973
|
+
right: 0;
|
|
23974
|
+
top: 0;
|
|
23975
|
+
width: ${panelWidth}px;
|
|
23976
|
+
height: 100%;
|
|
23977
|
+
background: ${theme.colors.white};
|
|
23978
|
+
padding: 0;
|
|
23979
|
+
margin: 0;
|
|
23980
|
+
display: flex;
|
|
23981
|
+
flex-direction: column;
|
|
23982
|
+
animation: 0.3s slideIn ease-out;
|
|
23983
|
+
@keyframes slideIn {
|
|
23984
|
+
from {
|
|
23985
|
+
right: -${panelWidth}px;
|
|
23986
|
+
opacity: 0.5;
|
|
23987
|
+
}
|
|
23988
|
+
to {
|
|
23989
|
+
right: 0;
|
|
23990
|
+
opacity: 1;
|
|
23991
|
+
}
|
|
23968
23992
|
}
|
|
23969
|
-
}
|
|
23970
23993
|
`;
|
|
23971
23994
|
|
|
23972
23995
|
const NavSection = styled.div`
|
|
23973
|
-
|
|
23974
|
-
|
|
23975
|
-
|
|
23976
|
-
|
|
23977
|
-
|
|
23978
|
-
|
|
23996
|
+
display: flex;
|
|
23997
|
+
justify-content: space-between;
|
|
23998
|
+
align-items: center;
|
|
23999
|
+
background: ${theme.colors.white};
|
|
24000
|
+
border-bottom: 1px solid ${theme.colors["neutral-100"]};
|
|
24001
|
+
padding: 32px 38px;
|
|
24002
|
+
height: 88px;
|
|
24003
|
+
box-sizing: border-box;
|
|
23979
24004
|
`;
|
|
23980
24005
|
|
|
23981
24006
|
const Button$1 = styled.button`
|
|
23982
|
-
|
|
23983
|
-
|
|
23984
|
-
|
|
23985
|
-
|
|
23986
|
-
|
|
23987
|
-
|
|
23988
|
-
|
|
23989
|
-
|
|
23990
|
-
|
|
23991
|
-
|
|
23992
|
-
|
|
24007
|
+
background: transparent;
|
|
24008
|
+
border: none;
|
|
24009
|
+
cursor: pointer;
|
|
24010
|
+
display: flex;
|
|
24011
|
+
gap: 10px;
|
|
24012
|
+
align-items: center;
|
|
24013
|
+
font-size: 16px;
|
|
24014
|
+
|
|
24015
|
+
&:disabled {
|
|
24016
|
+
cursor: not-allowed;
|
|
24017
|
+
color: ${theme.colors["neutral-100"]};
|
|
24018
|
+
}
|
|
23993
24019
|
`;
|
|
23994
24020
|
|
|
23995
24021
|
const ModalContent = styled.div`
|
|
23996
|
-
|
|
23997
|
-
|
|
23998
|
-
|
|
23999
|
-
|
|
24000
|
-
|
|
24001
|
-
|
|
24022
|
+
width: 100%;
|
|
24023
|
+
padding: 32px;
|
|
24024
|
+
overflow-y: auto;
|
|
24025
|
+
display: flex;
|
|
24026
|
+
flex-grow: 1;
|
|
24027
|
+
flex-direction: column;
|
|
24002
24028
|
`;
|
|
24003
24029
|
|
|
24004
24030
|
const ModalTitleArea = styled.div`
|
|
24005
|
-
|
|
24006
|
-
|
|
24007
|
-
|
|
24008
|
-
|
|
24009
|
-
|
|
24010
|
-
|
|
24011
|
-
|
|
24012
|
-
|
|
24013
|
-
|
|
24014
|
-
|
|
24015
|
-
|
|
24016
|
-
|
|
24017
|
-
|
|
24018
|
-
|
|
24019
|
-
|
|
24020
|
-
|
|
24021
|
-
|
|
24022
|
-
|
|
24023
|
-
|
|
24031
|
+
display: flex;
|
|
24032
|
+
flex-direction: column;
|
|
24033
|
+
gap: 4px;
|
|
24034
|
+
color: ${theme.colors["neutral-900"]};
|
|
24035
|
+
margin-bottom: 40px;
|
|
24036
|
+
|
|
24037
|
+
.title {
|
|
24038
|
+
font-size: 19px;
|
|
24039
|
+
font-weight: 700;
|
|
24040
|
+
margin: 0;
|
|
24041
|
+
font-style: normal;
|
|
24042
|
+
font-family: Circular, sans-serif;
|
|
24043
|
+
}
|
|
24044
|
+
|
|
24045
|
+
.sub-text {
|
|
24046
|
+
font-size: 14px;
|
|
24047
|
+
font-weight: 400;
|
|
24048
|
+
margin: 0;
|
|
24049
|
+
font-style: normal;
|
|
24050
|
+
font-family: Circular, sans-serif;
|
|
24051
|
+
}
|
|
24024
24052
|
`;
|
|
24025
24053
|
|
|
24026
24054
|
const _jsxFileName$C = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\components\\SideModal\\SideModal.tsx"; function _optionalChain$m(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|