ng-comps 0.2.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/LICENSE +21 -0
- package/README.md +62 -0
- package/fesm2022/ng-comps.mjs +2479 -0
- package/fesm2022/ng-comps.mjs.map +1 -0
- package/package.json +45 -0
- package/src/styles.css +182 -0
- package/src/theme/material-theme.scss +40 -0
- package/src/theme/tokens.css +107 -0
- package/types/ng-comps.d.ts +917 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Manu Ferrer
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# ng-comps
|
|
2
|
+
|
|
3
|
+
Libreria de componentes UI para Angular con enfoque en:
|
|
4
|
+
|
|
5
|
+
- paquete NPM liviano
|
|
6
|
+
- tree-shaking real
|
|
7
|
+
- peers de Angular (sin duplicar framework en cada instalacion)
|
|
8
|
+
|
|
9
|
+
## Instalacion (consumidor)
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm i ng-comps
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Importa solo lo que usas:
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { MfButtonComponent } from 'ng-comps';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Si quieres usar los tokens/estilos base:
|
|
22
|
+
|
|
23
|
+
```css
|
|
24
|
+
@import 'ng-comps/theme/tokens.css';
|
|
25
|
+
@import 'ng-comps/styles.css';
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Publicacion optimizada a NPM
|
|
29
|
+
|
|
30
|
+
Este repo publica desde `dist/ng-comps`, no desde la raiz. De esta forma no se suben historias, tests ni archivos de desarrollo.
|
|
31
|
+
|
|
32
|
+
1. Construir la libreria APF:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm run build:lib
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
2. Generar `package.json` optimizado para distribucion:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm run prepare:package
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
3. Verificar contenido del paquete antes de publicar:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm run release:dry-run
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
4. Publicar:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm run publish:npm
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Estrategia de optimizacion aplicada
|
|
57
|
+
|
|
58
|
+
- `sideEffects: false` para maximizar tree-shaking
|
|
59
|
+
- `peerDependencies` para Angular y RxJS (evita bundles duplicados)
|
|
60
|
+
- `dependencies` minimas (`tslib`)
|
|
61
|
+
- `exports` explicitos para entrypoint y estilos
|
|
62
|
+
- publicacion desde carpeta de build (`dist/ng-comps`)
|