@adobe/spectrum-tokens 12.8.0 → 12.9.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 +16 -0
- package/dist/json/drover.json +3 -0
- package/dist/json/variables.json +5 -1
- package/package.json +1 -1
- package/src/color-component.json +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @adobe/spectrum-tokens
|
|
2
2
|
|
|
3
|
+
## 12.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fe7a002: Fixed typo by adding correct token (`floating-action-button-drop-shadow-color`) and deprecating incorrect token name (`floating-action-button-shadow-color`).
|
|
8
|
+
|
|
9
|
+
## Token Diff
|
|
10
|
+
|
|
11
|
+
_Token added (1):_
|
|
12
|
+
|
|
13
|
+
- `floating-action-button-drop-shadow-color`
|
|
14
|
+
|
|
15
|
+
_Newly deprecated token (1):_
|
|
16
|
+
|
|
17
|
+
- `floating-action-button-shadow-color` (use `floating-action-button-drop-shadow-color` instead)
|
|
18
|
+
|
|
3
19
|
## 12.8.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/json/drover.json
CHANGED
|
@@ -128,6 +128,7 @@
|
|
|
128
128
|
"disabled-static-white-content-color": "rgba(255, 255, 255, 0.55)",
|
|
129
129
|
"drop-shadow-color": "rgba(0, 0, 0, 0.15)",
|
|
130
130
|
"drop-zone-background-color": "rgb(20, 122, 243)",
|
|
131
|
+
"floating-action-button-drop-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
131
132
|
"floating-action-button-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
132
133
|
"focus-indicator-color": "rgb(20, 122, 243)",
|
|
133
134
|
"fuchsia-100": "rgb(255, 233, 252)",
|
|
@@ -548,6 +549,7 @@
|
|
|
548
549
|
"disabled-static-white-content-color": "rgba(255, 255, 255, 0.55)",
|
|
549
550
|
"drop-shadow-color": "rgba(0, 0, 0, 0.5)",
|
|
550
551
|
"drop-zone-background-color": "rgb(114, 183, 249)",
|
|
552
|
+
"floating-action-button-drop-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
551
553
|
"floating-action-button-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
552
554
|
"focus-indicator-color": "rgb(84, 163, 246)",
|
|
553
555
|
"fuchsia-100": "rgb(107, 3, 106)",
|
|
@@ -968,6 +970,7 @@
|
|
|
968
970
|
"disabled-static-white-content-color": "rgba(255, 255, 255, 0.55)",
|
|
969
971
|
"drop-shadow-color": "rgba(0, 0, 0, 0.8)",
|
|
970
972
|
"drop-zone-background-color": "rgb(94, 170, 247)",
|
|
973
|
+
"floating-action-button-drop-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
971
974
|
"floating-action-button-shadow-color": "rgba(0, 0, 0, 0.25)",
|
|
972
975
|
"focus-indicator-color": "rgb(64, 150, 243)",
|
|
973
976
|
"fuchsia-100": "rgb(70, 14, 68)",
|
package/dist/json/variables.json
CHANGED
|
@@ -6115,10 +6115,14 @@
|
|
|
6115
6115
|
}
|
|
6116
6116
|
}
|
|
6117
6117
|
},
|
|
6118
|
-
"floating-action-button-shadow-color": {
|
|
6118
|
+
"floating-action-button-drop-shadow-color": {
|
|
6119
6119
|
"ref": "{transparent-black-300}",
|
|
6120
6120
|
"value": "rgba(0, 0, 0, 0.25)"
|
|
6121
6121
|
},
|
|
6122
|
+
"floating-action-button-shadow-color": {
|
|
6123
|
+
"ref": "{floating-action-button-drop-shadow-color}",
|
|
6124
|
+
"value": "rgba(0, 0, 0, 0.25)"
|
|
6125
|
+
},
|
|
6122
6126
|
"white": {
|
|
6123
6127
|
"value": "rgb(255, 255, 255)"
|
|
6124
6128
|
},
|
package/package.json
CHANGED
package/src/color-component.json
CHANGED
|
@@ -139,8 +139,14 @@
|
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
},
|
|
142
|
-
"floating-action-button-shadow-color": {
|
|
142
|
+
"floating-action-button-drop-shadow-color": {
|
|
143
143
|
"component": "floating-action-button",
|
|
144
144
|
"value": "{transparent-black-300}"
|
|
145
|
+
},
|
|
146
|
+
"floating-action-button-shadow-color": {
|
|
147
|
+
"component": "floating-action-button",
|
|
148
|
+
"deprecated": true,
|
|
149
|
+
"deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead",
|
|
150
|
+
"value": "{floating-action-button-drop-shadow-color}"
|
|
145
151
|
}
|
|
146
152
|
}
|