@layerfi/components 0.1.111 → 0.1.112-alpha
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 +5329 -4618
- package/dist/cjs/index.css +4 -4
- package/dist/esm/index.css +4 -4
- package/dist/esm/index.mjs +4683 -3973
- package/dist/index.css +507 -352
- package/dist/index.d.ts +698 -101
- package/package.json +2 -1
package/dist/cjs/index.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* src/components/Journal/JournalEntryForm/journalEntryLineItem.scss */
|
|
2
2
|
.Layer__JournalEntryForm__LineItem {
|
|
3
3
|
display: flex;
|
|
4
|
-
align-items: flex-end;
|
|
5
4
|
gap: var(--spacing-xs);
|
|
5
|
+
align-items: flex-end;
|
|
6
6
|
}
|
|
7
7
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8
8
|
flex: 1 1 12rem;
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
23
23
|
display: none;
|
|
24
24
|
}
|
|
25
|
-
@media (
|
|
25
|
+
@media (width <= 768px) {
|
|
26
26
|
.Layer__JournalEntryForm__LineItem {
|
|
27
27
|
flex-direction: column;
|
|
28
|
-
align-items: stretch;
|
|
29
28
|
gap: var(--spacing-sm);
|
|
29
|
+
align-items: stretch;
|
|
30
30
|
}
|
|
31
31
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
32
32
|
flex: 1 1 auto;
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
padding-top: var(--spacing-xl);
|
|
40
40
|
}
|
|
41
41
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
42
|
-
padding: 0 var(--spacing-xl);
|
|
43
42
|
display: flex;
|
|
44
43
|
gap: var(--spacing-md);
|
|
44
|
+
padding: 0 var(--spacing-xl);
|
|
45
45
|
}
|
|
46
46
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
47
47
|
flex: 0 0 clamp(16rem, 100%, 24rem);
|
package/dist/esm/index.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* src/components/Journal/JournalEntryForm/journalEntryLineItem.scss */
|
|
2
2
|
.Layer__JournalEntryForm__LineItem {
|
|
3
3
|
display: flex;
|
|
4
|
-
align-items: flex-end;
|
|
5
4
|
gap: var(--spacing-xs);
|
|
5
|
+
align-items: flex-end;
|
|
6
6
|
}
|
|
7
7
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8
8
|
flex: 1 1 12rem;
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
23
23
|
display: none;
|
|
24
24
|
}
|
|
25
|
-
@media (
|
|
25
|
+
@media (width <= 768px) {
|
|
26
26
|
.Layer__JournalEntryForm__LineItem {
|
|
27
27
|
flex-direction: column;
|
|
28
|
-
align-items: stretch;
|
|
29
28
|
gap: var(--spacing-sm);
|
|
29
|
+
align-items: stretch;
|
|
30
30
|
}
|
|
31
31
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
32
32
|
flex: 1 1 auto;
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
padding-top: var(--spacing-xl);
|
|
40
40
|
}
|
|
41
41
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
42
|
-
padding: 0 var(--spacing-xl);
|
|
43
42
|
display: flex;
|
|
44
43
|
gap: var(--spacing-md);
|
|
44
|
+
padding: 0 var(--spacing-xl);
|
|
45
45
|
}
|
|
46
46
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
47
47
|
flex: 0 0 clamp(16rem, 100%, 24rem);
|