ngx-easy-table-plus 15.7.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/LICENSE +20 -0
- package/README.md +37 -0
- package/esm2022/lib/components/base/base.component.mjs +541 -0
- package/esm2022/lib/components/base/base.module.mjs +46 -0
- package/esm2022/lib/components/header/header.component.mjs +24 -0
- package/esm2022/lib/components/pagination/pagination.component.mjs +68 -0
- package/esm2022/lib/components/thead/thead.component.mjs +147 -0
- package/esm2022/lib/index.mjs +7 -0
- package/esm2022/lib/model/api.mjs +24 -0
- package/esm2022/lib/model/columns.mjs +2 -0
- package/esm2022/lib/model/config.mjs +12 -0
- package/esm2022/lib/model/event.enum.mjs +24 -0
- package/esm2022/lib/model/pagination.mjs +2 -0
- package/esm2022/lib/pipes/global-search-pipe.mjs +30 -0
- package/esm2022/lib/pipes/render-pipe.mjs +18 -0
- package/esm2022/lib/pipes/search-pipe.mjs +51 -0
- package/esm2022/lib/pipes/sort.pipe.mjs +64 -0
- package/esm2022/lib/services/config-service.mjs +51 -0
- package/esm2022/lib/services/filters.service.mjs +16 -0
- package/esm2022/lib/services/group-rows.service.mjs +19 -0
- package/esm2022/lib/services/style.service.mjs +46 -0
- package/esm2022/lib/table.module.mjs +19 -0
- package/esm2022/ngx-easy-table-plus.mjs +5 -0
- package/esm2022/public_api.mjs +9 -0
- package/fesm2022/ngx-easy-table-plus.mjs +1142 -0
- package/fesm2022/ngx-easy-table-plus.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/components/base/base.component.d.ts +112 -0
- package/lib/components/base/base.component.d.ts.map +1 -0
- package/lib/components/base/base.module.d.ts +19 -0
- package/lib/components/base/base.module.d.ts.map +1 -0
- package/lib/components/header/header.component.d.ts +15 -0
- package/lib/components/header/header.component.d.ts.map +1 -0
- package/lib/components/pagination/pagination.component.d.ts +32 -0
- package/lib/components/pagination/pagination.component.d.ts.map +1 -0
- package/lib/components/thead/thead.component.d.ts +52 -0
- package/lib/components/thead/thead.component.d.ts.map +1 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/model/api.d.ts +117 -0
- package/lib/model/api.d.ts.map +1 -0
- package/lib/model/columns.d.ts +19 -0
- package/lib/model/columns.d.ts.map +1 -0
- package/lib/model/config.d.ts +53 -0
- package/lib/model/config.d.ts.map +1 -0
- package/lib/model/event.enum.d.ts +21 -0
- package/lib/model/event.enum.d.ts.map +1 -0
- package/lib/model/pagination.d.ts +6 -0
- package/lib/model/pagination.d.ts.map +1 -0
- package/lib/pipes/global-search-pipe.d.ts +9 -0
- package/lib/pipes/global-search-pipe.d.ts.map +1 -0
- package/lib/pipes/render-pipe.d.ts +8 -0
- package/lib/pipes/render-pipe.d.ts.map +1 -0
- package/lib/pipes/search-pipe.d.ts +15 -0
- package/lib/pipes/search-pipe.d.ts.map +1 -0
- package/lib/pipes/sort.pipe.d.ts +17 -0
- package/lib/pipes/sort.pipe.d.ts.map +1 -0
- package/lib/services/config-service.d.ts +9 -0
- package/lib/services/config-service.d.ts.map +1 -0
- package/lib/services/filters.service.d.ts +7 -0
- package/lib/services/filters.service.d.ts.map +1 -0
- package/lib/services/group-rows.service.d.ts +7 -0
- package/lib/services/group-rows.service.d.ts.map +1 -0
- package/lib/services/style.service.d.ts +12 -0
- package/lib/services/style.service.d.ts.map +1 -0
- package/lib/table.module.d.ts +10 -0
- package/lib/table.module.d.ts.map +1 -0
- package/ngx-easy-table-plus.d.ts.map +1 -0
- package/package.json +44 -0
- package/public_api.d.ts +9 -0
- package/public_api.d.ts.map +1 -0
- package/style.css +514 -0
- package/style.css.map +1 -0
- package/style.scss +616 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Sebastian Superczynski <s.superczynski@gmail.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"),
|
|
7
|
+
to deal in the Software without restriction, including without limitation
|
|
8
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
9
|
+
and/or sell copies of the Software, and to permit persons to whom the Software
|
|
10
|
+
is furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
16
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
17
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
20
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[](https://badge.fury.io/js/ngx-easy-table)
|
|
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)
|
|
5
|
+
|
|
6
|
+
## Code Examples
|
|
7
|
+
|
|
8
|
+
<a href="https://github.com/ssuperczynski/ngx-easy-table/tree/master/src/app/demo" target="_blank">
|
|
9
|
+
https://github.com/ssuperczynski/ngx-easy-table/tree/master/src/app/demo
|
|
10
|
+
</a>
|
|
11
|
+
|
|
12
|
+
## Demo
|
|
13
|
+
|
|
14
|
+
<a href="https://ngx-easy-table.eu" target="_blank">
|
|
15
|
+
https://ngx-easy-table.eu
|
|
16
|
+
</a>
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
`npm install ngx-easy-table --save`
|
|
21
|
+
|
|
22
|
+
Library requires `@angular/cdk`, please install it as well.
|
|
23
|
+
|
|
24
|
+
`npm install @angular/cdk --save`
|
|
25
|
+
|
|
26
|
+
## Available config settings:
|
|
27
|
+
|
|
28
|
+
See https://ngx-easy-table.eu/#/doc
|
|
29
|
+
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
- 1st tab - `npm run watch:table`
|
|
33
|
+
- 2nd tab - `cd dist/ngx-easy-table && npm link`
|
|
34
|
+
- 2nd tab - go back to project root dir and `npm link ngx-easy-table`
|
|
35
|
+
- 2nd tab - `npm run start`
|
|
36
|
+
|
|
37
|
+
At the end run `npm run cy:ci` to make sure everything works.
|