synos-helena 21.8.1 → 21.10.0-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/CHANGELOG.md +20 -0
- package/README.md +2 -2
- package/lib/index.d.ts +26 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -29,6 +29,26 @@ O Helena DS segue o Calendar Versioning mais um cronograma interno de lançament
|
|
|
29
29
|
|
|
30
30
|
# Aguardando publicação ...
|
|
31
31
|
|
|
32
|
+
🌟 O componente `HLInputMonetary` agora recebe e retorna objetos do tipo `number` quando não é passada a propriedade `form` (novo padrão com HLForm) (#494);
|
|
33
|
+
|
|
34
|
+
⚠️ Formulários no novo padrão Helena que utilizam `HLInputMonetary` e fazem conversão manual dos valores (_parse_) podem apresentar instabilidade;
|
|
35
|
+
|
|
36
|
+
# 21.9.1
|
|
37
|
+
|
|
38
|
+
🐞 Clicar em uma data no `HLPowerSearch` não trava mais essa mesma data para as próximas seleções (#495);
|
|
39
|
+
|
|
40
|
+
🐞 Resolvido o problema em que clicar no botão de `Limpar histórico` dentro do modal de `Limpar histórico de notificações` fazia ele ficar carregando infinitamente (#513);
|
|
41
|
+
|
|
42
|
+
💄 Correção da cores em inputs desabilitados (#445);
|
|
43
|
+
|
|
44
|
+
🐞 Mudança no `HLTable` para que as colunas da tabela sejam efetivamente alteradas ao mudar as seleções de colunas visíveis;
|
|
45
|
+
|
|
46
|
+
# 21.9.0
|
|
47
|
+
|
|
48
|
+
⚠️ Alteração do caminho da aplicação: de `syn4me` para `synchro4me` (#506);
|
|
49
|
+
|
|
50
|
+
🌟 Melhorias no `HLCard` com adição da prop `bordered` e da opção `'button'` na prop `type` para permitir o uso de cards em listagens (#505)
|
|
51
|
+
|
|
32
52
|
# 21.8.1
|
|
33
53
|
|
|
34
54
|
🌟 Adição da prop `custom` aos painéis do `HLFromTo` para permitir associação de valores customizados (#501)
|
package/README.md
CHANGED
|
@@ -15,12 +15,12 @@ npm i synos-helena
|
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Veja mais detalhes sobre como começar em nossa [documentação](https://zeroheight.com/1f0a0e232/p/2603d2-desenvolvedores/b/51afd7)
|
|
18
|
-
Mais informações sobre as versões mais recentes disponíveis no [Changelog](https://git.synchro.com.br/
|
|
18
|
+
Mais informações sobre as versões mais recentes disponíveis no [Changelog](https://git.synchro.com.br/Synchro4Me/helena/blob/dev/CHANGELOG.md)
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
22
|
### 🔧 Issues
|
|
23
23
|
|
|
24
|
-
Reporte problemas, dicas e questões pelo nosso GitLab clicando [aqui](http://git.synchro.com.br/
|
|
24
|
+
Reporte problemas, dicas e questões pelo nosso GitLab clicando [aqui](http://git.synchro.com.br/Synchro4Me/helena/issues).
|
|
25
25
|
|
|
26
26
|
---
|
package/lib/index.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export interface HLCardPropTypes {
|
|
|
92
92
|
extra?: string | React.ReactNode;
|
|
93
93
|
loading?: boolean;
|
|
94
94
|
size?: 'default' | 'small';
|
|
95
|
-
type?: 'inner';
|
|
95
|
+
type?: 'inner' | 'button';
|
|
96
96
|
cover?: React.ReactNode;
|
|
97
97
|
actions?: React.ReactNode[];
|
|
98
98
|
tabList?: CardTabListType[];
|
|
@@ -100,6 +100,7 @@ export interface HLCardPropTypes {
|
|
|
100
100
|
activeTabKey?: string;
|
|
101
101
|
defaultActiveTabKey?: string;
|
|
102
102
|
className?: string;
|
|
103
|
+
bordered?: boolean;
|
|
103
104
|
bodyStyle?: CSSProperties;
|
|
104
105
|
tabBarExtraContent?: React.ReactNode;
|
|
105
106
|
}
|
|
@@ -403,6 +404,30 @@ export type PasswordPropTypes = HLInputPropTypes & {
|
|
|
403
404
|
|
|
404
405
|
export const Password: React.FC<PasswordPropTypes>;
|
|
405
406
|
|
|
407
|
+
|
|
408
|
+
export interface HLInputMonetaryPropTypes {
|
|
409
|
+
key?: any;
|
|
410
|
+
label?: string;
|
|
411
|
+
disabled?: boolean;
|
|
412
|
+
domainAttribute: string;
|
|
413
|
+
form?: Record<string, any>;
|
|
414
|
+
initialValue?: string | number;
|
|
415
|
+
placeholder?: string;
|
|
416
|
+
size?: 'large' | 'middle' | 'small';
|
|
417
|
+
rules?: any[];
|
|
418
|
+
min?: number;
|
|
419
|
+
max?: number;
|
|
420
|
+
ref?: ((instance: Input | null) => void) | React.RefObject<Input> | null;
|
|
421
|
+
style?: React.CSSProperties;
|
|
422
|
+
precision?: number;
|
|
423
|
+
stringMode?: boolean;
|
|
424
|
+
onChange?: (event: any) => void;
|
|
425
|
+
onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
426
|
+
onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export const HLInputMonetary: React.FC<HLInputMonetaryPropTypes>;
|
|
430
|
+
|
|
406
431
|
export interface HLMainPropTypes {
|
|
407
432
|
className?: string;
|
|
408
433
|
}
|