@firestitch/list 12.12.3 → 12.12.4
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/app/classes/data-controller.d.ts +2 -1
- package/app/classes/reorder-controller.d.ts +7 -2
- package/app/classes/selection-controller.d.ts +5 -0
- package/app/components/body/body.component.d.ts +2 -2
- package/app/components/body/row/actions/actions.component.d.ts +0 -1
- package/app/components/body/row/menu-action/menu-action.component.d.ts +3 -1
- package/app/components/body/row/row.component.d.ts +2 -0
- package/app/components/list/list.component.d.ts +14 -7
- package/app/directives/draggable-list/draggable-list.directive.d.ts +12 -3
- package/app/directives/draggable-row/draggable-row.directive.d.ts +2 -0
- package/app/directives/heading/heading.directive.d.ts +5 -0
- package/app/directives/index.d.ts +2 -0
- package/app/directives/subheading/subheading.directive.d.ts +5 -0
- package/app/fs-list.module.d.ts +21 -19
- package/app/interfaces/listconfig.interface.d.ts +7 -4
- package/app/models/row/group-footer-row.d.ts +1 -1
- package/app/models/row/group-row.d.ts +1 -0
- package/app/models/row-action.model.d.ts +0 -2
- package/app/models/row.d.ts +1 -1
- package/app/pipes/action-label.d.ts +8 -0
- package/app/pipes/index.d.ts +1 -0
- package/bundles/firestitch-list.umd.js +435 -198
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/data-controller.js +36 -18
- package/esm2015/app/classes/list-controller.js +2 -3
- package/esm2015/app/classes/reorder-controller.js +21 -7
- package/esm2015/app/classes/selection-controller.js +16 -2
- package/esm2015/app/components/body/body.component.js +4 -5
- package/esm2015/app/components/body/row/actions/actions.component.js +3 -8
- package/esm2015/app/components/body/row/cell/cell.component.js +22 -7
- package/esm2015/app/components/body/row/inline-action/inline-action.component.js +3 -4
- package/esm2015/app/components/body/row/menu-action/menu-action.component.js +7 -3
- package/esm2015/app/components/body/row/row.component.js +16 -7
- package/esm2015/app/components/footer/footer-row/footer-row.component.js +2 -3
- package/esm2015/app/components/head/head.component.js +2 -3
- package/esm2015/app/components/list/list.component.js +48 -26
- package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +2 -3
- package/esm2015/app/components/pagination/pagination.component.js +4 -5
- package/esm2015/app/components/status/status.component.js +3 -5
- package/esm2015/app/directives/draggable-list/draggable-list.directive.js +97 -32
- package/esm2015/app/directives/draggable-row/draggable-row.directive.js +9 -1
- package/esm2015/app/directives/heading/heading.directive.js +13 -0
- package/esm2015/app/directives/index.js +3 -0
- package/esm2015/app/directives/subheading/subheading.directive.js +13 -0
- package/esm2015/app/fs-list.module.js +18 -9
- package/esm2015/app/interfaces/listconfig.interface.js +1 -1
- package/esm2015/app/models/row/child-row.js +1 -1
- package/esm2015/app/models/row/group-footer-row.js +2 -2
- package/esm2015/app/models/row/group-row.js +5 -1
- package/esm2015/app/models/row-action.model.js +8 -22
- package/esm2015/app/models/row.js +2 -2
- package/esm2015/app/pipes/action-label.js +17 -0
- package/esm2015/app/pipes/index.js +2 -0
- package/esm2015/public_api.js +3 -2
- package/fesm2015/firestitch-list.js +347 -156
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +2 -2
- package/public_api.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firestitch/list",
|
|
3
|
-
"version": "12.12.
|
|
3
|
+
"version": "12.12.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Firestitch/ngx-list"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"url": "https://github.com/Firestitch/ngx-list/issues"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@firestitch/filter": ">=12.
|
|
20
|
+
"@firestitch/filter": ">=12.5.0",
|
|
21
21
|
"@firestitch/menu": ">=12.0.1",
|
|
22
22
|
"@firestitch/prompt": ">=12.0.1",
|
|
23
23
|
"@firestitch/scroll": ">=12.0.0",
|
package/public_api.d.ts
CHANGED
|
@@ -21,10 +21,11 @@ export { FsListContentDirective } from './app/directives/content/content.directi
|
|
|
21
21
|
export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
|
|
22
22
|
export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
|
|
23
23
|
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
24
|
+
export { FsListSubheadingDirective, FsListHeadingDirective } from './app/directives';
|
|
24
25
|
export { Column, SortingDirection } from './app/models/column.model';
|
|
25
26
|
export { List } from './app/classes/list-controller';
|
|
26
27
|
export { PaginationController } from './app/classes/pagination-controller';
|
|
27
|
-
export {
|
|
28
|
+
export { ReorderPosition, ReorderController } from './app/classes/reorder-controller';
|
|
28
29
|
export { RowAction } from './app/models/row-action.model';
|
|
29
30
|
export { SelectionController, SelectionChangeType } from './app/classes/selection-controller';
|
|
30
31
|
export { SortingController, SortingChangeEvent } from './app/classes/sorting-controller';
|