@plone/volto 19.0.0-alpha.33 → 19.0.0-alpha.35
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
CHANGED
|
@@ -17,6 +17,18 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 19.0.0-alpha.35 (2026-05-08)
|
|
21
|
+
|
|
22
|
+
### Internal
|
|
23
|
+
|
|
24
|
+
- Release for updating needed and conflicting typings. @sneridagh
|
|
25
|
+
|
|
26
|
+
## 19.0.0-alpha.34 (2026-05-07)
|
|
27
|
+
|
|
28
|
+
### Bugfix
|
|
29
|
+
|
|
30
|
+
- Replace hard-coded color values with Semantic UI theme variables for input field to improve accessibility. @Wagner3UB [#8044](https://github.com/plone/volto/issues/8044)
|
|
31
|
+
|
|
20
32
|
## 19.0.0-alpha.33 (2026-05-04)
|
|
21
33
|
|
|
22
34
|
### Breaking
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"version": "19.0.0-alpha.
|
|
12
|
+
"version": "19.0.0-alpha.35",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "git@github.com:plone/volto.git"
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"@dnd-kit/utilities": "3.2.2",
|
|
94
94
|
"@loadable/component": "5.16.7",
|
|
95
95
|
"@loadable/server": "5.16.7",
|
|
96
|
-
"react-aria-components": "^1.17.0",
|
|
97
96
|
"@redux-devtools/extension": "^3.3.0",
|
|
98
97
|
"classnames": "2.5.1",
|
|
99
98
|
"connected-react-router": "6.8.0",
|
|
@@ -133,6 +132,7 @@
|
|
|
133
132
|
"react": "18.2.0",
|
|
134
133
|
"react-anchor-link-smooth-scroll": "1.0.12",
|
|
135
134
|
"react-animate-height": "2.0.17",
|
|
135
|
+
"react-aria-components": "^1.17.0",
|
|
136
136
|
"react-beautiful-dnd": "13.0.0",
|
|
137
137
|
"react-cookie": "4.1.1",
|
|
138
138
|
"react-dates": "21.8.0",
|
|
@@ -180,10 +180,10 @@
|
|
|
180
180
|
"url": "^0.11.3",
|
|
181
181
|
"use-deep-compare-effect": "1.8.1",
|
|
182
182
|
"uuid": "^14.0.0",
|
|
183
|
-
"@plone/
|
|
184
|
-
"@plone/
|
|
185
|
-
"@plone/volto-slate": "19.0.0-alpha.
|
|
186
|
-
"@plone/
|
|
183
|
+
"@plone/scripts": "4.0.0-alpha.7",
|
|
184
|
+
"@plone/registry": "3.0.0-alpha.12",
|
|
185
|
+
"@plone/volto-slate": "19.0.0-alpha.16",
|
|
186
|
+
"@plone/components": "4.0.0-alpha.8"
|
|
187
187
|
},
|
|
188
188
|
"devDependencies": {
|
|
189
189
|
"@babel/core": "^7.28.5",
|
|
@@ -289,11 +289,11 @@
|
|
|
289
289
|
"webpack-bundle-analyzer": "4.10.1",
|
|
290
290
|
"webpack-dev-server": "^5.2.3",
|
|
291
291
|
"webpack-node-externals": "3.0.0",
|
|
292
|
-
"@plone/babel-preset-razzle": "^1.0.0-alpha.0",
|
|
293
|
-
"@plone/volto-coresandbox": "1.0.0",
|
|
294
292
|
"@plone/razzle": "1.0.0-alpha.5",
|
|
295
|
-
"@plone/
|
|
296
|
-
"@plone/types": "2.0.0-alpha.
|
|
293
|
+
"@plone/babel-preset-razzle": "^1.0.0-alpha.1",
|
|
294
|
+
"@plone/types": "2.0.0-alpha.19",
|
|
295
|
+
"@plone/volto-coresandbox": "1.0.0",
|
|
296
|
+
"@plone/razzle-dev-utils": "1.0.0-alpha.3"
|
|
297
297
|
},
|
|
298
298
|
"scripts": {
|
|
299
299
|
"analyze": "BUNDLE_ANALYZE=true razzle build",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
|
|
83
83
|
/* Input Text Color */
|
|
84
84
|
@inputColor: @textColor;
|
|
85
|
-
@inputPlaceholderColor: lighten(@inputColor,
|
|
86
|
-
@inputPlaceholderFocusColor: lighten(@inputColor,
|
|
85
|
+
@inputPlaceholderColor: lighten(@inputColor, 35);
|
|
86
|
+
@inputPlaceholderFocusColor: lighten(@inputColor, 65);
|
|
87
87
|
|
|
88
88
|
/* Line Height Default For Inputs in Browser (Descenders are 17px at 14px base em) */
|
|
89
89
|
@inputLineHeight: unit((17 / 14), em);
|
|
@@ -970,4 +970,4 @@
|
|
|
970
970
|
/*--- Light Tones ---*/
|
|
971
971
|
@whiteActive : darken(@white, 5);
|
|
972
972
|
@offWhiteActive : darken(@offWhite, 5);
|
|
973
|
-
@darkWhiteActive : darken(@darkWhite, 5);
|
|
973
|
+
@darkWhiteActive : darken(@darkWhite, 5);
|