@giv-igniteui/react 2.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/.eslintrc.json +3 -0
- package/.turbo/turbo-build.log +18 -0
- package/CHANGELOG.md +7 -0
- package/dist/index.d.mts +1682 -0
- package/dist/index.d.ts +1682 -0
- package/dist/index.js +546 -0
- package/dist/index.mjs +504 -0
- package/package.json +32 -0
- package/src/components/Avatar/index.tsx +18 -0
- package/src/components/Avatar/styles.ts +29 -0
- package/src/components/Box.tsx +12 -0
- package/src/components/Button.tsx +84 -0
- package/src/components/Checkbox/index.tsx +20 -0
- package/src/components/Checkbox/styles.ts +55 -0
- package/src/components/Heading.tsx +27 -0
- package/src/components/MultiStep/index.tsx +23 -0
- package/src/components/MultiStep/styles.ts +33 -0
- package/src/components/Text.tsx +32 -0
- package/src/components/TextArea.tsx +34 -0
- package/src/components/TextInput/index.tsx +17 -0
- package/src/components/TextInput/styles.ts +43 -0
- package/src/index.tsx +9 -0
- package/src/styles/index.ts +36 -0
- package/tsconfig.json +6 -0
package/.eslintrc.json
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
> @giv-igniteui/react@2.0.0 build
|
3
|
+
> tsup src/index.tsx --format esm,cjs --dts --external react
|
4
|
+
|
5
|
+
[34mCLI[39m Building entry: src/index.tsx
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
7
|
+
[34mCLI[39m tsup v8.3.5
|
8
|
+
[34mCLI[39m Target: es6
|
9
|
+
[34mESM[39m Build start
|
10
|
+
[34mCJS[39m Build start
|
11
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m11.16 KB[39m
|
12
|
+
[32mESM[39m ⚡️ Build success in 88ms
|
13
|
+
[32mCJS[39m [1mdist\index.js [22m[32m13.25 KB[39m
|
14
|
+
[32mCJS[39m ⚡️ Build success in 90ms
|
15
|
+
[34mDTS[39m Build start
|
16
|
+
[32mDTS[39m ⚡️ Build success in 5497ms
|
17
|
+
[32mDTS[39m [1mdist\index.d.mts [22m[32m43.62 KB[39m
|
18
|
+
[32mDTS[39m [1mdist\index.d.ts [22m[32m43.62 KB[39m
|