@sproutsocial/seeds-react-accordion 0.1.6 → 0.2.0
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 +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/esm/index.js +1057 -18
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1032 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/Accordion.stories.tsx +8 -18
- package/src/AccordionTrigger.tsx +2 -0
- package/src/AccordionTypes.ts +3 -3
- package/src/__tests__/accordion.test.tsx +34 -2
- package/src/styles.ts +5 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,14 +8,14 @@ $ tsup --dts
|
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m42.53 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m73.15 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 247ms
|
|
14
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m40.05 KB[39m
|
|
15
|
+
[32mESM[39m [1mdist/esm/index.js.map [22m[32m72.80 KB[39m
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 248ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 13156ms
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m2.66 KB[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m2.66 KB[39m
|
|
21
|
-
Done in 15.
|
|
21
|
+
Done in 15.85s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-accordion
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e358735: add fontSize and typeScale to AccordionTrigger and AccordionContent respectively
|
|
8
|
+
|
|
9
|
+
## 0.1.7
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6302712: Switched Accordion defaultValue prop type from [string] to string[]
|
|
14
|
+
|
|
3
15
|
## 0.1.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|