@firestitch/list 9.11.3 → 9.12.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/app/components/body/row/inline-action/inline-action.component.d.ts +3 -0
- package/app/components/body/row/menu-action/menu-action.component.d.ts +9 -0
- package/app/interfaces/listconfig.interface.d.ts +9 -0
- package/app/models/row-action.model.d.ts +4 -1
- package/bundles/firestitch-list.umd.js +70 -11
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/bundles/firestitch-list.umd.min.js +2 -2
- package/bundles/firestitch-list.umd.min.js.map +1 -1
- package/esm2015/app/components/body/row/actions/actions.component.js +2 -2
- package/esm2015/app/components/body/row/inline-action/inline-action.component.js +10 -2
- package/esm2015/app/components/body/row/menu-action/menu-action.component.js +41 -0
- package/esm2015/app/fs-list.module.js +5 -1
- package/esm2015/app/interfaces/listconfig.interface.js +1 -1
- package/esm2015/app/models/row-action.model.js +10 -1
- package/esm2015/firestitch-list.js +7 -6
- package/esm2015/public_api.js +1 -1
- package/esm5/app/components/body/row/actions/actions.component.js +2 -2
- package/esm5/app/components/body/row/inline-action/inline-action.component.js +10 -2
- package/esm5/app/components/body/row/menu-action/menu-action.component.js +42 -0
- package/esm5/app/fs-list.module.js +5 -1
- package/esm5/app/interfaces/listconfig.interface.js +1 -1
- package/esm5/app/models/row-action.model.js +10 -1
- package/esm5/firestitch-list.js +7 -6
- package/esm5/public_api.js +1 -1
- package/fesm2015/firestitch-list.js +61 -3
- package/fesm2015/firestitch-list.js.map +1 -1
- package/fesm5/firestitch-list.js +62 -3
- package/fesm5/firestitch-list.js.map +1 -1
- package/firestitch-list.d.ts +7 -6
- package/firestitch-list.metadata.json +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
package/firestitch-list.d.ts
CHANGED
|
@@ -5,14 +5,15 @@ export * from './public_api';
|
|
|
5
5
|
export { PersistanceController as ɵc } from './app/classes/persistance-controller';
|
|
6
6
|
export { FsRowActionsComponent as ɵg } from './app/components/body/row/actions/actions.component';
|
|
7
7
|
export { FsRowInlineActionComponent as ɵh } from './app/components/body/row/inline-action/inline-action.component';
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
8
|
+
export { FsRowMenuActionComponent as ɵi } from './app/components/body/row/menu-action/menu-action.component';
|
|
9
|
+
export { CustomizeColsDialogComponent as ɵn } from './app/components/customize-cols/customize-cols.component';
|
|
10
|
+
export { FsListLoaderComponent as ɵj } from './app/components/loader/loader.component';
|
|
11
|
+
export { FsListManageSavedFiltersComponent as ɵl } from './app/components/manage-saved-filters/manage-saved-filters.component';
|
|
12
|
+
export { FsListSavedFiltersComponent as ɵk } from './app/components/saved-filters/saved-filters.component';
|
|
12
13
|
export { FsListDraggableListDirective as ɵf } from './app/directives/draggable-list/draggable-list.directive';
|
|
13
|
-
export { FsListDraggableRowDirective as
|
|
14
|
+
export { FsListDraggableRowDirective as ɵm } from './app/directives/draggable-row/draggable-row.directive';
|
|
14
15
|
export { FsListGroupCellDirective as ɵd } from './app/directives/group-cell/group-cell.directive';
|
|
15
16
|
export { FsListGroupExpandTriggerDirective as ɵe } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
16
17
|
export { FsListConfigFactory as ɵa } from './app/fs-list.module';
|
|
17
|
-
export { FsListConfig as
|
|
18
|
+
export { FsListConfig as ɵo, FsListSelectionConfig as ɵp } from './app/interfaces';
|
|
18
19
|
export { GroupExpandNotifierService as ɵb } from './app/services/group-expand-notifier.service';
|