@economic/taco 2.45.0-alpha.17 → 2.45.0-alpha.18
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/dist/components/Report/Report.d.ts +33 -6
- package/dist/components/Table3/Table3.d.ts +33 -6
- package/dist/esm/packages/taco/src/components/Report/Report.js +6 -2
- package/dist/esm/packages/taco/src/components/Report/Report.js.map +1 -1
- package/dist/esm/packages/taco/src/components/Table3/Table3.js +6 -2
- package/dist/esm/packages/taco/src/components/Table3/Table3.js.map +1 -1
- package/dist/taco.cjs.development.js +12 -4
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +2 -2
@@ -1,11 +1,38 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { ReportRef, ReportProps, ReportColumnProps, ReportGroupProps } from './types';
|
3
|
-
declare const Column: React.FC<ReportColumnProps<unknown>> & {
|
4
|
-
<TType = unknown>(_: ReportColumnProps<TType>): null;
|
5
|
-
};
|
6
|
-
declare const Group: React.FC<ReportGroupProps>;
|
7
3
|
export declare const Report: (<TType = unknown>(props: Pick<import("../..").TableProps<TType>, "length" | "loadAll" | "loadPage" | "pageSize" | "enableFiltering" | "enableSearch" | "enableSorting" | "enableColumnFreezing" | "enableColumnHiding" | "enableColumnResizing" | "enableRowExpansion" | "enableRowExpansionAll" | "enableRowSelection" | "enableColumnOrdering" | "enableFontSize" | "enableFooter" | "enablePrinting" | "enableRowActions" | "enableRowActive" | "enableRowClick" | "enableRowDrag" | "enableRowDrop" | "enableRowGoto" | "enableRowHeight" | "enableSaveSettings" | "children" | "data" | "id" | "customSettings" | "defaultColumnFreezingIndex" | "defaultRowActiveIndex" | "defaultRowGroupColumnId" | "defaultSettings" | "emptyState" | "rowActions" | "rowActionsForGroup" | "rowActionsLength" | "rowExpansionRenderer" | "rowIdentityAccessor" | "shortcuts" | "toolbarLeft" | "toolbarRight" | "toolbarPanel" | "onRowClick" | "onRowDrag" | "onRowDrop" | "onRowGoto" | "onRowSelect" | "onChangeFilter" | "onChangeSearch" | "onChangeSettings" | "onChangeSort"> & React.RefAttributes<import("../..").TableRef>) => JSX.Element) & {
|
8
|
-
Column:
|
9
|
-
|
4
|
+
Column: <TType_1 = unknown>(_: import("../../types").ValueOf<{ [Key in keyof TType_1]: {
|
5
|
+
accessor?: Key | undefined;
|
6
|
+
id: import("../../types").StringWithAutocompleteOptions<Key>;
|
7
|
+
renderer?: import("../..").TableColumnRenderer<TType_1, TType_1[Key]> | undefined;
|
8
|
+
aggregate?: import("../..").TableColumnRendererAggregate<TType_1, TType_1[Key]> | undefined;
|
9
|
+
control?: "datepicker" | "input" | "switch" | "checkbox" | "textarea" | ((props: import("../..").TableColumnRendererControlProps, row?: TType_1 | undefined, filterState?: import("../..").TableFilter[] | undefined) => JSX.Element) | undefined;
|
10
|
+
footer?: import("../..").TableColumnRendererFooter<TType_1> | undefined;
|
11
|
+
header: string;
|
12
|
+
aggregationFn?: "auto" | "sum" | "min" | "max" | "extent" | "mean" | "median" | "unique" | "uniqueCount" | "count" | undefined;
|
13
|
+
align?: "left" | "center" | "right" | undefined;
|
14
|
+
className?: string | ((row: TType_1) => string | undefined) | undefined;
|
15
|
+
dataType?: "number" | "boolean" | "text" | "datetime" | "amount" | undefined;
|
16
|
+
defaultHidden?: boolean | undefined;
|
17
|
+
defaultWidth?: number | "grow" | undefined;
|
18
|
+
enableEditing?: boolean | undefined;
|
19
|
+
enableFiltering?: boolean | undefined;
|
20
|
+
enableGrouping?: boolean | undefined;
|
21
|
+
enableHiding?: boolean | undefined;
|
22
|
+
enableOrdering?: boolean | undefined;
|
23
|
+
enablePrinting?: boolean | undefined;
|
24
|
+
enableResizing?: boolean | undefined;
|
25
|
+
enableSearch?: boolean | undefined;
|
26
|
+
enableSorting?: boolean | undefined;
|
27
|
+
enableTruncate?: boolean | undefined;
|
28
|
+
filters?: import("../..").TableFilterComparator[] | undefined;
|
29
|
+
headerClassName?: string | undefined;
|
30
|
+
menu?: import("../..").TableColumnMenu | undefined;
|
31
|
+
minWidth?: number | undefined;
|
32
|
+
sort?: "asc" | "desc" | undefined;
|
33
|
+
sortFn?: "basic" | "auto" | "text" | "datetime" | "alphanumeric" | "alphanumericCaseSensitive" | "textCaseSensitive" | ((rowA: TType_1, rowB: TType_1, columnId: string) => 0 | 1 | -1) | undefined;
|
34
|
+
tooltip?: string | undefined;
|
35
|
+
}; }>) => JSX.Element | null;
|
36
|
+
Group: (_: ReportGroupProps) => JSX.Element | null;
|
10
37
|
};
|
11
38
|
export type { ReportRef, ReportProps, ReportColumnProps, ReportGroupProps } from './types';
|
@@ -1,12 +1,39 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { Table3Props, Table3Ref, Table3ColumnProps, Table3GroupProps } from './types';
|
3
3
|
import './style.css';
|
4
|
-
declare const Column: React.FC<Table3ColumnProps<unknown>> & {
|
5
|
-
<TType = unknown>(_: Table3ColumnProps<TType>): null;
|
6
|
-
};
|
7
|
-
declare const Group: React.FC<Table3GroupProps>;
|
8
4
|
export declare const Table3: (<TType = unknown>(props: (import("./types").Table3WithoutEditingWithClientProps<TType> & React.RefAttributes<Table3Ref>) | (import("./types").Table3WithoutEditingWithServerProps<TType> & React.RefAttributes<Table3Ref>) | (import("./types").Table3WithEditingWithClientProps<TType> & React.RefAttributes<Table3Ref>) | (import("./types").Table3WithEditingWithServerProps<TType> & React.RefAttributes<Table3Ref>)) => JSX.Element) & {
|
9
|
-
Column:
|
10
|
-
|
5
|
+
Column: <TType_1 = unknown>(_: import("../../types").ValueOf<{ [Key in keyof TType_1]: {
|
6
|
+
accessor?: Key | undefined;
|
7
|
+
id: import("../../types").StringWithAutocompleteOptions<Key>;
|
8
|
+
renderer?: import("../..").TableColumnRenderer<TType_1, TType_1[Key]> | undefined;
|
9
|
+
aggregate?: import("../..").TableColumnRendererAggregate<TType_1, TType_1[Key]> | undefined;
|
10
|
+
control?: "datepicker" | "input" | "switch" | "checkbox" | "textarea" | ((props: import("../..").TableColumnRendererControlProps, row?: TType_1 | undefined, filterState?: import("../..").TableFilter[] | undefined) => JSX.Element) | undefined;
|
11
|
+
footer?: import("../..").TableColumnRendererFooter<TType_1> | undefined;
|
12
|
+
header: string;
|
13
|
+
aggregationFn?: "auto" | "sum" | "min" | "max" | "extent" | "mean" | "median" | "unique" | "uniqueCount" | "count" | undefined;
|
14
|
+
align?: "left" | "center" | "right" | undefined;
|
15
|
+
className?: string | ((row: TType_1) => string | undefined) | undefined;
|
16
|
+
dataType?: "number" | "boolean" | "text" | "datetime" | "amount" | undefined;
|
17
|
+
defaultHidden?: boolean | undefined;
|
18
|
+
defaultWidth?: number | "grow" | undefined;
|
19
|
+
enableEditing?: boolean | undefined;
|
20
|
+
enableFiltering?: boolean | undefined;
|
21
|
+
enableGrouping?: boolean | undefined;
|
22
|
+
enableHiding?: boolean | undefined;
|
23
|
+
enableOrdering?: boolean | undefined;
|
24
|
+
enablePrinting?: boolean | undefined;
|
25
|
+
enableResizing?: boolean | undefined;
|
26
|
+
enableSearch?: boolean | undefined;
|
27
|
+
enableSorting?: boolean | undefined;
|
28
|
+
enableTruncate?: boolean | undefined;
|
29
|
+
filters?: import("../..").TableFilterComparator[] | undefined;
|
30
|
+
headerClassName?: string | undefined;
|
31
|
+
menu?: import("../..").TableColumnMenu | undefined;
|
32
|
+
minWidth?: number | undefined;
|
33
|
+
sort?: "asc" | "desc" | undefined;
|
34
|
+
sortFn?: "basic" | "auto" | "text" | "datetime" | "alphanumeric" | "alphanumericCaseSensitive" | "textCaseSensitive" | ((rowA: TType_1, rowB: TType_1, columnId: string) => 0 | 1 | -1) | undefined;
|
35
|
+
tooltip?: string | undefined;
|
36
|
+
}; }>) => JSX.Element | null;
|
37
|
+
Group: (_: Table3GroupProps) => JSX.Element | null;
|
11
38
|
};
|
12
39
|
export type { Table3Ref, Table3Props, Table3ColumnProps, Table3GroupProps, Table3EditingSaveHandler, Table3EditingValidatorFn, Table3Texts, Table3FeatureProps, Table3CommonProps, Table3WithoutEditingWithClientProps, Table3WithoutEditingWithServerProps, Table3WithEditingProps, Table3WithEditingWithClientProps, Table3WithEditingWithServerProps, Table3EditingChangeHandler, Table3EditingCreateHandler, } from './types';
|
@@ -3,8 +3,12 @@ import { fixedForwardRef } from '../../types.js';
|
|
3
3
|
import { useReport } from './useReport.js';
|
4
4
|
import { Table } from '../../primitives/Table/Core/Table.js';
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
function Column(_) {
|
7
|
+
return null;
|
8
|
+
}
|
9
|
+
function Group(_) {
|
10
|
+
return null;
|
11
|
+
}
|
8
12
|
const BaseReport = /*#__PURE__*/fixedForwardRef(function BaseReport(props, ref) {
|
9
13
|
const report = useReport(props, ref);
|
10
14
|
return /*#__PURE__*/React__default.createElement(Table, null, /*#__PURE__*/React__default.createElement(Table.Toolbar, {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Report.js","sources":["../../../../../../../src/components/Report/Report.tsx"],"sourcesContent":["import React from 'react';\nimport { fixedForwardRef } from '../../types';\nimport { useReport } from './useReport';\nimport { Table } from '../../primitives/Table/Core/Table';\nimport { ReportRef, ReportProps, ReportColumnProps, ReportGroupProps } from './types';\n\
|
1
|
+
{"version":3,"file":"Report.js","sources":["../../../../../../../src/components/Report/Report.tsx"],"sourcesContent":["import React from 'react';\nimport { fixedForwardRef } from '../../types';\nimport { useReport } from './useReport';\nimport { Table } from '../../primitives/Table/Core/Table';\nimport { ReportRef, ReportProps, ReportColumnProps, ReportGroupProps } from './types';\n\nfunction Column<TType = unknown>(_: ReportColumnProps<TType>) {\n return null;\n}\n\nfunction Group(_: ReportGroupProps) {\n return null;\n}\n\nconst BaseReport = fixedForwardRef(function BaseReport<TType = unknown>(props: ReportProps<TType>, ref: React.Ref<ReportRef>) {\n const report = useReport<TType>(props, ref);\n\n return (\n <Table>\n <Table.Toolbar<TType> table={report} />\n <Table.Grid<TType> data-taco=\"table-report\" table={report} />\n </Table>\n );\n});\n\nexport const Report = fixedForwardRef(function Report<TType = unknown>(props: ReportProps<TType>, ref: React.Ref<ReportRef>) {\n const stringifiedChildren = String(props.children);\n // we force a remount (using key) when the child columns change because there are too many places to add children as an effect\n // this is cheaper from a complexity perspective, and probably performance wise as well\n const key = React.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);\n return <BaseReport<TType> {...props} key={key} ref={ref} />;\n}) as (<TType = unknown>(props: ReportProps<TType> & React.RefAttributes<ReportRef>) => JSX.Element) & {\n Column: <TType = unknown>(_: ReportColumnProps<TType>) => JSX.Element | null;\n Group: (_: ReportGroupProps) => JSX.Element | null;\n};\nReport.Column = Column;\nReport.Group = Group;\n\nexport type { ReportRef, ReportProps, ReportColumnProps, ReportGroupProps } from './types';\n"],"names":["Column","_","Group","BaseReport","fixedForwardRef","props","ref","report","useReport","React","Table","Toolbar","table","Grid","Report","stringifiedChildren","String","children","key","useMemo"],"mappings":";;;;;AAMA,SAASA,MAAMA,CAAkBC,CAA2B;EACxD,OAAO,IAAI;AACf;AAEA,SAASC,KAAKA,CAACD,CAAmB;EAC9B,OAAO,IAAI;AACf;AAEA,MAAME,UAAU,gBAAGC,eAAe,CAAC,SAASD,UAAUA,CAAkBE,KAAyB,EAAEC,GAAyB;EACxH,MAAMC,MAAM,GAAGC,SAAS,CAAQH,KAAK,EAAEC,GAAG,CAAC;EAE3C,oBACIG,6BAACC,KAAK,qBACFD,6BAACC,KAAK,CAACC,OAAO;IAAQC,KAAK,EAAEL;IAAU,eACvCE,6BAACC,KAAK,CAACG,IAAI;iBAAkB,cAAc;IAACD,KAAK,EAAEL;IAAU,CACzD;AAEhB,CAAC,CAAC;MAEWO,MAAM,gBAAGV,eAAe,CAAC,SAASU,MAAMA,CAAkBT,KAAyB,EAAEC,GAAyB;EACvH,MAAMS,mBAAmB,GAAGC,MAAM,CAACX,KAAK,CAACY,QAAQ,CAAC;;;EAGlD,MAAMC,GAAG,GAAGT,cAAK,CAACU,OAAO,CAAC,MAAMH,MAAM,CAAC,WAAW,GAAGD,mBAAmB,CAAC,EAAE,CAACA,mBAAmB,CAAC,CAAC;EACjG,oBAAON,6BAACN,UAAU,oBAAYE,KAAK;IAAEa,GAAG,EAAEA,GAAG;IAAEZ,GAAG,EAAEA;KAAO;AAC/D,CAAC;AAIDQ,MAAM,CAACd,MAAM,GAAGA,MAAM;AACtBc,MAAM,CAACZ,KAAK,GAAGA,KAAK;;;;"}
|
@@ -8,9 +8,13 @@ import { Editing } from './components/Toolbar/Editing/Editing.js';
|
|
8
8
|
import { CreateNewRow } from './components/Row/Editing/CreateNewRow.js';
|
9
9
|
import { TemporaryRow } from './components/Row/Editing/TemporaryRow.js';
|
10
10
|
|
11
|
-
|
11
|
+
function Column(_) {
|
12
|
+
return null;
|
13
|
+
}
|
12
14
|
Column.displayName = 'Table3Column';
|
13
|
-
|
15
|
+
function Group(_) {
|
16
|
+
return null;
|
17
|
+
}
|
14
18
|
Group.displayName = 'Table3Group';
|
15
19
|
const BaseTable3 = /*#__PURE__*/fixedForwardRef(function BaseTable3(props, ref) {
|
16
20
|
var _table3$meta$editing, _table3$meta$editing2;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Table3.js","sources":["../../../../../../../src/components/Table3/Table3.tsx"],"sourcesContent":["import React from 'react';\nimport { fixedForwardRef } from '../../types';\nimport { useTable3 } from './useTable3';\nimport { Table } from '../../primitives/Table/Core/Table';\nimport { Alert } from './components/Editing/Alert';\nimport { Table3Props, Table3Ref, Table3ColumnProps, Table3GroupProps } from './types';\nimport { Editing } from './components/Toolbar/Editing/Editing';\nimport { CreateNewRow } from './components/Row/Editing/CreateNewRow';\nimport { TemporaryRow } from './components/Row/Editing/TemporaryRow';\nimport './style.css';\nimport { isTableScrolled } from './util/editing';\n\
|
1
|
+
{"version":3,"file":"Table3.js","sources":["../../../../../../../src/components/Table3/Table3.tsx"],"sourcesContent":["import React from 'react';\nimport { fixedForwardRef } from '../../types';\nimport { useTable3 } from './useTable3';\nimport { Table } from '../../primitives/Table/Core/Table';\nimport { Alert } from './components/Editing/Alert';\nimport { Table3Props, Table3Ref, Table3ColumnProps, Table3GroupProps } from './types';\nimport { Editing } from './components/Toolbar/Editing/Editing';\nimport { CreateNewRow } from './components/Row/Editing/CreateNewRow';\nimport { TemporaryRow } from './components/Row/Editing/TemporaryRow';\nimport './style.css';\nimport { isTableScrolled } from './util/editing';\n\nfunction Column<TType = unknown>(_: Table3ColumnProps<TType>) {\n return null;\n}\nColumn.displayName = 'Table3Column';\n\nfunction Group(_: Table3GroupProps) {\n return null;\n}\nGroup.displayName = 'Table3Group';\n\nconst BaseTable3 = fixedForwardRef(function BaseTable3<TType = unknown>(props: Table3Props<TType>, ref: React.Ref<Table3Ref>) {\n const table3 = useTable3<TType>(props, ref);\n\n const gridAttributes = {\n 'data-table-editing-mode': table3.meta.editing?.isEditing\n ? table3.meta.editing?.isDetailedMode\n ? 'detailed'\n : 'normal'\n : undefined,\n enableHorizontalArrowKeyNavigation: table3.meta.editing.isEditing,\n };\n\n const hasAlertErrors = table3.meta.editing.getErrorsShownInAlert().length;\n const hasCreateWorkflow = table3.meta.editing.isEnabled && props.onEditingCreate;\n const isScrolled = isTableScrolled(table3.ref);\n\n let createWorkflow;\n\n if (hasCreateWorkflow) {\n createWorkflow = (\n <CreateNewRow\n buttonRef={table3.meta.editing.createRowButtonRef}\n isScrolled={isScrolled}\n scrollToIndex={table3.renderer.scrollToIndex}\n table={table3.instance}\n tableMeta={table3.meta}\n />\n );\n }\n\n return (\n <Table>\n <Table.Toolbar<TType> table={table3}>\n {table3.meta.editing.isEnabled ? (\n <Editing scrollToIndex={table3.renderer.scrollToIndex} table={table3.instance} />\n ) : null}\n </Table.Toolbar>\n {hasAlertErrors ? (\n <Alert\n className=\"mb-4\"\n scrollToIndex={table3.renderer.scrollToIndex}\n table={table3.instance}\n tableRef={table3.ref}\n />\n ) : null}\n <Table.Grid<TType>\n {...gridAttributes}\n data-taco=\"table3\"\n footerRows={hasCreateWorkflow && isScrolled ? createWorkflow : undefined}\n table={table3}>\n {hasCreateWorkflow ? (\n <>\n <TemporaryRow\n createRowButtonRef={table3.meta.editing.createRowButtonRef}\n isScrolled={isScrolled}\n table={table3.instance}\n tableMeta={table3.meta}\n tableRef={table3.ref}\n />\n {!isScrolled ? createWorkflow : null}\n </>\n ) : null}\n </Table.Grid>\n </Table>\n );\n});\n\nexport const Table3 = fixedForwardRef(function Table3<TType = unknown>(props: Table3Props<TType>, ref: React.Ref<Table3Ref>) {\n const stringifiedChildren = String(props.children);\n // we force a remount (using key) when the child columns change because there are too many places to add children as an effect\n // this is cheaper from a complexity perspective, and probably performance wise as well\n const key = React.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);\n return <BaseTable3<TType> {...props} key={key} ref={ref} />;\n}) as (<TType = unknown>(props: Table3Props<TType> & React.RefAttributes<Table3Ref>) => JSX.Element) & {\n Column: <TType = unknown>(_: Table3ColumnProps<TType>) => JSX.Element | null;\n Group: (_: Table3GroupProps) => JSX.Element | null;\n};\nTable3.Column = Column;\nTable3.Group = Group;\n\nexport type {\n Table3Ref,\n Table3Props,\n Table3ColumnProps,\n Table3GroupProps,\n Table3EditingSaveHandler,\n Table3EditingValidatorFn,\n Table3Texts,\n Table3FeatureProps,\n Table3CommonProps,\n Table3WithoutEditingWithClientProps,\n Table3WithoutEditingWithServerProps,\n Table3WithEditingProps,\n Table3WithEditingWithClientProps,\n Table3WithEditingWithServerProps,\n Table3EditingChangeHandler,\n Table3EditingCreateHandler,\n} from './types';\n"],"names":["Column","_","displayName","Group","BaseTable3","fixedForwardRef","props","ref","table3","useTable3","gridAttributes","_table3$meta$editing","meta","editing","isEditing","_table3$meta$editing2","isDetailedMode","undefined","enableHorizontalArrowKeyNavigation","hasAlertErrors","getErrorsShownInAlert","length","hasCreateWorkflow","isEnabled","onEditingCreate","isScrolled","isTableScrolled","createWorkflow","React","CreateNewRow","buttonRef","createRowButtonRef","scrollToIndex","renderer","table","instance","tableMeta","Table","Toolbar","Editing","Alert","className","tableRef","Grid","footerRows","TemporaryRow","Table3","stringifiedChildren","String","children","key","useMemo"],"mappings":"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"}
|
@@ -17125,8 +17125,12 @@ function TableGrid(props) {
|
|
17125
17125
|
}, footerRows) : null)))));
|
17126
17126
|
}
|
17127
17127
|
|
17128
|
-
|
17129
|
-
|
17128
|
+
function Column$1(_) {
|
17129
|
+
return null;
|
17130
|
+
}
|
17131
|
+
function Group$4(_) {
|
17132
|
+
return null;
|
17133
|
+
}
|
17130
17134
|
const BaseReport = /*#__PURE__*/fixedForwardRef(function BaseReport(props, ref) {
|
17131
17135
|
const report = useReport(props, ref);
|
17132
17136
|
return /*#__PURE__*/React__default.createElement(Table, null, /*#__PURE__*/React__default.createElement(Table.Toolbar, {
|
@@ -20448,9 +20452,13 @@ function TemporaryRow(props) {
|
|
20448
20452
|
}))));
|
20449
20453
|
}
|
20450
20454
|
|
20451
|
-
|
20455
|
+
function Column$3(_) {
|
20456
|
+
return null;
|
20457
|
+
}
|
20452
20458
|
Column$3.displayName = 'Table3Column';
|
20453
|
-
|
20459
|
+
function Group$5(_) {
|
20460
|
+
return null;
|
20461
|
+
}
|
20454
20462
|
Group$5.displayName = 'Table3Group';
|
20455
20463
|
const BaseTable3 = /*#__PURE__*/fixedForwardRef(function BaseTable3(props, ref) {
|
20456
20464
|
var _table3$meta$editing, _table3$meta$editing2;
|