@esfaenza/es-table 11.2.121 → 11.2.123-beta1

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 (41) hide show
  1. package/bundles/esfaenza-es-table.umd.js +443 -235
  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 +126 -49
  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/ExportHandler.js +2 -2
  19. package/esm2015/lib/core/handlers/SelectionHandler.js +46 -50
  20. package/esm2015/lib/core/handlers/UtilitiesHandler.js +2 -5
  21. package/esm2015/lib/directives/es_th.directive.js +9 -2
  22. package/esm2015/lib/domain/externals/EsTableColumnsDefinition.js +7 -4
  23. package/esm2015/lib/domain/externals/ItemPropEditableReference.js +1 -1
  24. package/esm2015/lib/domain/internals/EsTableColumn.js +2 -2
  25. package/esm2015/lib/es-table.module.js +42 -19
  26. package/fesm2015/esfaenza-es-table.js +422 -223
  27. package/fesm2015/esfaenza-es-table.js.map +1 -1
  28. package/lib/components/es-table/es_table.component.d.ts +28 -8
  29. package/lib/components/es-td/es_td.component.d.ts +6 -34
  30. package/lib/components/pipes/est-renderer.pipe.d.ts +12 -0
  31. package/lib/components/pipes/est-routerlink.pipe.d.ts +17 -0
  32. package/lib/components/pipes/est_editor.pipe.d.ts +12 -0
  33. package/lib/core/Logger.d.ts +7 -0
  34. package/lib/core/handlers/DynamicModeHandler.d.ts +11 -23
  35. package/lib/core/handlers/SelectionHandler.d.ts +16 -3
  36. package/lib/core/handlers/UtilitiesHandler.d.ts +4 -1
  37. package/lib/directives/es_th.directive.d.ts +25 -0
  38. package/lib/domain/externals/EsTableColumnsDefinition.d.ts +5 -9
  39. package/lib/domain/externals/ItemPropEditableReference.d.ts +4 -0
  40. package/lib/domain/internals/EsTableColumn.d.ts +3 -1
  41. package/package.json +2 -2
@@ -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';