@lucca-front/scss 21.0.2 → 21.1.0-rc.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/dist/lucca-front.min.css +1 -1
- package/package.json +2 -2
- package/src/commons/config.scss +1 -1
- package/src/components/formPresentation/component.scss +18 -0
- package/src/components/formPresentation/exports.scss +4 -0
- package/src/components/formPresentation/index.scss +14 -0
- package/src/components/formPresentation/mods.scss +3 -0
- package/src/components/formPresentation/states.scss +0 -0
- package/src/components/formPresentation/vars.scss +5 -0
- package/src/components/index.scss +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucca-front/scss",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.1.0-rc.0",
|
|
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": "21.0.
|
|
26
|
+
"@lucca-front/icons": "21.1.0-rc.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/src/commons/config.scss
CHANGED
|
@@ -613,7 +613,7 @@ $colorInput: (
|
|
|
613
613
|
icon-disabled: var(--palettes-neutral-500),
|
|
614
614
|
background: var(--palettes-neutral-0),
|
|
615
615
|
background-critical: var(--palettes-critical-50),
|
|
616
|
-
background-disabled: var(--palettes-neutral-
|
|
616
|
+
background-disabled: var(--palettes-neutral-50),
|
|
617
617
|
border: var(--palettes-neutral-300),
|
|
618
618
|
border-hover: var(--palettes-neutral-400),
|
|
619
619
|
border-checked: var(--palettes-product-400),
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@use '@lucca-front/scss/src/commons/utils/namespace';
|
|
2
|
+
|
|
3
|
+
@mixin component($atRoot: namespace.$defaultAtRoot) {
|
|
4
|
+
@at-root ($atRoot) {
|
|
5
|
+
.formPresentation-description {
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.formPresentation-description-term {
|
|
10
|
+
display: var(--components-formPresentation-description-term-display);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.formPresentation-description-definition {
|
|
14
|
+
display: var(--components-formPresentation-description-definition-display);
|
|
15
|
+
margin: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
@mixin vars {
|
|
2
|
+
--components-formPresentation-description-child-display: block;
|
|
3
|
+
--components-formPresentation-description-term-display: var(--components-formPresentation-description-child-display);
|
|
4
|
+
--components-formPresentation-description-definition-display: var(--components-formPresentation-description-child-display);
|
|
5
|
+
}
|