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.
Binary file
@@ -1,3 +1,4 @@
1
1
  import '@ant-design/compatible/assets/index.css';
2
+ import 'moment/locale/pt-br';
2
3
  declare const _default: any;
3
4
  export default _default;
@@ -1,5 +1,5 @@
1
1
  declare const HLException: {
2
2
  Page500: import("react").FC<import("./Page500").Page500PropTypes>;
3
- Error: import("react").FC<import("./Error").ErrorPropTypes>;
3
+ PageError: import("react").FC<import("./PageError").PageErrorPropTypes>;
4
4
  };
5
5
  export default HLException;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { PageErrorPropTypes } from '.';
3
+ declare const PageError: React.FC<PageErrorPropTypes>;
4
+ export default PageError;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { HLFromToProps } from './index';
3
+ declare const HLFromTo: {
4
+ <L, R, T>(props: HLFromToProps<L, R, T>): JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default HLFromTo;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import '@ant-design/compatible/assets/index.css';
3
+ import { HLInputMonetaryPropTypes } from './index';
4
+ declare const HLInputMonetaryFormatOnBlur: React.FC<HLInputMonetaryPropTypes>;
5
+ export default HLInputMonetaryFormatOnBlur;
@@ -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
  *
@@ -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, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "synos-helena",
3
- "version": "23.0.0",
3
+ "version": "23.0.14.beta.0",
4
4
  "description": "A set of components of the helena project",
5
5
  "main": "lib/index.js",
6
6
  "typings": "src/index.d.ts",