@sproutsocial/seeds-react-select 1.1.49 → 1.1.52
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +30 -0
- package/dist/select.css +3 -6
- package/package.json +5 -5
- package/src/select.css +3 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -10,12 +10,12 @@ $ tsup --dts && cp src/select.css dist/select.css
|
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mCJS[39m [1mdist/index.js [22m[32m9.83 KB[39m
|
|
12
12
|
[32mCJS[39m [1mdist/index.js.map [22m[32m15.23 KB[39m
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 67ms
|
|
14
14
|
[32mESM[39m [1mdist/esm/index.js [22m[32m7.56 KB[39m
|
|
15
15
|
[32mESM[39m [1mdist/esm/index.js.map [22m[32m15.10 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 68ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 4950ms
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.80 KB[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m1.80 KB[39m
|
|
21
|
-
Done in
|
|
21
|
+
Done in 6.49s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-select
|
|
2
2
|
|
|
3
|
+
## 1.1.52
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e38d258]
|
|
8
|
+
- @sproutsocial/seeds-react-theme@4.5.0
|
|
9
|
+
- @sproutsocial/seeds-react-system-props@3.2.1
|
|
10
|
+
- @sproutsocial/seeds-react-icon@2.5.1
|
|
11
|
+
- @sproutsocial/seeds-react-mixins@4.3.15
|
|
12
|
+
|
|
13
|
+
## 1.1.51
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [3371484]
|
|
18
|
+
- @sproutsocial/seeds-react-icon@2.5.0
|
|
19
|
+
- @sproutsocial/seeds-react-theme@4.4.0
|
|
20
|
+
- @sproutsocial/seeds-react-mixins@4.3.14
|
|
21
|
+
|
|
22
|
+
## 1.1.50
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [56661b6]
|
|
27
|
+
- Updated dependencies [56661b6]
|
|
28
|
+
- @sproutsocial/seeds-react-system-props@3.2.0
|
|
29
|
+
- @sproutsocial/seeds-react-theme@4.3.2
|
|
30
|
+
- @sproutsocial/seeds-react-mixins@4.3.13
|
|
31
|
+
- @sproutsocial/seeds-react-icon@2.4.9
|
|
32
|
+
|
|
3
33
|
## 1.1.49
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/dist/select.css
CHANGED
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
cursor: pointer;
|
|
29
29
|
outline: none;
|
|
30
30
|
appearance: none;
|
|
31
|
-
transition:
|
|
32
|
-
border-color var(--duration-fast) var(--ease-ease_in),
|
|
31
|
+
transition: border-color var(--duration-fast) var(--ease-ease_in),
|
|
33
32
|
box-shadow var(--duration-fast) var(--ease-ease_in);
|
|
34
33
|
font-family: var(--font-family);
|
|
35
34
|
font-weight: var(--font-weight-normal);
|
|
@@ -44,16 +43,14 @@
|
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
.seeds-select .seeds-select-input:focus {
|
|
47
|
-
box-shadow:
|
|
48
|
-
0 0 0 1px var(--color-button-primary-bg-base),
|
|
46
|
+
box-shadow: 0 0 0 1px var(--color-button-primary-bg-base),
|
|
49
47
|
0 0px 0px 4px
|
|
50
48
|
color-mix(in srgb, var(--color-button-primary-bg-base), transparent 70%);
|
|
51
49
|
outline: none;
|
|
52
50
|
}
|
|
53
51
|
|
|
54
52
|
/* Fix for red ring when input is marked required in Firefox */
|
|
55
|
-
.seeds-select
|
|
56
|
-
.seeds-select-input:not(output):not(:focus):-moz-ui-invalid {
|
|
53
|
+
.seeds-select .seeds-select-input:not(output):not(:focus):-moz-ui-invalid {
|
|
57
54
|
box-shadow: none;
|
|
58
55
|
}
|
|
59
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-select",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.52",
|
|
4
4
|
"description": "Seeds React Select",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"test:watch": "jest --watch --coverage=false"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@sproutsocial/seeds-react-theme": "^4.
|
|
22
|
-
"@sproutsocial/seeds-react-system-props": "^3.1
|
|
23
|
-
"@sproutsocial/seeds-react-icon": "^2.
|
|
24
|
-
"@sproutsocial/seeds-react-mixins": "^4.3.
|
|
21
|
+
"@sproutsocial/seeds-react-theme": "^4.5.0",
|
|
22
|
+
"@sproutsocial/seeds-react-system-props": "^3.2.1",
|
|
23
|
+
"@sproutsocial/seeds-react-icon": "^2.5.1",
|
|
24
|
+
"@sproutsocial/seeds-react-mixins": "^4.3.15"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/react": "^18.0.0",
|
package/src/select.css
CHANGED
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
cursor: pointer;
|
|
29
29
|
outline: none;
|
|
30
30
|
appearance: none;
|
|
31
|
-
transition:
|
|
32
|
-
border-color var(--duration-fast) var(--ease-ease_in),
|
|
31
|
+
transition: border-color var(--duration-fast) var(--ease-ease_in),
|
|
33
32
|
box-shadow var(--duration-fast) var(--ease-ease_in);
|
|
34
33
|
font-family: var(--font-family);
|
|
35
34
|
font-weight: var(--font-weight-normal);
|
|
@@ -44,16 +43,14 @@
|
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
.seeds-select .seeds-select-input:focus {
|
|
47
|
-
box-shadow:
|
|
48
|
-
0 0 0 1px var(--color-button-primary-bg-base),
|
|
46
|
+
box-shadow: 0 0 0 1px var(--color-button-primary-bg-base),
|
|
49
47
|
0 0px 0px 4px
|
|
50
48
|
color-mix(in srgb, var(--color-button-primary-bg-base), transparent 70%);
|
|
51
49
|
outline: none;
|
|
52
50
|
}
|
|
53
51
|
|
|
54
52
|
/* Fix for red ring when input is marked required in Firefox */
|
|
55
|
-
.seeds-select
|
|
56
|
-
.seeds-select-input:not(output):not(:focus):-moz-ui-invalid {
|
|
53
|
+
.seeds-select .seeds-select-input:not(output):not(:focus):-moz-ui-invalid {
|
|
57
54
|
box-shadow: none;
|
|
58
55
|
}
|
|
59
56
|
|