basesite-shared-grid-lib 0.0.1 → 1.1.2
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 +19 -13
- package/package.json +11 -1
- package/src/lib/styles/styles.scss +12 -0
- package/basesite-shared-grid-lib-0.0.1.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,24 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# BasesiteSharedGridLib
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This package is property of basesite specifically to be used by basesite developers. The package has been developed using angular version 15.1.4.
|
|
4
|
+
The main objective of this project is to provide dynamic grid library to the basesite developers. The package is already configured with some URL's that
|
|
5
|
+
will be available only for basesite developers and its associated partners.
|
|
4
6
|
|
|
5
|
-
##
|
|
7
|
+
## Installation
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
> Note: Don't forget to add `--project basesite-shared-grid-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
BasesiteSharedGridLib is distributed through npm, but you can use it with a variety of package management platforms.
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
npm install basesite-shared-grid-lib
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
## Getting Started
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
Getting started with basesite-shared-grid-lib is already described properly in developer guide available on basesite wiki.
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
## Prerequisites
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
In order to run this package successfully in your next/ upcoming exciting project, you just need to have few Prerequisites:
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
1. ag-grid-angular Version: 29.0.0
|
|
22
|
+
2. ag-grid-community Version: 29.0.0
|
|
23
|
+
3. ag-grid-enterprise Version: 29.0.0
|
|
24
|
+
4. font-awesome cdn to be added in your index.html
|
|
21
25
|
|
|
22
|
-
## Further help
|
|
23
26
|
|
|
24
|
-
|
|
27
|
+
## Support
|
|
28
|
+
|
|
29
|
+
For any further support, please get in touch with basesite support team.
|
|
30
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "basesite-shared-grid-lib",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^15.1.0",
|
|
6
6
|
"@angular/core": "^15.1.0",
|
|
@@ -11,6 +11,16 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|
|
13
13
|
},
|
|
14
|
+
"author": "Basesite Team",
|
|
15
|
+
"description": "A shared grid library developed by Basesite for its developers and partners",
|
|
16
|
+
"homepage": "https://basesite.com",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"angular",
|
|
19
|
+
"typescript",
|
|
20
|
+
"ag-grid",
|
|
21
|
+
"basesite",
|
|
22
|
+
"basesite shared grid"
|
|
23
|
+
],
|
|
14
24
|
"bundledDependencies": [
|
|
15
25
|
"ag-grid-angular",
|
|
16
26
|
"ag-grid-community",
|
|
@@ -81,4 +81,16 @@ button {
|
|
|
81
81
|
}
|
|
82
82
|
.ag-root-wrapper,.ag-header{
|
|
83
83
|
border:none !important;
|
|
84
|
+
}
|
|
85
|
+
.ag-pinned-left-header{
|
|
86
|
+
border-right: none;
|
|
87
|
+
}
|
|
88
|
+
.ag-pinned-right-header{
|
|
89
|
+
border-left: none;
|
|
90
|
+
}
|
|
91
|
+
.ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell){
|
|
92
|
+
border-right: none;
|
|
93
|
+
}
|
|
94
|
+
.ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell){
|
|
95
|
+
border-left: none;
|
|
84
96
|
}
|
|
Binary file
|