social-logos 3.3.14 → 3.3.16
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 +10 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [3.3.16] - 2026-05-25
|
|
2
|
+
### Added
|
|
3
|
+
- Expose `social-logo-colors.css` via a `colors.css` sub-path export, and define the missing `--color-bluesky` brand variable. [#48829]
|
|
4
|
+
|
|
5
|
+
## [3.3.15] - 2026-05-19
|
|
6
|
+
### Changed
|
|
7
|
+
- Internal updates.
|
|
8
|
+
|
|
1
9
|
## [3.3.14] - 2026-05-04
|
|
2
10
|
### Changed
|
|
3
11
|
- Internal: No longer require automattic/jetpack-changelogger as a per-project dev dependency. [#48225]
|
|
@@ -332,6 +340,8 @@
|
|
|
332
340
|
|
|
333
341
|
- Build: Refactored (aligned build system with Gridicons).
|
|
334
342
|
|
|
343
|
+
[3.3.16]: https://github.com/Automattic/social-logos/compare/v3.3.15...v3.3.16
|
|
344
|
+
[3.3.15]: https://github.com/Automattic/social-logos/compare/v3.3.14...v3.3.15
|
|
335
345
|
[3.3.14]: https://github.com/Automattic/social-logos/compare/v3.3.13...v3.3.14
|
|
336
346
|
[3.3.13]: https://github.com/Automattic/social-logos/compare/v3.3.12...v3.3.13
|
|
337
347
|
[3.3.12]: https://github.com/Automattic/social-logos/compare/v3.3.11...v3.3.12
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-logos",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.16",
|
|
4
4
|
"description": "A repository of all the social logos used on WordPress.com.",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/social-logos/",
|
|
6
6
|
"author": "Automattic",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"license": "GPL-2.0+",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": "./build/react/index.js",
|
|
17
|
+
"./colors.css": "./src/social-logo-colors.css",
|
|
17
18
|
"./font/*": "./build/font/*",
|
|
18
19
|
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg"
|
|
19
20
|
},
|