@ihk-gfi/lux-components-theme 14.7.0 → 15.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 (37) hide show
  1. package/README.md +13 -18
  2. package/package.json +6 -7
  3. package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
  4. package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
  5. package/prebuilt-themes/luxtheme-authentic.css +5524 -2566
  6. package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
  7. package/prebuilt-themes/luxtheme-green-min.css +1 -1
  8. package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
  9. package/prebuilt-themes/luxtheme-green.css +5553 -2922
  10. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  11. package/src/authentic/_custom.scss +40 -76
  12. package/src/authentic/_luxcommon.scss +14 -17
  13. package/src/authentic/luxtheme.scss +78 -86
  14. package/src/base/_luxcommon.scss +0 -8
  15. package/src/base/_luxcomponents.scss +12 -572
  16. package/src/base/_luxfocus.scss +7 -205
  17. package/src/base/_luxstyles.scss +16 -15
  18. package/src/base/_luxtheme.scss +13 -1
  19. package/src/base/components/_luxAppHeaderAc.scss +3 -2
  20. package/src/base/components/_luxButton.scss +143 -0
  21. package/src/base/components/_luxFormControlWrapper.scss +9 -13
  22. package/src/base/components/_luxFormControlsAuthentic.scss +19 -14
  23. package/src/base/components/_luxIcon.scss +41 -0
  24. package/src/base/components/_luxLinkPlain.scss +1 -4
  25. package/src/base/components/_luxTextbox.scss +1 -1
  26. package/src/base/components/_luxTileAc.scss +4 -12
  27. package/src/green/_custom.scss +37 -314
  28. package/src/green/_luxcommon.scss +11 -19
  29. package/src/green/luxtheme.scss +84 -87
  30. package/prebuilt-themes/luxtheme-blue-min.css +0 -1
  31. package/prebuilt-themes/luxtheme-blue-min.css.map +0 -1
  32. package/prebuilt-themes/luxtheme-blue.css +0 -9151
  33. package/prebuilt-themes/luxtheme-blue.css.map +0 -1
  34. package/src/blue/_custom.scss +0 -120
  35. package/src/blue/_luxcommon.scss +0 -101
  36. package/src/blue/_luxpalette.scss +0 -106
  37. package/src/blue/luxtheme.scss +0 -102
@@ -1,97 +1,89 @@
1
1
  @use "luxpalette" as themePalette;
2
2
  @use "../base/luxpalette" with (
3
- // Farbpaletten
4
- $lux-palette_primary: themePalette.$lux-palette_primary,
5
- $lux-palette_accent: themePalette.$lux-palette_accent,
6
- $lux-palette_warn: themePalette.$lux-palette_warn,
7
-
8
- // Hauptfarben
9
- $lux-primary-color: themePalette.$lux-primary-color,
10
- $lux-accent-color:themePalette.$lux-accent-color,
11
- $lux-warn-color: themePalette.$lux-warn-color
3
+ // Farbpaletten
4
+ $lux-palette_primary: themePalette.$lux-palette_primary,
5
+ $lux-palette_accent: themePalette.$lux-palette_accent,
6
+ $lux-palette_warn: themePalette.$lux-palette_warn,
7
+
8
+ // Hauptfarben
9
+ $lux-primary-color: themePalette.$lux-primary-color,
10
+ $lux-accent-color: themePalette.$lux-accent-color,
11
+ $lux-warn-color: themePalette.$lux-warn-color
12
12
  );
13
13
 
14
14
  @use "luxcommon" as themeCommon;
15
15
 
16
16
  @use "../public/global";
17
17
 
18
- @use "../base/luxcommon" with (
19
- // Allgemein
20
- $dark-primary-text: themeCommon.$dark-primary-text,
21
- $dark-secondary-text: themeCommon.$dark-secondary-text,
22
- $dark-disabled-text: themeCommon.$dark-disabled-text,
23
- $dark-dividers: themeCommon.$dark-dividers,
24
- $dark-focused: themeCommon.$dark-focused,
25
-
26
- $light-primary-text: themeCommon.$light-primary-text,
27
- $light-secondary-text: themeCommon.$light-secondary-text,
28
- $light-disabled-text: themeCommon.$light-disabled-text,
29
- $light-dividers: themeCommon.$light-dividers,
30
- $light-focused: themeCommon.$light-focused,
31
-
32
- // App
33
- $app-header-bg: themeCommon.$app-header-bg,
34
- $app-content-bg: themeCommon.$app-content-bg,
35
- $app-footer-bg: themeCommon.$app-footer-bg,
36
- $app-data-bg: themeCommon.$app-data-bg,
37
- $app-gradient: themeCommon.$app-gradient,
38
- $app-gradient-reverse: themeCommon.$app-gradient-reverse,
39
- $app-border-color: themeCommon.$app-border-color,
40
- $app-headline-font: themeCommon.$app-headline-font,
41
- $app-font-family: themeCommon.$app-font-family,
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
18
+ @use "../base/luxcommon" with (
19
+ // Allgemein
20
+ $dark-primary-text: themeCommon.$dark-primary-text,
21
+ $dark-secondary-text: themeCommon.$dark-secondary-text,
22
+ $dark-disabled-text: themeCommon.$dark-disabled-text,
23
+ $dark-dividers: themeCommon.$dark-dividers,
24
+ $dark-focused: themeCommon.$dark-focused,
25
+
26
+ $light-primary-text: themeCommon.$light-primary-text,
27
+ $light-secondary-text: themeCommon.$light-secondary-text,
28
+ $light-disabled-text: themeCommon.$light-disabled-text,
29
+ $light-dividers: themeCommon.$light-dividers,
30
+ $light-focused: themeCommon.$light-focused,
31
+
32
+ // App
33
+ $app-header-bg: themeCommon.$app-header-bg,
34
+ $app-content-bg: themeCommon.$app-content-bg,
35
+ $app-footer-bg: themeCommon.$app-footer-bg,
36
+ $app-data-bg: themeCommon.$app-data-bg,
37
+ $app-gradient: themeCommon.$app-gradient,
38
+ $app-gradient-reverse: themeCommon.$app-gradient-reverse,
39
+ $app-border-color: themeCommon.$app-border-color,
40
+ $app-headline-font: themeCommon.$app-headline-font,
41
+ $app-font-family: themeCommon.$app-font-family,
42
+
43
+ // Form
44
+ $form-border-color: themeCommon.$form-border-color,
45
+ $form-control-font-size: themeCommon.$form-control-font-size,
46
+ $form-control-font-size-small: themeCommon.$form-control-font-size-small,
47
+ $form-control-buffer: themeCommon.$form-control-buffer,
48
+
49
+ // Button
50
+ $button-height: themeCommon.$button-height,
51
+ $button-fav-height: themeCommon.$button-fav-height,
52
+ $button-font-size: themeCommon.$button-font-size,
53
+
54
+ // Fokus
55
+ $outline-width: themeCommon.$outline-width,
56
+ $outline-style: themeCommon.$outline-style,
57
+ $outline-color-bright: themeCommon.$outline-color-bright,
58
+ $outline-color-dark: themeCommon.$outline-color-dark,
59
+
60
+ // Hover
61
+ $lux-hover-color: themeCommon.$lux-hover-color,
62
+ $lux-hover-color-for-dark-background: themeCommon.$lux-hover-color-for-dark-background,
63
+
64
+ // Selektion
65
+ $lux-selected-border-color: themeCommon.$lux-selected-border-color,
66
+ $lux-selected-bg-color: themeCommon.$lux-selected-bg-color,
67
+
68
+ // Stepper (large)
69
+ $lux-stepper-large-backdrop-bg: themeCommon.$lux-stepper-large-backdrop-bg,
70
+ $lux-stepper-large-completed-fc: themeCommon.$lux-stepper-large-completed-fc,
71
+
72
+ $lux-stepper-large-nav-item-active-fc: themeCommon.$lux-stepper-large-nav-item-active-fc,
73
+ $lux-stepper-large-nav-item-active-bg: themeCommon.$lux-stepper-large-nav-item-active-bg,
74
+ $lux-stepper-large-nav-item-disabled-fg: themeCommon.$lux-stepper-large-nav-item-disabled-fg,
75
+ $lux-stepper-large-nav-item-disabled-bg: themeCommon.$lux-stepper-large-nav-item-disabled-bg,
76
+ $lux-stepper-large-nav-item-completed-fg: themeCommon.$lux-stepper-large-nav-item-completed-fg,
77
+ $lux-stepper-large-nav-item-completed-bg: themeCommon.$lux-stepper-large-nav-item-completed-bg,
78
+
79
+ // Hintergrundfarben (z.B. Badge oder Progress)
80
+ $componentBgColors: themeCommon.$componentBgColors,
81
+
82
+ // Vordergrundfarben (z.B. Badge)
83
+ $componentFontColors: themeCommon.$componentFontColors,
84
+
85
+ // Farben für einen dunklen Hintergrund (z.B. Snackbar).
86
+ $colorsForDarkBg: themeCommon.$colorsForDarkBg
95
87
  );
96
88
  @use "../base/luxSvgIcons";
97
89
  @use "../base/luxelevations";
@@ -24,17 +24,9 @@ $app-font-family: mustOverriden !default;
24
24
 
25
25
  // Form
26
26
  $form-border-color: mustOverriden !default;
27
- $form-control-default-height-not-scalable: mustOverriden !default;
28
- $form-control-height: mustOverriden !default;
29
- $form-control-height-small: mustOverriden !default;
30
27
  $form-control-font-size: mustOverriden !default;
31
28
  $form-control-font-size-small: mustOverriden !default;
32
- $form-control-label-padding: mustOverriden !default;
33
- $form-control-container-padding: mustOverriden !default;
34
- $form-control-misc-margin: mustOverriden !default;
35
- $form-control-complete-height: mustOverriden !default;
36
29
  $form-control-buffer: mustOverriden !default;
37
- $form-control-margin: mustOverriden !default;
38
30
 
39
31
  // Button
40
32
  $button-height: mustOverriden !default;