@teselagen/ui 0.5.23-beta.23 → 0.5.23-beta.24
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/FormComponents/AbstractField.d.ts +1 -0
- package/index.cjs.js +3 -1
- package/index.es.js +3 -1
- package/package.json +1 -1
- package/src/DataTable/Columns.js +520 -398
- package/src/DataTable/EditabelCell.js +4 -4
- package/src/DataTable/FilterAndSortMenu.js +1 -0
- package/src/DataTable/utils/useTableParams.js +1 -0
- package/src/DataTable/utils/withTableParams.js +2 -1
- package/src/FormComponents/AbstractField.js +388 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import("react/jsx-runtime").JSX.Element;
|
package/index.cjs.js
CHANGED
|
@@ -46838,6 +46838,7 @@ const FilterInput = /* @__PURE__ */ __name(({
|
|
|
46838
46838
|
filterSubType,
|
|
46839
46839
|
filterType
|
|
46840
46840
|
}) => {
|
|
46841
|
+
console.log("xx-filterValue", filterValue);
|
|
46841
46842
|
let inputGroup = /* @__PURE__ */ React$1.createElement("div", null);
|
|
46842
46843
|
switch (filterType) {
|
|
46843
46844
|
case "text":
|
|
@@ -68734,7 +68735,8 @@ const useTableParams = /* @__PURE__ */ __name((props) => {
|
|
|
68734
68735
|
}), {
|
|
68735
68736
|
currentParams,
|
|
68736
68737
|
selectedEntities,
|
|
68737
|
-
tableParams
|
|
68738
|
+
tableParams,
|
|
68739
|
+
urlConnected
|
|
68738
68740
|
});
|
|
68739
68741
|
}, "useTableParams");
|
|
68740
68742
|
const withTableParams = /* @__PURE__ */ __name((topLevelOptions) => compose(
|
package/index.es.js
CHANGED
|
@@ -46820,6 +46820,7 @@ const FilterInput = /* @__PURE__ */ __name(({
|
|
|
46820
46820
|
filterSubType,
|
|
46821
46821
|
filterType
|
|
46822
46822
|
}) => {
|
|
46823
|
+
console.log("xx-filterValue", filterValue);
|
|
46823
46824
|
let inputGroup = /* @__PURE__ */ React__default.createElement("div", null);
|
|
46824
46825
|
switch (filterType) {
|
|
46825
46826
|
case "text":
|
|
@@ -68716,7 +68717,8 @@ const useTableParams = /* @__PURE__ */ __name((props) => {
|
|
|
68716
68717
|
}), {
|
|
68717
68718
|
currentParams,
|
|
68718
68719
|
selectedEntities,
|
|
68719
|
-
tableParams
|
|
68720
|
+
tableParams,
|
|
68721
|
+
urlConnected
|
|
68720
68722
|
});
|
|
68721
68723
|
}, "useTableParams");
|
|
68722
68724
|
const withTableParams = /* @__PURE__ */ __name((topLevelOptions) => compose(
|