@toolbox-web/grid-angular 0.1.2 → 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/index.js +2 -2
- package/lib/directives/grid.directive.d.ts +3 -3
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -385,7 +385,7 @@ class $ {
|
|
|
385
385
|
cellCommitListener = null;
|
|
386
386
|
rowCommitListener = null;
|
|
387
387
|
/**
|
|
388
|
-
* Custom CSS styles to inject into the grid
|
|
388
|
+
* Custom CSS styles to inject into the grid.
|
|
389
389
|
* Use this to style custom cell renderers, editors, or detail panels.
|
|
390
390
|
*
|
|
391
391
|
* @example
|
|
@@ -446,7 +446,7 @@ class $ {
|
|
|
446
446
|
}, 0);
|
|
447
447
|
}
|
|
448
448
|
/**
|
|
449
|
-
* Registers custom styles into the grid
|
|
449
|
+
* Registers custom styles into the grid.
|
|
450
450
|
* Uses the grid's registerStyles() API for clean encapsulation.
|
|
451
451
|
*/
|
|
452
452
|
registerCustomStyles(e) {
|
|
@@ -65,7 +65,7 @@ export interface RowCommitEvent<TRow = unknown> {
|
|
|
65
65
|
* The directive automatically:
|
|
66
66
|
* - Creates an AngularGridAdapter instance
|
|
67
67
|
* - Registers it with the GridElement
|
|
68
|
-
* - Injects custom styles into the grid
|
|
68
|
+
* - Injects custom styles into the grid
|
|
69
69
|
* - Handles cleanup on destruction
|
|
70
70
|
*/
|
|
71
71
|
export declare class Grid implements OnInit, AfterContentInit, OnDestroy {
|
|
@@ -77,7 +77,7 @@ export declare class Grid implements OnInit, AfterContentInit, OnDestroy {
|
|
|
77
77
|
private cellCommitListener;
|
|
78
78
|
private rowCommitListener;
|
|
79
79
|
/**
|
|
80
|
-
* Custom CSS styles to inject into the grid
|
|
80
|
+
* Custom CSS styles to inject into the grid.
|
|
81
81
|
* Use this to style custom cell renderers, editors, or detail panels.
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
@@ -123,7 +123,7 @@ export declare class Grid implements OnInit, AfterContentInit, OnDestroy {
|
|
|
123
123
|
ngOnInit(): void;
|
|
124
124
|
ngAfterContentInit(): void;
|
|
125
125
|
/**
|
|
126
|
-
* Registers custom styles into the grid
|
|
126
|
+
* Registers custom styles into the grid.
|
|
127
127
|
* Uses the grid's registerStyles() API for clean encapsulation.
|
|
128
128
|
*/
|
|
129
129
|
private registerCustomStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbox-web/grid-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Angular adapter for @toolbox-web/grid data grid component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"url": "https://github.com/OysteinAmundsen/toolbox.git",
|
|
28
28
|
"directory": "libs/grid-angular"
|
|
29
29
|
},
|
|
30
|
-
"homepage": "https://
|
|
30
|
+
"homepage": "https://toolboxjs.com",
|
|
31
31
|
"bugs": {
|
|
32
32
|
"url": "https://github.com/OysteinAmundsen/toolbox/issues"
|
|
33
33
|
},
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@angular/build": "^21.0.4",
|
|
45
45
|
"@angular/cli": "^21.0.4",
|
|
46
46
|
"@angular/compiler-cli": "^21.0.0",
|
|
47
|
-
"@toolbox-web/grid": ">=0.
|
|
47
|
+
"@toolbox-web/grid": ">=0.4.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@angular/core": ">=17.0.0",
|
|
51
|
-
"@toolbox-web/grid": ">=0.
|
|
51
|
+
"@toolbox-web/grid": ">=0.4.0"
|
|
52
52
|
}
|
|
53
53
|
}
|