@porscheinformatik/material-addons 16.0.7 → 17.0.0

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 (49) hide show
  1. package/esm2022/lib/button/button.module.mjs +4 -4
  2. package/esm2022/lib/button/danger-button/danger-button.component.mjs +5 -5
  3. package/esm2022/lib/button/flat-button/link-button.component.mjs +5 -5
  4. package/esm2022/lib/button/icon-button/icon-button.component.mjs +5 -5
  5. package/esm2022/lib/button/mad-basic-button.mjs +3 -3
  6. package/esm2022/lib/button/outline-button/outline-button.component.mjs +5 -5
  7. package/esm2022/lib/button/primary-button/primary-button.component.mjs +5 -5
  8. package/esm2022/lib/card/card.component.mjs +3 -3
  9. package/esm2022/lib/card/card.module.mjs +4 -4
  10. package/esm2022/lib/content-panel/content-header/content-header.component.mjs +3 -3
  11. package/esm2022/lib/content-panel/content-panel-container/content-panel-container.component.mjs +3 -3
  12. package/esm2022/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +3 -3
  13. package/esm2022/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +3 -3
  14. package/esm2022/lib/content-panel/content-panel.module.mjs +4 -4
  15. package/esm2022/lib/content-panel/main-container/main-container.component.mjs +3 -3
  16. package/esm2022/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +5 -5
  17. package/esm2022/lib/data-table/data-table.component.mjs +5 -5
  18. package/esm2022/lib/data-table/data-table.module.mjs +4 -4
  19. package/esm2022/lib/flowbar/flowbar.component.mjs +3 -3
  20. package/esm2022/lib/flowbar/flowbar.module.mjs +4 -4
  21. package/esm2022/lib/material-action-button/material-action-button.component.mjs +3 -3
  22. package/esm2022/lib/material-action-button/material-action-button.module.mjs +4 -4
  23. package/esm2022/lib/material-addons.module.mjs +4 -4
  24. package/esm2022/lib/numeric-field/number-format.service.mjs +6 -6
  25. package/esm2022/lib/numeric-field/numeric-field.directive.mjs +5 -5
  26. package/esm2022/lib/numeric-field/numeric-field.module.mjs +4 -4
  27. package/esm2022/lib/quick-list/base-quick-list.component.mjs +5 -5
  28. package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +4 -4
  29. package/esm2022/lib/quick-list/quick-list.component.mjs +4 -4
  30. package/esm2022/lib/quick-list/quick-list.module.mjs +4 -4
  31. package/esm2022/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.mjs +4 -4
  32. package/esm2022/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.mjs +4 -4
  33. package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +5 -5
  34. package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +5 -5
  35. package/esm2022/lib/readonly/readonly-form-field.module.mjs +4 -4
  36. package/esm2022/lib/stepper/step-header/step-header.component.mjs +5 -5
  37. package/esm2022/lib/stepper/stepper.component.mjs +11 -11
  38. package/esm2022/lib/stepper/stepper.module.mjs +4 -4
  39. package/esm2022/lib/table/table.component.mjs +3 -3
  40. package/esm2022/lib/table/table.module.mjs +4 -4
  41. package/esm2022/lib/throttle-click/throttle-click.directive.mjs +3 -3
  42. package/esm2022/lib/throttle-click/throttle-click.module.mjs +4 -4
  43. package/esm2022/lib/toolbar/toolbar.component.mjs +4 -4
  44. package/esm2022/lib/toolbar/toolbar.module.mjs +4 -4
  45. package/esm2022/lib/toolbar/toolbar.service.mjs +4 -4
  46. package/fesm2022/porscheinformatik-material-addons.mjs +179 -179
  47. package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -1
  48. package/package.json +1 -1
  49. package/themes/common/styles.scss +16 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porscheinformatik/material-addons",
3
- "version": "16.0.7",
3
+ "version": "17.0.0",
4
4
  "description": "Custom theme and components for Angular Material",
5
5
  "homepage": "https://github.com/porscheinformatik/material-addons",
6
6
  "repository": {
@@ -1,24 +1,25 @@
1
1
  @use '@angular/material' as mat;
2
- @use '@angular/material/theming' as theming;
3
2
 
4
3
  @include mat.all-component-typographies();
5
4
  @include mat.all-component-densities(-2);
6
5
  @include mat.core();
6
+
7
+ //TODO Contrasts should be part of the themes!
7
8
  $contrast: (
8
- 50: theming.$dark-primary-text,
9
- 100: theming.$dark-primary-text,
10
- 200: theming.$dark-primary-text,
11
- 300: theming.$dark-primary-text,
12
- 400: theming.$dark-primary-text,
13
- 500: theming.$light-primary-text,
14
- 600: theming.$light-primary-text,
15
- 700: theming.$light-primary-text,
16
- 800: theming.$light-primary-text,
17
- 900: theming.$light-primary-text,
18
- A100: theming.$dark-primary-text,
19
- A200: theming.$dark-primary-text,
20
- A400: theming.$dark-primary-text,
21
- A700: theming.$dark-primary-text,
9
+ 50: rgba(black, 0.87),
10
+ 100: rgba(black, 0.87),
11
+ 200: rgba(black, 0.87),
12
+ 300: rgba(black, 0.87),
13
+ 400: rgba(black, 0.87),
14
+ 500: white,
15
+ 600: white,
16
+ 700: white,
17
+ 800: white,
18
+ 900: white,
19
+ A100: rgba(black, 0.87),
20
+ A200: rgba(black, 0.87),
21
+ A400: rgba(black, 0.87),
22
+ A700: rgba(black, 0.87),
22
23
  );
23
24
 
24
25
  @function get-main-color($color-scheme) {