synos-helena 23.0.0 → 23.0.1-4.beta.0
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/helena.css.map +1 -1
- package/lib/helena.css.map.gz +0 -0
- package/lib/index.css.map +1 -1
- package/lib/index.css.map.gz +0 -0
- package/lib/index.js +1 -1
- package/lib/index.js.gz +0 -0
- package/lib/index.js.map +1 -1
- package/lib/index.js.map.gz +0 -0
- package/lib/src/HLContext/HLContext.d.ts +1 -0
- package/lib/src/HLException/HLException.d.ts +1 -1
- package/lib/src/HLException/PageError/PageError.d.ts +4 -0
- package/lib/src/HLFromToEdit/HLFromToEdit.d.ts +7 -0
- package/lib/src/HLInputMonetaryFormatOnBlur/HLInputMonetaryFormatOnBlur.d.ts +5 -0
- package/lib/src/HLTable/HLTable.d.ts +11 -1
- package/lib/src/index.d.ts +2 -1
- package/package.json +1 -1
package/lib/index.js.map.gz
CHANGED
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const HLException: {
|
|
2
2
|
Page500: import("react").FC<import("./Page500").Page500PropTypes>;
|
|
3
|
-
|
|
3
|
+
PageError: import("react").FC<import("./PageError").PageErrorPropTypes>;
|
|
4
4
|
};
|
|
5
5
|
export default HLException;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { ReactElement } from 'react';
|
|
2
|
-
import { Input } from 'antd';
|
|
2
|
+
import { Table, Input } from 'antd';
|
|
3
3
|
import { IColumnsType, IProps, IState, PaginationProps } from './index';
|
|
4
4
|
import { FilterValue, SorterResult, TableCurrentDataSource } from 'antd/lib/table/interface';
|
|
5
5
|
import { CheckboxChangeEvent } from 'antd/lib/checkbox';
|
|
@@ -18,9 +18,11 @@ declare class HLTable extends React.Component<IProps, IState> {
|
|
|
18
18
|
title: undefined;
|
|
19
19
|
text: undefined;
|
|
20
20
|
};
|
|
21
|
+
renderWithEllipsisAndWhiteSpace: boolean;
|
|
21
22
|
};
|
|
22
23
|
searchText: Record<string, string>;
|
|
23
24
|
searchInput?: Input | null;
|
|
25
|
+
static Summary: typeof Table.Summary;
|
|
24
26
|
constructor(props: IProps);
|
|
25
27
|
UNSAFE_componentWillReceiveProps(nextProps: IProps): void;
|
|
26
28
|
componentDidMount(): void;
|
|
@@ -51,6 +53,14 @@ declare class HLTable extends React.Component<IProps, IState> {
|
|
|
51
53
|
* @returns return caso seja uma coluna fixed
|
|
52
54
|
*/
|
|
53
55
|
moveColunaIndexAnterior: (column: any) => void;
|
|
56
|
+
/**
|
|
57
|
+
* Filtra os novos valores de coluna baseadas nas colunas visíveis, definidas pela funcionalidade de
|
|
58
|
+
* visualização de colunas, onde é possível editar as colunas a serem visualizadas na tabela.
|
|
59
|
+
*
|
|
60
|
+
* @param {IColumnsType[]} colunas a serem filtradas.
|
|
61
|
+
* @returns {IColumnsType[]} as colunas filtradas, baseada nas colunas visíveis.
|
|
62
|
+
*/
|
|
63
|
+
_getNewVisibleColumns(columns: IColumnsType[]): IColumnsType[];
|
|
54
64
|
/**
|
|
55
65
|
* Retorna as colunas associadas à tabela formatadas, caso necessário, com valores default.
|
|
56
66
|
*
|
package/lib/src/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import HLHeader from './HLHeader/HLHeader';
|
|
|
33
33
|
import HLIcon from './HLIcon/HLIcon';
|
|
34
34
|
import HLInput from './HLInput/HLInput';
|
|
35
35
|
import HLInputMonetary from './HLInputMonetary/HLInputMonetary';
|
|
36
|
+
import HLInputMonetaryFormatOnBlur from './HLInputMonetaryFormatOnBlur/HLInputMonetaryFormatOnBlur';
|
|
36
37
|
import HLInputNumber from './HLInputNumber/HLInputNumber';
|
|
37
38
|
import HLLayout from './HLLayout/HLLayout';
|
|
38
39
|
import HLMain from './HLMain/HLMain';
|
|
@@ -69,4 +70,4 @@ import SearchObject from './HLPowerSearch/lib/SearchObject';
|
|
|
69
70
|
import SearchType from './HLPowerSearch/lib/SearchType';
|
|
70
71
|
import SelectStoreInterface from './HLPowerSearch/lib/SelectStoreInterface';
|
|
71
72
|
import HLBadge from './HLBadge/HLBadge';
|
|
72
|
-
export { AdvancedPowerSelectStoreInterface, HLAdvancedPowerSelect, HLAlert, HLArticle, HLAssociateDisassociate, HLAssociationManager, HLBigDecimalInputNumber, HLBreadcrumb, HLButton, HLCard, HLCheckbox, HLBadge, HLCode, HLCollapse, HLCollapseInfoPanel, HLContext, HLCpfCnpj, HLDatePicker, HLDeferredRender, HLDescriptions, HLDiffViewer, HLDivider, HLDrawer, HLDropdown, HLDropdownButton, HLEditTable, HLErrorBoundary, HLException, HLForm, HLFormAction, HLFormGroup, HLFromTo, HLHeader, HLIcon, HLInput, HLInputMonetary, HLInputNumber, HLLayout, HLMain, HLMarkdown, HLMenu, HLModal, HLPageHeader, HLPopover, HLPowerSearch, HLPowerSelect, HLProgress, HLRadio, HLSelect, HLSelectMultiple, HLSideMenu, HLSpin, HLSwitch, HLTable, HLTableDataLimitAlert, HLTabs, HLTag, HLTagRounded, HLTextArea, HLTooltip, HLTotalizer, HLTree, HLUserBox, HLNotification, HLHealthCheck, HLModulesMenu, PowerSearchOperators, PowerSelectStoreInterface, SearchObject, SearchType, SelectStoreInterface, };
|
|
73
|
+
export { AdvancedPowerSelectStoreInterface, HLAdvancedPowerSelect, HLAlert, HLArticle, HLAssociateDisassociate, HLAssociationManager, HLBigDecimalInputNumber, HLBreadcrumb, HLButton, HLCard, HLCheckbox, HLBadge, HLCode, HLCollapse, HLCollapseInfoPanel, HLContext, HLCpfCnpj, HLDatePicker, HLDeferredRender, HLDescriptions, HLDiffViewer, HLDivider, HLDrawer, HLDropdown, HLDropdownButton, HLEditTable, HLErrorBoundary, HLException, HLForm, HLFormAction, HLFormGroup, HLFromTo, HLHeader, HLIcon, HLInput, HLInputMonetary, HLInputMonetaryFormatOnBlur, HLInputNumber, HLLayout, HLMain, HLMarkdown, HLMenu, HLModal, HLPageHeader, HLPopover, HLPowerSearch, HLPowerSelect, HLProgress, HLRadio, HLSelect, HLSelectMultiple, HLSideMenu, HLSpin, HLSwitch, HLTable, HLTableDataLimitAlert, HLTabs, HLTag, HLTagRounded, HLTextArea, HLTooltip, HLTotalizer, HLTree, HLUserBox, HLNotification, HLHealthCheck, HLModulesMenu, PowerSearchOperators, PowerSelectStoreInterface, SearchObject, SearchType, SelectStoreInterface, };
|