k-react-vtable 1.0.27 → 1.0.28
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/cjs/containers/withContainer.d.ts +1 -1
- package/cjs/containers/withContainer.js +2 -1
- package/cjs/containers/withContainer.js.map +1 -1
- package/cjs/context/table.d.ts +1 -1
- package/cjs/context/table.js +1 -2
- package/cjs/context/table.js.map +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/table-components/base-component.d.ts +5 -1
- package/cjs/table-components/base-component.js +3 -2
- package/cjs/table-components/base-component.js.map +1 -1
- package/cjs/table-components/component/emptyTip.d.ts +4 -1
- package/cjs/table-components/component/menu.d.ts +4 -1
- package/cjs/table-components/component/title.d.ts +4 -1
- package/cjs/table-components/component/tooltip.d.ts +4 -1
- package/cjs/table-components/list/list-column.d.ts +5 -1
- package/cjs/table-components/pivot/pivot-corner.d.ts +4 -1
- package/cjs/table-components/pivot/pivot-dimension.d.ts +12 -3
- package/cjs/table-components/pivot/pivot-dimension.js.map +1 -1
- package/cjs/table-components/pivot/pivot-header-title.d.ts +8 -2
- package/cjs/table-components/pivot/pivot-indicator.d.ts +4 -1
- package/cjs/tables/base-table.d.ts +1 -2
- package/cjs/tables/base-table.js +1 -1
- package/cjs/tables/base-table.js.map +1 -1
- package/cjs/tables/list-table-simple.d.ts +4 -5
- package/cjs/tables/list-table-simple.js.map +1 -1
- package/cjs/tables/list-table.d.ts +4 -5
- package/cjs/tables/list-table.js.map +1 -1
- package/cjs/tables/pivot-chart.d.ts +4 -6
- package/cjs/tables/pivot-chart.js +2 -2
- package/cjs/tables/pivot-chart.js.map +1 -1
- package/cjs/tables/pivot-table-simple.d.ts +4 -5
- package/cjs/tables/pivot-table-simple.js.map +1 -1
- package/cjs/tables/pivot-table.d.ts +4 -5
- package/cjs/tables/pivot-table.js.map +1 -1
- package/dist/react-vtable.js +4 -3
- package/dist/react-vtable.min.js +2 -2
- package/es/containers/withContainer.d.ts +1 -1
- package/es/containers/withContainer.js +2 -1
- package/es/containers/withContainer.js.map +1 -1
- package/es/context/table.d.ts +1 -1
- package/es/context/table.js +1 -2
- package/es/context/table.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/table-components/base-component.d.ts +5 -1
- package/es/table-components/base-component.js +3 -2
- package/es/table-components/base-component.js.map +1 -1
- package/es/table-components/component/emptyTip.d.ts +4 -1
- package/es/table-components/component/menu.d.ts +4 -1
- package/es/table-components/component/title.d.ts +4 -1
- package/es/table-components/component/tooltip.d.ts +4 -1
- package/es/table-components/list/list-column.d.ts +5 -1
- package/es/table-components/pivot/pivot-corner.d.ts +4 -1
- package/es/table-components/pivot/pivot-dimension.d.ts +12 -3
- package/es/table-components/pivot/pivot-dimension.js.map +1 -1
- package/es/table-components/pivot/pivot-header-title.d.ts +8 -2
- package/es/table-components/pivot/pivot-indicator.d.ts +4 -1
- package/es/tables/base-table.d.ts +1 -2
- package/es/tables/base-table.js +1 -1
- package/es/tables/base-table.js.map +1 -1
- package/es/tables/list-table-simple.d.ts +4 -5
- package/es/tables/list-table-simple.js.map +1 -1
- package/es/tables/list-table.d.ts +4 -5
- package/es/tables/list-table.js.map +1 -1
- package/es/tables/pivot-chart.d.ts +4 -6
- package/es/tables/pivot-chart.js +1 -3
- package/es/tables/pivot-chart.js.map +1 -1
- package/es/tables/pivot-table-simple.d.ts +4 -5
- package/es/tables/pivot-table-simple.js.map +1 -1
- package/es/tables/pivot-table.d.ts +4 -5
- package/es/tables/pivot-table.js.map +1 -1
- package/package.json +4 -4
package/dist/react-vtable.js
CHANGED
|
@@ -73716,7 +73716,7 @@
|
|
|
73716
73716
|
}, []);
|
|
73717
73717
|
return (React.createElement(TableContext.Provider, { value: tableContext.current }, toArray(props.children).map((child, index) => {
|
|
73718
73718
|
if (typeof child === 'string') {
|
|
73719
|
-
return;
|
|
73719
|
+
return null;
|
|
73720
73720
|
}
|
|
73721
73721
|
const childId = getComponentId(child, index);
|
|
73722
73722
|
return (React.createElement(React.Fragment, { key: childId }, React.cloneElement(child, {
|
|
@@ -79575,7 +79575,8 @@
|
|
|
79575
79575
|
}
|
|
79576
79576
|
};
|
|
79577
79577
|
}, []);
|
|
79578
|
-
|
|
79578
|
+
const result = parseCustomChildren(props.children, props.componentId);
|
|
79579
|
+
return result;
|
|
79579
79580
|
};
|
|
79580
79581
|
Comp.displayName = componentName;
|
|
79581
79582
|
Comp.parseOption = (props) => {
|
|
@@ -80354,7 +80355,7 @@
|
|
|
80354
80355
|
const Checkbox = React.forwardRef(CheckboxComponent);
|
|
80355
80356
|
Checkbox.displayName = 'Checkbox';
|
|
80356
80357
|
|
|
80357
|
-
const version = "1.0.
|
|
80358
|
+
const version = "1.0.28";
|
|
80358
80359
|
|
|
80359
80360
|
exports.Arc = Arc;
|
|
80360
80361
|
exports.Avatar = Avatar;
|