@sproutsocial/seeds-react-select 1.1.48 → 1.1.51
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 +28 -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 107ms
|
|
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 108ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 6026ms
|
|
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 7.74s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-select
|
|
2
2
|
|
|
3
|
+
## 1.1.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3371484]
|
|
8
|
+
- @sproutsocial/seeds-react-icon@2.5.0
|
|
9
|
+
- @sproutsocial/seeds-react-theme@4.4.0
|
|
10
|
+
- @sproutsocial/seeds-react-mixins@4.3.14
|
|
11
|
+
|
|
12
|
+
## 1.1.50
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [56661b6]
|
|
17
|
+
- Updated dependencies [56661b6]
|
|
18
|
+
- @sproutsocial/seeds-react-system-props@3.2.0
|
|
19
|
+
- @sproutsocial/seeds-react-theme@4.3.2
|
|
20
|
+
- @sproutsocial/seeds-react-mixins@4.3.13
|
|
21
|
+
- @sproutsocial/seeds-react-icon@2.4.9
|
|
22
|
+
|
|
23
|
+
## 1.1.49
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [ef91a0d]
|
|
28
|
+
- @sproutsocial/seeds-react-system-props@3.1.4
|
|
29
|
+
- @sproutsocial/seeds-react-icon@2.4.8
|
|
30
|
+
|
|
3
31
|
## 1.1.48
|
|
4
32
|
|
|
5
33
|
### 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.51",
|
|
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.
|
|
23
|
-
"@sproutsocial/seeds-react-icon": "^2.
|
|
24
|
-
"@sproutsocial/seeds-react-mixins": "^4.3.
|
|
21
|
+
"@sproutsocial/seeds-react-theme": "^4.4.0",
|
|
22
|
+
"@sproutsocial/seeds-react-system-props": "^3.2.0",
|
|
23
|
+
"@sproutsocial/seeds-react-icon": "^2.5.0",
|
|
24
|
+
"@sproutsocial/seeds-react-mixins": "^4.3.14"
|
|
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
|
|