@valerius_petrini/corekit-ui 0.1.56 → 0.1.58

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.
@@ -37,8 +37,8 @@
37
37
  <tbody>
38
38
  {#each tableData as row}
39
39
  <tr class={defaultTableBodyClass}>
40
- {#each row as cell}
41
- <td class={defaultTableCellClass}>{cell}</td>
40
+ {#each tableHeaders as header}
41
+ <td class={defaultTableCellClass}>{row[header.key]}</td>
42
42
  {/each}
43
43
  </tr>
44
44
  {/each}
package/dist/index.d.ts CHANGED
@@ -12,5 +12,6 @@ export { default as Card } from "./components/Card.svelte";
12
12
  export { default as Checkbox } from "./components/Checkbox.svelte";
13
13
  export { default as Progress } from "./components/Progress.svelte";
14
14
  export { default as Modal } from "./components/Modal.svelte";
15
+ export { default as Table } from "./components/Table.svelte";
15
16
  export { fbmBackground } from "./actions/fbm.ts";
16
17
  export type { TypewriterAction, DisplaySegment } from "./types/Typewriter.ts";
package/dist/index.js CHANGED
@@ -12,4 +12,5 @@ export { default as Card } from "./components/Card.svelte";
12
12
  export { default as Checkbox } from "./components/Checkbox.svelte";
13
13
  export { default as Progress } from "./components/Progress.svelte";
14
14
  export { default as Modal } from "./components/Modal.svelte";
15
+ export { default as Table } from "./components/Table.svelte";
15
16
  export { fbmBackground } from "./actions/fbm.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valerius_petrini/corekit-ui",
3
- "version": "0.1.56",
3
+ "version": "0.1.58",
4
4
  "description": "Component Library used across all my projects",
5
5
  "author": "Valerius Petrini Jr.",
6
6
  "license": "MIT",