@lucca-front/scss 19.3.3-rc.4 → 19.3.3-rc.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucca-front/scss",
|
|
3
|
-
"version": "19.3.3-rc.
|
|
3
|
+
"version": "19.3.3-rc.7",
|
|
4
4
|
"description": "A Sass framework for Lucca products.",
|
|
5
5
|
"main": "src/main.scss",
|
|
6
6
|
"scripts": {},
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"normalize.css": "^8.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@lucca-front/icons": "19.3.3-rc.
|
|
26
|
+
"@lucca-front/icons": "19.3.3-rc.7"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -17,9 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
display: var(--components-highlightData-display);
|
|
19
19
|
grid-template-columns: 1fr auto;
|
|
20
|
-
grid-template-areas:
|
|
21
|
-
'title action'
|
|
22
|
-
'value action';
|
|
20
|
+
grid-template-areas: var(--components-highlightData-grid);
|
|
23
21
|
align-items: var(--components-highlightData-alignItem);
|
|
24
22
|
flex-direction: column;
|
|
25
23
|
column-gap: var(--components-highlightData-gap);
|
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@mixin valueFirst {
|
|
12
|
+
--components-highlightData-grid : 'value action'
|
|
13
|
+
'title action';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@mixin valueFirstIllustrations {
|
|
12
18
|
--components-highlightData-value-order: -1;
|
|
13
19
|
}
|
|
14
20
|
|
|
@@ -40,4 +46,4 @@
|
|
|
40
46
|
|
|
41
47
|
@mixin narrow {
|
|
42
48
|
--components-highlightData-illustrations-display: none;
|
|
43
|
-
}
|
|
49
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@mixin vars {
|
|
2
2
|
--components-highlightData-display: grid;
|
|
3
|
+
--components-highlightData-grid: 'title action'
|
|
4
|
+
'value action';
|
|
3
5
|
--components-highlightData-alignItem: center;
|
|
4
6
|
--components-highlightData-background: var(--pr-t-elevation-surface-raised);
|
|
5
7
|
--components-highlightData-padding-inline: var(--pr-t-spacings-200);
|