social-logos 3.2.6 → 3.2.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/CHANGELOG.md +10 -0
- package/build/css/example.css +7 -7
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [3.2.8] - 2025-08-04
|
|
2
|
+
### Changed
|
|
3
|
+
- Internal updates.
|
|
4
|
+
|
|
5
|
+
## [3.2.7] - 2025-07-23
|
|
6
|
+
### Changed
|
|
7
|
+
- Internal updates.
|
|
8
|
+
|
|
1
9
|
## [3.2.6] - 2025-07-21
|
|
2
10
|
### Changed
|
|
3
11
|
- Internal updates.
|
|
@@ -244,6 +252,8 @@
|
|
|
244
252
|
|
|
245
253
|
- Build: Refactored (aligned build system with Gridicons).
|
|
246
254
|
|
|
255
|
+
[3.2.8]: https://github.com/Automattic/social-logos/compare/v3.2.7...v3.2.8
|
|
256
|
+
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
247
257
|
[3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
|
|
248
258
|
[3.2.5]: https://github.com/Automattic/social-logos/compare/v3.2.4...v3.2.5
|
|
249
259
|
[3.2.4]: https://github.com/Automattic/social-logos/compare/v3.2.3...v3.2.4
|
package/build/css/example.css
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
display: flex;
|
|
31
31
|
flex-wrap: wrap;
|
|
32
32
|
justify-content: center;
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
div {
|
|
35
35
|
width: 64px;
|
|
36
36
|
height: 64px;
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
bottom: 0;
|
|
97
97
|
border: 2px solid #808080;
|
|
98
98
|
border-radius: 10px;
|
|
99
|
-
transition: .4s;
|
|
99
|
+
transition: 0.4s;
|
|
100
100
|
box-sizing: border-box;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -109,20 +109,20 @@
|
|
|
109
109
|
bottom: 2px;
|
|
110
110
|
background: #808080;
|
|
111
111
|
border-radius: 50%;
|
|
112
|
-
transition: .4s;
|
|
112
|
+
transition: 0.4s;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
input:checked + .handle {
|
|
116
|
-
border-color: #
|
|
116
|
+
border-color: #3aa662;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
input:checked + .handle::before {
|
|
120
|
-
background: #
|
|
120
|
+
background: #3aa662;
|
|
121
121
|
transform: translateX(20px);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
input:focus + .handle {
|
|
125
|
-
box-shadow: 0 0 3px #
|
|
125
|
+
box-shadow: 0 0 3px #2196f3;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
|
|
@@ -130,5 +130,5 @@
|
|
|
130
130
|
text-align: center;
|
|
131
131
|
margin-bottom: 2em;
|
|
132
132
|
}
|
|
133
|
-
|
|
133
|
+
|
|
134
134
|
}
|
package/package.json
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-logos",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
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
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] Social Logos"
|
|
8
8
|
},
|
|
9
|
-
"main": "build/react/index.js",
|
|
10
|
-
"types": "build/react/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": "./build/react/index.js",
|
|
13
|
-
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg",
|
|
14
|
-
"./font/*": "./build/font/*"
|
|
15
|
-
},
|
|
16
|
-
"peerDependencies": {
|
|
17
|
-
"react": "^18.0.0",
|
|
18
|
-
"react-dom": "^18.0.0"
|
|
19
|
-
},
|
|
20
9
|
"repository": {
|
|
21
10
|
"type": "git",
|
|
22
11
|
"url": "https://github.com/Automattic/jetpack.git",
|
|
23
12
|
"directory": "projects/js-packages/social-logos"
|
|
24
13
|
},
|
|
25
14
|
"license": "GPL-2.0+",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./build/react/index.js",
|
|
17
|
+
"./font/*": "./build/font/*",
|
|
18
|
+
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg"
|
|
19
|
+
},
|
|
20
|
+
"main": "build/react/index.js",
|
|
21
|
+
"types": "build/react/index.d.ts",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "./tools/build"
|
|
24
|
+
},
|
|
26
25
|
"dependencies": {
|
|
27
26
|
"prop-types": "^15.8.1",
|
|
28
27
|
"react": "18.3.1",
|
|
@@ -40,7 +39,8 @@
|
|
|
40
39
|
"wawoff2": "^2.0.1",
|
|
41
40
|
"xml2js": "^0.6.2"
|
|
42
41
|
},
|
|
43
|
-
"
|
|
44
|
-
"
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": "^18.0.0",
|
|
44
|
+
"react-dom": "^18.0.0"
|
|
45
45
|
}
|
|
46
46
|
}
|