@bryntum/grid-angular-thin 7.1.2 → 7.1.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 +16 -10
- package/bundles/bryntum-grid-angular-thin.umd.js +111 -45
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-grid-base.component.js +38 -16
- package/esm2015/lib/bryntum-grid.component.js +38 -16
- package/esm2015/lib/bryntum-tree-grid.component.js +38 -16
- package/fesm2015/bryntum-grid-angular-thin.js +111 -45
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-grid-base.component.d.ts +31 -15
- package/lib/bryntum-grid.component.d.ts +31 -15
- package/lib/bryntum-tree-grid.component.d.ts +31 -15
- package/package.json +1 -1
- package/src/lib/bryntum-grid-base.component.ts +40 -22
- package/src/lib/bryntum-grid.component.ts +40 -22
- package/src/lib/bryntum-tree-grid.component.ts +40 -22
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<br>
|
|
2
|
+
<br>
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<a href="https://bryntum.com/" rel="noopener" target="_blank">
|
|
6
|
+
<img width="350" src="https://bryntum.com/resources/bryntum_logo_blue.svg" alt="Bryntum logo">
|
|
7
|
+
</a>
|
|
8
|
+
     
|
|
9
|
+
<img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/angular.svg" alt="Angular" width="100">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<br>
|
|
7
13
|
|
|
8
14
|
# Angular wrapper for Bryntum Grid Thin packages
|
|
9
15
|
|
|
@@ -189,8 +195,8 @@ API packages:
|
|
|
189
195
|
```json
|
|
190
196
|
{
|
|
191
197
|
"dependencies": {
|
|
192
|
-
"@bryntum/core-thin": "7.1.
|
|
193
|
-
"@bryntum/grid-thin": "7.1.
|
|
198
|
+
"@bryntum/core-thin": "7.1.3",
|
|
199
|
+
"@bryntum/grid-thin": "7.1.3"
|
|
194
200
|
}
|
|
195
201
|
}
|
|
196
202
|
```
|
|
@@ -200,8 +206,8 @@ Framework wrapper packages:
|
|
|
200
206
|
```json
|
|
201
207
|
{
|
|
202
208
|
"dependencies": {
|
|
203
|
-
"@bryntum/core-angular-thin": "7.1.
|
|
204
|
-
"@bryntum/grid-angular-thin": "7.1.
|
|
209
|
+
"@bryntum/core-angular-thin": "7.1.3",
|
|
210
|
+
"@bryntum/grid-angular-thin": "7.1.3"
|
|
205
211
|
}
|
|
206
212
|
}
|
|
207
213
|
```
|