@linzjs/lui 17.37.0 → 17.39.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.
- package/CHANGELOG.md +14 -0
- package/dist/assets/icons/help_outline.svg +1 -0
- package/dist/assets/icons/unlock.svg +1 -0
- package/dist/assets/svg-content.d.ts +1 -1
- package/dist/assets/svg-content.tsx +22 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/lui.css +20 -20
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +10 -2
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Foundation/Utilities/BoxShadow.scss +7 -16
- package/dist/scss/Foundation/Variables/ColorVars.scss +16 -6
- package/dist/scss/Foundation/Variables/ExportColors.scss +12 -0
- package/package.json +1 -1
|
@@ -7,21 +7,12 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
// Drop shadow declarations - Medium is default and if no value is passed. There are three variations of drop shadows in FIGLUI
|
|
10
|
-
@mixin drop-shadow
|
|
11
|
-
|
|
10
|
+
@mixin drop-shadow($size: 'md') {
|
|
12
11
|
@if ($size == sm) {
|
|
13
|
-
box-shadow: 0px 2px 3px 0px #00000040,
|
|
14
|
-
|
|
12
|
+
box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
|
|
13
|
+
} @else if ($size == lg) {
|
|
14
|
+
box-shadow: 0px 3px 12px 0px #00000026, 0px 12px 18px 4px #00000040;
|
|
15
|
+
} @else {
|
|
16
|
+
box-shadow: 0px 1px 6px 0px #00000026, 0px 6px 10px 0px #00000040;
|
|
15
17
|
}
|
|
16
|
-
|
|
17
|
-
@else if ($size == lg) {
|
|
18
|
-
box-shadow: 0px 3px 12px 0px #00000026,
|
|
19
|
-
0px 12px 18px 4px #00000040;
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@else {
|
|
24
|
-
box-shadow: 0px 1px 6px 0px #00000026,
|
|
25
|
-
0px 6px 10px 0px #00000040;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
18
|
+
}
|
|
@@ -41,6 +41,7 @@ $fuscous: #6b6966;
|
|
|
41
41
|
$gray: #989189;
|
|
42
42
|
$silver: #beb9b4;
|
|
43
43
|
$lily: #eaeaea;
|
|
44
|
+
$dew: #DAD7D6;
|
|
44
45
|
$hint: #f9f9f9;
|
|
45
46
|
$snow: #ffffff;
|
|
46
47
|
$white: $snow;
|
|
@@ -49,18 +50,28 @@ $white: $snow;
|
|
|
49
50
|
// Reserved
|
|
50
51
|
// ----------------------------
|
|
51
52
|
|
|
53
|
+
$engine: #cc0000;
|
|
54
|
+
$carrot: #EA6A2E;
|
|
55
|
+
$kendall: #F5CCCC;
|
|
56
|
+
$elizabeth: #FBDED0;
|
|
57
|
+
$andrea: #3A7CDF;
|
|
58
|
+
$celestial: #D7E5F9;
|
|
59
|
+
$golf: #0AA345;
|
|
60
|
+
$memesia: #1F69C3;
|
|
61
|
+
|
|
62
|
+
|
|
52
63
|
// error
|
|
53
|
-
$error:
|
|
54
|
-
$error-bg:
|
|
64
|
+
$error: $engine;
|
|
65
|
+
$error-bg: $kendall;
|
|
55
66
|
$error-focus: #5a0000;
|
|
56
67
|
|
|
57
68
|
// warning
|
|
58
|
-
$warning:
|
|
69
|
+
$warning: $carrot;
|
|
59
70
|
$warning-bg: #fbdfd2;
|
|
60
71
|
$warning-focus: #b33a01;
|
|
61
72
|
|
|
62
73
|
// info
|
|
63
|
-
$info:
|
|
74
|
+
$info: $andrea;
|
|
64
75
|
$info-bg: #d8e5f9;
|
|
65
76
|
|
|
66
77
|
// success
|
|
@@ -68,8 +79,7 @@ $success: $pigment;
|
|
|
68
79
|
$success-bg: $panache;
|
|
69
80
|
|
|
70
81
|
// text link
|
|
71
|
-
$txt-link:
|
|
72
|
-
|
|
82
|
+
$txt-link: $memesia;
|
|
73
83
|
$test-pink: #f09;
|
|
74
84
|
|
|
75
85
|
// --------------------------------------------------------
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
gray: LuiColors.$gray;
|
|
10
10
|
silver: LuiColors.$silver;
|
|
11
11
|
lily: LuiColors.$lily;
|
|
12
|
+
dew: LuiColors.$dew;
|
|
12
13
|
hint: LuiColors.$hint;
|
|
13
14
|
snow: LuiColors.$snow;
|
|
14
15
|
white: LuiColors.$white;
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
electric: LuiColors.$electric;
|
|
20
21
|
spray: LuiColors.$spray;
|
|
21
22
|
polar: LuiColors.$polar;
|
|
23
|
+
memesia: LuiColors.$memesia;
|
|
22
24
|
|
|
23
25
|
sherpa: LuiColors.$sherpa;
|
|
24
26
|
surfie: LuiColors.$surfie;
|
|
@@ -35,6 +37,16 @@
|
|
|
35
37
|
brand-primary: LuiColors.$brand-primary;
|
|
36
38
|
brand-secondary: LuiColors.$brand-secondary;
|
|
37
39
|
|
|
40
|
+
engine: LuiColors.$engine;
|
|
41
|
+
carrot: LuiColors.$carrot;
|
|
42
|
+
kendall: LuiColors.$kendall;
|
|
43
|
+
elizabeth: LuiColors.$elizabeth;
|
|
44
|
+
andrea: LuiColors.$andrea;
|
|
45
|
+
celestial: LuiColors.$celestial;
|
|
46
|
+
golf: LuiColors.$golf;
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
38
50
|
// System colours,// System colours
|
|
39
51
|
|
|
40
52
|
// reserved colours,// reserved colours
|
package/package.json
CHANGED