@ihk-gfi/lux-components-theme 11.13.0 → 14.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 (48) hide show
  1. package/README.md +15 -0
  2. package/package.json +7 -7
  3. package/prebuilt-themes/luxtheme-authentic-min.css +1 -0
  4. package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -0
  5. package/prebuilt-themes/{luxtheme-orange.css → luxtheme-authentic.css} +6922 -4856
  6. package/prebuilt-themes/luxtheme-authentic.css.map +1 -0
  7. package/prebuilt-themes/luxtheme-blue-min.css +1 -1
  8. package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
  9. package/prebuilt-themes/luxtheme-blue.css +4624 -3171
  10. package/prebuilt-themes/luxtheme-blue.css.map +1 -1
  11. package/prebuilt-themes/luxtheme-green-min.css +1 -1
  12. package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
  13. package/prebuilt-themes/luxtheme-green.css +4655 -3196
  14. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  15. package/src/authentic/_custom.scss +873 -0
  16. package/src/authentic/_luxcommon.scss +128 -0
  17. package/src/authentic/_luxpalette.scss +106 -0
  18. package/src/authentic/luxtheme.scss +103 -0
  19. package/src/base/_luxcommon.scss +98 -0
  20. package/src/base/_luxcomponents.scss +521 -167
  21. package/src/base/_luxelevations.scss +49 -0
  22. package/src/base/_luxfocus.scss +220 -102
  23. package/src/base/_luxpalette.scss +9 -0
  24. package/src/base/_luxstyles.scss +162 -112
  25. package/src/base/_luxtheme.scss +10 -6
  26. package/src/base/components/_luxAppHeaderAc.scss +140 -0
  27. package/src/base/components/_luxFormControlWrapper.scss +173 -0
  28. package/src/base/components/_luxFormControlsAuthentic.scss +279 -0
  29. package/src/base/components/_luxLinkPlain.scss +56 -0
  30. package/src/base/components/_luxMasterDetailAc.scss +193 -0
  31. package/src/base/components/_luxTileAc.scss +64 -0
  32. package/src/blue/_custom.scss +101 -8
  33. package/src/blue/_luxcommon.scss +19 -2
  34. package/src/blue/_luxpalette.scss +4 -3
  35. package/src/blue/luxtheme.scss +101 -9
  36. package/src/green/_custom.scss +241 -124
  37. package/src/green/_luxcommon.scss +22 -5
  38. package/src/green/_luxpalette.scss +4 -3
  39. package/src/green/luxtheme.scss +103 -12
  40. package/src/public/global.scss +6 -10
  41. package/CHANGELOG.md +0 -84
  42. package/prebuilt-themes/luxtheme-orange-min.css +0 -1
  43. package/prebuilt-themes/luxtheme-orange-min.css.map +0 -1
  44. package/prebuilt-themes/luxtheme-orange.css.map +0 -1
  45. package/src/orange/_custom.scss +0 -66
  46. package/src/orange/_luxcommon.scss +0 -84
  47. package/src/orange/_luxpalette.scss +0 -106
  48. package/src/orange/luxtheme.scss +0 -10
@@ -16,6 +16,11 @@ $app-header-bg: #ffffff;
16
16
  $app-content-bg: #ffffff;
17
17
  $app-footer-bg: #E3EBF5;
18
18
  $app-data-bg: #ffffff;
19
+ $app-gradient: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
20
+ $app-gradient-reverse: linear-gradient(270deg, #ffffff 0%, #f8fbff 100%);
21
+ $app-border-color: rgba(black, 0.12);
22
+ $app-headline-font: Korb, Roboto, Helvetica Neue, sans-serif;
23
+ $app-font-family: Roboto, Helvetica Neue, sans-serif;
19
24
 
20
25
  // Form
21
26
  $form-border-color: rgba(0, 0, 0, 0.42);
@@ -24,17 +29,26 @@ $form-control-height: 24px;
24
29
  $form-control-height-small: 18px;
25
30
  $form-control-font-size: 15px;
26
31
  $form-control-font-size-small: 12px;
32
+ $form-control-label-padding: 2px 0 4px 0;
33
+ $form-control-container-padding: 10px 5px 10px 5px;
34
+ $form-control-misc-margin: 4px 0 2px 0;
35
+ $form-control-complete-height: 84px;
36
+ $form-control-buffer: 6px;
37
+ $form-control-margin: 0px;
27
38
 
28
39
  // Button
29
40
  $button-height: 45px;
41
+ $button-font-size: 22px;
30
42
  $button-fav-height: 45px;
31
43
 
32
44
  // Fokus
45
+ $outline-width: 1px;
46
+ $outline-style: dotted;
33
47
  $outline-color-bright: #ffffff;
34
48
  $outline-color-dark: #000000;
35
49
 
36
50
  // Hover
37
- $lux-hover-color: #CCEBD1;
51
+ $lux-hover-color: #e3ebf5;
38
52
  $lux-hover-color-for-dark-background: #e3ebf5;
39
53
 
40
54
  // Selektion
@@ -54,15 +68,18 @@ $lux-stepper-large-nav-item-completed-bg: #2E8533;
54
68
 
55
69
  // Hintergrundfarben (z.B. Badge oder Progress)
56
70
  $componentBgColors: (
57
- "red": #b01211,
58
- "green": #3e8320,
71
+ "red": #db272e,
72
+ "green": #56bd66,
59
73
  "purple": #9900B8,
60
- "blue": #00569a,
74
+ "blue": #003366,
61
75
  "gray": #636D76,
62
76
  "orange": #c75000,
63
77
  "brown": #783f04,
64
78
  "black": black,
65
- "white": #ffffff
79
+ "white": #ffffff,
80
+ "yellow": rgba(244, 203, 37, 1),
81
+ "pink": #ea515a,
82
+ "lightblue": rgba(63, 155, 218, 1)
66
83
  );
67
84
 
68
85
  // Vordergrundfarben (z.B. Badge)
@@ -1,3 +1,4 @@
1
+ @use "sass:map";
1
2
  /*
2
3
  Dieses Partial-SCSS dient der Verwaltung der Farb-Paletten für die LUX-Components.
3
4
  */
@@ -101,6 +102,6 @@ $lux-palette_warn: (
101
102
  )
102
103
  );
103
104
 
104
- $lux-primary-color: map-get($lux-palette_primary, 500);
105
- $lux-accent-color: map-get($lux-palette_accent, 500);
106
- $lux-warn-color: map-get($lux-palette_warn, 500);
105
+ $lux-primary-color: map.get($lux-palette_primary, 500);
106
+ $lux-accent-color: map.get($lux-palette_accent, 500);
107
+ $lux-warn-color: map.get($lux-palette_warn, 500);
@@ -1,12 +1,103 @@
1
- @import "luxpalette";
2
- @import "../public/global";
3
- $app-font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
4
- $outline-width: 1px;
5
- @import "luxcommon";
6
- @import "../base/luxcomponents";
7
- $lux-hover-color: #e3ebf5;
8
- @import "../base/luxfocus";
9
- @import "../base/luxstyles";
10
- @import "../../node_modules/@angular/material/theming";
11
- @import "../base/luxtheme";
12
- @import "custom";
1
+ @use "../public/global" with (
2
+ $app-font-family: ("Source Sans Pro", Helvetica, Arial, sans-serif)
3
+ );
4
+
5
+ @use "luxpalette" as themePalette;
6
+ @use "../base/luxpalette" with (
7
+ // Farbpaletten
8
+ $lux-palette_primary: themePalette.$lux-palette_primary,
9
+ $lux-palette_accent: themePalette.$lux-palette_accent,
10
+ $lux-palette_warn: themePalette.$lux-palette_warn,
11
+
12
+ // Hauptfarben
13
+ $lux-primary-color: themePalette.$lux-primary-color,
14
+ $lux-accent-color:themePalette.$lux-accent-color,
15
+ $lux-warn-color: themePalette.$lux-warn-color
16
+ );
17
+
18
+ @use "luxcommon" as themeCommon;
19
+ @use "../base/luxcommon" with (
20
+ // Allgemein
21
+ $dark-primary-text: themeCommon.$dark-primary-text,
22
+ $dark-secondary-text: themeCommon.$dark-secondary-text,
23
+ $dark-disabled-text: themeCommon.$dark-disabled-text,
24
+ $dark-dividers: themeCommon.$dark-dividers,
25
+ $dark-focused: themeCommon.$dark-focused,
26
+
27
+ $light-primary-text: themeCommon.$light-primary-text,
28
+ $light-secondary-text: themeCommon.$light-secondary-text,
29
+ $light-disabled-text: themeCommon.$light-disabled-text,
30
+ $light-dividers: themeCommon.$light-dividers,
31
+ $light-focused: themeCommon.$light-focused,
32
+
33
+ // App
34
+ $app-header-bg: themeCommon.$app-header-bg,
35
+ $app-content-bg: themeCommon.$app-content-bg,
36
+ $app-footer-bg: themeCommon.$app-footer-bg,
37
+ $app-data-bg: themeCommon.$app-data-bg,
38
+ $app-gradient: themeCommon.$app-gradient,
39
+ $app-gradient-reverse: themeCommon.$app-gradient-reverse,
40
+ $app-border-color: themeCommon.$app-border-color,
41
+ $app-headline-font: themeCommon.$app-headline-font,
42
+
43
+ // Form
44
+ $form-border-color: themeCommon.$form-border-color,
45
+ $form-control-default-height-not-scalable: themeCommon.$form-control-default-height-not-scalable,
46
+ $form-control-height: themeCommon.$form-control-height,
47
+ $form-control-height-small: themeCommon.$form-control-height-small,
48
+ $form-control-font-size: themeCommon.$form-control-font-size,
49
+ $form-control-font-size-small: themeCommon.$form-control-font-size-small,
50
+ $form-control-label-padding: themeCommon.$form-control-label-padding,
51
+ $form-control-container-padding: themeCommon.$form-control-container-padding,
52
+ $form-control-misc-margin: themeCommon.$form-control-misc-margin,
53
+ $form-control-complete-height: themeCommon.$form-control-complete-height,
54
+ $form-control-buffer: themeCommon.$form-control-buffer,
55
+ $form-control-margin: themeCommon.$form-control-margin,
56
+
57
+ // Button
58
+ $button-height: themeCommon.$button-height,
59
+ $button-fav-height: themeCommon.$button-fav-height,
60
+ $button-font-size: themeCommon.$button-font-size,
61
+
62
+ // Fokus
63
+ $outline-width: themeCommon.$outline-width,
64
+ $outline-style: themeCommon.$outline-style,
65
+ $outline-color-bright: themeCommon.$outline-color-bright,
66
+ $outline-color-dark: themeCommon.$outline-color-dark,
67
+
68
+ // Hover
69
+ $lux-hover-color: themeCommon.$lux-hover-color,
70
+ $lux-hover-color-for-dark-background: themeCommon.$lux-hover-color-for-dark-background,
71
+
72
+ // Selektion
73
+ $lux-selected-border-color: themeCommon.$lux-selected-border-color,
74
+ $lux-selected-bg-color: themeCommon.$lux-selected-bg-color,
75
+
76
+ // Stepper (large)
77
+ $lux-stepper-large-backdrop-bg: themeCommon.$lux-stepper-large-backdrop-bg,
78
+ $lux-stepper-large-completed-fc: themeCommon.$lux-stepper-large-completed-fc,
79
+
80
+ $lux-stepper-large-nav-item-active-fc: themeCommon.$lux-stepper-large-nav-item-active-fc,
81
+ $lux-stepper-large-nav-item-active-bg: themeCommon.$lux-stepper-large-nav-item-active-bg,
82
+ $lux-stepper-large-nav-item-disabled-fg: themeCommon.$lux-stepper-large-nav-item-disabled-fg,
83
+ $lux-stepper-large-nav-item-disabled-bg: themeCommon.$lux-stepper-large-nav-item-disabled-bg,
84
+ $lux-stepper-large-nav-item-completed-fg: themeCommon.$lux-stepper-large-nav-item-completed-fg,
85
+ $lux-stepper-large-nav-item-completed-bg: themeCommon.$lux-stepper-large-nav-item-completed-bg,
86
+
87
+ // Hintergrundfarben (z.B. Badge oder Progress)
88
+ $componentBgColors: themeCommon.$componentBgColors,
89
+
90
+ // Vordergrundfarben (z.B. Badge)
91
+ $componentFontColors: themeCommon.$componentFontColors,
92
+
93
+ // Farben für einen dunklen Hintergrund (z.B. Snackbar).
94
+ $colorsForDarkBg: themeCommon.$colorsForDarkBg
95
+ );
96
+
97
+ @use "../base/luxelevations";
98
+ @use "../base/luxcomponents";
99
+ @use "../base/luxfocus";
100
+ @use "../base/luxstyles";
101
+ @use "../base/luxtheme";
102
+
103
+ @use "custom";
@@ -1,13 +1,9 @@
1
1
  // Media Queries
2
- $mat-xsmall: 'max-width: 599px';
3
- $mat-small: 'max-width: 959px';
4
- $mat-medium: 'max-width: 1279px';
5
- $mat-large: 'max-width: 1919px';
6
- $mat-xlarge: 'max-width: 5000px';
2
+ $mat-xsmall: 'max-width: 599px' !default;
3
+ $mat-small: 'max-width: 959px' !default;
4
+ $mat-medium: 'max-width: 1279px' !default;
5
+ $mat-large: 'max-width: 1919px' !default;
6
+ $mat-xlarge: 'max-width: 5000px' !default;
7
7
 
8
8
  // Font
9
- $app-font-family: Roboto, Helvetica Neue, sans-serif;
10
-
11
- // Fokus
12
- $outline-width: 2px;
13
- $outline-style: dotted;
9
+ $app-font-family: Roboto, Helvetica Neue, sans-serif !default;
package/CHANGELOG.md DELETED
@@ -1,84 +0,0 @@
1
- # Version 11.13.0
2
- ## New
3
- - **chips**: Vorschlagsliste soll so breit wie die Chips-Komponente sein. [Issue 20](https://github.com/IHK-GfI/lux-components-theme/issues/20)
4
- - **stepper-large**: Farben und Hover-Effekte ändern. [Issue 22](https://github.com/IHK-GfI/lux-components-theme/issues/22)
5
-
6
- ## New - Theme "green"
7
- - **select**: Schriftfarbe anpasse. [Issue 21](https://github.com/IHK-GfI/lux-components-theme/issues/21)
8
-
9
- # Version 11.12.0
10
- - **file-upload**: Styles für die neue Dateiupload-Komponente (lux-file-upload) entwickeln. [Issue 19](https://github.com/IHK-GfI/lux-components-theme/issues/19)
11
-
12
- # Version 11.11.0
13
- - **allgemein**: Die Font Awesome- und Material-Icons sollen nicht über die Server von Google und Font Awesome direkt importiert werden. [Issue 17](https://github.com/IHK-GfI/lux-components-theme/issues/17)
14
- - **stepper-large**: lux-stepper-larger - Der Inhaltscontainer soll sich automatisch der Größe seines Containers anpassen. [Issue 18](https://github.com/IHK-GfI/lux-components-theme/issues/18)
15
-
16
- # Version 11.10.0
17
- ## New - Theme "green"
18
- - **stepper-large**: Styles für den neuen Stepper (lux-stepper-large) entwickeln. [Issue 16](https://github.com/IHK-GfI/lux-components-theme/issues/16)
19
-
20
- # Version 11.9.0
21
- - **allgemein**: Die folgenden neuen CSS-Klassen wurden eingeführt: [Issue 15](https://github.com/IHK-GfI/lux-components-theme/issues/15)
22
- - lux-display-none-important
23
- - lux-hidden-important
24
-
25
- # Version 11.8.0
26
- ## New - Theme "green"
27
- - **tabs**: Die Schrift der Tablabels soll auf die Schrift "Korb (700) 22px" umgestellt werden. [Issue 14](https://github.com/IHK-GfI/lux-components-theme/issues/14)
28
- - **tabs**: Die Hover- und Active-Farbe soll auf den Wert "E3EBF5" eingestellt werden. [Issue 14](https://github.com/IHK-GfI/lux-components-theme/issues/14)
29
-
30
- # Version 11.7.1
31
- ## Bug Fixes - Theme "green"
32
- - **checkbox**: Deaktivierte Checkbox wird nicht angezeigt. [Issue 13](https://github.com/IHK-GfI/lux-components-theme/issues/13)
33
-
34
- # Version 11.7.0
35
- ## New
36
- - **allgemein**: Die folgenden neuen CSS-Variablen wurden eingeführt: [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
37
- - `--lux-theme-form-control-default-height-not-scalable`
38
- - `--lux-theme-form-control-height`
39
- - `--lux-theme-form-control-height-small`
40
- - `--lux-theme-form-control-font-size`
41
- - `--lux-theme-form-control-font-size-small`
42
-
43
- ## New - Theme "green"
44
- - **checkbox**: Checkboxen abgerundet darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
45
- - **radio**: Aktivierte Radio-Buttons mit Haken-Icon darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
46
- - **form-fields**: Eingabefelder mit abgerundetem Rahmen und Label darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
47
- - **table**: Die Zeilenhintergrundfarbe alternierend in Weiß und Hellgrau darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
48
- - **table**: Den Tabellenheader in Grün darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
49
- - **datepicker**: Überschriften (Wochentage) mit zwei Buchstaben darstellen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
50
- - **datepicker**: Tagehintergrund in hellblauen Kästchen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
51
- - **datepicker**: Selektierter Tag als dunkelblaues Kästchen. [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
52
- - **datepicker**: Monatsname unterhalb der Tagesspaltenköpfe soll entfallen (falls möglich). [Issue 12](https://github.com/IHK-GfI/lux-components-theme/issues/12)
53
-
54
- # Version 11.6.1
55
- ## Bug Fixes
56
- - **table**: Falsche Fokusdarstellung bei den Tabellenzellen (td-Tags) [Issue 11](https://github.com/IHK-GfI/lux-components-theme/issues/11)
57
-
58
- # Version 11.6.0
59
- ## New
60
- - **badge-notification**: Accent-Farbe noch ans Theme anpassen [Issue 7](https://github.com/IHK-GfI/lux-components-theme/issues/7)
61
- - **allgemein**: Themefarben auch als Css-Variablen zur Verfügung stellen [Issue 8](https://github.com/IHK-GfI/lux-components-theme/issues/8)
62
-
63
- # Version 11.5.0
64
- ## New
65
- - **green**: Die Buttons und Schriften im Theme "green" überarbeiten. [Issue 6](https://github.com/IHK-GfI/lux-components-theme/issues/6)
66
-
67
- ## Bug Fixes
68
- - **button**: Unterschiedliche Buttonhöhen (mit/ohne Icons) korrigieren [Issue 5](https://github.com/IHK-GfI/lux-components-theme/issues/5)
69
-
70
- # Version 11.4.0
71
- ## New
72
- - **lux-datetimepicker**: Styles für den neuen Datetimepicker inklusive Uhrzeit bereitstellen. [Issue 4](https://github.com/IHK-GfI/lux-components/issues/4)
73
-
74
- # Version 11.3.0
75
- ## New
76
- - **green**: Theme "green" vollständig überarbeiten. [Issue 3](https://github.com/IHK-GfI/lux-components-theme/issues/3)
77
-
78
- # Version 11.2.1
79
- ## Bug Fixes
80
- - **tab-notification**: "Tab Notification"-Icons haben fälschlicherweise einen roten Rand. [Issue 2](https://github.com/IHK-GfI/lux-components-theme/issues/2)
81
-
82
- # Version 11.2.0
83
- ## New
84
- - **tooltip**: Schriftgröße erhöhen. [Issue 1](https://github.com/IHK-GfI/lux-components-theme/issues/1)