@beeblock/svelar-datatable 0.1.7 → 0.1.8
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/package.json +1 -1
- package/src/ui/DataTable.svelte +3 -3
- package/src/ui/DataTableBody.svelte +1 -1
- package/src/ui/DataTableBubbleEditor.svelte +1 -1
- package/src/ui/DataTableButtons.svelte +2 -2
- package/src/ui/DataTableCell.svelte +1 -1
- package/src/ui/DataTableColumnToggle.svelte +1 -1
- package/src/ui/DataTableEditor.svelte +1 -1
- package/src/ui/DataTableEditorField.svelte +1 -1
- package/src/ui/DataTableEditorForm.svelte +1 -1
- package/src/ui/DataTableFooter.svelte +1 -1
- package/src/ui/DataTableHead.svelte +1 -1
- package/src/ui/DataTableModalEditor.svelte +1 -1
- package/src/ui/DataTablePagination.svelte +1 -1
- package/src/ui/DataTableRow.svelte +1 -1
- package/src/ui/DataTableSearch.svelte +1 -1
- package/src/ui/DataTableToolbar.svelte +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beeblock/svelar-datatable",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Full-featured DataTable plugin for Svelar — sorting, searching, pagination, inline editing, export, and server-side processing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
package/src/ui/DataTable.svelte
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import type { Snippet } from 'svelte';
|
|
3
|
-
import type { DataTableConfig, DataTableClassNames, ColumnDef, EditorFieldDef } from '../types.
|
|
4
|
-
import { DataTableStore } from '../state/DataTableStore.
|
|
5
|
-
import { ServerDataTableStore } from '../state/ServerDataTableStore.
|
|
3
|
+
import type { DataTableConfig, DataTableClassNames, ColumnDef, EditorFieldDef } from '../types.ts';
|
|
4
|
+
import { DataTableStore } from '../state/DataTableStore.ts';
|
|
5
|
+
import { ServerDataTableStore } from '../state/ServerDataTableStore.ts';
|
|
6
6
|
import DataTableToolbar from './DataTableToolbar.svelte';
|
|
7
7
|
import DataTableHead from './DataTableHead.svelte';
|
|
8
8
|
import DataTableBody from './DataTableBody.svelte';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { ColumnDef, DataTableStore, SelectionMode, EditorMode, DataTableClassNames } from '../index.
|
|
2
|
+
import type { ColumnDef, DataTableStore, SelectionMode, EditorMode, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
import DataTableRow from './DataTableRow.svelte';
|
|
5
5
|
import DataTableLoading from './DataTableLoading.svelte';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.
|
|
2
|
+
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import DataTableEditorForm from './DataTableEditorForm.svelte';
|
|
4
4
|
import { tick } from 'svelte';
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { ButtonDef, ExportFormat, DataTableStore, ColumnDef } from '../index.
|
|
3
|
-
import { ExportManager } from '../export/ExportManager.
|
|
2
|
+
import type { ButtonDef, ExportFormat, DataTableStore, ColumnDef } from '../index.ts';
|
|
3
|
+
import { ExportManager } from '../export/ExportManager.ts';
|
|
4
4
|
|
|
5
5
|
interface Props {
|
|
6
6
|
buttons: (ButtonDef | ExportFormat)[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.
|
|
2
|
+
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import DataTableModalEditor from './DataTableModalEditor.svelte';
|
|
4
4
|
import DataTableBubbleEditor from './DataTableBubbleEditor.svelte';
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.
|
|
2
|
+
import type { EditorFieldDef, DataTableStore, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import DataTableEditorForm from './DataTableEditorForm.svelte';
|
|
4
4
|
|
|
5
5
|
interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { ColumnDef, DataTableStore, SelectionMode, EditorMode, DataTableClassNames } from '../index.
|
|
2
|
+
import type { ColumnDef, DataTableStore, SelectionMode, EditorMode, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
import DataTableCell from './DataTableCell.svelte';
|
|
5
5
|
import DataTableExpandedRow from './DataTableExpandedRow.svelte';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type { ColumnDef, ButtonDef, ExportFormat, DataTableStore, EditorMode, DataTableClassNames } from '../index.
|
|
2
|
+
import type { ColumnDef, ButtonDef, ExportFormat, DataTableStore, EditorMode, DataTableClassNames } from '../index.ts';
|
|
3
3
|
import DataTableSearch from './DataTableSearch.svelte';
|
|
4
4
|
import DataTableColumnToggle from './DataTableColumnToggle.svelte';
|
|
5
5
|
import DataTableButtons from './DataTableButtons.svelte';
|