@esfaenza/es-table 11.2.122 → 11.2.123

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.
Files changed (44) hide show
  1. package/bundles/esfaenza-es-table.umd.js +471 -263
  2. package/bundles/esfaenza-es-table.umd.js.map +1 -1
  3. package/bundles/esfaenza-es-table.umd.min.js +1 -1
  4. package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
  5. package/esfaenza-es-table.d.ts +8 -4
  6. package/esfaenza-es-table.metadata.json +1 -1
  7. package/esm2015/esfaenza-es-table.js +9 -5
  8. package/esm2015/lib/components/es-table/es_table.component.js +145 -79
  9. package/esm2015/lib/components/es-td/es_td.component.js +10 -52
  10. package/esm2015/lib/components/es-th/es_th.component.js +2 -2
  11. package/esm2015/lib/components/pipes/est-renderer.pipe.js +36 -0
  12. package/esm2015/lib/components/pipes/est-routerlink.pipe.js +37 -0
  13. package/esm2015/lib/components/pipes/est_editor.pipe.js +36 -0
  14. package/esm2015/lib/core/CopyPasteDetector.js +4 -2
  15. package/esm2015/lib/core/Logger.js +23 -0
  16. package/esm2015/lib/core/handlers/ColumnMetadataHandler.js +14 -12
  17. package/esm2015/lib/core/handlers/DynamicModeHandler.js +59 -37
  18. package/esm2015/lib/core/handlers/SelectionHandler.js +46 -50
  19. package/esm2015/lib/core/handlers/UtilitiesHandler.js +2 -5
  20. package/esm2015/lib/directives/es_th.directive.js +9 -2
  21. package/esm2015/lib/domain/externals/EsTableColumnsDefinition.js +4 -3
  22. package/esm2015/lib/domain/externals/ItemPropEditableReference.js +1 -1
  23. package/esm2015/lib/domain/internals/EsTableColumn.js +2 -2
  24. package/esm2015/lib/domain/internals/PagerInfos.js +15 -0
  25. package/esm2015/lib/domain/internals/ThGroup.js +2 -0
  26. package/esm2015/lib/es-table.module.js +42 -19
  27. package/fesm2015/esfaenza-es-table.js +451 -251
  28. package/fesm2015/esfaenza-es-table.js.map +1 -1
  29. package/lib/components/es-table/es_table.component.d.ts +55 -60
  30. package/lib/components/es-td/es_td.component.d.ts +6 -34
  31. package/lib/components/pipes/est-renderer.pipe.d.ts +12 -0
  32. package/lib/components/pipes/est-routerlink.pipe.d.ts +17 -0
  33. package/lib/components/pipes/est_editor.pipe.d.ts +12 -0
  34. package/lib/core/Logger.d.ts +7 -0
  35. package/lib/core/handlers/DynamicModeHandler.d.ts +11 -23
  36. package/lib/core/handlers/SelectionHandler.d.ts +16 -3
  37. package/lib/core/handlers/UtilitiesHandler.d.ts +4 -1
  38. package/lib/directives/es_th.directive.d.ts +25 -0
  39. package/lib/domain/externals/EsTableColumnsDefinition.d.ts +3 -9
  40. package/lib/domain/externals/ItemPropEditableReference.d.ts +4 -0
  41. package/lib/domain/internals/EsTableColumn.d.ts +3 -1
  42. package/lib/domain/internals/PagerInfos.d.ts +13 -0
  43. package/lib/domain/internals/ThGroup.d.ts +10 -0
  44. package/package.json +1 -1
@@ -3,11 +3,15 @@
3
3
  */
4
4
  export * from './public-api';
5
5
  export { EsTableLoc as ɵe } from './lib/components/es-table/es_table.component.loc';
6
- export { EsTd as ɵi } from './lib/components/es-td/es_td.component';
7
- export { EsTh as ɵh } from './lib/components/es-th/es_th.component';
6
+ export { EsTd as ɵj } from './lib/components/es-td/es_td.component';
7
+ export { EsTh as ɵi } from './lib/components/es-th/es_th.component';
8
8
  export { TablePagerLoc as ɵa } from './lib/components/pager/table_pager.component.loc';
9
- export { EstFormatPipe as ɵj } from './lib/components/pipes/est-format.pipe';
10
- export { EstLookupPipe as ɵk } from './lib/components/pipes/est-lookup.pipe';
9
+ export { EstFormatPipe as ɵk } from './lib/components/pipes/est-format.pipe';
10
+ export { EstLookupPipe as ɵl } from './lib/components/pipes/est-lookup.pipe';
11
+ export { EstRendererPipe as ɵn } from './lib/components/pipes/est-renderer.pipe';
12
+ export { EstRouterLinkPipe as ɵm } from './lib/components/pipes/est-routerlink.pipe';
13
+ export { EstEditorPipe as ɵo } from './lib/components/pipes/est_editor.pipe';
11
14
  export { CopyPasteDetector as ɵg } from './lib/core/CopyPasteDetector';
15
+ export { Logger as ɵh } from './lib/core/Logger';
12
16
  export { UtilitiesHandler as ɵf } from './lib/core/handlers/UtilitiesHandler';
13
17
  export { EST_DEBUG as ɵc, EST_DEFAULTS as ɵd, EST_LOCALE as ɵb } from './lib/tokens';