ods-component-lib 1.18.45 → 1.18.47
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/devextreme/OdsRemoteDataGrid.d.ts +1 -0
- package/dist/components/devextreme/richTextEditor/OdsRichTextEditor.d.ts +22 -0
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +13 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsDateRangePicker/OdsDateRangePicker.stories.d.ts +4 -11
- package/dist/stories/OdsDatepicker/OdsDatepicker.stories.d.ts +4 -3
- package/dist/stories/OdsDivider/OdsDivider.stories.d.ts +10 -0
- package/dist/stories/OdsDivider/Samples/Text.Sample.d.ts +1 -0
- package/dist/stories/OdsRichTextEditor/OdsRichTextEditor.stories.d.ts +42 -0
- package/dist/stories/OdsRichTextEditor/Samples/DefaultTextRichTextEditor.Sample.d.ts +1 -0
- package/package.json +1 -1
- package/dist/components/antd/form/OdsBasicForm.d.ts +0 -18
- package/dist/components/antd/icon/OdsIcon.d.ts +0 -10
- package/dist/components/antd/message/OdsMessage.d.ts +0 -3
- package/dist/components/antd/select/OdsCustomMultiSelect.d.ts +0 -7
- package/dist/components/antd/select/OdsMultiSelect.d.ts +0 -9
- package/dist/components/custom/OdsLogin.d.ts +0 -8
- package/dist/components/devextreme/DxDataPopupForm.d.ts +0 -3
- package/dist/components/devextreme/DynamicIcon.d.ts +0 -5
- package/dist/components/devextreme/OdsDataGridNew.d.ts +0 -56
- package/dist/components/devextreme/OdsDatagridProps.d.ts +0 -2
- package/dist/components/devextreme/OdsProfDataGrid.d.ts +0 -3
- package/dist/components/devextreme/treeview/DxTreeView.d.ts +0 -3
- package/dist/stories/OdsCustomMultiSelect/OdsCustomMultiSelect.stories.d.ts +0 -9
- package/dist/stories/OdsCustomMultiSelect/Samples/ModeMultiple.Sample.d.ts +0 -1
- package/dist/utils/DynamicIcon.d.ts +0 -5
- /package/dist/components/antd/datepicker/{OdsDateRangePicker.d.ts → OdsDateRangepicker.d.ts} +0 -0
- /package/dist/stories/{OdsCustomMultiSelect → OdsDivider}/Samples/Basic.Sample.d.ts +0 -0
package/dist/index.modern.js
CHANGED
|
@@ -16713,6 +16713,13 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16713
16713
|
}
|
|
16714
16714
|
}
|
|
16715
16715
|
}, []);
|
|
16716
|
+
var renderTotalPaging = useCallback(function () {
|
|
16717
|
+
var result = "";
|
|
16718
|
+
if (totalPageCount > 1) {
|
|
16719
|
+
result = props.customSummary.summaryTotalPageCountLabel + (":" + loadedPageCount + " / " + totalPageCount);
|
|
16720
|
+
}
|
|
16721
|
+
return result;
|
|
16722
|
+
}, [loadedPageCount, totalPageCount]);
|
|
16716
16723
|
var renderTotal = useCallback(function () {
|
|
16717
16724
|
var result = "";
|
|
16718
16725
|
var totalloaded = 0;
|
|
@@ -16827,7 +16834,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16827
16834
|
return React.createElement(Column, Object.assign({
|
|
16828
16835
|
key: col.dataField
|
|
16829
16836
|
}, col, {
|
|
16830
|
-
minWidth:
|
|
16837
|
+
minWidth: 50
|
|
16831
16838
|
}), col.lookUp && React.createElement(Lookup, Object.assign({}, col.lookUp)), col.dataField === 'IsActive' && React.createElement(HeaderFilter, {
|
|
16832
16839
|
dataSource: [{
|
|
16833
16840
|
text: 'Active',
|
|
@@ -16977,6 +16984,11 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16977
16984
|
summaryType: "custom",
|
|
16978
16985
|
displayFormat: "customizeText",
|
|
16979
16986
|
customizeText: renderTotal
|
|
16987
|
+
}), React.createElement(TotalItem, {
|
|
16988
|
+
column: columns[columns.length - 1].dataField,
|
|
16989
|
+
summaryType: "custom",
|
|
16990
|
+
displayFormat: "customizeText",
|
|
16991
|
+
customizeText: renderTotalPaging
|
|
16980
16992
|
})), React.createElement(StateStoring, {
|
|
16981
16993
|
enabled: true,
|
|
16982
16994
|
type: "custom",
|