@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/index.js CHANGED
@@ -20671,105 +20671,128 @@ const LoadingShimmer = (props) => {
20671
20671
  };
20672
20672
 
20673
20673
  const TableContainer$7 = styled.div`
20674
- overflow-x: auto;
20674
+ overflow-x: auto;
20675
20675
  `;
20676
20676
 
20677
20677
  const Table$7 = styled.table`
20678
- width: 100%;
20679
- border-collapse: separate;
20680
- border-spacing: 0 8px;
20681
- text-align: left;
20682
- .rounded-row td:first-child, .rounded-row th:first-child{
20683
- border-top-left-radius: 8px;
20684
- border-bottom-left-radius: 8px;
20685
- }
20686
- .rounded-row td:last-child, .rounded-row th:last-child{
20687
- border-top-right-radius: 8px;
20688
- border-bottom-right-radius: 8px;
20689
- }
20690
- thead tr{
20691
- background: ${theme.colors["neutral-900"]};
20692
- height:57px;
20693
- }
20694
- thead th{
20695
- padding: 11px 16px;
20696
- }
20697
- thead th, thead div{
20698
- color: ${theme.colors.white};
20699
- font-size: 16px;
20700
- font-weight: 500;
20701
- line-height: 19px;
20702
- font-family: Circular Book Medium, sans-serif;
20703
- }
20704
- tbody tr{
20705
- background: ${theme.colors.white};
20706
- cursor:pointer;
20707
- }
20708
- tbody td{
20709
- padding: 16px;
20710
- color: ${theme.colors["neutral-900"]};
20711
- font-size: 16px;
20712
- font-weight: 400;
20713
- line-height: 19px;
20714
- }
20715
- tbody td div{
20716
- display: flex;
20717
- align-items: center;
20718
- }
20719
- tbody td div.provider{
20720
- display: flex;
20721
- align-items: center;
20722
- gap: 16px;
20723
- }
20724
- tbody td div.provider img{
20725
- width: 28px;
20726
- height: 28px;
20727
- border-radius: 8px;
20728
- }
20729
- tbody td div.provider .provider-logo-placeholder{
20730
- width: 28px;
20731
- height: 28px;
20732
- background: ${theme.colors["neutral-100"]};
20733
- border-radius: 8px;
20734
- }
20735
- tbody td div.txn-date{
20736
- display: flex;
20737
- align-items: center;
20738
- justify-content: space-between;
20739
- }
20740
- tbody td .txn-amt{
20741
- gap: 10px;
20742
- }
20743
- tbody td span.amt{
20744
- display: flex;
20745
- gap: 4px;
20746
- align-items: center;
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
- display: flex;
20752
- justify-content: center;
20753
- align-items: center;
20754
- width: 100%;
20755
- height: 581px;
20756
- background: ${theme.colors.white};
20757
- border-radius: 8px;
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
- display: flex;
20762
- align-items: center;
20763
- flex-direction: column;
20764
- gap: 20px;
20765
- width: 333px;
20766
- text-align: center;
20767
- p{
20768
- font-size: 16px;
20769
- font-weight: 400;
20770
- line-height: 19px;
20771
- margin: 0;
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
- position: fixed;
23941
- overflow: hidden;
23942
- inset: 0;
23943
- background: rgb(0 0 0 / 40%);
23944
- z-index: 9999;
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
- position: absolute;
23950
- right: 0;
23951
- top: 0;
23952
- width: ${panelWidth}px;
23953
- height:100%;
23954
- background: ${theme.colors.white};
23955
- padding: 0;
23956
- margin: 0;
23957
- display: flex;
23958
- flex-direction: column;
23959
- animation: 0.3s slideIn ease-out;
23960
- @keyframes slideIn{
23961
- from{
23962
- right: -${panelWidth}px;
23963
- opacity: 0.5;
23964
- }
23965
- to{
23966
- right: 0;
23967
- opacity: 1;
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
- display: flex;
23974
- justify-content: space-between;
23975
- align-items: center;
23976
- background: ${theme.colors.white};
23977
- border-bottom: 1px solid ${theme.colors["neutral-100"]};
23978
- padding: 32px 38px;
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
- background: transparent;
23983
- border: none;
23984
- cursor: pointer;
23985
- display: flex;
23986
- gap: 10px;
23987
- align-items: center;
23988
- font-size: 16px;
23989
- &:disabled{
23990
- cursor: not-allowed;
23991
- color: ${theme.colors["neutral-100"]};
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
- width: 100%;
23997
- padding: 32px;
23998
- overflow-y: auto;
23999
- display: flex;
24000
- flex-grow: 1;
24001
- flex-direction: column;
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
- display: flex;
24006
- flex-direction: column;
24007
- gap: 4px;
24008
- color: ${theme.colors["neutral-900"]};
24009
- margin-bottom: 40px;
24010
- .title{
24011
- font-size: 19px;
24012
- font-weight: 700;
24013
- margin: 0;
24014
- font-style: normal;
24015
- font-family: Circular, sans-serif;
24016
- }
24017
- .sub-text{
24018
- font-size: 14px;
24019
- font-weight: 400;
24020
- margin: 0;
24021
- font-style: normal;
24022
- font-family: Circular, sans-serif;
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; }