@entur/form 9.3.6 → 9.3.8
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/styles.css +12 -12
- package/package.json +8 -8
package/dist/styles.css
CHANGED
|
@@ -831,9 +831,9 @@
|
|
|
831
831
|
padding:0;
|
|
832
832
|
}
|
|
833
833
|
.eds-textarea__label .eds-form-control-wrapper--is-filled .eds-input-group__label{
|
|
834
|
-
-webkit-box-shadow:
|
|
835
|
-
-moz-box-shadow:
|
|
836
|
-
box-shadow:
|
|
834
|
+
-webkit-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
835
|
+
-moz-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
836
|
+
box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
837
837
|
background:var(--textarea-label-background);
|
|
838
838
|
width:-webkit-calc(100% - 1rem - 1rem - 4px);
|
|
839
839
|
width:-moz-calc(100% - 1rem - 1rem - 4px);
|
|
@@ -858,9 +858,9 @@
|
|
|
858
858
|
padding:0;
|
|
859
859
|
}
|
|
860
860
|
.eds-textarea__label .eds-input-group__label--filled{
|
|
861
|
-
-webkit-box-shadow:
|
|
862
|
-
-moz-box-shadow:
|
|
863
|
-
box-shadow:
|
|
861
|
+
-webkit-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
862
|
+
-moz-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
863
|
+
box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
864
864
|
background:var(--textarea-label-background);
|
|
865
865
|
width:-webkit-calc(100% - 1rem - 1rem - 4px);
|
|
866
866
|
width:-moz-calc(100% - 1rem - 1rem - 4px);
|
|
@@ -881,9 +881,9 @@
|
|
|
881
881
|
padding:0;
|
|
882
882
|
}
|
|
883
883
|
.eds-textarea__label .eds-form-control-wrapper:focus-within :not(.eds-input-group-label-wrapper--controlled-label-position) .eds-input-group__label{
|
|
884
|
-
-webkit-box-shadow:
|
|
885
|
-
-moz-box-shadow:
|
|
886
|
-
box-shadow:
|
|
884
|
+
-webkit-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
885
|
+
-moz-box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
886
|
+
box-shadow:0 -2px 0 4px var(--textarea-label-background);
|
|
887
887
|
background:var(--textarea-label-background);
|
|
888
888
|
width:-webkit-calc(100% - 1rem - 1rem - 4px);
|
|
889
889
|
width:-moz-calc(100% - 1rem - 1rem - 4px);
|
|
@@ -1858,9 +1858,9 @@
|
|
|
1858
1858
|
-webkit-border-radius:1.5rem;
|
|
1859
1859
|
-moz-border-radius:1.5rem;
|
|
1860
1860
|
border-radius:1.5rem;
|
|
1861
|
-
-webkit-box-shadow:inset
|
|
1862
|
-
-moz-box-shadow:inset
|
|
1863
|
-
box-shadow:inset
|
|
1861
|
+
-webkit-box-shadow:inset 0 2px 2px -1px rgba(0, 0, 0, 0.1);
|
|
1862
|
+
-moz-box-shadow:inset 0 2px 2px -1px rgba(0, 0, 0, 0.1);
|
|
1863
|
+
box-shadow:inset 0 2px 2px -1px rgba(0, 0, 0, 0.1);
|
|
1864
1864
|
}
|
|
1865
1865
|
.eds-contrast .eds-switch__switch{
|
|
1866
1866
|
background-color:var(--components-form-switch-contrast-fill-false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/form",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.8",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/form.cjs.js",
|
|
6
6
|
"module": "dist/form.esm.js",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"react-dom": ">=16.8.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@entur/button": "^4.0.
|
|
30
|
-
"@entur/icons": "^9.0.
|
|
31
|
-
"@entur/tokens": "^3.
|
|
32
|
-
"@entur/tooltip": "^5.3.
|
|
33
|
-
"@entur/typography": "^2.1.
|
|
34
|
-
"@entur/utils": "^0.13.
|
|
29
|
+
"@entur/button": "^4.0.11",
|
|
30
|
+
"@entur/icons": "^9.0.4",
|
|
31
|
+
"@entur/tokens": "^3.24.0",
|
|
32
|
+
"@entur/tooltip": "^5.3.16",
|
|
33
|
+
"@entur/typography": "^2.1.12",
|
|
34
|
+
"@entur/utils": "^0.13.6",
|
|
35
35
|
"classnames": "^2.5.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"vite": "^7.3.2",
|
|
47
47
|
"vite-plugin-dts": "^4.5.4"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "801efcdaddd24c63ea7b9198ffe8902cac9477ab"
|
|
50
50
|
}
|