@layerfi/components 0.1.121 → 0.1.122
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 +981 -918
- package/dist/esm/index.mjs +983 -920
- package/dist/index.css +178 -113
- package/dist/index.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1320,6 +1320,9 @@
|
|
|
1320
1320
|
padding-right: 0;
|
|
1321
1321
|
padding-left: 0;
|
|
1322
1322
|
}
|
|
1323
|
+
.Layer__header__col[data-fluid=true] {
|
|
1324
|
+
flex: 1 1;
|
|
1325
|
+
}
|
|
1323
1326
|
::placeholder {
|
|
1324
1327
|
color: var(--input-placeholder-color);
|
|
1325
1328
|
}
|
|
@@ -2992,6 +2995,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
2992
2995
|
.Layer__bank-transactions__header--with-date-picker.Layer__bank-transactions__header--mobile .Layer__MonthPicker__InputGroup {
|
|
2993
2996
|
margin-right: 4px;
|
|
2994
2997
|
}
|
|
2998
|
+
.Layer__bank-transactions__header__search-and-menu > :first-child {
|
|
2999
|
+
flex: 1;
|
|
3000
|
+
}
|
|
2995
3001
|
.Layer__bank-transaction-row {
|
|
2996
3002
|
transition: all var(--transition-speed) ease-in-out;
|
|
2997
3003
|
opacity: 0.3;
|
|
@@ -4848,9 +4854,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4848
4854
|
align-items: stretch;
|
|
4849
4855
|
background-color: white;
|
|
4850
4856
|
}
|
|
4851
|
-
:is(.Layer__input-tooltip:has(.Layer__ProfitAndLoss__TagMultiSelect)) {
|
|
4852
|
-
flex: 1;
|
|
4853
|
-
}
|
|
4854
4857
|
.Layer__profit-and-loss__main-panel {
|
|
4855
4858
|
flex: 1;
|
|
4856
4859
|
}
|
|
@@ -5853,6 +5856,27 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
5853
5856
|
.Layer__Stack[data-overflow=visible] {
|
|
5854
5857
|
overflow: visible;
|
|
5855
5858
|
}
|
|
5859
|
+
.Layer__Stack[data-gap="4xs"] {
|
|
5860
|
+
gap: var(--spacing-4xs);
|
|
5861
|
+
}
|
|
5862
|
+
.Layer__Stack[data-pb="4xs"] {
|
|
5863
|
+
padding-block: var(--spacing-4xs);
|
|
5864
|
+
}
|
|
5865
|
+
.Layer__Stack[data-pbe="4xs"] {
|
|
5866
|
+
padding-block-end: var(--spacing-4xs);
|
|
5867
|
+
}
|
|
5868
|
+
.Layer__Stack[data-pbs="4xs"] {
|
|
5869
|
+
padding-block-start: var(--spacing-4xs);
|
|
5870
|
+
}
|
|
5871
|
+
.Layer__Stack[data-pi="4xs"] {
|
|
5872
|
+
padding-inline: var(--spacing-4xs);
|
|
5873
|
+
}
|
|
5874
|
+
.Layer__Stack[data-pie="4xs"] {
|
|
5875
|
+
padding-inline-end: var(--spacing-4xs);
|
|
5876
|
+
}
|
|
5877
|
+
.Layer__Stack[data-pis="4xs"] {
|
|
5878
|
+
padding-inline-start: var(--spacing-4xs);
|
|
5879
|
+
}
|
|
5856
5880
|
.Layer__Stack[data-gap="3xs"] {
|
|
5857
5881
|
gap: var(--spacing-3xs);
|
|
5858
5882
|
}
|
|
@@ -6230,6 +6254,24 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
6230
6254
|
.Layer__Span[data-size=xl] {
|
|
6231
6255
|
font-size: var(--text-xl);
|
|
6232
6256
|
}
|
|
6257
|
+
.Layer__Header[data-pb="4xs"],
|
|
6258
|
+
.Layer__Label[data-pb="4xs"],
|
|
6259
|
+
.Layer__P[data-pb="4xs"],
|
|
6260
|
+
.Layer__Span[data-pb="4xs"] {
|
|
6261
|
+
padding-block: var(--spacing-4xs);
|
|
6262
|
+
}
|
|
6263
|
+
.Layer__Header[data-pbe="4xs"],
|
|
6264
|
+
.Layer__Label[data-pbe="4xs"],
|
|
6265
|
+
.Layer__P[data-pbe="4xs"],
|
|
6266
|
+
.Layer__Span[data-pbe="4xs"] {
|
|
6267
|
+
padding-block-end: var(--spacing-4xs);
|
|
6268
|
+
}
|
|
6269
|
+
.Layer__Header[data-pbs="4xs"],
|
|
6270
|
+
.Layer__Label[data-pbs="4xs"],
|
|
6271
|
+
.Layer__P[data-pbs="4xs"],
|
|
6272
|
+
.Layer__Span[data-pbs="4xs"] {
|
|
6273
|
+
padding-block-start: var(--spacing-4xs);
|
|
6274
|
+
}
|
|
6233
6275
|
.Layer__Header[data-pb="3xs"],
|
|
6234
6276
|
.Layer__Label[data-pb="3xs"],
|
|
6235
6277
|
.Layer__P[data-pb="3xs"],
|
|
@@ -6791,6 +6833,12 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
6791
6833
|
text-overflow: ellipsis;
|
|
6792
6834
|
max-inline-size: min(60rem, 100%);
|
|
6793
6835
|
}
|
|
6836
|
+
.Layer__UI__Heading[data-pbe="4xs"] {
|
|
6837
|
+
padding-block-end: var(--spacing-4xs);
|
|
6838
|
+
}
|
|
6839
|
+
.Layer__UI__Heading[data-pie="4xs"] {
|
|
6840
|
+
padding-inline-end: var(--spacing-4xs);
|
|
6841
|
+
}
|
|
6794
6842
|
.Layer__UI__Heading[data-pbe="3xs"] {
|
|
6795
6843
|
padding-block-end: var(--spacing-3xs);
|
|
6796
6844
|
}
|
|
@@ -6898,6 +6946,12 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
6898
6946
|
width: 100%;
|
|
6899
6947
|
background-color: var(--color-base-300);
|
|
6900
6948
|
}
|
|
6949
|
+
.Layer__separator[data-mbe="4xs"] {
|
|
6950
|
+
margin-block-end: var(--spacing-4xs);
|
|
6951
|
+
}
|
|
6952
|
+
.Layer__separator[data-mbs="4xs"] {
|
|
6953
|
+
margin-block-start: var(--spacing-4xs);
|
|
6954
|
+
}
|
|
6901
6955
|
.Layer__separator[data-mbe="3xs"] {
|
|
6902
6956
|
margin-block-end: var(--spacing-3xs);
|
|
6903
6957
|
}
|
|
@@ -7003,7 +7057,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7003
7057
|
--block-size: 2.25rem;
|
|
7004
7058
|
block-size: var(--block-size);
|
|
7005
7059
|
border-radius: var(--input-border-radius);
|
|
7006
|
-
border: 1px solid var(--color
|
|
7060
|
+
border: 1px solid var(--border-color);
|
|
7007
7061
|
background-color: var(--color-base-0);
|
|
7008
7062
|
}
|
|
7009
7063
|
.Layer__ComboBoxControl--focused {
|
|
@@ -7015,6 +7069,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7015
7069
|
.Layer__ComboBoxControl--readonly {
|
|
7016
7070
|
background-color: var(--bg-muted);
|
|
7017
7071
|
}
|
|
7072
|
+
.Layer__ComboBoxControl--error {
|
|
7073
|
+
border-color: var(--color-danger);
|
|
7074
|
+
}
|
|
7018
7075
|
|
|
7019
7076
|
.Layer__ComboBoxContainer > .Layer__ComboBoxControl {
|
|
7020
7077
|
/*
|
|
@@ -7034,6 +7091,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7034
7091
|
*/
|
|
7035
7092
|
outline: 2px solid var(--outline-default) !important;
|
|
7036
7093
|
}
|
|
7094
|
+
.Layer__ComboBoxContainer > .Layer__ComboBoxControl--focused.Layer__ComboBoxControl--error {
|
|
7095
|
+
outline-color: var(--color-info-error-bg) !important;
|
|
7096
|
+
}
|
|
7037
7097
|
|
|
7038
7098
|
.Layer__ComboBoxValueContainer {
|
|
7039
7099
|
padding-inline-start: var(--spacing-xs);
|
|
@@ -7156,6 +7216,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7156
7216
|
|
|
7157
7217
|
.Layer__ComboBoxNoOptionsMessage {
|
|
7158
7218
|
padding-block: var(--spacing-sm);
|
|
7219
|
+
}
|
|
7220
|
+
|
|
7221
|
+
.Layer__ComboBoxPlaceholder {
|
|
7222
|
+
color: var(--color-base-600);
|
|
7223
|
+
}
|
|
7224
|
+
.Layer__ComboBoxPlaceholder--error {
|
|
7225
|
+
color: var(--color-danger);
|
|
7159
7226
|
}.Layer__MoneySpan {
|
|
7160
7227
|
white-space: nowrap;
|
|
7161
7228
|
}
|
|
@@ -7623,6 +7690,91 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7623
7690
|
}
|
|
7624
7691
|
.Layer__UI__DatePicker[data-disabled] {
|
|
7625
7692
|
color: var(--color-base-500);
|
|
7693
|
+
}
|
|
7694
|
+
.Layer__UI__DatePicker[data-readonly] [slot=input] {
|
|
7695
|
+
background-color: var(--bg-muted);
|
|
7696
|
+
}.Layer__UI__Calendar {
|
|
7697
|
+
width: min-content;
|
|
7698
|
+
}
|
|
7699
|
+
|
|
7700
|
+
.Layer__UI__CalendarGrid {
|
|
7701
|
+
border-collapse: collapse;
|
|
7702
|
+
}
|
|
7703
|
+
|
|
7704
|
+
.Layer__UI__CalendarCell,
|
|
7705
|
+
.Layer__UI__CalendarHeaderCell {
|
|
7706
|
+
height: 2rem;
|
|
7707
|
+
width: 2rem;
|
|
7708
|
+
border-radius: var(--border-radius-3xs);
|
|
7709
|
+
font-size: var(--text-sm);
|
|
7710
|
+
line-height: 2rem;
|
|
7711
|
+
text-align: center;
|
|
7712
|
+
}
|
|
7713
|
+
.Layer__UI__CalendarCell[data-size=md],
|
|
7714
|
+
.Layer__UI__CalendarHeaderCell[data-size=md] {
|
|
7715
|
+
height: 2.75rem;
|
|
7716
|
+
width: 2.75rem;
|
|
7717
|
+
font-size: var(--text-md);
|
|
7718
|
+
line-height: 2.75rem;
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7721
|
+
.Layer__UI__CalendarCell {
|
|
7722
|
+
transition: background-color 0.2s ease, color 0.2s ease;
|
|
7723
|
+
}
|
|
7724
|
+
.Layer__UI__CalendarCell[data-hovered] {
|
|
7725
|
+
background-color: var(--color-base-400);
|
|
7726
|
+
}
|
|
7727
|
+
.Layer__UI__CalendarCell[data-selected] {
|
|
7728
|
+
background-color: var(--color-base-900);
|
|
7729
|
+
color: var(--color-base-0);
|
|
7730
|
+
}
|
|
7731
|
+
.Layer__UI__CalendarCell[data-disabled] {
|
|
7732
|
+
color: var(--color-base-400);
|
|
7733
|
+
}
|
|
7734
|
+
.Layer__UI__CalendarCell[data-outside-month] {
|
|
7735
|
+
color: var(--color-base-0);
|
|
7736
|
+
transition: none;
|
|
7737
|
+
}.Layer__DateCalendar__Header {
|
|
7738
|
+
border-bottom: 1px solid var(--border-color);
|
|
7739
|
+
}.Layer__PickerDropdownIndicator {
|
|
7740
|
+
display: flex;
|
|
7741
|
+
align-items: center;
|
|
7742
|
+
justify-content: center;
|
|
7743
|
+
block-size: var(--size);
|
|
7744
|
+
min-inline-size: var(--size);
|
|
7745
|
+
padding: 0;
|
|
7746
|
+
border: none;
|
|
7747
|
+
background: none;
|
|
7748
|
+
cursor: pointer;
|
|
7749
|
+
color: var(--color-base-600);
|
|
7750
|
+
--size: 1.25rem;
|
|
7751
|
+
}.Layer__Popover {
|
|
7752
|
+
display: grid;
|
|
7753
|
+
inline-size: min(90svi, 60ch);
|
|
7754
|
+
border-radius: var(--border-radius-xs);
|
|
7755
|
+
border: 1px solid var(--outline-default);
|
|
7756
|
+
background: var(--color-base-0);
|
|
7757
|
+
}
|
|
7758
|
+
.Layer__Popover[data-flex-inline] {
|
|
7759
|
+
inline-size: auto;
|
|
7760
|
+
}.Layer__UI__DatePicker > .Layer__Label {
|
|
7761
|
+
display: block;
|
|
7762
|
+
}.Layer__FormDatePickerField {
|
|
7763
|
+
display: grid;
|
|
7764
|
+
grid-template-areas: "label" "datepicker";
|
|
7765
|
+
}
|
|
7766
|
+
.Layer__FormDatePickerField--inline {
|
|
7767
|
+
grid-template-areas: "label datepicker";
|
|
7768
|
+
align-items: center;
|
|
7769
|
+
}
|
|
7770
|
+
.Layer__FormDatePickerField--inline .Layer__UI__DatePicker {
|
|
7771
|
+
display: contents;
|
|
7772
|
+
}
|
|
7773
|
+
.Layer__FormDatePickerField--inline .Layer__UI__DatePicker > .Layer__UI__Label {
|
|
7774
|
+
grid-area: label;
|
|
7775
|
+
}
|
|
7776
|
+
.Layer__FormDatePickerField .Layer__UI__DatePicker {
|
|
7777
|
+
grid-area: datepicker;
|
|
7626
7778
|
}.Layer__RadioGroup {
|
|
7627
7779
|
display: flex;
|
|
7628
7780
|
flex-direction: column;
|
|
@@ -7630,7 +7782,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7630
7782
|
}
|
|
7631
7783
|
.Layer__RadioGroup[data-orientation=horizontal] {
|
|
7632
7784
|
flex-direction: row;
|
|
7633
|
-
gap: var(--spacing-
|
|
7785
|
+
gap: var(--spacing-sm);
|
|
7634
7786
|
}
|
|
7635
7787
|
|
|
7636
7788
|
.Layer__Radio {
|
|
@@ -7652,7 +7804,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7652
7804
|
background-color: var(--color-base-50);
|
|
7653
7805
|
color: transparent;
|
|
7654
7806
|
transition: all 100ms ease-out;
|
|
7655
|
-
--size:
|
|
7807
|
+
--size: 1.25rem;
|
|
7656
7808
|
}
|
|
7657
7809
|
.Layer__Radio [slot=radio][data-pressed] {
|
|
7658
7810
|
border-color: var(--outline-active);
|
|
@@ -7662,12 +7814,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7662
7814
|
stroke: none;
|
|
7663
7815
|
transition: all 100ms ease-out;
|
|
7664
7816
|
}
|
|
7665
|
-
.Layer__Radio[data-size=md] [slot=radio] {
|
|
7666
|
-
--size: 1.25rem;
|
|
7667
|
-
}
|
|
7668
|
-
.Layer__Radio[data-size=lg] [slot=radio] {
|
|
7669
|
-
--size: 1.5rem;
|
|
7670
|
-
}
|
|
7671
7817
|
.Layer__Radio[data-readonly] [slot=radio] {
|
|
7672
7818
|
background-color: var(--bg-muted);
|
|
7673
7819
|
}
|
|
@@ -7692,45 +7838,20 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7692
7838
|
}
|
|
7693
7839
|
.Layer__Radio[data-disabled] [slot=radio] {
|
|
7694
7840
|
background-color: var(--color-base-200);
|
|
7695
|
-
}
|
|
7696
|
-
.Layer__Radio[data-labeled] {
|
|
7697
|
-
gap: var(--spacing-xs);
|
|
7698
|
-
}
|
|
7699
|
-
.Layer__Radio[data-invalid] [slot=radio] {
|
|
7700
|
-
border-color: var(--color-info-error);
|
|
7701
|
-
}
|
|
7702
|
-
.Layer__Radio[data-selected][data-invalid] [slot=radio] {
|
|
7703
|
-
background-color: var(--color-info-error);
|
|
7704
|
-
}.Layer__FormRadioGroupField {
|
|
7841
|
+
}.Layer__FormRadioGroupField.Layer__RadioGroup {
|
|
7705
7842
|
display: grid;
|
|
7706
|
-
grid-template-areas: "label" "
|
|
7707
|
-
|
|
7708
|
-
.Layer__FormRadioGroupField > [slot=label] {
|
|
7709
|
-
grid-area: label;
|
|
7710
|
-
padding-block-end: var(--spacing-3xs);
|
|
7711
|
-
}
|
|
7712
|
-
.Layer__FormRadioGroupField > [slot=radiogroup] {
|
|
7713
|
-
grid-area: radiogroup;
|
|
7714
|
-
margin-block: var(--spacing-2xs);
|
|
7715
|
-
}
|
|
7716
|
-
.Layer__FormRadioGroupField > [slot=error] {
|
|
7717
|
-
grid-area: error;
|
|
7718
|
-
}
|
|
7719
|
-
.Layer__FormRadioGroupField__Error {
|
|
7720
|
-
font-size: var(--font-size-xs);
|
|
7721
|
-
color: var(--color-info-error);
|
|
7843
|
+
grid-template-areas: "label" "options";
|
|
7844
|
+
gap: var(--spacing-3xs);
|
|
7722
7845
|
}
|
|
7723
|
-
.Layer__FormRadioGroupField--inline {
|
|
7724
|
-
grid-template-areas: "label
|
|
7725
|
-
|
|
7726
|
-
align-items: start;
|
|
7846
|
+
.Layer__FormRadioGroupField.Layer__RadioGroup.Layer__FormRadioGroupField--inline {
|
|
7847
|
+
grid-template-areas: "label options";
|
|
7848
|
+
gap: 0;
|
|
7727
7849
|
}
|
|
7728
|
-
.Layer__FormRadioGroupField
|
|
7729
|
-
|
|
7730
|
-
padding-block-end: 0;
|
|
7850
|
+
.Layer__FormRadioGroupField.Layer__RadioGroup > [slot=label] {
|
|
7851
|
+
grid-area: label;
|
|
7731
7852
|
}
|
|
7732
|
-
.Layer__FormRadioGroupField
|
|
7733
|
-
|
|
7853
|
+
.Layer__FormRadioGroupField.Layer__RadioGroup > [slot=options] {
|
|
7854
|
+
grid-area: options;
|
|
7734
7855
|
}.Layer__UI__Switch {
|
|
7735
7856
|
display: flex;
|
|
7736
7857
|
gap: 0.5rem;
|
|
@@ -7825,18 +7946,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7825
7946
|
}.Layer__upload-transactions {
|
|
7826
7947
|
container-type: inline-size;
|
|
7827
7948
|
}
|
|
7828
|
-
.Layer__upload-transactions .Layer__upload-transactions__select-account-name-
|
|
7829
|
-
flex: auto;
|
|
7830
|
-
}
|
|
7831
|
-
.Layer__upload-transactions .Layer__upload-transactions__select-account-name-input .Layer__select__control {
|
|
7949
|
+
.Layer__upload-transactions .Layer__upload-transactions__select-account-name-input__Container {
|
|
7832
7950
|
max-width: 24rem;
|
|
7833
7951
|
}
|
|
7834
|
-
.Layer__upload-transactions .Layer__upload-transactions__select-account-name-input--error .Layer__select__control {
|
|
7835
|
-
box-shadow: 0 0 0 1px var(--color-base-300), 0 0 0 2px var(--color-danger);
|
|
7836
|
-
}
|
|
7837
|
-
.Layer__upload-transactions .Layer__upload-transactions__select-account-name-input--error .Layer__select__placeholder {
|
|
7838
|
-
color: var(--color-danger);
|
|
7839
|
-
}
|
|
7840
7952
|
.Layer__upload-transactions .Layer__upload-transactions__create-account-form {
|
|
7841
7953
|
padding: var(--spacing-md);
|
|
7842
7954
|
border-radius: var(--border-radius-3xs);
|
|
@@ -8034,15 +8146,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
8034
8146
|
block-size: 2.75rem;
|
|
8035
8147
|
inline-size: 6.5rem;
|
|
8036
8148
|
font-size: var(--text-md);
|
|
8037
|
-
}.Layer__Popover {
|
|
8038
|
-
display: grid;
|
|
8039
|
-
inline-size: min(90svi, 60ch);
|
|
8040
|
-
border-radius: var(--border-radius-xs);
|
|
8041
|
-
border: 1px solid var(--outline-default);
|
|
8042
|
-
background: var(--color-base-0);
|
|
8043
|
-
}
|
|
8044
|
-
.Layer__Popover[data-flex-inline] {
|
|
8045
|
-
inline-size: auto;
|
|
8046
8149
|
}.Layer__MonthPicker__Popover {
|
|
8047
8150
|
inline-size: auto;
|
|
8048
8151
|
}
|
|
@@ -8849,49 +8952,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
8849
8952
|
.Layer__Pill[data-status=error][data-focus-visible] {
|
|
8850
8953
|
outline: 1px solid var(--color-info-error-bg);
|
|
8851
8954
|
outline-offset: 1px;
|
|
8852
|
-
}.Layer__UI__Calendar {
|
|
8853
|
-
width: min-content;
|
|
8854
|
-
}
|
|
8855
|
-
|
|
8856
|
-
.Layer__UI__CalendarGrid {
|
|
8857
|
-
border-collapse: collapse;
|
|
8858
|
-
}
|
|
8859
|
-
|
|
8860
|
-
.Layer__UI__CalendarCell,
|
|
8861
|
-
.Layer__UI__CalendarHeaderCell {
|
|
8862
|
-
height: 2rem;
|
|
8863
|
-
width: 2rem;
|
|
8864
|
-
border-radius: var(--border-radius-3xs);
|
|
8865
|
-
font-size: var(--text-sm);
|
|
8866
|
-
line-height: 2rem;
|
|
8867
|
-
text-align: center;
|
|
8868
|
-
}
|
|
8869
|
-
.Layer__UI__CalendarCell[data-size=md],
|
|
8870
|
-
.Layer__UI__CalendarHeaderCell[data-size=md] {
|
|
8871
|
-
height: 2.75rem;
|
|
8872
|
-
width: 2.75rem;
|
|
8873
|
-
font-size: var(--text-md);
|
|
8874
|
-
line-height: 2.75rem;
|
|
8875
|
-
}
|
|
8876
|
-
|
|
8877
|
-
.Layer__UI__CalendarCell {
|
|
8878
|
-
transition: background-color 0.2s ease, color 0.2s ease;
|
|
8879
|
-
}
|
|
8880
|
-
.Layer__UI__CalendarCell[data-hovered] {
|
|
8881
|
-
background-color: var(--color-base-400);
|
|
8882
|
-
}
|
|
8883
|
-
.Layer__UI__CalendarCell[data-selected] {
|
|
8884
|
-
background-color: var(--color-base-900);
|
|
8885
|
-
color: var(--color-base-0);
|
|
8886
|
-
}
|
|
8887
|
-
.Layer__UI__CalendarCell[data-disabled] {
|
|
8888
|
-
color: var(--color-base-400);
|
|
8889
|
-
}
|
|
8890
|
-
.Layer__UI__CalendarCell[data-outside-month] {
|
|
8891
|
-
color: var(--color-base-0);
|
|
8892
|
-
transition: none;
|
|
8893
|
-
}.Layer__DateCalendar__Header {
|
|
8894
|
-
border-bottom: 1px solid var(--border-color);
|
|
8895
8955
|
}.Layer__caobfb {
|
|
8896
8956
|
position: relative;
|
|
8897
8957
|
display: flex;
|
|
@@ -9138,6 +9198,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9138
9198
|
}.Layer__DateGroupByComboBox__Container {
|
|
9139
9199
|
inline-size: 12rem;
|
|
9140
9200
|
max-inline-size: 12rem;
|
|
9201
|
+
}.Layer__CompareTagsMultiSelect__Container {
|
|
9202
|
+
min-inline-size: 12rem;
|
|
9203
|
+
max-inline-size: 20rem;
|
|
9204
|
+
}
|
|
9205
|
+
|
|
9206
|
+
:is(.Layer__input-tooltip:has(.Layer__CompareTagsMultiSelect)) {
|
|
9207
|
+
flex: 1;
|
|
9141
9208
|
}.Layer__panel {
|
|
9142
9209
|
display: flex;
|
|
9143
9210
|
flex: 1;
|
|
@@ -10062,12 +10129,10 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
10062
10129
|
}.Layer__InvoiceForm__LineItem {
|
|
10063
10130
|
display: grid;
|
|
10064
10131
|
--grid-cols-base:
|
|
10065
|
-
minmax(10rem, 3fr)
|
|
10066
|
-
minmax(10rem, 3fr)
|
|
10067
10132
|
minmax(12rem, 4fr)
|
|
10068
10133
|
minmax(4rem, 1fr)
|
|
10069
|
-
minmax(6rem,
|
|
10070
|
-
minmax(6rem,
|
|
10134
|
+
minmax(6rem, 1fr)
|
|
10135
|
+
minmax(6rem, 1fr)
|
|
10071
10136
|
minmax(3rem, 0fr);
|
|
10072
10137
|
grid-template-columns: var(--grid-cols-base) auto;
|
|
10073
10138
|
width: 100%;
|
package/dist/index.d.ts
CHANGED
|
@@ -505,9 +505,12 @@ declare interface GeneralLedgerStringOverrides {
|
|
|
505
505
|
|
|
506
506
|
export declare const GeneralLedgerView: ({ title, showTitle, showTags, showCustomerVendor, stringOverrides, chartOfAccountsOptions, renderInAppLink, }: GeneralLedgerProps) => JSX_2.Element;
|
|
507
507
|
|
|
508
|
-
export declare const GlobalMonthPicker: ({ truncateMonth }:
|
|
508
|
+
export declare const GlobalMonthPicker: ({ truncateMonth, showLabel }: GlobalMonthPickerProps) => JSX_2.Element;
|
|
509
|
+
|
|
510
|
+
declare type GlobalMonthPickerProps = {
|
|
509
511
|
truncateMonth?: boolean;
|
|
510
|
-
|
|
512
|
+
showLabel?: boolean;
|
|
513
|
+
};
|
|
511
514
|
|
|
512
515
|
/**
|
|
513
516
|
* Configuration for the hero/main content section of the Landing Page page
|
|
@@ -538,10 +541,9 @@ declare interface IntegrationsProps {
|
|
|
538
541
|
};
|
|
539
542
|
}
|
|
540
543
|
|
|
541
|
-
export declare const Invoices: ({
|
|
544
|
+
export declare const Invoices: ({ stringOverrides, onSendInvoice }: InvoicesProps) => JSX_2.Element;
|
|
542
545
|
|
|
543
546
|
declare interface InvoicesProps {
|
|
544
|
-
showTitle?: boolean;
|
|
545
547
|
stringOverrides?: InvoicesStringOverrides;
|
|
546
548
|
onSendInvoice?: (invoiceId: string) => Awaitable<void>;
|
|
547
549
|
}
|