@dxs-ts/eveli-ide 0.0.223 → 0.0.225

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 (27) hide show
  1. package/build/{cssMode-CJT5f9zY.js → cssMode-DZAYF_Xv.js} +1 -1
  2. package/build/eveli-table/EveliTableCell.d.ts +2 -4
  3. package/build/eveli-table/EveliTableColumnFilter.d.ts +2 -4
  4. package/build/eveli-table/EveliTableColumnFilterDialog.d.ts +2 -4
  5. package/build/eveli-table/EveliTableHeader.d.ts +4 -0
  6. package/build/eveli-table/EveliTableHeaderCell.d.ts +2 -7
  7. package/build/eveli-table/EveliTablePagination.d.ts +2 -3
  8. package/build/eveli-table/EveliTableRow.d.ts +5 -0
  9. package/build/eveli-table/EveliTableSearchFilter.d.ts +3 -3
  10. package/build/eveli-table/WithTableStyles.d.ts +6 -0
  11. package/build/{freemarker2-CojMS9cj.js → freemarker2-DxfsPE-9.js} +1 -1
  12. package/build/{handlebars-B0uLMYSk.js → handlebars-DJCeaP5N.js} +1 -1
  13. package/build/{html-CDUzM3Gl.js → html-Bt6lg3da.js} +1 -1
  14. package/build/{htmlMode-C4iQZf3E.js → htmlMode-ghIQejD6.js} +1 -1
  15. package/build/{index-CJCLU2t0.js → index-BMzJyyFw.js} +27919 -27880
  16. package/build/index.js +1 -1
  17. package/build/{javascript-I4BU6Xcp.js → javascript-DJj7Rsyi.js} +1 -1
  18. package/build/{jsonMode-tR1zA68C.js → jsonMode-DQ9uwaov.js} +1 -1
  19. package/build/{liquid-C4wkF6WG.js → liquid-DPGWZL9m.js} +1 -1
  20. package/build/{mdx-BdjfYMs3.js → mdx-Ba1cEcMg.js} +1 -1
  21. package/build/{python-DQCbIa7x.js → python-ChpxfuAY.js} +1 -1
  22. package/build/{razor-DfdZPBpW.js → razor-CRHV9-kI.js} +1 -1
  23. package/build/{tsMode-8ERo5AQd.js → tsMode-BLa2uSjw.js} +1 -1
  24. package/build/{typescript-DfDrsP4W.js → typescript-UuOuNOOy.js} +1 -1
  25. package/build/{xml-DIJaTR_K.js → xml-BG0qjrA-.js} +1 -1
  26. package/build/{yaml-K8_rjCc1.js → yaml-BUkuMUYi.js} +1 -1
  27. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { m as et } from "./index-CJCLU2t0.js";
1
+ import { m as et } from "./index-BMzJyyFw.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -1,10 +1,8 @@
1
- import { TaskApi } from '../api-task';
2
- import { Column } from '@tanstack/react-table';
1
+ import { Cell } from '@tanstack/react-table';
3
2
  import { default as React } from 'react';
4
3
  interface EveliTableCellProps {
5
- column: Column<TaskApi.Task, any>;
4
+ cell: Cell<any, unknown>;
6
5
  children?: React.ReactNode | string;
7
- width: number;
8
6
  }
9
7
  export declare const EveliTableCell: React.FC<EveliTableCellProps>;
10
8
  export {};
@@ -1,9 +1,7 @@
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
- filterItems: string[];
6
- column: Column<TaskApi.Task, unknown>;
4
+ header: Header<unknown, unknown>;
7
5
  }
8
6
  export declare const EveliTableColumnFilter: React.FC<EveliTableColumnFilterProps>;
9
7
  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 {};
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ export declare const EveliTableHeader: React.FC<{
3
+ children: React.ReactNode;
4
+ }>;
@@ -1,15 +1,10 @@
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';
4
3
  type EveliTableHeaderProps = {
5
4
  children: React.ReactNode;
6
- filterComponent?: React.ReactNode | undefined;
7
- column: Column<TaskApi.Task, unknown>;
8
- sortDirection?: false | 'asc' | 'desc';
5
+ header: Header<any, any>;
9
6
  onColumnFilter: () => void;
10
7
  onResetColVisibility: () => void;
11
- isFilterable: boolean;
12
- isSortable: boolean;
13
8
  };
14
9
  export declare const EveliTableHeaderCell: React.FC<EveliTableHeaderProps>;
15
10
  export {};
@@ -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-CJCLU2t0.js";
1
+ import { m as f } from "./index-BMzJyyFw.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-CJCLU2t0.js";
1
+ import { m as l } from "./index-BMzJyyFw.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-CJCLU2t0.js";
1
+ import { m as s } from "./index-BMzJyyFw.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-CJCLU2t0.js";
1
+ import { m as lt } from "./index-BMzJyyFw.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)