@masterkeymaterial/ui 0.1.1 → 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/README.md
CHANGED
|
@@ -121,6 +121,17 @@ Guia completo de uso e customizacao:
|
|
|
121
121
|
|
|
122
122
|
- `docs/08-mk-grid-guia-consumidor.md`
|
|
123
123
|
|
|
124
|
+
## Teste local do MkGrid
|
|
125
|
+
|
|
126
|
+
Para validar o consumo da lib em runtime dentro deste workspace:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
npm run build:lib
|
|
130
|
+
npx ng serve mk-grid-demo
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
O app de teste esta em `projects/mk-grid-demo` e renderiza o `MkGrid` com dados mockados para validar comportamento de DI e interacoes basicas.
|
|
134
|
+
|
|
124
135
|
## Licenca
|
|
125
136
|
|
|
126
137
|
MIT
|
|
@@ -6482,10 +6482,11 @@ class GridCellService {
|
|
|
6482
6482
|
this.gridParams.set(params);
|
|
6483
6483
|
}
|
|
6484
6484
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GridCellService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6485
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GridCellService });
|
|
6485
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GridCellService, providedIn: 'root' });
|
|
6486
6486
|
}
|
|
6487
6487
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GridCellService, decorators: [{
|
|
6488
|
-
type: Injectable
|
|
6488
|
+
type: Injectable,
|
|
6489
|
+
args: [{ providedIn: 'root' }]
|
|
6489
6490
|
}] });
|
|
6490
6491
|
|
|
6491
6492
|
const PROP_CONTROLE_ATIVO$1 = 'is_ativo';
|