@sproutsocial/seeds-react-card 1.0.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/.eslintignore +6 -0
- package/.eslintrc.js +4 -0
- package/.turbo/turbo-build.log +21 -0
- package/CHANGELOG.md +8 -0
- package/dist/esm/index.js +1357 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/index.d.mts +88 -0
- package/dist/index.d.ts +88 -0
- package/dist/index.js +1375 -0
- package/dist/index.js.map +1 -0
- package/jest.config.js +9 -0
- package/package.json +51 -0
- package/src/Card.feature +122 -0
- package/src/Card.stories.tsx +389 -0
- package/src/Card.tsx +73 -0
- package/src/CardTypes.ts +104 -0
- package/src/__tests__/Card.test.tsx +264 -0
- package/src/__tests__/CardTypes.typetest.tsx +76 -0
- package/src/index.ts +6 -0
- package/src/styles.tsx +171 -0
- package/src/subComponents.tsx +110 -0
- package/src/utils.ts +61 -0
- package/tsconfig.json +9 -0
- package/tsup.config.ts +12 -0
package/.eslintignore
ADDED
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
yarn run v1.22.22
|
|
2
|
+
$ tsup --dts
|
|
3
|
+
CLI Building entry: src/index.ts
|
|
4
|
+
CLI Using tsconfig: tsconfig.json
|
|
5
|
+
CLI tsup v8.0.2
|
|
6
|
+
CLI Using tsup config: /home/runner/work/seeds/seeds/seeds-react/seeds-react-card/tsup.config.ts
|
|
7
|
+
CLI Target: es2022
|
|
8
|
+
CLI Cleaning output folder
|
|
9
|
+
CJS Build start
|
|
10
|
+
ESM Build start
|
|
11
|
+
CJS dist/index.js 37.67 KB
|
|
12
|
+
CJS dist/index.js.map 70.82 KB
|
|
13
|
+
CJS ⚡️ Build success in 99ms
|
|
14
|
+
ESM dist/esm/index.js 36.27 KB
|
|
15
|
+
ESM dist/esm/index.js.map 70.78 KB
|
|
16
|
+
ESM ⚡️ Build success in 99ms
|
|
17
|
+
DTS Build start
|
|
18
|
+
DTS ⚡️ Build success in 9831ms
|
|
19
|
+
DTS dist/index.d.ts 4.08 KB
|
|
20
|
+
DTS dist/index.d.mts 4.08 KB
|
|
21
|
+
Done in 11.46s.
|