@sd-angular/core 1.0.5 → 1.0.9
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/sd-angular-core-grid-material.umd.js +149 -7
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/esm2015/grid-material/sd-angular-core-grid-material.js +2 -1
- package/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +2 -2
- package/esm2015/grid-material/src/lib/components/desktop-cell-editor/desktop-cell-editor.component.js +2 -2
- package/esm2015/grid-material/src/lib/components/desktop-cell-view/desktop-cell-view.component.js +5 -4
- package/esm2015/grid-material/src/lib/components/grid-filter/grid-filter.component.js +2 -2
- package/esm2015/grid-material/src/lib/grid-material.module.js +4 -2
- package/esm2015/grid-material/src/lib/models/grid-cell.model.js +2 -0
- package/esm2015/grid-material/src/lib/models/grid-column.model.js +1 -1
- package/esm2015/grid-material/src/lib/models/grid-option.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/cell-view.pipe.js +131 -0
- package/fesm2015/sd-angular-core-grid-material.js +136 -8
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.d.ts +1 -0
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/desktop-cell-view/desktop-cell-view.component.d.ts +2 -0
- package/grid-material/src/lib/models/grid-cell.model.d.ts +15 -0
- package/grid-material/src/lib/models/grid-column.model.d.ts +1 -0
- package/grid-material/src/lib/models/grid-option.model.d.ts +1 -0
- package/grid-material/src/lib/pipes/cell-view.pipe.d.ts +14 -0
- package/package.json +1 -1
- package/{sd-angular-core-1.0.5.tgz → sd-angular-core-1.0.9.tgz} +0 -0
|
@@ -17,6 +17,7 @@ export { SdPopupGridConfiguration as ɵr } from './src/lib/components/popup-grid
|
|
|
17
17
|
export { SdGridQuickAction as ɵj } from './src/lib/components/quick-action/quick-action.component';
|
|
18
18
|
export { MatPaginatorIntlCro as ɵa } from './src/lib/grid-material.module';
|
|
19
19
|
export { GRID_MATERIAL_CONFIG as ɵg, ISdGridMaterialConfiguration as ɵf } from './src/lib/models/grid-configuration.model';
|
|
20
|
+
export { SdCellViewPipe as ɵbr } from './src/lib/pipes/cell-view.pipe';
|
|
20
21
|
export { SdColumnBadgePipe as ɵbf } from './src/lib/pipes/column-badge.pipe';
|
|
21
22
|
export { SdColumnChildrenFilterPipe as ɵv } from './src/lib/pipes/column-children-filter.pipe';
|
|
22
23
|
export { SdColumnHtmlTemplatePipe as ɵbc } from './src/lib/pipes/column-html-template.pipe';
|