@sproutsocial/seeds-react-menu 0.4.0 → 0.4.1
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 +6 -6
- package/CHANGELOG.md +18 -0
- package/package.json +12 -12
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,14 +8,14 @@ CLI Target: es2022
|
|
|
8
8
|
CLI Cleaning output folder
|
|
9
9
|
CJS Build start
|
|
10
10
|
ESM Build start
|
|
11
|
-
CJS dist/index.js 90.75 KB
|
|
12
|
-
CJS dist/index.js.map 265.73 KB
|
|
13
|
-
CJS ⚡️ Build success in 873ms
|
|
14
11
|
ESM dist/esm/index.js 85.79 KB
|
|
15
12
|
ESM dist/esm/index.js.map 264.83 KB
|
|
16
|
-
ESM ⚡️ Build success in
|
|
13
|
+
ESM ⚡️ Build success in 892ms
|
|
14
|
+
CJS dist/index.js 90.75 KB
|
|
15
|
+
CJS dist/index.js.map 265.73 KB
|
|
16
|
+
CJS ⚡️ Build success in 925ms
|
|
17
17
|
DTS Build start
|
|
18
|
-
DTS ⚡️ Build success in
|
|
18
|
+
DTS ⚡️ Build success in 30662ms
|
|
19
19
|
DTS dist/index.d.ts 17.70 KB
|
|
20
20
|
DTS dist/index.d.mts 17.70 KB
|
|
21
|
-
Done in
|
|
21
|
+
Done in 38.03s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-menu
|
|
2
2
|
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9fd8bac: Update dependencies to use semantic package version instead of wildcards
|
|
8
|
+
- Updated dependencies [9fd8bac]
|
|
9
|
+
- @sproutsocial/seeds-react-system-props@3.0.2
|
|
10
|
+
- @sproutsocial/seeds-react-checkbox@1.3.1
|
|
11
|
+
- @sproutsocial/seeds-react-button@1.2.1
|
|
12
|
+
- @sproutsocial/seeds-react-popout@2.1.1
|
|
13
|
+
- @sproutsocial/seeds-react-switch@1.2.1
|
|
14
|
+
- @sproutsocial/seeds-react-input@1.3.2
|
|
15
|
+
- @sproutsocial/seeds-react-label@1.0.1
|
|
16
|
+
- @sproutsocial/seeds-react-radio@1.2.1
|
|
17
|
+
- @sproutsocial/seeds-react-theme@2.2.1
|
|
18
|
+
- @sproutsocial/seeds-react-icon@1.1.2
|
|
19
|
+
- @sproutsocial/seeds-react-box@1.1.2
|
|
20
|
+
|
|
3
21
|
## 0.4.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-menu",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Seeds React Menu",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"test:watch": "jest --watch --coverage=false"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@sproutsocial/seeds-react-box": "
|
|
21
|
-
"@sproutsocial/seeds-react-button": "
|
|
22
|
-
"@sproutsocial/seeds-react-checkbox": "
|
|
23
|
-
"@sproutsocial/seeds-react-icon": "
|
|
24
|
-
"@sproutsocial/seeds-react-input": "
|
|
25
|
-
"@sproutsocial/seeds-react-label": "
|
|
26
|
-
"@sproutsocial/seeds-react-popout": "
|
|
27
|
-
"@sproutsocial/seeds-react-radio": "
|
|
28
|
-
"@sproutsocial/seeds-react-switch": "
|
|
29
|
-
"@sproutsocial/seeds-react-system-props": "
|
|
30
|
-
"@sproutsocial/seeds-react-theme": "
|
|
20
|
+
"@sproutsocial/seeds-react-box": "^1.1.1",
|
|
21
|
+
"@sproutsocial/seeds-react-button": "^1.2.0",
|
|
22
|
+
"@sproutsocial/seeds-react-checkbox": "^1.3.0",
|
|
23
|
+
"@sproutsocial/seeds-react-icon": "^1.1.1",
|
|
24
|
+
"@sproutsocial/seeds-react-input": "^1.3.1",
|
|
25
|
+
"@sproutsocial/seeds-react-label": "^1.0.0",
|
|
26
|
+
"@sproutsocial/seeds-react-popout": "^2.1.0",
|
|
27
|
+
"@sproutsocial/seeds-react-radio": "^1.2.0",
|
|
28
|
+
"@sproutsocial/seeds-react-switch": "^1.2.0",
|
|
29
|
+
"@sproutsocial/seeds-react-system-props": "^3.0.1",
|
|
30
|
+
"@sproutsocial/seeds-react-theme": "^2.2.0",
|
|
31
31
|
"downshift": "9.0.4",
|
|
32
32
|
"motion": "^11.11.17"
|
|
33
33
|
},
|