@icos-desktop/react-components 2.0.39 → 2.0.40

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.
@@ -779,6 +779,10 @@ interface SenseFullTableProps {
779
779
  * 地理层级路径节点id,实体记录所属地理层级路径只要包含此值即返回,`leftRegionId`无值时有效
780
780
  */
781
781
  pathRegionId?: string;
782
+ /**
783
+ * 实体记录表格默认分页条数
784
+ */
785
+ sensePageSize?: number;
782
786
  /**
783
787
  * 扩展筛选字段
784
788
  * @param filterConfig
@@ -1050,6 +1054,10 @@ interface SenseTableProps extends TableProps {
1050
1054
  * 获取写权限数据
1051
1055
  */
1052
1056
  writeAuth?: boolean;
1057
+ /**
1058
+ * 表格默认分页条数,默认 1000
1059
+ */
1060
+ pageSize?: number;
1053
1061
  /**
1054
1062
  * 单击实体
1055
1063
  * @param record
@@ -4777,7 +4777,7 @@ var Modal = function (props) {
4777
4777
  };
4778
4778
 
4779
4779
  // 分页
4780
- var PAGINATION$2 = {
4780
+ var PAGINATION$1 = {
4781
4781
  current: 1,
4782
4782
  total: 0,
4783
4783
  pageSize: 50,
@@ -4810,7 +4810,7 @@ var TargetModal = function (props) {
4810
4810
  var bookGroupId = props.bookGroupId, viewCode = props.viewCode, open = props.open, onCancel = props.onCancel, onOk = props.onOk;
4811
4811
  var message = App.useApp().message;
4812
4812
  // 分页
4813
- var _a = useState(__assign({}, PAGINATION$2)), pagination = _a[0], setPagination = _a[1];
4813
+ var _a = useState(__assign({}, PAGINATION$1)), pagination = _a[0], setPagination = _a[1];
4814
4814
  // 搜索关键词
4815
4815
  var _b = useState(''), keywordValue = _b[0], setKeywordValue = _b[1];
4816
4816
  var _c = useState(''), keyword = _c[0], setKeyword = _c[1];
@@ -4824,7 +4824,7 @@ var TargetModal = function (props) {
4824
4824
  if (!open) return [3 /*break*/, 2];
4825
4825
  return [4 /*yield*/, getTargetGroupBook({
4826
4826
  page: pagination.current || 1,
4827
- pageSize: pagination.pageSize || PAGINATION$2.pageSize,
4827
+ pageSize: pagination.pageSize || PAGINATION$1.pageSize,
4828
4828
  templateId: bookGroupId,
4829
4829
  viewCode: viewCode,
4830
4830
  bookName: keyword,
@@ -4832,7 +4832,7 @@ var TargetModal = function (props) {
4832
4832
  case 1:
4833
4833
  res_1 = _a.sent();
4834
4834
  if (res_1) {
4835
- setPagination(__assign(__assign({}, pagination), { total: res_1.total ? (res_1.total > 10000 ? 10000 : res_1.total) : 0, current: res_1.pageNum || 1, pageSize: res_1.pageSize || pagination.pageSize || PAGINATION$2.pageSize, showTotal: function () { return showTotal$2(res_1.total); } }));
4835
+ setPagination(__assign(__assign({}, pagination), { total: res_1.total ? (res_1.total > 10000 ? 10000 : res_1.total) : 0, current: res_1.pageNum || 1, pageSize: res_1.pageSize || pagination.pageSize || PAGINATION$1.pageSize, showTotal: function () { return showTotal$2(res_1.total); } }));
4836
4836
  return [2 /*return*/, res_1 === null || res_1 === void 0 ? void 0 : res_1.list];
4837
4837
  }
4838
4838
  setPagination(__assign(__assign({}, pagination), { total: 0 }));
@@ -4870,7 +4870,7 @@ var TargetModal = function (props) {
4870
4870
  setKeywordValue('');
4871
4871
  setKeyword('');
4872
4872
  setSelected(null);
4873
- setPagination(__assign({}, PAGINATION$2));
4873
+ setPagination(__assign({}, PAGINATION$1));
4874
4874
  }
4875
4875
  }, [open]);
4876
4876
  return (React__default.createElement(Modal, { title: "\u9009\u62E9\u76EE\u6807\u53F0\u8D26", open: open, width: 800, onCancel: onCancel, onOk: handleOk, destroyOnClose: true },
@@ -5954,7 +5954,7 @@ var BookTable = forwardRef(function (props, ref) {
5954
5954
  var showContextMenu = useContextMenu({ id: ContextMenu$4.id }).show;
5955
5955
  var _c = useExportModal$2(), onExport = _c.onExport, ExportModal = _c.ExportModal;
5956
5956
  // 分页
5957
- var _d = useState(__assign({}, PAGINATION$2)), pagination = _d[0], setPagination = _d[1];
5957
+ var _d = useState(__assign({}, PAGINATION$1)), pagination = _d[0], setPagination = _d[1];
5958
5958
  // 排序
5959
5959
  var _e = useState(null), sorter = _e[0], setSorter = _e[1];
5960
5960
  // 当前高亮的行
@@ -5983,7 +5983,7 @@ var BookTable = forwardRef(function (props, ref) {
5983
5983
  return [4 /*yield*/, getBookList$1(__assign(__assign(__assign({ viewCodes: viewCodes, displayWay: displayWay, templateId: templateId, nodeCode: nodeCode, keyword: keyword }, filterParams), sortParams), { page: pagination.current, pageSize: pagination.pageSize }))];
5984
5984
  case 1:
5985
5985
  res = _b.sent();
5986
- setPagination(__assign(__assign({}, pagination), { total: (res === null || res === void 0 ? void 0 : res.total) ? (res.total > 10000 ? 10000 : res.total) : 0, current: (res === null || res === void 0 ? void 0 : res.pageNum) || 1, pageSize: (res === null || res === void 0 ? void 0 : res.pageSize) || PAGINATION$2.pageSize, showTotal: function () { return showTotal$1(res === null || res === void 0 ? void 0 : res.total); } }));
5986
+ setPagination(__assign(__assign({}, pagination), { total: (res === null || res === void 0 ? void 0 : res.total) ? (res.total > 10000 ? 10000 : res.total) : 0, current: (res === null || res === void 0 ? void 0 : res.pageNum) || 1, pageSize: (res === null || res === void 0 ? void 0 : res.pageSize) || PAGINATION$1.pageSize, showTotal: function () { return showTotal$1(res === null || res === void 0 ? void 0 : res.total); } }));
5987
5987
  return [2 /*return*/, res === null || res === void 0 ? void 0 : res.list];
5988
5988
  }
5989
5989
  });
@@ -6829,16 +6829,6 @@ var css_248z$T = ".SenseTable-module_container__lRFoG {\n display: flex;\n fle
6829
6829
  var styles$T = {"container":"SenseTable-module_container__lRFoG","table":"SenseTable-module_table__eaYbL","sense-title":"SenseTable-module_sense-title__Ie03d","sense-title-label":"SenseTable-module_sense-title-label__sytbJ","hidden-row-selected-num":"SenseTable-module_hidden-row-selected-num__YujuX","tag-values":"SenseTable-module_tag-values__yPnOe","tag-value":"SenseTable-module_tag-value__Wl1T9","tag-delete":"SenseTable-module_tag-delete__o0rmm","tag-more":"SenseTable-module_tag-more__se-HA","row-highlight":"SenseTable-module_row-highlight__s0Lck","highlight":"SenseTable-module_highlight__TwSNe"};
6830
6830
  styleInject(css_248z$T);
6831
6831
 
6832
- var PAGINATION$1 = {
6833
- current: 1,
6834
- total: 0,
6835
- pageSize: 1000,
6836
- pageSizeOptions: [10, 20, 50, 100, 500, 1000],
6837
- showSizeChanger: true,
6838
- showQuickJumper: true,
6839
- hideOnSinglePage: false,
6840
- showTotal: function (total) { return "\u5171 ".concat(total, " \u6761"); },
6841
- };
6842
6832
  // 显示总数 最大展示10000条
6843
6833
  var showTotal = function (total) {
6844
6834
  if (total === void 0) { total = 0; }
@@ -6852,28 +6842,38 @@ var showTotal = function (total) {
6852
6842
  };
6853
6843
  var SenseTable = forwardRef(function (props, ref) {
6854
6844
  var _a;
6855
- var bookId = props.bookId, bookIds = props.bookIds, templateId = props.templateId, leafRegionId = props.leafRegionId, pathRegionId = props.pathRegionId, viewCodes = props.viewCodes, keyword = props.keyword, filter = props.filter, filterConfig = props.filterConfig, extendColumnParams = props.extendColumnParams, _b = props.hideColumns, hideColumns = _b === void 0 ? [] : _b, customColumns = props.customColumns, contextMenuConfig = props.contextMenuConfig, enableTag = props.enableTag, writeAuth = props.writeAuth, onClick = props.onClick, onDoubleClick = props.onDoubleClick, onShowSense = props.onShowSense, onEditSense = props.onEditSense, onRefresh = props.onRefresh, proTableContainerHeight = props.proTableContainerHeight, tableProps = __rest(props, ["bookId", "bookIds", "templateId", "leafRegionId", "pathRegionId", "viewCodes", "keyword", "filter", "filterConfig", "extendColumnParams", "hideColumns", "customColumns", "contextMenuConfig", "enableTag", "writeAuth", "onClick", "onDoubleClick", "onShowSense", "onEditSense", "onRefresh", "proTableContainerHeight"]);
6856
- var _c = App.useApp(), message = _c.message, modal = _c.modal;
6845
+ var bookId = props.bookId, bookIds = props.bookIds, templateId = props.templateId, leafRegionId = props.leafRegionId, pathRegionId = props.pathRegionId, viewCodes = props.viewCodes, keyword = props.keyword, filter = props.filter, filterConfig = props.filterConfig, extendColumnParams = props.extendColumnParams, _b = props.hideColumns, hideColumns = _b === void 0 ? [] : _b, customColumns = props.customColumns, contextMenuConfig = props.contextMenuConfig, enableTag = props.enableTag, writeAuth = props.writeAuth, _c = props.pageSize, pageSize = _c === void 0 ? 1000 : _c, onClick = props.onClick, onDoubleClick = props.onDoubleClick, onShowSense = props.onShowSense, onEditSense = props.onEditSense, onRefresh = props.onRefresh, proTableContainerHeight = props.proTableContainerHeight, tableProps = __rest(props, ["bookId", "bookIds", "templateId", "leafRegionId", "pathRegionId", "viewCodes", "keyword", "filter", "filterConfig", "extendColumnParams", "hideColumns", "customColumns", "contextMenuConfig", "enableTag", "writeAuth", "pageSize", "onClick", "onDoubleClick", "onShowSense", "onEditSense", "onRefresh", "proTableContainerHeight"]);
6846
+ var PAGINATION = {
6847
+ current: 1,
6848
+ total: 0,
6849
+ pageSize: pageSize || 1000,
6850
+ pageSizeOptions: [10, 20, 50, 100, 500, 1000],
6851
+ showSizeChanger: true,
6852
+ showQuickJumper: true,
6853
+ hideOnSinglePage: false,
6854
+ showTotal: function (total) { return "\u5171 ".concat(total, " \u6761"); },
6855
+ };
6856
+ var _d = App.useApp(), message = _d.message, modal = _d.modal;
6857
6857
  var showContextMenu = useContextMenu({ id: ContextMenu$3.id }).show;
6858
- var _d = useKsCode(), ksCodeLoaded = _d.loaded;
6859
- var _e = useEntityClass(), entityClassLoaded = _e.loaded;
6858
+ var _e = useKsCode(), ksCodeLoaded = _e.loaded;
6859
+ var _f = useEntityClass(), entityClassLoaded = _f.loaded;
6860
6860
  // 分页
6861
- var _f = useState(__assign({}, PAGINATION$1)), pagination = _f[0], setPagination = _f[1];
6861
+ var _g = useState(__assign({}, PAGINATION)), pagination = _g[0], setPagination = _g[1];
6862
6862
  // 排序
6863
- var _g = useState(null), sorter = _g[0], setSorter = _g[1];
6863
+ var _h = useState(null), sorter = _h[0], setSorter = _h[1];
6864
6864
  // 当前高亮的行
6865
- var _h = useState(null), highlightId = _h[0], setHighlightId = _h[1];
6865
+ var _j = useState(null), highlightId = _j[0], setHighlightId = _j[1];
6866
6866
  // 表格选中
6867
- var _j = useState([]), selectedRowKeys = _j[0]; _j[1];
6867
+ var _k = useState([]), selectedRowKeys = _k[0]; _k[1];
6868
6868
  // 当前操作行
6869
- var _k = useState(null), curRecord = _k[0], setCurRecord = _k[1];
6869
+ var _l = useState(null), curRecord = _l[0], setCurRecord = _l[1];
6870
6870
  // 显示全部标签弹窗
6871
- var _l = useState(false), showTagsModal = _l[0], setShowTagsModal = _l[1];
6871
+ var _m = useState(false), showTagsModal = _m[0], setShowTagsModal = _m[1];
6872
6872
  // 当前右键的所属台账id
6873
- var _m = useState(null), curBookId = _m[0], setCurBookId = _m[1];
6873
+ var _o = useState(null), curBookId = _o[0], setCurBookId = _o[1];
6874
6874
  // 搜索参数
6875
- var _o = useState(), searchParams = _o[0], setSearchParams = _o[1];
6876
- var _p = useExportModal$1(), onExport = _p.onExport, ExportModal = _p.ExportModal;
6875
+ var _p = useState(), searchParams = _p[0], setSearchParams = _p[1];
6876
+ var _q = useExportModal$1(), onExport = _q.onExport, ExportModal = _q.ExportModal;
6877
6877
  // 资源权限
6878
6878
  var authTypes = useRequest(function () { return __awaiter(void 0, void 0, void 0, function () {
6879
6879
  var res;
@@ -7045,7 +7045,7 @@ var SenseTable = forwardRef(function (props, ref) {
7045
7045
  return columns;
7046
7046
  };
7047
7047
  // 表格数据
7048
- var _q = useRequest(function () { return __awaiter(void 0, void 0, void 0, function () {
7048
+ var _r = useRequest(function () { return __awaiter(void 0, void 0, void 0, function () {
7049
7049
  var filterParams, sortParams, res, header;
7050
7050
  var _a, _b, _c, _d, _e;
7051
7051
  return __generator(this, function (_f) {
@@ -7062,7 +7062,7 @@ var SenseTable = forwardRef(function (props, ref) {
7062
7062
  return [4 /*yield*/, getSenseList(__assign(__assign(__assign({ bookId: bookId, bookIds: bookIds, templateId: templateId, leafRegionId: leafRegionId, pathRegionId: pathRegionId, viewCodes: viewCodes, keyword: keyword }, filterParams), sortParams), { extendColumnParams: extendColumnParams, page: pagination.current, pageSize: pagination.pageSize, writeAuth: writeAuth }))];
7063
7063
  case 1:
7064
7064
  res = _f.sent();
7065
- setPagination(__assign(__assign({}, pagination), { total: ((_a = res === null || res === void 0 ? void 0 : res.body) === null || _a === void 0 ? void 0 : _a.total) ? (res.body.total > 10000 ? 10000 : res.body.total) : 0, current: ((_b = res === null || res === void 0 ? void 0 : res.body) === null || _b === void 0 ? void 0 : _b.pageNum) || 1, pageSize: ((_c = res === null || res === void 0 ? void 0 : res.body) === null || _c === void 0 ? void 0 : _c.pageSize) || PAGINATION$1.pageSize, showTotal: function () { var _a; return showTotal((_a = res === null || res === void 0 ? void 0 : res.body) === null || _a === void 0 ? void 0 : _a.total); } }));
7065
+ setPagination(__assign(__assign({}, pagination), { total: ((_a = res === null || res === void 0 ? void 0 : res.body) === null || _a === void 0 ? void 0 : _a.total) ? (res.body.total > 10000 ? 10000 : res.body.total) : 0, current: ((_b = res === null || res === void 0 ? void 0 : res.body) === null || _b === void 0 ? void 0 : _b.pageNum) || 1, pageSize: ((_c = res === null || res === void 0 ? void 0 : res.body) === null || _c === void 0 ? void 0 : _c.pageSize) || PAGINATION.pageSize, showTotal: function () { var _a; return showTotal((_a = res === null || res === void 0 ? void 0 : res.body) === null || _a === void 0 ? void 0 : _a.total); } }));
7066
7066
  header = (_d = res === null || res === void 0 ? void 0 : res.header) === null || _d === void 0 ? void 0 : _d.filter(function (item) { return !(hideColumns === null || hideColumns === void 0 ? void 0 : hideColumns.includes(item.code)); });
7067
7067
  return [2 /*return*/, {
7068
7068
  header: __spreadArray(__spreadArray([], header, true), [
@@ -7094,7 +7094,7 @@ var SenseTable = forwardRef(function (props, ref) {
7094
7094
  JSON.stringify(filter),
7095
7095
  sorter,
7096
7096
  ],
7097
- }), loading = _q.loading, _r = _q.data, _s = _r === void 0 ? {} : _r, header = _s.header, columns = _s.columns, dataSource = _s.dataSource, refresh = _q.refresh;
7097
+ }), loading = _r.loading, _s = _r.data, _t = _s === void 0 ? {} : _s, header = _t.header, columns = _t.columns, dataSource = _t.dataSource, refresh = _r.refresh;
7098
7098
  // 触发刷新
7099
7099
  var handleRefresh = function () {
7100
7100
  refresh();
@@ -8932,7 +8932,7 @@ var ErrorMsgModal = function (_a) {
8932
8932
  var _b = useState([]), header = _b[0], setHeader = _b[1];
8933
8933
  var _c = useState(''), operateMsg = _c[0], setOperateMsg = _c[1];
8934
8934
  var _d = useState([]), dataSource = _d[0], setDataSource = _d[1];
8935
- var _e = useState(__assign({}, PAGINATION$2)), pagination = _e[0], setPagination = _e[1];
8935
+ var _e = useState(__assign({}, PAGINATION$1)), pagination = _e[0], setPagination = _e[1];
8936
8936
  var _f = useState(false), loading = _f[0], setLoading = _f[1];
8937
8937
  var columns = header.map(function (item) { return ({
8938
8938
  dataIndex: item.code,
@@ -9012,7 +9012,7 @@ var ImportTable = function () {
9012
9012
  });
9013
9013
  }); }, {
9014
9014
  refreshDeps: [params],
9015
- defaultParams: [PAGINATION$2],
9015
+ defaultParams: [PAGINATION$1],
9016
9016
  }).tableProps;
9017
9017
  var columns = [
9018
9018
  {
@@ -12092,7 +12092,7 @@ styleInject(css_248z$c);
12092
12092
 
12093
12093
  var SenseFullTable = forwardRef(function (props, ref) {
12094
12094
  var _a;
12095
- var _b = props.viewType, viewType = _b === void 0 ? 'system' : _b, _c = props.views, views = _c === void 0 ? [] : _c, showView = props.showView, showCatalog = props.showCatalog, showBreadcrumb = props.showBreadcrumb, showBookGroupTable = props.showBookGroupTable, showBookTable = props.showBookTable, showSenseTable = props.showSenseTable, customButtons = props.customButtons, showExportButton = props.showExportButton, showImportButton = props.showImportButton, importHiddenGeolevel = props.importHiddenGeolevel, bookContextMenuConfig = props.bookContextMenuConfig, senseContextMenuConfig = props.senseContextMenuConfig, extendColumnParams = props.extendColumnParams, hideColumns = props.hideColumns, customColumns = props.customColumns, enableTag = props.enableTag, leafRegionId = props.leafRegionId, pathRegionId = props.pathRegionId, extendFilter = props.extendFilter, onCreateSense = props.onCreateSense, onShowSense = props.onShowSense, onEditSense = props.onEditSense, onClickSense = props.onClickSense, onDoubleClickSense = props.onDoubleClickSense, proTableContainerHeight = props.proTableContainerHeight;
12095
+ var _b = props.viewType, viewType = _b === void 0 ? 'system' : _b, _c = props.views, views = _c === void 0 ? [] : _c, showView = props.showView, showCatalog = props.showCatalog, showBreadcrumb = props.showBreadcrumb, showBookGroupTable = props.showBookGroupTable, showBookTable = props.showBookTable, showSenseTable = props.showSenseTable, customButtons = props.customButtons, showExportButton = props.showExportButton, showImportButton = props.showImportButton, importHiddenGeolevel = props.importHiddenGeolevel, bookContextMenuConfig = props.bookContextMenuConfig, senseContextMenuConfig = props.senseContextMenuConfig, extendColumnParams = props.extendColumnParams, hideColumns = props.hideColumns, customColumns = props.customColumns, enableTag = props.enableTag, leafRegionId = props.leafRegionId, pathRegionId = props.pathRegionId, sensePageSize = props.sensePageSize, extendFilter = props.extendFilter, onCreateSense = props.onCreateSense, onShowSense = props.onShowSense, onEditSense = props.onEditSense, onClickSense = props.onClickSense, onDoubleClickSense = props.onDoubleClickSense, proTableContainerHeight = props.proTableContainerHeight;
12096
12096
  // 台账表格 ref
12097
12097
  var bookTableRef = useRef();
12098
12098
  // 实体记录表格 ref
@@ -12236,7 +12236,7 @@ var SenseFullTable = forwardRef(function (props, ref) {
12236
12236
  };
12237
12237
  // 实体记录
12238
12238
  var renderSense = function (templateId, bookId) {
12239
- return (React__default.createElement(SenseTable, { ref: senseTableRef, viewCodes: [activeViewCode], bookId: bookId, templateId: templateId, leafRegionId: leafRegionId, pathRegionId: pathRegionId, keyword: keyword, filter: filter, filterConfig: filterConfig, extendColumnParams: extendColumnParams, hideColumns: hideColumns, customColumns: customColumns, contextMenuConfig: senseContextMenuConfig, enableTag: enableTag, onShowSense: onShowSense, onEditSense: onEditSense, onClick: onClickSense, onDoubleClick: onDoubleClickSense, onRefresh: refreshTabItems }));
12239
+ return (React__default.createElement(SenseTable, { ref: senseTableRef, viewCodes: [activeViewCode], bookId: bookId, templateId: templateId, leafRegionId: leafRegionId, pathRegionId: pathRegionId, keyword: keyword, filter: filter, filterConfig: filterConfig, extendColumnParams: extendColumnParams, hideColumns: hideColumns, customColumns: customColumns, contextMenuConfig: senseContextMenuConfig, enableTag: enableTag, pageSize: sensePageSize, onShowSense: onShowSense, onEditSense: onEditSense, onClick: onClickSense, onDoubleClick: onDoubleClickSense, onRefresh: refreshTabItems }));
12240
12240
  };
12241
12241
  // 渲染内容
12242
12242
  var renderMain = function () {
@@ -16274,11 +16274,11 @@ var CcosVideoPlayer = function (props) {
16274
16274
  CcosVideoPlayer.settings = settings$1;
16275
16275
 
16276
16276
  try {
16277
- window._ICOS_DESKTOP_VERSION_ = JSON.parse('{"version":"2.0.39","branch":"remotes/origin/release_v2.0.0","buildDate":"2025-04-25 15:34:53"}');
16277
+ window._ICOS_DESKTOP_VERSION_ = JSON.parse('{"version":"2.0.40","branch":"remotes/origin/release_v2.0.0","buildDate":"2025-04-25 21:09:45"}');
16278
16278
  }
16279
16279
  catch (err) {
16280
16280
  console.warn(err);
16281
- window._ICOS_DESKTOP_VERSION_ = '{"version":"2.0.39","branch":"remotes/origin/release_v2.0.0","buildDate":"2025-04-25 15:34:53"}';
16281
+ window._ICOS_DESKTOP_VERSION_ = '{"version":"2.0.40","branch":"remotes/origin/release_v2.0.0","buildDate":"2025-04-25 21:09:45"}';
16282
16282
  }
16283
16283
 
16284
16284
  export { BookDetail, BookGroupImport, BookGroupTable, BookImport, BookInfo, BookSelect, BookTable, CcosBookDetail, CcosImportTable, CcosSenseCreate, CcosSenseDetail, CcosSenseEdit, CcosSenseFullTable, CcosSenseManager, CcosSenseSearch, CcosSenseTree, CcosSenseView, CcosTagConfig, CcosVideoPlayer, EntityClassFilter, EntityClassTreeSelect, ImportTable, Modal, OrgTreeSelect, PersonSelector, ProSearch, ProTable$1 as ProTable, RegionCascader, RegionTreeSelect, RelationGraph, SenseContentTable, SenseCreate, SenseDetail, SenseEdit, SenseForm, SenseFullTable, SenseInfo, SenseManager, SenseSearch, SenseTable, SenseTree, SenseView, TagConfig, TagTreeSelect, VideoControl, VideoPlayer, setCconfig as config };