@linzjs/lui 16.2.5 → 16.2.6

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.
@@ -71,7 +71,6 @@
71
71
  @forward "./Components/LuiFormSection/LuiHelpInfo/LuiHelpInfo.scss";
72
72
  @forward "./Components/LuiShadow/LuiShadow.scss";
73
73
  @forward "./Components/LuiBadge/LuiBadge.scss";
74
- @forward "./Components/LuiHeaderGlobal/LuiHeaderGlobal.scss";
75
74
 
76
75
  // The following have scss next to the component that is yet to be hooked up with the react implementation
77
76
  // LuiTabs
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.2.5",
2
+ "version": "16.2.6",
3
3
  "license": "MIT",
4
4
  "repository": {
5
5
  "type": "git",
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface ILuiHeaderGlobal {
3
- children?: React.ReactNode;
4
- isPublic?: boolean;
5
- mainTitle: string;
6
- }
7
- export declare const LuiHeaderGlobal: ({ isPublic, mainTitle }: ILuiHeaderGlobal) => JSX.Element;
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface ILuiHeaderGlobalPublic {
3
- children?: React.ReactNode;
4
- mainTitle: string;
5
- }
6
- export declare const LuiHeaderGlobalPublic: ({ mainTitle, }: ILuiHeaderGlobalPublic) => JSX.Element;
@@ -1,101 +0,0 @@
1
- @use "../../Foundation/Variables/MiscVars.scss" as misc;
2
- @use "../../Foundation/Variables/ColorVars.scss" as colors;
3
- @use "../../Foundation/Variables/FontVars.scss" as fonts;
4
- @use "../../Foundation/Variables/SpacingVars.scss" as spacing;
5
- @use "../../Foundation/Utilities" as *;
6
-
7
- .LuiHeaderGlobal {
8
- min-height: 56px;
9
- background: colors.$linz-linear-gradient-blue;
10
- display: flex;
11
- justify-content: space-between;
12
- padding: spacing.$unit-xxs;
13
- }
14
-
15
- .LuiHeaderGlobal-primary,
16
- .LuiHeaderGlobal-secondary {
17
- display: flex;
18
- align-items: center;
19
- }
20
-
21
- .LuiHeaderGlobal-logo {
22
- max-width: spacing.$unit-lg;
23
- height: auto;
24
- }
25
-
26
- .LuiHeaderGlobal-title {
27
- margin: 0;
28
- color: colors.$snow;
29
- display: none;
30
- padding: 0 spacing.$unit-xs;
31
-
32
- @include breakpoint(540px) {
33
- display: block;
34
- }
35
-
36
- &--isPublic {
37
- display: block;
38
- }
39
- }
40
-
41
- .LuiHeaderGlobal-firmDetails {
42
- padding: spacing.$unit-xxs spacing.$unit-sm;
43
- border-radius: spacing.$unit-xxs;
44
- }
45
-
46
- .LuiHeaderGlobal-firmDetailsText {
47
- text-align: right;
48
- @include fonts.font-semibold;
49
- font-size: 14px;
50
- line-height: 20px;
51
- margin: 0;
52
- color: colors.$polar;
53
-
54
- &--secondary {
55
- @include fonts.font-regular;
56
- }
57
- }
58
-
59
- .LuiHeaderGlobal-icon {
60
- fill: colors.$polar;
61
- transition: fill 0.3s ease-in-out;
62
-
63
- .LuiHeaderGlobal-trigger:hover & {
64
- // fill: colors.$snow;
65
- }
66
- }
67
-
68
- .LuiHeaderGlobal-trigger {
69
- background: transparent;
70
- padding: 0;
71
- display: flex;
72
- align-items: center;
73
- justify-content: center;
74
- padding: spacing.$unit-xs;
75
- border-radius: spacing.$unit-xxs;
76
- transition-property: opacity, filter, background;
77
- transition-duration: 0.15s;
78
- transition-timing-function: ease-in-out;
79
-
80
- &:hover {
81
- filter: opacity(80%);
82
- }
83
-
84
- &--active {
85
- background-color: colors.$teal;
86
- opacity: 1;
87
- }
88
-
89
- &--logo {
90
- padding: spacing.$unit-xs;
91
- }
92
-
93
- &--firmDetails {
94
- padding: 0;
95
- display: none;
96
-
97
- @include breakpoint(lg) {
98
- display: block;
99
- }
100
- }
101
- }