ngx-easy-table-plus 15.8.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 +1 -0
- package/README.md +37 -15
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2023 Sebastian Superczynski <s.superczynski@gmail.com>
|
|
4
|
+
Copyright (c) 2026 Vincent Cholet
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the "Software"),
|
package/README.md
CHANGED
|
@@ -1,37 +1,59 @@
|
|
|
1
|
-
[
|
|
2
|
-
[](https://badgen.net/github/last-commit/ssuperczynski/ngx-easy-table)
|
|
3
|
-
[](https://badgen.net/npm/dt/ngx-easy-table)
|
|
4
|
-
[](https://github.com/semantic-release/semantic-release)
|
|
1
|
+
> This is an actively maintained fork of [ssuperczynski/ngx-easy-table](https://github.com/ssuperczynski/ngx-easy-table). Published to npm as `ngx-easy-table-plus`.
|
|
5
2
|
|
|
6
|
-
|
|
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
|
|
7
8
|
|
|
8
|
-
<a href="https://github.
|
|
9
|
-
https://github.
|
|
9
|
+
<a href="https://vincent-cholet.github.io/ngx-easy-table-plus/" target="_blank">
|
|
10
|
+
https://vincent-cholet.github.io/ngx-easy-table-plus/
|
|
10
11
|
</a>
|
|
11
12
|
|
|
12
|
-
##
|
|
13
|
+
## Code Examples
|
|
13
14
|
|
|
14
|
-
<a href="https://ngx-easy-table
|
|
15
|
-
https://ngx-easy-table
|
|
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
|
|
16
17
|
</a>
|
|
17
18
|
|
|
18
19
|
## Installation
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
```sh
|
|
22
|
+
npm install ngx-easy-table-plus --save
|
|
23
|
+
```
|
|
21
24
|
|
|
22
25
|
Library requires `@angular/cdk`, please install it as well.
|
|
23
26
|
|
|
24
|
-
|
|
27
|
+
```sh
|
|
28
|
+
npm install @angular/cdk --save
|
|
29
|
+
```
|
|
25
30
|
|
|
26
|
-
## Available config settings
|
|
31
|
+
## Available config settings
|
|
27
32
|
|
|
28
|
-
|
|
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).
|
|
29
36
|
|
|
30
37
|
## Development
|
|
31
38
|
|
|
32
39
|
- 1st tab - `npm run watch:table`
|
|
33
40
|
- 2nd tab - `cd dist/ngx-easy-table && npm link`
|
|
34
|
-
- 2nd tab - go back to project root dir and `npm link ngx-easy-table`
|
|
41
|
+
- 2nd tab - go back to project root dir and `npm link ngx-easy-table-plus`
|
|
35
42
|
- 2nd tab - `npm run start`
|
|
36
43
|
|
|
37
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.
|