@masterkeymaterial/ui 0.0.1 → 0.0.3
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/README.md +9 -59
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @masterkeymaterial/ui
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Guia de instalacao para consumidores da biblioteca.
|
|
4
4
|
|
|
5
5
|
## Instalacao
|
|
6
6
|
|
|
@@ -8,76 +8,26 @@ Biblioteca Angular com componentes de UI e campos de formulario reutilizaveis pa
|
|
|
8
8
|
npm install @masterkeymaterial/ui
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Pre-requisitos
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Projeto consumidor com:
|
|
14
14
|
|
|
15
15
|
```json
|
|
16
16
|
{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
"@angular/common": "^21.2.0",
|
|
18
|
+
"@angular/core": "^21.2.0",
|
|
19
|
+
"@angular/platform-browser": "^21.2.0"
|
|
20
20
|
}
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## Verificacao Rapida
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
```ts
|
|
28
|
-
import { Component } from '@angular/core';
|
|
29
|
-
import { UiButton } from '@masterkeymaterial/ui';
|
|
30
|
-
|
|
31
|
-
@Component({
|
|
32
|
-
selector: 'app-root',
|
|
33
|
-
standalone: true,
|
|
34
|
-
imports: [UiButton],
|
|
35
|
-
template: `
|
|
36
|
-
<lib-ui-button
|
|
37
|
-
[label]="'Salvar'"
|
|
38
|
-
[tema]="'primario'"
|
|
39
|
-
/>
|
|
40
|
-
`
|
|
41
|
-
})
|
|
42
|
-
export class AppComponent {}
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## Build Da Biblioteca
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
ng build MasterKeyMaterial --configuration production
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
O artefato e gerado em `dist/master-key-material`.
|
|
52
|
-
|
|
53
|
-
## Publicacao No npm
|
|
54
|
-
|
|
55
|
-
Com login valido no npm e permissao na org `masterkeymaterial`:
|
|
25
|
+
Depois da instalacao:
|
|
56
26
|
|
|
57
27
|
```bash
|
|
58
|
-
npm
|
|
28
|
+
npm ls @masterkeymaterial/ui
|
|
59
29
|
```
|
|
60
30
|
|
|
61
|
-
Para testar antes de publicar:
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
npm publish dist/master-key-material --dry-run
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Superficie Publica
|
|
68
|
-
|
|
69
|
-
A API publica desta biblioteca e definida em `src/public-api.ts` e inclui:
|
|
70
|
-
|
|
71
|
-
- Tipos e interfaces como `IKV`, `IKV_ext`, `IFileMetadata`, `ITipoBotao`, `ITiposTema`.
|
|
72
|
-
- Utilitarios e base de formularios (`util`, `Formulario`, `BaseFieldsValues`, `BaseFieldsForm`).
|
|
73
|
-
- Elementos de UI (`ui-button`, `ui-chip`, `ui-drop-zone`, `ui-file-list`, `ui-select`, `ui-procurar`, `ui-progress`, `ui-slide`, `ui-check-box`, `ui-list-errors`, `ui-loading`, `ui-menu`).
|
|
74
|
-
- Componentes de formulario (`form-filter`, `form-action`, `form-no-action`, `formated-values`, `single-values`, `generic`).
|
|
75
|
-
|
|
76
|
-
## Compatibilidade
|
|
77
|
-
|
|
78
|
-
- Angular 21.x
|
|
79
|
-
- Node.js 18+ recomendado
|
|
80
|
-
|
|
81
31
|
## Licenca
|
|
82
32
|
|
|
83
33
|
MIT
|
package/package.json
CHANGED