@layerfi/components 0.1.111 → 0.1.112-alpha.1
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 +9568 -7549
- package/dist/cjs/index.css +12 -4
- package/dist/esm/index.css +12 -4
- package/dist/esm/index.mjs +9096 -7078
- package/dist/index.css +659 -361
- package/dist/index.d.ts +3086 -5669
- package/package.json +2 -1
package/dist/cjs/index.css
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
/* src/components/BulkActionsHeader/bulkActionsHeader.scss */
|
|
2
|
+
.Layer__bulk-actions-header__selection-container {
|
|
3
|
+
height: 2.25rem;
|
|
4
|
+
min-width: 11rem;
|
|
5
|
+
border-radius: var(--border-radius-2xs);
|
|
6
|
+
border: 1px solid var(--color-base-300);
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
/* src/components/Journal/JournalEntryForm/journalEntryLineItem.scss */
|
|
2
10
|
.Layer__JournalEntryForm__LineItem {
|
|
3
11
|
display: flex;
|
|
4
|
-
align-items: flex-end;
|
|
5
12
|
gap: var(--spacing-xs);
|
|
13
|
+
align-items: flex-end;
|
|
6
14
|
}
|
|
7
15
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8
16
|
flex: 1 1 12rem;
|
|
@@ -22,11 +30,11 @@
|
|
|
22
30
|
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
23
31
|
display: none;
|
|
24
32
|
}
|
|
25
|
-
@media (
|
|
33
|
+
@media (width <= 768px) {
|
|
26
34
|
.Layer__JournalEntryForm__LineItem {
|
|
27
35
|
flex-direction: column;
|
|
28
|
-
align-items: stretch;
|
|
29
36
|
gap: var(--spacing-sm);
|
|
37
|
+
align-items: stretch;
|
|
30
38
|
}
|
|
31
39
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
32
40
|
flex: 1 1 auto;
|
|
@@ -39,9 +47,9 @@
|
|
|
39
47
|
padding-top: var(--spacing-xl);
|
|
40
48
|
}
|
|
41
49
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
42
|
-
padding: 0 var(--spacing-xl);
|
|
43
50
|
display: flex;
|
|
44
51
|
gap: var(--spacing-md);
|
|
52
|
+
padding: 0 var(--spacing-xl);
|
|
45
53
|
}
|
|
46
54
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
47
55
|
flex: 0 0 clamp(16rem, 100%, 24rem);
|
package/dist/esm/index.css
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
/* src/components/BulkActionsHeader/bulkActionsHeader.scss */
|
|
2
|
+
.Layer__bulk-actions-header__selection-container {
|
|
3
|
+
height: 2.25rem;
|
|
4
|
+
min-width: 11rem;
|
|
5
|
+
border-radius: var(--border-radius-2xs);
|
|
6
|
+
border: 1px solid var(--color-base-300);
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
/* src/components/Journal/JournalEntryForm/journalEntryLineItem.scss */
|
|
2
10
|
.Layer__JournalEntryForm__LineItem {
|
|
3
11
|
display: flex;
|
|
4
|
-
align-items: flex-end;
|
|
5
12
|
gap: var(--spacing-xs);
|
|
13
|
+
align-items: flex-end;
|
|
6
14
|
}
|
|
7
15
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8
16
|
flex: 1 1 12rem;
|
|
@@ -22,11 +30,11 @@
|
|
|
22
30
|
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
23
31
|
display: none;
|
|
24
32
|
}
|
|
25
|
-
@media (
|
|
33
|
+
@media (width <= 768px) {
|
|
26
34
|
.Layer__JournalEntryForm__LineItem {
|
|
27
35
|
flex-direction: column;
|
|
28
|
-
align-items: stretch;
|
|
29
36
|
gap: var(--spacing-sm);
|
|
37
|
+
align-items: stretch;
|
|
30
38
|
}
|
|
31
39
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
32
40
|
flex: 1 1 auto;
|
|
@@ -39,9 +47,9 @@
|
|
|
39
47
|
padding-top: var(--spacing-xl);
|
|
40
48
|
}
|
|
41
49
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
42
|
-
padding: 0 var(--spacing-xl);
|
|
43
50
|
display: flex;
|
|
44
51
|
gap: var(--spacing-md);
|
|
52
|
+
padding: 0 var(--spacing-xl);
|
|
45
53
|
}
|
|
46
54
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
47
55
|
flex: 0 0 clamp(16rem, 100%, 24rem);
|