Skip to content

Commit

Permalink
Merge pull request #205 from nzzdev/release-7.3.2
Browse files Browse the repository at this point in the history
Release 7.3.2
  • Loading branch information
dnlbln authored Aug 19, 2023
2 parents 3ce0d11 + 1409a16 commit 950aa8f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/Q-Table.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1691,8 +1691,9 @@ var properties$1 = {
type: "object",
properties: {
pageSize: {
title: "Zeilen ausblenden nach",
title: "Zeilen ausblenden nach (Min. = 10)",
type: "number",
minimum: 10,
"default": 10
},
frozenRowKey: {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "q-table",
"version": "7.3.1",
"version": "7.3.2",
"description": "",
"main": "index.js",
"type": "module",
Expand Down
3 changes: 2 additions & 1 deletion resources/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@
"type": "object",
"properties": {
"pageSize": {
"title": "Zeilen ausblenden nach",
"title": "Zeilen ausblenden nach (Min. = 10)",
"type": "number",
"minimum": 10,
"default": 10
},
"frozenRowKey": {
Expand Down
6 changes: 3 additions & 3 deletions src/components/card/CardLayout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ const { tableHead } = componentConfiguration;
{#each row.cells as cell, colIndex}
<div class={`qtable-card-cell ${cell.classes.join(' ')} `}>
<span class="qtable-card-cell-title">
{tableHead[colIndex].value}
{@html tableHead[colIndex].value}

{#if tableHead[colIndex].footnote !== ''}
<Footnote text={tableHead[colIndex].footnote}/>
<Footnote text={tableHead[colIndex].footnote} />
{/if}
</span>

<span class="qtable-card-cell-value">
{cell.value}
{#if cell.footnote !== ''}
<Footnote text={cell.footnote}/>
<Footnote text={cell.footnote} />
{/if}
</span>
</div>
Expand Down

0 comments on commit 950aa8f

Please sign in to comment.