@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.
Files changed (28) hide show
  1. package/build/{cssMode-guV_k7Hr.js → cssMode-CEh2Ezm7.js} +1 -1
  2. package/build/eveli-table/EveliTableCell.d.ts +6 -3
  3. package/build/eveli-table/EveliTableColumnFilter.d.ts +2 -3
  4. package/build/eveli-table/EveliTableColumnFilterDialog.d.ts +2 -4
  5. package/build/eveli-table/EveliTableDrawer.d.ts +3 -4
  6. package/build/eveli-table/EveliTableHeader.d.ts +4 -0
  7. package/build/eveli-table/EveliTableHeaderCell.d.ts +9 -4
  8. package/build/eveli-table/EveliTablePagination.d.ts +2 -3
  9. package/build/eveli-table/EveliTableRow.d.ts +5 -0
  10. package/build/eveli-table/EveliTableSearchFilter.d.ts +3 -3
  11. package/build/eveli-table/WithTableStyles.d.ts +6 -0
  12. package/build/{freemarker2-DQgkiRng.js → freemarker2-BNDGAY18.js} +1 -1
  13. package/build/{handlebars-hYUUX_Zd.js → handlebars-XxQsFi1T.js} +1 -1
  14. package/build/{html-DytB4uhv.js → html-C_M4PBzD.js} +1 -1
  15. package/build/{htmlMode-Cipxsmz6.js → htmlMode-C77M9aZd.js} +1 -1
  16. package/build/{index-B-rbqeAX.js → index-DVLUYI7X.js} +25564 -25469
  17. package/build/index.js +1 -1
  18. package/build/{javascript-FshHlyEz.js → javascript-CkxUc0wR.js} +1 -1
  19. package/build/{jsonMode-C2SxKctx.js → jsonMode-DhCJAGMy.js} +1 -1
  20. package/build/{liquid-BusN7mZF.js → liquid-CzFTtA0T.js} +1 -1
  21. package/build/{mdx-BGWBtBnP.js → mdx-CATs8L03.js} +1 -1
  22. package/build/{python-oGvCpK-L.js → python-CwBFyqoX.js} +1 -1
  23. package/build/{razor-BJ1VarP1.js → razor-VGID4w2E.js} +1 -1
  24. package/build/{tsMode-SMHbwCXh.js → tsMode-D5cDSss2.js} +1 -1
  25. package/build/{typescript-CRdekq4j.js → typescript-CTDwcPAA.js} +1 -1
  26. package/build/{xml-Dl1eDit6.js → xml-C8IOcpPu.js} +1 -1
  27. package/build/{yaml-CRpV6kIq.js → yaml-ybX6LfLi.js} +1 -1
  28. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { m as et } from "./index-B-rbqeAX.js";
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
- export declare const EveliTableCell: React.FC<{
3
+ interface EveliTableCellProps {
4
+ cell: Cell<any, unknown>;
3
5
  children?: React.ReactNode | string;
4
- width: number;
5
- }>;
6
+ }
7
+ export declare const EveliTableCell: React.FC<EveliTableCellProps>;
8
+ export {};
@@ -1,9 +1,8 @@
1
- import { Column } from '@tanstack/react-table';
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
- column: Column<TaskApi.Task, unknown>;
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 { ColumnDef, Table } from '@tanstack/react-table';
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
- columns: ColumnDef<TaskApi.Task, any>[];
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: string[];
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";
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ export declare const EveliTableHeader: React.FC<{
3
+ children: React.ReactNode;
4
+ }>;
@@ -1,10 +1,15 @@
1
1
  import { default as React } from 'react';
2
- import { Column } from '@tanstack/react-table';
3
- import { TaskApi } from '../api-task';
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
- column: Column<TaskApi.Task, unknown>;
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<TaskApi.Task>;
6
- data: TaskApi.Task[];
4
+ table: Table<any>;
5
+ data: unknown[];
7
6
  initialPageSize: number;
8
7
  pagination: {
9
8
  pageIndex: number;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ import { Row } from '@tanstack/react-table';
3
+ export declare const EveliTableRow: React.FC<{
4
+ children: Row<unknown>;
5
+ }>;
@@ -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
- column: Column<TaskApi.Task, unknown>;
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";
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ import { ColumnDef } from '@tanstack/react-table';
3
+ export declare function WithTableStyles<DataType extends object>(props: {
4
+ columns: ColumnDef<DataType, unknown>[];
5
+ data: DataType[];
6
+ }): React.ReactNode;
@@ -1,4 +1,4 @@
1
- import { m as f } from "./index-B-rbqeAX.js";
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-B-rbqeAX.js";
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-B-rbqeAX.js";
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-B-rbqeAX.js";
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)