ngx-easy-table-plus 15.7.0 → 15.8.1
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 -20
- package/README.md +59 -37
- package/esm2022/lib/components/base/base.component.mjs +3 -3
- package/esm2022/lib/components/base/base.module.mjs +1 -1
- package/esm2022/lib/components/header/header.component.mjs +3 -3
- package/esm2022/lib/components/pagination/pagination.component.mjs +3 -3
- package/esm2022/lib/components/thead/thead.component.mjs +3 -3
- package/esm2022/lib/index.mjs +1 -1
- package/esm2022/lib/model/api.mjs +1 -1
- package/esm2022/lib/model/columns.mjs +1 -1
- package/esm2022/lib/model/config.mjs +1 -1
- package/esm2022/lib/model/event.enum.mjs +1 -1
- package/esm2022/lib/model/pagination.mjs +1 -1
- package/esm2022/lib/pipes/global-search-pipe.mjs +1 -1
- package/esm2022/lib/pipes/render-pipe.mjs +1 -1
- package/esm2022/lib/pipes/search-pipe.mjs +1 -1
- package/esm2022/lib/pipes/sort.pipe.mjs +1 -1
- package/esm2022/lib/services/config-service.mjs +1 -1
- package/esm2022/lib/services/filters.service.mjs +1 -1
- package/esm2022/lib/services/group-rows.service.mjs +1 -1
- package/esm2022/lib/services/style.service.mjs +1 -1
- package/esm2022/lib/table.module.mjs +1 -1
- package/esm2022/public_api.mjs +1 -1
- package/fesm2022/ngx-easy-table-plus.mjs +8 -8
- package/fesm2022/ngx-easy-table-plus.mjs.map +1 -1
- package/package.json +1 -1
- package/style.scss +616 -616
package/LICENSE
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 Sebastian Superczynski <s.superczynski@gmail.com>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
of
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
OR
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Sebastian Superczynski <s.superczynski@gmail.com>
|
|
4
|
+
Copyright (c) 2026 Vincent Cholet
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"),
|
|
8
|
+
to deal in the Software without restriction, including without limitation
|
|
9
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
10
|
+
and/or sell copies of the Software, and to permit persons to whom the Software
|
|
11
|
+
is furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
17
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
18
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
20
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
21
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,37 +1,59 @@
|
|
|
1
|
-
[
|
|
2
|
-
|
|
3
|
-
[. Published to npm as `ngx-easy-table-plus`.
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/ngx-easy-table-plus)
|
|
4
|
+
[](https://badgen.net/github/last-commit/vincent-cholet/ngx-easy-table-plus)
|
|
5
|
+
[](https://badgen.net/npm/dt/ngx-easy-table-plus)
|
|
6
|
+
|
|
7
|
+
## Demo
|
|
8
|
+
|
|
9
|
+
<a href="https://vincent-cholet.github.io/ngx-easy-table-plus/" target="_blank">
|
|
10
|
+
https://vincent-cholet.github.io/ngx-easy-table-plus/
|
|
11
|
+
</a>
|
|
12
|
+
|
|
13
|
+
## Code Examples
|
|
14
|
+
|
|
15
|
+
<a href="https://github.com/vincent-cholet/ngx-easy-table-plus/tree/master/src/app/demo" target="_blank">
|
|
16
|
+
https://github.com/vincent-cholet/ngx-easy-table-plus/tree/master/src/app/demo
|
|
17
|
+
</a>
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
npm install ngx-easy-table-plus --save
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Library requires `@angular/cdk`, please install it as well.
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
npm install @angular/cdk --save
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Available config settings
|
|
32
|
+
|
|
33
|
+
Every available configuration option and feature has a runnable example in the
|
|
34
|
+
[demo](https://vincent-cholet.github.io/ngx-easy-table-plus/), with the source for each
|
|
35
|
+
example in [src/app/demo](src/app/demo).
|
|
36
|
+
|
|
37
|
+
## Development
|
|
38
|
+
|
|
39
|
+
- 1st tab - `npm run watch:table`
|
|
40
|
+
- 2nd tab - `cd dist/ngx-easy-table && npm link`
|
|
41
|
+
- 2nd tab - go back to project root dir and `npm link ngx-easy-table-plus`
|
|
42
|
+
- 2nd tab - `npm run start`
|
|
43
|
+
|
|
44
|
+
At the end run `npm run cy:ci` to make sure everything works.
|
|
45
|
+
|
|
46
|
+
## Releasing a new version
|
|
47
|
+
|
|
48
|
+
1. Bump the version in `projects/ngx-easy-table/package.json`.
|
|
49
|
+
2. Commit and push that change.
|
|
50
|
+
3. Tag and push the tag — this triggers the publish workflow:
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
git tag v15.8.0
|
|
54
|
+
git push origin v15.8.0
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
The `.github/workflows/publish.yml` workflow lints, builds, runs e2e tests,
|
|
58
|
+
and publishes to npm automatically. If any of those steps fail, the tag is
|
|
59
|
+
pushed but nothing gets published — fix the issue and push a new tag.
|