@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.
- package/bundles/esfaenza-es-table.umd.js +471 -263
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.d.ts +8 -4
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/esfaenza-es-table.js +9 -5
- package/esm2015/lib/components/es-table/es_table.component.js +145 -79
- package/esm2015/lib/components/es-td/es_td.component.js +10 -52
- package/esm2015/lib/components/es-th/es_th.component.js +2 -2
- package/esm2015/lib/components/pipes/est-renderer.pipe.js +36 -0
- package/esm2015/lib/components/pipes/est-routerlink.pipe.js +37 -0
- package/esm2015/lib/components/pipes/est_editor.pipe.js +36 -0
- package/esm2015/lib/core/CopyPasteDetector.js +4 -2
- package/esm2015/lib/core/Logger.js +23 -0
- package/esm2015/lib/core/handlers/ColumnMetadataHandler.js +14 -12
- package/esm2015/lib/core/handlers/DynamicModeHandler.js +59 -37
- package/esm2015/lib/core/handlers/SelectionHandler.js +46 -50
- package/esm2015/lib/core/handlers/UtilitiesHandler.js +2 -5
- package/esm2015/lib/directives/es_th.directive.js +9 -2
- package/esm2015/lib/domain/externals/EsTableColumnsDefinition.js +4 -3
- package/esm2015/lib/domain/externals/ItemPropEditableReference.js +1 -1
- package/esm2015/lib/domain/internals/EsTableColumn.js +2 -2
- package/esm2015/lib/domain/internals/PagerInfos.js +15 -0
- package/esm2015/lib/domain/internals/ThGroup.js +2 -0
- package/esm2015/lib/es-table.module.js +42 -19
- package/fesm2015/esfaenza-es-table.js +451 -251
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +55 -60
- package/lib/components/es-td/es_td.component.d.ts +6 -34
- package/lib/components/pipes/est-renderer.pipe.d.ts +12 -0
- package/lib/components/pipes/est-routerlink.pipe.d.ts +17 -0
- package/lib/components/pipes/est_editor.pipe.d.ts +12 -0
- package/lib/core/Logger.d.ts +7 -0
- package/lib/core/handlers/DynamicModeHandler.d.ts +11 -23
- package/lib/core/handlers/SelectionHandler.d.ts +16 -3
- package/lib/core/handlers/UtilitiesHandler.d.ts +4 -1
- package/lib/directives/es_th.directive.d.ts +25 -0
- package/lib/domain/externals/EsTableColumnsDefinition.d.ts +3 -9
- package/lib/domain/externals/ItemPropEditableReference.d.ts +4 -0
- package/lib/domain/internals/EsTableColumn.d.ts +3 -1
- package/lib/domain/internals/PagerInfos.d.ts +13 -0
- package/lib/domain/internals/ThGroup.d.ts +10 -0
- package/package.json +1 -1
package/esfaenza-es-table.d.ts
CHANGED
|
@@ -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
|
|
7
|
-
export { EsTh as
|
|
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
|
|
10
|
-
export { EstLookupPipe as
|
|
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';
|