@linzjs/lui 17.36.3 → 17.36.5

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.
@@ -1,3 +1,6 @@
1
+ @use '../../Foundation/Utilities/BoxShadow' as shadow;
2
+ @use '../../Foundation/Variables/ColorVars' as colors;
3
+
1
4
  .LuiFloatingWindow-buttons {
2
5
  display: flex;
3
6
  align-items: center;
@@ -11,4 +14,79 @@
11
14
  opacity: 0.7;
12
15
  }
13
16
 
14
- .FloatingWindow-window{box-shadow:0 0 10px #0071981a;position:absolute;background-color:#fff;top:10%;left:5%;display:flex;flex-direction:column;border-radius:9px}.FloatingWindow-container{display:flex;height:calc(100% - 50px);width:100%;overflow:auto}.FloatingWindow-header-element{flex:0}.FloatingWindow-header{height:48px;line-height:48px;color:#6b6966;padding:0 8px;display:flex;overflow:hidden;justify-content:space-between;border-bottom:2px #eaeaea solid;font-size:1em;font-weight:600}.FloatingWindow-header-title-text{font-size:1em;font-weight:600;overflow:hidden}.FloatingWindow-buttons{display:flex;align-items:center}.FloatingWindow-extra-buttons-divider{margin-right:4px;margin-left:8px;margin-top:-6px;font-size:x-large;opacity:.7}.FloatingWindowHeaderButton-button{padding:0 0 0 8px;border:none;outline:none;border-radius:50%;background-color:transparent;color:#000;display:flex}.FloatingWindowHeaderButton-icon{fill:#6b6966}.floating-window-icon{display:inline-block;height:24px;max-height:24px;max-width:24px;width:24px;fill:#6b6966}
17
+ .FloatingWindow-window {
18
+ @include shadow.drop-shadow($size: 'md');
19
+ position: absolute;
20
+ background-color: colors.$white;
21
+ top: 10%;
22
+ left: 5%;
23
+ display: flex;
24
+ flex-direction: column;
25
+ border-radius: 9px;
26
+ }
27
+
28
+ .FloatingWindow-container {
29
+ display: flex;
30
+ height: calc(100% - 50px);
31
+ width: 100%;
32
+ overflow: auto;
33
+ }
34
+
35
+ .FloatingWindow-header-element {
36
+ flex: 0;
37
+ }
38
+
39
+ .FloatingWindow-header {
40
+ height: 48px;
41
+ line-height: 48px;
42
+ color: colors.$fuscous;
43
+ padding: 0 8px;
44
+ display: flex;
45
+ overflow: hidden;
46
+ justify-content: space-between;
47
+ border-bottom: 2px colors.$lily solid;
48
+ font-size: 1em;
49
+ font-weight: 600;
50
+ }
51
+
52
+ .FloatingWindow-header-title-text {
53
+ font-size: 1em;
54
+ font-weight: 600;
55
+ overflow: hidden;
56
+ }
57
+
58
+ .FloatingWindow-buttons {
59
+ display: flex;
60
+ align-items: center;
61
+ }
62
+
63
+ .FloatingWindow-extra-buttons-divider {
64
+ margin-right: 4px;
65
+ margin-left: 8px;
66
+ margin-top: -6px;
67
+ font-size: x-large;
68
+ opacity: 0.7;
69
+ }
70
+
71
+ .FloatingWindowHeaderButton-button {
72
+ padding: 0 0 0 8px;
73
+ border: none;
74
+ outline: none;
75
+ border-radius: 50%;
76
+ background-color: transparent;
77
+ color: colors.$fuscous;
78
+ display: flex;
79
+ }
80
+
81
+ .FloatingWindowHeaderButton-icon {
82
+ fill: colors.$fuscous;
83
+ }
84
+
85
+ .floating-window-icon {
86
+ display: inline-block;
87
+ height: 24px;
88
+ max-height: 24px;
89
+ max-width: 24px;
90
+ width: 24px;
91
+ fill: colors.$fuscous;
92
+ }
@@ -0,0 +1,11 @@
1
+ .luiSidePanel {
2
+ position: fixed;
3
+ right: 0;
4
+ bottom: 0;
5
+ background: white;
6
+ transition: width 0.2s ease;
7
+ box-shadow: -0.1em 0 0.4em rgba(0, 0, 0, 0.2);
8
+ padding: 0;
9
+ z-index: 3;
10
+ overflow: auto;
11
+ }
@@ -21,4 +21,5 @@
21
21
  display: flex;
22
22
  justify-content: center;
23
23
  align-items: center;
24
+ z-index: 1000;
24
25
  }
@@ -79,6 +79,7 @@
79
79
  @forward './Components/LuiAccordicardStatic/LuiAccordicardStatic.scss';
80
80
  @forward './Components/LuiAccordicard/LuiAccordicard.scss';
81
81
  @forward './Components/LuiSideMenu/LuiSideMenu.scss';
82
+ @forward './Components/LuiSidePanel/LuiSidePanel.scss';
82
83
 
83
84
  // The following have scss next to the component that is yet to be hooked up with the react implementation
84
85
  // LuiTabs
@@ -89,3 +90,4 @@
89
90
 
90
91
  // LuiMenuTrigger
91
92
  @forward './Components/LuiMenuTrigger/LuiMenuTrigger.scss';
93
+
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "17.36.3",
2
+ "version": "17.36.5",
3
3
  "license": "MIT",
4
4
  "repository": {
5
5
  "type": "git",