@dxs-ts/eveli-ide 0.0.222 → 0.0.224
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/build/{cssMode-guV_k7Hr.js → cssMode-CEh2Ezm7.js} +1 -1
- package/build/eveli-table/EveliTableCell.d.ts +6 -3
- package/build/eveli-table/EveliTableColumnFilter.d.ts +2 -3
- package/build/eveli-table/EveliTableColumnFilterDialog.d.ts +2 -4
- package/build/eveli-table/EveliTableDrawer.d.ts +3 -4
- package/build/eveli-table/EveliTableHeader.d.ts +4 -0
- package/build/eveli-table/EveliTableHeaderCell.d.ts +9 -4
- package/build/eveli-table/EveliTablePagination.d.ts +2 -3
- package/build/eveli-table/EveliTableRow.d.ts +5 -0
- package/build/eveli-table/EveliTableSearchFilter.d.ts +3 -3
- package/build/eveli-table/WithTableStyles.d.ts +6 -0
- package/build/{freemarker2-DQgkiRng.js → freemarker2-BNDGAY18.js} +1 -1
- package/build/{handlebars-hYUUX_Zd.js → handlebars-XxQsFi1T.js} +1 -1
- package/build/{html-DytB4uhv.js → html-C_M4PBzD.js} +1 -1
- package/build/{htmlMode-Cipxsmz6.js → htmlMode-C77M9aZd.js} +1 -1
- package/build/{index-B-rbqeAX.js → index-DVLUYI7X.js} +25564 -25469
- package/build/index.js +1 -1
- package/build/{javascript-FshHlyEz.js → javascript-CkxUc0wR.js} +1 -1
- package/build/{jsonMode-C2SxKctx.js → jsonMode-DhCJAGMy.js} +1 -1
- package/build/{liquid-BusN7mZF.js → liquid-CzFTtA0T.js} +1 -1
- package/build/{mdx-BGWBtBnP.js → mdx-CATs8L03.js} +1 -1
- package/build/{python-oGvCpK-L.js → python-CwBFyqoX.js} +1 -1
- package/build/{razor-BJ1VarP1.js → razor-VGID4w2E.js} +1 -1
- package/build/{tsMode-SMHbwCXh.js → tsMode-D5cDSss2.js} +1 -1
- package/build/{typescript-CRdekq4j.js → typescript-CTDwcPAA.js} +1 -1
- package/build/{xml-Dl1eDit6.js → xml-C8IOcpPu.js} +1 -1
- package/build/{yaml-CRpV6kIq.js → yaml-ybX6LfLi.js} +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as et } from "./index-
|
|
1
|
+
import { m as et } from "./index-DVLUYI7X.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { Cell } from '@tanstack/react-table';
|
|
1
2
|
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
+
interface EveliTableCellProps {
|
|
4
|
+
cell: Cell<any, unknown>;
|
|
3
5
|
children?: React.ReactNode | string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
+
}
|
|
7
|
+
export declare const EveliTableCell: React.FC<EveliTableCellProps>;
|
|
8
|
+
export {};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TaskApi } from '../api-task';
|
|
1
|
+
import { Header } from '@tanstack/react-table';
|
|
3
2
|
import * as React from 'react';
|
|
4
3
|
interface EveliTableColumnFilterProps {
|
|
5
4
|
filterItems: string[];
|
|
6
|
-
|
|
5
|
+
header: Header<unknown, unknown>;
|
|
7
6
|
}
|
|
8
7
|
export declare const EveliTableColumnFilter: React.FC<EveliTableColumnFilterProps>;
|
|
9
8
|
export {};
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { TaskApi } from '../api-task';
|
|
2
|
+
import { Table } from '@tanstack/react-table';
|
|
4
3
|
interface EveliTableColumnFilterProps {
|
|
5
4
|
open: boolean;
|
|
6
5
|
onClose: () => void;
|
|
7
|
-
|
|
8
|
-
table: Table<TaskApi.Task>;
|
|
6
|
+
table: Table<any>;
|
|
9
7
|
}
|
|
10
8
|
export declare const EveliTableColumnFilterDialog: React.FC<EveliTableColumnFilterProps>;
|
|
11
9
|
export {};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { Column } from '@tanstack/react-table';
|
|
3
|
-
import { TaskApi } from '../api-task';
|
|
4
2
|
interface EveliTableDrawerProps {
|
|
5
|
-
filterItems
|
|
6
|
-
column: Column<TaskApi.Task, unknown>;
|
|
3
|
+
filterItems?: string[];
|
|
7
4
|
children: React.ReactNode;
|
|
5
|
+
title?: string | undefined;
|
|
6
|
+
onClose: () => void;
|
|
8
7
|
}
|
|
9
8
|
export declare const EveliTableDrawer: React.FC<EveliTableDrawerProps>;
|
|
10
9
|
export declare const EveliTableDrawerRootClassName = "EveliTableDrawer";
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { Header } from '@tanstack/react-table';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* column={header.column}
|
|
6
|
+
isFilterable={header.column.getCanFilter()}
|
|
7
|
+
isSortable={header.column.getCanSort()}
|
|
8
|
+
sortDirection={header.column.getIsSorted()}
|
|
9
|
+
*/
|
|
4
10
|
type EveliTableHeaderProps = {
|
|
5
11
|
children: React.ReactNode;
|
|
6
|
-
|
|
7
|
-
sortDirection?: false | 'asc' | 'desc';
|
|
12
|
+
header: Header<any, any>;
|
|
8
13
|
onColumnFilter: () => void;
|
|
9
14
|
onResetColVisibility: () => void;
|
|
10
15
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { Table } from '@tanstack/react-table';
|
|
3
|
-
import { TaskApi } from '../api-task';
|
|
4
3
|
interface EveliTablePaginationProps {
|
|
5
|
-
table: Table<
|
|
6
|
-
data:
|
|
4
|
+
table: Table<any>;
|
|
5
|
+
data: unknown[];
|
|
7
6
|
initialPageSize: number;
|
|
8
7
|
pagination: {
|
|
9
8
|
pageIndex: number;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { Column } from '@tanstack/react-table';
|
|
3
|
-
import { TaskApi } from '../api-task';
|
|
4
2
|
interface EveliTableSearchFilterProps {
|
|
5
|
-
|
|
3
|
+
title: string;
|
|
4
|
+
value: string | undefined;
|
|
5
|
+
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
6
6
|
}
|
|
7
7
|
export declare const EveliTableSearchFilter: React.FC<EveliTableSearchFilterProps>;
|
|
8
8
|
export declare const EveliTableSearchFieldRootClassName = "EveliTableSearchField";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-DVLUYI7X.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-DVLUYI7X.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-DVLUYI7X.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as lt } from "./index-
|
|
1
|
+
import { m as lt } from "./index-DVLUYI7X.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|