@layerfi/components 0.1.66 → 0.1.68
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/esm/index.js +1641 -1210
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +178 -22
- package/dist/index.js +2038 -1607
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +100 -3
- package/dist/styles/index.css.map +3 -3
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -752,6 +752,14 @@
|
|
|
752
752
|
color: var(--btn-color-icon-hover);
|
|
753
753
|
margin-right: 10px;
|
|
754
754
|
}
|
|
755
|
+
.Layer__btn.Layer__btn--with-tooltip {
|
|
756
|
+
padding: 0;
|
|
757
|
+
}
|
|
758
|
+
.Layer__btn.Layer__btn--with-tooltip .Layer__tooltip-trigger {
|
|
759
|
+
padding: 0 var(--spacing-md);
|
|
760
|
+
justify-content: center;
|
|
761
|
+
height: 100%;
|
|
762
|
+
}
|
|
755
763
|
.Layer__card {
|
|
756
764
|
display: flex;
|
|
757
765
|
flex-direction: column;
|
|
@@ -1798,6 +1806,73 @@
|
|
|
1798
1806
|
padding: var(--spacing-xs) var(--spacing-md);
|
|
1799
1807
|
flex: 1;
|
|
1800
1808
|
}
|
|
1809
|
+
.Layer__file-thumb {
|
|
1810
|
+
display: flex;
|
|
1811
|
+
align-items: flex-start;
|
|
1812
|
+
justify-content: flex-start;
|
|
1813
|
+
height: 38px;
|
|
1814
|
+
gap: var(--spacing-2xs);
|
|
1815
|
+
position: relative;
|
|
1816
|
+
}
|
|
1817
|
+
.Layer__file-thumb__actions {
|
|
1818
|
+
display: none;
|
|
1819
|
+
position: absolute;
|
|
1820
|
+
top: -20px;
|
|
1821
|
+
right: -10px;
|
|
1822
|
+
gap: var(--spacing-4xs);
|
|
1823
|
+
padding: var(--spacing-4xs);
|
|
1824
|
+
background-color: var(--color-base-0);
|
|
1825
|
+
border-radius: var(--border-radius-3xs);
|
|
1826
|
+
box-shadow: 0px 1px 2px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--color-base-300);
|
|
1827
|
+
transform: scale(0.8);
|
|
1828
|
+
}
|
|
1829
|
+
.Layer__file-thumb__actions .Layer__icon-btn.Layer__icon-btn--active {
|
|
1830
|
+
background-color: var(--color-base-50);
|
|
1831
|
+
}
|
|
1832
|
+
.Layer__file-thumb__actions .Layer__icon-btn.Layer__icon-btn--active:hover {
|
|
1833
|
+
background-color: var(--color-base-100);
|
|
1834
|
+
}
|
|
1835
|
+
.Layer__file-thumb__actions .Layer__file-thumb__actions__remove {
|
|
1836
|
+
color: var(--color-danger);
|
|
1837
|
+
}
|
|
1838
|
+
.Layer__file-thumb:hover .Layer__file-thumb__actions {
|
|
1839
|
+
display: flex;
|
|
1840
|
+
}
|
|
1841
|
+
.Layer__file-thumb__img {
|
|
1842
|
+
width: 100%;
|
|
1843
|
+
height: 100%;
|
|
1844
|
+
height: 38px;
|
|
1845
|
+
width: 38px;
|
|
1846
|
+
border-radius: var(--border-radius-3xs, 4px);
|
|
1847
|
+
background: var(--color-base-300);
|
|
1848
|
+
box-shadow: 0px 1px 2px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--color-base-300);
|
|
1849
|
+
}
|
|
1850
|
+
.Layer__file-thumb__img img {
|
|
1851
|
+
width: 100%;
|
|
1852
|
+
height: 100%;
|
|
1853
|
+
object-fit: cover;
|
|
1854
|
+
}
|
|
1855
|
+
.Layer__file-thumb__details {
|
|
1856
|
+
display: flex;
|
|
1857
|
+
flex-direction: column;
|
|
1858
|
+
align-items: flex-start;
|
|
1859
|
+
gap: var(--spacing-4xs);
|
|
1860
|
+
font-size: var(--text-sm);
|
|
1861
|
+
justify-content: flex-start;
|
|
1862
|
+
padding: var(--spacing-4xs) var(--spacing-2xs);
|
|
1863
|
+
}
|
|
1864
|
+
.Layer__file-thumb__details__date {
|
|
1865
|
+
color: var(--color-base-600);
|
|
1866
|
+
}
|
|
1867
|
+
.Layer__file-thumb__details__uploading {
|
|
1868
|
+
display: flex;
|
|
1869
|
+
align-items: center;
|
|
1870
|
+
gap: var(--spacing-3xs);
|
|
1871
|
+
color: var(--color-info-fg);
|
|
1872
|
+
}
|
|
1873
|
+
.Layer__file-thumb__details__error {
|
|
1874
|
+
color: var(--color-danger);
|
|
1875
|
+
}
|
|
1801
1876
|
.Layer__header {
|
|
1802
1877
|
display: flex;
|
|
1803
1878
|
flex-direction: column;
|
|
@@ -3851,8 +3926,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
3851
3926
|
padding: 0 var(--spacing-md);
|
|
3852
3927
|
padding-bottom: var(--spacing-sm);
|
|
3853
3928
|
display: flex;
|
|
3854
|
-
|
|
3855
|
-
|
|
3929
|
+
flex-direction: column;
|
|
3930
|
+
align-items: flex-start;
|
|
3931
|
+
gap: var(--spacing-md);
|
|
3856
3932
|
}
|
|
3857
3933
|
.Layer__bank-transaction-row__actions-cell {
|
|
3858
3934
|
border-left: 1px solid var(--border-color);
|
|
@@ -3999,7 +4075,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
3999
4075
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
4000
4076
|
position: -webkit-sticky;
|
|
4001
4077
|
position: sticky;
|
|
4002
|
-
right:
|
|
4078
|
+
right: 494px;
|
|
4003
4079
|
width: 150px;
|
|
4004
4080
|
min-width: 150px;
|
|
4005
4081
|
box-sizing: border-box;
|
|
@@ -4007,6 +4083,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4007
4083
|
text-align: right;
|
|
4008
4084
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4009
4085
|
}
|
|
4086
|
+
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col {
|
|
4087
|
+
position: -webkit-sticky;
|
|
4088
|
+
position: sticky;
|
|
4089
|
+
right: 430px;
|
|
4090
|
+
width: 64px;
|
|
4091
|
+
min-width: 64px;
|
|
4092
|
+
box-sizing: border-box;
|
|
4093
|
+
z-index: 2;
|
|
4094
|
+
text-align: center;
|
|
4095
|
+
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4096
|
+
}
|
|
4010
4097
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
4011
4098
|
position: -webkit-sticky;
|
|
4012
4099
|
position: sticky;
|
|
@@ -4035,6 +4122,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4035
4122
|
max-width: 180px;
|
|
4036
4123
|
box-sizing: border-box;
|
|
4037
4124
|
}
|
|
4125
|
+
.Layer__bank-transactions__documents-col {
|
|
4126
|
+
min-width: 64px;
|
|
4127
|
+
width: 64px;
|
|
4128
|
+
max-width: 64px;
|
|
4129
|
+
box-sizing: border-box;
|
|
4130
|
+
text-align: center;
|
|
4131
|
+
}
|
|
4132
|
+
.Layer__bank-transactions__documents-col .Layer__icon-box {
|
|
4133
|
+
background-color: var(--color-base-100);
|
|
4134
|
+
}
|
|
4038
4135
|
@container (min-width: 1400px) {
|
|
4039
4136
|
.Layer__bank-transactions__date-col {
|
|
4040
4137
|
min-width: 160px;
|