@porscheinformatik/material-addons 10.1.8 → 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 (60) hide show
  1. package/bundles/porscheinformatik-material-addons.umd.js +856 -52
  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/card/card.component.js +19 -5
  6. package/esm2015/lib/content-panel/content-header/content-header.component.js +15 -0
  7. package/esm2015/lib/content-panel/content-panel-container/content-panel-container.component.js +15 -0
  8. package/esm2015/lib/content-panel/content-panel-container-content/content-panel-container-content.component.js +15 -0
  9. package/esm2015/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.js +15 -0
  10. package/esm2015/lib/content-panel/content-panel.module.js +29 -0
  11. package/esm2015/lib/content-panel/main-container/main-container.component.js +15 -0
  12. package/esm2015/lib/data-table/data-table-action.js +1 -0
  13. package/esm2015/lib/data-table/data-table-column-header.js +1 -0
  14. package/esm2015/lib/data-table/data-table.component.js +103 -0
  15. package/esm2015/lib/data-table/data-table.js +1 -0
  16. package/esm2015/lib/data-table/data-table.module.js +33 -0
  17. package/esm2015/lib/flowbar/flowbar.component.js +186 -0
  18. package/esm2015/lib/flowbar/flowbar.module.js +14 -0
  19. package/esm2015/lib/material-addons.module.js +3 -3
  20. package/esm2015/lib/numeric-field/numeric-field.directive.js +4 -2
  21. package/esm2015/lib/quick-list/base-quick-list.component.js +89 -0
  22. package/esm2015/lib/quick-list/quick-list-compact/quick-list-compact.component.js +18 -0
  23. package/esm2015/lib/quick-list/quick-list.component.js +6 -77
  24. package/esm2015/lib/quick-list/quick-list.module.js +6 -4
  25. package/esm2015/lib/stepper/mad-stepper-animation.js +13 -0
  26. package/esm2015/lib/stepper/step-header/step-header.component.js +75 -0
  27. package/esm2015/lib/stepper/stepper.component.js +167 -0
  28. package/esm2015/lib/stepper/stepper.module.js +18 -0
  29. package/esm2015/lib/table/table.component.js +1 -1
  30. package/esm2015/lib/table/table.module.js +3 -3
  31. package/esm2015/porscheinformatik-material-addons.js +5 -2
  32. package/esm2015/public-api.js +15 -1
  33. package/fesm2015/porscheinformatik-material-addons.js +737 -25
  34. package/fesm2015/porscheinformatik-material-addons.js.map +1 -1
  35. package/lib/card/card.component.d.ts +4 -0
  36. package/lib/content-panel/content-header/content-header.component.d.ts +5 -0
  37. package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +5 -0
  38. package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +5 -0
  39. package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +5 -0
  40. package/lib/content-panel/content-panel.module.d.ts +2 -0
  41. package/lib/content-panel/main-container/main-container.component.d.ts +5 -0
  42. package/lib/data-table/data-table-action.d.ts +5 -0
  43. package/lib/data-table/data-table-column-header.d.ts +6 -0
  44. package/lib/data-table/data-table.component.d.ts +39 -0
  45. package/lib/data-table/data-table.d.ts +2 -0
  46. package/lib/data-table/data-table.module.d.ts +2 -0
  47. package/lib/flowbar/flowbar.component.d.ts +42 -0
  48. package/lib/flowbar/flowbar.module.d.ts +2 -0
  49. package/lib/quick-list/base-quick-list.component.d.ts +29 -0
  50. package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +6 -0
  51. package/lib/quick-list/quick-list.component.d.ts +4 -27
  52. package/lib/stepper/mad-stepper-animation.d.ts +7 -0
  53. package/lib/stepper/step-header/step-header.component.d.ts +23 -0
  54. package/lib/stepper/stepper.component.d.ts +47 -0
  55. package/lib/stepper/stepper.module.d.ts +2 -0
  56. package/package.json +6 -6
  57. package/porscheinformatik-material-addons.d.ts +4 -1
  58. package/porscheinformatik-material-addons.metadata.json +1 -1
  59. package/public-api.d.ts +14 -0
  60. package/themes/common/styles.scss +8 -2
package/public-api.d.ts CHANGED
@@ -14,6 +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';
21
+ export * from './lib/stepper/stepper.component';
22
+ export * from './lib/stepper/step-header/step-header.component';
23
+ export * from './lib/stepper/mad-stepper-animation';
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';
19
33
  export * from './lib/material-addons.module';
@@ -121,8 +121,6 @@ table {
121
121
  }
122
122
 
123
123
  .button-panel {
124
- display: flex;
125
- flex-direction: row;
126
124
  padding-top: 16px;
127
125
  padding-bottom: 8px;
128
126
  padding-right: 16px;
@@ -305,6 +303,14 @@ mad-link-button {
305
303
  display: none !important;
306
304
  }
307
305
 
306
+ mad-primary-button,
307
+ mad-outline-button,
308
+ mad-danger-button,
309
+ mad-link-button,
310
+ mad-icon-button {
311
+ display: none !important;
312
+ }
313
+
308
314
  .criteria-panel {
309
315
  display: none !important;
310
316
  height: 0 !important;