intelliwaketssveltekitv25 0.3.77 → 0.3.79

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.
@@ -120,16 +120,17 @@
120
120
  <tr class="border-top">
121
121
  {#each validColumns as column, idx (idx)}
122
122
  {#if !hideCosts || !column.isACost}
123
+ {@const formattedValue = ScreenFormatValue(sumsInFooter[column.fieldName], column)}
123
124
  <th class="text-ellipsis overflow-hidden {!column.size ? '' : ` td-${column.size}`}"
124
125
  class:text-right={ColumnClassRight(column)}
125
126
  class:text-center={ColumnClassCenter(column)}
126
127
  title={
127
- !!ScreenFormatValue(sumsInFooter[column.fieldName], column) &&
128
- ScreenFormatValue(sumsInFooter[column.fieldName], column).length > 10
129
- ? ScreenFormatValue(sumsInFooter[column.fieldName], column)
128
+ !!formattedValue &&
129
+ formattedValue.length > 10
130
+ ? formattedValue
130
131
  : undefined
131
132
  }>
132
- {sumsInFooter[column.fieldName] === undefined ? null : ScreenFormatValue(sumsInFooter[column.fieldName], column)}
133
+ {sumsInFooter[column.fieldName] === undefined ? null : formattedValue}
133
134
  </th>
134
135
  {/if}
135
136
  {/each}
@@ -76,6 +76,8 @@
76
76
 
77
77
  $effect(() => {
78
78
  clientWidth
79
+ tabItems
80
+
79
81
  if (currentKey && isVisible) {
80
82
  setIndicatorStyle().then(() => {
81
83
  })
@@ -215,6 +215,7 @@
215
215
 
216
216
  $effect(() => {
217
217
  clientWidth
218
+ tabHrefs
218
219
 
219
220
  if (pathAnalyzer?.activePageSlug && isVisible) {
220
221
  setIndicatorStyle().then(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.3.77",
3
+ "version": "0.3.79",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  "!dist/**/*.spec.*"
15
15
  ],
16
16
  "peerDependencies": {
17
- "@solidbasisventures/intelliwaketsfoundation": "^5.12.84",
17
+ "@solidbasisventures/intelliwaketsfoundation": "^5.13.1",
18
18
  "@sveltejs/kit": "^2.43.6",
19
19
  "svelte": "^5.39.7"
20
20
  },