@layerfi/components 0.1.47 → 0.1.49
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 +1154 -1145
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +4 -26
- package/dist/index.js +1282 -1273
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +26 -0
- package/dist/styles/index.css.map +2 -2
- package/package.json +1 -1
- package/.idea/codeStyles/Project.xml +0 -61
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/layer-react.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
package/dist/styles/index.css
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
.Layer__tooltip,
|
|
10
10
|
.Layer__toasts-container,
|
|
11
11
|
.Layer__drawer,
|
|
12
|
+
.Layer__variables,
|
|
12
13
|
#Layer__datepicker__portal {
|
|
13
14
|
--color-black: #1a1a1a;
|
|
14
15
|
--color-white: white;
|
|
@@ -6527,6 +6528,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6527
6528
|
.Layer__profit-and-loss-row__label--depth-0.Layer__profit-and-loss-row__label--display-children-false {
|
|
6528
6529
|
padding-left: 22px;
|
|
6529
6530
|
}
|
|
6531
|
+
.Layer__profit-and-loss-detailed-charts__pie--border {
|
|
6532
|
+
stroke: var(--color-base-200);
|
|
6533
|
+
}
|
|
6530
6534
|
#layer-bar-stripe-pattern rect {
|
|
6531
6535
|
fill: var(--color-base-400);
|
|
6532
6536
|
}
|
|
@@ -6539,6 +6543,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6539
6543
|
#layer-bar-stripe-pattern-dark line {
|
|
6540
6544
|
stroke: var(--color-base-900);
|
|
6541
6545
|
}
|
|
6546
|
+
#layer-pie-stripe-pattern rect {
|
|
6547
|
+
fill: var(--color-base-300);
|
|
6548
|
+
}
|
|
6549
|
+
#layer-dots-stripe-pattern rect {
|
|
6550
|
+
fill: var(--color-base-500);
|
|
6551
|
+
}
|
|
6552
|
+
#layer-pie-dots-pattern rect {
|
|
6553
|
+
fill: var(--color-base-500);
|
|
6554
|
+
}
|
|
6555
|
+
#layer-pie-dots-pattern rect.bg {
|
|
6556
|
+
fill: var(--color-base-100);
|
|
6557
|
+
}
|
|
6558
|
+
#layer-pie-dots-pattern-legend rect {
|
|
6559
|
+
fill: var(--color-base-500);
|
|
6560
|
+
}
|
|
6561
|
+
#layer-pie-dots-pattern-bg {
|
|
6562
|
+
fill: var(--color-base-100);
|
|
6563
|
+
}
|
|
6542
6564
|
@container (min-width: 1024px) {
|
|
6543
6565
|
.Layer__profit-and-loss-row__label--depth-0 {
|
|
6544
6566
|
padding-left: var(--spacing-xl);
|
|
@@ -6618,6 +6640,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6618
6640
|
justify-content: center;
|
|
6619
6641
|
background: var(--color-base-100);
|
|
6620
6642
|
color: var(--color-base-600);
|
|
6643
|
+
margin-left: auto;
|
|
6621
6644
|
cursor: pointer;
|
|
6622
6645
|
transition: color 150ms ease-out, background-color 150ms ease-out;
|
|
6623
6646
|
}
|
|
@@ -6827,6 +6850,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
6827
6850
|
height: 12px;
|
|
6828
6851
|
border-radius: 2px;
|
|
6829
6852
|
}
|
|
6853
|
+
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .Layer__value-icon--uncategorized {
|
|
6854
|
+
background-image: repeating-linear-gradient(-45deg, var(--color-base-200) 0px, var(--color-base-200) 2px, var(--color-base-500) 2px, var(--color-base-500) 3.5px, var(--color-base-200) 3.5px, var(--color-base-200) 4px);
|
|
6855
|
+
}
|
|
6830
6856
|
.Layer__profit-and-loss .Layer__panel__sidebar .Layer__panel__sidebar-content {
|
|
6831
6857
|
width: 100%;
|
|
6832
6858
|
}
|