@layerfi/components 0.1.76 → 0.1.77
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/.eslintrc.js +21 -12
- package/dist/esm/index.js +162 -140
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +51 -40
- package/dist/index.js +91 -69
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +21 -4
- package/dist/styles/index.css.map +2 -2
- package/package.json +5 -7
- package/.prettierrc.json +0 -21
package/dist/styles/index.css
CHANGED
|
@@ -4120,24 +4120,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4120
4120
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
4121
4121
|
position: -webkit-sticky;
|
|
4122
4122
|
position: sticky;
|
|
4123
|
-
right: 494px;
|
|
4124
4123
|
width: 150px;
|
|
4125
|
-
min-width:
|
|
4124
|
+
min-width: 50px;
|
|
4126
4125
|
box-sizing: border-box;
|
|
4127
4126
|
z-index: 2;
|
|
4128
4127
|
text-align: right;
|
|
4129
4128
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4129
|
+
right: 430px;
|
|
4130
|
+
}
|
|
4131
|
+
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col[data-showreceiptuploadcolumn] {
|
|
4132
|
+
right: 494px;
|
|
4133
|
+
}
|
|
4134
|
+
.Layer__table-header.Layer__bank-transactions__documents-col {
|
|
4135
|
+
padding-left: 0px;
|
|
4136
|
+
padding-right: 0px;
|
|
4137
|
+
}
|
|
4138
|
+
.Layer__table-header.Layer__bank-transactions__documents-col[data-showreceiptuploadcolumn] {
|
|
4139
|
+
padding-left: 16px;
|
|
4140
|
+
padding-right: 16px;
|
|
4130
4141
|
}
|
|
4131
4142
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col {
|
|
4132
4143
|
position: -webkit-sticky;
|
|
4133
4144
|
position: sticky;
|
|
4134
4145
|
right: 430px;
|
|
4135
|
-
width: 64px;
|
|
4136
|
-
min-width: 64px;
|
|
4137
4146
|
box-sizing: border-box;
|
|
4138
4147
|
z-index: 2;
|
|
4139
4148
|
text-align: center;
|
|
4140
4149
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4150
|
+
width: 0px;
|
|
4151
|
+
min-width: 0px;
|
|
4152
|
+
max-width: 0px;
|
|
4153
|
+
}
|
|
4154
|
+
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col[data-showreceiptuploadcolumn] {
|
|
4155
|
+
width: 64px;
|
|
4156
|
+
min-width: 64px;
|
|
4157
|
+
max-width: 64px;
|
|
4141
4158
|
}
|
|
4142
4159
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
4143
4160
|
position: -webkit-sticky;
|