@swimlane/ngx-datatable 21.1.0 → 22.0.0-alpha.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/CHANGELOG.md +5 -0
- package/assets/app.css +0 -2
- package/fesm2022/swimlane-ngx-datatable.mjs +1173 -1683
- package/fesm2022/swimlane-ngx-datatable.mjs.map +1 -1
- package/index.css +1 -247
- package/index.d.ts +1678 -3
- package/index.scss +1 -319
- package/package.json +4 -4
- package/themes/bootstrap.css +5 -0
- package/themes/bootstrap.scss +7 -0
- package/themes/dark.css +5 -1
- package/themes/dark.scss +6 -1
- package/themes/material.css +5 -17
- package/themes/material.scss +6 -17
- package/lib/components/body/body-cell.component.d.ts +0 -73
- package/lib/components/body/body-group-header-template.directive.d.ts +0 -7
- package/lib/components/body/body-group-header.directive.d.ts +0 -34
- package/lib/components/body/body-row-def.component.d.ts +0 -34
- package/lib/components/body/body-row-wrapper.component.d.ts +0 -44
- package/lib/components/body/body-row.component.d.ts +0 -47
- package/lib/components/body/body.component.d.ts +0 -231
- package/lib/components/body/ghost-loader/ghost-loader.component.d.ts +0 -12
- package/lib/components/body/progress-bar.component.d.ts +0 -5
- package/lib/components/body/scroller.component.d.ts +0 -24
- package/lib/components/body/selection.component.d.ts +0 -28
- package/lib/components/body/summary/summary-row.component.d.ts +0 -24
- package/lib/components/columns/column-cell.directive.d.ts +0 -9
- package/lib/components/columns/column-ghost-cell.directive.d.ts +0 -6
- package/lib/components/columns/column-header.directive.d.ts +0 -7
- package/lib/components/columns/column.directive.d.ts +0 -68
- package/lib/components/columns/tree.directive.d.ts +0 -7
- package/lib/components/datatable.component.d.ts +0 -591
- package/lib/components/footer/footer-template.directive.d.ts +0 -7
- package/lib/components/footer/footer.component.d.ts +0 -23
- package/lib/components/footer/footer.directive.d.ts +0 -18
- package/lib/components/footer/pager.component.d.ts +0 -30
- package/lib/components/header/header-cell.component.d.ts +0 -52
- package/lib/components/header/header.component.d.ts +0 -75
- package/lib/components/row-detail/row-detail-template.directive.d.ts +0 -7
- package/lib/components/row-detail/row-detail.directive.d.ts +0 -31
- package/lib/directives/disable-row.directive.d.ts +0 -22
- package/lib/directives/draggable.directive.d.ts +0 -38
- package/lib/directives/long-press.directive.d.ts +0 -39
- package/lib/directives/orderable.directive.d.ts +0 -34
- package/lib/directives/resizeable.directive.d.ts +0 -25
- package/lib/directives/visibility.directive.d.ts +0 -26
- package/lib/ngx-datatable.module.d.ts +0 -50
- package/lib/services/column-changes.service.d.ts +0 -13
- package/lib/services/scrollbar-helper.service.d.ts +0 -12
- package/lib/types/internal.types.d.ts +0 -31
- package/lib/types/public.types.d.ts +0 -142
- package/lib/types/table-column.type.d.ts +0 -163
- package/lib/utils/camel-case.d.ts +0 -10
- package/lib/utils/column-helper.d.ts +0 -11
- package/lib/utils/column-prop-getters.d.ts +0 -29
- package/lib/utils/column.d.ts +0 -19
- package/lib/utils/id.d.ts +0 -5
- package/lib/utils/keys.d.ts +0 -8
- package/lib/utils/math.d.ts +0 -30
- package/lib/utils/row-height-cache.d.ts +0 -52
- package/lib/utils/selection.d.ts +0 -2
- package/lib/utils/sort.d.ts +0 -17
- package/lib/utils/table-token.d.ts +0 -7
- package/lib/utils/throttle.d.ts +0 -17
- package/lib/utils/tree.d.ts +0 -40
- package/public-api.d.ts +0 -48
package/CHANGELOG.md
CHANGED
package/assets/app.css
CHANGED
|
@@ -37,8 +37,6 @@ body {
|
|
|
37
37
|
|
|
38
38
|
.selected-column {
|
|
39
39
|
background: #fff;
|
|
40
|
-
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
|
|
41
|
-
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
|
|
42
40
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
|
|
43
41
|
}
|
|
44
42
|
|