blixify-ui-web 0.3.67 → 0.3.69
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/lib/components/data/dataTemplate/index.d.ts.map +1 -1
- package/lib/components/data/dataTemplate/index.js +63 -37
- package/lib/components/data/dataTemplate/index.js.map +1 -1
- package/lib/components/data/listModule.d.ts +18 -7
- package/lib/components/data/listModule.d.ts.map +1 -1
- package/lib/components/data/listModule.js +12 -8
- package/lib/components/data/listModule.js.map +1 -1
- package/lib/components/display/table/index.d.ts +24 -3
- package/lib/components/display/table/index.d.ts.map +1 -1
- package/lib/components/display/table/index.js +93 -1
- package/lib/components/display/table/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/data/dataTemplate/index.tsx"],"names":[],"mappings":"AAsBA,OAAO,KAQN,MAAM,OAAO,CAAC;AA4Df,OAAO,EACL,iBAAiB,EAKlB,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/data/dataTemplate/index.tsx"],"names":[],"mappings":"AAsBA,OAAO,KAQN,MAAM,OAAO,CAAC;AA4Df,OAAO,EACL,iBAAiB,EAKlB,MAAM,kBAAkB,CAAC;AAc1B,eAAO,MAAM,YAAY,mFA+oLvB,CAAC"}
|
|
@@ -3388,6 +3388,27 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3388
3388
|
else
|
|
3389
3389
|
return react_1.default.createElement(react_1.default.Fragment, null);
|
|
3390
3390
|
};
|
|
3391
|
+
var renderSearchContent = function (addQuery) {
|
|
3392
|
+
var _a, _b;
|
|
3393
|
+
var filterComponent = (0, listModule_1.renderSearchFilterComponents)(props.model, devSettings, limit, dbModule, {
|
|
3394
|
+
filterSearch: filterSearch,
|
|
3395
|
+
filterSelection: filterSelection,
|
|
3396
|
+
filterReferenceDate: filterReferenceDate,
|
|
3397
|
+
filterReference: filterReference,
|
|
3398
|
+
filterReferenceList: filterReferenceList,
|
|
3399
|
+
filterReferenceSearch: filterReferenceSearch,
|
|
3400
|
+
setFilterSelection: setFilterSelection,
|
|
3401
|
+
setFilterReference: setFilterReference,
|
|
3402
|
+
setFilterReferenceList: setFilterReferenceList,
|
|
3403
|
+
setFilterReferenceSearch: setFilterReferenceSearch,
|
|
3404
|
+
}, {
|
|
3405
|
+
handleNameSearch: handleNameSearch,
|
|
3406
|
+
handleClearDataByFilter: handleClearDataByFilter,
|
|
3407
|
+
handleRangeFilterOnChange: handleRangeFilterOnChange,
|
|
3408
|
+
handleFilterDataSelected: handleFilterDataSelected,
|
|
3409
|
+
}, __assign(__assign({}, props.organise), { additionalQuery: addQuery !== null && addQuery !== void 0 ? addQuery : (_a = props.organise) === null || _a === void 0 ? void 0 : _a.additionalQuery, hideSearch: addQuery ? true : (_b = props.organise) === null || _b === void 0 ? void 0 : _b.hideSearch }), selectedTab);
|
|
3410
|
+
return filterComponent;
|
|
3411
|
+
};
|
|
3391
3412
|
var renderContent = function () {
|
|
3392
3413
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
|
3393
3414
|
var isBottom = ((_a = props.bareSettings) === null || _a === void 0 ? void 0 : _a.bareUpdateActionBottom) ? true : false;
|
|
@@ -3497,23 +3518,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3497
3518
|
react_1.default.createElement("div", { className: "mt-8" }, renderListObject(props.type)),
|
|
3498
3519
|
isBottom && renderActionButtons(props.type, true)));
|
|
3499
3520
|
case "list":
|
|
3500
|
-
var filterComponent = (
|
|
3501
|
-
filterSearch: filterSearch,
|
|
3502
|
-
filterSelection: filterSelection,
|
|
3503
|
-
filterReferenceDate: filterReferenceDate,
|
|
3504
|
-
filterReference: filterReference,
|
|
3505
|
-
filterReferenceList: filterReferenceList,
|
|
3506
|
-
filterReferenceSearch: filterReferenceSearch,
|
|
3507
|
-
setFilterSelection: setFilterSelection,
|
|
3508
|
-
setFilterReference: setFilterReference,
|
|
3509
|
-
setFilterReferenceList: setFilterReferenceList,
|
|
3510
|
-
setFilterReferenceSearch: setFilterReferenceSearch,
|
|
3511
|
-
}, {
|
|
3512
|
-
handleNameSearch: handleNameSearch,
|
|
3513
|
-
handleClearDataByFilter: handleClearDataByFilter,
|
|
3514
|
-
handleRangeFilterOnChange: handleRangeFilterOnChange,
|
|
3515
|
-
handleFilterDataSelected: handleFilterDataSelected,
|
|
3516
|
-
}, props.organise, selectedTab);
|
|
3521
|
+
var filterComponent = renderSearchContent();
|
|
3517
3522
|
var dataComponent = renderTabContent(tabs, props.type, viewType);
|
|
3518
3523
|
var actionComponent = renderActionButtons(props.type);
|
|
3519
3524
|
var rqHOCComp = (react_1.default.createElement(readQueryHoc_1.ReadQueryHoc, { ref: listRQueryHocRef, database: {
|
|
@@ -3812,7 +3817,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3812
3817
|
return tabs;
|
|
3813
3818
|
};
|
|
3814
3819
|
var renderTabContent = function (tabs, dataType, viewType) {
|
|
3815
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8;
|
|
3820
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14;
|
|
3816
3821
|
var selectedTabData = tabs.find(function (eachTab) {
|
|
3817
3822
|
if (eachTab.id === viewType) {
|
|
3818
3823
|
return eachTab;
|
|
@@ -3850,8 +3855,29 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3850
3855
|
}))), handleSelectAll: handleSelectAllPages, handleSelectedIds: handleSelectIds, header: renderTableHeader(), pageIndex: pageIndex, onClickRow: function (id) {
|
|
3851
3856
|
var _a, _b;
|
|
3852
3857
|
(_b = (_a = props.organise) === null || _a === void 0 ? void 0 : _a.handleNavigate) === null || _b === void 0 ? void 0 : _b.call(_a, "read", id, "general");
|
|
3853
|
-
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, className: "mt-5", lib: { axios: (_j = props.lib) === null || _j === void 0 ? void 0 : _j.axios }, devSettings: props.devSettings, bareSettings: props.bareSettings, fixedPagination: (_k = props.organise) === null || _k === void 0 ? void 0 : _k.fixedPagination,
|
|
3854
|
-
|
|
3858
|
+
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, className: "mt-5", lib: { axios: (_j = props.lib) === null || _j === void 0 ? void 0 : _j.axios }, devSettings: props.devSettings, bareSettings: props.bareSettings, fixedPagination: (_k = props.organise) === null || _k === void 0 ? void 0 : _k.fixedPagination, advSettings: {
|
|
3859
|
+
sortId: (_l = props.organise) === null || _l === void 0 ? void 0 : _l.sort,
|
|
3860
|
+
sortOptions: (_o = (_m = props.organise) === null || _m === void 0 ? void 0 : _m.renderReferenceLabelOptions) === null || _o === void 0 ? void 0 : _o.call(_m),
|
|
3861
|
+
onSortColumn: (_p = props.organise) === null || _p === void 0 ? void 0 : _p.onChangeSort,
|
|
3862
|
+
filterOptions: (_r = (_q = props.organise) === null || _q === void 0 ? void 0 : _q.additionalQuery) === null || _r === void 0 ? void 0 : _r.map(function (eachQuery) {
|
|
3863
|
+
var _a;
|
|
3864
|
+
return {
|
|
3865
|
+
key: eachQuery.value,
|
|
3866
|
+
label: (_a = eachQuery.label) !== null && _a !== void 0 ? _a : "",
|
|
3867
|
+
};
|
|
3868
|
+
}),
|
|
3869
|
+
renderFilterElements: function (id) {
|
|
3870
|
+
var _a, _b;
|
|
3871
|
+
var selectedQuery = (_b = (_a = props.organise) === null || _a === void 0 ? void 0 : _a.additionalQuery) === null || _b === void 0 ? void 0 : _b.filter(function (eachQuery) {
|
|
3872
|
+
return eachQuery.value === id;
|
|
3873
|
+
});
|
|
3874
|
+
if (selectedQuery)
|
|
3875
|
+
return renderSearchContent(selectedQuery);
|
|
3876
|
+
else
|
|
3877
|
+
return null;
|
|
3878
|
+
},
|
|
3879
|
+
}, editable: {
|
|
3880
|
+
active: ((_s = props.edit) === null || _s === void 0 ? void 0 : _s.listEditable) ? true : false,
|
|
3855
3881
|
onUpdateData: function (rowId, columnId, data) { return __awaiter(void 0, void 0, void 0, function () {
|
|
3856
3882
|
return __generator(this, function (_a) {
|
|
3857
3883
|
switch (_a.label) {
|
|
@@ -3863,7 +3889,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3863
3889
|
});
|
|
3864
3890
|
}); },
|
|
3865
3891
|
}, addable: {
|
|
3866
|
-
active: ((
|
|
3892
|
+
active: ((_t = props.edit) === null || _t === void 0 ? void 0 : _t.listAddable) ? true : false,
|
|
3867
3893
|
onAddData: function (data) { return __awaiter(void 0, void 0, void 0, function () {
|
|
3868
3894
|
return __generator(this, function (_a) {
|
|
3869
3895
|
switch (_a.label) {
|
|
@@ -3874,46 +3900,46 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3874
3900
|
}
|
|
3875
3901
|
});
|
|
3876
3902
|
}); },
|
|
3877
|
-
}, darkMode: (
|
|
3903
|
+
}, darkMode: (_u = props.organise) === null || _u === void 0 ? void 0 : _u.darkMode, hidePagination: (_v = props.organise) === null || _v === void 0 ? void 0 : _v.hidePagination }));
|
|
3878
3904
|
}
|
|
3879
3905
|
else if (dataType === "read") {
|
|
3880
3906
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
3881
|
-
react_1.default.createElement(detailList_1.DetailList, { model: props.model, referenceModel: referenceModelSchema, className: "mt-5 bg-white rounded-md", title: "General Details", list: renderDetailListData(props.model), handleReferenceLink: !schemaPresent && ((
|
|
3907
|
+
react_1.default.createElement(detailList_1.DetailList, { model: props.model, referenceModel: referenceModelSchema, className: "mt-5 bg-white rounded-md", title: "General Details", list: renderDetailListData(props.model), handleReferenceLink: !schemaPresent && ((_w = props.bareSettings) === null || _w === void 0 ? void 0 : _w.bareReadReferenceView)
|
|
3882
3908
|
? props.bareSettings.bareReadReferenceView
|
|
3883
|
-
: undefined, splitView: (
|
|
3909
|
+
: undefined, splitView: (_x = props.organise) === null || _x === void 0 ? void 0 : _x.splitView }),
|
|
3884
3910
|
react_1.default.createElement("div", { className: "mt-8" }, renderListAddress(dataType)),
|
|
3885
3911
|
react_1.default.createElement("div", { className: "mt-8" }, renderListObject(dataType))));
|
|
3886
3912
|
}
|
|
3887
3913
|
}
|
|
3888
3914
|
else if (selectedTabData) {
|
|
3889
|
-
if ((
|
|
3915
|
+
if ((_y = props.bareSettings) === null || _y === void 0 ? void 0 : _y.bareListComponent) {
|
|
3890
3916
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
3891
3917
|
props.bareSettings.bareListComponent(tableData, spaceTableData, tableLoading, pageIndex),
|
|
3892
|
-
!((
|
|
3918
|
+
!((_z = props.organise) === null || _z === void 0 ? void 0 : _z.hidePagination) && (react_1.default.createElement(pagination_1.Pagination, { data: tableData, size: size, limit: limit, cursor: cursor, pageIndex: pageIndex, paginationType: isFirebase ? "cursor" : "page", handleUpdatePageIndex: handlePagination, darkMode: (_0 = props.organise) === null || _0 === void 0 ? void 0 : _0.darkMode }))));
|
|
3893
3919
|
}
|
|
3894
3920
|
else if (selectedTabData.viewType === "iframe") {
|
|
3895
|
-
return (react_1.default.createElement("iframe", { id: "blixify-iframe", className: "w-full mt-5", style: { height: "70vh" }, src: (
|
|
3921
|
+
return (react_1.default.createElement("iframe", { id: "blixify-iframe", className: "w-full mt-5", style: { height: "70vh" }, src: (_1 = selectedTabData === null || selectedTabData === void 0 ? void 0 : selectedTabData.iframeSrc) !== null && _1 !== void 0 ? _1 : "", title: (_2 = selectedTabData === null || selectedTabData === void 0 ? void 0 : selectedTabData.id) !== null && _2 !== void 0 ? _2 : "", onLoad: props.onLoadIframe }));
|
|
3896
3922
|
}
|
|
3897
3923
|
else if (selectedTabData.viewType === "list") {
|
|
3898
3924
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
3899
3925
|
react_1.default.createElement(list_1.List, { paginationType: isFirebase ? "cursor" : "page", list: renderGridAndListData(selectedTabData.viewImage, "list"), size: size, limit: limit, cursor: cursor, loading: tableLoading, pageIndex: pageIndex, checkbox: multipleSelect, selectAll: selectAll, selectedIds: selectedIds, handleSelectAll: handleSelectAllPages, handleSelectedIds: handleSelectIds, selectAllText: selectAll ? "from filter" : "", multiActionButton: react_1.default.createElement("div", { className: "flex flex-row space-x-3" },
|
|
3900
|
-
selectedIds.length > 0 && !((
|
|
3926
|
+
selectedIds.length > 0 && !((_3 = props.edit) === null || _3 === void 0 ? void 0 : _3.disabledUpdate) && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
3901
3927
|
react_1.default.createElement(textButton_1.TextButton, { className: "text-sm", text: "Change to Draft", disable: loading, onClick: function () {
|
|
3902
3928
|
handleBatchDraftData();
|
|
3903
3929
|
} }),
|
|
3904
3930
|
react_1.default.createElement(textButton_1.TextButton, { className: "text-sm", text: "Clone Items", disable: loading, onClick: function () {
|
|
3905
3931
|
handleCloneSelectedData();
|
|
3906
3932
|
} }))),
|
|
3907
|
-
((
|
|
3933
|
+
((_4 = props.edit) === null || _4 === void 0 ? void 0 : _4.deleteBtn) && (react_1.default.createElement(textButton_1.TextButton, { className: "text-sm text-red-500 hover:text-red-600", text: "Delete", onClick: function () {
|
|
3908
3934
|
handleGenerateDeletePasscode();
|
|
3909
3935
|
setDeleteModal(true);
|
|
3910
3936
|
} })),
|
|
3911
|
-
!isFirebase && !((
|
|
3937
|
+
!isFirebase && !((_5 = props.edit) === null || _5 === void 0 ? void 0 : _5.disabledUpdate) && (react_1.default.createElement(textButton_1.TextButton, { className: "text-sm", text: "Update", onClick: function () {
|
|
3912
3938
|
setBatchUpdateModal(true);
|
|
3913
3939
|
} }))), onClickRow: function (id) {
|
|
3914
3940
|
var _a, _b;
|
|
3915
3941
|
(_b = (_a = props.organise) === null || _a === void 0 ? void 0 : _a.handleNavigate) === null || _b === void 0 ? void 0 : _b.call(_a, "read", id, "general");
|
|
3916
|
-
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, className: "mt-5", hidePagination: (
|
|
3942
|
+
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, className: "mt-5", hidePagination: (_6 = props.organise) === null || _6 === void 0 ? void 0 : _6.hidePagination })));
|
|
3917
3943
|
}
|
|
3918
3944
|
else if (selectedTabData.viewType === "grid") {
|
|
3919
3945
|
var isGridScroll = renderCheckGridScroll();
|
|
@@ -3921,7 +3947,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
3921
3947
|
react_1.default.createElement(grid_1.Grid, { paginationType: isGridScroll || isFirebase ? "cursor" : "page", data: renderGridAndListData(selectedTabData.viewImage, "grid"), size: size, limit: limit, cursor: cursor, loading: tableLoading, infinityScroll: isGridScroll, horizontalScroll: isGridScroll, pageIndex: pageIndex, onClickData: function (id) {
|
|
3922
3948
|
var _a, _b;
|
|
3923
3949
|
(_b = (_a = props.organise) === null || _a === void 0 ? void 0 : _a.handleNavigate) === null || _b === void 0 ? void 0 : _b.call(_a, "read", id, "general");
|
|
3924
|
-
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, gridColClassName: (
|
|
3950
|
+
}, linkType: props.linkType, custom: props.custom, newTabUrl: "".concat(props.localURLEndpoint, "?data="), addNewTabUrl: "&type=read&collection=".concat(props.collectionId, "&view=general"), handleUpdatePageIndex: handlePagination, gridColClassName: (_7 = props.bareSettings) === null || _7 === void 0 ? void 0 : _7.bareListGridColClassName, className: "mt-5", hidePagination: (_8 = props.organise) === null || _8 === void 0 ? void 0 : _8.hidePagination })));
|
|
3925
3951
|
}
|
|
3926
3952
|
else if (selectedTabData.viewType === "calendar") {
|
|
3927
3953
|
var calendarSettings_1 = selectedTab === null || selectedTab === void 0 ? void 0 : selectedTab.calendarSettings;
|
|
@@ -4015,7 +4041,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
4015
4041
|
}
|
|
4016
4042
|
return eventAvailabilities;
|
|
4017
4043
|
};
|
|
4018
|
-
return (react_1.default.createElement("div", { className: "mt-4" }, tableLoading ? (react_1.default.createElement(loading_1.Loading, null)) : (react_1.default.createElement(calendar_1.Calendar, { currentDate: calendarTabMonth, calendarView: (
|
|
4044
|
+
return (react_1.default.createElement("div", { className: "mt-4" }, tableLoading ? (react_1.default.createElement(loading_1.Loading, null)) : (react_1.default.createElement(calendar_1.Calendar, { currentDate: calendarTabMonth, calendarView: (_9 = calendarSettings_1 === null || calendarSettings_1 === void 0 ? void 0 : calendarSettings_1.defaultView) !== null && _9 !== void 0 ? _9 : calendarView, handleMonthChange: function (date) {
|
|
4019
4045
|
var startOfMonth = (0, moment_1.default)(calendarTabMonth).startOf("month");
|
|
4020
4046
|
var endOfMonth = (0, moment_1.default)(calendarTabMonth).endOf("month");
|
|
4021
4047
|
if (!(0, moment_1.default)(date).isBetween(startOfMonth, endOfMonth)) {
|
|
@@ -4031,7 +4057,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
4031
4057
|
else if (selectedTabData.viewType === "feeds") {
|
|
4032
4058
|
var contentList_1 = [];
|
|
4033
4059
|
var feedsSettings_1 = selectedTabData.feedsSettings;
|
|
4034
|
-
var customFeedsData = (
|
|
4060
|
+
var customFeedsData = (_10 = feedsSettings_1 === null || feedsSettings_1 === void 0 ? void 0 : feedsSettings_1.customFeedsData) === null || _10 === void 0 ? void 0 : _10.call(feedsSettings_1, tableData, spaceTableData);
|
|
4035
4061
|
if (customFeedsData && customFeedsData.length > 0) {
|
|
4036
4062
|
customFeedsData.map(function (eachData) {
|
|
4037
4063
|
var _a, _b, _c, _d;
|
|
@@ -4072,9 +4098,9 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
4072
4098
|
});
|
|
4073
4099
|
}
|
|
4074
4100
|
return (react_1.default.createElement("div", { className: "mt-4" }, tableLoading ? (react_1.default.createElement(loading_1.Loading, null)) : (react_1.default.createElement("div", { className: "p-4 bg-white rounded-lg" },
|
|
4075
|
-
react_1.default.createElement(feeds_1.Feeds, { bold: true, content: contentList_1, darkMode: (
|
|
4101
|
+
react_1.default.createElement(feeds_1.Feeds, { bold: true, content: contentList_1, darkMode: (_11 = props.organise) === null || _11 === void 0 ? void 0 : _11.darkMode }),
|
|
4076
4102
|
react_1.default.createElement("div", { className: "my-10" }),
|
|
4077
|
-
contentList_1.length > 0 && !((
|
|
4103
|
+
contentList_1.length > 0 && !((_12 = props.organise) === null || _12 === void 0 ? void 0 : _12.hidePagination) && (react_1.default.createElement(pagination_1.Pagination, { data: tableData, size: size, limit: limit, cursor: cursor, pageIndex: pageIndex, paginationType: isFirebase ? "cursor" : "page", handleUpdatePageIndex: handlePagination, darkMode: (_13 = props.organise) === null || _13 === void 0 ? void 0 : _13.darkMode }))))));
|
|
4078
4104
|
}
|
|
4079
4105
|
else if (selectedTabData.viewType === "map") {
|
|
4080
4106
|
var mapSettings_1 = selectedTabData.mapSettings;
|
|
@@ -4173,7 +4199,7 @@ exports.DataTemplate = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
4173
4199
|
}
|
|
4174
4200
|
else if (selectedTabData.viewType === "kanban") {
|
|
4175
4201
|
var kanbanSettings = selectedTab === null || selectedTab === void 0 ? void 0 : selectedTab.kanbanSettings;
|
|
4176
|
-
var kanbanTitle_2 = (
|
|
4202
|
+
var kanbanTitle_2 = (_14 = kanbanSettings === null || kanbanSettings === void 0 ? void 0 : kanbanSettings.title) !== null && _14 !== void 0 ? _14 : "";
|
|
4177
4203
|
var nullColumn_1 = false;
|
|
4178
4204
|
var groupBy_1 = [];
|
|
4179
4205
|
var groupLabel_1 = [];
|