@layerfi/components 0.1.112-alpha.1 → 0.1.112-alpha.2
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 +2751 -1780
- package/dist/esm/index.mjs +3950 -2948
- package/dist/index.css +31 -4
- package/dist/index.d.ts +496 -353
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4740,6 +4740,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4740
4740
|
.Layer__UI__DateSegment:not([data-interactive]) {
|
|
4741
4741
|
background-color: transparent;
|
|
4742
4742
|
}
|
|
4743
|
+
.Layer__UI__DatePicker .Layer__UI__FieldError {
|
|
4744
|
+
padding-block-start: 0;
|
|
4745
|
+
}
|
|
4743
4746
|
.Layer__UI__DropdownMenu__Popover[data-entering] {
|
|
4744
4747
|
animation: popover-slide 120ms;
|
|
4745
4748
|
}
|
|
@@ -4863,6 +4866,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4863
4866
|
border-color: var(--color-base-800);
|
|
4864
4867
|
outline: 2px solid var(--outline-default);
|
|
4865
4868
|
}
|
|
4869
|
+
.Layer__InputGroup[data-invalid] {
|
|
4870
|
+
border-color: var(--color-danger);
|
|
4871
|
+
outline: none;
|
|
4872
|
+
}
|
|
4866
4873
|
.Layer__InputGroup[data-action-count="2"] {
|
|
4867
4874
|
grid-template-columns: minmax(0, 1fr) auto auto;
|
|
4868
4875
|
}
|
|
@@ -5156,12 +5163,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5156
5163
|
display: grid;
|
|
5157
5164
|
inline-size: min(90svi, 60ch);
|
|
5158
5165
|
border-radius: var(--border-radius-xs);
|
|
5159
|
-
border:
|
|
5166
|
+
border: 1px solid var(--outline-default);
|
|
5160
5167
|
background: var(--color-base-0);
|
|
5161
5168
|
}
|
|
5162
5169
|
.Layer__Popover[data-trigger=ComboBox] {
|
|
5163
5170
|
inline-size: clamp(min(var(--trigger-width), 90svi), var(--trigger-width) * 1.5, min(80ch, 90svi));
|
|
5164
5171
|
}
|
|
5172
|
+
.Layer__Popover[data-trigger=DatePicker] {
|
|
5173
|
+
inline-size: unset;
|
|
5174
|
+
}
|
|
5165
5175
|
.Layer__Stack {
|
|
5166
5176
|
display: flex;
|
|
5167
5177
|
}
|
|
@@ -8391,6 +8401,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8391
8401
|
.Layer__DateCalendar__Header {
|
|
8392
8402
|
border-bottom: 1px solid var(--border-color);
|
|
8393
8403
|
}
|
|
8404
|
+
.Layer__DateSelection {
|
|
8405
|
+
display: grid;
|
|
8406
|
+
grid-template-columns: repeat(2, minmax(10rem, 12rem));
|
|
8407
|
+
min-width: 18.5rem;
|
|
8408
|
+
}
|
|
8409
|
+
.Layer__DateSelection .Layer__tooltip-trigger {
|
|
8410
|
+
padding-top: 0;
|
|
8411
|
+
}
|
|
8412
|
+
.Layer__DateRangeSelection {
|
|
8413
|
+
display: grid;
|
|
8414
|
+
grid-template-columns: 9rem repeat(2, minmax(10rem, 12rem));
|
|
8415
|
+
}
|
|
8416
|
+
.Layer__DateRangeSelection .Layer__tooltip-trigger {
|
|
8417
|
+
padding-top: 0;
|
|
8418
|
+
}
|
|
8394
8419
|
.Layer__TagSelectorLayoutGroup {
|
|
8395
8420
|
display: grid;
|
|
8396
8421
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -9055,8 +9080,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9055
9080
|
transition: border 5s ease-out;
|
|
9056
9081
|
}
|
|
9057
9082
|
.Layer__bank-transaction-row__expand-button {
|
|
9058
|
-
width:
|
|
9059
|
-
|
|
9083
|
+
width: fit-content;
|
|
9084
|
+
vertical-align: middle;
|
|
9060
9085
|
}
|
|
9061
9086
|
.Layer__bank-transaction-row__actions-cell--open {
|
|
9062
9087
|
border-left: 1px solid transparent;
|
|
@@ -9120,6 +9145,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9120
9145
|
opacity: 1;
|
|
9121
9146
|
transition: max-height 350ms ease-out, opacity 200ms ease-out;
|
|
9122
9147
|
}
|
|
9148
|
+
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__base-row .Layer__tooltip-trigger {
|
|
9149
|
+
padding: 0;
|
|
9150
|
+
}
|
|
9123
9151
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__expanded-row {
|
|
9124
9152
|
overflow: hidden;
|
|
9125
9153
|
max-height: 0;
|
|
@@ -10382,7 +10410,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10382
10410
|
position: relative;
|
|
10383
10411
|
display: flex;
|
|
10384
10412
|
align-items: stretch;
|
|
10385
|
-
overflow: auto;
|
|
10386
10413
|
}
|
|
10387
10414
|
.Layer__component-container.Layer__journal .Layer__table-state-container {
|
|
10388
10415
|
height: calc(100% - 160px);
|