@lavalogic/scoria 0.3.0 → 0.3.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/Components/DateInput.svelte +1 -1
- package/dist/Components/DimensionInput.svelte +1 -1
- package/dist/Components/DragMenu/DragMenuHolder.svelte +1 -2
- package/dist/Components/FileUpload.svelte +1 -1
- package/dist/Components/MultiSelect.svelte +1 -1
- package/dist/Components/NumberInput.svelte +1 -1
- package/dist/Components/PasswordInput.svelte +1 -1
- package/dist/Components/QuerySelect.svelte +1 -1
- package/dist/Components/SingleSelect.svelte +1 -1
- package/dist/Components/Table/Types/Context/TableContext.svelte.js +6 -2
- package/dist/Components/TextArea.svelte +1 -1
- package/dist/Components/TextInput.svelte +1 -1
- package/dist/Components/Touch/EditCard.svelte +1 -1
- package/dist/Components/Touch/SummaryCard.svelte +1 -1
- package/dist/scss/_mixins.scss +1 -1
- package/package.json +1 -1
|
@@ -58,7 +58,6 @@
|
|
|
58
58
|
</div>
|
|
59
59
|
|
|
60
60
|
<style>.top-label {
|
|
61
|
-
border-bottom: solid 1px transparent;
|
|
62
61
|
position: absolute;
|
|
63
62
|
left: 0.5rem;
|
|
64
63
|
font-size: 0.875rem;
|
|
@@ -86,7 +85,7 @@
|
|
|
86
85
|
line-height: 1rem;
|
|
87
86
|
z-index: 1;
|
|
88
87
|
white-space: nowrap;
|
|
89
|
-
top:
|
|
88
|
+
top: 0px;
|
|
90
89
|
line-height: 0px;
|
|
91
90
|
color: transparent;
|
|
92
91
|
border-bottom: solid 1px #ffffff;
|
|
@@ -1749,7 +1749,9 @@ export class TableContext {
|
|
|
1749
1749
|
targetRow.push(key !== undefined && this.selectedItems.has(key) ? 'true' : 'false');
|
|
1750
1750
|
continue;
|
|
1751
1751
|
}
|
|
1752
|
-
const x =
|
|
1752
|
+
const x = (col instanceof SelectDef &&
|
|
1753
|
+
(await col.getDisplayValue(item, this.sortedData.lastIndexOf(item)))) ||
|
|
1754
|
+
('accessorFn' in col && (await col.accessorFn?.(item, this.sortedData.indexOf(item))));
|
|
1753
1755
|
if (x && typeof x === 'string') {
|
|
1754
1756
|
targetRow.push(x);
|
|
1755
1757
|
continue;
|
|
@@ -1817,7 +1819,9 @@ export class TableContext {
|
|
|
1817
1819
|
targetRow.push(key !== undefined && this.selectedItems.has(key) ? 'true' : 'false');
|
|
1818
1820
|
continue;
|
|
1819
1821
|
}
|
|
1820
|
-
const x =
|
|
1822
|
+
const x = (col instanceof SelectDef &&
|
|
1823
|
+
(await col.getDisplayValue(item, this.sortedData.lastIndexOf(item)))) ||
|
|
1824
|
+
('accessorFn' in col && (await col.accessorFn?.(item, this.sortedData.indexOf(item))));
|
|
1821
1825
|
if (x && typeof x === 'string') {
|
|
1822
1826
|
targetRow.push(x);
|
|
1823
1827
|
continue;
|
package/dist/scss/_mixins.scss
CHANGED