@layerfi/components 0.1.110 → 0.1.111
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/cjs/index.cjs +9300 -8696
- package/dist/cjs/index.css +66 -0
- package/dist/esm/index.css +66 -0
- package/dist/esm/index.mjs +6995 -6399
- package/dist/index.css +111 -23
- package/dist/index.d.ts +6180 -629
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3676,13 +3676,13 @@
|
|
|
3676
3676
|
.Layer__Portal .Layer__textarea,
|
|
3677
3677
|
.Layer__Portal .Layer__select__control,
|
|
3678
3678
|
.Layer__Portal .Layer__input {
|
|
3679
|
-
|
|
3679
|
+
height: 36px;
|
|
3680
3680
|
font-size: 16px;
|
|
3681
3681
|
}
|
|
3682
3682
|
.Layer__view .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
|
|
3683
3683
|
.Layer__component .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
|
|
3684
3684
|
.Layer__Portal .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control {
|
|
3685
|
-
|
|
3685
|
+
height: 36px;
|
|
3686
3686
|
}
|
|
3687
3687
|
}
|
|
3688
3688
|
.Layer__form .Layer__form-section {
|
|
@@ -4607,7 +4607,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4607
4607
|
display: flex;
|
|
4608
4608
|
align-items: center;
|
|
4609
4609
|
justify-content: center;
|
|
4610
|
-
--size: 1.
|
|
4610
|
+
--size: 1.25rem;
|
|
4611
4611
|
block-size: var(--size);
|
|
4612
4612
|
inline-size: var(--size);
|
|
4613
4613
|
cursor: pointer;
|
|
@@ -4616,7 +4616,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4616
4616
|
display: flex;
|
|
4617
4617
|
align-items: center;
|
|
4618
4618
|
justify-content: center;
|
|
4619
|
-
--size: 1.
|
|
4619
|
+
--size: 1.25rem;
|
|
4620
4620
|
block-size: var(--size);
|
|
4621
4621
|
inline-size: var(--size);
|
|
4622
4622
|
cursor: default;
|
|
@@ -4629,7 +4629,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4629
4629
|
inline-size: var(--size);
|
|
4630
4630
|
cursor: pointer;
|
|
4631
4631
|
color: var(--color-base-600);
|
|
4632
|
-
--size: 1.
|
|
4632
|
+
--size: 1.25rem;
|
|
4633
4633
|
}
|
|
4634
4634
|
.Layer__ComboBoxMenu {
|
|
4635
4635
|
overflow: hidden;
|
|
@@ -8147,6 +8147,69 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8147
8147
|
.Layer__SearchField > [slot=search] {
|
|
8148
8148
|
grid-area: search;
|
|
8149
8149
|
}
|
|
8150
|
+
.Layer__JournalEntryForm {
|
|
8151
|
+
padding-top: var(--spacing-xl);
|
|
8152
|
+
}
|
|
8153
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
8154
|
+
padding: 0 var(--spacing-xl);
|
|
8155
|
+
display: flex;
|
|
8156
|
+
gap: var(--spacing-md);
|
|
8157
|
+
}
|
|
8158
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
8159
|
+
flex: 0 0 clamp(16rem, 100%, 24rem);
|
|
8160
|
+
}
|
|
8161
|
+
@container (max-width: 760px) {
|
|
8162
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
8163
|
+
flex-direction: column;
|
|
8164
|
+
}
|
|
8165
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
8166
|
+
flex: 1;
|
|
8167
|
+
max-width: clamp(12rem, 100%, 16rem);
|
|
8168
|
+
}
|
|
8169
|
+
}
|
|
8170
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__Metadata {
|
|
8171
|
+
border-top: 1px solid var(--color-base-300);
|
|
8172
|
+
background-color: var(--color-base-50);
|
|
8173
|
+
}
|
|
8174
|
+
.Layer__JournalEntryForm .Layer__JournalEntryForm__AdditionalTextFields {
|
|
8175
|
+
flex: 1;
|
|
8176
|
+
min-width: 20rem;
|
|
8177
|
+
max-width: 32rem;
|
|
8178
|
+
}
|
|
8179
|
+
.Layer__JournalEntryForm__LineItem {
|
|
8180
|
+
display: flex;
|
|
8181
|
+
align-items: flex-end;
|
|
8182
|
+
gap: var(--spacing-xs);
|
|
8183
|
+
}
|
|
8184
|
+
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8185
|
+
flex: 1 1 12rem;
|
|
8186
|
+
max-width: 20rem;
|
|
8187
|
+
}
|
|
8188
|
+
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--amount {
|
|
8189
|
+
flex: 0 1 12rem;
|
|
8190
|
+
max-width: 12rem;
|
|
8191
|
+
}
|
|
8192
|
+
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--tag {
|
|
8193
|
+
flex: 0 0 auto;
|
|
8194
|
+
min-width: 12rem;
|
|
8195
|
+
}
|
|
8196
|
+
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--memo {
|
|
8197
|
+
flex: 2 1 12rem;
|
|
8198
|
+
}
|
|
8199
|
+
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
8200
|
+
display: none;
|
|
8201
|
+
}
|
|
8202
|
+
@media (max-width: 768px) {
|
|
8203
|
+
.Layer__JournalEntryForm__LineItem {
|
|
8204
|
+
flex-direction: column;
|
|
8205
|
+
align-items: stretch;
|
|
8206
|
+
gap: var(--spacing-sm);
|
|
8207
|
+
}
|
|
8208
|
+
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
8209
|
+
flex: 1 1 auto;
|
|
8210
|
+
max-width: 16rem;
|
|
8211
|
+
}
|
|
8212
|
+
}
|
|
8150
8213
|
.Layer__TagSelectorLayoutGroup {
|
|
8151
8214
|
display: grid;
|
|
8152
8215
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -8682,13 +8745,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8682
8745
|
display: flex;
|
|
8683
8746
|
flex-direction: column;
|
|
8684
8747
|
gap: var(--spacing-sm);
|
|
8685
|
-
|
|
8748
|
+
min-width: 40rem;
|
|
8749
|
+
max-width: 64rem;
|
|
8686
8750
|
}
|
|
8687
8751
|
.Layer__expanded-bank-transaction-row__content-panels {
|
|
8688
8752
|
box-sizing: border-box;
|
|
8689
8753
|
display: flex;
|
|
8690
8754
|
flex-direction: row;
|
|
8691
|
-
|
|
8755
|
+
}
|
|
8756
|
+
.Layer__bank-transaction-form-fields .Layer__ComboBoxContainer {
|
|
8757
|
+
max-width: 20rem;
|
|
8758
|
+
}
|
|
8759
|
+
.Layer__bank-transaction-form-fields .Layer__bank-transaction-memo-input-group {
|
|
8760
|
+
max-width: 40rem;
|
|
8692
8761
|
}
|
|
8693
8762
|
.Layer__expanded-bank-transaction-row__content-panel {
|
|
8694
8763
|
box-sizing: border-box;
|
|
@@ -8697,6 +8766,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8697
8766
|
flex-direction: column;
|
|
8698
8767
|
gap: var(--spacing-sm);
|
|
8699
8768
|
overflow: hidden;
|
|
8769
|
+
height: 0;
|
|
8700
8770
|
max-width: 0;
|
|
8701
8771
|
opacity: 0;
|
|
8702
8772
|
transition: max-width 150ms ease-out, opacity 300ms ease-out;
|
|
@@ -8706,6 +8776,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8706
8776
|
padding: 0 var(--spacing-md);
|
|
8707
8777
|
}
|
|
8708
8778
|
.Layer__expanded-bank-transaction-row__content-panel.Layer__expanded-bank-transaction-row__content-panel--active {
|
|
8779
|
+
height: auto;
|
|
8709
8780
|
max-width: 100%;
|
|
8710
8781
|
opacity: 1;
|
|
8711
8782
|
}
|
|
@@ -8741,9 +8812,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8741
8812
|
max-width: 100%;
|
|
8742
8813
|
opacity: 1;
|
|
8743
8814
|
}
|
|
8744
|
-
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8745
|
-
max-height: 38px;
|
|
8746
|
-
}
|
|
8747
8815
|
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__splits-buttons {
|
|
8748
8816
|
max-height: 38px;
|
|
8749
8817
|
white-space: nowrap;
|
|
@@ -8767,7 +8835,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8767
8835
|
display: flex;
|
|
8768
8836
|
flex: 1;
|
|
8769
8837
|
flex-direction: column;
|
|
8770
|
-
gap: var(--spacing-
|
|
8838
|
+
gap: var(--spacing-xs);
|
|
8771
8839
|
padding-top: 2px;
|
|
8772
8840
|
}
|
|
8773
8841
|
.Layer__expanded-bank-transaction-row__splits-total {
|
|
@@ -8813,7 +8881,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8813
8881
|
.Layer__expanded-bank-transaction-row__description textarea {
|
|
8814
8882
|
height: 100px;
|
|
8815
8883
|
width: 100%;
|
|
8816
|
-
max-width: 680px;
|
|
8817
8884
|
}
|
|
8818
8885
|
.Layer__expanded-bank-transaction-row__file-upload {
|
|
8819
8886
|
display: flex;
|
|
@@ -8842,9 +8909,33 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8842
8909
|
justify-content: flex-end;
|
|
8843
8910
|
}
|
|
8844
8911
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8912
|
+
display: grid;
|
|
8913
|
+
grid-template-areas: "amount category category button" "customer tags tags .";
|
|
8914
|
+
grid-template-columns: minmax(8rem, 12rem) minmax(12rem, 16rem) 1fr auto;
|
|
8915
|
+
gap: var(--spacing-xs);
|
|
8916
|
+
align-items: start;
|
|
8917
|
+
max-width: 40rem;
|
|
8918
|
+
}
|
|
8919
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__category-menu--full {
|
|
8920
|
+
grid-area: category;
|
|
8921
|
+
width: 100%;
|
|
8922
|
+
}
|
|
8923
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__amount {
|
|
8924
|
+
grid-area: amount;
|
|
8925
|
+
}
|
|
8926
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__customer {
|
|
8927
|
+
grid-area: customer;
|
|
8928
|
+
}
|
|
8929
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__button {
|
|
8930
|
+
grid-area: button;
|
|
8931
|
+
}
|
|
8932
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__tags {
|
|
8845
8933
|
display: flex;
|
|
8846
|
-
|
|
8847
|
-
gap: var(--spacing-
|
|
8934
|
+
grid-area: tags;
|
|
8935
|
+
gap: var(--spacing-sm);
|
|
8936
|
+
}
|
|
8937
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__tags .Layer__JournalEntryForm__Field--tag {
|
|
8938
|
+
width: 12rem;
|
|
8848
8939
|
}
|
|
8849
8940
|
.Layer__bank-transactions__list {
|
|
8850
8941
|
list-style: none;
|
|
@@ -9216,14 +9307,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9216
9307
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
9217
9308
|
display: grid;
|
|
9218
9309
|
grid-template-columns: 120px minmax(0, 1fr) 100px max-content;
|
|
9219
|
-
gap: 0;
|
|
9310
|
+
gap: var(--spacing-xs) 0;
|
|
9311
|
+
max-width: 40rem;
|
|
9220
9312
|
margin-bottom: var(--spacing-sm);
|
|
9221
9313
|
}
|
|
9222
9314
|
.Layer__expanded-bank-transaction-row__match-table:has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9223
9315
|
grid-template-columns: 120px minmax(0, 1fr) 100px max-content min-content;
|
|
9224
9316
|
}
|
|
9225
9317
|
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)) {
|
|
9226
|
-
grid-template-columns: 120px 1fr 100px;
|
|
9318
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px;
|
|
9227
9319
|
}
|
|
9228
9320
|
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)):has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9229
9321
|
grid-template-columns: 120px minmax(0, 1fr) 100px min-content;
|
|
@@ -9461,15 +9553,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9461
9553
|
justify-content: space-between;
|
|
9462
9554
|
width: 100% !important;
|
|
9463
9555
|
}
|
|
9464
|
-
.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9465
|
-
display: none !important;
|
|
9466
|
-
}
|
|
9467
9556
|
.Layer__expanded-bank-transaction-row__match-table__desc {
|
|
9468
9557
|
gap: var(--spacing-sm);
|
|
9469
9558
|
justify-content: space-between;
|
|
9470
9559
|
}
|
|
9471
9560
|
.Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
|
|
9472
|
-
width: calc(100% -
|
|
9561
|
+
width: calc(100% - 220px);
|
|
9473
9562
|
}
|
|
9474
9563
|
.Layer__expanded-bank-transaction-row__match-table__desc > span:nth-child(2) {
|
|
9475
9564
|
flex: 0;
|
|
@@ -9483,11 +9572,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9483
9572
|
display: flex;
|
|
9484
9573
|
flex: 1;
|
|
9485
9574
|
flex-direction: column;
|
|
9486
|
-
gap: var(--spacing-
|
|
9575
|
+
gap: var(--spacing-xs);
|
|
9487
9576
|
width: 100%;
|
|
9488
9577
|
}
|
|
9489
9578
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
9490
|
-
gap: var(--spacing-sm);
|
|
9491
9579
|
width: 100%;
|
|
9492
9580
|
}
|
|
9493
9581
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry input {
|
|
@@ -9670,7 +9758,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9670
9758
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
|
|
9671
9759
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
9672
9760
|
flex: 1;
|
|
9673
|
-
max-width:
|
|
9761
|
+
max-width: 12rem;
|
|
9674
9762
|
}
|
|
9675
9763
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
|
|
9676
9764
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
|