@porscheinformatik/material-addons 10.2.1 → 10.2.2

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 (40) hide show
  1. package/bundles/porscheinformatik-material-addons.umd.js +465 -5
  2. package/bundles/porscheinformatik-material-addons.umd.js.map +1 -1
  3. package/bundles/porscheinformatik-material-addons.umd.min.js +2 -2
  4. package/bundles/porscheinformatik-material-addons.umd.min.js.map +1 -1
  5. package/esm2015/lib/content-panel/content-header/content-header.component.js +15 -0
  6. package/esm2015/lib/content-panel/content-panel-container/content-panel-container.component.js +15 -0
  7. package/esm2015/lib/content-panel/content-panel-container-content/content-panel-container-content.component.js +15 -0
  8. package/esm2015/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.js +15 -0
  9. package/esm2015/lib/content-panel/content-panel.module.js +29 -0
  10. package/esm2015/lib/content-panel/main-container/main-container.component.js +15 -0
  11. package/esm2015/lib/data-table/data-table-action.js +1 -0
  12. package/esm2015/lib/data-table/data-table-column-header.js +1 -0
  13. package/esm2015/lib/data-table/data-table.component.js +103 -0
  14. package/esm2015/lib/data-table/data-table.js +1 -0
  15. package/esm2015/lib/data-table/data-table.module.js +33 -0
  16. package/esm2015/lib/flowbar/flowbar.component.js +186 -0
  17. package/esm2015/lib/flowbar/flowbar.module.js +14 -0
  18. package/esm2015/lib/table/table.component.js +1 -1
  19. package/esm2015/lib/table/table.module.js +3 -3
  20. package/esm2015/porscheinformatik-material-addons.js +2 -1
  21. package/esm2015/public-api.js +11 -1
  22. package/fesm2015/porscheinformatik-material-addons.js +409 -2
  23. package/fesm2015/porscheinformatik-material-addons.js.map +1 -1
  24. package/lib/content-panel/content-header/content-header.component.d.ts +5 -0
  25. package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +5 -0
  26. package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +5 -0
  27. package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +5 -0
  28. package/lib/content-panel/content-panel.module.d.ts +2 -0
  29. package/lib/content-panel/main-container/main-container.component.d.ts +5 -0
  30. package/lib/data-table/data-table-action.d.ts +5 -0
  31. package/lib/data-table/data-table-column-header.d.ts +6 -0
  32. package/lib/data-table/data-table.component.d.ts +39 -0
  33. package/lib/data-table/data-table.d.ts +2 -0
  34. package/lib/data-table/data-table.module.d.ts +2 -0
  35. package/lib/flowbar/flowbar.component.d.ts +42 -0
  36. package/lib/flowbar/flowbar.module.d.ts +2 -0
  37. package/package.json +1 -1
  38. package/porscheinformatik-material-addons.d.ts +1 -0
  39. package/porscheinformatik-material-addons.metadata.json +1 -1
  40. package/public-api.d.ts +10 -0
package/public-api.d.ts CHANGED
@@ -14,10 +14,20 @@ export * from './lib/card/card.module';
14
14
  export * from './lib/quick-list/quick-list.module';
15
15
  export * from './lib/table/table';
16
16
  export * from './lib/table/table.module';
17
+ export * from './lib/data-table/data-table';
18
+ export * from './lib/data-table/data-table.module';
17
19
  export * from './lib/throttle-click/throttle-click.directive';
18
20
  export * from './lib/throttle-click/throttle-click.module';
19
21
  export * from './lib/stepper/stepper.component';
20
22
  export * from './lib/stepper/step-header/step-header.component';
21
23
  export * from './lib/stepper/mad-stepper-animation';
22
24
  export * from './lib/stepper/stepper.module';
25
+ export * from './lib/content-panel/content-header/content-header.component';
26
+ export * from './lib/content-panel/content-panel-container/content-panel-container.component';
27
+ export * from './lib/content-panel/content-panel-container-content/content-panel-container-content.component';
28
+ export * from './lib/content-panel/content-panel-container-footer/content-panel-container-footer.component';
29
+ export * from './lib/content-panel/main-container/main-container.component';
30
+ export * from './lib/content-panel/content-panel.module';
31
+ export * from './lib/flowbar/flowbar.component';
32
+ export * from './lib/flowbar/flowbar.module';
23
33
  export * from './lib/material-addons.module';